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