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