1 // -*- mode: cpp; mode: fold -*-
3 // $Id: dpkgpm.cc,v 1.28 2004/01/27 02:25:01 mdz Exp $
4 /* ######################################################################
6 DPKG Package Manager - Provide an interface to dpkg
8 ##################################################################### */
11 #include <apt-pkg/dpkgpm.h>
12 #include <apt-pkg/error.h>
13 #include <apt-pkg/configuration.h>
14 #include <apt-pkg/depcache.h>
15 #include <apt-pkg/strutl.h>
17 #include <apt-pkg/fileutl.h>
22 #include <sys/select.h>
23 #include <sys/types.h>
35 #include <sys/ioctl.h>
46 // Maps the dpkg "processing" info to human readable names. Entry 0
47 // of each array is the key, entry 1 is the value.
48 const std::pair
<const char *, const char *> PackageProcessingOps
[] = {
49 std::make_pair("install", N_("Installing %s")),
50 std::make_pair("configure", N_("Configuring %s")),
51 std::make_pair("remove", N_("Removing %s")),
52 std::make_pair("purge", N_("Completely removing %s")),
53 std::make_pair("disappear", N_("Noting disappearance of %s")),
54 std::make_pair("trigproc", N_("Running post-installation trigger %s"))
57 const std::pair
<const char *, const char *> * const PackageProcessingOpsBegin
= PackageProcessingOps
;
58 const std::pair
<const char *, const char *> * const PackageProcessingOpsEnd
= PackageProcessingOps
+ sizeof(PackageProcessingOps
) / sizeof(PackageProcessingOps
[0]);
60 // Predicate to test whether an entry in the PackageProcessingOps
61 // array matches a string.
62 class MatchProcessingOp
67 MatchProcessingOp(const char *the_target
)
72 bool operator()(const std::pair
<const char *, const char *> &pair
) const
74 return strcmp(pair
.first
, target
) == 0;
79 /* helper function to ionice the given PID
81 there is no C header for ionice yet - just the syscall interface
82 so we use the binary from util-linux
87 if (!FileExists("/usr/bin/ionice"))
89 pid_t Process
= ExecFork();
93 snprintf(buf
, sizeof(buf
), "-p%d", PID
);
95 Args
[0] = "/usr/bin/ionice";
99 execv(Args
[0], (char **)Args
);
101 return ExecWait(Process
, "ionice");
104 // DPkgPM::pkgDPkgPM - Constructor /*{{{*/
105 // ---------------------------------------------------------------------
107 pkgDPkgPM::pkgDPkgPM(pkgDepCache
*Cache
)
108 : pkgPackageManager(Cache
), dpkgbuf_pos(0),
109 term_out(NULL
), history_out(NULL
), PackagesDone(0), PackagesTotal(0)
113 // DPkgPM::pkgDPkgPM - Destructor /*{{{*/
114 // ---------------------------------------------------------------------
116 pkgDPkgPM::~pkgDPkgPM()
120 // DPkgPM::Install - Install a package /*{{{*/
121 // ---------------------------------------------------------------------
122 /* Add an install operation to the sequence list */
123 bool pkgDPkgPM::Install(PkgIterator Pkg
,string File
)
125 if (File
.empty() == true || Pkg
.end() == true)
126 return _error
->Error("Internal Error, No file name for %s",Pkg
.Name());
128 // If the filename string begins with DPkg::Chroot-Directory, return the
129 // substr that is within the chroot so dpkg can access it.
130 string
const chrootdir
= _config
->FindDir("DPkg::Chroot-Directory","/");
131 if (chrootdir
!= "/" && File
.find(chrootdir
) == 0)
133 size_t len
= chrootdir
.length();
134 if (chrootdir
.at(len
- 1) == '/')
136 List
.push_back(Item(Item::Install
,Pkg
,File
.substr(len
)));
139 List
.push_back(Item(Item::Install
,Pkg
,File
));
144 // DPkgPM::Configure - Configure a package /*{{{*/
145 // ---------------------------------------------------------------------
146 /* Add a configure operation to the sequence list */
147 bool pkgDPkgPM::Configure(PkgIterator Pkg
)
149 if (Pkg
.end() == true)
152 List
.push_back(Item(Item::Configure
, Pkg
));
154 // Use triggers for config calls if we configure "smart"
155 // as otherwise Pre-Depends will not be satisfied, see #526774
156 if (_config
->FindB("DPkg::TriggersPending", false) == true)
157 List
.push_back(Item(Item::TriggersPending
, PkgIterator()));
162 // DPkgPM::Remove - Remove a package /*{{{*/
163 // ---------------------------------------------------------------------
164 /* Add a remove operation to the sequence list */
165 bool pkgDPkgPM::Remove(PkgIterator Pkg
,bool Purge
)
167 if (Pkg
.end() == true)
171 List
.push_back(Item(Item::Purge
,Pkg
));
173 List
.push_back(Item(Item::Remove
,Pkg
));
177 // DPkgPM::SendV2Pkgs - Send version 2 package info /*{{{*/
178 // ---------------------------------------------------------------------
179 /* This is part of the helper script communication interface, it sends
180 very complete information down to the other end of the pipe.*/
181 bool pkgDPkgPM::SendV2Pkgs(FILE *F
)
183 fprintf(F
,"VERSION 2\n");
185 /* Write out all of the configuration directives by walking the
186 configuration tree */
187 const Configuration::Item
*Top
= _config
->Tree(0);
190 if (Top
->Value
.empty() == false)
193 QuoteString(Top
->FullTag(),"=\"\n").c_str(),
194 QuoteString(Top
->Value
,"\n").c_str());
203 while (Top
!= 0 && Top
->Next
== 0)
210 // Write out the package actions in order.
211 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
213 if(I
->Pkg
.end() == true)
216 pkgDepCache::StateCache
&S
= Cache
[I
->Pkg
];
218 fprintf(F
,"%s ",I
->Pkg
.Name());
220 if (I
->Pkg
->CurrentVer
== 0)
223 fprintf(F
,"%s ",I
->Pkg
.CurrentVer().VerStr());
225 // Show the compare operator
227 if (S
.InstallVer
!= 0)
230 if (I
->Pkg
->CurrentVer
!= 0)
231 Comp
= S
.InstVerIter(Cache
).CompareVer(I
->Pkg
.CurrentVer());
238 fprintf(F
,"%s ",S
.InstVerIter(Cache
).VerStr());
243 // Show the filename/operation
244 if (I
->Op
== Item::Install
)
247 if (I
->File
[0] != '/')
248 fprintf(F
,"**ERROR**\n");
250 fprintf(F
,"%s\n",I
->File
.c_str());
252 if (I
->Op
== Item::Configure
)
253 fprintf(F
,"**CONFIGURE**\n");
254 if (I
->Op
== Item::Remove
||
255 I
->Op
== Item::Purge
)
256 fprintf(F
,"**REMOVE**\n");
264 // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/
265 // ---------------------------------------------------------------------
266 /* This looks for a list of scripts to run from the configuration file
267 each one is run and is fed on standard input a list of all .deb files
268 that are due to be installed. */
269 bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf
)
271 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
272 if (Opts
== 0 || Opts
->Child
== 0)
276 unsigned int Count
= 1;
277 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
279 if (Opts
->Value
.empty() == true)
282 // Determine the protocol version
283 string OptSec
= Opts
->Value
;
284 string::size_type Pos
;
285 if ((Pos
= OptSec
.find(' ')) == string::npos
|| Pos
== 0)
286 Pos
= OptSec
.length();
287 OptSec
= "DPkg::Tools::Options::" + string(Opts
->Value
.c_str(),Pos
);
289 unsigned int Version
= _config
->FindI(OptSec
+"::Version",1);
293 if (pipe(Pipes
) != 0)
294 return _error
->Errno("pipe","Failed to create IPC pipe to subprocess");
295 SetCloseExec(Pipes
[0],true);
296 SetCloseExec(Pipes
[1],true);
298 // Purified Fork for running the script
299 pid_t Process
= ExecFork();
303 dup2(Pipes
[0],STDIN_FILENO
);
304 SetCloseExec(STDOUT_FILENO
,false);
305 SetCloseExec(STDIN_FILENO
,false);
306 SetCloseExec(STDERR_FILENO
,false);
311 Args
[2] = Opts
->Value
.c_str();
313 execv(Args
[0],(char **)Args
);
317 FILE *F
= fdopen(Pipes
[1],"w");
319 return _error
->Errno("fdopen","Faild to open new FD");
321 // Feed it the filenames.
325 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
327 // Only deal with packages to be installed from .deb
328 if (I
->Op
!= Item::Install
)
332 if (I
->File
[0] != '/')
335 /* Feed the filename of each package that is pending install
337 fprintf(F
,"%s\n",I
->File
.c_str());
346 Die
= !SendV2Pkgs(F
);
350 // Clean up the sub process
351 if (ExecWait(Process
,Opts
->Value
.c_str()) == false)
352 return _error
->Error("Failure running script %s",Opts
->Value
.c_str());
359 // DPkgPM::DoStdin - Read stdin and pass to slave pty /*{{{*/
360 // ---------------------------------------------------------------------
363 void pkgDPkgPM::DoStdin(int master
)
365 unsigned char input_buf
[256] = {0,};
366 ssize_t len
= read(0, input_buf
, sizeof(input_buf
));
368 write(master
, input_buf
, len
);
370 stdin_is_dev_null
= true;
373 // DPkgPM::DoTerminalPty - Read the terminal pty and write log /*{{{*/
374 // ---------------------------------------------------------------------
376 * read the terminal pty and write log
378 void pkgDPkgPM::DoTerminalPty(int master
)
380 unsigned char term_buf
[1024] = {0,0, };
382 ssize_t len
=read(master
, term_buf
, sizeof(term_buf
));
383 if(len
== -1 && errno
== EIO
)
385 // this happens when the child is about to exit, we
386 // give it time to actually exit, otherwise we run
393 write(1, term_buf
, len
);
395 fwrite(term_buf
, len
, sizeof(char), term_out
);
398 // DPkgPM::ProcessDpkgStatusBuf /*{{{*/
399 // ---------------------------------------------------------------------
402 void pkgDPkgPM::ProcessDpkgStatusLine(int OutStatusFd
, char *line
)
404 bool const Debug
= _config
->FindB("Debug::pkgDPkgProgressReporting",false);
405 // the status we output
406 ostringstream status
;
409 std::clog
<< "got from dpkg '" << line
<< "'" << std::endl
;
412 /* dpkg sends strings like this:
413 'status: <pkg>: <pkg qstate>'
414 errors look like this:
415 '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
416 and conffile-prompt like this
417 'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited
419 Newer versions of dpkg sent also:
420 'processing: install: pkg'
421 'processing: configure: pkg'
422 'processing: remove: pkg'
423 'processing: purge: pkg'
424 'processing: disappear: pkg'
425 'processing: trigproc: trigger'
429 // dpkg sends multiline error messages sometimes (see
430 // #374195 for a example. we should support this by
431 // either patching dpkg to not send multiline over the
432 // statusfd or by rewriting the code here to deal with
433 // it. for now we just ignore it and not crash
434 TokSplitString(':', line
, list
, sizeof(list
)/sizeof(list
[0]));
435 if( list
[0] == NULL
|| list
[1] == NULL
|| list
[2] == NULL
)
438 std::clog
<< "ignoring line: not enough ':'" << std::endl
;
441 const char* const pkg
= list
[1];
442 const char* action
= _strstrip(list
[2]);
444 // 'processing' from dpkg looks like
445 // 'processing: action: pkg'
446 if(strncmp(list
[0], "processing", strlen("processing")) == 0)
449 const char* const pkg_or_trigger
= _strstrip(list
[2]);
450 action
= _strstrip( list
[1]);
451 const std::pair
<const char *, const char *> * const iter
=
452 std::find_if(PackageProcessingOpsBegin
,
453 PackageProcessingOpsEnd
,
454 MatchProcessingOp(action
));
455 if(iter
== PackageProcessingOpsEnd
)
458 std::clog
<< "ignoring unknown action: " << action
<< std::endl
;
461 snprintf(s
, sizeof(s
), _(iter
->second
), pkg_or_trigger
);
463 status
<< "pmstatus:" << pkg_or_trigger
464 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
468 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
470 std::clog
<< "send: '" << status
.str() << "'" << endl
;
472 if (strncmp(action
, "disappear", strlen("disappear")) == 0)
473 handleDisappearAction(pkg_or_trigger
);
477 if(strncmp(action
,"error",strlen("error")) == 0)
479 status
<< "pmerror:" << list
[1]
480 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
484 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
486 std::clog
<< "send: '" << status
.str() << "'" << endl
;
489 else if(strncmp(action
,"conffile",strlen("conffile")) == 0)
491 status
<< "pmconffile:" << list
[1]
492 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
496 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
498 std::clog
<< "send: '" << status
.str() << "'" << endl
;
502 vector
<struct DpkgState
> const &states
= PackageOps
[pkg
];
503 const char *next_action
= NULL
;
504 if(PackageOpsDone
[pkg
] < states
.size())
505 next_action
= states
[PackageOpsDone
[pkg
]].state
;
506 // check if the package moved to the next dpkg state
507 if(next_action
&& (strcmp(action
, next_action
) == 0))
509 // only read the translation if there is actually a next
511 const char *translation
= _(states
[PackageOpsDone
[pkg
]].str
);
513 snprintf(s
, sizeof(s
), translation
, pkg
);
515 // we moved from one dpkg state to a new one, report that
516 PackageOpsDone
[pkg
]++;
518 // build the status str
519 status
<< "pmstatus:" << pkg
520 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
524 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
526 std::clog
<< "send: '" << status
.str() << "'" << endl
;
529 std::clog
<< "(parsed from dpkg) pkg: " << pkg
530 << " action: " << action
<< endl
;
533 // DPkgPM::handleDisappearAction /*{{{*/
534 void pkgDPkgPM::handleDisappearAction(string
const &pkgname
)
536 // record the package name for display and stuff later
537 disappearedPkgs
.insert(pkgname
);
539 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(pkgname
);
540 if (unlikely(Pkg
.end() == true))
542 // the disappeared package was auto-installed - nothing to do
543 if ((Cache
[Pkg
].Flags
& pkgCache::Flag::Auto
) == pkgCache::Flag::Auto
)
545 pkgCache::VerIterator PkgVer
= Pkg
.CurrentVer();
546 if (unlikely(PkgVer
.end() == true))
548 /* search in the list of dependencies for (Pre)Depends,
549 check if this dependency has a Replaces on our package
550 and if so transfer the manual installed flag to it */
551 for (pkgCache::DepIterator Dep
= PkgVer
.DependsList(); Dep
.end() != true; ++Dep
)
553 if (Dep
->Type
!= pkgCache::Dep::Depends
&&
554 Dep
->Type
!= pkgCache::Dep::PreDepends
)
556 pkgCache::PkgIterator Tar
= Dep
.TargetPkg();
557 if (unlikely(Tar
.end() == true))
559 // the package is already marked as manual
560 if ((Cache
[Tar
].Flags
& pkgCache::Flag::Auto
) != pkgCache::Flag::Auto
)
562 pkgCache::VerIterator TarVer
= Tar
.CurrentVer();
563 for (pkgCache::DepIterator Rep
= TarVer
.DependsList(); Rep
.end() != true; ++Rep
)
565 if (Rep
->Type
!= pkgCache::Dep::Replaces
)
567 if (Pkg
!= Rep
.TargetPkg())
569 // okay, they are strongly connected - transfer manual-bit
571 std::clog
<< "transfer manual-bit from disappeared »" << pkgname
<< "« to »" << Tar
.FullName() << "«" << std::endl
;
572 Cache
[Tar
].Flags
&= ~Flag::Auto
;
578 // DPkgPM::DoDpkgStatusFd /*{{{*/
579 // ---------------------------------------------------------------------
582 void pkgDPkgPM::DoDpkgStatusFd(int statusfd
, int OutStatusFd
)
587 len
=read(statusfd
, &dpkgbuf
[dpkgbuf_pos
], sizeof(dpkgbuf
)-dpkgbuf_pos
);
592 // process line by line if we have a buffer
594 while((q
=(char*)memchr(p
, '\n', dpkgbuf
+dpkgbuf_pos
-p
)) != NULL
)
597 ProcessDpkgStatusLine(OutStatusFd
, p
);
598 p
=q
+1; // continue with next line
601 // now move the unprocessed bits (after the final \n that is now a 0x0)
602 // to the start and update dpkgbuf_pos
603 p
= (char*)memrchr(dpkgbuf
, 0, dpkgbuf_pos
);
607 // we are interessted in the first char *after* 0x0
610 // move the unprocessed tail to the start and update pos
611 memmove(dpkgbuf
, p
, p
-dpkgbuf
);
612 dpkgbuf_pos
= dpkgbuf
+dpkgbuf_pos
-p
;
615 // DPkgPM::WriteHistoryTag /*{{{*/
616 void pkgDPkgPM::WriteHistoryTag(string
const &tag
, string value
)
618 size_t const length
= value
.length();
621 // poor mans rstrip(", ")
622 if (value
[length
-2] == ',' && value
[length
-1] == ' ')
623 value
.erase(length
- 2, 2);
624 fprintf(history_out
, "%s: %s\n", tag
.c_str(), value
.c_str());
626 // DPkgPM::OpenLog /*{{{*/
627 bool pkgDPkgPM::OpenLog()
629 string
const logdir
= _config
->FindDir("Dir::Log");
630 if(not FileExists(logdir
))
631 return _error
->Error(_("Directory '%s' missing"), logdir
.c_str());
635 time_t const t
= time(NULL
);
636 struct tm
const * const tmp
= localtime(&t
);
637 strftime(timestr
, sizeof(timestr
), "%F %T", tmp
);
640 string
const logfile_name
= flCombine(logdir
,
641 _config
->Find("Dir::Log::Terminal"));
642 if (!logfile_name
.empty())
644 term_out
= fopen(logfile_name
.c_str(),"a");
645 if (term_out
== NULL
)
646 return _error
->WarningE("OpenLog", _("Could not open file '%s'"), logfile_name
.c_str());
648 chmod(logfile_name
.c_str(), 0600);
649 fprintf(term_out
, "\nLog started: %s\n", timestr
);
652 // write your history
653 string
const history_name
= flCombine(logdir
,
654 _config
->Find("Dir::Log::History"));
655 if (!history_name
.empty())
657 history_out
= fopen(history_name
.c_str(),"a");
658 if (history_out
== NULL
)
659 return _error
->WarningE("OpenLog", _("Could not open file '%s'"), history_name
.c_str());
660 chmod(history_name
.c_str(), 0644);
661 fprintf(history_out
, "\nStart-Date: %s\n", timestr
);
662 string remove
, purge
, install
, upgrade
, downgrade
;
663 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
665 if (Cache
[I
].NewInstall())
666 install
+= I
.Name() + string(" (") + Cache
[I
].CandVersion
+ string("), ");
667 else if (Cache
[I
].Upgrade())
668 upgrade
+= I
.Name() + string(" (") + Cache
[I
].CurVersion
+ string(", ") + Cache
[I
].CandVersion
+ string("), ");
669 else if (Cache
[I
].Downgrade())
670 downgrade
+= I
.Name() + string(" (") + Cache
[I
].CurVersion
+ string(", ") + Cache
[I
].CandVersion
+ string("), ");
671 else if (Cache
[I
].Delete())
673 if ((Cache
[I
].iFlags
& pkgDepCache::Purge
) == pkgDepCache::Purge
)
674 purge
+= I
.Name() + string(" (") + Cache
[I
].CurVersion
+ string("), ");
676 remove
+= I
.Name() + string(" (") + Cache
[I
].CurVersion
+ string("), ");
679 if (_config
->Exists("Commandline::AsString") == true)
680 WriteHistoryTag("Commandline", _config
->Find("Commandline::AsString"));
681 WriteHistoryTag("Install", install
);
682 WriteHistoryTag("Upgrade", upgrade
);
683 WriteHistoryTag("Downgrade",downgrade
);
684 WriteHistoryTag("Remove",remove
);
685 WriteHistoryTag("Purge",purge
);
692 // DPkg::CloseLog /*{{{*/
693 bool pkgDPkgPM::CloseLog()
696 time_t t
= time(NULL
);
697 struct tm
*tmp
= localtime(&t
);
698 strftime(timestr
, sizeof(timestr
), "%F %T", tmp
);
702 fprintf(term_out
, "Log ended: ");
703 fprintf(term_out
, "%s", timestr
);
704 fprintf(term_out
, "\n");
711 if (disappearedPkgs
.empty() == false)
714 for (std::set
<std::string
>::const_iterator d
= disappearedPkgs
.begin();
715 d
!= disappearedPkgs
.end(); ++d
)
717 pkgCache::PkgIterator P
= Cache
.FindPkg(*d
);
718 disappear
.append(*d
);
720 disappear
.append(", ");
722 disappear
.append(" (").append(Cache
[P
].CurVersion
).append("), ");
724 WriteHistoryTag("Disappeared", disappear
);
726 if (dpkg_error
.empty() == false)
727 fprintf(history_out
, "Error: %s\n", dpkg_error
.c_str());
728 fprintf(history_out
, "End-Date: %s\n", timestr
);
737 // This implements a racy version of pselect for those architectures
738 // that don't have a working implementation.
739 // FIXME: Probably can be removed on Lenny+1
740 static int racy_pselect(int nfds
, fd_set
*readfds
, fd_set
*writefds
,
741 fd_set
*exceptfds
, const struct timespec
*timeout
,
742 const sigset_t
*sigmask
)
748 tv
.tv_sec
= timeout
->tv_sec
;
749 tv
.tv_usec
= timeout
->tv_nsec
/1000;
751 sigprocmask(SIG_SETMASK
, sigmask
, &origmask
);
752 retval
= select(nfds
, readfds
, writefds
, exceptfds
, &tv
);
753 sigprocmask(SIG_SETMASK
, &origmask
, 0);
757 // DPkgPM::Go - Run the sequence /*{{{*/
758 // ---------------------------------------------------------------------
759 /* This globs the operations and calls dpkg
761 * If it is called with "OutStatusFd" set to a valid file descriptor
762 * apt will report the install progress over this fd. It maps the
763 * dpkg states a package goes through to human readable (and i10n-able)
764 * names and calculates a percentage for each step.
766 bool pkgDPkgPM::Go(int OutStatusFd
)
771 sigset_t original_sigmask
;
773 unsigned int const MaxArgs
= _config
->FindI("Dpkg::MaxArgs",8*1024);
774 unsigned int const MaxArgBytes
= _config
->FindI("Dpkg::MaxArgBytes",32*1024);
775 bool const NoTriggers
= _config
->FindB("DPkg::NoTriggers", false);
777 if (RunScripts("DPkg::Pre-Invoke") == false)
780 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
783 // support subpressing of triggers processing for special
784 // cases like d-i that runs the triggers handling manually
785 bool const SmartConf
= (_config
->Find("PackageManager::Configure", "all") != "all");
786 bool const TriggersPending
= _config
->FindB("DPkg::TriggersPending", false);
787 if (_config
->FindB("DPkg::ConfigurePending", SmartConf
) == true)
788 List
.push_back(Item(Item::ConfigurePending
, PkgIterator()));
790 // map the dpkg states to the operations that are performed
791 // (this is sorted in the same way as Item::Ops)
792 static const struct DpkgState DpkgStatesOpMap
[][7] = {
795 {"half-installed", N_("Preparing %s")},
796 {"unpacked", N_("Unpacking %s") },
799 // Configure operation
801 {"unpacked",N_("Preparing to configure %s") },
802 {"half-configured", N_("Configuring %s") },
803 { "installed", N_("Installed %s")},
808 {"half-configured", N_("Preparing for removal of %s")},
809 {"half-installed", N_("Removing %s")},
810 {"config-files", N_("Removed %s")},
815 {"config-files", N_("Preparing to completely remove %s")},
816 {"not-installed", N_("Completely removed %s")},
821 // init the PackageOps map, go over the list of packages that
822 // that will be [installed|configured|removed|purged] and add
823 // them to the PackageOps map (the dpkg states it goes through)
824 // and the PackageOpsTranslations (human readable strings)
825 for (vector
<Item
>::const_iterator I
= List
.begin(); I
!= List
.end();I
++)
827 if((*I
).Pkg
.end() == true)
830 string
const name
= (*I
).Pkg
.Name();
831 PackageOpsDone
[name
] = 0;
832 for(int i
=0; (DpkgStatesOpMap
[(*I
).Op
][i
]).state
!= NULL
; i
++)
834 PackageOps
[name
].push_back(DpkgStatesOpMap
[(*I
).Op
][i
]);
839 stdin_is_dev_null
= false;
844 // this loop is runs once per operation
845 for (vector
<Item
>::const_iterator I
= List
.begin(); I
!= List
.end();)
847 // Do all actions with the same Op in one run
848 vector
<Item
>::const_iterator J
= I
;
849 if (TriggersPending
== true)
850 for (; J
!= List
.end(); J
++)
854 if (J
->Op
!= Item::TriggersPending
)
856 vector
<Item
>::const_iterator T
= J
+ 1;
857 if (T
!= List
.end() && T
->Op
== I
->Op
)
862 for (; J
!= List
.end() && J
->Op
== I
->Op
; J
++)
865 // Generate the argument list
866 const char *Args
[MaxArgs
+ 50];
868 // Now check if we are within the MaxArgs limit
870 // this code below is problematic, because it may happen that
871 // the argument list is split in a way that A depends on B
872 // and they are in the same "--configure A B" run
873 // - with the split they may now be configured in different
875 if (J
- I
> (signed)MaxArgs
)
879 unsigned long Size
= 0;
880 string
const Tmp
= _config
->Find("Dir::Bin::dpkg","dpkg");
881 Args
[n
++] = Tmp
.c_str();
882 Size
+= strlen(Args
[n
-1]);
884 // Stick in any custom dpkg options
885 Configuration::Item
const *Opts
= _config
->Tree("DPkg::Options");
889 for (; Opts
!= 0; Opts
= Opts
->Next
)
891 if (Opts
->Value
.empty() == true)
893 Args
[n
++] = Opts
->Value
.c_str();
894 Size
+= Opts
->Value
.length();
898 char status_fd_buf
[20];
902 Args
[n
++] = "--status-fd";
903 Size
+= strlen(Args
[n
-1]);
904 snprintf(status_fd_buf
,sizeof(status_fd_buf
),"%i", fd
[1]);
905 Args
[n
++] = status_fd_buf
;
906 Size
+= strlen(Args
[n
-1]);
911 Args
[n
++] = "--force-depends";
912 Size
+= strlen(Args
[n
-1]);
913 Args
[n
++] = "--force-remove-essential";
914 Size
+= strlen(Args
[n
-1]);
915 Args
[n
++] = "--remove";
916 Size
+= strlen(Args
[n
-1]);
920 Args
[n
++] = "--force-depends";
921 Size
+= strlen(Args
[n
-1]);
922 Args
[n
++] = "--force-remove-essential";
923 Size
+= strlen(Args
[n
-1]);
924 Args
[n
++] = "--purge";
925 Size
+= strlen(Args
[n
-1]);
928 case Item::Configure
:
929 Args
[n
++] = "--configure";
930 Size
+= strlen(Args
[n
-1]);
933 case Item::ConfigurePending
:
934 Args
[n
++] = "--configure";
935 Size
+= strlen(Args
[n
-1]);
936 Args
[n
++] = "--pending";
937 Size
+= strlen(Args
[n
-1]);
940 case Item::TriggersPending
:
941 Args
[n
++] = "--triggers-only";
942 Size
+= strlen(Args
[n
-1]);
943 Args
[n
++] = "--pending";
944 Size
+= strlen(Args
[n
-1]);
948 Args
[n
++] = "--unpack";
949 Size
+= strlen(Args
[n
-1]);
950 Args
[n
++] = "--auto-deconfigure";
951 Size
+= strlen(Args
[n
-1]);
955 if (NoTriggers
== true && I
->Op
!= Item::TriggersPending
&&
956 I
->Op
!= Item::ConfigurePending
)
958 Args
[n
++] = "--no-triggers";
959 Size
+= strlen(Args
[n
-1]);
962 // Write in the file or package names
963 if (I
->Op
== Item::Install
)
965 for (;I
!= J
&& Size
< MaxArgBytes
; I
++)
967 if (I
->File
[0] != '/')
968 return _error
->Error("Internal Error, Pathname to install is not absolute '%s'",I
->File
.c_str());
969 Args
[n
++] = I
->File
.c_str();
970 Size
+= strlen(Args
[n
-1]);
975 for (;I
!= J
&& Size
< MaxArgBytes
; I
++)
977 if((*I
).Pkg
.end() == true)
979 if (I
->Op
== Item::Configure
&& disappearedPkgs
.find(I
->Pkg
.Name()) != disappearedPkgs
.end())
981 Args
[n
++] = I
->Pkg
.Name();
982 Size
+= strlen(Args
[n
-1]);
988 if (_config
->FindB("Debug::pkgDPkgPM",false) == true)
990 for (unsigned int k
= 0; k
!= n
; k
++)
991 clog
<< Args
[k
] << ' ';
1000 /* Mask off sig int/quit. We do this because dpkg also does when
1001 it forks scripts. What happens is that when you hit ctrl-c it sends
1002 it to all processes in the group. Since dpkg ignores the signal
1003 it doesn't die but we do! So we must also ignore it */
1004 sighandler_t old_SIGQUIT
= signal(SIGQUIT
,SIG_IGN
);
1005 sighandler_t old_SIGINT
= signal(SIGINT
,SIG_IGN
);
1007 // ignore SIGHUP as well (debian #463030)
1008 sighandler_t old_SIGHUP
= signal(SIGHUP
,SIG_IGN
);
1015 // if tcgetattr does not return zero there was a error
1016 // and we do not do any pty magic
1017 if (tcgetattr(0, &tt
) == 0)
1019 ioctl(0, TIOCGWINSZ
, (char *)&win
);
1020 if (openpty(&master
, &slave
, NULL
, &tt
, &win
) < 0)
1022 const char *s
= _("Can not write log, openpty() "
1023 "failed (/dev/pts not mounted?)\n");
1024 fprintf(stderr
, "%s",s
);
1026 fprintf(term_out
, "%s",s
);
1027 master
= slave
= -1;
1032 rtt
.c_lflag
&= ~ECHO
;
1033 rtt
.c_lflag
|= ISIG
;
1034 // block SIGTTOU during tcsetattr to prevent a hang if
1035 // the process is a member of the background process group
1036 // http://www.opengroup.org/onlinepubs/000095399/functions/tcsetattr.html
1037 sigemptyset(&sigmask
);
1038 sigaddset(&sigmask
, SIGTTOU
);
1039 sigprocmask(SIG_BLOCK
,&sigmask
, &original_sigmask
);
1040 tcsetattr(0, TCSAFLUSH
, &rtt
);
1041 sigprocmask(SIG_SETMASK
, &original_sigmask
, 0);
1047 _config
->Set("APT::Keep-Fds::",fd
[1]);
1048 // send status information that we are about to fork dpkg
1049 if(OutStatusFd
> 0) {
1050 ostringstream status
;
1051 status
<< "pmstatus:dpkg-exec:"
1052 << (PackagesDone
/float(PackagesTotal
)*100.0)
1053 << ":" << _("Running dpkg")
1055 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
1059 // This is the child
1062 if(slave
>= 0 && master
>= 0)
1065 ioctl(slave
, TIOCSCTTY
, 0);
1072 close(fd
[0]); // close the read end of the pipe
1074 if (_config
->FindDir("DPkg::Chroot-Directory","/") != "/")
1076 std::cerr
<< "Chrooting into "
1077 << _config
->FindDir("DPkg::Chroot-Directory")
1079 if (chroot(_config
->FindDir("DPkg::Chroot-Directory","/").c_str()) != 0)
1083 if (chdir(_config
->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
1086 if (_config
->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO
))
1089 if ((Flags
= fcntl(STDIN_FILENO
,F_GETFL
,dummy
)) < 0)
1092 // Discard everything in stdin before forking dpkg
1093 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
| O_NONBLOCK
) < 0)
1096 while (read(STDIN_FILENO
,&dummy
,1) == 1);
1098 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
& (~(long)O_NONBLOCK
)) < 0)
1102 /* No Job Control Stop Env is a magic dpkg var that prevents it
1103 from using sigstop */
1104 putenv((char *)"DPKG_NO_TSTP=yes");
1105 execvp(Args
[0],(char **)Args
);
1106 cerr
<< "Could not exec dpkg!" << endl
;
1111 if (_config
->FindB("DPkg::UseIoNice", false) == true)
1114 // clear the Keep-Fd again
1115 _config
->Clear("APT::Keep-Fds",fd
[1]);
1120 // we read from dpkg here
1121 int const _dpkgin
= fd
[0];
1122 close(fd
[1]); // close the write end of the pipe
1128 sigemptyset(&sigmask
);
1129 sigprocmask(SIG_BLOCK
,&sigmask
,&original_sigmask
);
1131 // the result of the waitpid call
1134 while ((res
=waitpid(Child
,&Status
, WNOHANG
)) != Child
) {
1136 // FIXME: move this to a function or something, looks ugly here
1137 // error handling, waitpid returned -1
1140 RunScripts("DPkg::Post-Invoke");
1142 // Restore sig int/quit
1143 signal(SIGQUIT
,old_SIGQUIT
);
1144 signal(SIGINT
,old_SIGINT
);
1145 signal(SIGHUP
,old_SIGHUP
);
1146 return _error
->Errno("waitpid","Couldn't wait for subprocess");
1149 // wait for input or output here
1151 if (master
>= 0 && !stdin_is_dev_null
)
1153 FD_SET(_dpkgin
, &rfds
);
1155 FD_SET(master
, &rfds
);
1158 select_ret
= pselect(max(master
, _dpkgin
)+1, &rfds
, NULL
, NULL
,
1159 &tv
, &original_sigmask
);
1160 if (select_ret
< 0 && (errno
== EINVAL
|| errno
== ENOSYS
))
1161 select_ret
= racy_pselect(max(master
, _dpkgin
)+1, &rfds
, NULL
,
1162 NULL
, &tv
, &original_sigmask
);
1163 if (select_ret
== 0)
1165 else if (select_ret
< 0 && errno
== EINTR
)
1167 else if (select_ret
< 0)
1169 perror("select() returned error");
1173 if(master
>= 0 && FD_ISSET(master
, &rfds
))
1174 DoTerminalPty(master
);
1175 if(master
>= 0 && FD_ISSET(0, &rfds
))
1177 if(FD_ISSET(_dpkgin
, &rfds
))
1178 DoDpkgStatusFd(_dpkgin
, OutStatusFd
);
1182 // Restore sig int/quit
1183 signal(SIGQUIT
,old_SIGQUIT
);
1184 signal(SIGINT
,old_SIGINT
);
1185 signal(SIGHUP
,old_SIGHUP
);
1189 tcsetattr(0, TCSAFLUSH
, &tt
);
1193 // Check for an error code.
1194 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
1196 // if it was set to "keep-dpkg-runing" then we won't return
1197 // here but keep the loop going and just report it as a error
1199 bool const stopOnError
= _config
->FindB("Dpkg::StopOnError",true);
1202 RunScripts("DPkg::Post-Invoke");
1204 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
1205 strprintf(dpkg_error
, "Sub-process %s received a segmentation fault.",Args
[0]);
1206 else if (WIFEXITED(Status
) != 0)
1207 strprintf(dpkg_error
, "Sub-process %s returned an error code (%u)",Args
[0],WEXITSTATUS(Status
));
1209 strprintf(dpkg_error
, "Sub-process %s exited unexpectedly",Args
[0]);
1211 if(dpkg_error
.size() > 0)
1212 _error
->Error(dpkg_error
.c_str());
1223 if (RunScripts("DPkg::Post-Invoke") == false)
1226 Cache
.writeStateFile(NULL
);
1230 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
1231 // ---------------------------------------------------------------------
1233 void pkgDPkgPM::Reset()
1235 List
.erase(List
.begin(),List
.end());