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(-1)
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
)
402 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
403 if (Opts
== 0 || Opts
->Child
== 0)
407 unsigned int Count
= 1;
408 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
410 if (Opts
->Value
.empty() == true)
413 // Determine the protocol version
414 string OptSec
= Opts
->Value
;
415 string::size_type Pos
;
416 if ((Pos
= OptSec
.find(' ')) == string::npos
|| Pos
== 0)
417 Pos
= OptSec
.length();
418 OptSec
= "DPkg::Tools::Options::" + string(Opts
->Value
.c_str(),Pos
);
420 unsigned int Version
= _config
->FindI(OptSec
+"::Version",1);
421 unsigned int InfoFD
= _config
->FindI(OptSec
+ "::InfoFD", STDIN_FILENO
);
424 std::set
<int> KeepFDs
;
425 MergeKeepFdsFromConfiguration(KeepFDs
);
427 if (pipe(Pipes
) != 0)
428 return _error
->Errno("pipe","Failed to create IPC pipe to subprocess");
429 if (InfoFD
!= (unsigned)Pipes
[0])
430 SetCloseExec(Pipes
[0],true);
432 KeepFDs
.insert(Pipes
[0]);
435 SetCloseExec(Pipes
[1],true);
437 // Purified Fork for running the script
438 pid_t Process
= ExecFork(KeepFDs
);
442 dup2(Pipes
[0], InfoFD
);
443 SetCloseExec(STDOUT_FILENO
,false);
444 SetCloseExec(STDIN_FILENO
,false);
445 SetCloseExec(STDERR_FILENO
,false);
448 strprintf(hookfd
, "%d", InfoFD
);
449 setenv("APT_HOOK_INFO_FD", hookfd
.c_str(), 1);
451 dpkgChrootDirectory();
455 Args
[2] = Opts
->Value
.c_str();
457 execv(Args
[0],(char **)Args
);
461 FILE *F
= fdopen(Pipes
[1],"w");
463 return _error
->Errno("fdopen","Faild to open new FD");
465 // Feed it the filenames.
468 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
470 // Only deal with packages to be installed from .deb
471 if (I
->Op
!= Item::Install
)
475 if (I
->File
[0] != '/')
478 /* Feed the filename of each package that is pending install
480 fprintf(F
,"%s\n",I
->File
.c_str());
486 SendPkgsInfo(F
, Version
);
490 // Clean up the sub process
491 if (ExecWait(Process
,Opts
->Value
.c_str()) == false)
492 return _error
->Error("Failure running script %s",Opts
->Value
.c_str());
498 // DPkgPM::DoStdin - Read stdin and pass to slave pty /*{{{*/
499 // ---------------------------------------------------------------------
502 void pkgDPkgPM::DoStdin(int master
)
504 unsigned char input_buf
[256] = {0,};
505 ssize_t len
= read(0, input_buf
, sizeof(input_buf
));
507 FileFd::Write(master
, input_buf
, len
);
509 d
->stdin_is_dev_null
= true;
512 // DPkgPM::DoTerminalPty - Read the terminal pty and write log /*{{{*/
513 // ---------------------------------------------------------------------
515 * read the terminal pty and write log
517 void pkgDPkgPM::DoTerminalPty(int master
)
519 unsigned char term_buf
[1024] = {0,0, };
521 ssize_t len
=read(master
, term_buf
, sizeof(term_buf
));
522 if(len
== -1 && errno
== EIO
)
524 // this happens when the child is about to exit, we
525 // give it time to actually exit, otherwise we run
526 // into a race so we sleep for half a second.
527 struct timespec sleepfor
= { 0, 500000000 };
528 nanosleep(&sleepfor
, NULL
);
533 FileFd::Write(1, term_buf
, len
);
535 fwrite(term_buf
, len
, sizeof(char), d
->term_out
);
538 // DPkgPM::ProcessDpkgStatusBuf /*{{{*/
539 // ---------------------------------------------------------------------
542 void pkgDPkgPM::ProcessDpkgStatusLine(char *line
)
544 bool const Debug
= _config
->FindB("Debug::pkgDPkgProgressReporting",false);
546 std::clog
<< "got from dpkg '" << line
<< "'" << std::endl
;
548 /* dpkg sends strings like this:
549 'status: <pkg>: <pkg qstate>'
550 'status: <pkg>:<arch>: <pkg qstate>'
552 'processing: {install,configure,remove,purge,disappear,trigproc}: pkg'
553 'processing: {install,configure,remove,purge,disappear,trigproc}: trigger'
556 // we need to split on ": " (note the appended space) as the ':' is
557 // part of the pkgname:arch information that dpkg sends
559 // A dpkg error message may contain additional ":" (like
560 // "failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb ..."
561 // so we need to ensure to not split too much
562 std::vector
<std::string
> list
= StringSplit(line
, ": ", 4);
566 std::clog
<< "ignoring line: not enough ':'" << std::endl
;
570 // build the (prefix, pkgname, action) tuple, position of this
571 // is different for "processing" or "status" messages
572 std::string prefix
= APT::String::Strip(list
[0]);
576 // "processing" has the form "processing: action: pkg or trigger"
577 // with action = ["install", "configure", "remove", "purge", "disappear",
579 if (prefix
== "processing")
581 pkgname
= APT::String::Strip(list
[2]);
582 action
= APT::String::Strip(list
[1]);
584 // "status" has the form: "status: pkg: state"
585 // with state in ["half-installed", "unpacked", "half-configured",
586 // "installed", "config-files", "not-installed"]
587 else if (prefix
== "status")
589 pkgname
= APT::String::Strip(list
[1]);
590 action
= APT::String::Strip(list
[2]);
593 std::clog
<< "unknown prefix '" << prefix
<< "'" << std::endl
;
598 /* handle the special cases first:
600 errors look like this:
601 '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
602 and conffile-prompt like this
603 'status:/etc/compiz.conf/compiz.conf : conffile-prompt: 'current-conffile' 'new-conffile' useredited distedited
605 if (prefix
== "status")
607 if(action
== "error")
609 d
->progress
->Error(list
[1], PackagesDone
, PackagesTotal
,
612 WriteApportReport(list
[1].c_str(), list
[3].c_str());
615 else if(action
== "conffile-prompt")
617 d
->progress
->ConffilePrompt(list
[1], PackagesDone
, PackagesTotal
,
623 // at this point we know that we should have a valid pkgname, so build all
626 // dpkg does not send always send "pkgname:arch" so we add it here
628 if (pkgname
.find(":") == std::string::npos
)
630 // find the package in the group that is in a touched by dpkg
631 // if there are multiple dpkg will send us a full pkgname:arch
632 pkgCache::GrpIterator Grp
= Cache
.FindGrp(pkgname
);
633 if (Grp
.end() == false)
635 pkgCache::PkgIterator P
= Grp
.PackageList();
636 for (; P
.end() != true; P
= Grp
.NextPkg(P
))
638 if(Cache
[P
].Mode
!= pkgDepCache::ModeKeep
)
640 pkgname
= P
.FullName();
647 const char* const pkg
= pkgname
.c_str();
648 std::string short_pkgname
= StringSplit(pkgname
, ":")[0];
649 std::string arch
= "";
650 if (pkgname
.find(":") != string::npos
)
651 arch
= StringSplit(pkgname
, ":")[1];
652 std::string i18n_pkgname
= pkgname
;
653 if (arch
.size() != 0)
654 strprintf(i18n_pkgname
, "%s (%s)", short_pkgname
.c_str(), arch
.c_str());
656 // 'processing' from dpkg looks like
657 // 'processing: action: pkg'
658 if(prefix
== "processing")
660 const std::pair
<const char *, const char *> * const iter
=
661 std::find_if(PackageProcessingOpsBegin
,
662 PackageProcessingOpsEnd
,
663 MatchProcessingOp(action
.c_str()));
664 if(iter
== PackageProcessingOpsEnd
)
667 std::clog
<< "ignoring unknown action: " << action
<< std::endl
;
671 strprintf(msg
, _(iter
->second
), i18n_pkgname
.c_str());
672 d
->progress
->StatusChanged(pkgname
, PackagesDone
, PackagesTotal
, msg
);
674 // FIXME: this needs a muliarch testcase
675 // FIXME2: is "pkgname" here reliable with dpkg only sending us
677 if (action
== "disappear")
678 handleDisappearAction(pkgname
);
682 if (prefix
== "status")
684 vector
<struct DpkgState
> const &states
= PackageOps
[pkg
];
685 const char *next_action
= NULL
;
686 if(PackageOpsDone
[pkg
] < states
.size())
687 next_action
= states
[PackageOpsDone
[pkg
]].state
;
688 // check if the package moved to the next dpkg state
689 if(next_action
&& (action
== next_action
))
691 // only read the translation if there is actually a next
693 const char *translation
= _(states
[PackageOpsDone
[pkg
]].str
);
696 // we moved from one dpkg state to a new one, report that
697 PackageOpsDone
[pkg
]++;
700 strprintf(msg
, translation
, i18n_pkgname
.c_str());
701 d
->progress
->StatusChanged(pkgname
, PackagesDone
, PackagesTotal
, msg
);
705 std::clog
<< "(parsed from dpkg) pkg: " << short_pkgname
706 << " action: " << action
<< endl
;
710 // DPkgPM::handleDisappearAction /*{{{*/
711 void pkgDPkgPM::handleDisappearAction(string
const &pkgname
)
713 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(pkgname
);
714 if (unlikely(Pkg
.end() == true))
717 // record the package name for display and stuff later
718 disappearedPkgs
.insert(Pkg
.FullName(true));
720 // the disappeared package was auto-installed - nothing to do
721 if ((Cache
[Pkg
].Flags
& pkgCache::Flag::Auto
) == pkgCache::Flag::Auto
)
723 pkgCache::VerIterator PkgVer
= Cache
[Pkg
].InstVerIter(Cache
);
724 if (unlikely(PkgVer
.end() == true))
726 /* search in the list of dependencies for (Pre)Depends,
727 check if this dependency has a Replaces on our package
728 and if so transfer the manual installed flag to it */
729 for (pkgCache::DepIterator Dep
= PkgVer
.DependsList(); Dep
.end() != true; ++Dep
)
731 if (Dep
->Type
!= pkgCache::Dep::Depends
&&
732 Dep
->Type
!= pkgCache::Dep::PreDepends
)
734 pkgCache::PkgIterator Tar
= Dep
.TargetPkg();
735 if (unlikely(Tar
.end() == true))
737 // the package is already marked as manual
738 if ((Cache
[Tar
].Flags
& pkgCache::Flag::Auto
) != pkgCache::Flag::Auto
)
740 pkgCache::VerIterator TarVer
= Cache
[Tar
].InstVerIter(Cache
);
741 if (TarVer
.end() == true)
743 for (pkgCache::DepIterator Rep
= TarVer
.DependsList(); Rep
.end() != true; ++Rep
)
745 if (Rep
->Type
!= pkgCache::Dep::Replaces
)
747 if (Pkg
!= Rep
.TargetPkg())
749 // okay, they are strongly connected - transfer manual-bit
751 std::clog
<< "transfer manual-bit from disappeared »" << pkgname
<< "« to »" << Tar
.FullName() << "«" << std::endl
;
752 Cache
[Tar
].Flags
&= ~Flag::Auto
;
758 // DPkgPM::DoDpkgStatusFd /*{{{*/
759 // ---------------------------------------------------------------------
762 void pkgDPkgPM::DoDpkgStatusFd(int statusfd
)
767 len
=read(statusfd
, &d
->dpkgbuf
[d
->dpkgbuf_pos
], sizeof(d
->dpkgbuf
)-d
->dpkgbuf_pos
);
768 d
->dpkgbuf_pos
+= len
;
772 // process line by line if we have a buffer
774 while((q
=(char*)memchr(p
, '\n', d
->dpkgbuf
+d
->dpkgbuf_pos
-p
)) != NULL
)
777 ProcessDpkgStatusLine(p
);
778 p
=q
+1; // continue with next line
781 // now move the unprocessed bits (after the final \n that is now a 0x0)
782 // to the start and update d->dpkgbuf_pos
783 p
= (char*)memrchr(d
->dpkgbuf
, 0, d
->dpkgbuf_pos
);
787 // we are interessted in the first char *after* 0x0
790 // move the unprocessed tail to the start and update pos
791 memmove(d
->dpkgbuf
, p
, p
-d
->dpkgbuf
);
792 d
->dpkgbuf_pos
= d
->dpkgbuf
+d
->dpkgbuf_pos
-p
;
795 // DPkgPM::WriteHistoryTag /*{{{*/
796 void pkgDPkgPM::WriteHistoryTag(string
const &tag
, string value
)
798 size_t const length
= value
.length();
801 // poor mans rstrip(", ")
802 if (value
[length
-2] == ',' && value
[length
-1] == ' ')
803 value
.erase(length
- 2, 2);
804 fprintf(d
->history_out
, "%s: %s\n", tag
.c_str(), value
.c_str());
806 // DPkgPM::OpenLog /*{{{*/
807 bool pkgDPkgPM::OpenLog()
809 string
const logdir
= _config
->FindDir("Dir::Log");
810 if(CreateAPTDirectoryIfNeeded(logdir
, logdir
) == false)
811 // FIXME: use a better string after freeze
812 return _error
->Error(_("Directory '%s' missing"), logdir
.c_str());
816 time_t const t
= time(NULL
);
817 struct tm
const * const tmp
= localtime(&t
);
818 strftime(timestr
, sizeof(timestr
), "%F %T", tmp
);
821 string
const logfile_name
= flCombine(logdir
,
822 _config
->Find("Dir::Log::Terminal"));
823 if (!logfile_name
.empty())
825 d
->term_out
= fopen(logfile_name
.c_str(),"a");
826 if (d
->term_out
== NULL
)
827 return _error
->WarningE("OpenLog", _("Could not open file '%s'"), logfile_name
.c_str());
828 setvbuf(d
->term_out
, NULL
, _IONBF
, 0);
829 SetCloseExec(fileno(d
->term_out
), true);
830 if (getuid() == 0) // if we aren't root, we can't chown a file, so don't try it
832 struct passwd
*pw
= getpwnam("root");
833 struct group
*gr
= getgrnam("adm");
834 if (pw
!= NULL
&& gr
!= NULL
&& chown(logfile_name
.c_str(), pw
->pw_uid
, gr
->gr_gid
) != 0)
835 _error
->WarningE("OpenLog", "chown to root:adm of file %s failed", logfile_name
.c_str());
837 if (chmod(logfile_name
.c_str(), 0640) != 0)
838 _error
->WarningE("OpenLog", "chmod 0640 of file %s failed", logfile_name
.c_str());
839 fprintf(d
->term_out
, "\nLog started: %s\n", timestr
);
842 // write your history
843 string
const history_name
= flCombine(logdir
,
844 _config
->Find("Dir::Log::History"));
845 if (!history_name
.empty())
847 d
->history_out
= fopen(history_name
.c_str(),"a");
848 if (d
->history_out
== NULL
)
849 return _error
->WarningE("OpenLog", _("Could not open file '%s'"), history_name
.c_str());
850 SetCloseExec(fileno(d
->history_out
), true);
851 chmod(history_name
.c_str(), 0644);
852 fprintf(d
->history_out
, "\nStart-Date: %s\n", timestr
);
853 string remove
, purge
, install
, reinstall
, upgrade
, downgrade
;
854 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; ++I
)
856 enum { CANDIDATE
, CANDIDATE_AUTO
, CURRENT_CANDIDATE
, CURRENT
} infostring
;
858 #define HISTORYINFO(X, Y) { line = &X; infostring = Y; }
859 if (Cache
[I
].NewInstall() == true)
860 HISTORYINFO(install
, CANDIDATE_AUTO
)
861 else if (Cache
[I
].ReInstall() == true)
862 HISTORYINFO(reinstall
, CANDIDATE
)
863 else if (Cache
[I
].Upgrade() == true)
864 HISTORYINFO(upgrade
, CURRENT_CANDIDATE
)
865 else if (Cache
[I
].Downgrade() == true)
866 HISTORYINFO(downgrade
, CURRENT_CANDIDATE
)
867 else if (Cache
[I
].Delete() == true)
868 HISTORYINFO((Cache
[I
].Purge() ? purge
: remove
), CURRENT
)
872 line
->append(I
.FullName(false)).append(" (");
873 switch (infostring
) {
874 case CANDIDATE
: line
->append(Cache
[I
].CandVersion
); break;
876 line
->append(Cache
[I
].CandVersion
);
877 if ((Cache
[I
].Flags
& pkgCache::Flag::Auto
) == pkgCache::Flag::Auto
)
878 line
->append(", automatic");
880 case CURRENT_CANDIDATE
: line
->append(Cache
[I
].CurVersion
).append(", ").append(Cache
[I
].CandVersion
); break;
881 case CURRENT
: line
->append(Cache
[I
].CurVersion
); break;
885 if (_config
->Exists("Commandline::AsString") == true)
886 WriteHistoryTag("Commandline", _config
->Find("Commandline::AsString"));
887 WriteHistoryTag("Install", install
);
888 WriteHistoryTag("Reinstall", reinstall
);
889 WriteHistoryTag("Upgrade", upgrade
);
890 WriteHistoryTag("Downgrade",downgrade
);
891 WriteHistoryTag("Remove",remove
);
892 WriteHistoryTag("Purge",purge
);
893 fflush(d
->history_out
);
899 // DPkg::CloseLog /*{{{*/
900 bool pkgDPkgPM::CloseLog()
903 time_t t
= time(NULL
);
904 struct tm
*tmp
= localtime(&t
);
905 strftime(timestr
, sizeof(timestr
), "%F %T", tmp
);
909 fprintf(d
->term_out
, "Log ended: ");
910 fprintf(d
->term_out
, "%s", timestr
);
911 fprintf(d
->term_out
, "\n");
918 if (disappearedPkgs
.empty() == false)
921 for (std::set
<std::string
>::const_iterator d
= disappearedPkgs
.begin();
922 d
!= disappearedPkgs
.end(); ++d
)
924 pkgCache::PkgIterator P
= Cache
.FindPkg(*d
);
925 disappear
.append(*d
);
927 disappear
.append(", ");
929 disappear
.append(" (").append(Cache
[P
].CurVersion
).append("), ");
931 WriteHistoryTag("Disappeared", disappear
);
933 if (d
->dpkg_error
.empty() == false)
934 fprintf(d
->history_out
, "Error: %s\n", d
->dpkg_error
.c_str());
935 fprintf(d
->history_out
, "End-Date: %s\n", timestr
);
936 fclose(d
->history_out
);
938 d
->history_out
= NULL
;
945 // This implements a racy version of pselect for those architectures
946 // that don't have a working implementation.
947 // FIXME: Probably can be removed on Lenny+1
948 static int racy_pselect(int nfds
, fd_set
*readfds
, fd_set
*writefds
,
949 fd_set
*exceptfds
, const struct timespec
*timeout
,
950 const sigset_t
*sigmask
)
956 tv
.tv_sec
= timeout
->tv_sec
;
957 tv
.tv_usec
= timeout
->tv_nsec
/1000;
959 sigprocmask(SIG_SETMASK
, sigmask
, &origmask
);
960 retval
= select(nfds
, readfds
, writefds
, exceptfds
, &tv
);
961 sigprocmask(SIG_SETMASK
, &origmask
, 0);
966 // DPkgPM::BuildPackagesProgressMap /*{{{*/
967 void pkgDPkgPM::BuildPackagesProgressMap()
969 // map the dpkg states to the operations that are performed
970 // (this is sorted in the same way as Item::Ops)
971 static const struct DpkgState DpkgStatesOpMap
[][7] = {
974 {"half-installed", N_("Preparing %s")},
975 {"unpacked", N_("Unpacking %s") },
978 // Configure operation
980 {"unpacked",N_("Preparing to configure %s") },
981 {"half-configured", N_("Configuring %s") },
982 { "installed", N_("Installed %s")},
987 {"half-configured", N_("Preparing for removal of %s")},
988 {"half-installed", N_("Removing %s")},
989 {"config-files", N_("Removed %s")},
994 {"config-files", N_("Preparing to completely remove %s")},
995 {"not-installed", N_("Completely removed %s")},
1000 // init the PackageOps map, go over the list of packages that
1001 // that will be [installed|configured|removed|purged] and add
1002 // them to the PackageOps map (the dpkg states it goes through)
1003 // and the PackageOpsTranslations (human readable strings)
1004 for (vector
<Item
>::const_iterator I
= List
.begin(); I
!= List
.end(); ++I
)
1006 if((*I
).Pkg
.end() == true)
1009 string
const name
= (*I
).Pkg
.FullName();
1010 PackageOpsDone
[name
] = 0;
1011 for(int i
=0; (DpkgStatesOpMap
[(*I
).Op
][i
]).state
!= NULL
; ++i
)
1013 PackageOps
[name
].push_back(DpkgStatesOpMap
[(*I
).Op
][i
]);
1019 #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13)
1020 bool pkgDPkgPM::Go(int StatusFd
)
1022 APT::Progress::PackageManager
*progress
= NULL
;
1024 progress
= APT::Progress::PackageManagerProgressFactory();
1026 progress
= new APT::Progress::PackageManagerProgressFd(StatusFd
);
1028 return GoNoABIBreak(progress
);
1032 void pkgDPkgPM::StartPtyMagic()
1034 if (_config
->FindB("Dpkg::Use-Pty", true) == false)
1036 d
->master
= d
->slave
= -1;
1040 // setup the pty and stuff
1043 // if tcgetattr does not return zero there was a error
1044 // and we do not do any pty magic
1045 _error
->PushToStack();
1046 if (tcgetattr(STDOUT_FILENO
, &d
->tt
) == 0)
1048 if (ioctl(1, TIOCGWINSZ
, (char *)&win
) < 0)
1050 _error
->Errno("ioctl", _("ioctl(TIOCGWINSZ) failed"));
1051 } else if (openpty(&d
->master
, &d
->slave
, NULL
, &d
->tt
, &win
) < 0)
1053 _error
->Errno("openpty", _("Can not write log (%s)"), _("Is /dev/pts mounted?"));
1054 d
->master
= d
->slave
= -1;
1059 rtt
.c_lflag
&= ~ECHO
;
1060 rtt
.c_lflag
|= ISIG
;
1061 // block SIGTTOU during tcsetattr to prevent a hang if
1062 // the process is a member of the background process group
1063 // http://www.opengroup.org/onlinepubs/000095399/functions/tcsetattr.html
1064 sigemptyset(&d
->sigmask
);
1065 sigaddset(&d
->sigmask
, SIGTTOU
);
1066 sigprocmask(SIG_BLOCK
,&d
->sigmask
, &d
->original_sigmask
);
1067 tcsetattr(0, TCSAFLUSH
, &rtt
);
1068 sigprocmask(SIG_SETMASK
, &d
->original_sigmask
, 0);
1071 // complain only if stdout is either a terminal (but still failed) or is an invalid
1072 // descriptor otherwise we would complain about redirection to e.g. /dev/null as well.
1073 else if (isatty(STDOUT_FILENO
) == 1 || errno
== EBADF
)
1074 _error
->Errno("tcgetattr", _("Can not write log (%s)"), _("Is stdout a terminal?"));
1076 if (_error
->PendingError() == true)
1077 _error
->DumpErrors(std::cerr
);
1078 _error
->RevertToStack();
1081 void pkgDPkgPM::StopPtyMagic()
1087 tcsetattr(0, TCSAFLUSH
, &d
->tt
);
1092 // DPkgPM::Go - Run the sequence /*{{{*/
1093 // ---------------------------------------------------------------------
1094 /* This globs the operations and calls dpkg
1096 * If it is called with a progress object apt will report the install
1097 * progress to this object. It maps the dpkg states a package goes
1098 * through to human readable (and i10n-able)
1099 * names and calculates a percentage for each step.
1101 #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13)
1102 bool pkgDPkgPM::Go(APT::Progress::PackageManager
*progress
)
1104 bool pkgDPkgPM::GoNoABIBreak(APT::Progress::PackageManager
*progress
)
1107 pkgPackageManager::SigINTStop
= false;
1108 d
->progress
= progress
;
1110 // Generate the base argument list for dpkg
1111 unsigned long StartSize
= 0;
1112 std::vector
<const char *> Args
;
1113 std::string DpkgExecutable
= getDpkgExecutable();
1114 Args
.push_back(DpkgExecutable
.c_str());
1115 StartSize
+= DpkgExecutable
.length();
1117 // Stick in any custom dpkg options
1118 Configuration::Item
const *Opts
= _config
->Tree("DPkg::Options");
1122 for (; Opts
!= 0; Opts
= Opts
->Next
)
1124 if (Opts
->Value
.empty() == true)
1126 Args
.push_back(Opts
->Value
.c_str());
1127 StartSize
+= Opts
->Value
.length();
1131 size_t const BaseArgs
= Args
.size();
1132 // we need to detect if we can qualify packages with the architecture or not
1133 Args
.push_back("--assert-multi-arch");
1134 Args
.push_back(NULL
);
1136 pid_t dpkgAssertMultiArch
= ExecFork();
1137 if (dpkgAssertMultiArch
== 0)
1139 dpkgChrootDirectory();
1140 // redirect everything to the ultimate sink as we only need the exit-status
1141 int const nullfd
= open("/dev/null", O_RDONLY
);
1142 dup2(nullfd
, STDIN_FILENO
);
1143 dup2(nullfd
, STDOUT_FILENO
);
1144 dup2(nullfd
, STDERR_FILENO
);
1145 execvp(Args
[0], (char**) &Args
[0]);
1146 _error
->WarningE("dpkgGo", "Can't detect if dpkg supports multi-arch!");
1153 unsigned int const MaxArgs
= _config
->FindI("Dpkg::MaxArgs",8*1024);
1154 unsigned int const MaxArgBytes
= _config
->FindI("Dpkg::MaxArgBytes",32*1024);
1155 bool const NoTriggers
= _config
->FindB("DPkg::NoTriggers", false);
1157 if (RunScripts("DPkg::Pre-Invoke") == false)
1160 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
1163 // support subpressing of triggers processing for special
1164 // cases like d-i that runs the triggers handling manually
1165 bool const SmartConf
= (_config
->Find("PackageManager::Configure", "all") != "all");
1166 bool const TriggersPending
= _config
->FindB("DPkg::TriggersPending", false);
1167 if (_config
->FindB("DPkg::ConfigurePending", SmartConf
) == true)
1168 List
.push_back(Item(Item::ConfigurePending
, PkgIterator()));
1171 BuildPackagesProgressMap();
1173 d
->stdin_is_dev_null
= false;
1178 bool dpkgMultiArch
= false;
1179 if (dpkgAssertMultiArch
> 0)
1182 while (waitpid(dpkgAssertMultiArch
, &Status
, 0) != dpkgAssertMultiArch
)
1186 _error
->WarningE("dpkgGo", _("Waited for %s but it wasn't there"), "dpkg --assert-multi-arch");
1189 if (WIFEXITED(Status
) == true && WEXITSTATUS(Status
) == 0)
1190 dpkgMultiArch
= true;
1193 // start pty magic before the loop
1196 // Tell the progress that its starting and fork dpkg
1197 d
->progress
->Start(d
->master
);
1199 // this loop is runs once per dpkg operation
1200 vector
<Item
>::const_iterator I
= List
.begin();
1201 while (I
!= List
.end())
1203 // Do all actions with the same Op in one run
1204 vector
<Item
>::const_iterator J
= I
;
1205 if (TriggersPending
== true)
1206 for (; J
!= List
.end(); ++J
)
1210 if (J
->Op
!= Item::TriggersPending
)
1212 vector
<Item
>::const_iterator T
= J
+ 1;
1213 if (T
!= List
.end() && T
->Op
== I
->Op
)
1218 for (; J
!= List
.end() && J
->Op
== I
->Op
; ++J
)
1221 // keep track of allocated strings for multiarch package names
1222 std::vector
<char *> Packages
;
1224 // start with the baseset of arguments
1225 unsigned long Size
= StartSize
;
1226 Args
.erase(Args
.begin() + BaseArgs
, Args
.end());
1228 // Now check if we are within the MaxArgs limit
1230 // this code below is problematic, because it may happen that
1231 // the argument list is split in a way that A depends on B
1232 // and they are in the same "--configure A B" run
1233 // - with the split they may now be configured in different
1234 // runs, using Immediate-Configure-All can help prevent this.
1235 if (J
- I
> (signed)MaxArgs
)
1238 unsigned long const size
= MaxArgs
+ 10;
1240 Packages
.reserve(size
);
1244 unsigned long const size
= (J
- I
) + 10;
1246 Packages
.reserve(size
);
1251 return _error
->Errno("pipe","Failed to create IPC pipe to dpkg");
1253 #define ADDARG(X) Args.push_back(X); Size += strlen(X)
1254 #define ADDARGC(X) Args.push_back(X); Size += sizeof(X) - 1
1256 ADDARGC("--status-fd");
1257 char status_fd_buf
[20];
1258 snprintf(status_fd_buf
,sizeof(status_fd_buf
),"%i", fd
[1]);
1259 ADDARG(status_fd_buf
);
1260 unsigned long const Op
= I
->Op
;
1265 ADDARGC("--force-depends");
1266 ADDARGC("--force-remove-essential");
1267 ADDARGC("--remove");
1271 ADDARGC("--force-depends");
1272 ADDARGC("--force-remove-essential");
1276 case Item::Configure
:
1277 ADDARGC("--configure");
1280 case Item::ConfigurePending
:
1281 ADDARGC("--configure");
1282 ADDARGC("--pending");
1285 case Item::TriggersPending
:
1286 ADDARGC("--triggers-only");
1287 ADDARGC("--pending");
1291 ADDARGC("--unpack");
1292 ADDARGC("--auto-deconfigure");
1296 if (NoTriggers
== true && I
->Op
!= Item::TriggersPending
&&
1297 I
->Op
!= Item::ConfigurePending
)
1299 ADDARGC("--no-triggers");
1303 // Write in the file or package names
1304 if (I
->Op
== Item::Install
)
1306 for (;I
!= J
&& Size
< MaxArgBytes
; ++I
)
1308 if (I
->File
[0] != '/')
1309 return _error
->Error("Internal Error, Pathname to install is not absolute '%s'",I
->File
.c_str());
1310 Args
.push_back(I
->File
.c_str());
1311 Size
+= I
->File
.length();
1316 string
const nativeArch
= _config
->Find("APT::Architecture");
1317 unsigned long const oldSize
= I
->Op
== Item::Configure
? Size
: 0;
1318 for (;I
!= J
&& Size
< MaxArgBytes
; ++I
)
1320 if((*I
).Pkg
.end() == true)
1322 if (I
->Op
== Item::Configure
&& disappearedPkgs
.find(I
->Pkg
.FullName(true)) != disappearedPkgs
.end())
1324 // We keep this here to allow "smooth" transitions from e.g. multiarch dpkg/ubuntu to dpkg/debian
1325 if (dpkgMultiArch
== false && (I
->Pkg
.Arch() == nativeArch
||
1326 strcmp(I
->Pkg
.Arch(), "all") == 0 ||
1327 strcmp(I
->Pkg
.Arch(), "none") == 0))
1329 char const * const name
= I
->Pkg
.Name();
1334 pkgCache::VerIterator PkgVer
;
1335 std::string name
= I
->Pkg
.Name();
1336 if (Op
== Item::Remove
|| Op
== Item::Purge
)
1338 PkgVer
= I
->Pkg
.CurrentVer();
1339 if(PkgVer
.end() == true)
1340 PkgVer
= FindNowVersion(I
->Pkg
);
1343 PkgVer
= Cache
[I
->Pkg
].InstVerIter(Cache
);
1344 if (strcmp(I
->Pkg
.Arch(), "none") == 0)
1345 ; // never arch-qualify a package without an arch
1346 else if (PkgVer
.end() == false)
1347 name
.append(":").append(PkgVer
.Arch());
1349 _error
->Warning("Can not find PkgVer for '%s'", name
.c_str());
1350 char * const fullname
= strdup(name
.c_str());
1351 Packages
.push_back(fullname
);
1355 // skip configure action if all sheduled packages disappeared
1356 if (oldSize
== Size
)
1363 if (_config
->FindB("Debug::pkgDPkgPM",false) == true)
1365 for (std::vector
<const char *>::const_iterator a
= Args
.begin();
1366 a
!= Args
.end(); ++a
)
1371 Args
.push_back(NULL
);
1377 /* Mask off sig int/quit. We do this because dpkg also does when
1378 it forks scripts. What happens is that when you hit ctrl-c it sends
1379 it to all processes in the group. Since dpkg ignores the signal
1380 it doesn't die but we do! So we must also ignore it */
1381 sighandler_t old_SIGQUIT
= signal(SIGQUIT
,SIG_IGN
);
1382 sighandler_t old_SIGINT
= signal(SIGINT
,SigINT
);
1384 // Check here for any SIGINT
1385 if (pkgPackageManager::SigINTStop
&& (Op
== Item::Remove
|| Op
== Item::Purge
|| Op
== Item::Install
))
1389 // ignore SIGHUP as well (debian #463030)
1390 sighandler_t old_SIGHUP
= signal(SIGHUP
,SIG_IGN
);
1393 d
->progress
->StartDpkg();
1394 std::set
<int> KeepFDs
;
1395 KeepFDs
.insert(fd
[1]);
1396 MergeKeepFdsFromConfiguration(KeepFDs
);
1397 pid_t Child
= ExecFork(KeepFDs
);
1400 // This is the child
1401 if(d
->slave
>= 0 && d
->master
>= 0)
1404 int res
= ioctl(d
->slave
, TIOCSCTTY
, 0);
1406 std::cerr
<< "ioctl(TIOCSCTTY) failed for fd: "
1407 << d
->slave
<< std::endl
;
1416 close(fd
[0]); // close the read end of the pipe
1418 dpkgChrootDirectory();
1420 if (chdir(_config
->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
1423 if (_config
->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO
))
1426 if ((Flags
= fcntl(STDIN_FILENO
,F_GETFL
,dummy
)) < 0)
1429 // Discard everything in stdin before forking dpkg
1430 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
| O_NONBLOCK
) < 0)
1433 while (read(STDIN_FILENO
,&dummy
,1) == 1);
1435 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
& (~(long)O_NONBLOCK
)) < 0)
1439 /* No Job Control Stop Env is a magic dpkg var that prevents it
1440 from using sigstop */
1441 putenv((char *)"DPKG_NO_TSTP=yes");
1442 execvp(Args
[0], (char**) &Args
[0]);
1443 cerr
<< "Could not exec dpkg!" << endl
;
1448 if (_config
->FindB("DPkg::UseIoNice", false) == true)
1454 // we read from dpkg here
1455 int const _dpkgin
= fd
[0];
1456 close(fd
[1]); // close the write end of the pipe
1459 sigemptyset(&d
->sigmask
);
1460 sigprocmask(SIG_BLOCK
,&d
->sigmask
,&d
->original_sigmask
);
1462 /* free vectors (and therefore memory) as we don't need the included data anymore */
1463 for (std::vector
<char *>::const_iterator p
= Packages
.begin();
1464 p
!= Packages
.end(); ++p
)
1468 // the result of the waitpid call
1471 while ((res
=waitpid(Child
,&Status
, WNOHANG
)) != Child
) {
1473 // FIXME: move this to a function or something, looks ugly here
1474 // error handling, waitpid returned -1
1477 RunScripts("DPkg::Post-Invoke");
1479 // Restore sig int/quit
1480 signal(SIGQUIT
,old_SIGQUIT
);
1481 signal(SIGINT
,old_SIGINT
);
1483 signal(SIGHUP
,old_SIGHUP
);
1484 return _error
->Errno("waitpid","Couldn't wait for subprocess");
1487 // wait for input or output here
1489 if (d
->master
>= 0 && !d
->stdin_is_dev_null
)
1491 FD_SET(_dpkgin
, &rfds
);
1493 FD_SET(d
->master
, &rfds
);
1495 tv
.tv_nsec
= d
->progress
->GetPulseInterval();
1496 select_ret
= pselect(max(d
->master
, _dpkgin
)+1, &rfds
, NULL
, NULL
,
1497 &tv
, &d
->original_sigmask
);
1498 if (select_ret
< 0 && (errno
== EINVAL
|| errno
== ENOSYS
))
1499 select_ret
= racy_pselect(max(d
->master
, _dpkgin
)+1, &rfds
, NULL
,
1500 NULL
, &tv
, &d
->original_sigmask
);
1501 d
->progress
->Pulse();
1502 if (select_ret
== 0)
1504 else if (select_ret
< 0 && errno
== EINTR
)
1506 else if (select_ret
< 0)
1508 perror("select() returned error");
1512 if(d
->master
>= 0 && FD_ISSET(d
->master
, &rfds
))
1513 DoTerminalPty(d
->master
);
1514 if(d
->master
>= 0 && FD_ISSET(0, &rfds
))
1516 if(FD_ISSET(_dpkgin
, &rfds
))
1517 DoDpkgStatusFd(_dpkgin
);
1521 // Restore sig int/quit
1522 signal(SIGQUIT
,old_SIGQUIT
);
1523 signal(SIGINT
,old_SIGINT
);
1525 signal(SIGHUP
,old_SIGHUP
);
1526 // Check for an error code.
1527 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
1529 // if it was set to "keep-dpkg-runing" then we won't return
1530 // here but keep the loop going and just report it as a error
1532 bool const stopOnError
= _config
->FindB("Dpkg::StopOnError",true);
1534 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
1535 strprintf(d
->dpkg_error
, "Sub-process %s received a segmentation fault.",Args
[0]);
1536 else if (WIFEXITED(Status
) != 0)
1537 strprintf(d
->dpkg_error
, "Sub-process %s returned an error code (%u)",Args
[0],WEXITSTATUS(Status
));
1539 strprintf(d
->dpkg_error
, "Sub-process %s exited unexpectedly",Args
[0]);
1540 _error
->Error("%s", d
->dpkg_error
.c_str());
1546 // dpkg is done at this point
1547 d
->progress
->Stop();
1551 if (pkgPackageManager::SigINTStop
)
1552 _error
->Warning(_("Operation was interrupted before it could finish"));
1554 if (RunScripts("DPkg::Post-Invoke") == false)
1557 if (_config
->FindB("Debug::pkgDPkgPM",false) == false)
1559 std::string
const oldpkgcache
= _config
->FindFile("Dir::cache::pkgcache");
1560 if (oldpkgcache
.empty() == false && RealFileExists(oldpkgcache
) == true &&
1561 unlink(oldpkgcache
.c_str()) == 0)
1563 std::string
const srcpkgcache
= _config
->FindFile("Dir::cache::srcpkgcache");
1564 if (srcpkgcache
.empty() == false && RealFileExists(srcpkgcache
) == true)
1566 _error
->PushToStack();
1567 pkgCacheFile CacheFile
;
1568 CacheFile
.BuildCaches(NULL
, true);
1569 _error
->RevertToStack();
1574 Cache
.writeStateFile(NULL
);
1575 return d
->dpkg_error
.empty();
1578 void SigINT(int /*sig*/) {
1579 pkgPackageManager::SigINTStop
= true;
1582 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
1583 // ---------------------------------------------------------------------
1585 void pkgDPkgPM::Reset()
1587 List
.erase(List
.begin(),List
.end());
1590 // pkgDpkgPM::WriteApportReport - write out error report pkg failure /*{{{*/
1591 // ---------------------------------------------------------------------
1593 void pkgDPkgPM::WriteApportReport(const char *pkgpath
, const char *errormsg
)
1595 // If apport doesn't exist or isn't installed do nothing
1596 // This e.g. prevents messages in 'universes' without apport
1597 pkgCache::PkgIterator apportPkg
= Cache
.FindPkg("apport");
1598 if (apportPkg
.end() == true || apportPkg
->CurrentVer
== 0)
1601 string pkgname
, reportfile
, srcpkgname
, pkgver
, arch
;
1602 string::size_type pos
;
1605 if (_config
->FindB("Dpkg::ApportFailureReport", false) == false)
1607 std::clog
<< "configured to not write apport reports" << std::endl
;
1611 // only report the first errors
1612 if(pkgFailures
> _config
->FindI("APT::Apport::MaxReports", 3))
1614 std::clog
<< _("No apport report written because MaxReports is reached already") << std::endl
;
1618 // check if its not a follow up error
1619 const char *needle
= dgettext("dpkg", "dependency problems - leaving unconfigured");
1620 if(strstr(errormsg
, needle
) != NULL
) {
1621 std::clog
<< _("No apport report written because the error message indicates its a followup error from a previous failure.") << std::endl
;
1625 // do not report disk-full failures
1626 if(strstr(errormsg
, strerror(ENOSPC
)) != NULL
) {
1627 std::clog
<< _("No apport report written because the error message indicates a disk full error") << std::endl
;
1631 // do not report out-of-memory failures
1632 if(strstr(errormsg
, strerror(ENOMEM
)) != NULL
||
1633 strstr(errormsg
, "failed to allocate memory") != NULL
) {
1634 std::clog
<< _("No apport report written because the error message indicates a out of memory error") << std::endl
;
1638 // do not report bugs regarding inaccessible local files
1639 if(strstr(errormsg
, strerror(ENOENT
)) != NULL
||
1640 strstr(errormsg
, "cannot access archive") != NULL
) {
1641 std::clog
<< _("No apport report written because the error message indicates an issue on the local system") << std::endl
;
1645 // do not report errors encountered when decompressing packages
1646 if(strstr(errormsg
, "--fsys-tarfile returned error exit status 2") != NULL
) {
1647 std::clog
<< _("No apport report written because the error message indicates an issue on the local system") << std::endl
;
1651 // do not report dpkg I/O errors, this is a format string, so we compare
1652 // the prefix and the suffix of the error with the dpkg error message
1653 vector
<string
> io_errors
;
1654 io_errors
.push_back(string("failed to read on buffer copy for %s"));
1655 io_errors
.push_back(string("failed in write on buffer copy for %s"));
1656 io_errors
.push_back(string("short read on buffer copy for %s"));
1658 for (vector
<string
>::iterator I
= io_errors
.begin(); I
!= io_errors
.end(); ++I
)
1660 vector
<string
> list
= VectorizeString(dgettext("dpkg", (*I
).c_str()), '%');
1661 if (list
.size() > 1) {
1662 // we need to split %s, VectorizeString only allows char so we need
1663 // to kill the "s" manually
1664 if (list
[1].size() > 1) {
1665 list
[1].erase(0, 1);
1666 if(strstr(errormsg
, list
[0].c_str()) &&
1667 strstr(errormsg
, list
[1].c_str())) {
1668 std::clog
<< _("No apport report written because the error message indicates a dpkg I/O error") << std::endl
;
1675 // get the pkgname and reportfile
1676 pkgname
= flNotDir(pkgpath
);
1677 pos
= pkgname
.find('_');
1678 if(pos
!= string::npos
)
1679 pkgname
= pkgname
.substr(0, pos
);
1681 // find the package versin and source package name
1682 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(pkgname
);
1683 if (Pkg
.end() == true)
1685 pkgCache::VerIterator Ver
= Cache
.GetCandidateVer(Pkg
);
1686 if (Ver
.end() == true)
1688 pkgver
= Ver
.VerStr() == NULL
? "unknown" : Ver
.VerStr();
1689 pkgRecords
Recs(Cache
);
1690 pkgRecords::Parser
&Parse
= Recs
.Lookup(Ver
.FileList());
1691 srcpkgname
= Parse
.SourcePkg();
1692 if(srcpkgname
.empty())
1693 srcpkgname
= pkgname
;
1695 // if the file exists already, we check:
1696 // - if it was reported already (touched by apport).
1697 // If not, we do nothing, otherwise
1698 // we overwrite it. This is the same behaviour as apport
1699 // - if we have a report with the same pkgversion already
1701 reportfile
= flCombine("/var/crash",pkgname
+".0.crash");
1702 if(FileExists(reportfile
))
1707 // check atime/mtime
1708 stat(reportfile
.c_str(), &buf
);
1709 if(buf
.st_mtime
> buf
.st_atime
)
1712 // check if the existing report is the same version
1713 report
= fopen(reportfile
.c_str(),"r");
1714 while(fgets(strbuf
, sizeof(strbuf
), report
) != NULL
)
1716 if(strstr(strbuf
,"Package:") == strbuf
)
1718 char pkgname
[255], version
[255];
1719 if(sscanf(strbuf
, "Package: %254s %254s", pkgname
, version
) == 2)
1720 if(strcmp(pkgver
.c_str(), version
) == 0)
1730 // now write the report
1731 arch
= _config
->Find("APT::Architecture");
1732 report
= fopen(reportfile
.c_str(),"w");
1735 if(_config
->FindB("DPkgPM::InitialReportOnly",false) == true)
1736 chmod(reportfile
.c_str(), 0);
1738 chmod(reportfile
.c_str(), 0600);
1739 fprintf(report
, "ProblemType: Package\n");
1740 fprintf(report
, "Architecture: %s\n", arch
.c_str());
1741 time_t now
= time(NULL
);
1742 fprintf(report
, "Date: %s" , ctime(&now
));
1743 fprintf(report
, "Package: %s %s\n", pkgname
.c_str(), pkgver
.c_str());
1744 fprintf(report
, "SourcePackage: %s\n", srcpkgname
.c_str());
1745 fprintf(report
, "ErrorMessage:\n %s\n", errormsg
);
1747 // ensure that the log is flushed
1749 fflush(d
->term_out
);
1751 // attach terminal log it if we have it
1752 string logfile_name
= _config
->FindFile("Dir::Log::Terminal");
1753 if (!logfile_name
.empty())
1757 fprintf(report
, "DpkgTerminalLog:\n");
1758 log
= fopen(logfile_name
.c_str(),"r");
1762 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1763 fprintf(report
, " %s", buf
);
1764 fprintf(report
, " \n");
1769 // attach history log it if we have it
1770 string histfile_name
= _config
->FindFile("Dir::Log::History");
1771 if (!histfile_name
.empty())
1773 fprintf(report
, "DpkgHistoryLog:\n");
1774 FILE* log
= fopen(histfile_name
.c_str(),"r");
1778 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1779 fprintf(report
, " %s", buf
);
1785 const char *ops_str
[] = {"Install", "Configure","Remove","Purge"};
1786 fprintf(report
, "AptOrdering:\n");
1787 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
1788 if ((*I
).Pkg
!= NULL
)
1789 fprintf(report
, " %s: %s\n", (*I
).Pkg
.Name(), ops_str
[(*I
).Op
]);
1791 fprintf(report
, " %s: %s\n", "NULL", ops_str
[(*I
).Op
]);
1793 // attach dmesg log (to learn about segfaults)
1794 if (FileExists("/bin/dmesg"))
1796 fprintf(report
, "Dmesg:\n");
1797 FILE *log
= popen("/bin/dmesg","r");
1801 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1802 fprintf(report
, " %s", buf
);
1807 // attach df -l log (to learn about filesystem status)
1808 if (FileExists("/bin/df"))
1811 fprintf(report
, "Df:\n");
1812 FILE *log
= popen("/bin/df -l","r");
1816 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1817 fprintf(report
, " %s", buf
);