]> git.saurik.com Git - apt.git/blob - apt-pkg/deb/dpkgpm.cc
Only stop on SigInt if the system state is right (still needs more testing).
[apt.git] / apt-pkg / deb / dpkgpm.cc
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: dpkgpm.cc,v 1.28 2004/01/27 02:25:01 mdz Exp $
4 /* ######################################################################
5
6 DPKG Package Manager - Provide an interface to dpkg
7
8 ##################################################################### */
9 /*}}}*/
10 // Includes /*{{{*/
11 #include <apt-pkg/dpkgpm.h>
12 #include <apt-pkg/error.h>
13 #include <apt-pkg/configuration.h>
14 #include <apt-pkg/depcache.h>
15 #include <apt-pkg/pkgrecords.h>
16 #include <apt-pkg/strutl.h>
17 #include <apt-pkg/fileutl.h>
18 #include <apt-pkg/cachefile.h>
19 #include <apt-pkg/packagemanager.h>
20
21 #include <unistd.h>
22 #include <stdlib.h>
23 #include <fcntl.h>
24 #include <sys/select.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
28 #include <signal.h>
29 #include <errno.h>
30 #include <string.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <algorithm>
34 #include <sstream>
35 #include <map>
36 #include <pwd.h>
37 #include <grp.h>
38
39 #include <termios.h>
40 #include <unistd.h>
41 #include <sys/ioctl.h>
42 #include <pty.h>
43
44 #include <config.h>
45 #include <apti18n.h>
46 /*}}}*/
47
48 using namespace std;
49
50 namespace
51 {
52 // Maps the dpkg "processing" info to human readable names. Entry 0
53 // of each array is the key, entry 1 is the value.
54 const std::pair<const char *, const char *> PackageProcessingOps[] = {
55 std::make_pair("install", N_("Installing %s")),
56 std::make_pair("configure", N_("Configuring %s")),
57 std::make_pair("remove", N_("Removing %s")),
58 std::make_pair("purge", N_("Completely removing %s")),
59 std::make_pair("disappear", N_("Noting disappearance of %s")),
60 std::make_pair("trigproc", N_("Running post-installation trigger %s"))
61 };
62
63 const std::pair<const char *, const char *> * const PackageProcessingOpsBegin = PackageProcessingOps;
64 const std::pair<const char *, const char *> * const PackageProcessingOpsEnd = PackageProcessingOps + sizeof(PackageProcessingOps) / sizeof(PackageProcessingOps[0]);
65
66 // Predicate to test whether an entry in the PackageProcessingOps
67 // array matches a string.
68 class MatchProcessingOp
69 {
70 const char *target;
71
72 public:
73 MatchProcessingOp(const char *the_target)
74 : target(the_target)
75 {
76 }
77
78 bool operator()(const std::pair<const char *, const char *> &pair) const
79 {
80 return strcmp(pair.first, target) == 0;
81 }
82 };
83 }
84
85 /* helper function to ionice the given PID
86
87 there is no C header for ionice yet - just the syscall interface
88 so we use the binary from util-linux
89 */
90 static bool
91 ionice(int PID)
92 {
93 if (!FileExists("/usr/bin/ionice"))
94 return false;
95 pid_t Process = ExecFork();
96 if (Process == 0)
97 {
98 char buf[32];
99 snprintf(buf, sizeof(buf), "-p%d", PID);
100 const char *Args[4];
101 Args[0] = "/usr/bin/ionice";
102 Args[1] = "-c3";
103 Args[2] = buf;
104 Args[3] = 0;
105 execv(Args[0], (char **)Args);
106 }
107 return ExecWait(Process, "ionice");
108 }
109
110 // DPkgPM::pkgDPkgPM - Constructor /*{{{*/
111 // ---------------------------------------------------------------------
112 /* */
113 pkgDPkgPM::pkgDPkgPM(pkgDepCache *Cache)
114 : pkgPackageManager(Cache), dpkgbuf_pos(0),
115 term_out(NULL), history_out(NULL), PackagesDone(0), PackagesTotal(0)
116 {
117 }
118 /*}}}*/
119 // DPkgPM::pkgDPkgPM - Destructor /*{{{*/
120 // ---------------------------------------------------------------------
121 /* */
122 pkgDPkgPM::~pkgDPkgPM()
123 {
124 }
125 /*}}}*/
126 // DPkgPM::Install - Install a package /*{{{*/
127 // ---------------------------------------------------------------------
128 /* Add an install operation to the sequence list */
129 bool pkgDPkgPM::Install(PkgIterator Pkg,string File)
130 {
131 if (File.empty() == true || Pkg.end() == true)
132 return _error->Error("Internal Error, No file name for %s",Pkg.Name());
133
134 // If the filename string begins with DPkg::Chroot-Directory, return the
135 // substr that is within the chroot so dpkg can access it.
136 string const chrootdir = _config->FindDir("DPkg::Chroot-Directory","/");
137 if (chrootdir != "/" && File.find(chrootdir) == 0)
138 {
139 size_t len = chrootdir.length();
140 if (chrootdir.at(len - 1) == '/')
141 len--;
142 List.push_back(Item(Item::Install,Pkg,File.substr(len)));
143 }
144 else
145 List.push_back(Item(Item::Install,Pkg,File));
146
147 return true;
148 }
149 /*}}}*/
150 // DPkgPM::Configure - Configure a package /*{{{*/
151 // ---------------------------------------------------------------------
152 /* Add a configure operation to the sequence list */
153 bool pkgDPkgPM::Configure(PkgIterator Pkg)
154 {
155 if (Pkg.end() == true)
156 return false;
157
158 List.push_back(Item(Item::Configure, Pkg));
159
160 // Use triggers for config calls if we configure "smart"
161 // as otherwise Pre-Depends will not be satisfied, see #526774
162 if (_config->FindB("DPkg::TriggersPending", false) == true)
163 List.push_back(Item(Item::TriggersPending, PkgIterator()));
164
165 return true;
166 }
167 /*}}}*/
168 // DPkgPM::Remove - Remove a package /*{{{*/
169 // ---------------------------------------------------------------------
170 /* Add a remove operation to the sequence list */
171 bool pkgDPkgPM::Remove(PkgIterator Pkg,bool Purge)
172 {
173 if (Pkg.end() == true)
174 return false;
175
176 if (Purge == true)
177 List.push_back(Item(Item::Purge,Pkg));
178 else
179 List.push_back(Item(Item::Remove,Pkg));
180 return true;
181 }
182 /*}}}*/
183 // DPkgPM::SendV2Pkgs - Send version 2 package info /*{{{*/
184 // ---------------------------------------------------------------------
185 /* This is part of the helper script communication interface, it sends
186 very complete information down to the other end of the pipe.*/
187 bool pkgDPkgPM::SendV2Pkgs(FILE *F)
188 {
189 fprintf(F,"VERSION 2\n");
190
191 /* Write out all of the configuration directives by walking the
192 configuration tree */
193 const Configuration::Item *Top = _config->Tree(0);
194 for (; Top != 0;)
195 {
196 if (Top->Value.empty() == false)
197 {
198 fprintf(F,"%s=%s\n",
199 QuoteString(Top->FullTag(),"=\"\n").c_str(),
200 QuoteString(Top->Value,"\n").c_str());
201 }
202
203 if (Top->Child != 0)
204 {
205 Top = Top->Child;
206 continue;
207 }
208
209 while (Top != 0 && Top->Next == 0)
210 Top = Top->Parent;
211 if (Top != 0)
212 Top = Top->Next;
213 }
214 fprintf(F,"\n");
215
216 // Write out the package actions in order.
217 for (vector<Item>::iterator I = List.begin(); I != List.end(); I++)
218 {
219 if(I->Pkg.end() == true)
220 continue;
221
222 pkgDepCache::StateCache &S = Cache[I->Pkg];
223
224 fprintf(F,"%s ",I->Pkg.Name());
225 // Current version
226 if (I->Pkg->CurrentVer == 0)
227 fprintf(F,"- ");
228 else
229 fprintf(F,"%s ",I->Pkg.CurrentVer().VerStr());
230
231 // Show the compare operator
232 // Target version
233 if (S.InstallVer != 0)
234 {
235 int Comp = 2;
236 if (I->Pkg->CurrentVer != 0)
237 Comp = S.InstVerIter(Cache).CompareVer(I->Pkg.CurrentVer());
238 if (Comp < 0)
239 fprintf(F,"> ");
240 if (Comp == 0)
241 fprintf(F,"= ");
242 if (Comp > 0)
243 fprintf(F,"< ");
244 fprintf(F,"%s ",S.InstVerIter(Cache).VerStr());
245 }
246 else
247 fprintf(F,"> - ");
248
249 // Show the filename/operation
250 if (I->Op == Item::Install)
251 {
252 // No errors here..
253 if (I->File[0] != '/')
254 fprintf(F,"**ERROR**\n");
255 else
256 fprintf(F,"%s\n",I->File.c_str());
257 }
258 if (I->Op == Item::Configure)
259 fprintf(F,"**CONFIGURE**\n");
260 if (I->Op == Item::Remove ||
261 I->Op == Item::Purge)
262 fprintf(F,"**REMOVE**\n");
263
264 if (ferror(F) != 0)
265 return false;
266 }
267 return true;
268 }
269 /*}}}*/
270 // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/
271 // ---------------------------------------------------------------------
272 /* This looks for a list of scripts to run from the configuration file
273 each one is run and is fed on standard input a list of all .deb files
274 that are due to be installed. */
275 bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf)
276 {
277 Configuration::Item const *Opts = _config->Tree(Cnf);
278 if (Opts == 0 || Opts->Child == 0)
279 return true;
280 Opts = Opts->Child;
281
282 unsigned int Count = 1;
283 for (; Opts != 0; Opts = Opts->Next, Count++)
284 {
285 if (Opts->Value.empty() == true)
286 continue;
287
288 // Determine the protocol version
289 string OptSec = Opts->Value;
290 string::size_type Pos;
291 if ((Pos = OptSec.find(' ')) == string::npos || Pos == 0)
292 Pos = OptSec.length();
293 OptSec = "DPkg::Tools::Options::" + string(Opts->Value.c_str(),Pos);
294
295 unsigned int Version = _config->FindI(OptSec+"::Version",1);
296
297 // Create the pipes
298 int Pipes[2];
299 if (pipe(Pipes) != 0)
300 return _error->Errno("pipe","Failed to create IPC pipe to subprocess");
301 SetCloseExec(Pipes[0],true);
302 SetCloseExec(Pipes[1],true);
303
304 // Purified Fork for running the script
305 pid_t Process = ExecFork();
306 if (Process == 0)
307 {
308 // Setup the FDs
309 dup2(Pipes[0],STDIN_FILENO);
310 SetCloseExec(STDOUT_FILENO,false);
311 SetCloseExec(STDIN_FILENO,false);
312 SetCloseExec(STDERR_FILENO,false);
313
314 if (_config->FindDir("DPkg::Chroot-Directory","/") != "/")
315 {
316 std::cerr << "Chrooting into "
317 << _config->FindDir("DPkg::Chroot-Directory")
318 << std::endl;
319 if (chroot(_config->FindDir("DPkg::Chroot-Directory","/").c_str()) != 0)
320 _exit(100);
321 }
322
323 const char *Args[4];
324 Args[0] = "/bin/sh";
325 Args[1] = "-c";
326 Args[2] = Opts->Value.c_str();
327 Args[3] = 0;
328 execv(Args[0],(char **)Args);
329 _exit(100);
330 }
331 close(Pipes[0]);
332 FILE *F = fdopen(Pipes[1],"w");
333 if (F == 0)
334 return _error->Errno("fdopen","Faild to open new FD");
335
336 // Feed it the filenames.
337 if (Version <= 1)
338 {
339 for (vector<Item>::iterator I = List.begin(); I != List.end(); I++)
340 {
341 // Only deal with packages to be installed from .deb
342 if (I->Op != Item::Install)
343 continue;
344
345 // No errors here..
346 if (I->File[0] != '/')
347 continue;
348
349 /* Feed the filename of each package that is pending install
350 into the pipe. */
351 fprintf(F,"%s\n",I->File.c_str());
352 if (ferror(F) != 0)
353 break;
354 }
355 }
356 else
357 SendV2Pkgs(F);
358
359 fclose(F);
360
361 // Clean up the sub process
362 if (ExecWait(Process,Opts->Value.c_str()) == false)
363 return _error->Error("Failure running script %s",Opts->Value.c_str());
364 }
365
366 return true;
367 }
368 /*}}}*/
369 // DPkgPM::DoStdin - Read stdin and pass to slave pty /*{{{*/
370 // ---------------------------------------------------------------------
371 /*
372 */
373 void pkgDPkgPM::DoStdin(int master)
374 {
375 unsigned char input_buf[256] = {0,};
376 ssize_t len = read(0, input_buf, sizeof(input_buf));
377 if (len)
378 write(master, input_buf, len);
379 else
380 stdin_is_dev_null = true;
381 }
382 /*}}}*/
383 // DPkgPM::DoTerminalPty - Read the terminal pty and write log /*{{{*/
384 // ---------------------------------------------------------------------
385 /*
386 * read the terminal pty and write log
387 */
388 void pkgDPkgPM::DoTerminalPty(int master)
389 {
390 unsigned char term_buf[1024] = {0,0, };
391
392 ssize_t len=read(master, term_buf, sizeof(term_buf));
393 if(len == -1 && errno == EIO)
394 {
395 // this happens when the child is about to exit, we
396 // give it time to actually exit, otherwise we run
397 // into a race so we sleep for half a second.
398 struct timespec sleepfor = { 0, 500000000 };
399 nanosleep(&sleepfor, NULL);
400 return;
401 }
402 if(len <= 0)
403 return;
404 write(1, term_buf, len);
405 if(term_out)
406 fwrite(term_buf, len, sizeof(char), term_out);
407 }
408 /*}}}*/
409 // DPkgPM::ProcessDpkgStatusBuf /*{{{*/
410 // ---------------------------------------------------------------------
411 /*
412 */
413 void pkgDPkgPM::ProcessDpkgStatusLine(int OutStatusFd, char *line)
414 {
415 bool const Debug = _config->FindB("Debug::pkgDPkgProgressReporting",false);
416 // the status we output
417 ostringstream status;
418
419 if (Debug == true)
420 std::clog << "got from dpkg '" << line << "'" << std::endl;
421
422
423 /* dpkg sends strings like this:
424 'status: <pkg>: <pkg qstate>'
425 errors look like this:
426 '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
427 and conffile-prompt like this
428 'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited
429
430 Newer versions of dpkg sent also:
431 'processing: install: pkg'
432 'processing: configure: pkg'
433 'processing: remove: pkg'
434 'processing: purge: pkg'
435 'processing: disappear: pkg'
436 'processing: trigproc: trigger'
437
438 */
439 char* list[6];
440 // dpkg sends multiline error messages sometimes (see
441 // #374195 for a example. we should support this by
442 // either patching dpkg to not send multiline over the
443 // statusfd or by rewriting the code here to deal with
444 // it. for now we just ignore it and not crash
445 TokSplitString(':', line, list, sizeof(list)/sizeof(list[0]));
446 if( list[0] == NULL || list[1] == NULL || list[2] == NULL)
447 {
448 if (Debug == true)
449 std::clog << "ignoring line: not enough ':'" << std::endl;
450 return;
451 }
452 const char* const pkg = list[1];
453 const char* action = _strstrip(list[2]);
454
455 // 'processing' from dpkg looks like
456 // 'processing: action: pkg'
457 if(strncmp(list[0], "processing", strlen("processing")) == 0)
458 {
459 char s[200];
460 const char* const pkg_or_trigger = _strstrip(list[2]);
461 action = _strstrip( list[1]);
462 const std::pair<const char *, const char *> * const iter =
463 std::find_if(PackageProcessingOpsBegin,
464 PackageProcessingOpsEnd,
465 MatchProcessingOp(action));
466 if(iter == PackageProcessingOpsEnd)
467 {
468 if (Debug == true)
469 std::clog << "ignoring unknown action: " << action << std::endl;
470 return;
471 }
472 snprintf(s, sizeof(s), _(iter->second), pkg_or_trigger);
473
474 status << "pmstatus:" << pkg_or_trigger
475 << ":" << (PackagesDone/float(PackagesTotal)*100.0)
476 << ":" << s
477 << endl;
478 if(OutStatusFd > 0)
479 write(OutStatusFd, status.str().c_str(), status.str().size());
480 if (Debug == true)
481 std::clog << "send: '" << status.str() << "'" << endl;
482
483 if (strncmp(action, "disappear", strlen("disappear")) == 0)
484 handleDisappearAction(pkg_or_trigger);
485 return;
486 }
487
488 if(strncmp(action,"error",strlen("error")) == 0)
489 {
490 // urgs, sometime has ":" in its error string so that we
491 // end up with the error message split between list[3]
492 // and list[4], e.g. the message:
493 // "failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb ..."
494 // concat them again
495 if( list[4] != NULL )
496 list[3][strlen(list[3])] = ':';
497
498 status << "pmerror:" << list[1]
499 << ":" << (PackagesDone/float(PackagesTotal)*100.0)
500 << ":" << list[3]
501 << endl;
502 if(OutStatusFd > 0)
503 write(OutStatusFd, status.str().c_str(), status.str().size());
504 if (Debug == true)
505 std::clog << "send: '" << status.str() << "'" << endl;
506 pkgFailures++;
507 WriteApportReport(list[1], list[3]);
508 return;
509 }
510 else if(strncmp(action,"conffile",strlen("conffile")) == 0)
511 {
512 status << "pmconffile:" << list[1]
513 << ":" << (PackagesDone/float(PackagesTotal)*100.0)
514 << ":" << list[3]
515 << endl;
516 if(OutStatusFd > 0)
517 write(OutStatusFd, status.str().c_str(), status.str().size());
518 if (Debug == true)
519 std::clog << "send: '" << status.str() << "'" << endl;
520 return;
521 }
522
523 vector<struct DpkgState> const &states = PackageOps[pkg];
524 const char *next_action = NULL;
525 if(PackageOpsDone[pkg] < states.size())
526 next_action = states[PackageOpsDone[pkg]].state;
527 // check if the package moved to the next dpkg state
528 if(next_action && (strcmp(action, next_action) == 0))
529 {
530 // only read the translation if there is actually a next
531 // action
532 const char *translation = _(states[PackageOpsDone[pkg]].str);
533 char s[200];
534 snprintf(s, sizeof(s), translation, pkg);
535
536 // we moved from one dpkg state to a new one, report that
537 PackageOpsDone[pkg]++;
538 PackagesDone++;
539 // build the status str
540 status << "pmstatus:" << pkg
541 << ":" << (PackagesDone/float(PackagesTotal)*100.0)
542 << ":" << s
543 << endl;
544 if(OutStatusFd > 0)
545 write(OutStatusFd, status.str().c_str(), status.str().size());
546 if (Debug == true)
547 std::clog << "send: '" << status.str() << "'" << endl;
548 }
549 if (Debug == true)
550 std::clog << "(parsed from dpkg) pkg: " << pkg
551 << " action: " << action << endl;
552 }
553 /*}}}*/
554 // DPkgPM::handleDisappearAction /*{{{*/
555 void pkgDPkgPM::handleDisappearAction(string const &pkgname)
556 {
557 // record the package name for display and stuff later
558 disappearedPkgs.insert(pkgname);
559
560 pkgCache::PkgIterator Pkg = Cache.FindPkg(pkgname);
561 if (unlikely(Pkg.end() == true))
562 return;
563 // the disappeared package was auto-installed - nothing to do
564 if ((Cache[Pkg].Flags & pkgCache::Flag::Auto) == pkgCache::Flag::Auto)
565 return;
566 pkgCache::VerIterator PkgVer = Cache[Pkg].InstVerIter(Cache);
567 if (unlikely(PkgVer.end() == true))
568 return;
569 /* search in the list of dependencies for (Pre)Depends,
570 check if this dependency has a Replaces on our package
571 and if so transfer the manual installed flag to it */
572 for (pkgCache::DepIterator Dep = PkgVer.DependsList(); Dep.end() != true; ++Dep)
573 {
574 if (Dep->Type != pkgCache::Dep::Depends &&
575 Dep->Type != pkgCache::Dep::PreDepends)
576 continue;
577 pkgCache::PkgIterator Tar = Dep.TargetPkg();
578 if (unlikely(Tar.end() == true))
579 continue;
580 // the package is already marked as manual
581 if ((Cache[Tar].Flags & pkgCache::Flag::Auto) != pkgCache::Flag::Auto)
582 continue;
583 pkgCache::VerIterator TarVer = Cache[Tar].InstVerIter(Cache);
584 if (TarVer.end() == true)
585 continue;
586 for (pkgCache::DepIterator Rep = TarVer.DependsList(); Rep.end() != true; ++Rep)
587 {
588 if (Rep->Type != pkgCache::Dep::Replaces)
589 continue;
590 if (Pkg != Rep.TargetPkg())
591 continue;
592 // okay, they are strongly connected - transfer manual-bit
593 if (Debug == true)
594 std::clog << "transfer manual-bit from disappeared »" << pkgname << "« to »" << Tar.FullName() << "«" << std::endl;
595 Cache[Tar].Flags &= ~Flag::Auto;
596 break;
597 }
598 }
599 }
600 /*}}}*/
601 // DPkgPM::DoDpkgStatusFd /*{{{*/
602 // ---------------------------------------------------------------------
603 /*
604 */
605 void pkgDPkgPM::DoDpkgStatusFd(int statusfd, int OutStatusFd)
606 {
607 char *p, *q;
608 int len;
609
610 len=read(statusfd, &dpkgbuf[dpkgbuf_pos], sizeof(dpkgbuf)-dpkgbuf_pos);
611 dpkgbuf_pos += len;
612 if(len <= 0)
613 return;
614
615 // process line by line if we have a buffer
616 p = q = dpkgbuf;
617 while((q=(char*)memchr(p, '\n', dpkgbuf+dpkgbuf_pos-p)) != NULL)
618 {
619 *q = 0;
620 ProcessDpkgStatusLine(OutStatusFd, p);
621 p=q+1; // continue with next line
622 }
623
624 // now move the unprocessed bits (after the final \n that is now a 0x0)
625 // to the start and update dpkgbuf_pos
626 p = (char*)memrchr(dpkgbuf, 0, dpkgbuf_pos);
627 if(p == NULL)
628 return;
629
630 // we are interessted in the first char *after* 0x0
631 p++;
632
633 // move the unprocessed tail to the start and update pos
634 memmove(dpkgbuf, p, p-dpkgbuf);
635 dpkgbuf_pos = dpkgbuf+dpkgbuf_pos-p;
636 }
637 /*}}}*/
638 // DPkgPM::WriteHistoryTag /*{{{*/
639 void pkgDPkgPM::WriteHistoryTag(string const &tag, string value)
640 {
641 size_t const length = value.length();
642 if (length == 0)
643 return;
644 // poor mans rstrip(", ")
645 if (value[length-2] == ',' && value[length-1] == ' ')
646 value.erase(length - 2, 2);
647 fprintf(history_out, "%s: %s\n", tag.c_str(), value.c_str());
648 } /*}}}*/
649 // DPkgPM::OpenLog /*{{{*/
650 bool pkgDPkgPM::OpenLog()
651 {
652 string const logdir = _config->FindDir("Dir::Log");
653 if(CreateAPTDirectoryIfNeeded(logdir, logdir) == false)
654 // FIXME: use a better string after freeze
655 return _error->Error(_("Directory '%s' missing"), logdir.c_str());
656
657 // get current time
658 char timestr[200];
659 time_t const t = time(NULL);
660 struct tm const * const tmp = localtime(&t);
661 strftime(timestr, sizeof(timestr), "%F %T", tmp);
662
663 // open terminal log
664 string const logfile_name = flCombine(logdir,
665 _config->Find("Dir::Log::Terminal"));
666 if (!logfile_name.empty())
667 {
668 term_out = fopen(logfile_name.c_str(),"a");
669 if (term_out == NULL)
670 return _error->WarningE("OpenLog", _("Could not open file '%s'"), logfile_name.c_str());
671 setvbuf(term_out, NULL, _IONBF, 0);
672 SetCloseExec(fileno(term_out), true);
673 struct passwd *pw;
674 struct group *gr;
675 pw = getpwnam("root");
676 gr = getgrnam("adm");
677 if (pw != NULL && gr != NULL)
678 chown(logfile_name.c_str(), pw->pw_uid, gr->gr_gid);
679 chmod(logfile_name.c_str(), 0644);
680 fprintf(term_out, "\nLog started: %s\n", timestr);
681 }
682
683 // write your history
684 string const history_name = flCombine(logdir,
685 _config->Find("Dir::Log::History"));
686 if (!history_name.empty())
687 {
688 history_out = fopen(history_name.c_str(),"a");
689 if (history_out == NULL)
690 return _error->WarningE("OpenLog", _("Could not open file '%s'"), history_name.c_str());
691 chmod(history_name.c_str(), 0644);
692 fprintf(history_out, "\nStart-Date: %s\n", timestr);
693 string remove, purge, install, reinstall, upgrade, downgrade;
694 for (pkgCache::PkgIterator I = Cache.PkgBegin(); I.end() == false; I++)
695 {
696 enum { CANDIDATE, CANDIDATE_AUTO, CURRENT_CANDIDATE, CURRENT } infostring;
697 string *line = NULL;
698 #define HISTORYINFO(X, Y) { line = &X; infostring = Y; }
699 if (Cache[I].NewInstall() == true)
700 HISTORYINFO(install, CANDIDATE_AUTO)
701 else if (Cache[I].ReInstall() == true)
702 HISTORYINFO(reinstall, CANDIDATE)
703 else if (Cache[I].Upgrade() == true)
704 HISTORYINFO(upgrade, CURRENT_CANDIDATE)
705 else if (Cache[I].Downgrade() == true)
706 HISTORYINFO(downgrade, CURRENT_CANDIDATE)
707 else if (Cache[I].Delete() == true)
708 HISTORYINFO((Cache[I].Purge() ? purge : remove), CURRENT)
709 else
710 continue;
711 #undef HISTORYINFO
712 line->append(I.FullName(false)).append(" (");
713 switch (infostring) {
714 case CANDIDATE: line->append(Cache[I].CandVersion); break;
715 case CANDIDATE_AUTO:
716 line->append(Cache[I].CandVersion);
717 if ((Cache[I].Flags & pkgCache::Flag::Auto) == pkgCache::Flag::Auto)
718 line->append(", automatic");
719 break;
720 case CURRENT_CANDIDATE: line->append(Cache[I].CurVersion).append(", ").append(Cache[I].CandVersion); break;
721 case CURRENT: line->append(Cache[I].CurVersion); break;
722 }
723 line->append("), ");
724 }
725 if (_config->Exists("Commandline::AsString") == true)
726 WriteHistoryTag("Commandline", _config->Find("Commandline::AsString"));
727 WriteHistoryTag("Install", install);
728 WriteHistoryTag("Reinstall", reinstall);
729 WriteHistoryTag("Upgrade", upgrade);
730 WriteHistoryTag("Downgrade",downgrade);
731 WriteHistoryTag("Remove",remove);
732 WriteHistoryTag("Purge",purge);
733 fflush(history_out);
734 }
735
736 return true;
737 }
738 /*}}}*/
739 // DPkg::CloseLog /*{{{*/
740 bool pkgDPkgPM::CloseLog()
741 {
742 char timestr[200];
743 time_t t = time(NULL);
744 struct tm *tmp = localtime(&t);
745 strftime(timestr, sizeof(timestr), "%F %T", tmp);
746
747 if(term_out)
748 {
749 fprintf(term_out, "Log ended: ");
750 fprintf(term_out, "%s", timestr);
751 fprintf(term_out, "\n");
752 fclose(term_out);
753 }
754 term_out = NULL;
755
756 if(history_out)
757 {
758 if (disappearedPkgs.empty() == false)
759 {
760 string disappear;
761 for (std::set<std::string>::const_iterator d = disappearedPkgs.begin();
762 d != disappearedPkgs.end(); ++d)
763 {
764 pkgCache::PkgIterator P = Cache.FindPkg(*d);
765 disappear.append(*d);
766 if (P.end() == true)
767 disappear.append(", ");
768 else
769 disappear.append(" (").append(Cache[P].CurVersion).append("), ");
770 }
771 WriteHistoryTag("Disappeared", disappear);
772 }
773 if (dpkg_error.empty() == false)
774 fprintf(history_out, "Error: %s\n", dpkg_error.c_str());
775 fprintf(history_out, "End-Date: %s\n", timestr);
776 fclose(history_out);
777 }
778 history_out = NULL;
779
780 return true;
781 }
782 /*}}}*/
783 /*{{{*/
784 // This implements a racy version of pselect for those architectures
785 // that don't have a working implementation.
786 // FIXME: Probably can be removed on Lenny+1
787 static int racy_pselect(int nfds, fd_set *readfds, fd_set *writefds,
788 fd_set *exceptfds, const struct timespec *timeout,
789 const sigset_t *sigmask)
790 {
791 sigset_t origmask;
792 struct timeval tv;
793 int retval;
794
795 tv.tv_sec = timeout->tv_sec;
796 tv.tv_usec = timeout->tv_nsec/1000;
797
798 sigprocmask(SIG_SETMASK, sigmask, &origmask);
799 retval = select(nfds, readfds, writefds, exceptfds, &tv);
800 sigprocmask(SIG_SETMASK, &origmask, 0);
801 return retval;
802 }
803 /*}}}*/
804 // DPkgPM::Go - Run the sequence /*{{{*/
805 // ---------------------------------------------------------------------
806 /* This globs the operations and calls dpkg
807 *
808 * If it is called with "OutStatusFd" set to a valid file descriptor
809 * apt will report the install progress over this fd. It maps the
810 * dpkg states a package goes through to human readable (and i10n-able)
811 * names and calculates a percentage for each step.
812 */
813 bool pkgDPkgPM::Go(int OutStatusFd)
814 {
815 fd_set rfds;
816 struct timespec tv;
817 sigset_t sigmask;
818 sigset_t original_sigmask;
819
820 unsigned int const MaxArgs = _config->FindI("Dpkg::MaxArgs",8*1024);
821 unsigned int const MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",32*1024);
822 bool const NoTriggers = _config->FindB("DPkg::NoTriggers", false);
823
824 if (RunScripts("DPkg::Pre-Invoke") == false)
825 return false;
826
827 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
828 return false;
829
830 // support subpressing of triggers processing for special
831 // cases like d-i that runs the triggers handling manually
832 bool const SmartConf = (_config->Find("PackageManager::Configure", "all") != "all");
833 bool const TriggersPending = _config->FindB("DPkg::TriggersPending", false);
834 if (_config->FindB("DPkg::ConfigurePending", SmartConf) == true)
835 List.push_back(Item(Item::ConfigurePending, PkgIterator()));
836
837 // map the dpkg states to the operations that are performed
838 // (this is sorted in the same way as Item::Ops)
839 static const struct DpkgState DpkgStatesOpMap[][7] = {
840 // Install operation
841 {
842 {"half-installed", N_("Preparing %s")},
843 {"unpacked", N_("Unpacking %s") },
844 {NULL, NULL}
845 },
846 // Configure operation
847 {
848 {"unpacked",N_("Preparing to configure %s") },
849 {"half-configured", N_("Configuring %s") },
850 { "installed", N_("Installed %s")},
851 {NULL, NULL}
852 },
853 // Remove operation
854 {
855 {"half-configured", N_("Preparing for removal of %s")},
856 {"half-installed", N_("Removing %s")},
857 {"config-files", N_("Removed %s")},
858 {NULL, NULL}
859 },
860 // Purge operation
861 {
862 {"config-files", N_("Preparing to completely remove %s")},
863 {"not-installed", N_("Completely removed %s")},
864 {NULL, NULL}
865 },
866 };
867
868 // init the PackageOps map, go over the list of packages that
869 // that will be [installed|configured|removed|purged] and add
870 // them to the PackageOps map (the dpkg states it goes through)
871 // and the PackageOpsTranslations (human readable strings)
872 for (vector<Item>::const_iterator I = List.begin(); I != List.end();I++)
873 {
874 if((*I).Pkg.end() == true)
875 continue;
876
877 string const name = (*I).Pkg.Name();
878 PackageOpsDone[name] = 0;
879 for(int i=0; (DpkgStatesOpMap[(*I).Op][i]).state != NULL; i++)
880 {
881 PackageOps[name].push_back(DpkgStatesOpMap[(*I).Op][i]);
882 PackagesTotal++;
883 }
884 }
885
886 stdin_is_dev_null = false;
887
888 // create log
889 OpenLog();
890
891 // this loop is runs once per operation
892 for (vector<Item>::const_iterator I = List.begin(); I != List.end();)
893 {
894 // Do all actions with the same Op in one run
895 vector<Item>::const_iterator J = I;
896 if (TriggersPending == true)
897 for (; J != List.end(); J++)
898 {
899 if (J->Op == I->Op)
900 continue;
901 if (J->Op != Item::TriggersPending)
902 break;
903 vector<Item>::const_iterator T = J + 1;
904 if (T != List.end() && T->Op == I->Op)
905 continue;
906 break;
907 }
908 else
909 for (; J != List.end() && J->Op == I->Op; J++)
910 /* nothing */;
911
912 // Generate the argument list
913 const char *Args[MaxArgs + 50];
914 // keep track of allocated strings for multiarch package names
915 char *Packages[MaxArgs + 50];
916 unsigned int pkgcount = 0;
917
918 // Now check if we are within the MaxArgs limit
919 //
920 // this code below is problematic, because it may happen that
921 // the argument list is split in a way that A depends on B
922 // and they are in the same "--configure A B" run
923 // - with the split they may now be configured in different
924 // runs, using Immediate-Configure-All can help prevent this.
925 if (J - I > (signed)MaxArgs)
926 J = I + MaxArgs;
927
928 unsigned int n = 0;
929 unsigned long Size = 0;
930 string const Tmp = _config->Find("Dir::Bin::dpkg","dpkg");
931 Args[n++] = Tmp.c_str();
932 Size += strlen(Args[n-1]);
933
934 // Stick in any custom dpkg options
935 Configuration::Item const *Opts = _config->Tree("DPkg::Options");
936 if (Opts != 0)
937 {
938 Opts = Opts->Child;
939 for (; Opts != 0; Opts = Opts->Next)
940 {
941 if (Opts->Value.empty() == true)
942 continue;
943 Args[n++] = Opts->Value.c_str();
944 Size += Opts->Value.length();
945 }
946 }
947
948 char status_fd_buf[20];
949 int fd[2];
950 pipe(fd);
951
952 Args[n++] = "--status-fd";
953 Size += strlen(Args[n-1]);
954 snprintf(status_fd_buf,sizeof(status_fd_buf),"%i", fd[1]);
955 Args[n++] = status_fd_buf;
956 Size += strlen(Args[n-1]);
957
958 switch (I->Op)
959 {
960 case Item::Remove:
961 Args[n++] = "--force-depends";
962 Size += strlen(Args[n-1]);
963 Args[n++] = "--force-remove-essential";
964 Size += strlen(Args[n-1]);
965 Args[n++] = "--remove";
966 Size += strlen(Args[n-1]);
967 break;
968
969 case Item::Purge:
970 Args[n++] = "--force-depends";
971 Size += strlen(Args[n-1]);
972 Args[n++] = "--force-remove-essential";
973 Size += strlen(Args[n-1]);
974 Args[n++] = "--purge";
975 Size += strlen(Args[n-1]);
976 break;
977
978 case Item::Configure:
979 Args[n++] = "--configure";
980 Size += strlen(Args[n-1]);
981 break;
982
983 case Item::ConfigurePending:
984 Args[n++] = "--configure";
985 Size += strlen(Args[n-1]);
986 Args[n++] = "--pending";
987 Size += strlen(Args[n-1]);
988 break;
989
990 case Item::TriggersPending:
991 Args[n++] = "--triggers-only";
992 Size += strlen(Args[n-1]);
993 Args[n++] = "--pending";
994 Size += strlen(Args[n-1]);
995 break;
996
997 case Item::Install:
998 Args[n++] = "--unpack";
999 Size += strlen(Args[n-1]);
1000 Args[n++] = "--auto-deconfigure";
1001 Size += strlen(Args[n-1]);
1002 break;
1003 }
1004
1005 if (NoTriggers == true && I->Op != Item::TriggersPending &&
1006 I->Op != Item::ConfigurePending)
1007 {
1008 Args[n++] = "--no-triggers";
1009 Size += strlen(Args[n-1]);
1010 }
1011
1012 // Write in the file or package names
1013 if (I->Op == Item::Install)
1014 {
1015 for (;I != J && Size < MaxArgBytes; I++)
1016 {
1017 if (I->File[0] != '/')
1018 return _error->Error("Internal Error, Pathname to install is not absolute '%s'",I->File.c_str());
1019 Args[n++] = I->File.c_str();
1020 Size += strlen(Args[n-1]);
1021 }
1022 }
1023 else
1024 {
1025 string const nativeArch = _config->Find("APT::Architecture");
1026 unsigned long const oldSize = I->Op == Item::Configure ? Size : 0;
1027 for (;I != J && Size < MaxArgBytes; I++)
1028 {
1029 if((*I).Pkg.end() == true)
1030 continue;
1031 if (I->Op == Item::Configure && disappearedPkgs.find(I->Pkg.Name()) != disappearedPkgs.end())
1032 continue;
1033 if (I->Pkg.Arch() == nativeArch || !strcmp(I->Pkg.Arch(), "all"))
1034 Args[n++] = I->Pkg.Name();
1035 else
1036 {
1037 Packages[pkgcount] = strdup(I->Pkg.FullName(false).c_str());
1038 Args[n++] = Packages[pkgcount++];
1039 }
1040 Size += strlen(Args[n-1]);
1041 }
1042 // skip configure action if all sheduled packages disappeared
1043 if (oldSize == Size)
1044 continue;
1045 }
1046 Args[n] = 0;
1047 J = I;
1048
1049 if (_config->FindB("Debug::pkgDPkgPM",false) == true)
1050 {
1051 for (unsigned int k = 0; k != n; k++)
1052 clog << Args[k] << ' ';
1053 clog << endl;
1054 continue;
1055 }
1056
1057 cout << flush;
1058 clog << flush;
1059 cerr << flush;
1060
1061 /* Mask off sig int/quit. We do this because dpkg also does when
1062 it forks scripts. What happens is that when you hit ctrl-c it sends
1063 it to all processes in the group. Since dpkg ignores the signal
1064 it doesn't die but we do! So we must also ignore it */
1065 sighandler_t old_SIGQUIT = signal(SIGQUIT,SIG_IGN);
1066 sighandler_t old_SIGINT = signal(SIGINT,SigINT);
1067
1068 // Check here for any SIGINT
1069 if (pkgPackageManager::SigINTStop &&
1070 (I->Op == Item::Install || I->Op == Item::Remove || I->Op == Item::Purge)) break;
1071
1072 // ignore SIGHUP as well (debian #463030)
1073 sighandler_t old_SIGHUP = signal(SIGHUP,SIG_IGN);
1074
1075 struct termios tt;
1076 struct winsize win;
1077 int master = -1;
1078 int slave = -1;
1079
1080 // if tcgetattr does not return zero there was a error
1081 // and we do not do any pty magic
1082 if (tcgetattr(0, &tt) == 0)
1083 {
1084 ioctl(0, TIOCGWINSZ, (char *)&win);
1085 if (openpty(&master, &slave, NULL, &tt, &win) < 0)
1086 {
1087 const char *s = _("Can not write log, openpty() "
1088 "failed (/dev/pts not mounted?)\n");
1089 fprintf(stderr, "%s",s);
1090 if(term_out)
1091 fprintf(term_out, "%s",s);
1092 master = slave = -1;
1093 } else {
1094 struct termios rtt;
1095 rtt = tt;
1096 cfmakeraw(&rtt);
1097 rtt.c_lflag &= ~ECHO;
1098 rtt.c_lflag |= ISIG;
1099 // block SIGTTOU during tcsetattr to prevent a hang if
1100 // the process is a member of the background process group
1101 // http://www.opengroup.org/onlinepubs/000095399/functions/tcsetattr.html
1102 sigemptyset(&sigmask);
1103 sigaddset(&sigmask, SIGTTOU);
1104 sigprocmask(SIG_BLOCK,&sigmask, &original_sigmask);
1105 tcsetattr(0, TCSAFLUSH, &rtt);
1106 sigprocmask(SIG_SETMASK, &original_sigmask, 0);
1107 }
1108 }
1109 // Fork dpkg
1110 pid_t Child;
1111 _config->Set("APT::Keep-Fds::",fd[1]);
1112 // send status information that we are about to fork dpkg
1113 if(OutStatusFd > 0) {
1114 ostringstream status;
1115 status << "pmstatus:dpkg-exec:"
1116 << (PackagesDone/float(PackagesTotal)*100.0)
1117 << ":" << _("Running dpkg")
1118 << endl;
1119 write(OutStatusFd, status.str().c_str(), status.str().size());
1120 }
1121 Child = ExecFork();
1122
1123 // This is the child
1124 if (Child == 0)
1125 {
1126 if(slave >= 0 && master >= 0)
1127 {
1128 setsid();
1129 ioctl(slave, TIOCSCTTY, 0);
1130 close(master);
1131 dup2(slave, 0);
1132 dup2(slave, 1);
1133 dup2(slave, 2);
1134 close(slave);
1135 }
1136 close(fd[0]); // close the read end of the pipe
1137
1138 if (_config->FindDir("DPkg::Chroot-Directory","/") != "/")
1139 {
1140 std::cerr << "Chrooting into "
1141 << _config->FindDir("DPkg::Chroot-Directory")
1142 << std::endl;
1143 if (chroot(_config->FindDir("DPkg::Chroot-Directory","/").c_str()) != 0)
1144 _exit(100);
1145 }
1146
1147 if (chdir(_config->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
1148 _exit(100);
1149
1150 if (_config->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO))
1151 {
1152 int Flags,dummy;
1153 if ((Flags = fcntl(STDIN_FILENO,F_GETFL,dummy)) < 0)
1154 _exit(100);
1155
1156 // Discard everything in stdin before forking dpkg
1157 if (fcntl(STDIN_FILENO,F_SETFL,Flags | O_NONBLOCK) < 0)
1158 _exit(100);
1159
1160 while (read(STDIN_FILENO,&dummy,1) == 1);
1161
1162 if (fcntl(STDIN_FILENO,F_SETFL,Flags & (~(long)O_NONBLOCK)) < 0)
1163 _exit(100);
1164 }
1165
1166 /* No Job Control Stop Env is a magic dpkg var that prevents it
1167 from using sigstop */
1168 putenv((char *)"DPKG_NO_TSTP=yes");
1169 execvp(Args[0],(char **)Args);
1170 cerr << "Could not exec dpkg!" << endl;
1171 _exit(100);
1172 }
1173
1174 // apply ionice
1175 if (_config->FindB("DPkg::UseIoNice", false) == true)
1176 ionice(Child);
1177
1178 // clear the Keep-Fd again
1179 _config->Clear("APT::Keep-Fds",fd[1]);
1180
1181 // Wait for dpkg
1182 int Status = 0;
1183
1184 // we read from dpkg here
1185 int const _dpkgin = fd[0];
1186 close(fd[1]); // close the write end of the pipe
1187
1188 if(slave > 0)
1189 close(slave);
1190
1191 // setups fds
1192 sigemptyset(&sigmask);
1193 sigprocmask(SIG_BLOCK,&sigmask,&original_sigmask);
1194
1195 /* clean up the temporary allocation for multiarch package names in
1196 the parent, so we don't leak memory when we return. */
1197 for (unsigned int i = 0; i < pkgcount; i++)
1198 free(Packages[i]);
1199
1200 // the result of the waitpid call
1201 int res;
1202 int select_ret;
1203 while ((res=waitpid(Child,&Status, WNOHANG)) != Child) {
1204 if(res < 0) {
1205 // FIXME: move this to a function or something, looks ugly here
1206 // error handling, waitpid returned -1
1207 if (errno == EINTR)
1208 continue;
1209 RunScripts("DPkg::Post-Invoke");
1210
1211 // Restore sig int/quit
1212 signal(SIGQUIT,old_SIGQUIT);
1213 signal(SIGINT,old_SIGINT);
1214
1215 signal(SIGHUP,old_SIGHUP);
1216 return _error->Errno("waitpid","Couldn't wait for subprocess");
1217 }
1218
1219 // wait for input or output here
1220 FD_ZERO(&rfds);
1221 if (master >= 0 && !stdin_is_dev_null)
1222 FD_SET(0, &rfds);
1223 FD_SET(_dpkgin, &rfds);
1224 if(master >= 0)
1225 FD_SET(master, &rfds);
1226 tv.tv_sec = 1;
1227 tv.tv_nsec = 0;
1228 select_ret = pselect(max(master, _dpkgin)+1, &rfds, NULL, NULL,
1229 &tv, &original_sigmask);
1230 if (select_ret < 0 && (errno == EINVAL || errno == ENOSYS))
1231 select_ret = racy_pselect(max(master, _dpkgin)+1, &rfds, NULL,
1232 NULL, &tv, &original_sigmask);
1233 if (select_ret == 0)
1234 continue;
1235 else if (select_ret < 0 && errno == EINTR)
1236 continue;
1237 else if (select_ret < 0)
1238 {
1239 perror("select() returned error");
1240 continue;
1241 }
1242
1243 if(master >= 0 && FD_ISSET(master, &rfds))
1244 DoTerminalPty(master);
1245 if(master >= 0 && FD_ISSET(0, &rfds))
1246 DoStdin(master);
1247 if(FD_ISSET(_dpkgin, &rfds))
1248 DoDpkgStatusFd(_dpkgin, OutStatusFd);
1249 }
1250 close(_dpkgin);
1251
1252 // Restore sig int/quit
1253 signal(SIGQUIT,old_SIGQUIT);
1254 signal(SIGINT,old_SIGINT);
1255
1256 signal(SIGHUP,old_SIGHUP);
1257
1258 if(master >= 0)
1259 {
1260 tcsetattr(0, TCSAFLUSH, &tt);
1261 close(master);
1262 }
1263
1264 // Check for an error code.
1265 if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0)
1266 {
1267 // if it was set to "keep-dpkg-runing" then we won't return
1268 // here but keep the loop going and just report it as a error
1269 // for later
1270 bool const stopOnError = _config->FindB("Dpkg::StopOnError",true);
1271
1272 if(stopOnError)
1273 RunScripts("DPkg::Post-Invoke");
1274
1275 if (WIFSIGNALED(Status) != 0 && WTERMSIG(Status) == SIGSEGV)
1276 strprintf(dpkg_error, "Sub-process %s received a segmentation fault.",Args[0]);
1277 else if (WIFEXITED(Status) != 0)
1278 strprintf(dpkg_error, "Sub-process %s returned an error code (%u)",Args[0],WEXITSTATUS(Status));
1279 else
1280 strprintf(dpkg_error, "Sub-process %s exited unexpectedly",Args[0]);
1281
1282 if(dpkg_error.size() > 0)
1283 _error->Error("%s", dpkg_error.c_str());
1284
1285 if(stopOnError)
1286 {
1287 CloseLog();
1288 return false;
1289 }
1290 }
1291 }
1292 CloseLog();
1293
1294 if (RunScripts("DPkg::Post-Invoke") == false)
1295 return false;
1296
1297 if (_config->FindB("Debug::pkgDPkgPM",false) == false)
1298 {
1299 std::string const oldpkgcache = _config->FindFile("Dir::cache::pkgcache");
1300 if (oldpkgcache.empty() == false && RealFileExists(oldpkgcache) == true &&
1301 unlink(oldpkgcache.c_str()) == 0)
1302 {
1303 std::string const srcpkgcache = _config->FindFile("Dir::cache::srcpkgcache");
1304 if (srcpkgcache.empty() == false && RealFileExists(srcpkgcache) == true)
1305 {
1306 _error->PushToStack();
1307 pkgCacheFile CacheFile;
1308 CacheFile.BuildCaches(NULL, true);
1309 _error->RevertToStack();
1310 }
1311 }
1312 }
1313
1314 Cache.writeStateFile(NULL);
1315 return true;
1316 }
1317
1318 void SigINT(int sig) {
1319 if (_config->FindB("APT::Immediate-Configure-All",false))
1320 pkgPackageManager::SigINTStop = true;
1321 }
1322 /*}}}*/
1323 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
1324 // ---------------------------------------------------------------------
1325 /* */
1326 void pkgDPkgPM::Reset()
1327 {
1328 List.erase(List.begin(),List.end());
1329 }
1330 /*}}}*/
1331 // pkgDpkgPM::WriteApportReport - write out error report pkg failure /*{{{*/
1332 // ---------------------------------------------------------------------
1333 /* */
1334 void pkgDPkgPM::WriteApportReport(const char *pkgpath, const char *errormsg)
1335 {
1336 string pkgname, reportfile, srcpkgname, pkgver, arch;
1337 string::size_type pos;
1338 FILE *report;
1339
1340 if (_config->FindB("Dpkg::ApportFailureReport", false) == false)
1341 {
1342 std::clog << "configured to not write apport reports" << std::endl;
1343 return;
1344 }
1345
1346 // only report the first errors
1347 if(pkgFailures > _config->FindI("APT::Apport::MaxReports", 3))
1348 {
1349 std::clog << _("No apport report written because MaxReports is reached already") << std::endl;
1350 return;
1351 }
1352
1353 // check if its not a follow up error
1354 const char *needle = dgettext("dpkg", "dependency problems - leaving unconfigured");
1355 if(strstr(errormsg, needle) != NULL) {
1356 std::clog << _("No apport report written because the error message indicates its a followup error from a previous failure.") << std::endl;
1357 return;
1358 }
1359
1360 // do not report disk-full failures
1361 if(strstr(errormsg, strerror(ENOSPC)) != NULL) {
1362 std::clog << _("No apport report written because the error message indicates a disk full error") << std::endl;
1363 return;
1364 }
1365
1366 // do not report out-of-memory failures
1367 if(strstr(errormsg, strerror(ENOMEM)) != NULL) {
1368 std::clog << _("No apport report written because the error message indicates a out of memory error") << std::endl;
1369 return;
1370 }
1371
1372 // do not report dpkg I/O errors
1373 // XXX - this message is localized, but this only matches the English version. This is better than nothing.
1374 if(strstr(errormsg, "short read in buffer_copy (")) {
1375 std::clog << _("No apport report written because the error message indicates a dpkg I/O error") << std::endl;
1376 return;
1377 }
1378
1379 // get the pkgname and reportfile
1380 pkgname = flNotDir(pkgpath);
1381 pos = pkgname.find('_');
1382 if(pos != string::npos)
1383 pkgname = pkgname.substr(0, pos);
1384
1385 // find the package versin and source package name
1386 pkgCache::PkgIterator Pkg = Cache.FindPkg(pkgname);
1387 if (Pkg.end() == true)
1388 return;
1389 pkgCache::VerIterator Ver = Cache.GetCandidateVer(Pkg);
1390 if (Ver.end() == true)
1391 return;
1392 pkgver = Ver.VerStr() == NULL ? "unknown" : Ver.VerStr();
1393 pkgRecords Recs(Cache);
1394 pkgRecords::Parser &Parse = Recs.Lookup(Ver.FileList());
1395 srcpkgname = Parse.SourcePkg();
1396 if(srcpkgname.empty())
1397 srcpkgname = pkgname;
1398
1399 // if the file exists already, we check:
1400 // - if it was reported already (touched by apport).
1401 // If not, we do nothing, otherwise
1402 // we overwrite it. This is the same behaviour as apport
1403 // - if we have a report with the same pkgversion already
1404 // then we skip it
1405 reportfile = flCombine("/var/crash",pkgname+".0.crash");
1406 if(FileExists(reportfile))
1407 {
1408 struct stat buf;
1409 char strbuf[255];
1410
1411 // check atime/mtime
1412 stat(reportfile.c_str(), &buf);
1413 if(buf.st_mtime > buf.st_atime)
1414 return;
1415
1416 // check if the existing report is the same version
1417 report = fopen(reportfile.c_str(),"r");
1418 while(fgets(strbuf, sizeof(strbuf), report) != NULL)
1419 {
1420 if(strstr(strbuf,"Package:") == strbuf)
1421 {
1422 char pkgname[255], version[255];
1423 if(sscanf(strbuf, "Package: %s %s", pkgname, version) == 2)
1424 if(strcmp(pkgver.c_str(), version) == 0)
1425 {
1426 fclose(report);
1427 return;
1428 }
1429 }
1430 }
1431 fclose(report);
1432 }
1433
1434 // now write the report
1435 arch = _config->Find("APT::Architecture");
1436 report = fopen(reportfile.c_str(),"w");
1437 if(report == NULL)
1438 return;
1439 if(_config->FindB("DPkgPM::InitialReportOnly",false) == true)
1440 chmod(reportfile.c_str(), 0);
1441 else
1442 chmod(reportfile.c_str(), 0600);
1443 fprintf(report, "ProblemType: Package\n");
1444 fprintf(report, "Architecture: %s\n", arch.c_str());
1445 time_t now = time(NULL);
1446 fprintf(report, "Date: %s" , ctime(&now));
1447 fprintf(report, "Package: %s %s\n", pkgname.c_str(), pkgver.c_str());
1448 fprintf(report, "SourcePackage: %s\n", srcpkgname.c_str());
1449 fprintf(report, "ErrorMessage:\n %s\n", errormsg);
1450
1451 // ensure that the log is flushed
1452 if(term_out)
1453 fflush(term_out);
1454
1455 // attach terminal log it if we have it
1456 string logfile_name = _config->FindFile("Dir::Log::Terminal");
1457 if (!logfile_name.empty())
1458 {
1459 FILE *log = NULL;
1460 char buf[1024];
1461
1462 fprintf(report, "DpkgTerminalLog:\n");
1463 log = fopen(logfile_name.c_str(),"r");
1464 if(log != NULL)
1465 {
1466 while( fgets(buf, sizeof(buf), log) != NULL)
1467 fprintf(report, " %s", buf);
1468 fclose(log);
1469 }
1470 }
1471
1472 // log the ordering
1473 const char *ops_str[] = {"Install", "Configure","Remove","Purge"};
1474 fprintf(report, "AptOrdering:\n");
1475 for (vector<Item>::iterator I = List.begin(); I != List.end(); I++)
1476 fprintf(report, " %s: %s\n", (*I).Pkg.Name(), ops_str[(*I).Op]);
1477
1478 // attach dmesg log (to learn about segfaults)
1479 if (FileExists("/bin/dmesg"))
1480 {
1481 FILE *log = NULL;
1482 char buf[1024];
1483
1484 fprintf(report, "Dmesg:\n");
1485 log = popen("/bin/dmesg","r");
1486 if(log != NULL)
1487 {
1488 while( fgets(buf, sizeof(buf), log) != NULL)
1489 fprintf(report, " %s", buf);
1490 pclose(log);
1491 }
1492 }
1493
1494 // attach df -l log (to learn about filesystem status)
1495 if (FileExists("/bin/df"))
1496 {
1497 FILE *log = NULL;
1498 char buf[1024];
1499
1500 fprintf(report, "Df:\n");
1501 log = popen("/bin/df -l","r");
1502 if(log != NULL)
1503 {
1504 while( fgets(buf, sizeof(buf), log) != NULL)
1505 fprintf(report, " %s", buf);
1506 pclose(log);
1507 }
1508 }
1509
1510 fclose(report);
1511
1512 }
1513 /*}}}*/