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