1 // -*- mode: cpp; mode: fold -*-
3 // $Id: dpkgpm.cc,v 1.28 2004/01/27 02:25:01 mdz Exp $
4 /* ######################################################################
6 DPKG Package Manager - Provide an interface to dpkg
8 ##################################################################### */
13 #include <apt-pkg/cachefile.h>
14 #include <apt-pkg/configuration.h>
15 #include <apt-pkg/depcache.h>
16 #include <apt-pkg/dpkgpm.h>
17 #include <apt-pkg/error.h>
18 #include <apt-pkg/fileutl.h>
19 #include <apt-pkg/install-progress.h>
20 #include <apt-pkg/packagemanager.h>
21 #include <apt-pkg/pkgrecords.h>
22 #include <apt-pkg/strutl.h>
23 #include <apt-pkg/cacheiterators.h>
24 #include <apt-pkg/macros.h>
25 #include <apt-pkg/pkgcache.h>
36 #include <sys/ioctl.h>
37 #include <sys/select.h>
58 class pkgDPkgPMPrivate
61 pkgDPkgPMPrivate() : stdin_is_dev_null(false), dpkgbuf_pos(0),
62 term_out(NULL
), history_out(NULL
),
63 progress(NULL
), master(-1), slave(NULL
)
70 bool stdin_is_dev_null
;
71 // the buffer we use for the dpkg status-fd reading
77 APT::Progress::PackageManager
*progress
;
86 sigset_t original_sigmask
;
92 // Maps the dpkg "processing" info to human readable names. Entry 0
93 // of each array is the key, entry 1 is the value.
94 const std::pair
<const char *, const char *> PackageProcessingOps
[] = {
95 std::make_pair("install", N_("Installing %s")),
96 std::make_pair("configure", N_("Configuring %s")),
97 std::make_pair("remove", N_("Removing %s")),
98 std::make_pair("purge", N_("Completely removing %s")),
99 std::make_pair("disappear", N_("Noting disappearance of %s")),
100 std::make_pair("trigproc", N_("Running post-installation trigger %s"))
103 const std::pair
<const char *, const char *> * const PackageProcessingOpsBegin
= PackageProcessingOps
;
104 const std::pair
<const char *, const char *> * const PackageProcessingOpsEnd
= PackageProcessingOps
+ sizeof(PackageProcessingOps
) / sizeof(PackageProcessingOps
[0]);
106 // Predicate to test whether an entry in the PackageProcessingOps
107 // array matches a string.
108 class MatchProcessingOp
113 MatchProcessingOp(const char *the_target
)
118 bool operator()(const std::pair
<const char *, const char *> &pair
) const
120 return strcmp(pair
.first
, target
) == 0;
125 /* helper function to ionice the given PID
127 there is no C header for ionice yet - just the syscall interface
128 so we use the binary from util-linux
133 if (!FileExists("/usr/bin/ionice"))
135 pid_t Process
= ExecFork();
139 snprintf(buf
, sizeof(buf
), "-p%d", PID
);
141 Args
[0] = "/usr/bin/ionice";
145 execv(Args
[0], (char **)Args
);
147 return ExecWait(Process
, "ionice");
150 static std::string
getDpkgExecutable()
152 string Tmp
= _config
->Find("Dir::Bin::dpkg","dpkg");
153 string
const dpkgChrootDir
= _config
->FindDir("DPkg::Chroot-Directory", "/");
154 size_t dpkgChrootLen
= dpkgChrootDir
.length();
155 if (dpkgChrootDir
!= "/" && Tmp
.find(dpkgChrootDir
) == 0)
157 if (dpkgChrootDir
[dpkgChrootLen
- 1] == '/')
159 Tmp
= Tmp
.substr(dpkgChrootLen
);
164 // dpkgChrootDirectory - chrooting for dpkg if needed /*{{{*/
165 static void dpkgChrootDirectory()
167 std::string
const chrootDir
= _config
->FindDir("DPkg::Chroot-Directory");
168 if (chrootDir
== "/")
170 std::cerr
<< "Chrooting into " << chrootDir
<< std::endl
;
171 if (chroot(chrootDir
.c_str()) != 0)
179 // FindNowVersion - Helper to find a Version in "now" state /*{{{*/
180 // ---------------------------------------------------------------------
181 /* This is helpful when a package is no longer installed but has residual
185 pkgCache::VerIterator
FindNowVersion(const pkgCache::PkgIterator
&Pkg
)
187 pkgCache::VerIterator Ver
;
188 for (Ver
= Pkg
.VersionList(); Ver
.end() == false; ++Ver
)
190 pkgCache::VerFileIterator Vf
= Ver
.FileList();
191 pkgCache::PkgFileIterator F
= Vf
.File();
192 for (F
= Vf
.File(); F
.end() == false; ++F
)
194 if (F
&& F
.Archive())
196 if (strcmp(F
.Archive(), "now"))
205 // DPkgPM::pkgDPkgPM - Constructor /*{{{*/
206 // ---------------------------------------------------------------------
208 pkgDPkgPM::pkgDPkgPM(pkgDepCache
*Cache
)
209 : pkgPackageManager(Cache
), pkgFailures(0), PackagesDone(0), PackagesTotal(0)
211 d
= new pkgDPkgPMPrivate();
214 // DPkgPM::pkgDPkgPM - Destructor /*{{{*/
215 // ---------------------------------------------------------------------
217 pkgDPkgPM::~pkgDPkgPM()
222 // DPkgPM::Install - Install a package /*{{{*/
223 // ---------------------------------------------------------------------
224 /* Add an install operation to the sequence list */
225 bool pkgDPkgPM::Install(PkgIterator Pkg
,string File
)
227 if (File
.empty() == true || Pkg
.end() == true)
228 return _error
->Error("Internal Error, No file name for %s",Pkg
.FullName().c_str());
230 // If the filename string begins with DPkg::Chroot-Directory, return the
231 // substr that is within the chroot so dpkg can access it.
232 string
const chrootdir
= _config
->FindDir("DPkg::Chroot-Directory","/");
233 if (chrootdir
!= "/" && File
.find(chrootdir
) == 0)
235 size_t len
= chrootdir
.length();
236 if (chrootdir
.at(len
- 1) == '/')
238 List
.push_back(Item(Item::Install
,Pkg
,File
.substr(len
)));
241 List
.push_back(Item(Item::Install
,Pkg
,File
));
246 // DPkgPM::Configure - Configure a package /*{{{*/
247 // ---------------------------------------------------------------------
248 /* Add a configure operation to the sequence list */
249 bool pkgDPkgPM::Configure(PkgIterator Pkg
)
251 if (Pkg
.end() == true)
254 List
.push_back(Item(Item::Configure
, Pkg
));
256 // Use triggers for config calls if we configure "smart"
257 // as otherwise Pre-Depends will not be satisfied, see #526774
258 if (_config
->FindB("DPkg::TriggersPending", false) == true)
259 List
.push_back(Item(Item::TriggersPending
, PkgIterator()));
264 // DPkgPM::Remove - Remove a package /*{{{*/
265 // ---------------------------------------------------------------------
266 /* Add a remove operation to the sequence list */
267 bool pkgDPkgPM::Remove(PkgIterator Pkg
,bool Purge
)
269 if (Pkg
.end() == true)
273 List
.push_back(Item(Item::Purge
,Pkg
));
275 List
.push_back(Item(Item::Remove
,Pkg
));
279 // DPkgPM::SendPkgInfo - Send info for install-pkgs hook /*{{{*/
280 // ---------------------------------------------------------------------
281 /* This is part of the helper script communication interface, it sends
282 very complete information down to the other end of the pipe.*/
283 bool pkgDPkgPM::SendV2Pkgs(FILE *F
)
285 return SendPkgsInfo(F
, 2);
287 bool pkgDPkgPM::SendPkgsInfo(FILE * const F
, unsigned int const &Version
)
289 // This version of APT supports only v3, so don't sent higher versions
291 fprintf(F
,"VERSION %u\n", Version
);
293 fprintf(F
,"VERSION 3\n");
295 /* Write out all of the configuration directives by walking the
296 configuration tree */
297 const Configuration::Item
*Top
= _config
->Tree(0);
300 if (Top
->Value
.empty() == false)
303 QuoteString(Top
->FullTag(),"=\"\n").c_str(),
304 QuoteString(Top
->Value
,"\n").c_str());
313 while (Top
!= 0 && Top
->Next
== 0)
320 // Write out the package actions in order.
321 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
323 if(I
->Pkg
.end() == true)
326 pkgDepCache::StateCache
&S
= Cache
[I
->Pkg
];
328 fprintf(F
,"%s ",I
->Pkg
.Name());
330 // Current version which we are going to replace
331 pkgCache::VerIterator CurVer
= I
->Pkg
.CurrentVer();
332 if (CurVer
.end() == true && (I
->Op
== Item::Remove
|| I
->Op
== Item::Purge
))
333 CurVer
= FindNowVersion(I
->Pkg
);
335 if (CurVer
.end() == true)
340 fprintf(F
, "- - none ");
344 fprintf(F
, "%s ", CurVer
.VerStr());
346 fprintf(F
, "%s %s ", CurVer
.Arch(), CurVer
.MultiArchType());
349 // Show the compare operator between current and install version
350 if (S
.InstallVer
!= 0)
352 pkgCache::VerIterator
const InstVer
= S
.InstVerIter(Cache
);
354 if (CurVer
.end() == false)
355 Comp
= InstVer
.CompareVer(CurVer
);
362 fprintf(F
, "%s ", InstVer
.VerStr());
364 fprintf(F
, "%s %s ", InstVer
.Arch(), InstVer
.MultiArchType());
371 fprintf(F
, "> - - none ");
374 // Show the filename/operation
375 if (I
->Op
== Item::Install
)
378 if (I
->File
[0] != '/')
379 fprintf(F
,"**ERROR**\n");
381 fprintf(F
,"%s\n",I
->File
.c_str());
383 else if (I
->Op
== Item::Configure
)
384 fprintf(F
,"**CONFIGURE**\n");
385 else if (I
->Op
== Item::Remove
||
386 I
->Op
== Item::Purge
)
387 fprintf(F
,"**REMOVE**\n");
395 // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/
396 // ---------------------------------------------------------------------
397 /* This looks for a list of scripts to run from the configuration file
398 each one is run and is fed on standard input a list of all .deb files
399 that are due to be installed. */
400 bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf
)
404 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
405 if (Opts
== 0 || Opts
->Child
== 0)
409 sighandler_t old_sigpipe
= signal(SIGPIPE
, SIG_IGN
);
411 unsigned int Count
= 1;
412 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
414 if (Opts
->Value
.empty() == true)
417 if(_config
->FindB("Debug::RunScripts", false) == true)
418 std::clog
<< "Running external script with list of all .deb file: '"
419 << Opts
->Value
<< "'" << std::endl
;
421 // Determine the protocol version
422 string OptSec
= Opts
->Value
;
423 string::size_type Pos
;
424 if ((Pos
= OptSec
.find(' ')) == string::npos
|| Pos
== 0)
425 Pos
= OptSec
.length();
426 OptSec
= "DPkg::Tools::Options::" + string(Opts
->Value
.c_str(),Pos
);
428 unsigned int Version
= _config
->FindI(OptSec
+"::Version",1);
429 unsigned int InfoFD
= _config
->FindI(OptSec
+ "::InfoFD", STDIN_FILENO
);
432 std::set
<int> KeepFDs
;
433 MergeKeepFdsFromConfiguration(KeepFDs
);
435 if (pipe(Pipes
) != 0) {
436 result
= _error
->Errno("pipe","Failed to create IPC pipe to subprocess");
439 if (InfoFD
!= (unsigned)Pipes
[0])
440 SetCloseExec(Pipes
[0],true);
442 KeepFDs
.insert(Pipes
[0]);
445 SetCloseExec(Pipes
[1],true);
447 // Purified Fork for running the script
448 pid_t Process
= ExecFork(KeepFDs
);
452 dup2(Pipes
[0], InfoFD
);
453 SetCloseExec(STDOUT_FILENO
,false);
454 SetCloseExec(STDIN_FILENO
,false);
455 SetCloseExec(STDERR_FILENO
,false);
458 strprintf(hookfd
, "%d", InfoFD
);
459 setenv("APT_HOOK_INFO_FD", hookfd
.c_str(), 1);
461 dpkgChrootDirectory();
465 Args
[2] = Opts
->Value
.c_str();
467 execv(Args
[0],(char **)Args
);
471 FILE *F
= fdopen(Pipes
[1],"w");
473 result
= _error
->Errno("fdopen","Faild to open new FD");
477 // Feed it the filenames.
480 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
482 // Only deal with packages to be installed from .deb
483 if (I
->Op
!= Item::Install
)
487 if (I
->File
[0] != '/')
490 /* Feed the filename of each package that is pending install
492 fprintf(F
,"%s\n",I
->File
.c_str());
498 SendPkgsInfo(F
, Version
);
502 // Clean up the sub process
503 if (ExecWait(Process
,Opts
->Value
.c_str()) == false) {
504 result
= _error
->Error("Failure running script %s",Opts
->Value
.c_str());
508 signal(SIGPIPE
, old_sigpipe
);
513 // DPkgPM::DoStdin - Read stdin and pass to master pty /*{{{*/
514 // ---------------------------------------------------------------------
517 void pkgDPkgPM::DoStdin(int master
)
519 unsigned char input_buf
[256] = {0,};
520 ssize_t len
= read(0, input_buf
, sizeof(input_buf
));
522 FileFd::Write(master
, input_buf
, len
);
524 d
->stdin_is_dev_null
= true;
527 // DPkgPM::DoTerminalPty - Read the terminal pty and write log /*{{{*/
528 // ---------------------------------------------------------------------
530 * read the terminal pty and write log
532 void pkgDPkgPM::DoTerminalPty(int master
)
534 unsigned char term_buf
[1024] = {0,0, };
536 ssize_t len
=read(master
, term_buf
, sizeof(term_buf
));
537 if(len
== -1 && errno
== EIO
)
539 // this happens when the child is about to exit, we
540 // give it time to actually exit, otherwise we run
541 // into a race so we sleep for half a second.
542 struct timespec sleepfor
= { 0, 500000000 };
543 nanosleep(&sleepfor
, NULL
);
548 FileFd::Write(1, term_buf
, len
);
550 fwrite(term_buf
, len
, sizeof(char), d
->term_out
);
553 // DPkgPM::ProcessDpkgStatusBuf /*{{{*/
554 // ---------------------------------------------------------------------
557 void pkgDPkgPM::ProcessDpkgStatusLine(char *line
)
559 bool const Debug
= _config
->FindB("Debug::pkgDPkgProgressReporting",false);
561 std::clog
<< "got from dpkg '" << line
<< "'" << std::endl
;
563 /* dpkg sends strings like this:
564 'status: <pkg>: <pkg qstate>'
565 'status: <pkg>:<arch>: <pkg qstate>'
567 'processing: {install,upgrade,configure,remove,purge,disappear,trigproc}: pkg'
568 'processing: {install,upgrade,configure,remove,purge,disappear,trigproc}: trigger'
571 // we need to split on ": " (note the appended space) as the ':' is
572 // part of the pkgname:arch information that dpkg sends
574 // A dpkg error message may contain additional ":" (like
575 // "failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb ..."
576 // so we need to ensure to not split too much
577 std::vector
<std::string
> list
= StringSplit(line
, ": ", 4);
581 std::clog
<< "ignoring line: not enough ':'" << std::endl
;
585 // build the (prefix, pkgname, action) tuple, position of this
586 // is different for "processing" or "status" messages
587 std::string prefix
= APT::String::Strip(list
[0]);
591 // "processing" has the form "processing: action: pkg or trigger"
592 // with action = ["install", "upgrade", "configure", "remove", "purge",
593 // "disappear", "trigproc"]
594 if (prefix
== "processing")
596 pkgname
= APT::String::Strip(list
[2]);
597 action
= APT::String::Strip(list
[1]);
598 // we don't care for the difference (as dpkg doesn't really either)
599 if (action
== "upgrade")
602 // "status" has the form: "status: pkg: state"
603 // with state in ["half-installed", "unpacked", "half-configured",
604 // "installed", "config-files", "not-installed"]
605 else if (prefix
== "status")
607 pkgname
= APT::String::Strip(list
[1]);
608 action
= APT::String::Strip(list
[2]);
611 std::clog
<< "unknown prefix '" << prefix
<< "'" << std::endl
;
616 /* handle the special cases first:
618 errors look like this:
619 'status: /var/cache/apt/archives/krecipes_0.8.1-0ubuntu1_i386.deb : error : trying to overwrite `/usr/share/doc/kde/HTML/en/krecipes/krectip.png', which is also in package krecipes-data
620 and conffile-prompt like this
621 'status:/etc/compiz.conf/compiz.conf : conffile-prompt: 'current-conffile' 'new-conffile' useredited distedited
623 if (prefix
== "status")
625 if(action
== "error")
627 d
->progress
->Error(pkgname
, PackagesDone
, PackagesTotal
,
630 WriteApportReport(pkgname
.c_str(), list
[3].c_str());
633 else if(action
== "conffile-prompt")
635 d
->progress
->ConffilePrompt(pkgname
, PackagesDone
, PackagesTotal
,
641 // at this point we know that we should have a valid pkgname, so build all
644 // dpkg does not always send "pkgname:arch" so we add it here if needed
645 if (pkgname
.find(":") == std::string::npos
)
647 // find the package in the group that is touched by dpkg
648 // if there are multiple pkgs dpkg would send us a full pkgname:arch
649 pkgCache::GrpIterator Grp
= Cache
.FindGrp(pkgname
);
650 if (Grp
.end() == false)
652 pkgCache::PkgIterator P
= Grp
.PackageList();
653 for (; P
.end() != true; P
= Grp
.NextPkg(P
))
655 if(Cache
[P
].Keep() == false || Cache
[P
].ReInstall() == true)
657 pkgname
= P
.FullName();
664 const char* const pkg
= pkgname
.c_str();
665 std::string short_pkgname
= StringSplit(pkgname
, ":")[0];
666 std::string arch
= "";
667 if (pkgname
.find(":") != string::npos
)
668 arch
= StringSplit(pkgname
, ":")[1];
669 std::string i18n_pkgname
= pkgname
;
670 if (arch
.size() != 0)
671 strprintf(i18n_pkgname
, "%s (%s)", short_pkgname
.c_str(), arch
.c_str());
673 // 'processing' from dpkg looks like
674 // 'processing: action: pkg'
675 if(prefix
== "processing")
677 const std::pair
<const char *, const char *> * const iter
=
678 std::find_if(PackageProcessingOpsBegin
,
679 PackageProcessingOpsEnd
,
680 MatchProcessingOp(action
.c_str()));
681 if(iter
== PackageProcessingOpsEnd
)
684 std::clog
<< "ignoring unknown action: " << action
<< std::endl
;
688 strprintf(msg
, _(iter
->second
), i18n_pkgname
.c_str());
689 d
->progress
->StatusChanged(pkgname
, PackagesDone
, PackagesTotal
, msg
);
691 // FIXME: this needs a muliarch testcase
692 // FIXME2: is "pkgname" here reliable with dpkg only sending us
694 if (action
== "disappear")
695 handleDisappearAction(pkgname
);
699 if (prefix
== "status")
701 vector
<struct DpkgState
> const &states
= PackageOps
[pkg
];
702 if(PackageOpsDone
[pkg
] < states
.size())
704 char const * const next_action
= states
[PackageOpsDone
[pkg
]].state
;
705 if (next_action
&& Debug
== true)
706 std::clog
<< "(parsed from dpkg) pkg: " << short_pkgname
707 << " action: " << action
<< " (expected: '" << next_action
<< "' "
708 << PackageOpsDone
[pkg
] << " of " << states
.size() << ")" << endl
;
710 // check if the package moved to the next dpkg state
711 if(next_action
&& (action
== next_action
))
713 // only read the translation if there is actually a next action
714 char const * const translation
= _(states
[PackageOpsDone
[pkg
]].str
);
716 // we moved from one dpkg state to a new one, report that
717 ++PackageOpsDone
[pkg
];
721 strprintf(msg
, translation
, i18n_pkgname
.c_str());
722 d
->progress
->StatusChanged(pkgname
, PackagesDone
, PackagesTotal
, msg
);
728 // DPkgPM::handleDisappearAction /*{{{*/
729 void pkgDPkgPM::handleDisappearAction(string
const &pkgname
)
731 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(pkgname
);
732 if (unlikely(Pkg
.end() == true))
735 // record the package name for display and stuff later
736 disappearedPkgs
.insert(Pkg
.FullName(true));
738 // the disappeared package was auto-installed - nothing to do
739 if ((Cache
[Pkg
].Flags
& pkgCache::Flag::Auto
) == pkgCache::Flag::Auto
)
741 pkgCache::VerIterator PkgVer
= Cache
[Pkg
].InstVerIter(Cache
);
742 if (unlikely(PkgVer
.end() == true))
744 /* search in the list of dependencies for (Pre)Depends,
745 check if this dependency has a Replaces on our package
746 and if so transfer the manual installed flag to it */
747 for (pkgCache::DepIterator Dep
= PkgVer
.DependsList(); Dep
.end() != true; ++Dep
)
749 if (Dep
->Type
!= pkgCache::Dep::Depends
&&
750 Dep
->Type
!= pkgCache::Dep::PreDepends
)
752 pkgCache::PkgIterator Tar
= Dep
.TargetPkg();
753 if (unlikely(Tar
.end() == true))
755 // the package is already marked as manual
756 if ((Cache
[Tar
].Flags
& pkgCache::Flag::Auto
) != pkgCache::Flag::Auto
)
758 pkgCache::VerIterator TarVer
= Cache
[Tar
].InstVerIter(Cache
);
759 if (TarVer
.end() == true)
761 for (pkgCache::DepIterator Rep
= TarVer
.DependsList(); Rep
.end() != true; ++Rep
)
763 if (Rep
->Type
!= pkgCache::Dep::Replaces
)
765 if (Pkg
!= Rep
.TargetPkg())
767 // okay, they are strongly connected - transfer manual-bit
769 std::clog
<< "transfer manual-bit from disappeared »" << pkgname
<< "« to »" << Tar
.FullName() << "«" << std::endl
;
770 Cache
[Tar
].Flags
&= ~Flag::Auto
;
776 // DPkgPM::DoDpkgStatusFd /*{{{*/
777 // ---------------------------------------------------------------------
780 void pkgDPkgPM::DoDpkgStatusFd(int statusfd
)
785 len
=read(statusfd
, &d
->dpkgbuf
[d
->dpkgbuf_pos
], sizeof(d
->dpkgbuf
)-d
->dpkgbuf_pos
);
786 d
->dpkgbuf_pos
+= len
;
790 // process line by line if we have a buffer
792 while((q
=(char*)memchr(p
, '\n', d
->dpkgbuf
+d
->dpkgbuf_pos
-p
)) != NULL
)
795 ProcessDpkgStatusLine(p
);
796 p
=q
+1; // continue with next line
799 // now move the unprocessed bits (after the final \n that is now a 0x0)
800 // to the start and update d->dpkgbuf_pos
801 p
= (char*)memrchr(d
->dpkgbuf
, 0, d
->dpkgbuf_pos
);
805 // we are interessted in the first char *after* 0x0
808 // move the unprocessed tail to the start and update pos
809 memmove(d
->dpkgbuf
, p
, p
-d
->dpkgbuf
);
810 d
->dpkgbuf_pos
= d
->dpkgbuf
+d
->dpkgbuf_pos
-p
;
813 // DPkgPM::WriteHistoryTag /*{{{*/
814 void pkgDPkgPM::WriteHistoryTag(string
const &tag
, string value
)
816 size_t const length
= value
.length();
819 // poor mans rstrip(", ")
820 if (value
[length
-2] == ',' && value
[length
-1] == ' ')
821 value
.erase(length
- 2, 2);
822 fprintf(d
->history_out
, "%s: %s\n", tag
.c_str(), value
.c_str());
824 // DPkgPM::OpenLog /*{{{*/
825 bool pkgDPkgPM::OpenLog()
827 string
const logdir
= _config
->FindDir("Dir::Log");
828 if(CreateAPTDirectoryIfNeeded(logdir
, logdir
) == false)
829 // FIXME: use a better string after freeze
830 return _error
->Error(_("Directory '%s' missing"), logdir
.c_str());
834 time_t const t
= time(NULL
);
835 struct tm
const * const tmp
= localtime(&t
);
836 strftime(timestr
, sizeof(timestr
), "%F %T", tmp
);
839 string
const logfile_name
= flCombine(logdir
,
840 _config
->Find("Dir::Log::Terminal"));
841 if (!logfile_name
.empty())
843 d
->term_out
= fopen(logfile_name
.c_str(),"a");
844 if (d
->term_out
== NULL
)
845 return _error
->WarningE("OpenLog", _("Could not open file '%s'"), logfile_name
.c_str());
846 setvbuf(d
->term_out
, NULL
, _IONBF
, 0);
847 SetCloseExec(fileno(d
->term_out
), true);
848 if (getuid() == 0) // if we aren't root, we can't chown a file, so don't try it
850 struct passwd
*pw
= getpwnam("root");
851 struct group
*gr
= getgrnam("adm");
852 if (pw
!= NULL
&& gr
!= NULL
&& chown(logfile_name
.c_str(), pw
->pw_uid
, gr
->gr_gid
) != 0)
853 _error
->WarningE("OpenLog", "chown to root:adm of file %s failed", logfile_name
.c_str());
855 if (chmod(logfile_name
.c_str(), 0640) != 0)
856 _error
->WarningE("OpenLog", "chmod 0640 of file %s failed", logfile_name
.c_str());
857 fprintf(d
->term_out
, "\nLog started: %s\n", timestr
);
860 // write your history
861 string
const history_name
= flCombine(logdir
,
862 _config
->Find("Dir::Log::History"));
863 if (!history_name
.empty())
865 d
->history_out
= fopen(history_name
.c_str(),"a");
866 if (d
->history_out
== NULL
)
867 return _error
->WarningE("OpenLog", _("Could not open file '%s'"), history_name
.c_str());
868 SetCloseExec(fileno(d
->history_out
), true);
869 chmod(history_name
.c_str(), 0644);
870 fprintf(d
->history_out
, "\nStart-Date: %s\n", timestr
);
871 string remove
, purge
, install
, reinstall
, upgrade
, downgrade
;
872 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; ++I
)
874 enum { CANDIDATE
, CANDIDATE_AUTO
, CURRENT_CANDIDATE
, CURRENT
} infostring
;
876 #define HISTORYINFO(X, Y) { line = &X; infostring = Y; }
877 if (Cache
[I
].NewInstall() == true)
878 HISTORYINFO(install
, CANDIDATE_AUTO
)
879 else if (Cache
[I
].ReInstall() == true)
880 HISTORYINFO(reinstall
, CANDIDATE
)
881 else if (Cache
[I
].Upgrade() == true)
882 HISTORYINFO(upgrade
, CURRENT_CANDIDATE
)
883 else if (Cache
[I
].Downgrade() == true)
884 HISTORYINFO(downgrade
, CURRENT_CANDIDATE
)
885 else if (Cache
[I
].Delete() == true)
886 HISTORYINFO((Cache
[I
].Purge() ? purge
: remove
), CURRENT
)
890 line
->append(I
.FullName(false)).append(" (");
891 switch (infostring
) {
892 case CANDIDATE
: line
->append(Cache
[I
].CandVersion
); break;
894 line
->append(Cache
[I
].CandVersion
);
895 if ((Cache
[I
].Flags
& pkgCache::Flag::Auto
) == pkgCache::Flag::Auto
)
896 line
->append(", automatic");
898 case CURRENT_CANDIDATE
: line
->append(Cache
[I
].CurVersion
).append(", ").append(Cache
[I
].CandVersion
); break;
899 case CURRENT
: line
->append(Cache
[I
].CurVersion
); break;
903 if (_config
->Exists("Commandline::AsString") == true)
904 WriteHistoryTag("Commandline", _config
->Find("Commandline::AsString"));
905 WriteHistoryTag("Install", install
);
906 WriteHistoryTag("Reinstall", reinstall
);
907 WriteHistoryTag("Upgrade", upgrade
);
908 WriteHistoryTag("Downgrade",downgrade
);
909 WriteHistoryTag("Remove",remove
);
910 WriteHistoryTag("Purge",purge
);
911 fflush(d
->history_out
);
917 // DPkg::CloseLog /*{{{*/
918 bool pkgDPkgPM::CloseLog()
921 time_t t
= time(NULL
);
922 struct tm
*tmp
= localtime(&t
);
923 strftime(timestr
, sizeof(timestr
), "%F %T", tmp
);
927 fprintf(d
->term_out
, "Log ended: ");
928 fprintf(d
->term_out
, "%s", timestr
);
929 fprintf(d
->term_out
, "\n");
936 if (disappearedPkgs
.empty() == false)
939 for (std::set
<std::string
>::const_iterator d
= disappearedPkgs
.begin();
940 d
!= disappearedPkgs
.end(); ++d
)
942 pkgCache::PkgIterator P
= Cache
.FindPkg(*d
);
943 disappear
.append(*d
);
945 disappear
.append(", ");
947 disappear
.append(" (").append(Cache
[P
].CurVersion
).append("), ");
949 WriteHistoryTag("Disappeared", disappear
);
951 if (d
->dpkg_error
.empty() == false)
952 fprintf(d
->history_out
, "Error: %s\n", d
->dpkg_error
.c_str());
953 fprintf(d
->history_out
, "End-Date: %s\n", timestr
);
954 fclose(d
->history_out
);
956 d
->history_out
= NULL
;
963 // This implements a racy version of pselect for those architectures
964 // that don't have a working implementation.
965 // FIXME: Probably can be removed on Lenny+1
966 static int racy_pselect(int nfds
, fd_set
*readfds
, fd_set
*writefds
,
967 fd_set
*exceptfds
, const struct timespec
*timeout
,
968 const sigset_t
*sigmask
)
974 tv
.tv_sec
= timeout
->tv_sec
;
975 tv
.tv_usec
= timeout
->tv_nsec
/1000;
977 sigprocmask(SIG_SETMASK
, sigmask
, &origmask
);
978 retval
= select(nfds
, readfds
, writefds
, exceptfds
, &tv
);
979 sigprocmask(SIG_SETMASK
, &origmask
, 0);
984 // DPkgPM::BuildPackagesProgressMap /*{{{*/
985 void pkgDPkgPM::BuildPackagesProgressMap()
987 // map the dpkg states to the operations that are performed
988 // (this is sorted in the same way as Item::Ops)
989 static const struct DpkgState DpkgStatesOpMap
[][7] = {
992 {"half-installed", N_("Preparing %s")},
993 {"unpacked", N_("Unpacking %s") },
996 // Configure operation
998 {"unpacked",N_("Preparing to configure %s") },
999 {"half-configured", N_("Configuring %s") },
1000 { "installed", N_("Installed %s")},
1005 {"half-configured", N_("Preparing for removal of %s")},
1006 {"half-installed", N_("Removing %s")},
1007 {"config-files", N_("Removed %s")},
1012 {"config-files", N_("Preparing to completely remove %s")},
1013 {"not-installed", N_("Completely removed %s")},
1018 // init the PackageOps map, go over the list of packages that
1019 // that will be [installed|configured|removed|purged] and add
1020 // them to the PackageOps map (the dpkg states it goes through)
1021 // and the PackageOpsTranslations (human readable strings)
1022 for (vector
<Item
>::const_iterator I
= List
.begin(); I
!= List
.end(); ++I
)
1024 if((*I
).Pkg
.end() == true)
1027 string
const name
= (*I
).Pkg
.FullName();
1028 PackageOpsDone
[name
] = 0;
1029 for(int i
=0; (DpkgStatesOpMap
[(*I
).Op
][i
]).state
!= NULL
; ++i
)
1031 PackageOps
[name
].push_back(DpkgStatesOpMap
[(*I
).Op
][i
]);
1037 #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13)
1038 bool pkgDPkgPM::Go(int StatusFd
)
1040 APT::Progress::PackageManager
*progress
= NULL
;
1042 progress
= APT::Progress::PackageManagerProgressFactory();
1044 progress
= new APT::Progress::PackageManagerProgressFd(StatusFd
);
1046 return GoNoABIBreak(progress
);
1050 void pkgDPkgPM::StartPtyMagic()
1052 if (_config
->FindB("Dpkg::Use-Pty", true) == false)
1055 if (d
->slave
!= NULL
)
1061 _error
->PushToStack();
1062 // if tcgetattr for both stdin/stdout returns 0 (no error)
1063 // we do the pty magic
1064 if (tcgetattr(STDOUT_FILENO
, &d
->tt
) == 0 &&
1065 tcgetattr(STDIN_FILENO
, &d
->tt
) == 0)
1067 d
->master
= posix_openpt(O_RDWR
| O_NOCTTY
);
1068 if (d
->master
== -1)
1069 _error
->Errno("posix_openpt", _("Can not write log (%s)"), _("Is /dev/pts mounted?"));
1070 else if (unlockpt(d
->master
) == -1)
1072 _error
->Errno("unlockpt", "Unlocking the slave of master fd %d failed!", d
->master
);
1078 char const * const slave_name
= ptsname(d
->master
);
1079 if (slave_name
== NULL
)
1081 _error
->Errno("unlockpt", "Getting name for slave of master fd %d failed!", d
->master
);
1087 d
->slave
= strdup(slave_name
);
1088 if (d
->slave
== NULL
)
1090 _error
->Errno("strdup", "Copying name %s for slave of master fd %d failed!", slave_name
, d
->master
);
1095 if (ioctl(STDOUT_FILENO
, TIOCGWINSZ
, &win
) < 0)
1096 _error
->Errno("ioctl", "Getting TIOCGWINSZ from stdout failed!");
1097 if (ioctl(d
->master
, TIOCSWINSZ
, &win
) < 0)
1098 _error
->Errno("ioctl", "Setting TIOCSWINSZ for master fd %d failed!", d
->master
);
1099 if (tcsetattr(d
->master
, TCSANOW
, &d
->tt
) == -1)
1100 _error
->Errno("tcsetattr", "Setting in Start via TCSANOW for master fd %d failed!", d
->master
);
1102 struct termios raw_tt
;
1105 raw_tt
.c_lflag
&= ~ECHO
;
1106 raw_tt
.c_lflag
|= ISIG
;
1107 // block SIGTTOU during tcsetattr to prevent a hang if
1108 // the process is a member of the background process group
1109 // http://www.opengroup.org/onlinepubs/000095399/functions/tcsetattr.html
1110 sigemptyset(&d
->sigmask
);
1111 sigaddset(&d
->sigmask
, SIGTTOU
);
1112 sigprocmask(SIG_BLOCK
,&d
->sigmask
, &d
->original_sigmask
);
1113 if (tcsetattr(STDIN_FILENO
, TCSAFLUSH
, &raw_tt
) == -1)
1114 _error
->Errno("tcsetattr", "Setting in Start via TCSAFLUSH for stdout failed!");
1115 sigprocmask(SIG_SETMASK
, &d
->original_sigmask
, NULL
);
1121 // complain only if stdout is either a terminal (but still failed) or is an invalid
1122 // descriptor otherwise we would complain about redirection to e.g. /dev/null as well.
1123 if (isatty(STDOUT_FILENO
) == 1 || errno
== EBADF
)
1124 _error
->Errno("tcgetattr", _("Can not write log (%s)"), _("Is stdout a terminal?"));
1127 if (_error
->PendingError() == true)
1129 if (d
->master
!= -1)
1134 _error
->DumpErrors(std::cerr
);
1136 _error
->RevertToStack();
1138 void pkgDPkgPM::SetupSlavePtyMagic()
1143 if (close(d
->master
) == -1)
1144 _error
->FatalE("close", "Closing master %d in child failed!", d
->master
);
1146 _error
->FatalE("setsid", "Starting a new session for child failed!");
1148 int const slaveFd
= open(d
->slave
, O_RDWR
);
1150 _error
->FatalE("open", _("Can not write log (%s)"), _("Is /dev/pts mounted?"));
1152 if (ioctl(slaveFd
, TIOCSCTTY
, 0) < 0)
1153 _error
->FatalE("ioctl", "Setting TIOCSCTTY for slave fd %d failed!", slaveFd
);
1156 for (unsigned short i
= 0; i
< 3; ++i
)
1157 if (dup2(slaveFd
, i
) == -1)
1158 _error
->FatalE("dup2", "Dupping %d to %d in child failed!", slaveFd
, i
);
1160 if (tcsetattr(0, TCSANOW
, &d
->tt
) < 0)
1161 _error
->FatalE("tcsetattr", "Setting in Setup via TCSANOW for slave fd %d failed!", slaveFd
);
1164 void pkgDPkgPM::StopPtyMagic()
1166 if (d
->slave
!= NULL
)
1171 if (tcsetattr(0, TCSAFLUSH
, &d
->tt
) == -1)
1172 _error
->FatalE("tcsetattr", "Setting in Stop via TCSAFLUSH for stdin failed!");
1178 // DPkgPM::Go - Run the sequence /*{{{*/
1179 // ---------------------------------------------------------------------
1180 /* This globs the operations and calls dpkg
1182 * If it is called with a progress object apt will report the install
1183 * progress to this object. It maps the dpkg states a package goes
1184 * through to human readable (and i10n-able)
1185 * names and calculates a percentage for each step.
1187 #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13)
1188 bool pkgDPkgPM::Go(APT::Progress::PackageManager
*progress
)
1190 bool pkgDPkgPM::GoNoABIBreak(APT::Progress::PackageManager
*progress
)
1193 pkgPackageManager::SigINTStop
= false;
1194 d
->progress
= progress
;
1196 // Generate the base argument list for dpkg
1197 unsigned long StartSize
= 0;
1198 std::vector
<const char *> Args
;
1199 std::string DpkgExecutable
= getDpkgExecutable();
1200 Args
.push_back(DpkgExecutable
.c_str());
1201 StartSize
+= DpkgExecutable
.length();
1203 // Stick in any custom dpkg options
1204 Configuration::Item
const *Opts
= _config
->Tree("DPkg::Options");
1208 for (; Opts
!= 0; Opts
= Opts
->Next
)
1210 if (Opts
->Value
.empty() == true)
1212 Args
.push_back(Opts
->Value
.c_str());
1213 StartSize
+= Opts
->Value
.length();
1217 size_t const BaseArgs
= Args
.size();
1218 // we need to detect if we can qualify packages with the architecture or not
1219 Args
.push_back("--assert-multi-arch");
1220 Args
.push_back(NULL
);
1222 pid_t dpkgAssertMultiArch
= ExecFork();
1223 if (dpkgAssertMultiArch
== 0)
1225 dpkgChrootDirectory();
1226 // redirect everything to the ultimate sink as we only need the exit-status
1227 int const nullfd
= open("/dev/null", O_RDONLY
);
1228 dup2(nullfd
, STDIN_FILENO
);
1229 dup2(nullfd
, STDOUT_FILENO
);
1230 dup2(nullfd
, STDERR_FILENO
);
1231 execvp(Args
[0], (char**) &Args
[0]);
1232 _error
->WarningE("dpkgGo", "Can't detect if dpkg supports multi-arch!");
1239 unsigned int const MaxArgs
= _config
->FindI("Dpkg::MaxArgs",8*1024);
1240 unsigned int const MaxArgBytes
= _config
->FindI("Dpkg::MaxArgBytes",32*1024);
1241 bool const NoTriggers
= _config
->FindB("DPkg::NoTriggers", false);
1243 if (RunScripts("DPkg::Pre-Invoke") == false)
1246 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
1249 // support subpressing of triggers processing for special
1250 // cases like d-i that runs the triggers handling manually
1251 bool const SmartConf
= (_config
->Find("PackageManager::Configure", "all") != "all");
1252 bool const TriggersPending
= _config
->FindB("DPkg::TriggersPending", false);
1253 if (_config
->FindB("DPkg::ConfigurePending", SmartConf
) == true)
1254 List
.push_back(Item(Item::ConfigurePending
, PkgIterator()));
1257 BuildPackagesProgressMap();
1259 d
->stdin_is_dev_null
= false;
1264 bool dpkgMultiArch
= false;
1265 if (dpkgAssertMultiArch
> 0)
1268 while (waitpid(dpkgAssertMultiArch
, &Status
, 0) != dpkgAssertMultiArch
)
1272 _error
->WarningE("dpkgGo", _("Waited for %s but it wasn't there"), "dpkg --assert-multi-arch");
1275 if (WIFEXITED(Status
) == true && WEXITSTATUS(Status
) == 0)
1276 dpkgMultiArch
= true;
1279 // start pty magic before the loop
1282 // Tell the progress that its starting and fork dpkg
1283 d
->progress
->Start(d
->master
);
1285 // this loop is runs once per dpkg operation
1286 vector
<Item
>::const_iterator I
= List
.begin();
1287 while (I
!= List
.end())
1289 // Do all actions with the same Op in one run
1290 vector
<Item
>::const_iterator J
= I
;
1291 if (TriggersPending
== true)
1292 for (; J
!= List
.end(); ++J
)
1296 if (J
->Op
!= Item::TriggersPending
)
1298 vector
<Item
>::const_iterator T
= J
+ 1;
1299 if (T
!= List
.end() && T
->Op
== I
->Op
)
1304 for (; J
!= List
.end() && J
->Op
== I
->Op
; ++J
)
1307 // keep track of allocated strings for multiarch package names
1308 std::vector
<char *> Packages
;
1310 // start with the baseset of arguments
1311 unsigned long Size
= StartSize
;
1312 Args
.erase(Args
.begin() + BaseArgs
, Args
.end());
1314 // Now check if we are within the MaxArgs limit
1316 // this code below is problematic, because it may happen that
1317 // the argument list is split in a way that A depends on B
1318 // and they are in the same "--configure A B" run
1319 // - with the split they may now be configured in different
1320 // runs, using Immediate-Configure-All can help prevent this.
1321 if (J
- I
> (signed)MaxArgs
)
1324 unsigned long const size
= MaxArgs
+ 10;
1326 Packages
.reserve(size
);
1330 unsigned long const size
= (J
- I
) + 10;
1332 Packages
.reserve(size
);
1337 return _error
->Errno("pipe","Failed to create IPC pipe to dpkg");
1339 #define ADDARG(X) Args.push_back(X); Size += strlen(X)
1340 #define ADDARGC(X) Args.push_back(X); Size += sizeof(X) - 1
1342 ADDARGC("--status-fd");
1343 char status_fd_buf
[20];
1344 snprintf(status_fd_buf
,sizeof(status_fd_buf
),"%i", fd
[1]);
1345 ADDARG(status_fd_buf
);
1346 unsigned long const Op
= I
->Op
;
1351 ADDARGC("--force-depends");
1352 ADDARGC("--force-remove-essential");
1353 ADDARGC("--remove");
1357 ADDARGC("--force-depends");
1358 ADDARGC("--force-remove-essential");
1362 case Item::Configure
:
1363 ADDARGC("--configure");
1366 case Item::ConfigurePending
:
1367 ADDARGC("--configure");
1368 ADDARGC("--pending");
1371 case Item::TriggersPending
:
1372 ADDARGC("--triggers-only");
1373 ADDARGC("--pending");
1377 ADDARGC("--unpack");
1378 ADDARGC("--auto-deconfigure");
1382 if (NoTriggers
== true && I
->Op
!= Item::TriggersPending
&&
1383 I
->Op
!= Item::ConfigurePending
)
1385 ADDARGC("--no-triggers");
1389 // Write in the file or package names
1390 if (I
->Op
== Item::Install
)
1392 for (;I
!= J
&& Size
< MaxArgBytes
; ++I
)
1394 if (I
->File
[0] != '/')
1395 return _error
->Error("Internal Error, Pathname to install is not absolute '%s'",I
->File
.c_str());
1396 Args
.push_back(I
->File
.c_str());
1397 Size
+= I
->File
.length();
1402 string
const nativeArch
= _config
->Find("APT::Architecture");
1403 unsigned long const oldSize
= I
->Op
== Item::Configure
? Size
: 0;
1404 for (;I
!= J
&& Size
< MaxArgBytes
; ++I
)
1406 if((*I
).Pkg
.end() == true)
1408 if (I
->Op
== Item::Configure
&& disappearedPkgs
.find(I
->Pkg
.FullName(true)) != disappearedPkgs
.end())
1410 // We keep this here to allow "smooth" transitions from e.g. multiarch dpkg/ubuntu to dpkg/debian
1411 if (dpkgMultiArch
== false && (I
->Pkg
.Arch() == nativeArch
||
1412 strcmp(I
->Pkg
.Arch(), "all") == 0 ||
1413 strcmp(I
->Pkg
.Arch(), "none") == 0))
1415 char const * const name
= I
->Pkg
.Name();
1420 pkgCache::VerIterator PkgVer
;
1421 std::string name
= I
->Pkg
.Name();
1422 if (Op
== Item::Remove
|| Op
== Item::Purge
)
1424 PkgVer
= I
->Pkg
.CurrentVer();
1425 if(PkgVer
.end() == true)
1426 PkgVer
= FindNowVersion(I
->Pkg
);
1429 PkgVer
= Cache
[I
->Pkg
].InstVerIter(Cache
);
1430 if (strcmp(I
->Pkg
.Arch(), "none") == 0)
1431 ; // never arch-qualify a package without an arch
1432 else if (PkgVer
.end() == false)
1433 name
.append(":").append(PkgVer
.Arch());
1435 _error
->Warning("Can not find PkgVer for '%s'", name
.c_str());
1436 char * const fullname
= strdup(name
.c_str());
1437 Packages
.push_back(fullname
);
1441 // skip configure action if all sheduled packages disappeared
1442 if (oldSize
== Size
)
1449 if (_config
->FindB("Debug::pkgDPkgPM",false) == true)
1451 for (std::vector
<const char *>::const_iterator a
= Args
.begin();
1452 a
!= Args
.end(); ++a
)
1457 Args
.push_back(NULL
);
1463 /* Mask off sig int/quit. We do this because dpkg also does when
1464 it forks scripts. What happens is that when you hit ctrl-c it sends
1465 it to all processes in the group. Since dpkg ignores the signal
1466 it doesn't die but we do! So we must also ignore it */
1467 sighandler_t old_SIGQUIT
= signal(SIGQUIT
,SIG_IGN
);
1468 sighandler_t old_SIGINT
= signal(SIGINT
,SigINT
);
1470 // Check here for any SIGINT
1471 if (pkgPackageManager::SigINTStop
&& (Op
== Item::Remove
|| Op
== Item::Purge
|| Op
== Item::Install
))
1475 // ignore SIGHUP as well (debian #463030)
1476 sighandler_t old_SIGHUP
= signal(SIGHUP
,SIG_IGN
);
1479 d
->progress
->StartDpkg();
1480 std::set
<int> KeepFDs
;
1481 KeepFDs
.insert(fd
[1]);
1482 MergeKeepFdsFromConfiguration(KeepFDs
);
1483 pid_t Child
= ExecFork(KeepFDs
);
1486 // This is the child
1487 SetupSlavePtyMagic();
1488 close(fd
[0]); // close the read end of the pipe
1490 dpkgChrootDirectory();
1492 if (chdir(_config
->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
1495 if (_config
->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO
))
1499 if ((Flags
= fcntl(STDIN_FILENO
,F_GETFL
,dummy
)) < 0)
1502 // Discard everything in stdin before forking dpkg
1503 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
| O_NONBLOCK
) < 0)
1506 while (read(STDIN_FILENO
,&dummy
,1) == 1);
1508 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
& (~(long)O_NONBLOCK
)) < 0)
1512 /* No Job Control Stop Env is a magic dpkg var that prevents it
1513 from using sigstop */
1514 putenv((char *)"DPKG_NO_TSTP=yes");
1515 execvp(Args
[0], (char**) &Args
[0]);
1516 cerr
<< "Could not exec dpkg!" << endl
;
1521 if (_config
->FindB("DPkg::UseIoNice", false) == true)
1527 // we read from dpkg here
1528 int const _dpkgin
= fd
[0];
1529 close(fd
[1]); // close the write end of the pipe
1532 sigemptyset(&d
->sigmask
);
1533 sigprocmask(SIG_BLOCK
,&d
->sigmask
,&d
->original_sigmask
);
1535 /* free vectors (and therefore memory) as we don't need the included data anymore */
1536 for (std::vector
<char *>::const_iterator p
= Packages
.begin();
1537 p
!= Packages
.end(); ++p
)
1541 // the result of the waitpid call
1544 while ((res
=waitpid(Child
,&Status
, WNOHANG
)) != Child
) {
1546 // FIXME: move this to a function or something, looks ugly here
1547 // error handling, waitpid returned -1
1550 RunScripts("DPkg::Post-Invoke");
1552 // Restore sig int/quit
1553 signal(SIGQUIT
,old_SIGQUIT
);
1554 signal(SIGINT
,old_SIGINT
);
1556 signal(SIGHUP
,old_SIGHUP
);
1557 return _error
->Errno("waitpid","Couldn't wait for subprocess");
1560 // wait for input or output here
1562 if (d
->master
>= 0 && !d
->stdin_is_dev_null
)
1564 FD_SET(_dpkgin
, &rfds
);
1566 FD_SET(d
->master
, &rfds
);
1568 tv
.tv_nsec
= d
->progress
->GetPulseInterval();
1569 select_ret
= pselect(max(d
->master
, _dpkgin
)+1, &rfds
, NULL
, NULL
,
1570 &tv
, &d
->original_sigmask
);
1571 if (select_ret
< 0 && (errno
== EINVAL
|| errno
== ENOSYS
))
1572 select_ret
= racy_pselect(max(d
->master
, _dpkgin
)+1, &rfds
, NULL
,
1573 NULL
, &tv
, &d
->original_sigmask
);
1574 d
->progress
->Pulse();
1575 if (select_ret
== 0)
1577 else if (select_ret
< 0 && errno
== EINTR
)
1579 else if (select_ret
< 0)
1581 perror("select() returned error");
1585 if(d
->master
>= 0 && FD_ISSET(d
->master
, &rfds
))
1586 DoTerminalPty(d
->master
);
1587 if(d
->master
>= 0 && FD_ISSET(0, &rfds
))
1589 if(FD_ISSET(_dpkgin
, &rfds
))
1590 DoDpkgStatusFd(_dpkgin
);
1594 // Restore sig int/quit
1595 signal(SIGQUIT
,old_SIGQUIT
);
1596 signal(SIGINT
,old_SIGINT
);
1598 signal(SIGHUP
,old_SIGHUP
);
1599 // Check for an error code.
1600 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
1602 // if it was set to "keep-dpkg-runing" then we won't return
1603 // here but keep the loop going and just report it as a error
1605 bool const stopOnError
= _config
->FindB("Dpkg::StopOnError",true);
1607 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
1608 strprintf(d
->dpkg_error
, "Sub-process %s received a segmentation fault.",Args
[0]);
1609 else if (WIFEXITED(Status
) != 0)
1610 strprintf(d
->dpkg_error
, "Sub-process %s returned an error code (%u)",Args
[0],WEXITSTATUS(Status
));
1612 strprintf(d
->dpkg_error
, "Sub-process %s exited unexpectedly",Args
[0]);
1613 _error
->Error("%s", d
->dpkg_error
.c_str());
1619 // dpkg is done at this point
1620 d
->progress
->Stop();
1624 if (pkgPackageManager::SigINTStop
)
1625 _error
->Warning(_("Operation was interrupted before it could finish"));
1627 if (RunScripts("DPkg::Post-Invoke") == false)
1630 if (_config
->FindB("Debug::pkgDPkgPM",false) == false)
1632 std::string
const oldpkgcache
= _config
->FindFile("Dir::cache::pkgcache");
1633 if (oldpkgcache
.empty() == false && RealFileExists(oldpkgcache
) == true &&
1634 unlink(oldpkgcache
.c_str()) == 0)
1636 std::string
const srcpkgcache
= _config
->FindFile("Dir::cache::srcpkgcache");
1637 if (srcpkgcache
.empty() == false && RealFileExists(srcpkgcache
) == true)
1639 _error
->PushToStack();
1640 pkgCacheFile CacheFile
;
1641 CacheFile
.BuildCaches(NULL
, true);
1642 _error
->RevertToStack();
1647 Cache
.writeStateFile(NULL
);
1648 return d
->dpkg_error
.empty();
1651 void SigINT(int /*sig*/) {
1652 pkgPackageManager::SigINTStop
= true;
1655 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
1656 // ---------------------------------------------------------------------
1658 void pkgDPkgPM::Reset()
1660 List
.erase(List
.begin(),List
.end());
1663 // pkgDpkgPM::WriteApportReport - write out error report pkg failure /*{{{*/
1664 // ---------------------------------------------------------------------
1666 void pkgDPkgPM::WriteApportReport(const char *pkgpath
, const char *errormsg
)
1668 // If apport doesn't exist or isn't installed do nothing
1669 // This e.g. prevents messages in 'universes' without apport
1670 pkgCache::PkgIterator apportPkg
= Cache
.FindPkg("apport");
1671 if (apportPkg
.end() == true || apportPkg
->CurrentVer
== 0)
1674 string pkgname
, reportfile
, srcpkgname
, pkgver
, arch
;
1675 string::size_type pos
;
1678 if (_config
->FindB("Dpkg::ApportFailureReport", true) == false)
1680 std::clog
<< "configured to not write apport reports" << std::endl
;
1684 // only report the first errors
1685 if(pkgFailures
> _config
->FindI("APT::Apport::MaxReports", 3))
1687 std::clog
<< _("No apport report written because MaxReports is reached already") << std::endl
;
1691 // check if its not a follow up error
1692 const char *needle
= dgettext("dpkg", "dependency problems - leaving unconfigured");
1693 if(strstr(errormsg
, needle
) != NULL
) {
1694 std::clog
<< _("No apport report written because the error message indicates its a followup error from a previous failure.") << std::endl
;
1698 // do not report disk-full failures
1699 if(strstr(errormsg
, strerror(ENOSPC
)) != NULL
) {
1700 std::clog
<< _("No apport report written because the error message indicates a disk full error") << std::endl
;
1704 // do not report out-of-memory failures
1705 if(strstr(errormsg
, strerror(ENOMEM
)) != NULL
||
1706 strstr(errormsg
, "failed to allocate memory") != NULL
) {
1707 std::clog
<< _("No apport report written because the error message indicates a out of memory error") << std::endl
;
1711 // do not report bugs regarding inaccessible local files
1712 if(strstr(errormsg
, strerror(ENOENT
)) != NULL
||
1713 strstr(errormsg
, "cannot access archive") != NULL
) {
1714 std::clog
<< _("No apport report written because the error message indicates an issue on the local system") << std::endl
;
1718 // do not report errors encountered when decompressing packages
1719 if(strstr(errormsg
, "--fsys-tarfile returned error exit status 2") != NULL
) {
1720 std::clog
<< _("No apport report written because the error message indicates an issue on the local system") << std::endl
;
1724 // do not report dpkg I/O errors, this is a format string, so we compare
1725 // the prefix and the suffix of the error with the dpkg error message
1726 vector
<string
> io_errors
;
1727 io_errors
.push_back(string("failed to read"));
1728 io_errors
.push_back(string("failed to write"));
1729 io_errors
.push_back(string("failed to seek"));
1730 io_errors
.push_back(string("unexpected end of file or stream"));
1732 for (vector
<string
>::iterator I
= io_errors
.begin(); I
!= io_errors
.end(); ++I
)
1734 vector
<string
> list
= VectorizeString(dgettext("dpkg", (*I
).c_str()), '%');
1735 if (list
.size() > 1) {
1736 // we need to split %s, VectorizeString only allows char so we need
1737 // to kill the "s" manually
1738 if (list
[1].size() > 1) {
1739 list
[1].erase(0, 1);
1740 if(strstr(errormsg
, list
[0].c_str()) &&
1741 strstr(errormsg
, list
[1].c_str())) {
1742 std::clog
<< _("No apport report written because the error message indicates a dpkg I/O error") << std::endl
;
1749 // get the pkgname and reportfile
1750 pkgname
= flNotDir(pkgpath
);
1751 pos
= pkgname
.find('_');
1752 if(pos
!= string::npos
)
1753 pkgname
= pkgname
.substr(0, pos
);
1755 // find the package versin and source package name
1756 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(pkgname
);
1757 if (Pkg
.end() == true)
1759 pkgCache::VerIterator Ver
= Cache
.GetCandidateVer(Pkg
);
1760 if (Ver
.end() == true)
1762 pkgver
= Ver
.VerStr() == NULL
? "unknown" : Ver
.VerStr();
1763 pkgRecords
Recs(Cache
);
1764 pkgRecords::Parser
&Parse
= Recs
.Lookup(Ver
.FileList());
1765 srcpkgname
= Parse
.SourcePkg();
1766 if(srcpkgname
.empty())
1767 srcpkgname
= pkgname
;
1769 // if the file exists already, we check:
1770 // - if it was reported already (touched by apport).
1771 // If not, we do nothing, otherwise
1772 // we overwrite it. This is the same behaviour as apport
1773 // - if we have a report with the same pkgversion already
1775 reportfile
= flCombine("/var/crash",pkgname
+".0.crash");
1776 if(FileExists(reportfile
))
1781 // check atime/mtime
1782 stat(reportfile
.c_str(), &buf
);
1783 if(buf
.st_mtime
> buf
.st_atime
)
1786 // check if the existing report is the same version
1787 report
= fopen(reportfile
.c_str(),"r");
1788 while(fgets(strbuf
, sizeof(strbuf
), report
) != NULL
)
1790 if(strstr(strbuf
,"Package:") == strbuf
)
1792 char pkgname
[255], version
[255];
1793 if(sscanf(strbuf
, "Package: %254s %254s", pkgname
, version
) == 2)
1794 if(strcmp(pkgver
.c_str(), version
) == 0)
1804 // now write the report
1805 arch
= _config
->Find("APT::Architecture");
1806 report
= fopen(reportfile
.c_str(),"w");
1809 if(_config
->FindB("DPkgPM::InitialReportOnly",false) == true)
1810 chmod(reportfile
.c_str(), 0);
1812 chmod(reportfile
.c_str(), 0600);
1813 fprintf(report
, "ProblemType: Package\n");
1814 fprintf(report
, "Architecture: %s\n", arch
.c_str());
1815 time_t now
= time(NULL
);
1816 fprintf(report
, "Date: %s" , ctime(&now
));
1817 fprintf(report
, "Package: %s %s\n", pkgname
.c_str(), pkgver
.c_str());
1818 fprintf(report
, "SourcePackage: %s\n", srcpkgname
.c_str());
1819 fprintf(report
, "ErrorMessage:\n %s\n", errormsg
);
1821 // ensure that the log is flushed
1823 fflush(d
->term_out
);
1825 // attach terminal log it if we have it
1826 string logfile_name
= _config
->FindFile("Dir::Log::Terminal");
1827 if (!logfile_name
.empty())
1831 fprintf(report
, "DpkgTerminalLog:\n");
1832 log
= fopen(logfile_name
.c_str(),"r");
1836 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1837 fprintf(report
, " %s", buf
);
1838 fprintf(report
, " \n");
1843 // attach history log it if we have it
1844 string histfile_name
= _config
->FindFile("Dir::Log::History");
1845 if (!histfile_name
.empty())
1847 fprintf(report
, "DpkgHistoryLog:\n");
1848 FILE* log
= fopen(histfile_name
.c_str(),"r");
1852 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1853 fprintf(report
, " %s", buf
);
1859 const char *ops_str
[] = {"Install", "Configure","Remove","Purge"};
1860 fprintf(report
, "AptOrdering:\n");
1861 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
1862 if ((*I
).Pkg
!= NULL
)
1863 fprintf(report
, " %s: %s\n", (*I
).Pkg
.Name(), ops_str
[(*I
).Op
]);
1865 fprintf(report
, " %s: %s\n", "NULL", ops_str
[(*I
).Op
]);
1867 // attach dmesg log (to learn about segfaults)
1868 if (FileExists("/bin/dmesg"))
1870 fprintf(report
, "Dmesg:\n");
1871 FILE *log
= popen("/bin/dmesg","r");
1875 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1876 fprintf(report
, " %s", buf
);
1881 // attach df -l log (to learn about filesystem status)
1882 if (FileExists("/bin/df"))
1885 fprintf(report
, "Df:\n");
1886 FILE *log
= popen("/bin/df -l","r");
1890 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1891 fprintf(report
, " %s", buf
);