]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/dpkgpm.cc
1548a47d4b179b066e1205bd2441336d521ede51
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: dpkgpm.cc,v 1.27 2003/07/26 00:25:44 mdz Exp $
4 /* ######################################################################
6 DPKG Package Manager - Provide an interface to dpkg
8 ##################################################################### */
12 #pragma implementation "apt-pkg/dpkgpm.h"
14 #include <apt-pkg/dpkgpm.h>
15 #include <apt-pkg/error.h>
16 #include <apt-pkg/configuration.h>
17 #include <apt-pkg/depcache.h>
18 #include <apt-pkg/strutl.h>
23 #include <sys/types.h>
33 // DPkgPM::pkgDPkgPM - Constructor /*{{{*/
34 // ---------------------------------------------------------------------
36 pkgDPkgPM::pkgDPkgPM(pkgDepCache
*Cache
) : pkgPackageManager(Cache
)
40 // DPkgPM::pkgDPkgPM - Destructor /*{{{*/
41 // ---------------------------------------------------------------------
43 pkgDPkgPM::~pkgDPkgPM()
47 // DPkgPM::Install - Install a package /*{{{*/
48 // ---------------------------------------------------------------------
49 /* Add an install operation to the sequence list */
50 bool pkgDPkgPM::Install(PkgIterator Pkg
,string File
)
52 if (File
.empty() == true || Pkg
.end() == true)
53 return _error
->Error("Internal Error, No file name for %s",Pkg
.Name());
55 List
.push_back(Item(Item::Install
,Pkg
,File
));
59 // DPkgPM::Configure - Configure a package /*{{{*/
60 // ---------------------------------------------------------------------
61 /* Add a configure operation to the sequence list */
62 bool pkgDPkgPM::Configure(PkgIterator Pkg
)
64 if (Pkg
.end() == true)
67 List
.push_back(Item(Item::Configure
,Pkg
));
71 // DPkgPM::Remove - Remove a package /*{{{*/
72 // ---------------------------------------------------------------------
73 /* Add a remove operation to the sequence list */
74 bool pkgDPkgPM::Remove(PkgIterator Pkg
,bool Purge
)
76 if (Pkg
.end() == true)
80 List
.push_back(Item(Item::Purge
,Pkg
));
82 List
.push_back(Item(Item::Remove
,Pkg
));
86 // DPkgPM::RunScripts - Run a set of scripts /*{{{*/
87 // ---------------------------------------------------------------------
88 /* This looks for a list of script sto run from the configuration file,
89 each one is run with system from a forked child. */
90 bool pkgDPkgPM::RunScripts(const char *Cnf
)
92 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
93 if (Opts
== 0 || Opts
->Child
== 0)
97 // Fork for running the system calls
98 pid_t Child
= ExecFork();
103 if (chdir("/tmp/") != 0)
106 unsigned int Count
= 1;
107 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
109 if (Opts
->Value
.empty() == true)
112 if (system(Opts
->Value
.c_str()) != 0)
118 // Wait for the child
120 while (waitpid(Child
,&Status
,0) != Child
)
124 return _error
->Errno("waitpid","Couldn't wait for subprocess");
127 // Restore sig int/quit
128 signal(SIGQUIT
,SIG_DFL
);
129 signal(SIGINT
,SIG_DFL
);
131 // Check for an error code.
132 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
134 unsigned int Count
= WEXITSTATUS(Status
);
138 for (; Opts
!= 0 && Count
!= 1; Opts
= Opts
->Next
, Count
--);
139 _error
->Error("Problem executing scripts %s '%s'",Cnf
,Opts
->Value
.c_str());
142 return _error
->Error("Sub-process returned an error code");
148 // DPkgPM::SendV2Pkgs - Send version 2 package info /*{{{*/
149 // ---------------------------------------------------------------------
150 /* This is part of the helper script communication interface, it sends
151 very complete information down to the other end of the pipe.*/
152 bool pkgDPkgPM::SendV2Pkgs(FILE *F
)
154 fprintf(F
,"VERSION 2\n");
156 /* Write out all of the configuration directives by walking the
157 configuration tree */
158 const Configuration::Item
*Top
= _config
->Tree(0);
161 if (Top
->Value
.empty() == false)
164 QuoteString(Top
->FullTag(),"=\"\n").c_str(),
165 QuoteString(Top
->Value
,"\n").c_str());
174 while (Top
!= 0 && Top
->Next
== 0)
181 // Write out the package actions in order.
182 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
184 pkgDepCache::StateCache
&S
= Cache
[I
->Pkg
];
186 fprintf(F
,"%s ",I
->Pkg
.Name());
188 if (I
->Pkg
->CurrentVer
== 0)
191 fprintf(F
,"%s ",I
->Pkg
.CurrentVer().VerStr());
193 // Show the compare operator
195 if (S
.InstallVer
!= 0)
198 if (I
->Pkg
->CurrentVer
!= 0)
199 Comp
= S
.InstVerIter(Cache
).CompareVer(I
->Pkg
.CurrentVer());
206 fprintf(F
,"%s ",S
.InstVerIter(Cache
).VerStr());
211 // Show the filename/operation
212 if (I
->Op
== Item::Install
)
215 if (I
->File
[0] != '/')
216 fprintf(F
,"**ERROR**\n");
218 fprintf(F
,"%s\n",I
->File
.c_str());
220 if (I
->Op
== Item::Configure
)
221 fprintf(F
,"**CONFIGURE**\n");
222 if (I
->Op
== Item::Remove
||
223 I
->Op
== Item::Purge
)
224 fprintf(F
,"**REMOVE**\n");
232 // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/
233 // ---------------------------------------------------------------------
234 /* This looks for a list of scripts to run from the configuration file
235 each one is run and is fed on standard input a list of all .deb files
236 that are due to be installed. */
237 bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf
)
239 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
240 if (Opts
== 0 || Opts
->Child
== 0)
244 unsigned int Count
= 1;
245 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
247 if (Opts
->Value
.empty() == true)
250 // Determine the protocol version
251 string OptSec
= Opts
->Value
;
252 string::size_type Pos
;
253 if ((Pos
= OptSec
.find(' ')) == string::npos
|| Pos
== 0)
254 Pos
= OptSec
.length();
255 OptSec
= "DPkg::Tools::Options::" + string(Opts
->Value
.c_str(),Pos
);
257 unsigned int Version
= _config
->FindI(OptSec
+"::Version",1);
261 if (pipe(Pipes
) != 0)
262 return _error
->Errno("pipe","Failed to create IPC pipe to subprocess");
263 SetCloseExec(Pipes
[0],true);
264 SetCloseExec(Pipes
[1],true);
266 // Purified Fork for running the script
267 pid_t Process
= ExecFork();
271 dup2(Pipes
[0],STDIN_FILENO
);
272 SetCloseExec(STDOUT_FILENO
,false);
273 SetCloseExec(STDIN_FILENO
,false);
274 SetCloseExec(STDERR_FILENO
,false);
279 Args
[2] = Opts
->Value
.c_str();
281 execv(Args
[0],(char **)Args
);
285 FILE *F
= fdopen(Pipes
[1],"w");
287 return _error
->Errno("fdopen","Faild to open new FD");
289 // Feed it the filenames.
293 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
295 // Only deal with packages to be installed from .deb
296 if (I
->Op
!= Item::Install
)
300 if (I
->File
[0] != '/')
303 /* Feed the filename of each package that is pending install
305 fprintf(F
,"%s\n",I
->File
.c_str());
314 Die
= !SendV2Pkgs(F
);
318 // Clean up the sub process
319 if (ExecWait(Process
,Opts
->Value
.c_str()) == false)
320 return _error
->Error("Failure running script %s",Opts
->Value
.c_str());
326 // DPkgPM::Go - Run the sequence /*{{{*/
327 // ---------------------------------------------------------------------
328 /* This globs the operations and calls dpkg */
331 unsigned int MaxArgs
= _config
->FindI("Dpkg::MaxArgs",350);
332 unsigned int MaxArgBytes
= _config
->FindI("Dpkg::MaxArgBytes",8192);
334 if (RunScripts("DPkg::Pre-Invoke") == false)
337 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
340 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end();)
342 vector
<Item
>::iterator J
= I
;
343 for (; J
!= List
.end() && J
->Op
== I
->Op
; J
++);
345 // Generate the argument list
346 const char *Args
[MaxArgs
+ 50];
347 if (J
- I
> (signed)MaxArgs
)
351 unsigned long Size
= 0;
352 string Tmp
= _config
->Find("Dir::Bin::dpkg","dpkg");
353 Args
[n
++] = Tmp
.c_str();
354 Size
+= strlen(Args
[n
-1]);
356 // Stick in any custom dpkg options
357 Configuration::Item
const *Opts
= _config
->Tree("DPkg::Options");
361 for (; Opts
!= 0; Opts
= Opts
->Next
)
363 if (Opts
->Value
.empty() == true)
365 Args
[n
++] = Opts
->Value
.c_str();
366 Size
+= Opts
->Value
.length();
373 Args
[n
++] = "--force-depends";
374 Size
+= strlen(Args
[n
-1]);
375 Args
[n
++] = "--force-remove-essential";
376 Size
+= strlen(Args
[n
-1]);
377 Args
[n
++] = "--remove";
378 Size
+= strlen(Args
[n
-1]);
382 Args
[n
++] = "--force-depends";
383 Size
+= strlen(Args
[n
-1]);
384 Args
[n
++] = "--force-remove-essential";
385 Size
+= strlen(Args
[n
-1]);
386 Args
[n
++] = "--purge";
387 Size
+= strlen(Args
[n
-1]);
390 case Item::Configure
:
391 Args
[n
++] = "--configure";
392 Size
+= strlen(Args
[n
-1]);
396 Args
[n
++] = "--unpack";
397 Size
+= strlen(Args
[n
-1]);
401 // Write in the file or package names
402 if (I
->Op
== Item::Install
)
404 for (;I
!= J
&& Size
< MaxArgBytes
; I
++)
406 if (I
->File
[0] != '/')
407 return _error
->Error("Internal Error, Pathname to install is not absolute '%s'",I
->File
.c_str());
408 Args
[n
++] = I
->File
.c_str();
409 Size
+= strlen(Args
[n
-1]);
414 for (;I
!= J
&& Size
< MaxArgBytes
; I
++)
416 Args
[n
++] = I
->Pkg
.Name();
417 Size
+= strlen(Args
[n
-1]);
423 if (_config
->FindB("Debug::pkgDPkgPM",false) == true)
425 for (unsigned int k
= 0; k
!= n
; k
++)
426 clog
<< Args
[k
] << ' ';
435 /* Mask off sig int/quit. We do this because dpkg also does when
436 it forks scripts. What happens is that when you hit ctrl-c it sends
437 it to all processes in the group. Since dpkg ignores the signal
438 it doesn't die but we do! So we must also ignore it */
439 signal(SIGQUIT
,SIG_IGN
);
440 signal(SIGINT
,SIG_IGN
);
443 pid_t Child
= ExecFork();
448 if (chdir(_config
->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
451 if (_config
->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO
))
454 if ((Flags
= fcntl(STDIN_FILENO
,F_GETFL
,dummy
)) < 0)
457 // Discard everything in stdin before forking dpkg
458 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
| O_NONBLOCK
) < 0)
461 while (read(STDIN_FILENO
,&dummy
,1) == 1);
463 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
& (~(long)O_NONBLOCK
)) < 0)
467 /* No Job Control Stop Env is a magic dpkg var that prevents it
468 from using sigstop */
469 putenv("DPKG_NO_TSTP=yes");
470 execvp(Args
[0],(char **)Args
);
471 cerr
<< "Could not exec dpkg!" << endl
;
477 while (waitpid(Child
,&Status
,0) != Child
)
481 RunScripts("DPkg::Post-Invoke");
482 return _error
->Errno("waitpid","Couldn't wait for subprocess");
485 // Restore sig int/quit
486 signal(SIGQUIT
,SIG_DFL
);
487 signal(SIGINT
,SIG_DFL
);
489 // Check for an error code.
490 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
492 RunScripts("DPkg::Post-Invoke");
493 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
494 return _error
->Error("Sub-process %s received a segmentation fault.",Args
[0]);
496 if (WIFEXITED(Status
) != 0)
497 return _error
->Error("Sub-process %s returned an error code (%u)",Args
[0],WEXITSTATUS(Status
));
499 return _error
->Error("Sub-process %s exited unexpectedly",Args
[0]);
503 if (RunScripts("DPkg::Post-Invoke") == false)
508 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
509 // ---------------------------------------------------------------------
511 void pkgDPkgPM::Reset()
513 List
.erase(List
.begin(),List
.end());