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