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