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/dpkgpm.h>
14 #include <apt-pkg/error.h>
15 #include <apt-pkg/configuration.h>
16 #include <apt-pkg/depcache.h>
17 #include <apt-pkg/pkgrecords.h>
18 #include <apt-pkg/strutl.h>
19 #include <apt-pkg/fileutl.h>
20 #include <apt-pkg/cachefile.h>
21 #include <apt-pkg/packagemanager.h>
26 #include <sys/select.h>
28 #include <sys/types.h>
43 #include <sys/ioctl.h>
51 class pkgDPkgPMPrivate
54 pkgDPkgPMPrivate() : dpkgbuf_pos(0), term_out(NULL
), history_out(NULL
)
57 bool stdin_is_dev_null
;
58 // the buffer we use for the dpkg status-fd reading
68 // Maps the dpkg "processing" info to human readable names. Entry 0
69 // of each array is the key, entry 1 is the value.
70 const std::pair
<const char *, const char *> PackageProcessingOps
[] = {
71 std::make_pair("install", N_("Installing %s")),
72 std::make_pair("configure", N_("Configuring %s")),
73 std::make_pair("remove", N_("Removing %s")),
74 std::make_pair("purge", N_("Completely removing %s")),
75 std::make_pair("disappear", N_("Noting disappearance of %s")),
76 std::make_pair("trigproc", N_("Running post-installation trigger %s"))
79 const std::pair
<const char *, const char *> * const PackageProcessingOpsBegin
= PackageProcessingOps
;
80 const std::pair
<const char *, const char *> * const PackageProcessingOpsEnd
= PackageProcessingOps
+ sizeof(PackageProcessingOps
) / sizeof(PackageProcessingOps
[0]);
82 // Predicate to test whether an entry in the PackageProcessingOps
83 // array matches a string.
84 class MatchProcessingOp
89 MatchProcessingOp(const char *the_target
)
94 bool operator()(const std::pair
<const char *, const char *> &pair
) const
96 return strcmp(pair
.first
, target
) == 0;
101 /* helper function to ionice the given PID
103 there is no C header for ionice yet - just the syscall interface
104 so we use the binary from util-linux
109 if (!FileExists("/usr/bin/ionice"))
111 pid_t Process
= ExecFork();
115 snprintf(buf
, sizeof(buf
), "-p%d", PID
);
117 Args
[0] = "/usr/bin/ionice";
121 execv(Args
[0], (char **)Args
);
123 return ExecWait(Process
, "ionice");
126 // DPkgPM::pkgDPkgPM - Constructor /*{{{*/
127 // ---------------------------------------------------------------------
129 pkgDPkgPM::pkgDPkgPM(pkgDepCache
*Cache
)
130 : pkgPackageManager(Cache
), PackagesDone(0), PackagesTotal(0)
132 d
= new pkgDPkgPMPrivate();
135 // DPkgPM::pkgDPkgPM - Destructor /*{{{*/
136 // ---------------------------------------------------------------------
138 pkgDPkgPM::~pkgDPkgPM()
143 // DPkgPM::Install - Install a package /*{{{*/
144 // ---------------------------------------------------------------------
145 /* Add an install operation to the sequence list */
146 bool pkgDPkgPM::Install(PkgIterator Pkg
,string File
)
148 if (File
.empty() == true || Pkg
.end() == true)
149 return _error
->Error("Internal Error, No file name for %s",Pkg
.Name());
151 // If the filename string begins with DPkg::Chroot-Directory, return the
152 // substr that is within the chroot so dpkg can access it.
153 string
const chrootdir
= _config
->FindDir("DPkg::Chroot-Directory","/");
154 if (chrootdir
!= "/" && File
.find(chrootdir
) == 0)
156 size_t len
= chrootdir
.length();
157 if (chrootdir
.at(len
- 1) == '/')
159 List
.push_back(Item(Item::Install
,Pkg
,File
.substr(len
)));
162 List
.push_back(Item(Item::Install
,Pkg
,File
));
167 // DPkgPM::Configure - Configure a package /*{{{*/
168 // ---------------------------------------------------------------------
169 /* Add a configure operation to the sequence list */
170 bool pkgDPkgPM::Configure(PkgIterator Pkg
)
172 if (Pkg
.end() == true)
175 List
.push_back(Item(Item::Configure
, Pkg
));
177 // Use triggers for config calls if we configure "smart"
178 // as otherwise Pre-Depends will not be satisfied, see #526774
179 if (_config
->FindB("DPkg::TriggersPending", false) == true)
180 List
.push_back(Item(Item::TriggersPending
, PkgIterator()));
185 // DPkgPM::Remove - Remove a package /*{{{*/
186 // ---------------------------------------------------------------------
187 /* Add a remove operation to the sequence list */
188 bool pkgDPkgPM::Remove(PkgIterator Pkg
,bool Purge
)
190 if (Pkg
.end() == true)
194 List
.push_back(Item(Item::Purge
,Pkg
));
196 List
.push_back(Item(Item::Remove
,Pkg
));
200 // DPkgPM::SendV2Pkgs - Send version 2 package info /*{{{*/
201 // ---------------------------------------------------------------------
202 /* This is part of the helper script communication interface, it sends
203 very complete information down to the other end of the pipe.*/
204 bool pkgDPkgPM::SendV2Pkgs(FILE *F
)
206 fprintf(F
,"VERSION 2\n");
208 /* Write out all of the configuration directives by walking the
209 configuration tree */
210 const Configuration::Item
*Top
= _config
->Tree(0);
213 if (Top
->Value
.empty() == false)
216 QuoteString(Top
->FullTag(),"=\"\n").c_str(),
217 QuoteString(Top
->Value
,"\n").c_str());
226 while (Top
!= 0 && Top
->Next
== 0)
233 // Write out the package actions in order.
234 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
236 if(I
->Pkg
.end() == true)
239 pkgDepCache::StateCache
&S
= Cache
[I
->Pkg
];
241 fprintf(F
,"%s ",I
->Pkg
.Name());
243 if (I
->Pkg
->CurrentVer
== 0)
246 fprintf(F
,"%s ",I
->Pkg
.CurrentVer().VerStr());
248 // Show the compare operator
250 if (S
.InstallVer
!= 0)
253 if (I
->Pkg
->CurrentVer
!= 0)
254 Comp
= S
.InstVerIter(Cache
).CompareVer(I
->Pkg
.CurrentVer());
261 fprintf(F
,"%s ",S
.InstVerIter(Cache
).VerStr());
266 // Show the filename/operation
267 if (I
->Op
== Item::Install
)
270 if (I
->File
[0] != '/')
271 fprintf(F
,"**ERROR**\n");
273 fprintf(F
,"%s\n",I
->File
.c_str());
275 if (I
->Op
== Item::Configure
)
276 fprintf(F
,"**CONFIGURE**\n");
277 if (I
->Op
== Item::Remove
||
278 I
->Op
== Item::Purge
)
279 fprintf(F
,"**REMOVE**\n");
287 // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/
288 // ---------------------------------------------------------------------
289 /* This looks for a list of scripts to run from the configuration file
290 each one is run and is fed on standard input a list of all .deb files
291 that are due to be installed. */
292 bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf
)
294 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
295 if (Opts
== 0 || Opts
->Child
== 0)
299 unsigned int Count
= 1;
300 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
302 if (Opts
->Value
.empty() == true)
305 // Determine the protocol version
306 string OptSec
= Opts
->Value
;
307 string::size_type Pos
;
308 if ((Pos
= OptSec
.find(' ')) == string::npos
|| Pos
== 0)
309 Pos
= OptSec
.length();
310 OptSec
= "DPkg::Tools::Options::" + string(Opts
->Value
.c_str(),Pos
);
312 unsigned int Version
= _config
->FindI(OptSec
+"::Version",1);
316 if (pipe(Pipes
) != 0)
317 return _error
->Errno("pipe","Failed to create IPC pipe to subprocess");
318 SetCloseExec(Pipes
[0],true);
319 SetCloseExec(Pipes
[1],true);
321 // Purified Fork for running the script
322 pid_t Process
= ExecFork();
326 dup2(Pipes
[0],STDIN_FILENO
);
327 SetCloseExec(STDOUT_FILENO
,false);
328 SetCloseExec(STDIN_FILENO
,false);
329 SetCloseExec(STDERR_FILENO
,false);
331 if (_config
->FindDir("DPkg::Chroot-Directory","/") != "/")
333 std::cerr
<< "Chrooting into "
334 << _config
->FindDir("DPkg::Chroot-Directory")
336 if (chroot(_config
->FindDir("DPkg::Chroot-Directory","/").c_str()) != 0)
343 Args
[2] = Opts
->Value
.c_str();
345 execv(Args
[0],(char **)Args
);
349 FILE *F
= fdopen(Pipes
[1],"w");
351 return _error
->Errno("fdopen","Faild to open new FD");
353 // Feed it the filenames.
356 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
358 // Only deal with packages to be installed from .deb
359 if (I
->Op
!= Item::Install
)
363 if (I
->File
[0] != '/')
366 /* Feed the filename of each package that is pending install
368 fprintf(F
,"%s\n",I
->File
.c_str());
378 // Clean up the sub process
379 if (ExecWait(Process
,Opts
->Value
.c_str()) == false)
380 return _error
->Error("Failure running script %s",Opts
->Value
.c_str());
386 // DPkgPM::DoStdin - Read stdin and pass to slave pty /*{{{*/
387 // ---------------------------------------------------------------------
390 void pkgDPkgPM::DoStdin(int master
)
392 unsigned char input_buf
[256] = {0,};
393 ssize_t len
= read(0, input_buf
, sizeof(input_buf
));
395 write(master
, input_buf
, len
);
397 d
->stdin_is_dev_null
= true;
400 // DPkgPM::DoTerminalPty - Read the terminal pty and write log /*{{{*/
401 // ---------------------------------------------------------------------
403 * read the terminal pty and write log
405 void pkgDPkgPM::DoTerminalPty(int master
)
407 unsigned char term_buf
[1024] = {0,0, };
409 ssize_t len
=read(master
, term_buf
, sizeof(term_buf
));
410 if(len
== -1 && errno
== EIO
)
412 // this happens when the child is about to exit, we
413 // give it time to actually exit, otherwise we run
414 // into a race so we sleep for half a second.
415 struct timespec sleepfor
= { 0, 500000000 };
416 nanosleep(&sleepfor
, NULL
);
421 write(1, term_buf
, len
);
423 fwrite(term_buf
, len
, sizeof(char), d
->term_out
);
426 // DPkgPM::ProcessDpkgStatusBuf /*{{{*/
427 // ---------------------------------------------------------------------
430 void pkgDPkgPM::ProcessDpkgStatusLine(int OutStatusFd
, char *line
)
432 bool const Debug
= _config
->FindB("Debug::pkgDPkgProgressReporting",false);
433 // the status we output
434 ostringstream status
;
437 std::clog
<< "got from dpkg '" << line
<< "'" << std::endl
;
440 /* dpkg sends strings like this:
441 'status: <pkg>: <pkg qstate>'
442 errors look like this:
443 '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
444 and conffile-prompt like this
445 'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited
447 Newer versions of dpkg sent also:
448 'processing: install: pkg'
449 'processing: configure: pkg'
450 'processing: remove: pkg'
451 'processing: purge: pkg'
452 'processing: disappear: pkg'
453 'processing: trigproc: trigger'
457 // dpkg sends multiline error messages sometimes (see
458 // #374195 for a example. we should support this by
459 // either patching dpkg to not send multiline over the
460 // statusfd or by rewriting the code here to deal with
461 // it. for now we just ignore it and not crash
462 TokSplitString(':', line
, list
, sizeof(list
)/sizeof(list
[0]));
463 if( list
[0] == NULL
|| list
[1] == NULL
|| list
[2] == NULL
)
466 std::clog
<< "ignoring line: not enough ':'" << std::endl
;
469 const char* const pkg
= list
[1];
470 const char* action
= _strstrip(list
[2]);
472 // 'processing' from dpkg looks like
473 // 'processing: action: pkg'
474 if(strncmp(list
[0], "processing", strlen("processing")) == 0)
477 const char* const pkg_or_trigger
= _strstrip(list
[2]);
478 action
= _strstrip( list
[1]);
479 const std::pair
<const char *, const char *> * const iter
=
480 std::find_if(PackageProcessingOpsBegin
,
481 PackageProcessingOpsEnd
,
482 MatchProcessingOp(action
));
483 if(iter
== PackageProcessingOpsEnd
)
486 std::clog
<< "ignoring unknown action: " << action
<< std::endl
;
489 snprintf(s
, sizeof(s
), _(iter
->second
), pkg_or_trigger
);
491 status
<< "pmstatus:" << pkg_or_trigger
492 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
496 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
498 std::clog
<< "send: '" << status
.str() << "'" << endl
;
500 if (strncmp(action
, "disappear", strlen("disappear")) == 0)
501 handleDisappearAction(pkg_or_trigger
);
505 if(strncmp(action
,"error",strlen("error")) == 0)
507 // urgs, sometime has ":" in its error string so that we
508 // end up with the error message split between list[3]
509 // and list[4], e.g. the message:
510 // "failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb ..."
512 if( list
[4] != NULL
)
513 list
[3][strlen(list
[3])] = ':';
515 status
<< "pmerror:" << list
[1]
516 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
520 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
522 std::clog
<< "send: '" << status
.str() << "'" << endl
;
524 WriteApportReport(list
[1], list
[3]);
527 else if(strncmp(action
,"conffile",strlen("conffile")) == 0)
529 status
<< "pmconffile:" << list
[1]
530 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
534 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
536 std::clog
<< "send: '" << status
.str() << "'" << endl
;
540 vector
<struct DpkgState
> const &states
= PackageOps
[pkg
];
541 const char *next_action
= NULL
;
542 if(PackageOpsDone
[pkg
] < states
.size())
543 next_action
= states
[PackageOpsDone
[pkg
]].state
;
544 // check if the package moved to the next dpkg state
545 if(next_action
&& (strcmp(action
, next_action
) == 0))
547 // only read the translation if there is actually a next
549 const char *translation
= _(states
[PackageOpsDone
[pkg
]].str
);
551 snprintf(s
, sizeof(s
), translation
, pkg
);
553 // we moved from one dpkg state to a new one, report that
554 PackageOpsDone
[pkg
]++;
556 // build the status str
557 status
<< "pmstatus:" << pkg
558 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
562 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
564 std::clog
<< "send: '" << status
.str() << "'" << endl
;
567 std::clog
<< "(parsed from dpkg) pkg: " << pkg
568 << " action: " << action
<< endl
;
571 // DPkgPM::handleDisappearAction /*{{{*/
572 void pkgDPkgPM::handleDisappearAction(string
const &pkgname
)
574 // record the package name for display and stuff later
575 disappearedPkgs
.insert(pkgname
);
577 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(pkgname
);
578 if (unlikely(Pkg
.end() == true))
580 // the disappeared package was auto-installed - nothing to do
581 if ((Cache
[Pkg
].Flags
& pkgCache::Flag::Auto
) == pkgCache::Flag::Auto
)
583 pkgCache::VerIterator PkgVer
= Cache
[Pkg
].InstVerIter(Cache
);
584 if (unlikely(PkgVer
.end() == true))
586 /* search in the list of dependencies for (Pre)Depends,
587 check if this dependency has a Replaces on our package
588 and if so transfer the manual installed flag to it */
589 for (pkgCache::DepIterator Dep
= PkgVer
.DependsList(); Dep
.end() != true; ++Dep
)
591 if (Dep
->Type
!= pkgCache::Dep::Depends
&&
592 Dep
->Type
!= pkgCache::Dep::PreDepends
)
594 pkgCache::PkgIterator Tar
= Dep
.TargetPkg();
595 if (unlikely(Tar
.end() == true))
597 // the package is already marked as manual
598 if ((Cache
[Tar
].Flags
& pkgCache::Flag::Auto
) != pkgCache::Flag::Auto
)
600 pkgCache::VerIterator TarVer
= Cache
[Tar
].InstVerIter(Cache
);
601 if (TarVer
.end() == true)
603 for (pkgCache::DepIterator Rep
= TarVer
.DependsList(); Rep
.end() != true; ++Rep
)
605 if (Rep
->Type
!= pkgCache::Dep::Replaces
)
607 if (Pkg
!= Rep
.TargetPkg())
609 // okay, they are strongly connected - transfer manual-bit
611 std::clog
<< "transfer manual-bit from disappeared »" << pkgname
<< "« to »" << Tar
.FullName() << "«" << std::endl
;
612 Cache
[Tar
].Flags
&= ~Flag::Auto
;
618 // DPkgPM::DoDpkgStatusFd /*{{{*/
619 // ---------------------------------------------------------------------
622 void pkgDPkgPM::DoDpkgStatusFd(int statusfd
, int OutStatusFd
)
627 len
=read(statusfd
, &d
->dpkgbuf
[d
->dpkgbuf_pos
], sizeof(d
->dpkgbuf
)-d
->dpkgbuf_pos
);
628 d
->dpkgbuf_pos
+= len
;
632 // process line by line if we have a buffer
634 while((q
=(char*)memchr(p
, '\n', d
->dpkgbuf
+d
->dpkgbuf_pos
-p
)) != NULL
)
637 ProcessDpkgStatusLine(OutStatusFd
, p
);
638 p
=q
+1; // continue with next line
641 // now move the unprocessed bits (after the final \n that is now a 0x0)
642 // to the start and update d->dpkgbuf_pos
643 p
= (char*)memrchr(d
->dpkgbuf
, 0, d
->dpkgbuf_pos
);
647 // we are interessted in the first char *after* 0x0
650 // move the unprocessed tail to the start and update pos
651 memmove(d
->dpkgbuf
, p
, p
-d
->dpkgbuf
);
652 d
->dpkgbuf_pos
= d
->dpkgbuf
+d
->dpkgbuf_pos
-p
;
655 // DPkgPM::WriteHistoryTag /*{{{*/
656 void pkgDPkgPM::WriteHistoryTag(string
const &tag
, string value
)
658 size_t const length
= value
.length();
661 // poor mans rstrip(", ")
662 if (value
[length
-2] == ',' && value
[length
-1] == ' ')
663 value
.erase(length
- 2, 2);
664 fprintf(d
->history_out
, "%s: %s\n", tag
.c_str(), value
.c_str());
666 // DPkgPM::OpenLog /*{{{*/
667 bool pkgDPkgPM::OpenLog()
669 string
const logdir
= _config
->FindDir("Dir::Log");
670 if(CreateAPTDirectoryIfNeeded(logdir
, logdir
) == false)
671 // FIXME: use a better string after freeze
672 return _error
->Error(_("Directory '%s' missing"), logdir
.c_str());
676 time_t const t
= time(NULL
);
677 struct tm
const * const tmp
= localtime(&t
);
678 strftime(timestr
, sizeof(timestr
), "%F %T", tmp
);
681 string
const logfile_name
= flCombine(logdir
,
682 _config
->Find("Dir::Log::Terminal"));
683 if (!logfile_name
.empty())
685 d
->term_out
= fopen(logfile_name
.c_str(),"a");
686 if (d
->term_out
== NULL
)
687 return _error
->WarningE("OpenLog", _("Could not open file '%s'"), logfile_name
.c_str());
688 setvbuf(d
->term_out
, NULL
, _IONBF
, 0);
689 SetCloseExec(fileno(d
->term_out
), true);
692 pw
= getpwnam("root");
693 gr
= getgrnam("adm");
694 if (pw
!= NULL
&& gr
!= NULL
)
695 chown(logfile_name
.c_str(), pw
->pw_uid
, gr
->gr_gid
);
696 chmod(logfile_name
.c_str(), 0644);
697 fprintf(d
->term_out
, "\nLog started: %s\n", timestr
);
700 // write your history
701 string
const history_name
= flCombine(logdir
,
702 _config
->Find("Dir::Log::History"));
703 if (!history_name
.empty())
705 d
->history_out
= fopen(history_name
.c_str(),"a");
706 if (d
->history_out
== NULL
)
707 return _error
->WarningE("OpenLog", _("Could not open file '%s'"), history_name
.c_str());
708 chmod(history_name
.c_str(), 0644);
709 fprintf(d
->history_out
, "\nStart-Date: %s\n", timestr
);
710 string remove
, purge
, install
, reinstall
, upgrade
, downgrade
;
711 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; ++I
)
713 enum { CANDIDATE
, CANDIDATE_AUTO
, CURRENT_CANDIDATE
, CURRENT
} infostring
;
715 #define HISTORYINFO(X, Y) { line = &X; infostring = Y; }
716 if (Cache
[I
].NewInstall() == true)
717 HISTORYINFO(install
, CANDIDATE_AUTO
)
718 else if (Cache
[I
].ReInstall() == true)
719 HISTORYINFO(reinstall
, CANDIDATE
)
720 else if (Cache
[I
].Upgrade() == true)
721 HISTORYINFO(upgrade
, CURRENT_CANDIDATE
)
722 else if (Cache
[I
].Downgrade() == true)
723 HISTORYINFO(downgrade
, CURRENT_CANDIDATE
)
724 else if (Cache
[I
].Delete() == true)
725 HISTORYINFO((Cache
[I
].Purge() ? purge
: remove
), CURRENT
)
729 line
->append(I
.FullName(false)).append(" (");
730 switch (infostring
) {
731 case CANDIDATE
: line
->append(Cache
[I
].CandVersion
); break;
733 line
->append(Cache
[I
].CandVersion
);
734 if ((Cache
[I
].Flags
& pkgCache::Flag::Auto
) == pkgCache::Flag::Auto
)
735 line
->append(", automatic");
737 case CURRENT_CANDIDATE
: line
->append(Cache
[I
].CurVersion
).append(", ").append(Cache
[I
].CandVersion
); break;
738 case CURRENT
: line
->append(Cache
[I
].CurVersion
); break;
742 if (_config
->Exists("Commandline::AsString") == true)
743 WriteHistoryTag("Commandline", _config
->Find("Commandline::AsString"));
744 WriteHistoryTag("Install", install
);
745 WriteHistoryTag("Reinstall", reinstall
);
746 WriteHistoryTag("Upgrade", upgrade
);
747 WriteHistoryTag("Downgrade",downgrade
);
748 WriteHistoryTag("Remove",remove
);
749 WriteHistoryTag("Purge",purge
);
750 fflush(d
->history_out
);
756 // DPkg::CloseLog /*{{{*/
757 bool pkgDPkgPM::CloseLog()
760 time_t t
= time(NULL
);
761 struct tm
*tmp
= localtime(&t
);
762 strftime(timestr
, sizeof(timestr
), "%F %T", tmp
);
766 fprintf(d
->term_out
, "Log ended: ");
767 fprintf(d
->term_out
, "%s", timestr
);
768 fprintf(d
->term_out
, "\n");
775 if (disappearedPkgs
.empty() == false)
778 for (std::set
<std::string
>::const_iterator d
= disappearedPkgs
.begin();
779 d
!= disappearedPkgs
.end(); ++d
)
781 pkgCache::PkgIterator P
= Cache
.FindPkg(*d
);
782 disappear
.append(*d
);
784 disappear
.append(", ");
786 disappear
.append(" (").append(Cache
[P
].CurVersion
).append("), ");
788 WriteHistoryTag("Disappeared", disappear
);
790 if (d
->dpkg_error
.empty() == false)
791 fprintf(d
->history_out
, "Error: %s\n", d
->dpkg_error
.c_str());
792 fprintf(d
->history_out
, "End-Date: %s\n", timestr
);
793 fclose(d
->history_out
);
795 d
->history_out
= NULL
;
801 // This implements a racy version of pselect for those architectures
802 // that don't have a working implementation.
803 // FIXME: Probably can be removed on Lenny+1
804 static int racy_pselect(int nfds
, fd_set
*readfds
, fd_set
*writefds
,
805 fd_set
*exceptfds
, const struct timespec
*timeout
,
806 const sigset_t
*sigmask
)
812 tv
.tv_sec
= timeout
->tv_sec
;
813 tv
.tv_usec
= timeout
->tv_nsec
/1000;
815 sigprocmask(SIG_SETMASK
, sigmask
, &origmask
);
816 retval
= select(nfds
, readfds
, writefds
, exceptfds
, &tv
);
817 sigprocmask(SIG_SETMASK
, &origmask
, 0);
821 // DPkgPM::Go - Run the sequence /*{{{*/
822 // ---------------------------------------------------------------------
823 /* This globs the operations and calls dpkg
825 * If it is called with "OutStatusFd" set to a valid file descriptor
826 * apt will report the install progress over this fd. It maps the
827 * dpkg states a package goes through to human readable (and i10n-able)
828 * names and calculates a percentage for each step.
830 bool pkgDPkgPM::Go(int OutStatusFd
)
832 // Generate the base argument list for dpkg
833 std::vector
<const char *> Args
;
834 unsigned long StartSize
= 0;
835 string
const Tmp
= _config
->Find("Dir::Bin::dpkg","dpkg");
836 Args
.push_back(Tmp
.c_str());
837 StartSize
+= Tmp
.length();
839 // Stick in any custom dpkg options
840 Configuration::Item
const *Opts
= _config
->Tree("DPkg::Options");
844 for (; Opts
!= 0; Opts
= Opts
->Next
)
846 if (Opts
->Value
.empty() == true)
848 Args
.push_back(Opts
->Value
.c_str());
849 StartSize
+= Opts
->Value
.length();
853 size_t const BaseArgs
= Args
.size();
854 // we need to detect if we can qualify packages with the architecture or not
855 Args
.push_back("--assert-multi-arch");
856 Args
.push_back(NULL
);
858 pid_t dpkgAssertMultiArch
= ExecFork();
859 if (dpkgAssertMultiArch
== 0)
861 // redirect everything to the ultimate sink as we only need the exit-status
862 int const nullfd
= open("/dev/null", O_RDONLY
);
863 dup2(nullfd
, STDIN_FILENO
);
864 dup2(nullfd
, STDOUT_FILENO
);
865 dup2(nullfd
, STDERR_FILENO
);
866 execv(Args
[0], (char**) &Args
[0]);
867 _error
->WarningE("dpkgGo", "Can't detect if dpkg supports multi-arch!");
874 sigset_t original_sigmask
;
876 unsigned int const MaxArgs
= _config
->FindI("Dpkg::MaxArgs",8*1024);
877 unsigned int const MaxArgBytes
= _config
->FindI("Dpkg::MaxArgBytes",32*1024);
878 bool const NoTriggers
= _config
->FindB("DPkg::NoTriggers", false);
880 if (RunScripts("DPkg::Pre-Invoke") == false)
883 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
886 // support subpressing of triggers processing for special
887 // cases like d-i that runs the triggers handling manually
888 bool const SmartConf
= (_config
->Find("PackageManager::Configure", "all") != "all");
889 bool const TriggersPending
= _config
->FindB("DPkg::TriggersPending", false);
890 if (_config
->FindB("DPkg::ConfigurePending", SmartConf
) == true)
891 List
.push_back(Item(Item::ConfigurePending
, PkgIterator()));
893 // map the dpkg states to the operations that are performed
894 // (this is sorted in the same way as Item::Ops)
895 static const struct DpkgState DpkgStatesOpMap
[][7] = {
898 {"half-installed", N_("Preparing %s")},
899 {"unpacked", N_("Unpacking %s") },
902 // Configure operation
904 {"unpacked",N_("Preparing to configure %s") },
905 {"half-configured", N_("Configuring %s") },
906 { "installed", N_("Installed %s")},
911 {"half-configured", N_("Preparing for removal of %s")},
912 {"half-installed", N_("Removing %s")},
913 {"config-files", N_("Removed %s")},
918 {"config-files", N_("Preparing to completely remove %s")},
919 {"not-installed", N_("Completely removed %s")},
924 // init the PackageOps map, go over the list of packages that
925 // that will be [installed|configured|removed|purged] and add
926 // them to the PackageOps map (the dpkg states it goes through)
927 // and the PackageOpsTranslations (human readable strings)
928 for (vector
<Item
>::const_iterator I
= List
.begin(); I
!= List
.end(); ++I
)
930 if((*I
).Pkg
.end() == true)
933 string
const name
= (*I
).Pkg
.Name();
934 PackageOpsDone
[name
] = 0;
935 for(int i
=0; (DpkgStatesOpMap
[(*I
).Op
][i
]).state
!= NULL
; ++i
)
937 PackageOps
[name
].push_back(DpkgStatesOpMap
[(*I
).Op
][i
]);
942 d
->stdin_is_dev_null
= false;
947 bool dpkgMultiArch
= false;
948 if (dpkgAssertMultiArch
> 0)
951 while (waitpid(dpkgAssertMultiArch
, &Status
, 0) != dpkgAssertMultiArch
)
955 _error
->WarningE("dpkgGo", _("Waited for %s but it wasn't there"), "dpkg --assert-multi-arch");
958 if (WIFEXITED(Status
) == true && WEXITSTATUS(Status
) == 0)
959 dpkgMultiArch
= true;
962 // this loop is runs once per operation
963 for (vector
<Item
>::const_iterator I
= List
.begin(); I
!= List
.end();)
965 // Do all actions with the same Op in one run
966 vector
<Item
>::const_iterator J
= I
;
967 if (TriggersPending
== true)
968 for (; J
!= List
.end(); ++J
)
972 if (J
->Op
!= Item::TriggersPending
)
974 vector
<Item
>::const_iterator T
= J
+ 1;
975 if (T
!= List
.end() && T
->Op
== I
->Op
)
980 for (; J
!= List
.end() && J
->Op
== I
->Op
; ++J
)
983 // keep track of allocated strings for multiarch package names
984 std::vector
<char *> Packages
;
986 // start with the baseset of arguments
987 unsigned long Size
= StartSize
;
988 Args
.erase(Args
.begin() + BaseArgs
, Args
.end());
990 // Now check if we are within the MaxArgs limit
992 // this code below is problematic, because it may happen that
993 // the argument list is split in a way that A depends on B
994 // and they are in the same "--configure A B" run
995 // - with the split they may now be configured in different
996 // runs, using Immediate-Configure-All can help prevent this.
997 if (J
- I
> (signed)MaxArgs
)
1000 unsigned long const size
= MaxArgs
+ 10;
1002 Packages
.reserve(size
);
1006 unsigned long const size
= (J
- I
) + 10;
1008 Packages
.reserve(size
);
1014 #define ADDARG(X) Args.push_back(X); Size += strlen(X)
1015 #define ADDARGC(X) Args.push_back(X); Size += sizeof(X) - 1
1017 ADDARGC("--status-fd");
1018 char status_fd_buf
[20];
1019 snprintf(status_fd_buf
,sizeof(status_fd_buf
),"%i", fd
[1]);
1020 ADDARG(status_fd_buf
);
1021 unsigned long const Op
= I
->Op
;
1026 ADDARGC("--force-depends");
1027 ADDARGC("--force-remove-essential");
1028 ADDARGC("--remove");
1032 ADDARGC("--force-depends");
1033 ADDARGC("--force-remove-essential");
1037 case Item::Configure
:
1038 ADDARGC("--configure");
1041 case Item::ConfigurePending
:
1042 ADDARGC("--configure");
1043 ADDARGC("--pending");
1046 case Item::TriggersPending
:
1047 ADDARGC("--triggers-only");
1048 ADDARGC("--pending");
1052 ADDARGC("--unpack");
1053 ADDARGC("--auto-deconfigure");
1057 if (NoTriggers
== true && I
->Op
!= Item::TriggersPending
&&
1058 I
->Op
!= Item::ConfigurePending
)
1060 ADDARGC("--no-triggers");
1064 // Write in the file or package names
1065 if (I
->Op
== Item::Install
)
1067 for (;I
!= J
&& Size
< MaxArgBytes
; ++I
)
1069 if (I
->File
[0] != '/')
1070 return _error
->Error("Internal Error, Pathname to install is not absolute '%s'",I
->File
.c_str());
1071 Args
.push_back(I
->File
.c_str());
1072 Size
+= I
->File
.length();
1077 string
const nativeArch
= _config
->Find("APT::Architecture");
1078 unsigned long const oldSize
= I
->Op
== Item::Configure
? Size
: 0;
1079 for (;I
!= J
&& Size
< MaxArgBytes
; ++I
)
1081 if((*I
).Pkg
.end() == true)
1083 if (I
->Op
== Item::Configure
&& disappearedPkgs
.find(I
->Pkg
.Name()) != disappearedPkgs
.end())
1085 // We keep this here to allow "smooth" transitions from e.g. multiarch dpkg/ubuntu to dpkg/debian
1086 if (dpkgMultiArch
== false && (I
->Pkg
.Arch() == nativeArch
|| !strcmp(I
->Pkg
.Arch(), "all")))
1088 char const * const name
= I
->Pkg
.Name();
1093 pkgCache::VerIterator PkgVer
;
1094 std::string name
= I
->Pkg
.Name();
1095 if (Op
== Item::Remove
|| Op
== Item::Purge
)
1096 PkgVer
= I
->Pkg
.CurrentVer();
1098 PkgVer
= Cache
[I
->Pkg
].InstVerIter(Cache
);
1099 name
.append(":").append(PkgVer
.Arch());
1100 char * const fullname
= strdup(name
.c_str());
1101 Packages
.push_back(fullname
);
1105 // skip configure action if all sheduled packages disappeared
1106 if (oldSize
== Size
)
1113 if (_config
->FindB("Debug::pkgDPkgPM",false) == true)
1115 for (std::vector
<const char *>::const_iterator a
= Args
.begin();
1116 a
!= Args
.end(); ++a
)
1121 Args
.push_back(NULL
);
1127 /* Mask off sig int/quit. We do this because dpkg also does when
1128 it forks scripts. What happens is that when you hit ctrl-c it sends
1129 it to all processes in the group. Since dpkg ignores the signal
1130 it doesn't die but we do! So we must also ignore it */
1131 sighandler_t old_SIGQUIT
= signal(SIGQUIT
,SIG_IGN
);
1132 sighandler_t old_SIGINT
= signal(SIGINT
,SigINT
);
1134 // Check here for any SIGINT
1135 if (pkgPackageManager::SigINTStop
&& (Op
== Item::Remove
|| Op
== Item::Purge
|| Op
== Item::Install
))
1139 // ignore SIGHUP as well (debian #463030)
1140 sighandler_t old_SIGHUP
= signal(SIGHUP
,SIG_IGN
);
1147 // if tcgetattr does not return zero there was a error
1148 // and we do not do any pty magic
1149 if (tcgetattr(0, &tt
) == 0)
1151 ioctl(0, TIOCGWINSZ
, (char *)&win
);
1152 if (openpty(&master
, &slave
, NULL
, &tt
, &win
) < 0)
1154 const char *s
= _("Can not write log, openpty() "
1155 "failed (/dev/pts not mounted?)\n");
1156 fprintf(stderr
, "%s",s
);
1158 fprintf(d
->term_out
, "%s",s
);
1159 master
= slave
= -1;
1164 rtt
.c_lflag
&= ~ECHO
;
1165 rtt
.c_lflag
|= ISIG
;
1166 // block SIGTTOU during tcsetattr to prevent a hang if
1167 // the process is a member of the background process group
1168 // http://www.opengroup.org/onlinepubs/000095399/functions/tcsetattr.html
1169 sigemptyset(&sigmask
);
1170 sigaddset(&sigmask
, SIGTTOU
);
1171 sigprocmask(SIG_BLOCK
,&sigmask
, &original_sigmask
);
1172 tcsetattr(0, TCSAFLUSH
, &rtt
);
1173 sigprocmask(SIG_SETMASK
, &original_sigmask
, 0);
1178 _config
->Set("APT::Keep-Fds::",fd
[1]);
1179 // send status information that we are about to fork dpkg
1180 if(OutStatusFd
> 0) {
1181 ostringstream status
;
1182 status
<< "pmstatus:dpkg-exec:"
1183 << (PackagesDone
/float(PackagesTotal
)*100.0)
1184 << ":" << _("Running dpkg")
1186 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
1190 // This is the child
1193 if(slave
>= 0 && master
>= 0)
1196 ioctl(slave
, TIOCSCTTY
, 0);
1203 close(fd
[0]); // close the read end of the pipe
1205 if (_config
->FindDir("DPkg::Chroot-Directory","/") != "/")
1207 std::cerr
<< "Chrooting into "
1208 << _config
->FindDir("DPkg::Chroot-Directory")
1210 if (chroot(_config
->FindDir("DPkg::Chroot-Directory","/").c_str()) != 0)
1214 if (chdir(_config
->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
1217 if (_config
->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO
))
1220 if ((Flags
= fcntl(STDIN_FILENO
,F_GETFL
,dummy
)) < 0)
1223 // Discard everything in stdin before forking dpkg
1224 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
| O_NONBLOCK
) < 0)
1227 while (read(STDIN_FILENO
,&dummy
,1) == 1);
1229 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
& (~(long)O_NONBLOCK
)) < 0)
1233 /* No Job Control Stop Env is a magic dpkg var that prevents it
1234 from using sigstop */
1235 putenv((char *)"DPKG_NO_TSTP=yes");
1236 execvp(Args
[0], (char**) &Args
[0]);
1237 cerr
<< "Could not exec dpkg!" << endl
;
1242 if (_config
->FindB("DPkg::UseIoNice", false) == true)
1245 // clear the Keep-Fd again
1246 _config
->Clear("APT::Keep-Fds",fd
[1]);
1251 // we read from dpkg here
1252 int const _dpkgin
= fd
[0];
1253 close(fd
[1]); // close the write end of the pipe
1259 sigemptyset(&sigmask
);
1260 sigprocmask(SIG_BLOCK
,&sigmask
,&original_sigmask
);
1262 /* free vectors (and therefore memory) as we don't need the included data anymore */
1263 for (std::vector
<char *>::const_iterator p
= Packages
.begin();
1264 p
!= Packages
.end(); ++p
)
1268 // the result of the waitpid call
1271 while ((res
=waitpid(Child
,&Status
, WNOHANG
)) != Child
) {
1273 // FIXME: move this to a function or something, looks ugly here
1274 // error handling, waitpid returned -1
1277 RunScripts("DPkg::Post-Invoke");
1279 // Restore sig int/quit
1280 signal(SIGQUIT
,old_SIGQUIT
);
1281 signal(SIGINT
,old_SIGINT
);
1283 signal(SIGHUP
,old_SIGHUP
);
1284 return _error
->Errno("waitpid","Couldn't wait for subprocess");
1287 // wait for input or output here
1289 if (master
>= 0 && !d
->stdin_is_dev_null
)
1291 FD_SET(_dpkgin
, &rfds
);
1293 FD_SET(master
, &rfds
);
1296 select_ret
= pselect(max(master
, _dpkgin
)+1, &rfds
, NULL
, NULL
,
1297 &tv
, &original_sigmask
);
1298 if (select_ret
< 0 && (errno
== EINVAL
|| errno
== ENOSYS
))
1299 select_ret
= racy_pselect(max(master
, _dpkgin
)+1, &rfds
, NULL
,
1300 NULL
, &tv
, &original_sigmask
);
1301 if (select_ret
== 0)
1303 else if (select_ret
< 0 && errno
== EINTR
)
1305 else if (select_ret
< 0)
1307 perror("select() returned error");
1311 if(master
>= 0 && FD_ISSET(master
, &rfds
))
1312 DoTerminalPty(master
);
1313 if(master
>= 0 && FD_ISSET(0, &rfds
))
1315 if(FD_ISSET(_dpkgin
, &rfds
))
1316 DoDpkgStatusFd(_dpkgin
, OutStatusFd
);
1320 // Restore sig int/quit
1321 signal(SIGQUIT
,old_SIGQUIT
);
1322 signal(SIGINT
,old_SIGINT
);
1324 signal(SIGHUP
,old_SIGHUP
);
1328 tcsetattr(0, TCSAFLUSH
, &tt
);
1332 // Check for an error code.
1333 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
1335 // if it was set to "keep-dpkg-runing" then we won't return
1336 // here but keep the loop going and just report it as a error
1338 bool const stopOnError
= _config
->FindB("Dpkg::StopOnError",true);
1341 RunScripts("DPkg::Post-Invoke");
1343 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
1344 strprintf(d
->dpkg_error
, "Sub-process %s received a segmentation fault.",Args
[0]);
1345 else if (WIFEXITED(Status
) != 0)
1346 strprintf(d
->dpkg_error
, "Sub-process %s returned an error code (%u)",Args
[0],WEXITSTATUS(Status
));
1348 strprintf(d
->dpkg_error
, "Sub-process %s exited unexpectedly",Args
[0]);
1350 if(d
->dpkg_error
.size() > 0)
1351 _error
->Error("%s", d
->dpkg_error
.c_str());
1362 if (pkgPackageManager::SigINTStop
)
1363 _error
->Warning(_("Operation was interrupted before it could finish"));
1365 if (RunScripts("DPkg::Post-Invoke") == false)
1368 if (_config
->FindB("Debug::pkgDPkgPM",false) == false)
1370 std::string
const oldpkgcache
= _config
->FindFile("Dir::cache::pkgcache");
1371 if (oldpkgcache
.empty() == false && RealFileExists(oldpkgcache
) == true &&
1372 unlink(oldpkgcache
.c_str()) == 0)
1374 std::string
const srcpkgcache
= _config
->FindFile("Dir::cache::srcpkgcache");
1375 if (srcpkgcache
.empty() == false && RealFileExists(srcpkgcache
) == true)
1377 _error
->PushToStack();
1378 pkgCacheFile CacheFile
;
1379 CacheFile
.BuildCaches(NULL
, true);
1380 _error
->RevertToStack();
1385 Cache
.writeStateFile(NULL
);
1389 void SigINT(int sig
) {
1390 if (_config
->FindB("APT::Immediate-Configure-All",false))
1391 pkgPackageManager::SigINTStop
= true;
1394 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
1395 // ---------------------------------------------------------------------
1397 void pkgDPkgPM::Reset()
1399 List
.erase(List
.begin(),List
.end());
1402 // pkgDpkgPM::WriteApportReport - write out error report pkg failure /*{{{*/
1403 // ---------------------------------------------------------------------
1405 void pkgDPkgPM::WriteApportReport(const char *pkgpath
, const char *errormsg
)
1407 string pkgname
, reportfile
, srcpkgname
, pkgver
, arch
;
1408 string::size_type pos
;
1411 if (_config
->FindB("Dpkg::ApportFailureReport", false) == false)
1413 std::clog
<< "configured to not write apport reports" << std::endl
;
1417 // only report the first errors
1418 if(pkgFailures
> _config
->FindI("APT::Apport::MaxReports", 3))
1420 std::clog
<< _("No apport report written because MaxReports is reached already") << std::endl
;
1424 // check if its not a follow up error
1425 const char *needle
= dgettext("dpkg", "dependency problems - leaving unconfigured");
1426 if(strstr(errormsg
, needle
) != NULL
) {
1427 std::clog
<< _("No apport report written because the error message indicates its a followup error from a previous failure.") << std::endl
;
1431 // do not report disk-full failures
1432 if(strstr(errormsg
, strerror(ENOSPC
)) != NULL
) {
1433 std::clog
<< _("No apport report written because the error message indicates a disk full error") << std::endl
;
1437 // do not report out-of-memory failures
1438 if(strstr(errormsg
, strerror(ENOMEM
)) != NULL
) {
1439 std::clog
<< _("No apport report written because the error message indicates a out of memory error") << std::endl
;
1443 // do not report dpkg I/O errors
1444 // XXX - this message is localized, but this only matches the English version. This is better than nothing.
1445 if(strstr(errormsg
, "short read in buffer_copy (")) {
1446 std::clog
<< _("No apport report written because the error message indicates a dpkg I/O error") << std::endl
;
1450 // get the pkgname and reportfile
1451 pkgname
= flNotDir(pkgpath
);
1452 pos
= pkgname
.find('_');
1453 if(pos
!= string::npos
)
1454 pkgname
= pkgname
.substr(0, pos
);
1456 // find the package versin and source package name
1457 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(pkgname
);
1458 if (Pkg
.end() == true)
1460 pkgCache::VerIterator Ver
= Cache
.GetCandidateVer(Pkg
);
1461 if (Ver
.end() == true)
1463 pkgver
= Ver
.VerStr() == NULL
? "unknown" : Ver
.VerStr();
1464 pkgRecords
Recs(Cache
);
1465 pkgRecords::Parser
&Parse
= Recs
.Lookup(Ver
.FileList());
1466 srcpkgname
= Parse
.SourcePkg();
1467 if(srcpkgname
.empty())
1468 srcpkgname
= pkgname
;
1470 // if the file exists already, we check:
1471 // - if it was reported already (touched by apport).
1472 // If not, we do nothing, otherwise
1473 // we overwrite it. This is the same behaviour as apport
1474 // - if we have a report with the same pkgversion already
1476 reportfile
= flCombine("/var/crash",pkgname
+".0.crash");
1477 if(FileExists(reportfile
))
1482 // check atime/mtime
1483 stat(reportfile
.c_str(), &buf
);
1484 if(buf
.st_mtime
> buf
.st_atime
)
1487 // check if the existing report is the same version
1488 report
= fopen(reportfile
.c_str(),"r");
1489 while(fgets(strbuf
, sizeof(strbuf
), report
) != NULL
)
1491 if(strstr(strbuf
,"Package:") == strbuf
)
1493 char pkgname
[255], version
[255];
1494 if(sscanf(strbuf
, "Package: %s %s", pkgname
, version
) == 2)
1495 if(strcmp(pkgver
.c_str(), version
) == 0)
1505 // now write the report
1506 arch
= _config
->Find("APT::Architecture");
1507 report
= fopen(reportfile
.c_str(),"w");
1510 if(_config
->FindB("DPkgPM::InitialReportOnly",false) == true)
1511 chmod(reportfile
.c_str(), 0);
1513 chmod(reportfile
.c_str(), 0600);
1514 fprintf(report
, "ProblemType: Package\n");
1515 fprintf(report
, "Architecture: %s\n", arch
.c_str());
1516 time_t now
= time(NULL
);
1517 fprintf(report
, "Date: %s" , ctime(&now
));
1518 fprintf(report
, "Package: %s %s\n", pkgname
.c_str(), pkgver
.c_str());
1519 fprintf(report
, "SourcePackage: %s\n", srcpkgname
.c_str());
1520 fprintf(report
, "ErrorMessage:\n %s\n", errormsg
);
1522 // ensure that the log is flushed
1524 fflush(d
->term_out
);
1526 // attach terminal log it if we have it
1527 string logfile_name
= _config
->FindFile("Dir::Log::Terminal");
1528 if (!logfile_name
.empty())
1533 fprintf(report
, "DpkgTerminalLog:\n");
1534 log
= fopen(logfile_name
.c_str(),"r");
1537 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1538 fprintf(report
, " %s", buf
);
1544 const char *ops_str
[] = {"Install", "Configure","Remove","Purge"};
1545 fprintf(report
, "AptOrdering:\n");
1546 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); ++I
)
1547 fprintf(report
, " %s: %s\n", (*I
).Pkg
.Name(), ops_str
[(*I
).Op
]);
1549 // attach dmesg log (to learn about segfaults)
1550 if (FileExists("/bin/dmesg"))
1555 fprintf(report
, "Dmesg:\n");
1556 log
= popen("/bin/dmesg","r");
1559 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1560 fprintf(report
, " %s", buf
);
1565 // attach df -l log (to learn about filesystem status)
1566 if (FileExists("/bin/df"))
1571 fprintf(report
, "Df:\n");
1572 log
= popen("/bin/df -l","r");
1575 while( fgets(buf
, sizeof(buf
), log
) != NULL
)
1576 fprintf(report
, " %s", buf
);