]>
Commit | Line | Data |
---|---|---|
c0c0b100 | 1 | // -*- mode: cpp; mode: fold -*- |
03e39e59 | 2 | // Description /*{{{*/ |
03e39e59 AL |
3 | /* ###################################################################### |
4 | ||
5 | DPKG Package Manager - Provide an interface to dpkg | |
554bc997 | 6 | |
03e39e59 AL |
7 | ##################################################################### */ |
8 | /*}}}*/ | |
9 | // Includes /*{{{*/ | |
ea542140 DK |
10 | #include <config.h> |
11 | ||
453b82a3 | 12 | #include <apt-pkg/cachefile.h> |
03e39e59 | 13 | #include <apt-pkg/configuration.h> |
b2e465d6 | 14 | #include <apt-pkg/depcache.h> |
453b82a3 | 15 | #include <apt-pkg/dpkgpm.h> |
8d6d3f00 | 16 | #include <apt-pkg/debsystem.h> |
453b82a3 | 17 | #include <apt-pkg/error.h> |
614adaa0 | 18 | #include <apt-pkg/fileutl.h> |
af36becc | 19 | #include <apt-pkg/install-progress.h> |
453b82a3 | 20 | #include <apt-pkg/packagemanager.h> |
453b82a3 | 21 | #include <apt-pkg/strutl.h> |
b820fd59 | 22 | #include <apt-pkg/statechanges.h> |
453b82a3 DK |
23 | #include <apt-pkg/cacheiterators.h> |
24 | #include <apt-pkg/macros.h> | |
25 | #include <apt-pkg/pkgcache.h> | |
f4959924 | 26 | #include <apt-pkg/version.h> |
233b185f | 27 | |
453b82a3 | 28 | #include <errno.h> |
03e39e59 | 29 | #include <fcntl.h> |
453b82a3 | 30 | #include <grp.h> |
453b82a3 DK |
31 | #include <pwd.h> |
32 | #include <signal.h> | |
33 | #include <stddef.h> | |
34 | #include <stdio.h> | |
35 | #include <stdlib.h> | |
36 | #include <sys/ioctl.h> | |
090c6566 | 37 | #include <sys/select.h> |
96db74ce | 38 | #include <sys/stat.h> |
453b82a3 | 39 | #include <sys/time.h> |
03e39e59 | 40 | #include <sys/wait.h> |
f4959924 DK |
41 | #include <sys/types.h> |
42 | #include <dirent.h> | |
d8cb4aa4 | 43 | #include <termios.h> |
453b82a3 | 44 | #include <time.h> |
d8cb4aa4 | 45 | #include <unistd.h> |
e04a6ce6 | 46 | |
453b82a3 | 47 | #include <algorithm> |
e04a6ce6 | 48 | #include <array> |
453b82a3 DK |
49 | #include <cstring> |
50 | #include <iostream> | |
51 | #include <map> | |
52 | #include <set> | |
53 | #include <string> | |
7ec34330 | 54 | #include <type_traits> |
453b82a3 | 55 | #include <utility> |
9ffbac99 | 56 | #include <unordered_set> |
453b82a3 | 57 | #include <vector> |
a6fd0c5c | 58 | #include <sstream> |
2f4e4070 | 59 | #include <numeric> |
d8cb4aa4 | 60 | |
75ef8f14 | 61 | #include <apti18n.h> |
b0ebdef5 | 62 | /*}}}*/ |
233b185f | 63 | |
24a59c62 JAK |
64 | extern char **environ; |
65 | ||
233b185f | 66 | using namespace std; |
03e39e59 | 67 | |
554bc997 | 68 | APT_PURE static string AptHistoryRequestingUser() /*{{{*/ |
a6fd0c5c | 69 | { |
48fe8dff | 70 | const char* EnvKeys[]{"SUDO_UID", "PKEXEC_UID", "PACKAGEKIT_CALLER_UID"}; |
46e88ba2 | 71 | |
48fe8dff | 72 | for (const auto &Key: EnvKeys) |
a6fd0c5c | 73 | { |
48fe8dff | 74 | if (getenv(Key) != nullptr) |
a6fd0c5c | 75 | { |
48fe8dff | 76 | int uid = atoi(getenv(Key)); |
46e88ba2 MV |
77 | if (uid > 0) { |
78 | struct passwd pwd; | |
79 | struct passwd *result; | |
80 | char buf[255]; | |
81 | if (getpwuid_r(uid, &pwd, buf, sizeof(buf), &result) == 0 && result != NULL) { | |
82 | std::string res; | |
83 | strprintf(res, "%s (%d)", pwd.pw_name, uid); | |
84 | return res; | |
85 | } | |
86 | } | |
a6fd0c5c MV |
87 | } |
88 | } | |
46e88ba2 | 89 | return ""; |
a6fd0c5c | 90 | } |
554bc997 DK |
91 | /*}}}*/ |
92 | APT_PURE static unsigned int EnvironmentSize() /*{{{*/ | |
a3cada6a MV |
93 | { |
94 | unsigned int size = 0; | |
95 | char **envp = environ; | |
96 | ||
97 | while (*envp != NULL) | |
98 | size += strlen (*envp++) + 1; | |
99 | ||
100 | return size; | |
101 | } | |
554bc997 DK |
102 | /*}}}*/ |
103 | class pkgDPkgPMPrivate /*{{{*/ | |
697a1d8a MV |
104 | { |
105 | public: | |
dcaa1185 | 106 | pkgDPkgPMPrivate() : stdin_is_dev_null(false), dpkgbuf_pos(0), |
223ae57d | 107 | term_out(NULL), history_out(NULL), |
150bdc9c | 108 | progress(NULL), tt_is_valid(false), master(-1), |
748a2177 DK |
109 | slave(NULL), protect_slave_from_dying(-1), |
110 | direct_stdin(false) | |
697a1d8a | 111 | { |
dcaa1185 | 112 | dpkgbuf[0] = '\0'; |
697a1d8a | 113 | } |
31f97d7b MV |
114 | ~pkgDPkgPMPrivate() |
115 | { | |
31f97d7b | 116 | } |
697a1d8a MV |
117 | bool stdin_is_dev_null; |
118 | // the buffer we use for the dpkg status-fd reading | |
119 | char dpkgbuf[1024]; | |
9fb4e651 | 120 | size_t dpkgbuf_pos; |
697a1d8a MV |
121 | FILE *term_out; |
122 | FILE *history_out; | |
123 | string dpkg_error; | |
31f97d7b | 124 | APT::Progress::PackageManager *progress; |
c3045b79 MV |
125 | |
126 | // pty stuff | |
223ae57d | 127 | struct termios tt; |
150bdc9c | 128 | bool tt_is_valid; |
c3045b79 | 129 | int master; |
223ae57d | 130 | char * slave; |
150bdc9c | 131 | int protect_slave_from_dying; |
c3045b79 MV |
132 | |
133 | // signals | |
134 | sigset_t sigmask; | |
135 | sigset_t original_sigmask; | |
136 | ||
748a2177 | 137 | bool direct_stdin; |
697a1d8a | 138 | }; |
554bc997 | 139 | /*}}}*/ |
f7dec19f DB |
140 | namespace |
141 | { | |
142 | // Maps the dpkg "processing" info to human readable names. Entry 0 | |
143 | // of each array is the key, entry 1 is the value. | |
144 | const std::pair<const char *, const char *> PackageProcessingOps[] = { | |
145 | std::make_pair("install", N_("Installing %s")), | |
dabe9e24 DK |
146 | // we don't care for the difference |
147 | std::make_pair("upgrade", N_("Installing %s")), | |
f7dec19f DB |
148 | std::make_pair("configure", N_("Configuring %s")), |
149 | std::make_pair("remove", N_("Removing %s")), | |
ac81ae9c | 150 | std::make_pair("purge", N_("Completely removing %s")), |
b3514c56 | 151 | std::make_pair("disappear", N_("Noting disappearance of %s")), |
f7dec19f DB |
152 | std::make_pair("trigproc", N_("Running post-installation trigger %s")) |
153 | }; | |
154 | ||
155 | const std::pair<const char *, const char *> * const PackageProcessingOpsBegin = PackageProcessingOps; | |
156 | const std::pair<const char *, const char *> * const PackageProcessingOpsEnd = PackageProcessingOps + sizeof(PackageProcessingOps) / sizeof(PackageProcessingOps[0]); | |
157 | ||
158 | // Predicate to test whether an entry in the PackageProcessingOps | |
159 | // array matches a string. | |
160 | class MatchProcessingOp | |
161 | { | |
162 | const char *target; | |
163 | ||
164 | public: | |
258b9e51 | 165 | explicit MatchProcessingOp(const char *the_target) |
f7dec19f DB |
166 | : target(the_target) |
167 | { | |
168 | } | |
169 | ||
170 | bool operator()(const std::pair<const char *, const char *> &pair) const | |
171 | { | |
172 | return strcmp(pair.first, target) == 0; | |
173 | } | |
174 | }; | |
175 | } | |
09fa2df2 | 176 | |
554bc997 DK |
177 | // ionice - helper function to ionice the given PID /*{{{*/ |
178 | /* there is no C header for ionice yet - just the syscall interface | |
179 | so we use the binary from util-linux */ | |
180 | static bool ionice(int PID) | |
cebe0287 MV |
181 | { |
182 | if (!FileExists("/usr/bin/ionice")) | |
183 | return false; | |
86fc2ca8 | 184 | pid_t Process = ExecFork(); |
cebe0287 MV |
185 | if (Process == 0) |
186 | { | |
187 | char buf[32]; | |
188 | snprintf(buf, sizeof(buf), "-p%d", PID); | |
189 | const char *Args[4]; | |
190 | Args[0] = "/usr/bin/ionice"; | |
191 | Args[1] = "-c3"; | |
192 | Args[2] = buf; | |
193 | Args[3] = 0; | |
194 | execv(Args[0], (char **)Args); | |
195 | } | |
196 | return ExecWait(Process, "ionice"); | |
197 | } | |
554bc997 | 198 | /*}}}*/ |
a1355481 MV |
199 | // FindNowVersion - Helper to find a Version in "now" state /*{{{*/ |
200 | // --------------------------------------------------------------------- | |
554bc997 | 201 | /* This is helpful when a package is no longer installed but has residual |
a1355481 MV |
202 | * config files |
203 | */ | |
554bc997 | 204 | static |
a1355481 MV |
205 | pkgCache::VerIterator FindNowVersion(const pkgCache::PkgIterator &Pkg) |
206 | { | |
207 | pkgCache::VerIterator Ver; | |
69c2ecbd | 208 | for (Ver = Pkg.VersionList(); Ver.end() == false; ++Ver) |
016bea82 DK |
209 | for (pkgCache::VerFileIterator Vf = Ver.FileList(); Vf.end() == false; ++Vf) |
210 | for (pkgCache::PkgFileIterator F = Vf.File(); F.end() == false; ++F) | |
b07aeb1a DK |
211 | { |
212 | if (F.Archive() != 0 && strcmp(F.Archive(), "now") == 0) | |
016bea82 | 213 | return Ver; |
b07aeb1a | 214 | } |
a1355481 MV |
215 | return Ver; |
216 | } | |
217 | /*}}}*/ | |
b820fd59 DK |
218 | static pkgCache::VerIterator FindToBeRemovedVersion(pkgCache::PkgIterator const &Pkg)/*{{{*/ |
219 | { | |
220 | auto const PV = Pkg.CurrentVer(); | |
221 | if (PV.end() == false) | |
222 | return PV; | |
223 | return FindNowVersion(Pkg); | |
224 | } | |
225 | /*}}}*/ | |
a1355481 | 226 | |
03e39e59 AL |
227 | // DPkgPM::pkgDPkgPM - Constructor /*{{{*/ |
228 | // --------------------------------------------------------------------- | |
229 | /* */ | |
6c55f07a DK |
230 | pkgDPkgPM::pkgDPkgPM(pkgDepCache *Cache) |
231 | : pkgPackageManager(Cache),d(new pkgDPkgPMPrivate()), pkgFailures(0), PackagesDone(0), PackagesTotal(0) | |
03e39e59 AL |
232 | { |
233 | } | |
234 | /*}}}*/ | |
235 | // DPkgPM::pkgDPkgPM - Destructor /*{{{*/ | |
236 | // --------------------------------------------------------------------- | |
237 | /* */ | |
238 | pkgDPkgPM::~pkgDPkgPM() | |
239 | { | |
697a1d8a | 240 | delete d; |
03e39e59 AL |
241 | } |
242 | /*}}}*/ | |
243 | // DPkgPM::Install - Install a package /*{{{*/ | |
244 | // --------------------------------------------------------------------- | |
245 | /* Add an install operation to the sequence list */ | |
246 | bool pkgDPkgPM::Install(PkgIterator Pkg,string File) | |
247 | { | |
248 | if (File.empty() == true || Pkg.end() == true) | |
92f21277 | 249 | return _error->Error("Internal Error, No file name for %s",Pkg.FullName().c_str()); |
03e39e59 | 250 | |
05bae55f DK |
251 | // If the filename string begins with DPkg::Chroot-Directory, return the |
252 | // substr that is within the chroot so dpkg can access it. | |
253 | string const chrootdir = _config->FindDir("DPkg::Chroot-Directory","/"); | |
254 | if (chrootdir != "/" && File.find(chrootdir) == 0) | |
255 | { | |
256 | size_t len = chrootdir.length(); | |
257 | if (chrootdir.at(len - 1) == '/') | |
258 | len--; | |
259 | List.push_back(Item(Item::Install,Pkg,File.substr(len))); | |
260 | } | |
261 | else | |
262 | List.push_back(Item(Item::Install,Pkg,File)); | |
263 | ||
03e39e59 AL |
264 | return true; |
265 | } | |
266 | /*}}}*/ | |
267 | // DPkgPM::Configure - Configure a package /*{{{*/ | |
268 | // --------------------------------------------------------------------- | |
269 | /* Add a configure operation to the sequence list */ | |
270 | bool pkgDPkgPM::Configure(PkgIterator Pkg) | |
271 | { | |
272 | if (Pkg.end() == true) | |
273 | return false; | |
3e9c4f70 | 274 | |
5e312de7 DK |
275 | List.push_back(Item(Item::Configure, Pkg)); |
276 | ||
277 | // Use triggers for config calls if we configure "smart" | |
278 | // as otherwise Pre-Depends will not be satisfied, see #526774 | |
279 | if (_config->FindB("DPkg::TriggersPending", false) == true) | |
280 | List.push_back(Item(Item::TriggersPending, PkgIterator())); | |
3e9c4f70 | 281 | |
03e39e59 AL |
282 | return true; |
283 | } | |
284 | /*}}}*/ | |
285 | // DPkgPM::Remove - Remove a package /*{{{*/ | |
286 | // --------------------------------------------------------------------- | |
287 | /* Add a remove operation to the sequence list */ | |
fc4b5c9f | 288 | bool pkgDPkgPM::Remove(PkgIterator Pkg,bool Purge) |
03e39e59 AL |
289 | { |
290 | if (Pkg.end() == true) | |
291 | return false; | |
554bc997 | 292 | |
fc4b5c9f AL |
293 | if (Purge == true) |
294 | List.push_back(Item(Item::Purge,Pkg)); | |
295 | else | |
296 | List.push_back(Item(Item::Remove,Pkg)); | |
6dd55be7 AL |
297 | return true; |
298 | } | |
299 | /*}}}*/ | |
7a948ec7 | 300 | // DPkgPM::SendPkgInfo - Send info for install-pkgs hook /*{{{*/ |
b2e465d6 AL |
301 | // --------------------------------------------------------------------- |
302 | /* This is part of the helper script communication interface, it sends | |
303 | very complete information down to the other end of the pipe.*/ | |
304 | bool pkgDPkgPM::SendV2Pkgs(FILE *F) | |
305 | { | |
7a948ec7 DK |
306 | return SendPkgsInfo(F, 2); |
307 | } | |
308 | bool pkgDPkgPM::SendPkgsInfo(FILE * const F, unsigned int const &Version) | |
309 | { | |
310 | // This version of APT supports only v3, so don't sent higher versions | |
311 | if (Version <= 3) | |
312 | fprintf(F,"VERSION %u\n", Version); | |
313 | else | |
314 | fprintf(F,"VERSION 3\n"); | |
315 | ||
316 | /* Write out all of the configuration directives by walking the | |
b2e465d6 AL |
317 | configuration tree */ |
318 | const Configuration::Item *Top = _config->Tree(0); | |
319 | for (; Top != 0;) | |
320 | { | |
321 | if (Top->Value.empty() == false) | |
322 | { | |
323 | fprintf(F,"%s=%s\n", | |
324 | QuoteString(Top->FullTag(),"=\"\n").c_str(), | |
325 | QuoteString(Top->Value,"\n").c_str()); | |
326 | } | |
327 | ||
328 | if (Top->Child != 0) | |
329 | { | |
330 | Top = Top->Child; | |
331 | continue; | |
332 | } | |
554bc997 | 333 | |
b2e465d6 AL |
334 | while (Top != 0 && Top->Next == 0) |
335 | Top = Top->Parent; | |
336 | if (Top != 0) | |
337 | Top = Top->Next; | |
554bc997 | 338 | } |
b2e465d6 | 339 | fprintf(F,"\n"); |
554bc997 | 340 | |
b2e465d6 | 341 | // Write out the package actions in order. |
f7f0d6c7 | 342 | for (vector<Item>::iterator I = List.begin(); I != List.end(); ++I) |
b2e465d6 | 343 | { |
3e9c4f70 DK |
344 | if(I->Pkg.end() == true) |
345 | continue; | |
346 | ||
b2e465d6 | 347 | pkgDepCache::StateCache &S = Cache[I->Pkg]; |
554bc997 | 348 | |
b2e465d6 | 349 | fprintf(F,"%s ",I->Pkg.Name()); |
7a948ec7 DK |
350 | |
351 | // Current version which we are going to replace | |
352 | pkgCache::VerIterator CurVer = I->Pkg.CurrentVer(); | |
353 | if (CurVer.end() == true && (I->Op == Item::Remove || I->Op == Item::Purge)) | |
354 | CurVer = FindNowVersion(I->Pkg); | |
355 | ||
86fdeec2 | 356 | if (CurVer.end() == true) |
7a948ec7 DK |
357 | { |
358 | if (Version <= 2) | |
359 | fprintf(F, "- "); | |
360 | else | |
361 | fprintf(F, "- - none "); | |
362 | } | |
b2e465d6 | 363 | else |
7a948ec7 DK |
364 | { |
365 | fprintf(F, "%s ", CurVer.VerStr()); | |
366 | if (Version >= 3) | |
367 | fprintf(F, "%s %s ", CurVer.Arch(), CurVer.MultiArchType()); | |
368 | } | |
369 | ||
370 | // Show the compare operator between current and install version | |
b2e465d6 AL |
371 | if (S.InstallVer != 0) |
372 | { | |
7a948ec7 | 373 | pkgCache::VerIterator const InstVer = S.InstVerIter(Cache); |
b2e465d6 | 374 | int Comp = 2; |
7a948ec7 DK |
375 | if (CurVer.end() == false) |
376 | Comp = InstVer.CompareVer(CurVer); | |
b2e465d6 AL |
377 | if (Comp < 0) |
378 | fprintf(F,"> "); | |
7a948ec7 | 379 | else if (Comp == 0) |
b2e465d6 | 380 | fprintf(F,"= "); |
7a948ec7 | 381 | else if (Comp > 0) |
b2e465d6 | 382 | fprintf(F,"< "); |
7a948ec7 DK |
383 | fprintf(F, "%s ", InstVer.VerStr()); |
384 | if (Version >= 3) | |
385 | fprintf(F, "%s %s ", InstVer.Arch(), InstVer.MultiArchType()); | |
b2e465d6 AL |
386 | } |
387 | else | |
7a948ec7 DK |
388 | { |
389 | if (Version <= 2) | |
390 | fprintf(F, "> - "); | |
391 | else | |
392 | fprintf(F, "> - - none "); | |
393 | } | |
394 | ||
b2e465d6 AL |
395 | // Show the filename/operation |
396 | if (I->Op == Item::Install) | |
397 | { | |
398 | // No errors here.. | |
399 | if (I->File[0] != '/') | |
400 | fprintf(F,"**ERROR**\n"); | |
401 | else | |
402 | fprintf(F,"%s\n",I->File.c_str()); | |
554bc997 | 403 | } |
7a948ec7 | 404 | else if (I->Op == Item::Configure) |
b2e465d6 | 405 | fprintf(F,"**CONFIGURE**\n"); |
7a948ec7 | 406 | else if (I->Op == Item::Remove || |
b2e465d6 AL |
407 | I->Op == Item::Purge) |
408 | fprintf(F,"**REMOVE**\n"); | |
554bc997 | 409 | |
b2e465d6 AL |
410 | if (ferror(F) != 0) |
411 | return false; | |
412 | } | |
413 | return true; | |
414 | } | |
415 | /*}}}*/ | |
db0c350f AL |
416 | // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/ |
417 | // --------------------------------------------------------------------- | |
418 | /* This looks for a list of scripts to run from the configuration file | |
419 | each one is run and is fed on standard input a list of all .deb files | |
420 | that are due to be installed. */ | |
421 | bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf) | |
422 | { | |
26b3ade2 MV |
423 | bool result = true; |
424 | ||
db0c350f AL |
425 | Configuration::Item const *Opts = _config->Tree(Cnf); |
426 | if (Opts == 0 || Opts->Child == 0) | |
427 | return true; | |
428 | Opts = Opts->Child; | |
26b3ade2 MV |
429 | |
430 | sighandler_t old_sigpipe = signal(SIGPIPE, SIG_IGN); | |
a6ae3d3d JAK |
431 | sighandler_t old_sigint = signal(SIGINT, SIG_IGN); |
432 | sighandler_t old_sigquit = signal(SIGQUIT, SIG_IGN); | |
554bc997 | 433 | |
db0c350f AL |
434 | unsigned int Count = 1; |
435 | for (; Opts != 0; Opts = Opts->Next, Count++) | |
436 | { | |
437 | if (Opts->Value.empty() == true) | |
438 | continue; | |
b2e465d6 | 439 | |
e5b7e019 MV |
440 | if(_config->FindB("Debug::RunScripts", false) == true) |
441 | std::clog << "Running external script with list of all .deb file: '" | |
442 | << Opts->Value << "'" << std::endl; | |
443 | ||
b2e465d6 AL |
444 | // Determine the protocol version |
445 | string OptSec = Opts->Value; | |
446 | string::size_type Pos; | |
447 | if ((Pos = OptSec.find(' ')) == string::npos || Pos == 0) | |
448 | Pos = OptSec.length(); | |
b2e465d6 | 449 | OptSec = "DPkg::Tools::Options::" + string(Opts->Value.c_str(),Pos); |
554bc997 | 450 | |
b2e465d6 | 451 | unsigned int Version = _config->FindI(OptSec+"::Version",1); |
48498443 | 452 | unsigned int InfoFD = _config->FindI(OptSec + "::InfoFD", STDIN_FILENO); |
554bc997 | 453 | |
db0c350f | 454 | // Create the pipes |
e45c4617 | 455 | std::set<int> KeepFDs; |
96ae6de5 | 456 | MergeKeepFdsFromConfiguration(KeepFDs); |
db0c350f | 457 | int Pipes[2]; |
26b3ade2 MV |
458 | if (pipe(Pipes) != 0) { |
459 | result = _error->Errno("pipe","Failed to create IPC pipe to subprocess"); | |
460 | break; | |
461 | } | |
48498443 DK |
462 | if (InfoFD != (unsigned)Pipes[0]) |
463 | SetCloseExec(Pipes[0],true); | |
464 | else | |
e45c4617 MV |
465 | KeepFDs.insert(Pipes[0]); |
466 | ||
467 | ||
db0c350f | 468 | SetCloseExec(Pipes[1],true); |
48498443 | 469 | |
db0c350f | 470 | // Purified Fork for running the script |
e45c4617 | 471 | pid_t Process = ExecFork(KeepFDs); |
db0c350f AL |
472 | if (Process == 0) |
473 | { | |
474 | // Setup the FDs | |
48498443 | 475 | dup2(Pipes[0], InfoFD); |
db0c350f | 476 | SetCloseExec(STDOUT_FILENO,false); |
48498443 | 477 | SetCloseExec(STDIN_FILENO,false); |
db0c350f | 478 | SetCloseExec(STDERR_FILENO,false); |
90ecbd7d | 479 | |
48498443 DK |
480 | string hookfd; |
481 | strprintf(hookfd, "%d", InfoFD); | |
482 | setenv("APT_HOOK_INFO_FD", hookfd.c_str(), 1); | |
483 | ||
8d6d3f00 | 484 | debSystem::DpkgChrootDirectory(); |
90ecbd7d | 485 | const char *Args[4]; |
db0c350f | 486 | Args[0] = "/bin/sh"; |
90ecbd7d AL |
487 | Args[1] = "-c"; |
488 | Args[2] = Opts->Value.c_str(); | |
489 | Args[3] = 0; | |
db0c350f AL |
490 | execv(Args[0],(char **)Args); |
491 | _exit(100); | |
492 | } | |
493 | close(Pipes[0]); | |
b2e465d6 | 494 | FILE *F = fdopen(Pipes[1],"w"); |
26b3ade2 | 495 | if (F == 0) { |
cbe5f098 | 496 | result = _error->Errno("fdopen","Failed to open new FD"); |
26b3ade2 MV |
497 | break; |
498 | } | |
554bc997 | 499 | |
db0c350f | 500 | // Feed it the filenames. |
b2e465d6 | 501 | if (Version <= 1) |
db0c350f | 502 | { |
f7f0d6c7 | 503 | for (vector<Item>::iterator I = List.begin(); I != List.end(); ++I) |
db0c350f | 504 | { |
b2e465d6 AL |
505 | // Only deal with packages to be installed from .deb |
506 | if (I->Op != Item::Install) | |
507 | continue; | |
508 | ||
509 | // No errors here.. | |
510 | if (I->File[0] != '/') | |
511 | continue; | |
554bc997 | 512 | |
b2e465d6 AL |
513 | /* Feed the filename of each package that is pending install |
514 | into the pipe. */ | |
515 | fprintf(F,"%s\n",I->File.c_str()); | |
516 | if (ferror(F) != 0) | |
b2e465d6 | 517 | break; |
90ecbd7d | 518 | } |
db0c350f | 519 | } |
b2e465d6 | 520 | else |
7a948ec7 | 521 | SendPkgsInfo(F, Version); |
b2e465d6 AL |
522 | |
523 | fclose(F); | |
554bc997 | 524 | |
db0c350f | 525 | // Clean up the sub process |
26b3ade2 MV |
526 | if (ExecWait(Process,Opts->Value.c_str()) == false) { |
527 | result = _error->Error("Failure running script %s",Opts->Value.c_str()); | |
528 | break; | |
529 | } | |
db0c350f | 530 | } |
b2cfacf1 | 531 | signal(SIGINT, old_sigint); |
26b3ade2 | 532 | signal(SIGPIPE, old_sigpipe); |
a6ae3d3d | 533 | signal(SIGQUIT, old_sigquit); |
b2cfacf1 | 534 | |
26b3ade2 | 535 | return result; |
db0c350f | 536 | } |
ceabc520 | 537 | /*}}}*/ |
223ae57d | 538 | // DPkgPM::DoStdin - Read stdin and pass to master pty /*{{{*/ |
ceabc520 MV |
539 | // --------------------------------------------------------------------- |
540 | /* | |
541 | */ | |
542 | void pkgDPkgPM::DoStdin(int master) | |
543 | { | |
aff87a76 | 544 | unsigned char input_buf[256] = {0,}; |
b8dc791d | 545 | ssize_t len = read(STDIN_FILENO, input_buf, sizeof(input_buf)); |
9983591d | 546 | if (len) |
d68d65ad | 547 | FileFd::Write(master, input_buf, len); |
9983591d | 548 | else |
697a1d8a | 549 | d->stdin_is_dev_null = true; |
ceabc520 | 550 | } |
03e39e59 | 551 | /*}}}*/ |
ceabc520 MV |
552 | // DPkgPM::DoTerminalPty - Read the terminal pty and write log /*{{{*/ |
553 | // --------------------------------------------------------------------- | |
554 | /* | |
555 | * read the terminal pty and write log | |
556 | */ | |
1ba38171 | 557 | void pkgDPkgPM::DoTerminalPty(int master) |
ceabc520 | 558 | { |
aff87a76 | 559 | unsigned char term_buf[1024] = {0,0, }; |
ceabc520 | 560 | |
aff87a76 | 561 | ssize_t len=read(master, term_buf, sizeof(term_buf)); |
7052511e MV |
562 | if(len == -1 && errno == EIO) |
563 | { | |
564 | // this happens when the child is about to exit, we | |
565 | // give it time to actually exit, otherwise we run | |
b6ff6913 DK |
566 | // into a race so we sleep for half a second. |
567 | struct timespec sleepfor = { 0, 500000000 }; | |
568 | nanosleep(&sleepfor, NULL); | |
7052511e | 569 | return; |
554bc997 DK |
570 | } |
571 | if(len <= 0) | |
955a6ddb | 572 | return; |
d68d65ad | 573 | FileFd::Write(1, term_buf, len); |
697a1d8a MV |
574 | if(d->term_out) |
575 | fwrite(term_buf, len, sizeof(char), d->term_out); | |
ceabc520 | 576 | } |
03e39e59 | 577 | /*}}}*/ |
554bc997 | 578 | // DPkgPM::ProcessDpkgStatusBuf /*{{{*/ |
e6ad8031 | 579 | void pkgDPkgPM::ProcessDpkgStatusLine(char *line) |
6191b008 | 580 | { |
887f5036 | 581 | bool const Debug = _config->FindB("Debug::pkgDPkgProgressReporting",false); |
887f5036 | 582 | if (Debug == true) |
09fa2df2 MV |
583 | std::clog << "got from dpkg '" << line << "'" << std::endl; |
584 | ||
09fa2df2 | 585 | /* dpkg sends strings like this: |
cd4ee27d MV |
586 | 'status: <pkg>: <pkg qstate>' |
587 | 'status: <pkg>:<arch>: <pkg qstate>' | |
554bc997 | 588 | |
4c559e97 DK |
589 | 'processing: {install,upgrade,configure,remove,purge,disappear,trigproc}: pkg' |
590 | 'processing: {install,upgrade,configure,remove,purge,disappear,trigproc}: trigger' | |
09fa2df2 | 591 | */ |
34d6563e | 592 | |
cd4ee27d MV |
593 | // we need to split on ": " (note the appended space) as the ':' is |
594 | // part of the pkgname:arch information that dpkg sends | |
554bc997 | 595 | // |
cd4ee27d MV |
596 | // A dpkg error message may contain additional ":" (like |
597 | // "failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb ..." | |
598 | // so we need to ensure to not split too much | |
7794a688 DK |
599 | std::vector<std::string> list = StringSplit(line, ": ", 4); |
600 | if(list.size() < 3) | |
09fa2df2 | 601 | { |
887f5036 | 602 | if (Debug == true) |
09fa2df2 MV |
603 | std::clog << "ignoring line: not enough ':'" << std::endl; |
604 | return; | |
605 | } | |
dd640f3c | 606 | |
34d6563e MV |
607 | // build the (prefix, pkgname, action) tuple, position of this |
608 | // is different for "processing" or "status" messages | |
609 | std::string prefix = APT::String::Strip(list[0]); | |
610 | std::string pkgname; | |
611 | std::string action; | |
34d6563e MV |
612 | |
613 | // "processing" has the form "processing: action: pkg or trigger" | |
4c559e97 DK |
614 | // with action = ["install", "upgrade", "configure", "remove", "purge", |
615 | // "disappear", "trigproc"] | |
34d6563e MV |
616 | if (prefix == "processing") |
617 | { | |
618 | pkgname = APT::String::Strip(list[2]); | |
619 | action = APT::String::Strip(list[1]); | |
34d6563e MV |
620 | } |
621 | // "status" has the form: "status: pkg: state" | |
4b10240c | 622 | // with state in ["half-installed", "unpacked", "half-configured", |
34d6563e MV |
623 | // "installed", "config-files", "not-installed"] |
624 | else if (prefix == "status") | |
cd4ee27d | 625 | { |
34d6563e MV |
626 | pkgname = APT::String::Strip(list[1]); |
627 | action = APT::String::Strip(list[2]); | |
dd640f3c | 628 | |
4b10240c | 629 | /* handle the special cases first: |
34d6563e | 630 | |
4b10240c DK |
631 | errors look like this: |
632 | '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 | |
633 | and conffile-prompt like this | |
634 | 'status:/etc/compiz.conf/compiz.conf : conffile-prompt: 'current-conffile' 'new-conffile' useredited distedited | |
635 | */ | |
34d6563e MV |
636 | if(action == "error") |
637 | { | |
4b10240c DK |
638 | d->progress->Error(pkgname, PackagesDone, PackagesTotal, list[3]); |
639 | ++pkgFailures; | |
cbcdd3ee | 640 | WriteApportReport(pkgname.c_str(), list[3].c_str()); |
34d6563e MV |
641 | return; |
642 | } | |
c23e6cd5 | 643 | else if(action == "conffile-prompt") |
34d6563e | 644 | { |
4b10240c | 645 | d->progress->ConffilePrompt(pkgname, PackagesDone, PackagesTotal, list[3]); |
dd640f3c | 646 | return; |
34d6563e | 647 | } |
4b10240c DK |
648 | } else { |
649 | if (Debug == true) | |
650 | std::clog << "unknown prefix '" << prefix << "'" << std::endl; | |
651 | return; | |
cd4ee27d | 652 | } |
7c016f6e | 653 | |
4b10240c | 654 | // At this point we have a pkgname, but it might not be arch-qualified ! |
34d6563e MV |
655 | if (pkgname.find(":") == std::string::npos) |
656 | { | |
34d6563e | 657 | pkgCache::GrpIterator Grp = Cache.FindGrp(pkgname); |
4b10240c DK |
658 | /* No arch means that dpkg believes there can only be one package |
659 | this can refer to so lets see what could be candidates here: */ | |
660 | std::vector<pkgCache::PkgIterator> candset; | |
661 | for (auto P = Grp.PackageList(); P.end() != true; P = Grp.NextPkg(P)) | |
662 | { | |
663 | if (PackageOps.find(P.FullName()) != PackageOps.end()) | |
664 | candset.push_back(P); | |
665 | // packages can disappear without them having any interaction itself | |
666 | // so we have to consider these as candidates, too | |
667 | else if (P->CurrentVer != 0 && action == "disappear") | |
668 | candset.push_back(P); | |
669 | } | |
670 | if (unlikely(candset.empty())) | |
671 | { | |
672 | if (Debug == true) | |
673 | std::clog << "unable to figure out which package is dpkg refering to with '" << pkgname << "'! (1)" << std::endl; | |
674 | return; | |
675 | } | |
676 | else if (candset.size() == 1) // we are lucky | |
677 | pkgname = candset.cbegin()->FullName(); | |
678 | else | |
679 | { | |
680 | /* here be dragons^Wassumptions about dpkg: | |
681 | - an M-A:same version is always arch-qualified | |
682 | - a package from a foreign arch is (in newer versions) */ | |
683 | size_t installedInstances = 0, wannabeInstances = 0; | |
684 | for (auto const &P: candset) | |
685 | { | |
686 | if (P->CurrentVer != 0) | |
4c559e97 | 687 | { |
4b10240c DK |
688 | ++installedInstances; |
689 | if (Cache[P].Delete() == false) | |
690 | ++wannabeInstances; | |
691 | } | |
692 | else if (Cache[P].Install()) | |
693 | ++wannabeInstances; | |
694 | } | |
695 | // the package becomes M-A:same, so we are still talking about current | |
696 | if (installedInstances == 1 && wannabeInstances >= 2) | |
697 | { | |
698 | for (auto const &P: candset) | |
699 | { | |
700 | if (P->CurrentVer == 0) | |
83e5cffc | 701 | continue; |
4b10240c DK |
702 | pkgname = P.FullName(); |
703 | break; | |
704 | } | |
705 | } | |
706 | // the package was M-A:same, it isn't now, so we can only talk about that | |
707 | else if (installedInstances >= 2 && wannabeInstances == 1) | |
708 | { | |
709 | for (auto const &P: candset) | |
710 | { | |
711 | auto const IV = Cache[P].InstVerIter(Cache); | |
712 | if (IV.end()) | |
713 | continue; | |
714 | pkgname = P.FullName(); | |
4c559e97 DK |
715 | break; |
716 | } | |
4b10240c DK |
717 | } |
718 | // that is a crossgrade | |
719 | else if (installedInstances == 1 && wannabeInstances == 1 && candset.size() == 2) | |
720 | { | |
721 | auto const PkgHasCurrentVersion = [](pkgCache::PkgIterator const &P) { return P->CurrentVer != 0; }; | |
722 | auto const P = std::find_if(candset.begin(), candset.end(), PkgHasCurrentVersion); | |
723 | if (unlikely(P == candset.end())) | |
724 | { | |
725 | if (Debug == true) | |
726 | std::clog << "situation for '" << pkgname << "' looked like a crossgrade, but no current version?!" << std::endl; | |
727 | return; | |
728 | } | |
729 | auto fullname = P->FullName(); | |
730 | if (PackageOps[fullname].size() != PackageOpsDone[fullname]) | |
731 | pkgname = std::move(fullname); | |
732 | else | |
733 | pkgname = std::find_if_not(candset.begin(), candset.end(), PkgHasCurrentVersion)->FullName(); | |
734 | } | |
735 | // we are desperate: so "just" take the native one, but that might change mid-air, | |
736 | // so we have to ask dpkg what it believes native is at the moment… all the time | |
737 | else | |
738 | { | |
739 | std::vector<std::string> sArgs = debSystem::GetDpkgBaseCommand(); | |
740 | sArgs.push_back("--print-architecture"); | |
741 | int outputFd = -1; | |
742 | pid_t const dpkgNativeArch = debSystem::ExecDpkg(sArgs, nullptr, &outputFd, true); | |
743 | if (unlikely(dpkgNativeArch == -1)) | |
744 | { | |
745 | if (Debug == true) | |
746 | std::clog << "calling dpkg failed to ask it for its current native architecture to expand '" << pkgname << "'!" << std::endl; | |
747 | return; | |
748 | } | |
749 | FILE *dpkg = fdopen(outputFd, "r"); | |
750 | if(dpkg != NULL) | |
751 | { | |
752 | char* buf = NULL; | |
753 | size_t bufsize = 0; | |
754 | if (getline(&buf, &bufsize, dpkg) != -1) | |
755 | pkgname += ':' + bufsize; | |
756 | free(buf); | |
757 | fclose(dpkg); | |
758 | } | |
759 | ExecWait(dpkgNativeArch, "dpkg --print-architecture", true); | |
760 | if (pkgname.find(':') != std::string::npos) | |
761 | { | |
762 | if (Debug == true) | |
763 | std::clog << "unable to figure out which package is dpkg refering to with '" << pkgname << "'! (2)" << std::endl; | |
764 | return; | |
765 | } | |
766 | } | |
767 | } | |
34d6563e | 768 | } |
4c559e97 | 769 | |
34d6563e | 770 | std::string arch = ""; |
e8022b09 | 771 | if (pkgname.find(":") != string::npos) |
34d6563e MV |
772 | arch = StringSplit(pkgname, ":")[1]; |
773 | std::string i18n_pkgname = pkgname; | |
774 | if (arch.size() != 0) | |
83e5cffc | 775 | strprintf(i18n_pkgname, "%s (%s)", StringSplit(pkgname, ":")[0].c_str(), arch.c_str()); |
09fa2df2 | 776 | |
fc2d32c0 MV |
777 | // 'processing' from dpkg looks like |
778 | // 'processing: action: pkg' | |
34d6563e | 779 | if(prefix == "processing") |
fc2d32c0 | 780 | { |
dabe9e24 | 781 | auto const iter = std::find_if(PackageProcessingOpsBegin, PackageProcessingOpsEnd, MatchProcessingOp(action.c_str())); |
f7dec19f | 782 | if(iter == PackageProcessingOpsEnd) |
fc2d32c0 | 783 | { |
887f5036 DK |
784 | if (Debug == true) |
785 | std::clog << "ignoring unknown action: " << action << std::endl; | |
fc2d32c0 MV |
786 | return; |
787 | } | |
34d6563e MV |
788 | std::string msg; |
789 | strprintf(msg, _(iter->second), i18n_pkgname.c_str()); | |
790 | d->progress->StatusChanged(pkgname, PackagesDone, PackagesTotal, msg); | |
791 | ||
792 | // FIXME: this needs a muliarch testcase | |
554bc997 | 793 | // FIXME2: is "pkgname" here reliable with dpkg only sending us |
34d6563e MV |
794 | // short pkgnames? |
795 | if (action == "disappear") | |
dd640f3c | 796 | handleDisappearAction(pkgname); |
dabe9e24 | 797 | else if (action == "upgrade") |
4b10240c | 798 | handleCrossUpgradeAction(pkgname); |
09fa2df2 | 799 | return; |
554bc997 | 800 | } |
09fa2df2 | 801 | |
34d6563e | 802 | if (prefix == "status") |
09fa2df2 | 803 | { |
83e5cffc | 804 | std::vector<struct DpkgState> &states = PackageOps[pkgname]; |
066d4a5b | 805 | if(PackageOpsDone[pkgname] < states.size()) |
8b21456a | 806 | { |
83e5cffc | 807 | char const * next_action = states[PackageOpsDone[pkgname]].state; |
8b21456a | 808 | if (next_action) |
4c559e97 | 809 | { |
8b21456a DK |
810 | /* |
811 | if (action == "half-installed" && strcmp("half-configured", next_action) == 0 && | |
812 | PackageOpsDone[pkg] + 2 < states.size() && action == states[PackageOpsDone[pkg] + 2].state) | |
813 | { | |
814 | if (Debug == true) | |
815 | std::clog << "(parsed from dpkg) pkg: " << short_pkgname << " action: " << action | |
816 | << " pending trigger defused by unpack" << std::endl; | |
817 | // unpacking a package defuses the pending trigger | |
818 | PackageOpsDone[pkg] += 2; | |
819 | PackagesDone += 2; | |
820 | next_action = states[PackageOpsDone[pkg]].state; | |
821 | } | |
822 | */ | |
823 | if (Debug == true) | |
83e5cffc | 824 | std::clog << "(parsed from dpkg) pkg: " << pkgname |
8b21456a | 825 | << " action: " << action << " (expected: '" << next_action << "' " |
83e5cffc | 826 | << PackageOpsDone[pkgname] << " of " << states.size() << ")" << endl; |
8b21456a DK |
827 | |
828 | // check if the package moved to the next dpkg state | |
829 | if(action == next_action) | |
830 | { | |
831 | // only read the translation if there is actually a next action | |
83e5cffc | 832 | char const * const translation = _(states[PackageOpsDone[pkgname]].str); |
4c559e97 | 833 | |
8b21456a | 834 | // we moved from one dpkg state to a new one, report that |
83e5cffc | 835 | ++PackageOpsDone[pkgname]; |
8b21456a | 836 | ++PackagesDone; |
4c559e97 | 837 | |
8b21456a DK |
838 | std::string msg; |
839 | strprintf(msg, translation, i18n_pkgname.c_str()); | |
840 | d->progress->StatusChanged(pkgname, PackagesDone, PackagesTotal, msg); | |
841 | } | |
4c559e97 | 842 | } |
34d6563e | 843 | } |
066d4a5b DK |
844 | else if (action == "triggers-pending") |
845 | { | |
846 | if (Debug == true) | |
847 | std::clog << "(parsed from dpkg) pkg: " << pkgname | |
848 | << " action: " << action << " (prefix 2 to " | |
849 | << PackageOpsDone[pkgname] << " of " << states.size() << ")" << endl; | |
850 | ||
851 | states.insert(states.begin(), {"installed", N_("Installed %s")}); | |
852 | states.insert(states.begin(), {"half-configured", N_("Configuring %s")}); | |
853 | PackagesTotal += 2; | |
854 | } | |
09fa2df2 | 855 | } |
6191b008 | 856 | } |
887f5036 | 857 | /*}}}*/ |
eb6f9bac DK |
858 | // DPkgPM::handleDisappearAction /*{{{*/ |
859 | void pkgDPkgPM::handleDisappearAction(string const &pkgname) | |
860 | { | |
eb6f9bac DK |
861 | pkgCache::PkgIterator Pkg = Cache.FindPkg(pkgname); |
862 | if (unlikely(Pkg.end() == true)) | |
863 | return; | |
1f467276 | 864 | |
dabe9e24 DK |
865 | // a disappeared package has no further actions |
866 | auto const ROps = PackageOps[Pkg.FullName()].size(); | |
867 | auto && ROpsDone = PackageOpsDone[Pkg.FullName()]; | |
868 | PackagesDone += ROps - ROpsDone; | |
869 | ROpsDone = ROps; | |
870 | ||
b4017ba7 MV |
871 | // record the package name for display and stuff later |
872 | disappearedPkgs.insert(Pkg.FullName(true)); | |
873 | ||
eb6f9bac DK |
874 | // the disappeared package was auto-installed - nothing to do |
875 | if ((Cache[Pkg].Flags & pkgCache::Flag::Auto) == pkgCache::Flag::Auto) | |
876 | return; | |
75954ae2 | 877 | pkgCache::VerIterator PkgVer = Cache[Pkg].InstVerIter(Cache); |
eb6f9bac DK |
878 | if (unlikely(PkgVer.end() == true)) |
879 | return; | |
880 | /* search in the list of dependencies for (Pre)Depends, | |
881 | check if this dependency has a Replaces on our package | |
882 | and if so transfer the manual installed flag to it */ | |
883 | for (pkgCache::DepIterator Dep = PkgVer.DependsList(); Dep.end() != true; ++Dep) | |
884 | { | |
885 | if (Dep->Type != pkgCache::Dep::Depends && | |
886 | Dep->Type != pkgCache::Dep::PreDepends) | |
887 | continue; | |
888 | pkgCache::PkgIterator Tar = Dep.TargetPkg(); | |
889 | if (unlikely(Tar.end() == true)) | |
890 | continue; | |
891 | // the package is already marked as manual | |
892 | if ((Cache[Tar].Flags & pkgCache::Flag::Auto) != pkgCache::Flag::Auto) | |
893 | continue; | |
75954ae2 DK |
894 | pkgCache::VerIterator TarVer = Cache[Tar].InstVerIter(Cache); |
895 | if (TarVer.end() == true) | |
896 | continue; | |
eb6f9bac DK |
897 | for (pkgCache::DepIterator Rep = TarVer.DependsList(); Rep.end() != true; ++Rep) |
898 | { | |
899 | if (Rep->Type != pkgCache::Dep::Replaces) | |
900 | continue; | |
901 | if (Pkg != Rep.TargetPkg()) | |
902 | continue; | |
903 | // okay, they are strongly connected - transfer manual-bit | |
904 | if (Debug == true) | |
905 | std::clog << "transfer manual-bit from disappeared »" << pkgname << "« to »" << Tar.FullName() << "«" << std::endl; | |
906 | Cache[Tar].Flags &= ~Flag::Auto; | |
907 | break; | |
908 | } | |
909 | } | |
910 | } | |
911 | /*}}}*/ | |
4b10240c DK |
912 | void pkgDPkgPM::handleCrossUpgradeAction(string const &pkgname) /*{{{*/ |
913 | { | |
914 | // in a crossgrade what looked like a remove first is really an unpack over it | |
915 | auto const Pkg = Cache.FindPkg(pkgname); | |
916 | if (likely(Pkg.end() == false) && Cache[Pkg].Delete()) | |
917 | { | |
918 | auto const Grp = Pkg.Group(); | |
919 | if (likely(Grp.end() == false)) | |
920 | { | |
921 | for (auto P = Grp.PackageList(); P.end() != true; P = Grp.NextPkg(P)) | |
922 | if(Cache[P].Install()) | |
923 | { | |
924 | auto && Ops = PackageOps[P.FullName()]; | |
925 | auto const unpackOp = std::find_if(Ops.cbegin(), Ops.cend(), [](DpkgState const &s) { return strcmp(s.state, "unpacked") == 0; }); | |
926 | if (unpackOp != Ops.cend()) | |
927 | { | |
928 | // skip ahead in the crossgraded packages | |
929 | auto const skipped = std::distance(Ops.cbegin(), unpackOp); | |
930 | PackagesDone += skipped; | |
931 | PackageOpsDone[P.FullName()] += skipped; | |
932 | // finish the crossremoved package | |
933 | auto const ROps = PackageOps[Pkg.FullName()].size(); | |
934 | auto && ROpsDone = PackageOpsDone[Pkg.FullName()]; | |
935 | PackagesDone += ROps - ROpsDone; | |
936 | ROpsDone = ROps; | |
937 | break; | |
938 | } | |
939 | } | |
940 | } | |
941 | } | |
942 | } | |
943 | /*}}}*/ | |
887f5036 | 944 | // DPkgPM::DoDpkgStatusFd /*{{{*/ |
e6ad8031 | 945 | void pkgDPkgPM::DoDpkgStatusFd(int statusfd) |
6191b008 | 946 | { |
9fb4e651 DK |
947 | ssize_t const len = read(statusfd, &d->dpkgbuf[d->dpkgbuf_pos], |
948 | (sizeof(d->dpkgbuf)/sizeof(d->dpkgbuf[0])) - d->dpkgbuf_pos); | |
6191b008 MV |
949 | if(len <= 0) |
950 | return; | |
9fb4e651 | 951 | d->dpkgbuf_pos += (len / sizeof(d->dpkgbuf[0])); |
ceabc520 | 952 | |
9fb4e651 DK |
953 | // process line by line from the buffer |
954 | char *p = d->dpkgbuf, *q = nullptr; | |
955 | while((q=(char*)memchr(p, '\n', (d->dpkgbuf + d->dpkgbuf_pos) - p)) != nullptr) | |
6191b008 | 956 | { |
9fb4e651 | 957 | *q = '\0'; |
e6ad8031 | 958 | ProcessDpkgStatusLine(p); |
9fb4e651 | 959 | p = q + 1; // continue with next line |
6191b008 MV |
960 | } |
961 | ||
9fb4e651 DK |
962 | // check if we stripped the buffer clean |
963 | if (p > (d->dpkgbuf + d->dpkgbuf_pos)) | |
964 | { | |
965 | d->dpkgbuf_pos = 0; | |
6191b008 | 966 | return; |
9fb4e651 | 967 | } |
6191b008 | 968 | |
9fb4e651 DK |
969 | // otherwise move the unprocessed tail to the start and update pos |
970 | memmove(d->dpkgbuf, p, (p - d->dpkgbuf)); | |
971 | d->dpkgbuf_pos = (d->dpkgbuf + d->dpkgbuf_pos) - p; | |
6191b008 MV |
972 | } |
973 | /*}}}*/ | |
d7a4ffd6 | 974 | // DPkgPM::WriteHistoryTag /*{{{*/ |
6cb1060b | 975 | void pkgDPkgPM::WriteHistoryTag(string const &tag, string value) |
d7a4ffd6 | 976 | { |
6cb1060b DK |
977 | size_t const length = value.length(); |
978 | if (length == 0) | |
979 | return; | |
980 | // poor mans rstrip(", ") | |
981 | if (value[length-2] == ',' && value[length-1] == ' ') | |
982 | value.erase(length - 2, 2); | |
697a1d8a | 983 | fprintf(d->history_out, "%s: %s\n", tag.c_str(), value.c_str()); |
d7a4ffd6 | 984 | } /*}}}*/ |
887f5036 | 985 | // DPkgPM::OpenLog /*{{{*/ |
2e1715ea MV |
986 | bool pkgDPkgPM::OpenLog() |
987 | { | |
569cc934 | 988 | string const logdir = _config->FindDir("Dir::Log"); |
7753e468 | 989 | if(CreateAPTDirectoryIfNeeded(logdir, logdir) == false) |
b29c3712 | 990 | // FIXME: use a better string after freeze |
2e1715ea | 991 | return _error->Error(_("Directory '%s' missing"), logdir.c_str()); |
9169c871 MV |
992 | |
993 | // get current time | |
994 | char timestr[200]; | |
569cc934 | 995 | time_t const t = time(NULL); |
42285f82 JAK |
996 | struct tm tm_buf; |
997 | struct tm const * const tmp = localtime_r(&t, &tm_buf); | |
9169c871 MV |
998 | strftime(timestr, sizeof(timestr), "%F %T", tmp); |
999 | ||
1000 | // open terminal log | |
569cc934 | 1001 | string const logfile_name = flCombine(logdir, |
2e1715ea MV |
1002 | _config->Find("Dir::Log::Terminal")); |
1003 | if (!logfile_name.empty()) | |
1004 | { | |
697a1d8a MV |
1005 | d->term_out = fopen(logfile_name.c_str(),"a"); |
1006 | if (d->term_out == NULL) | |
569cc934 | 1007 | return _error->WarningE("OpenLog", _("Could not open file '%s'"), logfile_name.c_str()); |
697a1d8a MV |
1008 | setvbuf(d->term_out, NULL, _IONBF, 0); |
1009 | SetCloseExec(fileno(d->term_out), true); | |
11b126f9 DK |
1010 | if (getuid() == 0) // if we aren't root, we can't chown a file, so don't try it |
1011 | { | |
1012 | struct passwd *pw = getpwnam("root"); | |
1013 | struct group *gr = getgrnam("adm"); | |
1014 | if (pw != NULL && gr != NULL && chown(logfile_name.c_str(), pw->pw_uid, gr->gr_gid) != 0) | |
1015 | _error->WarningE("OpenLog", "chown to root:adm of file %s failed", logfile_name.c_str()); | |
1016 | } | |
1017 | if (chmod(logfile_name.c_str(), 0640) != 0) | |
1018 | _error->WarningE("OpenLog", "chmod 0640 of file %s failed", logfile_name.c_str()); | |
697a1d8a | 1019 | fprintf(d->term_out, "\nLog started: %s\n", timestr); |
2e1715ea | 1020 | } |
9169c871 | 1021 | |
569cc934 DK |
1022 | // write your history |
1023 | string const history_name = flCombine(logdir, | |
9169c871 MV |
1024 | _config->Find("Dir::Log::History")); |
1025 | if (!history_name.empty()) | |
1026 | { | |
697a1d8a MV |
1027 | d->history_out = fopen(history_name.c_str(),"a"); |
1028 | if (d->history_out == NULL) | |
569cc934 | 1029 | return _error->WarningE("OpenLog", _("Could not open file '%s'"), history_name.c_str()); |
d4621f82 | 1030 | SetCloseExec(fileno(d->history_out), true); |
9169c871 | 1031 | chmod(history_name.c_str(), 0644); |
697a1d8a | 1032 | fprintf(d->history_out, "\nStart-Date: %s\n", timestr); |
97be52d4 | 1033 | string remove, purge, install, reinstall, upgrade, downgrade; |
f7f0d6c7 | 1034 | for (pkgCache::PkgIterator I = Cache.PkgBegin(); I.end() == false; ++I) |
9169c871 | 1035 | { |
97be52d4 DK |
1036 | enum { CANDIDATE, CANDIDATE_AUTO, CURRENT_CANDIDATE, CURRENT } infostring; |
1037 | string *line = NULL; | |
1038 | #define HISTORYINFO(X, Y) { line = &X; infostring = Y; } | |
1039 | if (Cache[I].NewInstall() == true) | |
1040 | HISTORYINFO(install, CANDIDATE_AUTO) | |
1041 | else if (Cache[I].ReInstall() == true) | |
1042 | HISTORYINFO(reinstall, CANDIDATE) | |
1043 | else if (Cache[I].Upgrade() == true) | |
1044 | HISTORYINFO(upgrade, CURRENT_CANDIDATE) | |
1045 | else if (Cache[I].Downgrade() == true) | |
1046 | HISTORYINFO(downgrade, CURRENT_CANDIDATE) | |
1047 | else if (Cache[I].Delete() == true) | |
1048 | HISTORYINFO((Cache[I].Purge() ? purge : remove), CURRENT) | |
1049 | else | |
1050 | continue; | |
1051 | #undef HISTORYINFO | |
1052 | line->append(I.FullName(false)).append(" ("); | |
1053 | switch (infostring) { | |
1054 | case CANDIDATE: line->append(Cache[I].CandVersion); break; | |
1055 | case CANDIDATE_AUTO: | |
1056 | line->append(Cache[I].CandVersion); | |
1057 | if ((Cache[I].Flags & pkgCache::Flag::Auto) == pkgCache::Flag::Auto) | |
1058 | line->append(", automatic"); | |
1059 | break; | |
1060 | case CURRENT_CANDIDATE: line->append(Cache[I].CurVersion).append(", ").append(Cache[I].CandVersion); break; | |
1061 | case CURRENT: line->append(Cache[I].CurVersion); break; | |
9169c871 | 1062 | } |
97be52d4 | 1063 | line->append("), "); |
9169c871 | 1064 | } |
2bb25574 DK |
1065 | if (_config->Exists("Commandline::AsString") == true) |
1066 | WriteHistoryTag("Commandline", _config->Find("Commandline::AsString")); | |
46e88ba2 MV |
1067 | std::string RequestingUser = AptHistoryRequestingUser(); |
1068 | if (RequestingUser != "") | |
1069 | WriteHistoryTag("Requested-By", RequestingUser); | |
d7a4ffd6 | 1070 | WriteHistoryTag("Install", install); |
97be52d4 | 1071 | WriteHistoryTag("Reinstall", reinstall); |
d7a4ffd6 MV |
1072 | WriteHistoryTag("Upgrade", upgrade); |
1073 | WriteHistoryTag("Downgrade",downgrade); | |
1074 | WriteHistoryTag("Remove",remove); | |
1075 | WriteHistoryTag("Purge",purge); | |
697a1d8a | 1076 | fflush(d->history_out); |
9169c871 | 1077 | } |
554bc997 | 1078 | |
2e1715ea MV |
1079 | return true; |
1080 | } | |
887f5036 DK |
1081 | /*}}}*/ |
1082 | // DPkg::CloseLog /*{{{*/ | |
2e1715ea MV |
1083 | bool pkgDPkgPM::CloseLog() |
1084 | { | |
9169c871 MV |
1085 | char timestr[200]; |
1086 | time_t t = time(NULL); | |
42285f82 JAK |
1087 | struct tm tm_buf; |
1088 | struct tm *tmp = localtime_r(&t, &tm_buf); | |
9169c871 MV |
1089 | strftime(timestr, sizeof(timestr), "%F %T", tmp); |
1090 | ||
697a1d8a | 1091 | if(d->term_out) |
2e1715ea | 1092 | { |
697a1d8a MV |
1093 | fprintf(d->term_out, "Log ended: "); |
1094 | fprintf(d->term_out, "%s", timestr); | |
1095 | fprintf(d->term_out, "\n"); | |
1096 | fclose(d->term_out); | |
2e1715ea | 1097 | } |
697a1d8a | 1098 | d->term_out = NULL; |
9169c871 | 1099 | |
697a1d8a | 1100 | if(d->history_out) |
9169c871 | 1101 | { |
6cb1060b DK |
1102 | if (disappearedPkgs.empty() == false) |
1103 | { | |
1104 | string disappear; | |
1105 | for (std::set<std::string>::const_iterator d = disappearedPkgs.begin(); | |
1106 | d != disappearedPkgs.end(); ++d) | |
1107 | { | |
1108 | pkgCache::PkgIterator P = Cache.FindPkg(*d); | |
1109 | disappear.append(*d); | |
1110 | if (P.end() == true) | |
1111 | disappear.append(", "); | |
1112 | else | |
1113 | disappear.append(" (").append(Cache[P].CurVersion).append("), "); | |
1114 | } | |
1115 | WriteHistoryTag("Disappeared", disappear); | |
1116 | } | |
697a1d8a MV |
1117 | if (d->dpkg_error.empty() == false) |
1118 | fprintf(d->history_out, "Error: %s\n", d->dpkg_error.c_str()); | |
1119 | fprintf(d->history_out, "End-Date: %s\n", timestr); | |
1120 | fclose(d->history_out); | |
9169c871 | 1121 | } |
697a1d8a | 1122 | d->history_out = NULL; |
9169c871 | 1123 | |
2e1715ea MV |
1124 | return true; |
1125 | } | |
887f5036 | 1126 | /*}}}*/ |
6fad3c24 MV |
1127 | |
1128 | // DPkgPM::BuildPackagesProgressMap /*{{{*/ | |
1129 | void pkgDPkgPM::BuildPackagesProgressMap() | |
1130 | { | |
1131 | // map the dpkg states to the operations that are performed | |
1132 | // (this is sorted in the same way as Item::Ops) | |
e04a6ce6 | 1133 | static const std::array<std::array<DpkgState, 3>, 4> DpkgStatesOpMap = {{ |
6fad3c24 | 1134 | // Install operation |
e04a6ce6 | 1135 | {{ |
554bc997 DK |
1136 | {"half-installed", N_("Preparing %s")}, |
1137 | {"unpacked", N_("Unpacking %s") }, | |
e04a6ce6 DK |
1138 | {nullptr, nullptr} |
1139 | }}, | |
6fad3c24 | 1140 | // Configure operation |
e04a6ce6 | 1141 | {{ |
6fad3c24 MV |
1142 | {"unpacked",N_("Preparing to configure %s") }, |
1143 | {"half-configured", N_("Configuring %s") }, | |
1144 | { "installed", N_("Installed %s")}, | |
e04a6ce6 | 1145 | }}, |
6fad3c24 | 1146 | // Remove operation |
e04a6ce6 | 1147 | {{ |
6fad3c24 MV |
1148 | {"half-configured", N_("Preparing for removal of %s")}, |
1149 | {"half-installed", N_("Removing %s")}, | |
1150 | {"config-files", N_("Removed %s")}, | |
e04a6ce6 | 1151 | }}, |
6fad3c24 | 1152 | // Purge operation |
e04a6ce6 | 1153 | {{ |
6fad3c24 MV |
1154 | {"config-files", N_("Preparing to completely remove %s")}, |
1155 | {"not-installed", N_("Completely removed %s")}, | |
e04a6ce6 DK |
1156 | {nullptr, nullptr} |
1157 | }}, | |
1158 | }}; | |
1159 | static_assert(Item::Purge == 3, "Enum item has unexpected index for mapping array"); | |
6fad3c24 MV |
1160 | |
1161 | // init the PackageOps map, go over the list of packages that | |
1162 | // that will be [installed|configured|removed|purged] and add | |
1163 | // them to the PackageOps map (the dpkg states it goes through) | |
1164 | // and the PackageOpsTranslations (human readable strings) | |
e04a6ce6 | 1165 | for (auto &&I : List) |
6fad3c24 | 1166 | { |
e04a6ce6 | 1167 | if(I.Pkg.end() == true) |
6fad3c24 MV |
1168 | continue; |
1169 | ||
e04a6ce6 | 1170 | string const name = I.Pkg.FullName(); |
6fad3c24 | 1171 | PackageOpsDone[name] = 0; |
e04a6ce6 DK |
1172 | auto AddToPackageOps = std::back_inserter(PackageOps[name]); |
1173 | if (I.Op == Item::Purge && I.Pkg->CurrentVer != 0) | |
6fad3c24 | 1174 | { |
e04a6ce6 DK |
1175 | // purging a package which is installed first passes through remove states |
1176 | auto const DpkgOps = DpkgStatesOpMap[Item::Remove]; | |
1177 | std::copy(DpkgOps.begin(), DpkgOps.end(), AddToPackageOps); | |
1178 | PackagesTotal += DpkgOps.size(); | |
6fad3c24 | 1179 | } |
e04a6ce6 DK |
1180 | auto const DpkgOps = DpkgStatesOpMap[I.Op]; |
1181 | std::copy_if(DpkgOps.begin(), DpkgOps.end(), AddToPackageOps, [&](DpkgState const &state) { | |
1182 | if (state.state == nullptr) | |
1183 | return false; | |
1184 | ++PackagesTotal; | |
1185 | return true; | |
1186 | }); | |
6fad3c24 | 1187 | } |
ecb777dd DK |
1188 | /* one extra: We don't want the progress bar to reach 100%, especially not |
1189 | if we call dpkg --configure --pending and process a bunch of triggers | |
1190 | while showing 100%. Also, spindown takes a while, so never reaching 100% | |
1191 | is way more correct than reaching 100% while still doing stuff even if | |
1192 | doing it this way is slightly bending the rules */ | |
1193 | ++PackagesTotal; | |
6fad3c24 MV |
1194 | } |
1195 | /*}}}*/ | |
554bc997 | 1196 | bool pkgDPkgPM::Go(int StatusFd) /*{{{*/ |
bd5f39b3 MV |
1197 | { |
1198 | APT::Progress::PackageManager *progress = NULL; | |
1199 | if (StatusFd == -1) | |
1200 | progress = APT::Progress::PackageManagerProgressFactory(); | |
1201 | else | |
1202 | progress = new APT::Progress::PackageManagerProgressFd(StatusFd); | |
554bc997 | 1203 | |
9eb0042b | 1204 | return Go(progress); |
bd5f39b3 | 1205 | } |
554bc997 DK |
1206 | /*}}}*/ |
1207 | void pkgDPkgPM::StartPtyMagic() /*{{{*/ | |
c3045b79 | 1208 | { |
1700c3cf MV |
1209 | if (_config->FindB("Dpkg::Use-Pty", true) == false) |
1210 | { | |
223ae57d DK |
1211 | d->master = -1; |
1212 | if (d->slave != NULL) | |
1213 | free(d->slave); | |
1214 | d->slave = NULL; | |
1700c3cf MV |
1215 | return; |
1216 | } | |
1217 | ||
748a2177 DK |
1218 | if (isatty(STDIN_FILENO) == 0) |
1219 | d->direct_stdin = true; | |
1220 | ||
223ae57d | 1221 | _error->PushToStack(); |
150bdc9c DK |
1222 | |
1223 | d->master = posix_openpt(O_RDWR | O_NOCTTY); | |
1224 | if (d->master == -1) | |
1225 | _error->Errno("posix_openpt", _("Can not write log (%s)"), _("Is /dev/pts mounted?")); | |
1226 | else if (unlockpt(d->master) == -1) | |
1227 | _error->Errno("unlockpt", "Unlocking the slave of master fd %d failed!", d->master); | |
1228 | else | |
c3045b79 | 1229 | { |
8c1dbbef | 1230 | #ifdef HAVE_PTSNAME_R |
2a0cae34 JAK |
1231 | char slave_name[64]; // 64 is used by bionic |
1232 | if (ptsname_r(d->master, slave_name, sizeof(slave_name)) != 0) | |
1233 | #else | |
150bdc9c DK |
1234 | char const * const slave_name = ptsname(d->master); |
1235 | if (slave_name == NULL) | |
2a0cae34 | 1236 | #endif |
150bdc9c | 1237 | _error->Errno("ptsname", "Getting name for slave of master fd %d failed!", d->master); |
223ae57d DK |
1238 | else |
1239 | { | |
150bdc9c DK |
1240 | d->slave = strdup(slave_name); |
1241 | if (d->slave == NULL) | |
1242 | _error->Errno("strdup", "Copying name %s for slave of master fd %d failed!", slave_name, d->master); | |
1243 | else if (grantpt(d->master) == -1) | |
1244 | _error->Errno("grantpt", "Granting access to slave %s based on master fd %d failed!", slave_name, d->master); | |
1245 | else if (tcgetattr(STDIN_FILENO, &d->tt) == 0) | |
223ae57d | 1246 | { |
150bdc9c DK |
1247 | d->tt_is_valid = true; |
1248 | struct termios raw_tt; | |
1249 | // copy window size of stdout if its a 'good' terminal | |
1250 | if (tcgetattr(STDOUT_FILENO, &raw_tt) == 0) | |
223ae57d | 1251 | { |
150bdc9c DK |
1252 | struct winsize win; |
1253 | if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &win) < 0) | |
1254 | _error->Errno("ioctl", "Getting TIOCGWINSZ from stdout failed!"); | |
1255 | if (ioctl(d->master, TIOCSWINSZ, &win) < 0) | |
1256 | _error->Errno("ioctl", "Setting TIOCSWINSZ for master fd %d failed!", d->master); | |
223ae57d | 1257 | } |
223ae57d DK |
1258 | if (tcsetattr(d->master, TCSANOW, &d->tt) == -1) |
1259 | _error->Errno("tcsetattr", "Setting in Start via TCSANOW for master fd %d failed!", d->master); | |
1260 | ||
223ae57d DK |
1261 | raw_tt = d->tt; |
1262 | cfmakeraw(&raw_tt); | |
1263 | raw_tt.c_lflag &= ~ECHO; | |
1264 | raw_tt.c_lflag |= ISIG; | |
c3045b79 MV |
1265 | // block SIGTTOU during tcsetattr to prevent a hang if |
1266 | // the process is a member of the background process group | |
1267 | // http://www.opengroup.org/onlinepubs/000095399/functions/tcsetattr.html | |
1268 | sigemptyset(&d->sigmask); | |
1269 | sigaddset(&d->sigmask, SIGTTOU); | |
1270 | sigprocmask(SIG_BLOCK,&d->sigmask, &d->original_sigmask); | |
223ae57d | 1271 | if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw_tt) == -1) |
150bdc9c | 1272 | _error->Errno("tcsetattr", "Setting in Start via TCSAFLUSH for stdin failed!"); |
223ae57d | 1273 | sigprocmask(SIG_SETMASK, &d->original_sigmask, NULL); |
150bdc9c DK |
1274 | |
1275 | } | |
1276 | if (d->slave != NULL) | |
1277 | { | |
1278 | /* on linux, closing (and later reopening) all references to the slave | |
1279 | makes the slave a death end, so we open it here to have one open all | |
1280 | the time. We could use this fd in SetupSlavePtyMagic() for linux, but | |
1281 | on kfreebsd we get an incorrect ("step like") output then while it has | |
1282 | no problem with closing all references… so to avoid platform specific | |
1283 | code here we combine both and be happy once more */ | |
c6bc9735 | 1284 | d->protect_slave_from_dying = open(d->slave, O_RDWR | O_CLOEXEC | O_NOCTTY); |
223ae57d | 1285 | } |
c3045b79 | 1286 | } |
223ae57d | 1287 | } |
c3045b79 | 1288 | |
223ae57d DK |
1289 | if (_error->PendingError() == true) |
1290 | { | |
1291 | if (d->master != -1) | |
1292 | { | |
1293 | close(d->master); | |
1294 | d->master = -1; | |
1295 | } | |
150bdc9c DK |
1296 | if (d->slave != NULL) |
1297 | { | |
1298 | free(d->slave); | |
1299 | d->slave = NULL; | |
1300 | } | |
95278287 | 1301 | _error->DumpErrors(std::cerr, GlobalError::DEBUG, false); |
223ae57d DK |
1302 | } |
1303 | _error->RevertToStack(); | |
c3045b79 | 1304 | } |
554bc997 DK |
1305 | /*}}}*/ |
1306 | void pkgDPkgPM::SetupSlavePtyMagic() /*{{{*/ | |
223ae57d | 1307 | { |
150bdc9c | 1308 | if(d->master == -1 || d->slave == NULL) |
223ae57d DK |
1309 | return; |
1310 | ||
1311 | if (close(d->master) == -1) | |
1312 | _error->FatalE("close", "Closing master %d in child failed!", d->master); | |
150bdc9c | 1313 | d->master = -1; |
223ae57d DK |
1314 | if (setsid() == -1) |
1315 | _error->FatalE("setsid", "Starting a new session for child failed!"); | |
c3045b79 | 1316 | |
c6bc9735 | 1317 | int const slaveFd = open(d->slave, O_RDWR | O_NOCTTY); |
223ae57d DK |
1318 | if (slaveFd == -1) |
1319 | _error->FatalE("open", _("Can not write log (%s)"), _("Is /dev/pts mounted?")); | |
0c787570 | 1320 | else if (ioctl(slaveFd, TIOCSCTTY, 0) < 0) |
223ae57d DK |
1321 | _error->FatalE("ioctl", "Setting TIOCSCTTY for slave fd %d failed!", slaveFd); |
1322 | else | |
1323 | { | |
748a2177 DK |
1324 | unsigned short i = 0; |
1325 | if (d->direct_stdin == true) | |
1326 | ++i; | |
1327 | for (; i < 3; ++i) | |
223ae57d DK |
1328 | if (dup2(slaveFd, i) == -1) |
1329 | _error->FatalE("dup2", "Dupping %d to %d in child failed!", slaveFd, i); | |
1330 | ||
150bdc9c | 1331 | if (d->tt_is_valid == true && tcsetattr(STDIN_FILENO, TCSANOW, &d->tt) < 0) |
223ae57d DK |
1332 | _error->FatalE("tcsetattr", "Setting in Setup via TCSANOW for slave fd %d failed!", slaveFd); |
1333 | } | |
0c787570 DK |
1334 | |
1335 | if (slaveFd != -1) | |
1336 | close(slaveFd); | |
223ae57d | 1337 | } |
554bc997 DK |
1338 | /*}}}*/ |
1339 | void pkgDPkgPM::StopPtyMagic() /*{{{*/ | |
c3045b79 | 1340 | { |
223ae57d DK |
1341 | if (d->slave != NULL) |
1342 | free(d->slave); | |
1343 | d->slave = NULL; | |
150bdc9c DK |
1344 | if (d->protect_slave_from_dying != -1) |
1345 | { | |
1346 | close(d->protect_slave_from_dying); | |
1347 | d->protect_slave_from_dying = -1; | |
1348 | } | |
554bc997 | 1349 | if(d->master >= 0) |
c3045b79 | 1350 | { |
150bdc9c | 1351 | if (d->tt_is_valid == true && tcsetattr(STDIN_FILENO, TCSAFLUSH, &d->tt) == -1) |
223ae57d | 1352 | _error->FatalE("tcsetattr", "Setting in Stop via TCSAFLUSH for stdin failed!"); |
c3045b79 | 1353 | close(d->master); |
223ae57d | 1354 | d->master = -1; |
c3045b79 MV |
1355 | } |
1356 | } | |
f4959924 DK |
1357 | /*}}}*/ |
1358 | static void cleanUpTmpDir(char * const tmpdir) /*{{{*/ | |
1359 | { | |
1360 | if (tmpdir == nullptr) | |
1361 | return; | |
1362 | DIR * const D = opendir(tmpdir); | |
1363 | if (D == nullptr) | |
1364 | _error->Errno("opendir", _("Unable to read %s"), tmpdir); | |
1365 | else | |
1366 | { | |
1367 | auto const dfd = dirfd(D); | |
1368 | for (struct dirent *Ent = readdir(D); Ent != nullptr; Ent = readdir(D)) | |
1369 | { | |
1370 | if (Ent->d_name[0] == '.') | |
1371 | continue; | |
1372 | #ifdef _DIRENT_HAVE_D_TYPE | |
1373 | if (unlikely(Ent->d_type != DT_LNK && Ent->d_type != DT_UNKNOWN)) | |
1374 | continue; | |
1375 | #endif | |
1376 | if (unlikely(unlinkat(dfd, Ent->d_name, 0) != 0)) | |
1377 | break; | |
1378 | } | |
1379 | closedir(D); | |
1380 | rmdir(tmpdir); | |
1381 | } | |
1382 | free(tmpdir); | |
1383 | } | |
1384 | /*}}}*/ | |
c420fe00 | 1385 | |
03e39e59 AL |
1386 | // DPkgPM::Go - Run the sequence /*{{{*/ |
1387 | // --------------------------------------------------------------------- | |
554bc997 | 1388 | /* This globs the operations and calls dpkg |
34d6563e | 1389 | * |
e6ad8031 MV |
1390 | * If it is called with a progress object apt will report the install |
1391 | * progress to this object. It maps the dpkg states a package goes | |
1392 | * through to human readable (and i10n-able) | |
75ef8f14 | 1393 | * names and calculates a percentage for each step. |
34d6563e | 1394 | */ |
4326680d DK |
1395 | static bool ItemIsEssential(pkgDPkgPM::Item const &I) |
1396 | { | |
1397 | static auto const cachegen = _config->Find("pkgCacheGen::Essential"); | |
1398 | if (cachegen == "none" || cachegen == "native") | |
1399 | return true; | |
1400 | if (unlikely(I.Pkg.end())) | |
1401 | return true; | |
1402 | return (I.Pkg->Flags & pkgCache::Flag::Essential) != 0; | |
1403 | } | |
1404 | bool pkgDPkgPM::ExpandPendingCalls(std::vector<Item> &List, pkgDepCache &Cache) | |
03e39e59 | 1405 | { |
bfc0933a DK |
1406 | { |
1407 | std::unordered_set<decltype(pkgCache::Package::ID)> alreadyRemoved; | |
1408 | for (auto && I : List) | |
1409 | if (I.Op == Item::Remove || I.Op == Item::Purge) | |
1410 | alreadyRemoved.insert(I.Pkg->ID); | |
4326680d | 1411 | std::remove_reference<decltype(List)>::type AppendList; |
bfc0933a DK |
1412 | for (auto Pkg = Cache.PkgBegin(); Pkg.end() == false; ++Pkg) |
1413 | if (Cache[Pkg].Delete() && alreadyRemoved.insert(Pkg->ID).second == true) | |
1414 | AppendList.emplace_back(Cache[Pkg].Purge() ? Item::Purge : Item::Remove, Pkg); | |
1415 | std::move(AppendList.begin(), AppendList.end(), std::back_inserter(List)); | |
1416 | } | |
9ffbac99 DK |
1417 | { |
1418 | std::unordered_set<decltype(pkgCache::Package::ID)> alreadyConfigured; | |
1419 | for (auto && I : List) | |
1420 | if (I.Op == Item::Configure) | |
1421 | alreadyConfigured.insert(I.Pkg->ID); | |
4326680d | 1422 | std::remove_reference<decltype(List)>::type AppendList; |
9ffbac99 DK |
1423 | for (auto && I : List) |
1424 | if (I.Op == Item::Install && alreadyConfigured.insert(I.Pkg->ID).second == true) | |
1425 | AppendList.emplace_back(Item::Configure, I.Pkg); | |
1426 | for (auto Pkg = Cache.PkgBegin(); Pkg.end() == false; ++Pkg) | |
1427 | if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure && alreadyConfigured.insert(Pkg->ID).second == true) | |
1428 | AppendList.emplace_back(Item::Configure, Pkg); | |
1429 | std::move(AppendList.begin(), AppendList.end(), std::back_inserter(List)); | |
1430 | } | |
4326680d DK |
1431 | return true; |
1432 | } | |
1433 | bool pkgDPkgPM::Go(APT::Progress::PackageManager *progress) | |
1434 | { | |
4326680d | 1435 | // explicitely remove&configure everything for hookscripts and progress building |
28557f94 DK |
1436 | // we need them only temporarily through, so keep the length and erase afterwards |
1437 | decltype(List)::const_iterator::difference_type explicitIdx = | |
1438 | std::distance(List.cbegin(), List.cend()); | |
4326680d | 1439 | ExpandPendingCalls(List, Cache); |
d3930f87 | 1440 | |
70ff288b DK |
1441 | /* if dpkg told us that it has already done everything to the package we wanted it to do, |
1442 | we shouldn't ask it for "more" later. That can e.g. happen if packages without conffiles | |
1443 | are purged as they will have pass through the purge states on remove already */ | |
1444 | auto const StripAlreadyDoneFrom = [&](APT::VersionVector & Pending) { | |
7ec34330 DK |
1445 | Pending.erase(std::remove_if(Pending.begin(), Pending.end(), [&](pkgCache::VerIterator const &Ver) { |
1446 | auto const PN = Ver.ParentPkg().FullName(); | |
70ff288b DK |
1447 | auto const POD = PackageOpsDone.find(PN); |
1448 | if (POD == PackageOpsDone.end()) | |
1449 | return false; | |
1450 | return PackageOps[PN].size() <= POD->second; | |
7ec34330 DK |
1451 | }), Pending.end()); |
1452 | }; | |
1453 | ||
b1803e01 | 1454 | pkgPackageManager::SigINTStop = false; |
e6ad8031 | 1455 | d->progress = progress; |
b1803e01 | 1456 | |
86fc2ca8 | 1457 | // Generate the base argument list for dpkg |
8d6d3f00 DK |
1458 | std::vector<std::string> const sArgs = debSystem::GetDpkgBaseCommand(); |
1459 | std::vector<const char *> Args(sArgs.size(), NULL); | |
1460 | std::transform(sArgs.begin(), sArgs.end(), Args.begin(), | |
1461 | [](std::string const &s) { return s.c_str(); }); | |
5a978348 | 1462 | unsigned long long const StartSize = std::accumulate(sArgs.begin(), sArgs.end(), 0llu, |
8d6d3f00 | 1463 | [](unsigned long long const i, std::string const &s) { return i + s.length(); }); |
86fc2ca8 | 1464 | size_t const BaseArgs = Args.size(); |
86fc2ca8 | 1465 | |
17745b02 MV |
1466 | fd_set rfds; |
1467 | struct timespec tv; | |
17745b02 | 1468 | |
a3cada6a | 1469 | // try to figure out the max environment size |
28460cb2 | 1470 | int OSArgMax = sysconf(_SC_ARG_MAX); |
a3cada6a MV |
1471 | if(OSArgMax < 0) |
1472 | OSArgMax = 32*1024; | |
1473 | OSArgMax -= EnvironmentSize() - 2*1024; | |
1474 | unsigned int const MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes", OSArgMax); | |
0dd19915 | 1475 | bool const NoTriggers = _config->FindB("DPkg::NoTriggers", true); |
aff4e2f1 | 1476 | |
6dd55be7 AL |
1477 | if (RunScripts("DPkg::Pre-Invoke") == false) |
1478 | return false; | |
db0c350f AL |
1479 | |
1480 | if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false) | |
1481 | return false; | |
fc2d32c0 | 1482 | |
309f497b DK |
1483 | auto const noopDPkgInvocation = _config->FindB("Debug::pkgDPkgPM",false); |
1484 | // store auto-bits as they are supposed to be after dpkg is run | |
1485 | if (noopDPkgInvocation == false) | |
1486 | Cache.writeStateFile(NULL); | |
1487 | ||
f4959924 DK |
1488 | bool dpkg_recursive_install = _config->FindB("dpkg::install::recursive", false); |
1489 | if (_config->FindB("dpkg::install::recursive::force", false) == false) | |
1490 | { | |
1491 | // dpkg uses a sorted treewalk since that version which enables the workaround to work | |
1492 | auto const dpkgpkg = Cache.FindPkg("dpkg"); | |
1493 | if (likely(dpkgpkg.end() == false && dpkgpkg->CurrentVer != 0)) | |
1494 | dpkg_recursive_install = Cache.VS().CmpVersion("1.18.5", dpkgpkg.CurrentVer().VerStr()) <= 0; | |
1495 | } | |
1496 | // no point in doing this dance for a handful of packages only | |
1497 | unsigned int const dpkg_recursive_install_min = _config->FindB("dpkg::install::recursive::minimum", 5); | |
1498 | // FIXME: workaround for dpkg bug, see our ./test-bug-740843-versioned-up-down-breaks test | |
1499 | bool const dpkg_recursive_install_numbered = _config->FindB("dpkg::install::recursive::numbered", true); | |
1500 | ||
6fad3c24 MV |
1501 | // for the progress |
1502 | BuildPackagesProgressMap(); | |
75ef8f14 | 1503 | |
83e5cffc DK |
1504 | APT::StateChanges approvedStates; |
1505 | if (_config->FindB("dpkg::selection::remove::approved", true)) | |
1506 | { | |
1507 | for (auto && I : List) | |
1508 | if (I.Op == Item::Purge) | |
1509 | approvedStates.Purge(FindToBeRemovedVersion(I.Pkg)); | |
1510 | else if (I.Op == Item::Remove) | |
1511 | approvedStates.Remove(FindToBeRemovedVersion(I.Pkg)); | |
1512 | } | |
1513 | ||
1514 | // Skip removes if we install another architecture of this package soon (crossgrade) | |
1515 | // We can't just skip them all the time as it could be an ordering requirement [of another package] | |
1516 | if ((approvedStates.Remove().empty() == false || approvedStates.Purge().empty() == false) && | |
1517 | _config->FindB("dpkg::remove::crossgrade::implicit", true) == true) | |
1518 | { | |
1519 | std::unordered_set<decltype(pkgCache::Package::ID)> crossgraded; | |
1520 | std::vector<std::pair<Item*, std::string>> toCrossgrade; | |
1521 | auto const PlanedEnd = std::next(List.begin(), explicitIdx); | |
1522 | for (auto I = List.begin(); I != PlanedEnd; ++I) | |
1523 | { | |
1524 | if (I->Op != Item::Remove && I->Op != Item::Purge) | |
1525 | continue; | |
1526 | ||
1527 | auto const Grp = I->Pkg.Group(); | |
53f3fc59 DK |
1528 | size_t installedInstances = 0, wannabeInstances = 0; |
1529 | bool multiArchInstances = false; | |
83e5cffc | 1530 | for (auto Pkg = Grp.PackageList(); Pkg.end() == false; Pkg = Grp.NextPkg(Pkg)) |
53f3fc59 DK |
1531 | { |
1532 | if (Pkg->CurrentVer != 0) | |
1533 | { | |
83e5cffc | 1534 | ++installedInstances; |
53f3fc59 DK |
1535 | if (Cache[Pkg].Delete() == false) |
1536 | ++wannabeInstances; | |
1537 | } | |
1538 | else if (PackageOps.find(Pkg.FullName()) != PackageOps.end()) | |
1539 | ++wannabeInstances; | |
1540 | if (multiArchInstances == false) | |
1541 | { | |
1542 | auto const V = Cache[Pkg].InstVerIter(Cache); | |
1543 | if (V.end() == false && (Pkg->CurrentVer == 0 || V != Pkg.CurrentVer())) | |
1544 | multiArchInstances = ((V->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same); | |
1545 | } | |
1546 | } | |
1547 | /* theoretically the installed check would be enough as some wannabe will | |
1548 | be first and hence be the crossgrade we were looking for, but #844300 | |
1549 | prevents this so we keep these situations explicit removes. | |
1550 | It is also the reason why neither of them can be a M-A:same package */ | |
1551 | if (installedInstances == 1 && wannabeInstances == 1 && multiArchInstances == false) | |
83e5cffc DK |
1552 | { |
1553 | auto const FirstInstall = std::find_if_not(I, List.end(), | |
1554 | [](Item const &i) { return i.Op == Item::Remove || i.Op == Item::Purge; }); | |
1555 | auto const LastInstall = std::find_if_not(FirstInstall, List.end(), | |
1556 | [](Item const &i) { return i.Op == Item::Install; }); | |
1557 | auto const crosser = std::find_if(FirstInstall, LastInstall, | |
1558 | [&I](Item const &i) { return i.Pkg->Group == I->Pkg->Group; }); | |
1559 | if (crosser != LastInstall) | |
1560 | { | |
1561 | crossgraded.insert(I->Pkg->ID); | |
1562 | toCrossgrade.emplace_back(&(*I), crosser->Pkg.FullName()); | |
1563 | } | |
1564 | } | |
1565 | } | |
1566 | for (auto I = PlanedEnd; I != List.end(); ++I) | |
1567 | { | |
1568 | if (I->Op != Item::Remove && I->Op != Item::Purge) | |
1569 | continue; | |
1570 | ||
1571 | auto const Grp = I->Pkg.Group(); | |
1572 | for (auto Pkg = Grp.PackageList(); Pkg.end() == false; Pkg = Grp.NextPkg(Pkg)) | |
1573 | { | |
1574 | if (Pkg == I->Pkg || Cache[Pkg].Install() == false) | |
1575 | continue; | |
1576 | toCrossgrade.emplace_back(&(*I), Pkg.FullName()); | |
1577 | break; | |
1578 | } | |
1579 | } | |
1580 | for (auto C : toCrossgrade) | |
1581 | { | |
1582 | // we never do purges on packages which are crossgraded, even if "requested" | |
1583 | if (C.first->Op == Item::Purge) | |
1584 | { | |
1585 | C.first->Op = Item::Remove; // crossgrades should never be purged | |
1586 | auto && Purges = approvedStates.Purge(); | |
1587 | auto const Ver = std::find_if( | |
1588 | #if __GNUC__ >= 5 || (__GNUC_MINOR__ >= 9 && __GNUC__ >= 4) | |
1589 | Purges.cbegin(), Purges.cend(), | |
1590 | #else | |
1591 | Purges.begin(), Purges.end(), | |
1592 | #endif | |
1593 | [&C](pkgCache::VerIterator const &V) { return V.ParentPkg() == C.first->Pkg; }); | |
1594 | approvedStates.Remove(*Ver); | |
1595 | Purges.erase(Ver); | |
1596 | auto && RemOp = PackageOps[C.first->Pkg.FullName()]; | |
1597 | if (RemOp.size() == 5) | |
1598 | { | |
1599 | RemOp.erase(std::next(RemOp.begin(), 3), RemOp.end()); | |
1600 | PackagesTotal -= 2; | |
1601 | } | |
1602 | else | |
1603 | _error->Warning("Unexpected amount of planned ops for package %s: %lu", C.first->Pkg.FullName().c_str(), RemOp.size()); | |
1604 | } | |
1605 | } | |
1606 | if (crossgraded.empty() == false) | |
1607 | { | |
1608 | auto const oldsize = List.size(); | |
1609 | List.erase(std::remove_if(List.begin(), PlanedEnd, | |
1610 | [&crossgraded](Item const &i){ | |
1611 | return (i.Op == Item::Remove || i.Op == Item::Purge) && | |
1612 | crossgraded.find(i.Pkg->ID) != crossgraded.end(); | |
1613 | }), PlanedEnd); | |
1614 | explicitIdx -= (oldsize - List.size()); | |
1615 | } | |
1616 | } | |
1617 | ||
b820fd59 DK |
1618 | APT::StateChanges currentStates; |
1619 | if (_config->FindB("dpkg::selection::current::saveandrestore", true)) | |
1620 | { | |
1621 | for (auto Pkg = Cache.PkgBegin(); Pkg.end() == false; ++Pkg) | |
1622 | if (Pkg->CurrentVer == 0) | |
1623 | continue; | |
1624 | else if (Pkg->SelectedState == pkgCache::State::Purge) | |
1625 | currentStates.Purge(FindToBeRemovedVersion(Pkg)); | |
1626 | else if (Pkg->SelectedState == pkgCache::State::DeInstall) | |
1627 | currentStates.Remove(FindToBeRemovedVersion(Pkg)); | |
1628 | if (currentStates.empty() == false) | |
1629 | { | |
1630 | APT::StateChanges cleanStates; | |
1631 | for (auto && P: currentStates.Remove()) | |
1632 | cleanStates.Install(P); | |
1633 | for (auto && P: currentStates.Purge()) | |
1634 | cleanStates.Install(P); | |
1635 | if (cleanStates.Save(false) == false) | |
1636 | return _error->Error("Couldn't clean the currently selected dpkg states"); | |
1637 | } | |
1638 | } | |
83e5cffc | 1639 | |
e7d4e0cf DK |
1640 | if (_config->FindB("dpkg::selection::remove::approved", true)) |
1641 | { | |
e7d4e0cf DK |
1642 | if (approvedStates.Save(false) == false) |
1643 | { | |
1644 | _error->Error("Couldn't record the approved state changes as dpkg selection states"); | |
1645 | if (currentStates.Save(false) == false) | |
1646 | _error->Error("Couldn't restore dpkg selection states which were present before this interaction!"); | |
1647 | return false; | |
1648 | } | |
1649 | ||
7ec34330 DK |
1650 | List.erase(std::next(List.begin(), explicitIdx), List.end()); |
1651 | ||
1652 | std::vector<bool> toBeRemoved(Cache.Head().PackageCount, false); | |
1653 | for (auto && I: approvedStates.Remove()) | |
1654 | toBeRemoved[I.ParentPkg()->ID] = true; | |
1655 | for (auto && I: approvedStates.Purge()) | |
1656 | toBeRemoved[I.ParentPkg()->ID] = true; | |
1657 | ||
1658 | for (auto && I: List) | |
1659 | if (I.Op == Item::Remove || I.Op == Item::Purge) | |
1660 | toBeRemoved[I.Pkg->ID] = false; | |
1661 | ||
fb51ce32 DK |
1662 | bool const RemovePending = std::find(toBeRemoved.begin(), toBeRemoved.end(), true) != toBeRemoved.end(); |
1663 | bool const PurgePending = approvedStates.Purge().empty() == false; | |
1664 | if (RemovePending != false || PurgePending != false) | |
1665 | List.emplace_back(Item::ConfigurePending, pkgCache::PkgIterator()); | |
1666 | if (RemovePending) | |
7ec34330 | 1667 | List.emplace_back(Item::RemovePending, pkgCache::PkgIterator()); |
fb51ce32 | 1668 | if (PurgePending) |
7ec34330 DK |
1669 | List.emplace_back(Item::PurgePending, pkgCache::PkgIterator()); |
1670 | ||
1671 | // support subpressing of triggers processing for special | |
1672 | // cases like d-i that runs the triggers handling manually | |
1673 | if (_config->FindB("DPkg::ConfigurePending", true)) | |
1674 | List.emplace_back(Item::ConfigurePending, pkgCache::PkgIterator()); | |
e7d4e0cf | 1675 | } |
7ec34330 | 1676 | bool const TriggersPending = _config->FindB("DPkg::TriggersPending", false); |
b820fd59 | 1677 | |
697a1d8a | 1678 | d->stdin_is_dev_null = false; |
9983591d | 1679 | |
ff56e980 | 1680 | // create log |
2e1715ea | 1681 | OpenLog(); |
ff56e980 | 1682 | |
8d6d3f00 | 1683 | bool dpkgMultiArch = debSystem::SupportsMultiArch(); |
11bcbdb9 | 1684 | |
c3045b79 MV |
1685 | // start pty magic before the loop |
1686 | StartPtyMagic(); | |
1687 | ||
554bc997 | 1688 | // Tell the progress that its starting and fork dpkg |
4754718a | 1689 | d->progress->Start(d->master); |
177296df | 1690 | |
c3045b79 | 1691 | // this loop is runs once per dpkg operation |
7ec34330 | 1692 | vector<Item>::const_iterator I = List.cbegin(); |
a18456a5 | 1693 | while (I != List.end()) |
03e39e59 | 1694 | { |
5c23dbcc | 1695 | // Do all actions with the same Op in one run |
887f5036 | 1696 | vector<Item>::const_iterator J = I; |
5c23dbcc | 1697 | if (TriggersPending == true) |
f7f0d6c7 | 1698 | for (; J != List.end(); ++J) |
5c23dbcc DK |
1699 | { |
1700 | if (J->Op == I->Op) | |
1701 | continue; | |
1702 | if (J->Op != Item::TriggersPending) | |
1703 | break; | |
1704 | vector<Item>::const_iterator T = J + 1; | |
1705 | if (T != List.end() && T->Op == I->Op) | |
1706 | continue; | |
1707 | break; | |
1708 | } | |
7ec34330 DK |
1709 | else if (J->Op == Item::Remove || J->Op == Item::Purge) |
1710 | J = std::find_if(J, List.cend(), [](Item const &I) { return I.Op != Item::Remove && I.Op != Item::Purge; }); | |
5c23dbcc | 1711 | else |
7ec34330 | 1712 | J = std::find_if(J, List.cend(), [&J](Item const &I) { return I.Op != J->Op; }); |
30e1eab5 | 1713 | |
c92ece1a | 1714 | auto const size = (J - I) + 10; |
8e11253d | 1715 | |
11bcbdb9 | 1716 | // start with the baseset of arguments |
c92ece1a | 1717 | auto Size = StartSize; |
11bcbdb9 | 1718 | Args.erase(Args.begin() + BaseArgs, Args.end()); |
c92ece1a DK |
1719 | Args.reserve(size); |
1720 | // keep track of allocated strings for multiarch package names | |
1721 | std::vector<char *> Packages(size, nullptr); | |
edca7af0 | 1722 | |
75ef8f14 | 1723 | int fd[2]; |
319790f4 DK |
1724 | if (pipe(fd) != 0) |
1725 | return _error->Errno("pipe","Failed to create IPC pipe to dpkg"); | |
edca7af0 DK |
1726 | |
1727 | #define ADDARG(X) Args.push_back(X); Size += strlen(X) | |
1728 | #define ADDARGC(X) Args.push_back(X); Size += sizeof(X) - 1 | |
1729 | ||
1730 | ADDARGC("--status-fd"); | |
1731 | char status_fd_buf[20]; | |
75ef8f14 | 1732 | snprintf(status_fd_buf,sizeof(status_fd_buf),"%i", fd[1]); |
edca7af0 | 1733 | ADDARG(status_fd_buf); |
11b87a08 | 1734 | unsigned long const Op = I->Op; |
007dc9e0 | 1735 | |
0dd19915 | 1736 | if (NoTriggers == true && I->Op != Item::TriggersPending && |
fb51ce32 | 1737 | (I->Op != Item::ConfigurePending || std::next(I) != List.end())) |
0dd19915 DK |
1738 | { |
1739 | ADDARGC("--no-triggers"); | |
1740 | } | |
1741 | ||
03e39e59 AL |
1742 | switch (I->Op) |
1743 | { | |
1744 | case Item::Remove: | |
fc4b5c9f | 1745 | case Item::Purge: |
edca7af0 | 1746 | ADDARGC("--force-depends"); |
d3930f87 DK |
1747 | if (std::any_of(I, J, ItemIsEssential)) |
1748 | ADDARGC("--force-remove-essential"); | |
7ec34330 | 1749 | ADDARGC("--remove"); |
fc4b5c9f | 1750 | break; |
554bc997 | 1751 | |
03e39e59 | 1752 | case Item::Configure: |
edca7af0 | 1753 | ADDARGC("--configure"); |
03e39e59 | 1754 | break; |
3e9c4f70 DK |
1755 | |
1756 | case Item::ConfigurePending: | |
edca7af0 DK |
1757 | ADDARGC("--configure"); |
1758 | ADDARGC("--pending"); | |
3e9c4f70 DK |
1759 | break; |
1760 | ||
5e312de7 | 1761 | case Item::TriggersPending: |
edca7af0 DK |
1762 | ADDARGC("--triggers-only"); |
1763 | ADDARGC("--pending"); | |
5e312de7 DK |
1764 | break; |
1765 | ||
e7d4e0cf DK |
1766 | case Item::RemovePending: |
1767 | ADDARGC("--remove"); | |
1768 | ADDARGC("--pending"); | |
1769 | break; | |
1770 | ||
1771 | case Item::PurgePending: | |
1772 | ADDARGC("--purge"); | |
1773 | ADDARGC("--pending"); | |
1774 | break; | |
1775 | ||
03e39e59 | 1776 | case Item::Install: |
edca7af0 DK |
1777 | ADDARGC("--unpack"); |
1778 | ADDARGC("--auto-deconfigure"); | |
03e39e59 AL |
1779 | break; |
1780 | } | |
3e9c4f70 | 1781 | |
f4959924 | 1782 | char * tmpdir_to_free = nullptr; |
3e9c4f70 | 1783 | |
03e39e59 AL |
1784 | // Write in the file or package names |
1785 | if (I->Op == Item::Install) | |
30e1eab5 | 1786 | { |
f4959924 DK |
1787 | auto const installsToDo = J - I; |
1788 | if (dpkg_recursive_install == true && dpkg_recursive_install_min < installsToDo) | |
30e1eab5 | 1789 | { |
f4959924 DK |
1790 | std::string tmpdir; |
1791 | strprintf(tmpdir, "%s/apt-dpkg-install-XXXXXX", GetTempDir().c_str()); | |
1792 | tmpdir_to_free = strndup(tmpdir.data(), tmpdir.length()); | |
1793 | if (mkdtemp(tmpdir_to_free) == nullptr) | |
1794 | return _error->Errno("DPkg::Go", "mkdtemp of %s failed in preparation of calling dpkg unpack", tmpdir_to_free); | |
1795 | ||
1796 | char p = 1; | |
1797 | for (auto c = installsToDo - 1; (c = c/10) != 0; ++p); | |
1798 | for (unsigned long n = 0; I != J; ++n, ++I) | |
1799 | { | |
1800 | if (I->File[0] != '/') | |
1801 | return _error->Error("Internal Error, Pathname to install is not absolute '%s'",I->File.c_str()); | |
4f242a22 DK |
1802 | auto file = flNotDir(I->File); |
1803 | if (flExtension(file) != "deb") | |
1804 | file.append(".deb"); | |
f4959924 DK |
1805 | std::string linkpath; |
1806 | if (dpkg_recursive_install_numbered) | |
1807 | strprintf(linkpath, "%s/%.*lu-%s", tmpdir_to_free, p, n, file.c_str()); | |
1808 | else | |
1809 | strprintf(linkpath, "%s/%s", tmpdir_to_free, file.c_str()); | |
1810 | if (symlink(I->File.c_str(), linkpath.c_str()) != 0) | |
1811 | return _error->Errno("DPkg::Go", "Symlinking %s to %s failed!", I->File.c_str(), linkpath.c_str()); | |
1812 | } | |
1813 | ADDARGC("--recursive"); | |
1814 | ADDARG(tmpdir_to_free); | |
1815 | } | |
1816 | else | |
1817 | { | |
1818 | for (;I != J && Size < MaxArgBytes; ++I) | |
1819 | { | |
1820 | if (I->File[0] != '/') | |
1821 | return _error->Error("Internal Error, Pathname to install is not absolute '%s'",I->File.c_str()); | |
1822 | Args.push_back(I->File.c_str()); | |
1823 | Size += I->File.length(); | |
1824 | } | |
30e1eab5 | 1825 | } |
edca7af0 | 1826 | } |
7ec34330 DK |
1827 | else if (I->Op == Item::RemovePending) |
1828 | { | |
1829 | ++I; | |
70ff288b | 1830 | StripAlreadyDoneFrom(approvedStates.Remove()); |
7ec34330 DK |
1831 | if (approvedStates.Remove().empty()) |
1832 | continue; | |
1833 | } | |
1834 | else if (I->Op == Item::PurgePending) | |
1835 | { | |
1836 | ++I; | |
1837 | // explicit removes of packages without conffiles passthrough the purge states instantly, too. | |
1838 | // Setting these non-installed packages up for purging generates 'unknown pkg' warnings from dpkg | |
70ff288b | 1839 | StripAlreadyDoneFrom(approvedStates.Purge()); |
7ec34330 DK |
1840 | if (approvedStates.Purge().empty()) |
1841 | continue; | |
1842 | std::remove_reference<decltype(approvedStates.Remove())>::type approvedRemoves; | |
1843 | std::swap(approvedRemoves, approvedStates.Remove()); | |
1844 | // we apply it again here as an explicit remove in the ordering will have cleared the purge state | |
1845 | if (approvedStates.Save(false) == false) | |
1846 | { | |
1847 | _error->Error("Couldn't record the approved purges as dpkg selection states"); | |
1848 | if (currentStates.Save(false) == false) | |
1849 | _error->Error("Couldn't restore dpkg selection states which were present before this interaction!"); | |
1850 | return false; | |
1851 | } | |
1852 | std::swap(approvedRemoves, approvedStates.Remove()); | |
1853 | } | |
03e39e59 | 1854 | else |
30e1eab5 | 1855 | { |
8e11253d | 1856 | string const nativeArch = _config->Find("APT::Architecture"); |
7ec34330 | 1857 | unsigned long const oldSize = I->Pkg.end() == false ? Size : 0; |
f7f0d6c7 | 1858 | for (;I != J && Size < MaxArgBytes; ++I) |
30e1eab5 | 1859 | { |
3e9c4f70 DK |
1860 | if((*I).Pkg.end() == true) |
1861 | continue; | |
b4017ba7 | 1862 | if (I->Op == Item::Configure && disappearedPkgs.find(I->Pkg.FullName(true)) != disappearedPkgs.end()) |
642ebc1a | 1863 | continue; |
86fc2ca8 | 1864 | // We keep this here to allow "smooth" transitions from e.g. multiarch dpkg/ubuntu to dpkg/debian |
c919ad6e DK |
1865 | if (dpkgMultiArch == false && (I->Pkg.Arch() == nativeArch || |
1866 | strcmp(I->Pkg.Arch(), "all") == 0 || | |
1867 | strcmp(I->Pkg.Arch(), "none") == 0)) | |
edca7af0 DK |
1868 | { |
1869 | char const * const name = I->Pkg.Name(); | |
1870 | ADDARG(name); | |
1871 | } | |
8e11253d SL |
1872 | else |
1873 | { | |
7720666f | 1874 | pkgCache::VerIterator PkgVer; |
3a5ec305 | 1875 | std::string name = I->Pkg.Name(); |
7ec34330 DK |
1876 | if (Op == Item::Remove) |
1877 | PkgVer = I->Pkg.CurrentVer(); | |
1878 | else if (Op == Item::Purge) | |
1879 | { | |
1880 | // we purge later with --purge --pending, so if it isn't installed (aka rc-only), skip it here | |
1881 | PkgVer = I->Pkg.CurrentVer(); | |
1882 | if (PkgVer.end() == true) | |
1883 | continue; | |
1884 | } | |
7720666f | 1885 | else |
2a2a7ef4 | 1886 | PkgVer = Cache[I->Pkg].InstVerIter(Cache); |
c919ad6e DK |
1887 | if (strcmp(I->Pkg.Arch(), "none") == 0) |
1888 | ; // never arch-qualify a package without an arch | |
1889 | else if (PkgVer.end() == false) | |
a1355481 MV |
1890 | name.append(":").append(PkgVer.Arch()); |
1891 | else | |
1892 | _error->Warning("Can not find PkgVer for '%s'", name.c_str()); | |
3a5ec305 | 1893 | char * const fullname = strdup(name.c_str()); |
edca7af0 DK |
1894 | Packages.push_back(fullname); |
1895 | ADDARG(fullname); | |
8e11253d | 1896 | } |
6f31b247 DK |
1897 | } |
1898 | // skip configure action if all sheduled packages disappeared | |
1899 | if (oldSize == Size) | |
1900 | continue; | |
1901 | } | |
f4959924 | 1902 | #undef ADDARGC |
edca7af0 DK |
1903 | #undef ADDARG |
1904 | ||
30e1eab5 | 1905 | J = I; |
554bc997 | 1906 | |
309f497b | 1907 | if (noopDPkgInvocation == true) |
30e1eab5 | 1908 | { |
edca7af0 DK |
1909 | for (std::vector<const char *>::const_iterator a = Args.begin(); |
1910 | a != Args.end(); ++a) | |
1911 | clog << *a << ' '; | |
11bcbdb9 | 1912 | clog << endl; |
3d8232bf DK |
1913 | for (std::vector<char *>::const_iterator p = Packages.begin(); |
1914 | p != Packages.end(); ++p) | |
1915 | free(*p); | |
1916 | Packages.clear(); | |
7977ed04 DK |
1917 | close(fd[0]); |
1918 | close(fd[1]); | |
f4959924 | 1919 | cleanUpTmpDir(tmpdir_to_free); |
30e1eab5 AL |
1920 | continue; |
1921 | } | |
edca7af0 DK |
1922 | Args.push_back(NULL); |
1923 | ||
03e39e59 AL |
1924 | cout << flush; |
1925 | clog << flush; | |
1926 | cerr << flush; | |
1927 | ||
554bc997 | 1928 | /* Mask off sig int/quit. We do this because dpkg also does when |
03e39e59 | 1929 | it forks scripts. What happens is that when you hit ctrl-c it sends |
554bc997 | 1930 | it to all processes in the group. Since dpkg ignores the signal |
03e39e59 | 1931 | it doesn't die but we do! So we must also ignore it */ |
7f9a6360 | 1932 | sighandler_t old_SIGQUIT = signal(SIGQUIT,SIG_IGN); |
590f1923 | 1933 | sighandler_t old_SIGINT = signal(SIGINT,SigINT); |
554bc997 | 1934 | |
1cecd437 | 1935 | // Check here for any SIGINT |
554bc997 | 1936 | if (pkgPackageManager::SigINTStop && (Op == Item::Remove || Op == Item::Purge || Op == Item::Install)) |
11b87a08 | 1937 | break; |
554bc997 | 1938 | |
73e598c3 MV |
1939 | // ignore SIGHUP as well (debian #463030) |
1940 | sighandler_t old_SIGHUP = signal(SIGHUP,SIG_IGN); | |
1941 | ||
e45c4617 MV |
1942 | // now run dpkg |
1943 | d->progress->StartDpkg(); | |
1944 | std::set<int> KeepFDs; | |
1945 | KeepFDs.insert(fd[1]); | |
96ae6de5 | 1946 | MergeKeepFdsFromConfiguration(KeepFDs); |
e45c4617 | 1947 | pid_t Child = ExecFork(KeepFDs); |
03e39e59 AL |
1948 | if (Child == 0) |
1949 | { | |
223ae57d DK |
1950 | // This is the child |
1951 | SetupSlavePtyMagic(); | |
75ef8f14 | 1952 | close(fd[0]); // close the read end of the pipe |
d8cb4aa4 | 1953 | |
8d6d3f00 | 1954 | debSystem::DpkgChrootDirectory(); |
4b7cfe96 | 1955 | |
cf544e14 | 1956 | if (chdir(_config->FindDir("DPkg::Run-Directory","/").c_str()) != 0) |
0dbb95d8 | 1957 | _exit(100); |
af6b4169 | 1958 | |
421ff807 | 1959 | if (_config->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO)) |
8b5fe26c | 1960 | { |
b2959910 MV |
1961 | int Flags; |
1962 | int dummy = 0; | |
8b5fe26c AL |
1963 | if ((Flags = fcntl(STDIN_FILENO,F_GETFL,dummy)) < 0) |
1964 | _exit(100); | |
554bc997 | 1965 | |
8b5fe26c AL |
1966 | // Discard everything in stdin before forking dpkg |
1967 | if (fcntl(STDIN_FILENO,F_SETFL,Flags | O_NONBLOCK) < 0) | |
1968 | _exit(100); | |
554bc997 | 1969 | |
8b5fe26c | 1970 | while (read(STDIN_FILENO,&dummy,1) == 1); |
554bc997 | 1971 | |
8b5fe26c AL |
1972 | if (fcntl(STDIN_FILENO,F_SETFL,Flags & (~(long)O_NONBLOCK)) < 0) |
1973 | _exit(100); | |
1974 | } | |
d8cb4aa4 | 1975 | |
ad24ea39 DK |
1976 | // if color support isn't enabled/disabled explicitly tell |
1977 | // dpkg to use the same state apt is using for its color support | |
1978 | if (_config->FindB("APT::Color", false) == true) | |
1979 | setenv("DPKG_COLORS", "always", 0); | |
1980 | else | |
1981 | setenv("DPKG_COLORS", "never", 0); | |
1982 | ||
edca7af0 | 1983 | execvp(Args[0], (char**) &Args[0]); |
03e39e59 | 1984 | cerr << "Could not exec dpkg!" << endl; |
0dbb95d8 | 1985 | _exit(100); |
554bc997 | 1986 | } |
75ef8f14 MV |
1987 | |
1988 | // we read from dpkg here | |
887f5036 | 1989 | int const _dpkgin = fd[0]; |
75ef8f14 MV |
1990 | close(fd[1]); // close the write end of the pipe |
1991 | ||
554bc997 DK |
1992 | // apply ionice |
1993 | if (_config->FindB("DPkg::UseIoNice", false) == true) | |
1994 | ionice(Child); | |
1995 | ||
97efd303 | 1996 | // setups fds |
c3045b79 MV |
1997 | sigemptyset(&d->sigmask); |
1998 | sigprocmask(SIG_BLOCK,&d->sigmask,&d->original_sigmask); | |
7052511e | 1999 | |
edca7af0 DK |
2000 | /* free vectors (and therefore memory) as we don't need the included data anymore */ |
2001 | for (std::vector<char *>::const_iterator p = Packages.begin(); | |
2002 | p != Packages.end(); ++p) | |
2003 | free(*p); | |
2004 | Packages.clear(); | |
8e11253d | 2005 | |
887f5036 | 2006 | // the result of the waitpid call |
554bc997 | 2007 | int Status = 0; |
887f5036 | 2008 | int res; |
6a1de8b7 | 2009 | bool waitpid_failure = false; |
75ef8f14 MV |
2010 | while ((res=waitpid(Child,&Status, WNOHANG)) != Child) { |
2011 | if(res < 0) { | |
75ef8f14 MV |
2012 | // error handling, waitpid returned -1 |
2013 | if (errno == EINTR) | |
2014 | continue; | |
6a1de8b7 DK |
2015 | waitpid_failure = true; |
2016 | break; | |
75ef8f14 | 2017 | } |
d8cb4aa4 MV |
2018 | |
2019 | // wait for input or output here | |
955a6ddb | 2020 | FD_ZERO(&rfds); |
748a2177 DK |
2021 | if (d->master >= 0 && d->direct_stdin == false && d->stdin_is_dev_null == false) |
2022 | FD_SET(STDIN_FILENO, &rfds); | |
955a6ddb | 2023 | FD_SET(_dpkgin, &rfds); |
c3045b79 MV |
2024 | if(d->master >= 0) |
2025 | FD_SET(d->master, &rfds); | |
e45c4617 MV |
2026 | tv.tv_sec = 0; |
2027 | tv.tv_nsec = d->progress->GetPulseInterval(); | |
554bc997 | 2028 | auto const select_ret = pselect(max(d->master, _dpkgin)+1, &rfds, NULL, NULL, |
c3045b79 | 2029 | &tv, &d->original_sigmask); |
e45c4617 | 2030 | d->progress->Pulse(); |
554bc997 DK |
2031 | if (select_ret == 0) |
2032 | continue; | |
2033 | else if (select_ret < 0 && errno == EINTR) | |
2034 | continue; | |
2035 | else if (select_ret < 0) | |
2036 | { | |
2037 | perror("select() returned error"); | |
2038 | continue; | |
2039 | } | |
2040 | ||
c3045b79 MV |
2041 | if(d->master >= 0 && FD_ISSET(d->master, &rfds)) |
2042 | DoTerminalPty(d->master); | |
2043 | if(d->master >= 0 && FD_ISSET(0, &rfds)) | |
2044 | DoStdin(d->master); | |
955a6ddb | 2045 | if(FD_ISSET(_dpkgin, &rfds)) |
e6ad8031 | 2046 | DoDpkgStatusFd(_dpkgin); |
03e39e59 | 2047 | } |
75ef8f14 | 2048 | close(_dpkgin); |
03e39e59 AL |
2049 | |
2050 | // Restore sig int/quit | |
7f9a6360 AL |
2051 | signal(SIGQUIT,old_SIGQUIT); |
2052 | signal(SIGINT,old_SIGINT); | |
d9ec0fac | 2053 | signal(SIGHUP,old_SIGHUP); |
6a1de8b7 | 2054 | |
f4959924 DK |
2055 | cleanUpTmpDir(tmpdir_to_free); |
2056 | ||
6a1de8b7 DK |
2057 | if (waitpid_failure == true) |
2058 | { | |
2059 | strprintf(d->dpkg_error, "Sub-process %s couldn't be waited for.",Args[0]); | |
2060 | _error->Error("%s", d->dpkg_error.c_str()); | |
2061 | break; | |
2062 | } | |
2063 | ||
6dd55be7 AL |
2064 | // Check for an error code. |
2065 | if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0) | |
2066 | { | |
8d89cda7 | 2067 | // if it was set to "keep-dpkg-running" then we won't return |
c70496f9 MV |
2068 | // here but keep the loop going and just report it as a error |
2069 | // for later | |
887f5036 | 2070 | bool const stopOnError = _config->FindB("Dpkg::StopOnError",true); |
c70496f9 | 2071 | |
d151adbf | 2072 | if (WIFSIGNALED(Status) != 0 && WTERMSIG(Status) == SIGSEGV) |
697a1d8a | 2073 | strprintf(d->dpkg_error, "Sub-process %s received a segmentation fault.",Args[0]); |
c70496f9 | 2074 | else if (WIFEXITED(Status) != 0) |
697a1d8a | 2075 | strprintf(d->dpkg_error, "Sub-process %s returned an error code (%u)",Args[0],WEXITSTATUS(Status)); |
d151adbf | 2076 | else |
697a1d8a | 2077 | strprintf(d->dpkg_error, "Sub-process %s exited unexpectedly",Args[0]); |
d151adbf | 2078 | _error->Error("%s", d->dpkg_error.c_str()); |
9169c871 | 2079 | |
d151adbf DK |
2080 | if(stopOnError) |
2081 | break; | |
2082 | } | |
03e39e59 | 2083 | } |
a38e023c | 2084 | // dpkg is done at this point |
c3045b79 | 2085 | StopPtyMagic(); |
2e1715ea | 2086 | CloseLog(); |
af6b4169 | 2087 | |
e7d4e0cf DK |
2088 | if (d->dpkg_error.empty() == false) |
2089 | { | |
7ec34330 | 2090 | // no point in reseting packages we already completed removal for |
70ff288b DK |
2091 | StripAlreadyDoneFrom(approvedStates.Remove()); |
2092 | StripAlreadyDoneFrom(approvedStates.Purge()); | |
e7d4e0cf DK |
2093 | APT::StateChanges undo; |
2094 | auto && undoRem = approvedStates.Remove(); | |
7ec34330 | 2095 | std::move(undoRem.begin(), undoRem.end(), std::back_inserter(undo.Install())); |
e7d4e0cf | 2096 | auto && undoPur = approvedStates.Purge(); |
7ec34330 | 2097 | std::move(undoPur.begin(), undoPur.end(), std::back_inserter(undo.Install())); |
e7d4e0cf DK |
2098 | approvedStates.clear(); |
2099 | if (undo.Save(false) == false) | |
2100 | _error->Error("Couldn't revert dpkg selection for approved remove/purge after an error was encountered!"); | |
2101 | } | |
70ff288b DK |
2102 | |
2103 | StripAlreadyDoneFrom(currentStates.Remove()); | |
2104 | StripAlreadyDoneFrom(currentStates.Purge()); | |
b820fd59 DK |
2105 | if (currentStates.Save(false) == false) |
2106 | _error->Error("Couldn't restore dpkg selection states which were present before this interaction!"); | |
2107 | ||
11b87a08 CB |
2108 | if (pkgPackageManager::SigINTStop) |
2109 | _error->Warning(_("Operation was interrupted before it could finish")); | |
6dd55be7 | 2110 | |
309f497b | 2111 | if (noopDPkgInvocation == false) |
388f2962 | 2112 | { |
dabe9e24 DK |
2113 | if (d->dpkg_error.empty() && (PackagesDone + 1) != PackagesTotal) |
2114 | { | |
2115 | std::string pkglist; | |
2116 | for (auto const &PO: PackageOps) | |
2117 | if (PO.second.size() != PackageOpsDone[PO.first]) | |
2118 | { | |
2119 | if (pkglist.empty() == false) | |
2120 | pkglist.append(" "); | |
2121 | pkglist.append(PO.first); | |
2122 | } | |
2123 | /* who cares about correct progress? As we depend on it for skipping actions | |
2124 | our parsing should be correct. People will no doubt be confused if they see | |
2125 | this message, but the dpkg warning about unknown packages isn't much better | |
2126 | from a user POV and combined we might have a chance to figure out what is wrong */ | |
2127 | _error->Warning("APT had planned for dpkg to do more than it reported back (%u vs %u).\n" | |
2128 | "Affected packages: %s", PackagesDone, PackagesTotal, pkglist.c_str()); | |
2129 | } | |
2130 | ||
388f2962 DK |
2131 | std::string const oldpkgcache = _config->FindFile("Dir::cache::pkgcache"); |
2132 | if (oldpkgcache.empty() == false && RealFileExists(oldpkgcache) == true && | |
ce1f3a2c | 2133 | RemoveFile("pkgDPkgPM::Go", oldpkgcache)) |
388f2962 DK |
2134 | { |
2135 | std::string const srcpkgcache = _config->FindFile("Dir::cache::srcpkgcache"); | |
2136 | if (srcpkgcache.empty() == false && RealFileExists(srcpkgcache) == true) | |
2137 | { | |
2138 | _error->PushToStack(); | |
2139 | pkgCacheFile CacheFile; | |
2140 | CacheFile.BuildCaches(NULL, true); | |
2141 | _error->RevertToStack(); | |
2142 | } | |
2143 | } | |
2144 | } | |
2145 | ||
309f497b DK |
2146 | // disappearing packages can forward their auto-bit |
2147 | if (disappearedPkgs.empty() == false) | |
2148 | Cache.writeStateFile(NULL); | |
6a1de8b7 DK |
2149 | |
2150 | d->progress->Stop(); | |
2151 | ||
2152 | if (RunScripts("DPkg::Post-Invoke") == false) | |
2153 | return false; | |
2154 | ||
d151adbf | 2155 | return d->dpkg_error.empty(); |
03e39e59 | 2156 | } |
590f1923 | 2157 | |
65512241 | 2158 | void SigINT(int /*sig*/) { |
b1803e01 DK |
2159 | pkgPackageManager::SigINTStop = true; |
2160 | } | |
03e39e59 | 2161 | /*}}}*/ |
281daf46 AL |
2162 | // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/ |
2163 | // --------------------------------------------------------------------- | |
2164 | /* */ | |
554bc997 | 2165 | void pkgDPkgPM::Reset() |
281daf46 AL |
2166 | { |
2167 | List.erase(List.begin(),List.end()); | |
2168 | } | |
2169 | /*}}}*/ | |
5e457a93 MV |
2170 | // pkgDpkgPM::WriteApportReport - write out error report pkg failure /*{{{*/ |
2171 | // --------------------------------------------------------------------- | |
2172 | /* */ | |
554bc997 | 2173 | void pkgDPkgPM::WriteApportReport(const char *pkgpath, const char *errormsg) |
5e457a93 | 2174 | { |
dd61e64d DK |
2175 | // If apport doesn't exist or isn't installed do nothing |
2176 | // This e.g. prevents messages in 'universes' without apport | |
2177 | pkgCache::PkgIterator apportPkg = Cache.FindPkg("apport"); | |
2178 | if (apportPkg.end() == true || apportPkg->CurrentVer == 0) | |
2179 | return; | |
2180 | ||
765190e4 | 2181 | string pkgname, reportfile, pkgver, arch; |
5e457a93 MV |
2182 | string::size_type pos; |
2183 | FILE *report; | |
2184 | ||
6c50447e | 2185 | if (_config->FindB("Dpkg::ApportFailureReport", true) == false) |
ff38d63b MV |
2186 | { |
2187 | std::clog << "configured to not write apport reports" << std::endl; | |
5e457a93 | 2188 | return; |
ff38d63b | 2189 | } |
5e457a93 | 2190 | |
d6a4afcb | 2191 | // only report the first errors |
5273f1bf | 2192 | if(pkgFailures > _config->FindI("APT::Apport::MaxReports", 3)) |
ff38d63b MV |
2193 | { |
2194 | std::clog << _("No apport report written because MaxReports is reached already") << std::endl; | |
5e457a93 | 2195 | return; |
ff38d63b | 2196 | } |
5e457a93 | 2197 | |
554bc997 | 2198 | // check if its not a follow up error |
d6a4afcb MV |
2199 | const char *needle = dgettext("dpkg", "dependency problems - leaving unconfigured"); |
2200 | if(strstr(errormsg, needle) != NULL) { | |
2201 | std::clog << _("No apport report written because the error message indicates its a followup error from a previous failure.") << std::endl; | |
2202 | return; | |
2203 | } | |
2204 | ||
554bc997 | 2205 | // do not report disk-full failures |
2f0d5dea MV |
2206 | if(strstr(errormsg, strerror(ENOSPC)) != NULL) { |
2207 | std::clog << _("No apport report written because the error message indicates a disk full error") << std::endl; | |
2208 | return; | |
2209 | } | |
2210 | ||
554bc997 | 2211 | // do not report out-of-memory failures |
581b5568 DK |
2212 | if(strstr(errormsg, strerror(ENOMEM)) != NULL || |
2213 | strstr(errormsg, "failed to allocate memory") != NULL) { | |
3024a85e MV |
2214 | std::clog << _("No apport report written because the error message indicates a out of memory error") << std::endl; |
2215 | return; | |
2216 | } | |
2217 | ||
581b5568 DK |
2218 | // do not report bugs regarding inaccessible local files |
2219 | if(strstr(errormsg, strerror(ENOENT)) != NULL || | |
2220 | strstr(errormsg, "cannot access archive") != NULL) { | |
2221 | std::clog << _("No apport report written because the error message indicates an issue on the local system") << std::endl; | |
076c46e5 MZ |
2222 | return; |
2223 | } | |
2224 | ||
581b5568 DK |
2225 | // do not report errors encountered when decompressing packages |
2226 | if(strstr(errormsg, "--fsys-tarfile returned error exit status 2") != NULL) { | |
2227 | std::clog << _("No apport report written because the error message indicates an issue on the local system") << std::endl; | |
076c46e5 MZ |
2228 | return; |
2229 | } | |
2230 | ||
581b5568 DK |
2231 | // do not report dpkg I/O errors, this is a format string, so we compare |
2232 | // the prefix and the suffix of the error with the dpkg error message | |
2233 | vector<string> io_errors; | |
cbcdd3ee MV |
2234 | io_errors.push_back(string("failed to read")); |
2235 | io_errors.push_back(string("failed to write")); | |
2236 | io_errors.push_back(string("failed to seek")); | |
2237 | io_errors.push_back(string("unexpected end of file or stream")); | |
581b5568 | 2238 | |
9ce3cfc9 | 2239 | for (vector<string>::iterator I = io_errors.begin(); I != io_errors.end(); ++I) |
581b5568 DK |
2240 | { |
2241 | vector<string> list = VectorizeString(dgettext("dpkg", (*I).c_str()), '%'); | |
2242 | if (list.size() > 1) { | |
2243 | // we need to split %s, VectorizeString only allows char so we need | |
2244 | // to kill the "s" manually | |
2245 | if (list[1].size() > 1) { | |
2246 | list[1].erase(0, 1); | |
554bc997 | 2247 | if(strstr(errormsg, list[0].c_str()) && |
581b5568 DK |
2248 | strstr(errormsg, list[1].c_str())) { |
2249 | std::clog << _("No apport report written because the error message indicates a dpkg I/O error") << std::endl; | |
2250 | return; | |
2251 | } | |
2252 | } | |
2253 | } | |
2254 | } | |
2255 | ||
5e457a93 MV |
2256 | // get the pkgname and reportfile |
2257 | pkgname = flNotDir(pkgpath); | |
25ffa4e8 | 2258 | pos = pkgname.find('_'); |
5e457a93 | 2259 | if(pos != string::npos) |
25ffa4e8 | 2260 | pkgname = pkgname.substr(0, pos); |
5e457a93 | 2261 | |
294a8020 | 2262 | // find the package version and source package name |
5e457a93 MV |
2263 | pkgCache::PkgIterator Pkg = Cache.FindPkg(pkgname); |
2264 | if (Pkg.end() == true) | |
f4959924 DK |
2265 | { |
2266 | if (pos == std::string::npos || _config->FindB("dpkg::install::recursive::numbered", true) == false) | |
2267 | return; | |
2268 | auto const dash = pkgname.find_first_not_of("0123456789"); | |
2269 | if (dash == std::string::npos || pkgname[dash] != '-') | |
2270 | return; | |
2271 | pkgname.erase(0, dash + 1); | |
2272 | Pkg = Cache.FindPkg(pkgname); | |
2273 | if (Pkg.end() == true) | |
2274 | return; | |
2275 | } | |
294a8020 | 2276 | pkgCache::VerIterator Ver = Cache.GetCandidateVersion(Pkg); |
5e457a93 MV |
2277 | if (Ver.end() == true) |
2278 | return; | |
986d97bb | 2279 | pkgver = Ver.VerStr() == NULL ? "unknown" : Ver.VerStr(); |
5e457a93 MV |
2280 | |
2281 | // if the file exists already, we check: | |
2282 | // - if it was reported already (touched by apport). | |
2283 | // If not, we do nothing, otherwise | |
2284 | // we overwrite it. This is the same behaviour as apport | |
2285 | // - if we have a report with the same pkgversion already | |
2286 | // then we skip it | |
84255101 DK |
2287 | _config->CndSet("Dir::Apport", "var/crash"); |
2288 | reportfile = flCombine(_config->FindDir("Dir::Apport", "var/crash"), pkgname+".0.crash"); | |
5e457a93 MV |
2289 | if(FileExists(reportfile)) |
2290 | { | |
2291 | struct stat buf; | |
2292 | char strbuf[255]; | |
2293 | ||
2294 | // check atime/mtime | |
2295 | stat(reportfile.c_str(), &buf); | |
2296 | if(buf.st_mtime > buf.st_atime) | |
2297 | return; | |
2298 | ||
2299 | // check if the existing report is the same version | |
2300 | report = fopen(reportfile.c_str(),"r"); | |
2301 | while(fgets(strbuf, sizeof(strbuf), report) != NULL) | |
2302 | { | |
2303 | if(strstr(strbuf,"Package:") == strbuf) | |
2304 | { | |
2305 | char pkgname[255], version[255]; | |
b3c36c6e | 2306 | if(sscanf(strbuf, "Package: %254s %254s", pkgname, version) == 2) |
5e457a93 MV |
2307 | if(strcmp(pkgver.c_str(), version) == 0) |
2308 | { | |
2309 | fclose(report); | |
2310 | return; | |
2311 | } | |
2312 | } | |
2313 | } | |
2314 | fclose(report); | |
2315 | } | |
2316 | ||
2317 | // now write the report | |
2318 | arch = _config->Find("APT::Architecture"); | |
2319 | report = fopen(reportfile.c_str(),"w"); | |
2320 | if(report == NULL) | |
2321 | return; | |
2322 | if(_config->FindB("DPkgPM::InitialReportOnly",false) == true) | |
2323 | chmod(reportfile.c_str(), 0); | |
2324 | else | |
2325 | chmod(reportfile.c_str(), 0600); | |
2326 | fprintf(report, "ProblemType: Package\n"); | |
2327 | fprintf(report, "Architecture: %s\n", arch.c_str()); | |
2328 | time_t now = time(NULL); | |
2609e7ce JAK |
2329 | char ctime_buf[26]; // need at least 26 bytes according to ctime(3) |
2330 | fprintf(report, "Date: %s" , ctime_r(&now, ctime_buf)); | |
5e457a93 | 2331 | fprintf(report, "Package: %s %s\n", pkgname.c_str(), pkgver.c_str()); |
a221efc3 | 2332 | fprintf(report, "SourcePackage: %s\n", Ver.SourcePkgName()); |
5e457a93 | 2333 | fprintf(report, "ErrorMessage:\n %s\n", errormsg); |
8ecd1fed MV |
2334 | |
2335 | // ensure that the log is flushed | |
697a1d8a MV |
2336 | if(d->term_out) |
2337 | fflush(d->term_out); | |
8ecd1fed MV |
2338 | |
2339 | // attach terminal log it if we have it | |
2340 | string logfile_name = _config->FindFile("Dir::Log::Terminal"); | |
2341 | if (!logfile_name.empty()) | |
2342 | { | |
2343 | FILE *log = NULL; | |
8ecd1fed MV |
2344 | |
2345 | fprintf(report, "DpkgTerminalLog:\n"); | |
2346 | log = fopen(logfile_name.c_str(),"r"); | |
2347 | if(log != NULL) | |
2348 | { | |
69c2ecbd | 2349 | char buf[1024]; |
581b5568 DK |
2350 | while( fgets(buf, sizeof(buf), log) != NULL) |
2351 | fprintf(report, " %s", buf); | |
2352 | fprintf(report, " \n"); | |
2353 | fclose(log); | |
2354 | } | |
2355 | } | |
2356 | ||
2357 | // attach history log it if we have it | |
2358 | string histfile_name = _config->FindFile("Dir::Log::History"); | |
2359 | if (!histfile_name.empty()) | |
2360 | { | |
581b5568 | 2361 | fprintf(report, "DpkgHistoryLog:\n"); |
9ce3cfc9 | 2362 | FILE* log = fopen(histfile_name.c_str(),"r"); |
581b5568 | 2363 | if(log != NULL) |
8ecd1fed | 2364 | { |
69c2ecbd | 2365 | char buf[1024]; |
8ecd1fed MV |
2366 | while( fgets(buf, sizeof(buf), log) != NULL) |
2367 | fprintf(report, " %s", buf); | |
2368 | fclose(log); | |
2369 | } | |
2370 | } | |
76dbdfc7 | 2371 | |
3af3768e | 2372 | // log the ordering, see dpkgpm.h and the "Ops" enum there |
5c8a2aa8 | 2373 | fprintf(report, "AptOrdering:\n"); |
e7d4e0cf DK |
2374 | for (auto && I : List) |
2375 | { | |
2376 | char const * opstr = nullptr; | |
2377 | switch (I.Op) | |
2378 | { | |
2379 | case Item::Install: opstr = "Install"; break; | |
2380 | case Item::Configure: opstr = "Configure"; break; | |
2381 | case Item::Remove: opstr = "Remove"; break; | |
2382 | case Item::Purge: opstr = "Purge"; break; | |
2383 | case Item::ConfigurePending: opstr = "ConfigurePending"; break; | |
2384 | case Item::TriggersPending: opstr = "TriggersPending"; break; | |
2385 | case Item::RemovePending: opstr = "RemovePending"; break; | |
2386 | case Item::PurgePending: opstr = "PurgePending"; break; | |
2387 | } | |
2388 | auto const pkgname = I.Pkg.end() ? "NULL" : I.Pkg.FullName(); | |
2389 | fprintf(report, " %s: %s\n", pkgname.c_str(), opstr); | |
2390 | } | |
5c8a2aa8 | 2391 | |
76dbdfc7 MV |
2392 | // attach dmesg log (to learn about segfaults) |
2393 | if (FileExists("/bin/dmesg")) | |
2394 | { | |
76dbdfc7 | 2395 | fprintf(report, "Dmesg:\n"); |
69c2ecbd | 2396 | FILE *log = popen("/bin/dmesg","r"); |
76dbdfc7 MV |
2397 | if(log != NULL) |
2398 | { | |
69c2ecbd | 2399 | char buf[1024]; |
76dbdfc7 MV |
2400 | while( fgets(buf, sizeof(buf), log) != NULL) |
2401 | fprintf(report, " %s", buf); | |
23f3cfd0 | 2402 | pclose(log); |
76dbdfc7 MV |
2403 | } |
2404 | } | |
2183a086 MV |
2405 | |
2406 | // attach df -l log (to learn about filesystem status) | |
2407 | if (FileExists("/bin/df")) | |
2408 | { | |
2183a086 MV |
2409 | |
2410 | fprintf(report, "Df:\n"); | |
69c2ecbd | 2411 | FILE *log = popen("/bin/df -l","r"); |
2183a086 MV |
2412 | if(log != NULL) |
2413 | { | |
69c2ecbd | 2414 | char buf[1024]; |
2183a086 MV |
2415 | while( fgets(buf, sizeof(buf), log) != NULL) |
2416 | fprintf(report, " %s", buf); | |
23f3cfd0 | 2417 | pclose(log); |
2183a086 MV |
2418 | } |
2419 | } | |
2420 | ||
5e457a93 | 2421 | fclose(report); |
76dbdfc7 | 2422 | |
5e457a93 MV |
2423 | } |
2424 | /*}}}*/ |