]>
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 /*{{{*/ | |
03e39e59 AL |
11 | #include <apt-pkg/dpkgpm.h> |
12 | #include <apt-pkg/error.h> | |
13 | #include <apt-pkg/configuration.h> | |
b2e465d6 AL |
14 | #include <apt-pkg/depcache.h> |
15 | #include <apt-pkg/strutl.h> | |
a4cf3665 | 16 | #include <apti18n.h> |
614adaa0 | 17 | #include <apt-pkg/fileutl.h> |
233b185f | 18 | |
03e39e59 AL |
19 | #include <unistd.h> |
20 | #include <stdlib.h> | |
21 | #include <fcntl.h> | |
090c6566 | 22 | #include <sys/select.h> |
03e39e59 AL |
23 | #include <sys/types.h> |
24 | #include <sys/wait.h> | |
25 | #include <signal.h> | |
26 | #include <errno.h> | |
db0c350f | 27 | #include <stdio.h> |
f7dec19f DB |
28 | #include <string.h> |
29 | #include <algorithm> | |
75ef8f14 MV |
30 | #include <sstream> |
31 | #include <map> | |
32 | ||
d8cb4aa4 MV |
33 | #include <termios.h> |
34 | #include <unistd.h> | |
35 | #include <sys/ioctl.h> | |
36 | #include <pty.h> | |
37 | ||
75ef8f14 MV |
38 | #include <config.h> |
39 | #include <apti18n.h> | |
b0ebdef5 | 40 | /*}}}*/ |
233b185f AL |
41 | |
42 | using namespace std; | |
03e39e59 | 43 | |
f7dec19f DB |
44 | namespace |
45 | { | |
46 | // Maps the dpkg "processing" info to human readable names. Entry 0 | |
47 | // of each array is the key, entry 1 is the value. | |
48 | const std::pair<const char *, const char *> PackageProcessingOps[] = { | |
49 | std::make_pair("install", N_("Installing %s")), | |
50 | std::make_pair("configure", N_("Configuring %s")), | |
51 | std::make_pair("remove", N_("Removing %s")), | |
52 | std::make_pair("trigproc", N_("Running post-installation trigger %s")) | |
53 | }; | |
54 | ||
55 | const std::pair<const char *, const char *> * const PackageProcessingOpsBegin = PackageProcessingOps; | |
56 | const std::pair<const char *, const char *> * const PackageProcessingOpsEnd = PackageProcessingOps + sizeof(PackageProcessingOps) / sizeof(PackageProcessingOps[0]); | |
57 | ||
58 | // Predicate to test whether an entry in the PackageProcessingOps | |
59 | // array matches a string. | |
60 | class MatchProcessingOp | |
61 | { | |
62 | const char *target; | |
63 | ||
64 | public: | |
65 | MatchProcessingOp(const char *the_target) | |
66 | : target(the_target) | |
67 | { | |
68 | } | |
69 | ||
70 | bool operator()(const std::pair<const char *, const char *> &pair) const | |
71 | { | |
72 | return strcmp(pair.first, target) == 0; | |
73 | } | |
74 | }; | |
75 | } | |
09fa2df2 | 76 | |
cebe0287 MV |
77 | /* helper function to ionice the given PID |
78 | ||
79 | there is no C header for ionice yet - just the syscall interface | |
80 | so we use the binary from util-linux | |
81 | */ | |
82 | static bool | |
83 | ionice(int PID) | |
84 | { | |
85 | if (!FileExists("/usr/bin/ionice")) | |
86 | return false; | |
87 | pid_t Process = ExecFork(); | |
88 | if (Process == 0) | |
89 | { | |
90 | char buf[32]; | |
91 | snprintf(buf, sizeof(buf), "-p%d", PID); | |
92 | const char *Args[4]; | |
93 | Args[0] = "/usr/bin/ionice"; | |
94 | Args[1] = "-c3"; | |
95 | Args[2] = buf; | |
96 | Args[3] = 0; | |
97 | execv(Args[0], (char **)Args); | |
98 | } | |
99 | return ExecWait(Process, "ionice"); | |
100 | } | |
101 | ||
03e39e59 AL |
102 | // DPkgPM::pkgDPkgPM - Constructor /*{{{*/ |
103 | // --------------------------------------------------------------------- | |
104 | /* */ | |
09fa2df2 | 105 | pkgDPkgPM::pkgDPkgPM(pkgDepCache *Cache) |
71afbdb5 OS |
106 | : pkgPackageManager(Cache), dpkgbuf_pos(0), |
107 | term_out(NULL), PackagesDone(0), PackagesTotal(0) | |
03e39e59 AL |
108 | { |
109 | } | |
110 | /*}}}*/ | |
111 | // DPkgPM::pkgDPkgPM - Destructor /*{{{*/ | |
112 | // --------------------------------------------------------------------- | |
113 | /* */ | |
114 | pkgDPkgPM::~pkgDPkgPM() | |
115 | { | |
116 | } | |
117 | /*}}}*/ | |
118 | // DPkgPM::Install - Install a package /*{{{*/ | |
119 | // --------------------------------------------------------------------- | |
120 | /* Add an install operation to the sequence list */ | |
121 | bool pkgDPkgPM::Install(PkgIterator Pkg,string File) | |
122 | { | |
123 | if (File.empty() == true || Pkg.end() == true) | |
124 | return _error->Error("Internal Error, No file name for %s",Pkg.Name()); | |
125 | ||
126 | List.push_back(Item(Item::Install,Pkg,File)); | |
127 | return true; | |
128 | } | |
129 | /*}}}*/ | |
130 | // DPkgPM::Configure - Configure a package /*{{{*/ | |
131 | // --------------------------------------------------------------------- | |
132 | /* Add a configure operation to the sequence list */ | |
133 | bool pkgDPkgPM::Configure(PkgIterator Pkg) | |
134 | { | |
135 | if (Pkg.end() == true) | |
136 | return false; | |
3e9c4f70 | 137 | |
5e312de7 DK |
138 | List.push_back(Item(Item::Configure, Pkg)); |
139 | ||
140 | // Use triggers for config calls if we configure "smart" | |
141 | // as otherwise Pre-Depends will not be satisfied, see #526774 | |
142 | if (_config->FindB("DPkg::TriggersPending", false) == true) | |
143 | List.push_back(Item(Item::TriggersPending, PkgIterator())); | |
3e9c4f70 | 144 | |
03e39e59 AL |
145 | return true; |
146 | } | |
147 | /*}}}*/ | |
148 | // DPkgPM::Remove - Remove a package /*{{{*/ | |
149 | // --------------------------------------------------------------------- | |
150 | /* Add a remove operation to the sequence list */ | |
fc4b5c9f | 151 | bool pkgDPkgPM::Remove(PkgIterator Pkg,bool Purge) |
03e39e59 AL |
152 | { |
153 | if (Pkg.end() == true) | |
154 | return false; | |
155 | ||
fc4b5c9f AL |
156 | if (Purge == true) |
157 | List.push_back(Item(Item::Purge,Pkg)); | |
158 | else | |
159 | List.push_back(Item(Item::Remove,Pkg)); | |
6dd55be7 AL |
160 | return true; |
161 | } | |
162 | /*}}}*/ | |
b2e465d6 AL |
163 | // DPkgPM::SendV2Pkgs - Send version 2 package info /*{{{*/ |
164 | // --------------------------------------------------------------------- | |
165 | /* This is part of the helper script communication interface, it sends | |
166 | very complete information down to the other end of the pipe.*/ | |
167 | bool pkgDPkgPM::SendV2Pkgs(FILE *F) | |
168 | { | |
169 | fprintf(F,"VERSION 2\n"); | |
170 | ||
171 | /* Write out all of the configuration directives by walking the | |
172 | configuration tree */ | |
173 | const Configuration::Item *Top = _config->Tree(0); | |
174 | for (; Top != 0;) | |
175 | { | |
176 | if (Top->Value.empty() == false) | |
177 | { | |
178 | fprintf(F,"%s=%s\n", | |
179 | QuoteString(Top->FullTag(),"=\"\n").c_str(), | |
180 | QuoteString(Top->Value,"\n").c_str()); | |
181 | } | |
182 | ||
183 | if (Top->Child != 0) | |
184 | { | |
185 | Top = Top->Child; | |
186 | continue; | |
187 | } | |
188 | ||
189 | while (Top != 0 && Top->Next == 0) | |
190 | Top = Top->Parent; | |
191 | if (Top != 0) | |
192 | Top = Top->Next; | |
193 | } | |
194 | fprintf(F,"\n"); | |
195 | ||
196 | // Write out the package actions in order. | |
197 | for (vector<Item>::iterator I = List.begin(); I != List.end(); I++) | |
198 | { | |
3e9c4f70 DK |
199 | if(I->Pkg.end() == true) |
200 | continue; | |
201 | ||
b2e465d6 AL |
202 | pkgDepCache::StateCache &S = Cache[I->Pkg]; |
203 | ||
204 | fprintf(F,"%s ",I->Pkg.Name()); | |
205 | // Current version | |
206 | if (I->Pkg->CurrentVer == 0) | |
207 | fprintf(F,"- "); | |
208 | else | |
209 | fprintf(F,"%s ",I->Pkg.CurrentVer().VerStr()); | |
210 | ||
211 | // Show the compare operator | |
212 | // Target version | |
213 | if (S.InstallVer != 0) | |
214 | { | |
215 | int Comp = 2; | |
216 | if (I->Pkg->CurrentVer != 0) | |
217 | Comp = S.InstVerIter(Cache).CompareVer(I->Pkg.CurrentVer()); | |
218 | if (Comp < 0) | |
219 | fprintf(F,"> "); | |
220 | if (Comp == 0) | |
221 | fprintf(F,"= "); | |
222 | if (Comp > 0) | |
223 | fprintf(F,"< "); | |
224 | fprintf(F,"%s ",S.InstVerIter(Cache).VerStr()); | |
225 | } | |
226 | else | |
227 | fprintf(F,"> - "); | |
228 | ||
229 | // Show the filename/operation | |
230 | if (I->Op == Item::Install) | |
231 | { | |
232 | // No errors here.. | |
233 | if (I->File[0] != '/') | |
234 | fprintf(F,"**ERROR**\n"); | |
235 | else | |
236 | fprintf(F,"%s\n",I->File.c_str()); | |
237 | } | |
238 | if (I->Op == Item::Configure) | |
239 | fprintf(F,"**CONFIGURE**\n"); | |
240 | if (I->Op == Item::Remove || | |
241 | I->Op == Item::Purge) | |
242 | fprintf(F,"**REMOVE**\n"); | |
243 | ||
244 | if (ferror(F) != 0) | |
245 | return false; | |
246 | } | |
247 | return true; | |
248 | } | |
249 | /*}}}*/ | |
db0c350f AL |
250 | // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/ |
251 | // --------------------------------------------------------------------- | |
252 | /* This looks for a list of scripts to run from the configuration file | |
253 | each one is run and is fed on standard input a list of all .deb files | |
254 | that are due to be installed. */ | |
255 | bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf) | |
256 | { | |
257 | Configuration::Item const *Opts = _config->Tree(Cnf); | |
258 | if (Opts == 0 || Opts->Child == 0) | |
259 | return true; | |
260 | Opts = Opts->Child; | |
261 | ||
262 | unsigned int Count = 1; | |
263 | for (; Opts != 0; Opts = Opts->Next, Count++) | |
264 | { | |
265 | if (Opts->Value.empty() == true) | |
266 | continue; | |
b2e465d6 AL |
267 | |
268 | // Determine the protocol version | |
269 | string OptSec = Opts->Value; | |
270 | string::size_type Pos; | |
271 | if ((Pos = OptSec.find(' ')) == string::npos || Pos == 0) | |
272 | Pos = OptSec.length(); | |
b2e465d6 AL |
273 | OptSec = "DPkg::Tools::Options::" + string(Opts->Value.c_str(),Pos); |
274 | ||
275 | unsigned int Version = _config->FindI(OptSec+"::Version",1); | |
276 | ||
db0c350f AL |
277 | // Create the pipes |
278 | int Pipes[2]; | |
279 | if (pipe(Pipes) != 0) | |
280 | return _error->Errno("pipe","Failed to create IPC pipe to subprocess"); | |
281 | SetCloseExec(Pipes[0],true); | |
282 | SetCloseExec(Pipes[1],true); | |
283 | ||
284 | // Purified Fork for running the script | |
285 | pid_t Process = ExecFork(); | |
286 | if (Process == 0) | |
287 | { | |
288 | // Setup the FDs | |
289 | dup2(Pipes[0],STDIN_FILENO); | |
290 | SetCloseExec(STDOUT_FILENO,false); | |
291 | SetCloseExec(STDIN_FILENO,false); | |
292 | SetCloseExec(STDERR_FILENO,false); | |
90ecbd7d AL |
293 | |
294 | const char *Args[4]; | |
db0c350f | 295 | Args[0] = "/bin/sh"; |
90ecbd7d AL |
296 | Args[1] = "-c"; |
297 | Args[2] = Opts->Value.c_str(); | |
298 | Args[3] = 0; | |
db0c350f AL |
299 | execv(Args[0],(char **)Args); |
300 | _exit(100); | |
301 | } | |
302 | close(Pipes[0]); | |
b2e465d6 AL |
303 | FILE *F = fdopen(Pipes[1],"w"); |
304 | if (F == 0) | |
305 | return _error->Errno("fdopen","Faild to open new FD"); | |
306 | ||
db0c350f | 307 | // Feed it the filenames. |
b2e465d6 AL |
308 | bool Die = false; |
309 | if (Version <= 1) | |
db0c350f | 310 | { |
b2e465d6 | 311 | for (vector<Item>::iterator I = List.begin(); I != List.end(); I++) |
db0c350f | 312 | { |
b2e465d6 AL |
313 | // Only deal with packages to be installed from .deb |
314 | if (I->Op != Item::Install) | |
315 | continue; | |
316 | ||
317 | // No errors here.. | |
318 | if (I->File[0] != '/') | |
319 | continue; | |
320 | ||
321 | /* Feed the filename of each package that is pending install | |
322 | into the pipe. */ | |
323 | fprintf(F,"%s\n",I->File.c_str()); | |
324 | if (ferror(F) != 0) | |
325 | { | |
326 | Die = true; | |
327 | break; | |
328 | } | |
90ecbd7d | 329 | } |
db0c350f | 330 | } |
b2e465d6 AL |
331 | else |
332 | Die = !SendV2Pkgs(F); | |
333 | ||
334 | fclose(F); | |
db0c350f AL |
335 | |
336 | // Clean up the sub process | |
337 | if (ExecWait(Process,Opts->Value.c_str()) == false) | |
90ecbd7d | 338 | return _error->Error("Failure running script %s",Opts->Value.c_str()); |
db0c350f AL |
339 | } |
340 | ||
341 | return true; | |
342 | } | |
ceabc520 MV |
343 | |
344 | /*}}}*/ | |
345 | // DPkgPM::DoStdin - Read stdin and pass to slave pty /*{{{*/ | |
346 | // --------------------------------------------------------------------- | |
347 | /* | |
348 | */ | |
349 | void pkgDPkgPM::DoStdin(int master) | |
350 | { | |
aff87a76 MV |
351 | unsigned char input_buf[256] = {0,}; |
352 | ssize_t len = read(0, input_buf, sizeof(input_buf)); | |
9983591d OS |
353 | if (len) |
354 | write(master, input_buf, len); | |
355 | else | |
356 | stdin_is_dev_null = true; | |
ceabc520 | 357 | } |
03e39e59 | 358 | /*}}}*/ |
ceabc520 MV |
359 | // DPkgPM::DoTerminalPty - Read the terminal pty and write log /*{{{*/ |
360 | // --------------------------------------------------------------------- | |
361 | /* | |
362 | * read the terminal pty and write log | |
363 | */ | |
1ba38171 | 364 | void pkgDPkgPM::DoTerminalPty(int master) |
ceabc520 | 365 | { |
aff87a76 | 366 | unsigned char term_buf[1024] = {0,0, }; |
ceabc520 | 367 | |
aff87a76 | 368 | ssize_t len=read(master, term_buf, sizeof(term_buf)); |
7052511e MV |
369 | if(len == -1 && errno == EIO) |
370 | { | |
371 | // this happens when the child is about to exit, we | |
372 | // give it time to actually exit, otherwise we run | |
373 | // into a race | |
374 | usleep(500000); | |
375 | return; | |
376 | } | |
377 | if(len <= 0) | |
955a6ddb | 378 | return; |
955a6ddb | 379 | write(1, term_buf, len); |
8da1f029 MV |
380 | if(term_out) |
381 | fwrite(term_buf, len, sizeof(char), term_out); | |
ceabc520 | 382 | } |
03e39e59 | 383 | /*}}}*/ |
6191b008 MV |
384 | // DPkgPM::ProcessDpkgStatusBuf /*{{{*/ |
385 | // --------------------------------------------------------------------- | |
386 | /* | |
387 | */ | |
09fa2df2 | 388 | void pkgDPkgPM::ProcessDpkgStatusLine(int OutStatusFd, char *line) |
6191b008 | 389 | { |
887f5036 | 390 | bool const Debug = _config->FindB("Debug::pkgDPkgProgressReporting",false); |
09fa2df2 MV |
391 | // the status we output |
392 | ostringstream status; | |
393 | ||
887f5036 | 394 | if (Debug == true) |
09fa2df2 MV |
395 | std::clog << "got from dpkg '" << line << "'" << std::endl; |
396 | ||
397 | ||
398 | /* dpkg sends strings like this: | |
399 | 'status: <pkg>: <pkg qstate>' | |
400 | errors look like this: | |
401 | '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 | |
402 | and conffile-prompt like this | |
403 | 'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited | |
fc2d32c0 MV |
404 | |
405 | Newer versions of dpkg sent also: | |
406 | 'processing: install: pkg' | |
407 | 'processing: configure: pkg' | |
408 | 'processing: remove: pkg' | |
887f5036 | 409 | 'processing: purge: pkg' - but for apt is it a ignored "unknown" action |
fc2d32c0 | 410 | 'processing: trigproc: trigger' |
09fa2df2 MV |
411 | |
412 | */ | |
413 | char* list[5]; | |
414 | // dpkg sends multiline error messages sometimes (see | |
415 | // #374195 for a example. we should support this by | |
416 | // either patching dpkg to not send multiline over the | |
417 | // statusfd or by rewriting the code here to deal with | |
418 | // it. for now we just ignore it and not crash | |
419 | TokSplitString(':', line, list, sizeof(list)/sizeof(list[0])); | |
f26fcbc7 | 420 | if( list[0] == NULL || list[1] == NULL || list[2] == NULL) |
09fa2df2 | 421 | { |
887f5036 | 422 | if (Debug == true) |
09fa2df2 MV |
423 | std::clog << "ignoring line: not enough ':'" << std::endl; |
424 | return; | |
425 | } | |
887f5036 DK |
426 | const char* const pkg = list[1]; |
427 | const char* action = _strstrip(list[2]); | |
09fa2df2 | 428 | |
fc2d32c0 MV |
429 | // 'processing' from dpkg looks like |
430 | // 'processing: action: pkg' | |
431 | if(strncmp(list[0], "processing", strlen("processing")) == 0) | |
432 | { | |
433 | char s[200]; | |
887f5036 DK |
434 | const char* const pkg_or_trigger = _strstrip(list[2]); |
435 | action = _strstrip( list[1]); | |
f7dec19f DB |
436 | const std::pair<const char *, const char *> * const iter = |
437 | std::find_if(PackageProcessingOpsBegin, | |
438 | PackageProcessingOpsEnd, | |
439 | MatchProcessingOp(action)); | |
440 | if(iter == PackageProcessingOpsEnd) | |
fc2d32c0 | 441 | { |
887f5036 DK |
442 | if (Debug == true) |
443 | std::clog << "ignoring unknown action: " << action << std::endl; | |
fc2d32c0 MV |
444 | return; |
445 | } | |
f7dec19f | 446 | snprintf(s, sizeof(s), _(iter->second), pkg_or_trigger); |
fc2d32c0 MV |
447 | |
448 | status << "pmstatus:" << pkg_or_trigger | |
449 | << ":" << (PackagesDone/float(PackagesTotal)*100.0) | |
450 | << ":" << s | |
451 | << endl; | |
452 | if(OutStatusFd > 0) | |
453 | write(OutStatusFd, status.str().c_str(), status.str().size()); | |
887f5036 | 454 | if (Debug == true) |
fc2d32c0 MV |
455 | std::clog << "send: '" << status.str() << "'" << endl; |
456 | return; | |
457 | } | |
458 | ||
09fa2df2 MV |
459 | if(strncmp(action,"error",strlen("error")) == 0) |
460 | { | |
461 | status << "pmerror:" << list[1] | |
ff56e980 | 462 | << ":" << (PackagesDone/float(PackagesTotal)*100.0) |
09fa2df2 MV |
463 | << ":" << list[3] |
464 | << endl; | |
465 | if(OutStatusFd > 0) | |
466 | write(OutStatusFd, status.str().c_str(), status.str().size()); | |
887f5036 | 467 | if (Debug == true) |
09fa2df2 MV |
468 | std::clog << "send: '" << status.str() << "'" << endl; |
469 | return; | |
470 | } | |
887f5036 | 471 | else if(strncmp(action,"conffile",strlen("conffile")) == 0) |
09fa2df2 MV |
472 | { |
473 | status << "pmconffile:" << list[1] | |
ff56e980 | 474 | << ":" << (PackagesDone/float(PackagesTotal)*100.0) |
09fa2df2 MV |
475 | << ":" << list[3] |
476 | << endl; | |
477 | if(OutStatusFd > 0) | |
478 | write(OutStatusFd, status.str().c_str(), status.str().size()); | |
887f5036 | 479 | if (Debug == true) |
09fa2df2 MV |
480 | std::clog << "send: '" << status.str() << "'" << endl; |
481 | return; | |
482 | } | |
483 | ||
887f5036 | 484 | vector<struct DpkgState> const &states = PackageOps[pkg]; |
09fa2df2 MV |
485 | const char *next_action = NULL; |
486 | if(PackageOpsDone[pkg] < states.size()) | |
487 | next_action = states[PackageOpsDone[pkg]].state; | |
488 | // check if the package moved to the next dpkg state | |
489 | if(next_action && (strcmp(action, next_action) == 0)) | |
490 | { | |
491 | // only read the translation if there is actually a next | |
492 | // action | |
493 | const char *translation = _(states[PackageOpsDone[pkg]].str); | |
494 | char s[200]; | |
495 | snprintf(s, sizeof(s), translation, pkg); | |
496 | ||
497 | // we moved from one dpkg state to a new one, report that | |
498 | PackageOpsDone[pkg]++; | |
ff56e980 | 499 | PackagesDone++; |
09fa2df2 MV |
500 | // build the status str |
501 | status << "pmstatus:" << pkg | |
ff56e980 | 502 | << ":" << (PackagesDone/float(PackagesTotal)*100.0) |
09fa2df2 MV |
503 | << ":" << s |
504 | << endl; | |
505 | if(OutStatusFd > 0) | |
506 | write(OutStatusFd, status.str().c_str(), status.str().size()); | |
887f5036 | 507 | if (Debug == true) |
09fa2df2 MV |
508 | std::clog << "send: '" << status.str() << "'" << endl; |
509 | } | |
887f5036 | 510 | if (Debug == true) |
09fa2df2 MV |
511 | std::clog << "(parsed from dpkg) pkg: " << pkg |
512 | << " action: " << action << endl; | |
6191b008 | 513 | } |
887f5036 DK |
514 | /*}}}*/ |
515 | // DPkgPM::DoDpkgStatusFd /*{{{*/ | |
6191b008 MV |
516 | // --------------------------------------------------------------------- |
517 | /* | |
518 | */ | |
09fa2df2 | 519 | void pkgDPkgPM::DoDpkgStatusFd(int statusfd, int OutStatusFd) |
6191b008 MV |
520 | { |
521 | char *p, *q; | |
522 | int len; | |
523 | ||
524 | len=read(statusfd, &dpkgbuf[dpkgbuf_pos], sizeof(dpkgbuf)-dpkgbuf_pos); | |
525 | dpkgbuf_pos += len; | |
526 | if(len <= 0) | |
527 | return; | |
ceabc520 | 528 | |
6191b008 MV |
529 | // process line by line if we have a buffer |
530 | p = q = dpkgbuf; | |
531 | while((q=(char*)memchr(p, '\n', dpkgbuf+dpkgbuf_pos-p)) != NULL) | |
532 | { | |
533 | *q = 0; | |
09fa2df2 | 534 | ProcessDpkgStatusLine(OutStatusFd, p); |
6191b008 MV |
535 | p=q+1; // continue with next line |
536 | } | |
537 | ||
538 | // now move the unprocessed bits (after the final \n that is now a 0x0) | |
539 | // to the start and update dpkgbuf_pos | |
540 | p = (char*)memrchr(dpkgbuf, 0, dpkgbuf_pos); | |
541 | if(p == NULL) | |
542 | return; | |
543 | ||
544 | // we are interessted in the first char *after* 0x0 | |
545 | p++; | |
546 | ||
547 | // move the unprocessed tail to the start and update pos | |
548 | memmove(dpkgbuf, p, p-dpkgbuf); | |
549 | dpkgbuf_pos = dpkgbuf+dpkgbuf_pos-p; | |
550 | } | |
551 | /*}}}*/ | |
887f5036 | 552 | // DPkgPM::OpenLog /*{{{*/ |
2e1715ea MV |
553 | bool pkgDPkgPM::OpenLog() |
554 | { | |
555 | string logdir = _config->FindDir("Dir::Log"); | |
556 | if(not FileExists(logdir)) | |
557 | return _error->Error(_("Directory '%s' missing"), logdir.c_str()); | |
558 | string logfile_name = flCombine(logdir, | |
559 | _config->Find("Dir::Log::Terminal")); | |
560 | if (!logfile_name.empty()) | |
561 | { | |
562 | term_out = fopen(logfile_name.c_str(),"a"); | |
563 | chmod(logfile_name.c_str(), 0600); | |
564 | // output current time | |
565 | char outstr[200]; | |
566 | time_t t = time(NULL); | |
567 | struct tm *tmp = localtime(&t); | |
568 | strftime(outstr, sizeof(outstr), "%F %T", tmp); | |
569 | fprintf(term_out, "\nLog started: "); | |
9b5d79ec | 570 | fprintf(term_out, "%s", outstr); |
2e1715ea MV |
571 | fprintf(term_out, "\n"); |
572 | } | |
573 | return true; | |
574 | } | |
887f5036 DK |
575 | /*}}}*/ |
576 | // DPkg::CloseLog /*{{{*/ | |
2e1715ea MV |
577 | bool pkgDPkgPM::CloseLog() |
578 | { | |
579 | if(term_out) | |
580 | { | |
581 | char outstr[200]; | |
582 | time_t t = time(NULL); | |
583 | struct tm *tmp = localtime(&t); | |
584 | strftime(outstr, sizeof(outstr), "%F %T", tmp); | |
8398ac36 | 585 | fprintf(term_out, "Log ended: "); |
9b5d79ec | 586 | fprintf(term_out, "%s", outstr); |
2e1715ea MV |
587 | fprintf(term_out, "\n"); |
588 | fclose(term_out); | |
589 | } | |
590 | term_out = NULL; | |
591 | return true; | |
592 | } | |
887f5036 | 593 | /*}}}*/ |
919e5852 OS |
594 | /*{{{*/ |
595 | // This implements a racy version of pselect for those architectures | |
596 | // that don't have a working implementation. | |
597 | // FIXME: Probably can be removed on Lenny+1 | |
598 | static int racy_pselect(int nfds, fd_set *readfds, fd_set *writefds, | |
599 | fd_set *exceptfds, const struct timespec *timeout, | |
600 | const sigset_t *sigmask) | |
601 | { | |
602 | sigset_t origmask; | |
603 | struct timeval tv; | |
604 | int retval; | |
605 | ||
f6b37f38 OS |
606 | tv.tv_sec = timeout->tv_sec; |
607 | tv.tv_usec = timeout->tv_nsec/1000; | |
919e5852 | 608 | |
f6b37f38 | 609 | sigprocmask(SIG_SETMASK, sigmask, &origmask); |
919e5852 OS |
610 | retval = select(nfds, readfds, writefds, exceptfds, &tv); |
611 | sigprocmask(SIG_SETMASK, &origmask, 0); | |
612 | return retval; | |
613 | } | |
614 | /*}}}*/ | |
03e39e59 AL |
615 | // DPkgPM::Go - Run the sequence /*{{{*/ |
616 | // --------------------------------------------------------------------- | |
75ef8f14 MV |
617 | /* This globs the operations and calls dpkg |
618 | * | |
619 | * If it is called with "OutStatusFd" set to a valid file descriptor | |
620 | * apt will report the install progress over this fd. It maps the | |
621 | * dpkg states a package goes through to human readable (and i10n-able) | |
622 | * names and calculates a percentage for each step. | |
623 | */ | |
624 | bool pkgDPkgPM::Go(int OutStatusFd) | |
03e39e59 | 625 | { |
17745b02 MV |
626 | fd_set rfds; |
627 | struct timespec tv; | |
628 | sigset_t sigmask; | |
629 | sigset_t original_sigmask; | |
630 | ||
887f5036 DK |
631 | unsigned int const MaxArgs = _config->FindI("Dpkg::MaxArgs",8*1024); |
632 | unsigned int const MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",32*1024); | |
5e312de7 DK |
633 | bool const NoTriggers = _config->FindB("DPkg::NoTriggers", false); |
634 | bool const NoConfTriggers = _config->FindB("DPkg::NoConfTriggers", NoTriggers); | |
aff4e2f1 | 635 | |
6dd55be7 AL |
636 | if (RunScripts("DPkg::Pre-Invoke") == false) |
637 | return false; | |
db0c350f AL |
638 | |
639 | if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false) | |
640 | return false; | |
fc2d32c0 | 641 | |
3e9c4f70 DK |
642 | // support subpressing of triggers processing for special |
643 | // cases like d-i that runs the triggers handling manually | |
5e312de7 DK |
644 | bool const SmartConf = (_config->Find("PackageManager::Configure", "all") != "all"); |
645 | if (_config->FindB("DPkg::ConfigurePending", SmartConf) == true) | |
646 | List.push_back(Item(Item::ConfigurePending, PkgIterator())); | |
3e9c4f70 | 647 | |
75ef8f14 MV |
648 | // map the dpkg states to the operations that are performed |
649 | // (this is sorted in the same way as Item::Ops) | |
9d06bc80 | 650 | static const struct DpkgState DpkgStatesOpMap[][7] = { |
75ef8f14 MV |
651 | // Install operation |
652 | { | |
21e1008e MV |
653 | {"half-installed", N_("Preparing %s")}, |
654 | {"unpacked", N_("Unpacking %s") }, | |
75ef8f14 MV |
655 | {NULL, NULL} |
656 | }, | |
657 | // Configure operation | |
658 | { | |
21e1008e MV |
659 | {"unpacked",N_("Preparing to configure %s") }, |
660 | {"half-configured", N_("Configuring %s") }, | |
661 | { "installed", N_("Installed %s")}, | |
75ef8f14 MV |
662 | {NULL, NULL} |
663 | }, | |
664 | // Remove operation | |
665 | { | |
21e1008e MV |
666 | {"half-configured", N_("Preparing for removal of %s")}, |
667 | {"half-installed", N_("Removing %s")}, | |
668 | {"config-files", N_("Removed %s")}, | |
75ef8f14 MV |
669 | {NULL, NULL} |
670 | }, | |
671 | // Purge operation | |
672 | { | |
21e1008e MV |
673 | {"config-files", N_("Preparing to completely remove %s")}, |
674 | {"not-installed", N_("Completely removed %s")}, | |
75ef8f14 MV |
675 | {NULL, NULL} |
676 | }, | |
677 | }; | |
db0c350f | 678 | |
75ef8f14 MV |
679 | // init the PackageOps map, go over the list of packages that |
680 | // that will be [installed|configured|removed|purged] and add | |
681 | // them to the PackageOps map (the dpkg states it goes through) | |
682 | // and the PackageOpsTranslations (human readable strings) | |
887f5036 | 683 | for (vector<Item>::const_iterator I = List.begin(); I != List.end();I++) |
75ef8f14 | 684 | { |
3e9c4f70 DK |
685 | if((*I).Pkg.end() == true) |
686 | continue; | |
687 | ||
887f5036 | 688 | string const name = (*I).Pkg.Name(); |
75ef8f14 MV |
689 | PackageOpsDone[name] = 0; |
690 | for(int i=0; (DpkgStatesOpMap[(*I).Op][i]).state != NULL; i++) | |
691 | { | |
692 | PackageOps[name].push_back(DpkgStatesOpMap[(*I).Op][i]); | |
ff56e980 | 693 | PackagesTotal++; |
75ef8f14 | 694 | } |
887f5036 | 695 | } |
75ef8f14 | 696 | |
9983591d OS |
697 | stdin_is_dev_null = false; |
698 | ||
ff56e980 | 699 | // create log |
2e1715ea | 700 | OpenLog(); |
ff56e980 | 701 | |
75ef8f14 | 702 | // this loop is runs once per operation |
887f5036 | 703 | for (vector<Item>::const_iterator I = List.begin(); I != List.end();) |
03e39e59 | 704 | { |
887f5036 | 705 | vector<Item>::const_iterator J = I; |
599d6ad5 MV |
706 | for (; J != List.end() && J->Op == I->Op; J++) |
707 | /* nothing */; | |
30e1eab5 | 708 | |
03e39e59 | 709 | // Generate the argument list |
aff4e2f1 | 710 | const char *Args[MaxArgs + 50]; |
599d6ad5 MV |
711 | |
712 | // Now check if we are within the MaxArgs limit | |
713 | // | |
714 | // this code below is problematic, because it may happen that | |
715 | // the argument list is split in a way that A depends on B | |
716 | // and they are in the same "--configure A B" run | |
717 | // - with the split they may now be configured in different | |
718 | // runs | |
aff4e2f1 AL |
719 | if (J - I > (signed)MaxArgs) |
720 | J = I + MaxArgs; | |
03e39e59 | 721 | |
30e1eab5 AL |
722 | unsigned int n = 0; |
723 | unsigned long Size = 0; | |
887f5036 | 724 | string const Tmp = _config->Find("Dir::Bin::dpkg","dpkg"); |
50914ffa | 725 | Args[n++] = Tmp.c_str(); |
30e1eab5 | 726 | Size += strlen(Args[n-1]); |
03e39e59 | 727 | |
6dd55be7 AL |
728 | // Stick in any custom dpkg options |
729 | Configuration::Item const *Opts = _config->Tree("DPkg::Options"); | |
730 | if (Opts != 0) | |
731 | { | |
732 | Opts = Opts->Child; | |
733 | for (; Opts != 0; Opts = Opts->Next) | |
734 | { | |
735 | if (Opts->Value.empty() == true) | |
736 | continue; | |
737 | Args[n++] = Opts->Value.c_str(); | |
738 | Size += Opts->Value.length(); | |
739 | } | |
740 | } | |
741 | ||
007dc9e0 | 742 | char status_fd_buf[20]; |
75ef8f14 MV |
743 | int fd[2]; |
744 | pipe(fd); | |
745 | ||
746 | Args[n++] = "--status-fd"; | |
747 | Size += strlen(Args[n-1]); | |
748 | snprintf(status_fd_buf,sizeof(status_fd_buf),"%i", fd[1]); | |
749 | Args[n++] = status_fd_buf; | |
750 | Size += strlen(Args[n-1]); | |
007dc9e0 | 751 | |
03e39e59 AL |
752 | switch (I->Op) |
753 | { | |
754 | case Item::Remove: | |
755 | Args[n++] = "--force-depends"; | |
30e1eab5 | 756 | Size += strlen(Args[n-1]); |
03e39e59 | 757 | Args[n++] = "--force-remove-essential"; |
30e1eab5 | 758 | Size += strlen(Args[n-1]); |
03e39e59 | 759 | Args[n++] = "--remove"; |
30e1eab5 | 760 | Size += strlen(Args[n-1]); |
03e39e59 AL |
761 | break; |
762 | ||
fc4b5c9f AL |
763 | case Item::Purge: |
764 | Args[n++] = "--force-depends"; | |
765 | Size += strlen(Args[n-1]); | |
766 | Args[n++] = "--force-remove-essential"; | |
767 | Size += strlen(Args[n-1]); | |
768 | Args[n++] = "--purge"; | |
769 | Size += strlen(Args[n-1]); | |
770 | break; | |
771 | ||
03e39e59 AL |
772 | case Item::Configure: |
773 | Args[n++] = "--configure"; | |
30e1eab5 | 774 | Size += strlen(Args[n-1]); |
03e39e59 | 775 | break; |
3e9c4f70 DK |
776 | |
777 | case Item::ConfigurePending: | |
778 | Args[n++] = "--configure"; | |
779 | Size += strlen(Args[n-1]); | |
780 | Args[n++] = "--pending"; | |
781 | Size += strlen(Args[n-1]); | |
782 | break; | |
783 | ||
5e312de7 DK |
784 | case Item::TriggersPending: |
785 | Args[n++] = "--triggers-only"; | |
786 | Size += strlen(Args[n-1]); | |
787 | Args[n++] = "--pending"; | |
788 | Size += strlen(Args[n-1]); | |
789 | break; | |
790 | ||
03e39e59 AL |
791 | case Item::Install: |
792 | Args[n++] = "--unpack"; | |
30e1eab5 | 793 | Size += strlen(Args[n-1]); |
857a1d4a MV |
794 | Args[n++] = "--auto-deconfigure"; |
795 | Size += strlen(Args[n-1]); | |
03e39e59 AL |
796 | break; |
797 | } | |
3e9c4f70 | 798 | |
5e312de7 DK |
799 | if (NoTriggers == true && I->Op != Item::TriggersPending && |
800 | I->Op != Item::ConfigurePending && | |
801 | (I->Op != Item::Configure || NoConfTriggers == true)) | |
3e9c4f70 DK |
802 | { |
803 | Args[n++] = "--no-triggers"; | |
804 | Size += strlen(Args[n-1]); | |
805 | } | |
806 | ||
03e39e59 AL |
807 | // Write in the file or package names |
808 | if (I->Op == Item::Install) | |
30e1eab5 | 809 | { |
aff4e2f1 | 810 | for (;I != J && Size < MaxArgBytes; I++) |
30e1eab5 | 811 | { |
cf544e14 AL |
812 | if (I->File[0] != '/') |
813 | return _error->Error("Internal Error, Pathname to install is not absolute '%s'",I->File.c_str()); | |
03e39e59 | 814 | Args[n++] = I->File.c_str(); |
30e1eab5 AL |
815 | Size += strlen(Args[n-1]); |
816 | } | |
817 | } | |
03e39e59 | 818 | else |
30e1eab5 | 819 | { |
aff4e2f1 | 820 | for (;I != J && Size < MaxArgBytes; I++) |
30e1eab5 | 821 | { |
3e9c4f70 DK |
822 | if((*I).Pkg.end() == true) |
823 | continue; | |
03e39e59 | 824 | Args[n++] = I->Pkg.Name(); |
30e1eab5 AL |
825 | Size += strlen(Args[n-1]); |
826 | } | |
827 | } | |
03e39e59 | 828 | Args[n] = 0; |
30e1eab5 AL |
829 | J = I; |
830 | ||
831 | if (_config->FindB("Debug::pkgDPkgPM",false) == true) | |
832 | { | |
833 | for (unsigned int k = 0; k != n; k++) | |
834 | clog << Args[k] << ' '; | |
835 | clog << endl; | |
836 | continue; | |
837 | } | |
03e39e59 | 838 | |
03e39e59 AL |
839 | cout << flush; |
840 | clog << flush; | |
841 | cerr << flush; | |
842 | ||
843 | /* Mask off sig int/quit. We do this because dpkg also does when | |
844 | it forks scripts. What happens is that when you hit ctrl-c it sends | |
845 | it to all processes in the group. Since dpkg ignores the signal | |
846 | it doesn't die but we do! So we must also ignore it */ | |
7f9a6360 AL |
847 | sighandler_t old_SIGQUIT = signal(SIGQUIT,SIG_IGN); |
848 | sighandler_t old_SIGINT = signal(SIGINT,SIG_IGN); | |
d8cb4aa4 | 849 | |
73e598c3 MV |
850 | // ignore SIGHUP as well (debian #463030) |
851 | sighandler_t old_SIGHUP = signal(SIGHUP,SIG_IGN); | |
852 | ||
d8cb4aa4 MV |
853 | struct termios tt; |
854 | struct winsize win; | |
855 | int master; | |
856 | int slave; | |
857 | ||
ceabc520 | 858 | // FIXME: setup sensible signal handling (*ick*) |
d8cb4aa4 MV |
859 | tcgetattr(0, &tt); |
860 | ioctl(0, TIOCGWINSZ, (char *)&win); | |
51f07d32 | 861 | if (openpty(&master, &slave, NULL, &tt, &win) < 0) |
090c6566 | 862 | { |
a4cf3665 MV |
863 | const char *s = _("Can not write log, openpty() " |
864 | "failed (/dev/pts not mounted?)\n"); | |
865 | fprintf(stderr, "%s",s); | |
866 | fprintf(term_out, "%s",s); | |
867 | master = slave = -1; | |
868 | } else { | |
869 | struct termios rtt; | |
870 | rtt = tt; | |
871 | cfmakeraw(&rtt); | |
872 | rtt.c_lflag &= ~ECHO; | |
17745b02 MV |
873 | // block SIGTTOU during tcsetattr to prevent a hang if |
874 | // the process is a member of the background process group | |
875 | // http://www.opengroup.org/onlinepubs/000095399/functions/tcsetattr.html | |
876 | sigemptyset(&sigmask); | |
877 | sigaddset(&sigmask, SIGTTOU); | |
878 | sigprocmask(SIG_BLOCK,&sigmask, &original_sigmask); | |
a4cf3665 | 879 | tcsetattr(0, TCSAFLUSH, &rtt); |
17745b02 | 880 | sigprocmask(SIG_SETMASK, &original_sigmask, 0); |
d8cb4aa4 MV |
881 | } |
882 | ||
75ef8f14 | 883 | // Fork dpkg |
007dc9e0 | 884 | pid_t Child; |
75ef8f14 | 885 | _config->Set("APT::Keep-Fds::",fd[1]); |
ccd8e28f MV |
886 | // send status information that we are about to fork dpkg |
887 | if(OutStatusFd > 0) { | |
888 | ostringstream status; | |
889 | status << "pmstatus:dpkg-exec:" | |
890 | << (PackagesDone/float(PackagesTotal)*100.0) | |
891 | << ":" << _("Running dpkg") | |
892 | << endl; | |
893 | write(OutStatusFd, status.str().c_str(), status.str().size()); | |
894 | } | |
75ef8f14 | 895 | Child = ExecFork(); |
6dd55be7 | 896 | |
03e39e59 AL |
897 | // This is the child |
898 | if (Child == 0) | |
899 | { | |
a4cf3665 MV |
900 | if(slave >= 0 && master >= 0) |
901 | { | |
902 | setsid(); | |
903 | ioctl(slave, TIOCSCTTY, 0); | |
904 | close(master); | |
905 | dup2(slave, 0); | |
906 | dup2(slave, 1); | |
907 | dup2(slave, 2); | |
908 | close(slave); | |
909 | } | |
75ef8f14 | 910 | close(fd[0]); // close the read end of the pipe |
d8cb4aa4 | 911 | |
4b7cfe96 MV |
912 | if (_config->FindDir("DPkg::Chroot-Directory","/") != "/") |
913 | { | |
914 | std::cerr << "Chrooting into " | |
915 | << _config->FindDir("DPkg::Chroot-Directory") | |
916 | << std::endl; | |
917 | if (chroot(_config->FindDir("DPkg::Chroot-Directory","/").c_str()) != 0) | |
918 | _exit(100); | |
919 | } | |
920 | ||
cf544e14 | 921 | if (chdir(_config->FindDir("DPkg::Run-Directory","/").c_str()) != 0) |
0dbb95d8 | 922 | _exit(100); |
03e39e59 | 923 | |
421ff807 | 924 | if (_config->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO)) |
8b5fe26c AL |
925 | { |
926 | int Flags,dummy; | |
927 | if ((Flags = fcntl(STDIN_FILENO,F_GETFL,dummy)) < 0) | |
928 | _exit(100); | |
929 | ||
930 | // Discard everything in stdin before forking dpkg | |
931 | if (fcntl(STDIN_FILENO,F_SETFL,Flags | O_NONBLOCK) < 0) | |
932 | _exit(100); | |
933 | ||
934 | while (read(STDIN_FILENO,&dummy,1) == 1); | |
935 | ||
936 | if (fcntl(STDIN_FILENO,F_SETFL,Flags & (~(long)O_NONBLOCK)) < 0) | |
937 | _exit(100); | |
938 | } | |
d8cb4aa4 | 939 | |
03e39e59 AL |
940 | /* No Job Control Stop Env is a magic dpkg var that prevents it |
941 | from using sigstop */ | |
71afbdb5 | 942 | putenv((char *)"DPKG_NO_TSTP=yes"); |
d568ed2d | 943 | execvp(Args[0],(char **)Args); |
03e39e59 | 944 | cerr << "Could not exec dpkg!" << endl; |
0dbb95d8 | 945 | _exit(100); |
03e39e59 AL |
946 | } |
947 | ||
cebe0287 MV |
948 | // apply ionice |
949 | if (_config->FindB("DPkg::UseIoNice", false) == true) | |
950 | ionice(Child); | |
951 | ||
75ef8f14 MV |
952 | // clear the Keep-Fd again |
953 | _config->Clear("APT::Keep-Fds",fd[1]); | |
954 | ||
03e39e59 AL |
955 | // Wait for dpkg |
956 | int Status = 0; | |
75ef8f14 MV |
957 | |
958 | // we read from dpkg here | |
887f5036 | 959 | int const _dpkgin = fd[0]; |
75ef8f14 MV |
960 | close(fd[1]); // close the write end of the pipe |
961 | ||
a4cf3665 MV |
962 | if(slave > 0) |
963 | close(slave); | |
6191b008 | 964 | |
97efd303 | 965 | // setups fds |
7052511e MV |
966 | sigemptyset(&sigmask); |
967 | sigprocmask(SIG_BLOCK,&sigmask,&original_sigmask); | |
968 | ||
887f5036 DK |
969 | // the result of the waitpid call |
970 | int res; | |
090c6566 | 971 | int select_ret; |
75ef8f14 MV |
972 | while ((res=waitpid(Child,&Status, WNOHANG)) != Child) { |
973 | if(res < 0) { | |
974 | // FIXME: move this to a function or something, looks ugly here | |
975 | // error handling, waitpid returned -1 | |
976 | if (errno == EINTR) | |
977 | continue; | |
978 | RunScripts("DPkg::Post-Invoke"); | |
979 | ||
980 | // Restore sig int/quit | |
981 | signal(SIGQUIT,old_SIGQUIT); | |
982 | signal(SIGINT,old_SIGINT); | |
e306ec47 | 983 | signal(SIGHUP,old_SIGHUP); |
75ef8f14 MV |
984 | return _error->Errno("waitpid","Couldn't wait for subprocess"); |
985 | } | |
d8cb4aa4 MV |
986 | |
987 | // wait for input or output here | |
955a6ddb | 988 | FD_ZERO(&rfds); |
9983591d OS |
989 | if (!stdin_is_dev_null) |
990 | FD_SET(0, &rfds); | |
955a6ddb | 991 | FD_SET(_dpkgin, &rfds); |
a4cf3665 MV |
992 | if(master >= 0) |
993 | FD_SET(master, &rfds); | |
090c6566 | 994 | tv.tv_sec = 1; |
7052511e MV |
995 | tv.tv_nsec = 0; |
996 | select_ret = pselect(max(master, _dpkgin)+1, &rfds, NULL, NULL, | |
997 | &tv, &original_sigmask); | |
919e5852 OS |
998 | if (select_ret < 0 && (errno == EINVAL || errno == ENOSYS)) |
999 | select_ret = racy_pselect(max(master, _dpkgin)+1, &rfds, NULL, | |
1000 | NULL, &tv, &original_sigmask); | |
da50ba30 MV |
1001 | if (select_ret == 0) |
1002 | continue; | |
1003 | else if (select_ret < 0 && errno == EINTR) | |
1004 | continue; | |
1005 | else if (select_ret < 0) | |
1006 | { | |
1007 | perror("select() returned error"); | |
1008 | continue; | |
1009 | } | |
1010 | ||
a4cf3665 | 1011 | if(master >= 0 && FD_ISSET(master, &rfds)) |
1ba38171 | 1012 | DoTerminalPty(master); |
a4cf3665 | 1013 | if(master >= 0 && FD_ISSET(0, &rfds)) |
955a6ddb | 1014 | DoStdin(master); |
955a6ddb | 1015 | if(FD_ISSET(_dpkgin, &rfds)) |
09fa2df2 | 1016 | DoDpkgStatusFd(_dpkgin, OutStatusFd); |
03e39e59 | 1017 | } |
75ef8f14 | 1018 | close(_dpkgin); |
03e39e59 AL |
1019 | |
1020 | // Restore sig int/quit | |
7f9a6360 AL |
1021 | signal(SIGQUIT,old_SIGQUIT); |
1022 | signal(SIGINT,old_SIGINT); | |
d9ec0fac | 1023 | signal(SIGHUP,old_SIGHUP); |
d8cb4aa4 | 1024 | |
477b5d6c MV |
1025 | if(master >= 0) |
1026 | { | |
a4cf3665 | 1027 | tcsetattr(0, TCSAFLUSH, &tt); |
477b5d6c MV |
1028 | close(master); |
1029 | } | |
6dd55be7 AL |
1030 | |
1031 | // Check for an error code. | |
1032 | if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0) | |
1033 | { | |
c70496f9 MV |
1034 | // if it was set to "keep-dpkg-runing" then we won't return |
1035 | // here but keep the loop going and just report it as a error | |
1036 | // for later | |
887f5036 | 1037 | bool const stopOnError = _config->FindB("Dpkg::StopOnError",true); |
f956efb4 | 1038 | |
c70496f9 MV |
1039 | if(stopOnError) |
1040 | RunScripts("DPkg::Post-Invoke"); | |
1041 | ||
1042 | if (WIFSIGNALED(Status) != 0 && WTERMSIG(Status) == SIGSEGV) | |
1043 | _error->Error("Sub-process %s received a segmentation fault.",Args[0]); | |
1044 | else if (WIFEXITED(Status) != 0) | |
1045 | _error->Error("Sub-process %s returned an error code (%u)",Args[0],WEXITSTATUS(Status)); | |
1046 | else | |
1047 | _error->Error("Sub-process %s exited unexpectedly",Args[0]); | |
1048 | ||
ff56e980 MV |
1049 | if(stopOnError) |
1050 | { | |
2e1715ea | 1051 | CloseLog(); |
c70496f9 | 1052 | return false; |
ff56e980 | 1053 | } |
6dd55be7 | 1054 | } |
03e39e59 | 1055 | } |
2e1715ea | 1056 | CloseLog(); |
6dd55be7 AL |
1057 | |
1058 | if (RunScripts("DPkg::Post-Invoke") == false) | |
1059 | return false; | |
b462d75a MV |
1060 | |
1061 | Cache.writeStateFile(NULL); | |
03e39e59 AL |
1062 | return true; |
1063 | } | |
1064 | /*}}}*/ | |
281daf46 AL |
1065 | // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/ |
1066 | // --------------------------------------------------------------------- | |
1067 | /* */ | |
1068 | void pkgDPkgPM::Reset() | |
1069 | { | |
1070 | List.erase(List.begin(),List.end()); | |
1071 | } | |
1072 | /*}}}*/ |