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("trigproc", N_("Running post-installation trigger %s"))
55 const std::pair
<const char *, const char *> * const PackageProcessingOpsBegin
= PackageProcessingOps
;
56 const std::pair
<const char *, const char *> * const PackageProcessingOpsEnd
= PackageProcessingOps
+ sizeof(PackageProcessingOps
) / sizeof(PackageProcessingOps
[0]);
58 // Predicate to test whether an entry in the PackageProcessingOps
59 // array matches a string.
60 class MatchProcessingOp
65 MatchProcessingOp(const char *the_target
)
70 bool operator()(const std::pair
<const char *, const char *> &pair
) const
72 return strcmp(pair
.first
, target
) == 0;
77 /* helper function to ionice the given PID
79 there is no C header for ionice yet - just the syscall interface
80 so we use the binary from util-linux
85 if (!FileExists("/usr/bin/ionice"))
87 pid_t Process
= ExecFork();
91 snprintf(buf
, sizeof(buf
), "-p%d", PID
);
93 Args
[0] = "/usr/bin/ionice";
97 execv(Args
[0], (char **)Args
);
99 return ExecWait(Process
, "ionice");
102 // DPkgPM::pkgDPkgPM - Constructor /*{{{*/
103 // ---------------------------------------------------------------------
105 pkgDPkgPM::pkgDPkgPM(pkgDepCache
*Cache
)
106 : pkgPackageManager(Cache
), dpkgbuf_pos(0),
107 term_out(NULL
), PackagesDone(0), PackagesTotal(0)
111 // DPkgPM::pkgDPkgPM - Destructor /*{{{*/
112 // ---------------------------------------------------------------------
114 pkgDPkgPM::~pkgDPkgPM()
118 // DPkgPM::Install - Install a package /*{{{*/
119 // ---------------------------------------------------------------------
120 /* Add an install operation to the sequence list */
121 bool pkgDPkgPM::Install(PkgIterator Pkg
,string File
)
123 if (File
.empty() == true || Pkg
.end() == true)
124 return _error
->Error("Internal Error, No file name for %s",Pkg
.Name());
126 List
.push_back(Item(Item::Install
,Pkg
,File
));
130 // DPkgPM::Configure - Configure a package /*{{{*/
131 // ---------------------------------------------------------------------
132 /* Add a configure operation to the sequence list */
133 bool pkgDPkgPM::Configure(PkgIterator Pkg
)
135 if (Pkg
.end() == true)
138 List
.push_back(Item(Item::Configure
,Pkg
));
142 // DPkgPM::Remove - Remove a package /*{{{*/
143 // ---------------------------------------------------------------------
144 /* Add a remove operation to the sequence list */
145 bool pkgDPkgPM::Remove(PkgIterator Pkg
,bool Purge
)
147 if (Pkg
.end() == true)
151 List
.push_back(Item(Item::Purge
,Pkg
));
153 List
.push_back(Item(Item::Remove
,Pkg
));
157 // DPkgPM::SendV2Pkgs - Send version 2 package info /*{{{*/
158 // ---------------------------------------------------------------------
159 /* This is part of the helper script communication interface, it sends
160 very complete information down to the other end of the pipe.*/
161 bool pkgDPkgPM::SendV2Pkgs(FILE *F
)
163 fprintf(F
,"VERSION 2\n");
165 /* Write out all of the configuration directives by walking the
166 configuration tree */
167 const Configuration::Item
*Top
= _config
->Tree(0);
170 if (Top
->Value
.empty() == false)
173 QuoteString(Top
->FullTag(),"=\"\n").c_str(),
174 QuoteString(Top
->Value
,"\n").c_str());
183 while (Top
!= 0 && Top
->Next
== 0)
190 // Write out the package actions in order.
191 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
193 pkgDepCache::StateCache
&S
= Cache
[I
->Pkg
];
195 fprintf(F
,"%s ",I
->Pkg
.Name());
197 if (I
->Pkg
->CurrentVer
== 0)
200 fprintf(F
,"%s ",I
->Pkg
.CurrentVer().VerStr());
202 // Show the compare operator
204 if (S
.InstallVer
!= 0)
207 if (I
->Pkg
->CurrentVer
!= 0)
208 Comp
= S
.InstVerIter(Cache
).CompareVer(I
->Pkg
.CurrentVer());
215 fprintf(F
,"%s ",S
.InstVerIter(Cache
).VerStr());
220 // Show the filename/operation
221 if (I
->Op
== Item::Install
)
224 if (I
->File
[0] != '/')
225 fprintf(F
,"**ERROR**\n");
227 fprintf(F
,"%s\n",I
->File
.c_str());
229 if (I
->Op
== Item::Configure
)
230 fprintf(F
,"**CONFIGURE**\n");
231 if (I
->Op
== Item::Remove
||
232 I
->Op
== Item::Purge
)
233 fprintf(F
,"**REMOVE**\n");
241 // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/
242 // ---------------------------------------------------------------------
243 /* This looks for a list of scripts to run from the configuration file
244 each one is run and is fed on standard input a list of all .deb files
245 that are due to be installed. */
246 bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf
)
248 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
249 if (Opts
== 0 || Opts
->Child
== 0)
253 unsigned int Count
= 1;
254 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
256 if (Opts
->Value
.empty() == true)
259 // Determine the protocol version
260 string OptSec
= Opts
->Value
;
261 string::size_type Pos
;
262 if ((Pos
= OptSec
.find(' ')) == string::npos
|| Pos
== 0)
263 Pos
= OptSec
.length();
264 OptSec
= "DPkg::Tools::Options::" + string(Opts
->Value
.c_str(),Pos
);
266 unsigned int Version
= _config
->FindI(OptSec
+"::Version",1);
270 if (pipe(Pipes
) != 0)
271 return _error
->Errno("pipe","Failed to create IPC pipe to subprocess");
272 SetCloseExec(Pipes
[0],true);
273 SetCloseExec(Pipes
[1],true);
275 // Purified Fork for running the script
276 pid_t Process
= ExecFork();
280 dup2(Pipes
[0],STDIN_FILENO
);
281 SetCloseExec(STDOUT_FILENO
,false);
282 SetCloseExec(STDIN_FILENO
,false);
283 SetCloseExec(STDERR_FILENO
,false);
288 Args
[2] = Opts
->Value
.c_str();
290 execv(Args
[0],(char **)Args
);
294 FILE *F
= fdopen(Pipes
[1],"w");
296 return _error
->Errno("fdopen","Faild to open new FD");
298 // Feed it the filenames.
302 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
304 // Only deal with packages to be installed from .deb
305 if (I
->Op
!= Item::Install
)
309 if (I
->File
[0] != '/')
312 /* Feed the filename of each package that is pending install
314 fprintf(F
,"%s\n",I
->File
.c_str());
323 Die
= !SendV2Pkgs(F
);
327 // Clean up the sub process
328 if (ExecWait(Process
,Opts
->Value
.c_str()) == false)
329 return _error
->Error("Failure running script %s",Opts
->Value
.c_str());
336 // DPkgPM::DoStdin - Read stdin and pass to slave pty /*{{{*/
337 // ---------------------------------------------------------------------
340 void pkgDPkgPM::DoStdin(int master
)
342 unsigned char input_buf
[256] = {0,};
343 ssize_t len
= read(0, input_buf
, sizeof(input_buf
));
345 write(master
, input_buf
, len
);
347 stdin_is_dev_null
= true;
350 // DPkgPM::DoTerminalPty - Read the terminal pty and write log /*{{{*/
351 // ---------------------------------------------------------------------
353 * read the terminal pty and write log
355 void pkgDPkgPM::DoTerminalPty(int master
)
357 unsigned char term_buf
[1024] = {0,0, };
359 ssize_t len
=read(master
, term_buf
, sizeof(term_buf
));
360 if(len
== -1 && errno
== EIO
)
362 // this happens when the child is about to exit, we
363 // give it time to actually exit, otherwise we run
370 write(1, term_buf
, len
);
372 fwrite(term_buf
, len
, sizeof(char), term_out
);
375 // DPkgPM::ProcessDpkgStatusBuf /*{{{*/
376 // ---------------------------------------------------------------------
379 void pkgDPkgPM::ProcessDpkgStatusLine(int OutStatusFd
, char *line
)
381 bool const Debug
= _config
->FindB("Debug::pkgDPkgProgressReporting",false);
382 // the status we output
383 ostringstream status
;
386 std::clog
<< "got from dpkg '" << line
<< "'" << std::endl
;
389 /* dpkg sends strings like this:
390 'status: <pkg>: <pkg qstate>'
391 errors look like this:
392 '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
393 and conffile-prompt like this
394 'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited
396 Newer versions of dpkg sent also:
397 'processing: install: pkg'
398 'processing: configure: pkg'
399 'processing: remove: pkg'
400 'processing: purge: pkg' - but for apt is it a ignored "unknown" action
401 'processing: trigproc: trigger'
405 // dpkg sends multiline error messages sometimes (see
406 // #374195 for a example. we should support this by
407 // either patching dpkg to not send multiline over the
408 // statusfd or by rewriting the code here to deal with
409 // it. for now we just ignore it and not crash
410 TokSplitString(':', line
, list
, sizeof(list
)/sizeof(list
[0]));
411 if( list
[0] == NULL
|| list
[1] == NULL
|| list
[2] == NULL
)
414 std::clog
<< "ignoring line: not enough ':'" << std::endl
;
417 const char* const pkg
= list
[1];
418 const char* action
= _strstrip(list
[2]);
420 // 'processing' from dpkg looks like
421 // 'processing: action: pkg'
422 if(strncmp(list
[0], "processing", strlen("processing")) == 0)
425 const char* const pkg_or_trigger
= _strstrip(list
[2]);
426 action
= _strstrip( list
[1]);
427 const std::pair
<const char *, const char *> * const iter
=
428 std::find_if(PackageProcessingOpsBegin
,
429 PackageProcessingOpsEnd
,
430 MatchProcessingOp(action
));
431 if(iter
== PackageProcessingOpsEnd
)
434 std::clog
<< "ignoring unknown action: " << action
<< std::endl
;
437 snprintf(s
, sizeof(s
), _(iter
->second
), pkg_or_trigger
);
439 status
<< "pmstatus:" << pkg_or_trigger
440 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
444 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
446 std::clog
<< "send: '" << status
.str() << "'" << endl
;
450 if(strncmp(action
,"error",strlen("error")) == 0)
452 status
<< "pmerror:" << list
[1]
453 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
457 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
459 std::clog
<< "send: '" << status
.str() << "'" << endl
;
462 else if(strncmp(action
,"conffile",strlen("conffile")) == 0)
464 status
<< "pmconffile:" << list
[1]
465 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
469 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
471 std::clog
<< "send: '" << status
.str() << "'" << endl
;
475 vector
<struct DpkgState
> const &states
= PackageOps
[pkg
];
476 const char *next_action
= NULL
;
477 if(PackageOpsDone
[pkg
] < states
.size())
478 next_action
= states
[PackageOpsDone
[pkg
]].state
;
479 // check if the package moved to the next dpkg state
480 if(next_action
&& (strcmp(action
, next_action
) == 0))
482 // only read the translation if there is actually a next
484 const char *translation
= _(states
[PackageOpsDone
[pkg
]].str
);
486 snprintf(s
, sizeof(s
), translation
, pkg
);
488 // we moved from one dpkg state to a new one, report that
489 PackageOpsDone
[pkg
]++;
491 // build the status str
492 status
<< "pmstatus:" << pkg
493 << ":" << (PackagesDone
/float(PackagesTotal
)*100.0)
497 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
499 std::clog
<< "send: '" << status
.str() << "'" << endl
;
502 std::clog
<< "(parsed from dpkg) pkg: " << pkg
503 << " action: " << action
<< endl
;
506 // DPkgPM::DoDpkgStatusFd /*{{{*/
507 // ---------------------------------------------------------------------
510 void pkgDPkgPM::DoDpkgStatusFd(int statusfd
, int OutStatusFd
)
515 len
=read(statusfd
, &dpkgbuf
[dpkgbuf_pos
], sizeof(dpkgbuf
)-dpkgbuf_pos
);
520 // process line by line if we have a buffer
522 while((q
=(char*)memchr(p
, '\n', dpkgbuf
+dpkgbuf_pos
-p
)) != NULL
)
525 ProcessDpkgStatusLine(OutStatusFd
, p
);
526 p
=q
+1; // continue with next line
529 // now move the unprocessed bits (after the final \n that is now a 0x0)
530 // to the start and update dpkgbuf_pos
531 p
= (char*)memrchr(dpkgbuf
, 0, dpkgbuf_pos
);
535 // we are interessted in the first char *after* 0x0
538 // move the unprocessed tail to the start and update pos
539 memmove(dpkgbuf
, p
, p
-dpkgbuf
);
540 dpkgbuf_pos
= dpkgbuf
+dpkgbuf_pos
-p
;
543 // DPkgPM::OpenLog /*{{{*/
544 bool pkgDPkgPM::OpenLog()
546 string logdir
= _config
->FindDir("Dir::Log");
547 if(not FileExists(logdir
))
548 return _error
->Error(_("Directory '%s' missing"), logdir
.c_str());
549 string logfile_name
= flCombine(logdir
,
550 _config
->Find("Dir::Log::Terminal"));
551 if (!logfile_name
.empty())
553 term_out
= fopen(logfile_name
.c_str(),"a");
554 chmod(logfile_name
.c_str(), 0600);
555 // output current time
557 time_t t
= time(NULL
);
558 struct tm
*tmp
= localtime(&t
);
559 strftime(outstr
, sizeof(outstr
), "%F %T", tmp
);
560 fprintf(term_out
, "\nLog started: ");
561 fprintf(term_out
, "%s", outstr
);
562 fprintf(term_out
, "\n");
567 // DPkg::CloseLog /*{{{*/
568 bool pkgDPkgPM::CloseLog()
573 time_t t
= time(NULL
);
574 struct tm
*tmp
= localtime(&t
);
575 strftime(outstr
, sizeof(outstr
), "%F %T", tmp
);
576 fprintf(term_out
, "Log ended: ");
577 fprintf(term_out
, "%s", outstr
);
578 fprintf(term_out
, "\n");
586 // This implements a racy version of pselect for those architectures
587 // that don't have a working implementation.
588 // FIXME: Probably can be removed on Lenny+1
589 static int racy_pselect(int nfds
, fd_set
*readfds
, fd_set
*writefds
,
590 fd_set
*exceptfds
, const struct timespec
*timeout
,
591 const sigset_t
*sigmask
)
597 tv
.tv_sec
= timeout
->tv_sec
;
598 tv
.tv_usec
= timeout
->tv_nsec
/1000;
600 sigprocmask(SIG_SETMASK
, sigmask
, &origmask
);
601 retval
= select(nfds
, readfds
, writefds
, exceptfds
, &tv
);
602 sigprocmask(SIG_SETMASK
, &origmask
, 0);
606 // DPkgPM::Go - Run the sequence /*{{{*/
607 // ---------------------------------------------------------------------
608 /* This globs the operations and calls dpkg
610 * If it is called with "OutStatusFd" set to a valid file descriptor
611 * apt will report the install progress over this fd. It maps the
612 * dpkg states a package goes through to human readable (and i10n-able)
613 * names and calculates a percentage for each step.
615 bool pkgDPkgPM::Go(int OutStatusFd
)
620 sigset_t original_sigmask
;
622 unsigned int const MaxArgs
= _config
->FindI("Dpkg::MaxArgs",8*1024);
623 unsigned int const MaxArgBytes
= _config
->FindI("Dpkg::MaxArgBytes",32*1024);
624 bool const NoTriggers
= _config
->FindB("DPkg::NoTriggers",false);
626 if (RunScripts("DPkg::Pre-Invoke") == false)
629 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
632 // map the dpkg states to the operations that are performed
633 // (this is sorted in the same way as Item::Ops)
634 static const struct DpkgState DpkgStatesOpMap
[][7] = {
637 {"half-installed", N_("Preparing %s")},
638 {"unpacked", N_("Unpacking %s") },
641 // Configure operation
643 {"unpacked",N_("Preparing to configure %s") },
644 {"half-configured", N_("Configuring %s") },
645 { "installed", N_("Installed %s")},
650 {"half-configured", N_("Preparing for removal of %s")},
651 {"half-installed", N_("Removing %s")},
652 {"config-files", N_("Removed %s")},
657 {"config-files", N_("Preparing to completely remove %s")},
658 {"not-installed", N_("Completely removed %s")},
663 // init the PackageOps map, go over the list of packages that
664 // that will be [installed|configured|removed|purged] and add
665 // them to the PackageOps map (the dpkg states it goes through)
666 // and the PackageOpsTranslations (human readable strings)
667 for (vector
<Item
>::const_iterator I
= List
.begin(); I
!= List
.end();I
++)
669 string
const name
= (*I
).Pkg
.Name();
670 PackageOpsDone
[name
] = 0;
671 for(int i
=0; (DpkgStatesOpMap
[(*I
).Op
][i
]).state
!= NULL
; i
++)
673 PackageOps
[name
].push_back(DpkgStatesOpMap
[(*I
).Op
][i
]);
678 stdin_is_dev_null
= false;
683 // this loop is runs once per operation
684 for (vector
<Item
>::const_iterator I
= List
.begin(); I
!= List
.end();)
686 vector
<Item
>::const_iterator J
= I
;
687 for (; J
!= List
.end() && J
->Op
== I
->Op
; J
++)
690 // Generate the argument list
691 const char *Args
[MaxArgs
+ 50];
693 // Now check if we are within the MaxArgs limit
695 // this code below is problematic, because it may happen that
696 // the argument list is split in a way that A depends on B
697 // and they are in the same "--configure A B" run
698 // - with the split they may now be configured in different
700 if (J
- I
> (signed)MaxArgs
)
704 unsigned long Size
= 0;
705 string
const Tmp
= _config
->Find("Dir::Bin::dpkg","dpkg");
706 Args
[n
++] = Tmp
.c_str();
707 Size
+= strlen(Args
[n
-1]);
709 // Stick in any custom dpkg options
710 Configuration::Item
const *Opts
= _config
->Tree("DPkg::Options");
714 for (; Opts
!= 0; Opts
= Opts
->Next
)
716 if (Opts
->Value
.empty() == true)
718 Args
[n
++] = Opts
->Value
.c_str();
719 Size
+= Opts
->Value
.length();
723 char status_fd_buf
[20];
727 Args
[n
++] = "--status-fd";
728 Size
+= strlen(Args
[n
-1]);
729 snprintf(status_fd_buf
,sizeof(status_fd_buf
),"%i", fd
[1]);
730 Args
[n
++] = status_fd_buf
;
731 Size
+= strlen(Args
[n
-1]);
736 Args
[n
++] = "--force-depends";
737 Size
+= strlen(Args
[n
-1]);
738 Args
[n
++] = "--force-remove-essential";
739 Size
+= strlen(Args
[n
-1]);
740 Args
[n
++] = "--remove";
741 Size
+= strlen(Args
[n
-1]);
745 Args
[n
++] = "--force-depends";
746 Size
+= strlen(Args
[n
-1]);
747 Args
[n
++] = "--force-remove-essential";
748 Size
+= strlen(Args
[n
-1]);
749 Args
[n
++] = "--purge";
750 Size
+= strlen(Args
[n
-1]);
753 case Item::Configure
:
754 Args
[n
++] = "--configure";
755 if (NoTriggers
== true)
756 Args
[n
++] = "--no-triggers";
757 Size
+= strlen(Args
[n
-1]);
761 Args
[n
++] = "--unpack";
762 Size
+= strlen(Args
[n
-1]);
763 Args
[n
++] = "--auto-deconfigure";
764 Size
+= strlen(Args
[n
-1]);
768 // Write in the file or package names
769 if (I
->Op
== Item::Install
)
771 for (;I
!= J
&& Size
< MaxArgBytes
; I
++)
773 if (I
->File
[0] != '/')
774 return _error
->Error("Internal Error, Pathname to install is not absolute '%s'",I
->File
.c_str());
775 Args
[n
++] = I
->File
.c_str();
776 Size
+= strlen(Args
[n
-1]);
781 for (;I
!= J
&& Size
< MaxArgBytes
; I
++)
783 Args
[n
++] = I
->Pkg
.Name();
784 Size
+= strlen(Args
[n
-1]);
790 if (_config
->FindB("Debug::pkgDPkgPM",false) == true)
792 for (unsigned int k
= 0; k
!= n
; k
++)
793 clog
<< Args
[k
] << ' ';
802 /* Mask off sig int/quit. We do this because dpkg also does when
803 it forks scripts. What happens is that when you hit ctrl-c it sends
804 it to all processes in the group. Since dpkg ignores the signal
805 it doesn't die but we do! So we must also ignore it */
806 sighandler_t old_SIGQUIT
= signal(SIGQUIT
,SIG_IGN
);
807 sighandler_t old_SIGINT
= signal(SIGINT
,SIG_IGN
);
809 // ignore SIGHUP as well (debian #463030)
810 sighandler_t old_SIGHUP
= signal(SIGHUP
,SIG_IGN
);
817 // FIXME: setup sensible signal handling (*ick*)
819 ioctl(0, TIOCGWINSZ
, (char *)&win
);
820 if (openpty(&master
, &slave
, NULL
, &tt
, &win
) < 0)
822 const char *s
= _("Can not write log, openpty() "
823 "failed (/dev/pts not mounted?)\n");
824 fprintf(stderr
, "%s",s
);
825 fprintf(term_out
, "%s",s
);
831 rtt
.c_lflag
&= ~ECHO
;
832 // block SIGTTOU during tcsetattr to prevent a hang if
833 // the process is a member of the background process group
834 // http://www.opengroup.org/onlinepubs/000095399/functions/tcsetattr.html
835 sigemptyset(&sigmask
);
836 sigaddset(&sigmask
, SIGTTOU
);
837 sigprocmask(SIG_BLOCK
,&sigmask
, &original_sigmask
);
838 tcsetattr(0, TCSAFLUSH
, &rtt
);
839 sigprocmask(SIG_SETMASK
, &original_sigmask
, 0);
844 _config
->Set("APT::Keep-Fds::",fd
[1]);
845 // send status information that we are about to fork dpkg
846 if(OutStatusFd
> 0) {
847 ostringstream status
;
848 status
<< "pmstatus:dpkg-exec:"
849 << (PackagesDone
/float(PackagesTotal
)*100.0)
850 << ":" << _("Running dpkg")
852 write(OutStatusFd
, status
.str().c_str(), status
.str().size());
859 if(slave
>= 0 && master
>= 0)
862 ioctl(slave
, TIOCSCTTY
, 0);
869 close(fd
[0]); // close the read end of the pipe
871 if (_config
->FindDir("DPkg::Chroot-Directory","/") != "/")
873 std::cerr
<< "Chrooting into "
874 << _config
->FindDir("DPkg::Chroot-Directory")
876 if (chroot(_config
->FindDir("DPkg::Chroot-Directory","/").c_str()) != 0)
880 if (chdir(_config
->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
883 if (_config
->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO
))
886 if ((Flags
= fcntl(STDIN_FILENO
,F_GETFL
,dummy
)) < 0)
889 // Discard everything in stdin before forking dpkg
890 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
| O_NONBLOCK
) < 0)
893 while (read(STDIN_FILENO
,&dummy
,1) == 1);
895 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
& (~(long)O_NONBLOCK
)) < 0)
899 /* No Job Control Stop Env is a magic dpkg var that prevents it
900 from using sigstop */
901 putenv((char *)"DPKG_NO_TSTP=yes");
902 execvp(Args
[0],(char **)Args
);
903 cerr
<< "Could not exec dpkg!" << endl
;
908 if (_config
->FindB("DPkg::UseIoNice", false) == true)
911 // clear the Keep-Fd again
912 _config
->Clear("APT::Keep-Fds",fd
[1]);
917 // we read from dpkg here
918 int const _dpkgin
= fd
[0];
919 close(fd
[1]); // close the write end of the pipe
925 sigemptyset(&sigmask
);
926 sigprocmask(SIG_BLOCK
,&sigmask
,&original_sigmask
);
928 // the result of the waitpid call
931 while ((res
=waitpid(Child
,&Status
, WNOHANG
)) != Child
) {
933 // FIXME: move this to a function or something, looks ugly here
934 // error handling, waitpid returned -1
937 RunScripts("DPkg::Post-Invoke");
939 // Restore sig int/quit
940 signal(SIGQUIT
,old_SIGQUIT
);
941 signal(SIGINT
,old_SIGINT
);
942 signal(SIGHUP
,old_SIGHUP
);
943 return _error
->Errno("waitpid","Couldn't wait for subprocess");
946 // wait for input or output here
948 if (!stdin_is_dev_null
)
950 FD_SET(_dpkgin
, &rfds
);
952 FD_SET(master
, &rfds
);
955 select_ret
= pselect(max(master
, _dpkgin
)+1, &rfds
, NULL
, NULL
,
956 &tv
, &original_sigmask
);
957 if (select_ret
< 0 && (errno
== EINVAL
|| errno
== ENOSYS
))
958 select_ret
= racy_pselect(max(master
, _dpkgin
)+1, &rfds
, NULL
,
959 NULL
, &tv
, &original_sigmask
);
962 else if (select_ret
< 0 && errno
== EINTR
)
964 else if (select_ret
< 0)
966 perror("select() returned error");
970 if(master
>= 0 && FD_ISSET(master
, &rfds
))
971 DoTerminalPty(master
);
972 if(master
>= 0 && FD_ISSET(0, &rfds
))
974 if(FD_ISSET(_dpkgin
, &rfds
))
975 DoDpkgStatusFd(_dpkgin
, OutStatusFd
);
979 // Restore sig int/quit
980 signal(SIGQUIT
,old_SIGQUIT
);
981 signal(SIGINT
,old_SIGINT
);
982 signal(SIGHUP
,old_SIGHUP
);
986 tcsetattr(0, TCSAFLUSH
, &tt
);
990 // Check for an error code.
991 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
993 // if it was set to "keep-dpkg-runing" then we won't return
994 // here but keep the loop going and just report it as a error
996 bool const stopOnError
= _config
->FindB("Dpkg::StopOnError",true);
999 RunScripts("DPkg::Post-Invoke");
1001 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
1002 _error
->Error("Sub-process %s received a segmentation fault.",Args
[0]);
1003 else if (WIFEXITED(Status
) != 0)
1004 _error
->Error("Sub-process %s returned an error code (%u)",Args
[0],WEXITSTATUS(Status
));
1006 _error
->Error("Sub-process %s exited unexpectedly",Args
[0]);
1017 if (RunScripts("DPkg::Post-Invoke") == false)
1020 Cache
.writeStateFile(NULL
);
1024 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
1025 // ---------------------------------------------------------------------
1027 void pkgDPkgPM::Reset()
1029 List
.erase(List
.begin(),List
.end());