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