]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/dpkgpm.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: dpkgpm.cc,v 1.22 2001/05/27 04:40:57 jgg 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");
149 // DPkgPM::SendV2Pkgs - Send version 2 package info /*{{{*/
150 // ---------------------------------------------------------------------
151 /* This is part of the helper script communication interface, it sends
152 very complete information down to the other end of the pipe.*/
153 bool pkgDPkgPM::SendV2Pkgs(FILE *F
)
155 fprintf(F
,"VERSION 2\n");
157 /* Write out all of the configuration directives by walking the
158 configuration tree */
159 const Configuration::Item
*Top
= _config
->Tree(0);
162 if (Top
->Value
.empty() == false)
165 QuoteString(Top
->FullTag(),"=\"\n").c_str(),
166 QuoteString(Top
->Value
,"\n").c_str());
175 while (Top
!= 0 && Top
->Next
== 0)
182 // Write out the package actions in order.
183 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
185 pkgDepCache::StateCache
&S
= Cache
[I
->Pkg
];
187 fprintf(F
,"%s ",I
->Pkg
.Name());
189 if (I
->Pkg
->CurrentVer
== 0)
192 fprintf(F
,"%s ",I
->Pkg
.CurrentVer().VerStr());
194 // Show the compare operator
196 if (S
.InstallVer
!= 0)
199 if (I
->Pkg
->CurrentVer
!= 0)
200 Comp
= S
.InstVerIter(Cache
).CompareVer(I
->Pkg
.CurrentVer());
207 fprintf(F
,"%s ",S
.InstVerIter(Cache
).VerStr());
212 // Show the filename/operation
213 if (I
->Op
== Item::Install
)
216 if (I
->File
[0] != '/')
217 fprintf(F
,"**ERROR**\n");
219 fprintf(F
,"%s\n",I
->File
.c_str());
221 if (I
->Op
== Item::Configure
)
222 fprintf(F
,"**CONFIGURE**\n");
223 if (I
->Op
== Item::Remove
||
224 I
->Op
== Item::Purge
)
225 fprintf(F
,"**REMOVE**\n");
233 // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/
234 // ---------------------------------------------------------------------
235 /* This looks for a list of scripts to run from the configuration file
236 each one is run and is fed on standard input a list of all .deb files
237 that are due to be installed. */
238 bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf
)
240 Configuration::Item
const *Opts
= _config
->Tree(Cnf
);
241 if (Opts
== 0 || Opts
->Child
== 0)
245 unsigned int Count
= 1;
246 for (; Opts
!= 0; Opts
= Opts
->Next
, Count
++)
248 if (Opts
->Value
.empty() == true)
251 // Determine the protocol version
252 string OptSec
= Opts
->Value
;
253 string::size_type Pos
;
254 if ((Pos
= OptSec
.find(' ')) == string::npos
|| Pos
== 0)
255 Pos
= OptSec
.length();
256 OptSec
= "DPkg::Tools::Options::" + string(Opts
->Value
.c_str(),Pos
);
258 unsigned int Version
= _config
->FindI(OptSec
+"::Version",1);
262 if (pipe(Pipes
) != 0)
263 return _error
->Errno("pipe","Failed to create IPC pipe to subprocess");
264 SetCloseExec(Pipes
[0],true);
265 SetCloseExec(Pipes
[1],true);
267 // Purified Fork for running the script
268 pid_t Process
= ExecFork();
272 dup2(Pipes
[0],STDIN_FILENO
);
273 SetCloseExec(STDOUT_FILENO
,false);
274 SetCloseExec(STDIN_FILENO
,false);
275 SetCloseExec(STDERR_FILENO
,false);
280 Args
[2] = Opts
->Value
.c_str();
282 execv(Args
[0],(char **)Args
);
286 FILE *F
= fdopen(Pipes
[1],"w");
288 return _error
->Errno("fdopen","Faild to open new FD");
290 // Feed it the filenames.
294 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
296 // Only deal with packages to be installed from .deb
297 if (I
->Op
!= Item::Install
)
301 if (I
->File
[0] != '/')
304 /* Feed the filename of each package that is pending install
306 fprintf(F
,"%s\n",I
->File
.c_str());
315 Die
= !SendV2Pkgs(F
);
320 kill(Process
,SIGINT
);
321 ExecWait(Process
,Opts
->Value
.c_str(),true);
322 return _error
->Error("Failure running script %s",Opts
->Value
.c_str());
325 // Clean up the sub process
326 if (ExecWait(Process
,Opts
->Value
.c_str()) == false)
327 return _error
->Error("Failure running script %s",Opts
->Value
.c_str());
334 // DPkgPM::Go - Run the sequence /*{{{*/
335 // ---------------------------------------------------------------------
336 /* This globs the operations and calls dpkg */
339 if (RunScripts("DPkg::Pre-Invoke") == false)
342 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
345 for (vector
<Item
>::iterator I
= List
.begin(); I
!= List
.end();)
347 vector
<Item
>::iterator J
= I
;
348 for (; J
!= List
.end() && J
->Op
== I
->Op
; J
++);
350 // Generate the argument list
351 const char *Args
[400];
356 unsigned long Size
= 0;
357 string Tmp
= _config
->Find("Dir::Bin::dpkg","dpkg").c_str();
358 Args
[n
++] = Tmp
.c_str();
359 Size
+= strlen(Args
[n
-1]);
361 // Stick in any custom dpkg options
362 Configuration::Item
const *Opts
= _config
->Tree("DPkg::Options");
366 for (; Opts
!= 0; Opts
= Opts
->Next
)
368 if (Opts
->Value
.empty() == true)
370 Args
[n
++] = Opts
->Value
.c_str();
371 Size
+= Opts
->Value
.length();
378 Args
[n
++] = "--force-depends";
379 Size
+= strlen(Args
[n
-1]);
380 Args
[n
++] = "--force-remove-essential";
381 Size
+= strlen(Args
[n
-1]);
382 Args
[n
++] = "--remove";
383 Size
+= strlen(Args
[n
-1]);
387 Args
[n
++] = "--force-depends";
388 Size
+= strlen(Args
[n
-1]);
389 Args
[n
++] = "--force-remove-essential";
390 Size
+= strlen(Args
[n
-1]);
391 Args
[n
++] = "--purge";
392 Size
+= strlen(Args
[n
-1]);
395 case Item::Configure
:
396 Args
[n
++] = "--configure";
397 Size
+= strlen(Args
[n
-1]);
401 Args
[n
++] = "--unpack";
402 Size
+= strlen(Args
[n
-1]);
406 // Write in the file or package names
407 if (I
->Op
== Item::Install
)
409 for (;I
!= J
&& Size
< 1024; I
++)
411 if (I
->File
[0] != '/')
412 return _error
->Error("Internal Error, Pathname to install is not absolute '%s'",I
->File
.c_str());
413 Args
[n
++] = I
->File
.c_str();
414 Size
+= strlen(Args
[n
-1]);
419 for (;I
!= J
&& Size
< 1024; I
++)
421 Args
[n
++] = I
->Pkg
.Name();
422 Size
+= strlen(Args
[n
-1]);
428 if (_config
->FindB("Debug::pkgDPkgPM",false) == true)
430 for (unsigned int k
= 0; k
!= n
; k
++)
431 clog
<< Args
[k
] << ' ';
440 /* Mask off sig int/quit. We do this because dpkg also does when
441 it forks scripts. What happens is that when you hit ctrl-c it sends
442 it to all processes in the group. Since dpkg ignores the signal
443 it doesn't die but we do! So we must also ignore it */
444 signal(SIGQUIT
,SIG_IGN
);
445 signal(SIGINT
,SIG_IGN
);
448 pid_t Child
= ExecFork();
453 if (chdir(_config
->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
456 if (_config
->FindB("DPkg::FlushSTDIN",true) == true)
459 if ((Flags
= fcntl(STDIN_FILENO
,F_GETFL
,dummy
)) < 0)
462 // Discard everything in stdin before forking dpkg
463 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
| O_NONBLOCK
) < 0)
466 while (read(STDIN_FILENO
,&dummy
,1) == 1);
468 if (fcntl(STDIN_FILENO
,F_SETFL
,Flags
& (~(long)O_NONBLOCK
)) < 0)
472 /* No Job Control Stop Env is a magic dpkg var that prevents it
473 from using sigstop */
474 putenv("DPKG_NO_TSTP=yes");
475 execvp(Args
[0],(char **)Args
);
476 cerr
<< "Could not exec dpkg!" << endl
;
482 while (waitpid(Child
,&Status
,0) != Child
)
486 RunScripts("DPkg::Post-Invoke");
487 return _error
->Errno("waitpid","Couldn't wait for subprocess");
490 // Restore sig int/quit
491 signal(SIGQUIT
,SIG_DFL
);
492 signal(SIGINT
,SIG_DFL
);
494 // Check for an error code.
495 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
497 RunScripts("DPkg::Post-Invoke");
498 if (WIFSIGNALED(Status
) != 0 && WTERMSIG(Status
) == SIGSEGV
)
499 return _error
->Error("Sub-process %s received a segmentation fault.",Args
[0]);
501 if (WIFEXITED(Status
) != 0)
502 return _error
->Error("Sub-process %s returned an error code (%u)",Args
[0],WEXITSTATUS(Status
));
504 return _error
->Error("Sub-process %s exited unexpectedly",Args
[0]);
508 if (RunScripts("DPkg::Post-Invoke") == false)
513 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
514 // ---------------------------------------------------------------------
516 void pkgDPkgPM::Reset()
518 List
.erase(List
.begin(),List
.end());