fix a bunch of cppcheck "(warning) Member variable '<#>' is not
[ntk/apt.git] / apt-pkg / packagemanager.cc
CommitLineData
6c139d6e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
b9c0654c 3// $Id: packagemanager.cc,v 1.30 2003/04/27 03:04:15 doogie Exp $
6c139d6e
AL
4/* ######################################################################
5
6 Package Manager - Abstacts the package manager
7
8 More work is needed in the area of transitioning provides, ie exim
9 replacing smail. This can cause interesing side effects.
10
11 Other cases involving conflicts+replaces should be tested.
12
13 ##################################################################### */
14 /*}}}*/
15// Include Files /*{{{*/
ea542140
DK
16#include<config.h>
17
094a497d
AL
18#include <apt-pkg/packagemanager.h>
19#include <apt-pkg/orderlist.h>
20#include <apt-pkg/depcache.h>
21#include <apt-pkg/error.h>
22#include <apt-pkg/version.h>
03e39e59 23#include <apt-pkg/acquire-item.h>
30e1eab5
AL
24#include <apt-pkg/algorithms.h>
25#include <apt-pkg/configuration.h>
b2e465d6 26#include <apt-pkg/sptr.h>
ea542140
DK
27
28#include <apti18n.h>
5819a761 29#include <iostream>
ea542140 30#include <fcntl.h>
92fcbfc1 31 /*}}}*/
5819a761
AL
32using namespace std;
33
590f1923
CB
34bool pkgPackageManager::SigINTStop = false;
35
6c139d6e
AL
36// PM::PackageManager - Constructor /*{{{*/
37// ---------------------------------------------------------------------
38/* */
dcaa1185
DK
39pkgPackageManager::pkgPackageManager(pkgDepCache *pCache) : Cache(*pCache),
40 List(NULL), Res(Incomplete)
6c139d6e
AL
41{
42 FileNames = new string[Cache.Head().PackageCount];
30e1eab5 43 Debug = _config->FindB("Debug::pkgPackageManager",false);
dcaa1185
DK
44 NoImmConfigure = !_config->FindB("APT::Immediate-Configure",true);
45 ImmConfigureAll = _config->FindB("APT::Immediate-Configure-All",false);
6c139d6e
AL
46}
47 /*}}}*/
48// PM::PackageManager - Destructor /*{{{*/
49// ---------------------------------------------------------------------
50/* */
51pkgPackageManager::~pkgPackageManager()
52{
53 delete List;
54 delete [] FileNames;
55}
56 /*}}}*/
03e39e59
AL
57// PM::GetArchives - Queue the archives for download /*{{{*/
58// ---------------------------------------------------------------------
59/* */
60bool pkgPackageManager::GetArchives(pkgAcquire *Owner,pkgSourceList *Sources,
61 pkgRecords *Recs)
62{
7a1b1f8b
AL
63 if (CreateOrderList() == false)
64 return false;
65
5e312de7
DK
66 bool const ordering =
67 _config->FindB("PackageManager::UnpackAll",true) ?
68 List->OrderUnpack() : List->OrderCritical();
69 if (ordering == false)
7a1b1f8b
AL
70 return _error->Error("Internal ordering error");
71
91c03d37 72 for (pkgOrderList::iterator I = List->begin(); I != List->end(); ++I)
7a1b1f8b
AL
73 {
74 PkgIterator Pkg(Cache,*I);
281daf46
AL
75 FileNames[Pkg->ID] = string();
76
7a1b1f8b
AL
77 // Skip packages to erase
78 if (Cache[Pkg].Delete() == true)
03e39e59 79 continue;
d38b7b3d
AL
80
81 // Skip Packages that need configure only.
9dbb421f
AL
82 if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure &&
83 Cache[Pkg].Keep() == true)
d38b7b3d 84 continue;
281daf46
AL
85
86 // Skip already processed packages
87 if (List->IsNow(Pkg) == false)
88 continue;
803ea2a8 89
7a1b1f8b
AL
90 new pkgAcqArchive(Owner,Sources,Recs,Cache[Pkg].InstVerIter(Cache),
91 FileNames[Pkg->ID]);
03e39e59 92 }
7a1b1f8b 93
03e39e59
AL
94 return true;
95}
96 /*}}}*/
6c139d6e
AL
97// PM::FixMissing - Keep all missing packages /*{{{*/
98// ---------------------------------------------------------------------
99/* This is called to correct the installation when packages could not
100 be downloaded. */
101bool pkgPackageManager::FixMissing()
bdae53f1 102{
e6756cde 103 pkgDepCache::ActionGroup group(Cache);
b2e465d6 104 pkgProblemResolver Resolve(&Cache);
2fd65468 105 List->SetFileList(FileNames);
e6756cde 106
9dbb421f 107 bool Bad = false;
f7f0d6c7 108 for (PkgIterator I = Cache.PkgBegin(); I.end() == false; ++I)
6c139d6e 109 {
2fd65468 110 if (List->IsMissing(I) == false)
9dbb421f 111 continue;
2fd65468 112
9dbb421f
AL
113 // Okay, this file is missing and we need it. Mark it for keep
114 Bad = true;
74a05226 115 Cache.MarkKeep(I, false, false);
6c139d6e 116 }
bdae53f1
AL
117
118 // We have to empty the list otherwise it will not have the new changes
119 delete List;
120 List = 0;
6c139d6e 121
9dbb421f
AL
122 if (Bad == false)
123 return true;
124
6c139d6e 125 // Now downgrade everything that is broken
30e1eab5 126 return Resolve.ResolveByKeep() == true && Cache.BrokenCount() == 0;
6c139d6e
AL
127}
128 /*}}}*/
3a6d37fd
MV
129// PM::ImmediateAdd - Add the immediate flag recursivly /*{{{*/
130// ---------------------------------------------------------------------
131/* This adds the immediate flag to the pkg and recursively to the
132 dependendies
133 */
d183f850 134void pkgPackageManager::ImmediateAdd(PkgIterator I, bool UseInstallVer, unsigned const int &Depth)
3a6d37fd
MV
135{
136 DepIterator D;
137
138 if(UseInstallVer)
139 {
140 if(Cache[I].InstallVer == 0)
141 return;
142 D = Cache[I].InstVerIter(Cache).DependsList();
143 } else {
144 if (I->CurrentVer == 0)
145 return;
146 D = I.CurrentVer().DependsList();
147 }
148
f7f0d6c7 149 for ( /* nothing */ ; D.end() == false; ++D)
3a6d37fd
MV
150 if (D->Type == pkgCache::Dep::Depends || D->Type == pkgCache::Dep::PreDepends)
151 {
152 if(!List->IsFlag(D.TargetPkg(), pkgOrderList::Immediate))
153 {
154 if(Debug)
d183f850 155 clog << OutputInDepth(Depth) << "ImmediateAdd(): Adding Immediate flag to " << D.TargetPkg() << " cause of " << D.DepType() << " " << I.Name() << endl;
3a6d37fd 156 List->Flag(D.TargetPkg(),pkgOrderList::Immediate);
d183f850 157 ImmediateAdd(D.TargetPkg(), UseInstallVer, Depth + 1);
3a6d37fd
MV
158 }
159 }
160 return;
161}
162 /*}}}*/
7a1b1f8b
AL
163// PM::CreateOrderList - Create the ordering class /*{{{*/
164// ---------------------------------------------------------------------
165/* This populates the ordering list with all the packages that are
166 going to change. */
167bool pkgPackageManager::CreateOrderList()
168{
281daf46
AL
169 if (List != 0)
170 return true;
171
7a1b1f8b 172 delete List;
b2e465d6 173 List = new pkgOrderList(&Cache);
dcaa1185 174
a6c8798a
CB
175 if (Debug && ImmConfigureAll)
176 clog << "CreateOrderList(): Adding Immediate flag for all packages because of APT::Immediate-Configure-All" << endl;
079cc404 177
7a1b1f8b 178 // Generate the list of affected packages and sort it
f7f0d6c7 179 for (PkgIterator I = Cache.PkgBegin(); I.end() == false; ++I)
7a1b1f8b 180 {
e7b470ee
AL
181 // Ignore no-version packages
182 if (I->VersionList == 0)
183 continue;
184
138d4b3d 185 // Mark the package and its dependends for immediate configuration
a6c8798a 186 if ((((I->Flags & pkgCache::Flag::Essential) == pkgCache::Flag::Essential ||
138d4b3d 187 (I->Flags & pkgCache::Flag::Important) == pkgCache::Flag::Important) &&
a6c8798a 188 NoImmConfigure == false) || ImmConfigureAll)
7a1b1f8b 189 {
a6c8798a 190 if(Debug && !ImmConfigureAll)
3a6d37fd 191 clog << "CreateOrderList(): Adding Immediate flag for " << I.Name() << endl;
7a1b1f8b 192 List->Flag(I,pkgOrderList::Immediate);
d38b7b3d 193
a6c8798a 194 if (!ImmConfigureAll) {
a6c8798a
CB
195 // Look for other install packages to make immediate configurea
196 ImmediateAdd(I, true);
e2a5ff0c 197
a6c8798a
CB
198 // And again with the current version.
199 ImmediateAdd(I, false);
200 }
7a1b1f8b
AL
201 }
202
203 // Not interesting
204 if ((Cache[I].Keep() == true ||
205 Cache[I].InstVerIter(Cache) == I.CurrentVer()) &&
d556d1a1 206 I.State() == pkgCache::PkgIterator::NeedsNothing &&
d0c59649 207 (Cache[I].iFlags & pkgDepCache::ReInstall) != pkgDepCache::ReInstall &&
d556d1a1
AL
208 (I.Purge() != false || Cache[I].Mode != pkgDepCache::ModeDelete ||
209 (Cache[I].iFlags & pkgDepCache::Purge) != pkgDepCache::Purge))
7a1b1f8b
AL
210 continue;
211
212 // Append it to the list
138d4b3d 213 List->push_back(I);
7a1b1f8b
AL
214 }
215
216 return true;
217}
218 /*}}}*/
6c139d6e
AL
219// PM::DepAlwaysTrue - Returns true if this dep is irrelevent /*{{{*/
220// ---------------------------------------------------------------------
221/* The restriction on provides is to eliminate the case when provides
222 are transitioning between valid states [ie exim to smail] */
223bool pkgPackageManager::DepAlwaysTrue(DepIterator D)
224{
225 if (D.TargetPkg()->ProvidesList != 0)
226 return false;
227
228 if ((Cache[D] & pkgDepCache::DepInstall) != 0 &&
229 (Cache[D] & pkgDepCache::DepNow) != 0)
230 return true;
231 return false;
232}
233 /*}}}*/
234// PM::CheckRConflicts - Look for reverse conflicts /*{{{*/
235// ---------------------------------------------------------------------
236/* This looks over the reverses for a conflicts line that needs early
237 removal. */
238bool pkgPackageManager::CheckRConflicts(PkgIterator Pkg,DepIterator D,
239 const char *Ver)
240{
f7f0d6c7 241 for (;D.end() == false; ++D)
6c139d6e 242 {
b2e465d6
AL
243 if (D->Type != pkgCache::Dep::Conflicts &&
244 D->Type != pkgCache::Dep::Obsoletes)
6c139d6e 245 continue;
5af32db6
AL
246
247 // The package hasnt been changed
248 if (List->IsNow(Pkg) == false)
249 continue;
6c139d6e 250
5af32db6 251 // Ignore self conflicts, ignore conflicts from irrelevent versions
85434114 252 if (D.IsIgnorable(Pkg) || D.ParentVer() != D.ParentPkg().CurrentVer())
6c139d6e
AL
253 continue;
254
b2e465d6 255 if (Cache.VS().CheckDep(Ver,D->CompareOp,D.TargetVer()) == false)
6c139d6e 256 continue;
b2e465d6 257
6c139d6e 258 if (EarlyRemove(D.ParentPkg()) == false)
5af32db6
AL
259 return _error->Error("Reverse conflicts early remove for package '%s' failed",
260 Pkg.Name());
261 }
6c139d6e
AL
262 return true;
263}
264 /*}}}*/
265// PM::ConfigureAll - Run the all out configuration /*{{{*/
266// ---------------------------------------------------------------------
267/* This configures every package. It is assumed they are all unpacked and
590f1923
CB
268 that the final configuration is valid. This is also used to catch packages
269 that have not been configured when using ImmConfigureAll */
6c139d6e
AL
270bool pkgPackageManager::ConfigureAll()
271{
b2e465d6 272 pkgOrderList OList(&Cache);
6c139d6e
AL
273
274 // Populate the order list
91c03d37 275 for (pkgOrderList::iterator I = List->begin(); I != List->end(); ++I)
6c139d6e
AL
276 if (List->IsFlag(pkgCache::PkgIterator(Cache,*I),
277 pkgOrderList::UnPacked) == true)
278 OList.push_back(*I);
279
280 if (OList.OrderConfigure() == false)
281 return false;
5e312de7
DK
282
283 std::string const conf = _config->Find("PackageManager::Configure","all");
284 bool const ConfigurePkgs = (conf == "all");
285
6c139d6e 286 // Perform the configuring
91c03d37 287 for (pkgOrderList::iterator I = OList.begin(); I != OList.end(); ++I)
6c139d6e
AL
288 {
289 PkgIterator Pkg(Cache,*I);
17182c0c
CB
290
291 /* Check if the package has been configured, this can happen if SmartConfigure
292 calls its self */
293 if (List->IsFlag(Pkg,pkgOrderList::Configured)) continue;
803ea2a8 294
d41d0e01 295 if (ConfigurePkgs == true && SmartConfigure(Pkg, 0) == false) {
c7c7d3e8
CB
296 if (ImmConfigureAll)
297 _error->Error(_("Could not perform immediate configuration on '%s'. "
298 "Please see man 5 apt.conf under APT::Immediate-Configure for details. (%d)"),Pkg.Name(),1);
299 else
300 _error->Error("Internal error, packages left unconfigured. %s",Pkg.Name());
6c139d6e 301 return false;
634985f8 302 }
6c139d6e
AL
303
304 List->Flag(Pkg,pkgOrderList::Configured,pkgOrderList::States);
305 }
306
307 return true;
308}
309 /*}}}*/
310// PM::SmartConfigure - Perform immediate configuration of the pkg /*{{{*/
311// ---------------------------------------------------------------------
c7c7d3e8
CB
312/* This function tries to put the system in a state where Pkg can be configured.
313 This involves checking each of Pkg's dependanies and unpacking and
314 configuring packages where needed.
315
316 Note on failure: This method can fail, without causing any problems.
317 This can happen when using Immediate-Configure-All, SmartUnPack may call
318 SmartConfigure, it may fail because of a complex dependancy situation, but
319 a error will only be reported if ConfigureAll fails. This is why some of the
320 messages this function reports on failure (return false;) as just warnings
321 only shown when debuging*/
d41d0e01 322bool pkgPackageManager::SmartConfigure(PkgIterator Pkg, int const Depth)
6c139d6e 323{
38ff3de6 324 // If this is true, only check and correct and dependencies without the Loop flag
d41d0e01
CB
325 bool PkgLoop = List->IsFlag(Pkg,pkgOrderList::Loop);
326
987d8d03
CB
327 if (Debug) {
328 VerIterator InstallVer = VerIterator(Cache,Cache[Pkg].InstallVer);
d41d0e01
CB
329 clog << OutputInDepth(Depth) << "SmartConfigure " << Pkg.Name() << " (" << InstallVer.VerStr() << ")";
330 if (PkgLoop)
38ff3de6 331 clog << " (Only Correct Dependencies)";
d41d0e01 332 clog << endl;
987d8d03 333 }
0eacf067 334
590f1923 335 VerIterator const instVer = Cache[Pkg].InstVerIter(Cache);
b2e465d6 336
38ff3de6 337 /* Because of the ordered list, most dependencies should be unpacked,
c7c7d3e8 338 however if there is a loop (A depends on B, B depends on A) this will not
38ff3de6 339 be the case, so check for dependencies before configuring. */
6c139d6e 340 bool Bad = false;
590f1923
CB
341 for (DepIterator D = instVer.DependsList();
342 D.end() == false; )
6c139d6e 343 {
590f1923
CB
344 // Compute a single dependency element (glob or)
345 pkgCache::DepIterator Start;
346 pkgCache::DepIterator End;
347 D.GlobOr(Start,End);
6c139d6e 348
590f1923
CB
349 if (End->Type == pkgCache::Dep::Depends)
350 Bad = true;
6c139d6e 351
590f1923
CB
352 // Check for dependanices that have not been unpacked, probably due to loops.
353 while (End->Type == pkgCache::Dep::Depends) {
354 PkgIterator DepPkg;
355 VerIterator InstallVer;
356 SPtrArray<Version *> VList = Start.AllTargets();
357
c7c7d3e8 358 // Check through each version of each package that could satisfy this dependancy
590f1923 359 for (Version **I = VList; *I != 0; I++) {
6c139d6e 360 VerIterator Ver(Cache,*I);
590f1923 361 DepPkg = Ver.ParentPkg();
590f1923 362 InstallVer = VerIterator(Cache,Cache[DepPkg].InstallVer);
6c139d6e 363
c7c7d3e8 364 // Check if the current version of the package is avalible and will satisfy this dependancy
590f1923 365 if (DepPkg.CurrentVer() == Ver && List->IsNow(DepPkg) == true &&
b9f66879 366 !List->IsFlag(DepPkg,pkgOrderList::Removed) && DepPkg.State() == PkgIterator::NeedsNothing)
6c139d6e
AL
367 {
368 Bad = false;
c7c7d3e8 369 break;
6c139d6e 370 }
a6c8798a 371
c7c7d3e8 372 // Check if the version that is going to be installed will satisfy the dependancy
590f1923
CB
373 if (Cache[DepPkg].InstallVer == *I) {
374 if (List->IsFlag(DepPkg,pkgOrderList::UnPacked)) {
b57257d2 375 if (List->IsFlag(DepPkg,pkgOrderList::Loop) && PkgLoop) {
a99d02a8
CB
376 // This dependancy has already been dealt with by another SmartConfigure on Pkg
377 Bad = false;
378 break;
b57257d2
CB
379 } else if (List->IsFlag(Pkg,pkgOrderList::Loop)) {
380 /* Check for a loop to prevent one forming
381 If A depends on B and B depends on A, SmartConfigure will
382 just hop between them if this is not checked. Dont remove the
383 loop flag after finishing however as loop is already set.
384 This means that there is another SmartConfigure call for this
385 package and it will remove the loop flag */
386 Bad = !SmartConfigure(DepPkg, Depth + 1);
387 } else {
388 /* Check for a loop to prevent one forming
389 If A depends on B and B depends on A, SmartConfigure will
390 just hop between them if this is not checked */
391 List->Flag(Pkg,pkgOrderList::Loop);
392 Bad = !SmartConfigure(DepPkg, Depth + 1);
393 List->RmFlag(Pkg,pkgOrderList::Loop);
a99d02a8 394 }
a99d02a8 395 // If SmartConfigure was succesfull, Bad is false, so break
a99d02a8 396 if (!Bad) break;
590f1923
CB
397 } else if (List->IsFlag(DepPkg,pkgOrderList::Configured)) {
398 Bad = false;
c7c7d3e8 399 break;
590f1923 400 }
590f1923 401 }
6c139d6e 402 }
590f1923 403
c7c7d3e8 404 /* If the dependany is still not satisfied, try, if possible, unpacking a package to satisfy it */
590f1923 405 if (InstallVer != 0 && Bad) {
d9f6c795
DK
406 if (List->IsNow(DepPkg)) {
407 Bad = false;
408 if (List->IsFlag(Pkg,pkgOrderList::Loop))
409 {
410 if (Debug)
411 std::clog << OutputInDepth(Depth) << "Package " << Pkg << " loops in SmartConfigure" << std::endl;
412 }
413 else
414 {
415 List->Flag(Pkg,pkgOrderList::Loop);
416 if (Debug)
417 cout << OutputInDepth(Depth) << "Unpacking " << DepPkg.Name() << " to avoid loop" << endl;
418 SmartUnPack(DepPkg, true, Depth + 1);
419 List->RmFlag(Pkg,pkgOrderList::Loop);
420 }
590f1923
CB
421 }
422 }
423
424 if (Start==End) {
d9f6c795 425 if (Bad && Debug && List->IsFlag(DepPkg,pkgOrderList::Loop) == false)
38ff3de6 426 std::clog << OutputInDepth(Depth) << "Could not satisfy dependencies for " << Pkg.Name() << std::endl;
590f1923 427 break;
590f1923
CB
428 } else {
429 Start++;
430 }
6c139d6e 431 }
590f1923 432 }
c7c7d3e8
CB
433
434 if (Bad) {
435 if (Debug)
436 _error->Warning(_("Could not configure '%s'. "),Pkg.Name());
6c139d6e 437 return false;
c7c7d3e8 438 }
a99d02a8
CB
439
440 if (PkgLoop) return true;
5e312de7
DK
441
442 static std::string const conf = _config->Find("PackageManager::Configure","all");
443 static bool const ConfigurePkgs = (conf == "all" || conf == "smart");
444
17182c0c 445 if (List->IsFlag(Pkg,pkgOrderList::Configured))
c333ea43 446 return _error->Error("Internal configure error on '%s'.", Pkg.Name());
5e312de7 447
590f1923
CB
448 if (ConfigurePkgs == true && Configure(Pkg) == false)
449 return false;
75a90b93 450
590f1923 451 List->Flag(Pkg,pkgOrderList::Configured,pkgOrderList::States);
6c139d6e 452
894d672e 453 if ((Cache[Pkg].InstVerIter(Cache)->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same)
d77b985a
DK
454 for (PkgIterator P = Pkg.Group().PackageList();
455 P.end() == false; P = Pkg.Group().NextPkg(P))
456 {
457 if (Pkg == P || List->IsFlag(P,pkgOrderList::Configured) == true ||
458 Cache[P].InstallVer == 0 || (P.CurrentVer() == Cache[P].InstallVer &&
459 (Cache[Pkg].iFlags & pkgDepCache::ReInstall) != pkgDepCache::ReInstall))
460 continue;
d41d0e01 461 SmartConfigure(P, (Depth +1));
d77b985a
DK
462 }
463
6c139d6e
AL
464 // Sanity Check
465 if (List->IsFlag(Pkg,pkgOrderList::Configured) == false)
c7c7d3e8 466 return _error->Error(_("Could not configure '%s'. "),Pkg.Name());
20382bad 467
6c139d6e
AL
468 return true;
469}
470 /*}}}*/
6c139d6e
AL
471// PM::EarlyRemove - Perform removal of packages before their time /*{{{*/
472// ---------------------------------------------------------------------
473/* This is called to deal with conflicts arising from unpacking */
474bool pkgPackageManager::EarlyRemove(PkgIterator Pkg)
475{
476 if (List->IsNow(Pkg) == false)
477 return true;
478
479 // Already removed it
480 if (List->IsFlag(Pkg,pkgOrderList::Removed) == true)
481 return true;
482
483 // Woops, it will not be re-installed!
484 if (List->IsFlag(Pkg,pkgOrderList::InList) == false)
485 return false;
9d4c8f67
AL
486
487 // Essential packages get special treatment
5af32db6 488 bool IsEssential = false;
9d4c8f67 489 if ((Pkg->Flags & pkgCache::Flag::Essential) != 0)
5af32db6
AL
490 IsEssential = true;
491
492 /* Check for packages that are the dependents of essential packages and
493 promote them too */
494 if (Pkg->CurrentVer != 0)
495 {
496 for (DepIterator D = Pkg.RevDependsList(); D.end() == false &&
f7f0d6c7 497 IsEssential == false; ++D)
5af32db6
AL
498 if (D->Type == pkgCache::Dep::Depends || D->Type == pkgCache::Dep::PreDepends)
499 if ((D.ParentPkg()->Flags & pkgCache::Flag::Essential) != 0)
500 IsEssential = true;
501 }
502
503 if (IsEssential == true)
9d4c8f67
AL
504 {
505 if (_config->FindB("APT::Force-LoopBreak",false) == false)
b2e465d6
AL
506 return _error->Error(_("This installation run will require temporarily "
507 "removing the essential package %s due to a "
508 "Conflicts/Pre-Depends loop. This is often bad, "
509 "but if you really want to do it, activate the "
510 "APT::Force-LoopBreak option."),Pkg.Name());
9d4c8f67 511 }
6c139d6e
AL
512
513 bool Res = SmartRemove(Pkg);
514 if (Cache[Pkg].Delete() == false)
515 List->Flag(Pkg,pkgOrderList::Removed,pkgOrderList::States);
516
517 return Res;
518}
519 /*}}}*/
520// PM::SmartRemove - Removal Helper /*{{{*/
521// ---------------------------------------------------------------------
522/* */
523bool pkgPackageManager::SmartRemove(PkgIterator Pkg)
524{
525 if (List->IsNow(Pkg) == false)
526 return true;
527
528 List->Flag(Pkg,pkgOrderList::Configured,pkgOrderList::States);
803ea2a8 529
28166356 530 return Remove(Pkg,(Cache[Pkg].iFlags & pkgDepCache::Purge) == pkgDepCache::Purge);
6c139d6e
AL
531}
532 /*}}}*/
533// PM::SmartUnPack - Install helper /*{{{*/
534// ---------------------------------------------------------------------
590f1923
CB
535/* This puts the system in a state where it can Unpack Pkg, if Pkg is allready
536 unpacked, or when it has been unpacked, if Immediate==true it configures it. */
6c139d6e 537bool pkgPackageManager::SmartUnPack(PkgIterator Pkg)
d77b985a 538{
d41d0e01 539 return SmartUnPack(Pkg, true, 0);
d77b985a 540}
d41d0e01 541bool pkgPackageManager::SmartUnPack(PkgIterator Pkg, bool const Immediate, int const Depth)
6c139d6e 542{
d41d0e01
CB
543 bool PkgLoop = List->IsFlag(Pkg,pkgOrderList::Loop);
544
987d8d03 545 if (Debug) {
d41d0e01 546 clog << OutputInDepth(Depth) << "SmartUnPack " << Pkg.Name();
987d8d03
CB
547 VerIterator InstallVer = VerIterator(Cache,Cache[Pkg].InstallVer);
548 if (Pkg.CurrentVer() == 0)
d41d0e01 549 cout << " (install version " << InstallVer.VerStr() << ")";
987d8d03 550 else
d41d0e01
CB
551 cout << " (replace version " << Pkg.CurrentVer().VerStr() << " with " << InstallVer.VerStr() << ")";
552 if (PkgLoop)
553 cout << " (Only Perform PreUnpack Checks)";
554 cout << endl;
987d8d03 555 }
cfcdf7fe 556
d77b985a
DK
557 VerIterator const instVer = Cache[Pkg].InstVerIter(Cache);
558
c7c7d3e8
CB
559 /* PreUnpack Checks: This loop checks and attempts to rectify and problems that would prevent the package being unpacked.
560 It addresses: PreDepends, Conflicts, Obsoletes and Breaks (DpkgBreaks). Any resolutions that do not require it should
561 avoid configuration (calling SmartUnpack with Immediate=true), this is because when unpacking some packages with
562 complex dependancy structures, trying to configure some packages while breaking the loops can complicate things .
563 This will be either dealt with if the package is configured as a dependency of Pkg (if and when Pkg is configured),
564 or by the ConfigureAll call at the end of the for loop in OrderInstall. */
d77b985a 565 for (DepIterator D = instVer.DependsList();
421c8d10 566 D.end() == false; )
6c139d6e 567 {
421c8d10
AL
568 // Compute a single dependency element (glob or)
569 pkgCache::DepIterator Start;
570 pkgCache::DepIterator End;
571 D.GlobOr(Start,End);
572
573 while (End->Type == pkgCache::Dep::PreDepends)
6c139d6e 574 {
9fc57a59 575 if (Debug)
d41d0e01 576 clog << OutputInDepth(Depth) << "PreDepends order for " << Pkg.Name() << std::endl;
f4945db3 577
6c139d6e 578 // Look for possible ok targets.
b2e465d6 579 SPtrArray<Version *> VList = Start.AllTargets();
6c139d6e
AL
580 bool Bad = true;
581 for (Version **I = VList; *I != 0 && Bad == true; I++)
582 {
583 VerIterator Ver(Cache,*I);
584 PkgIterator Pkg = Ver.ParentPkg();
585
586 // See if the current version is ok
587 if (Pkg.CurrentVer() == Ver && List->IsNow(Pkg) == true &&
588 Pkg.State() == PkgIterator::NeedsNothing)
589 {
590 Bad = false;
9fc57a59 591 if (Debug)
d41d0e01 592 clog << OutputInDepth(Depth) << "Found ok package " << Pkg.Name() << endl;
6c139d6e
AL
593 continue;
594 }
595 }
596
597 // Look for something that could be configured.
598 for (Version **I = VList; *I != 0 && Bad == true; I++)
599 {
600 VerIterator Ver(Cache,*I);
601 PkgIterator Pkg = Ver.ParentPkg();
602
603 // Not the install version
604 if (Cache[Pkg].InstallVer != *I ||
605 (Cache[Pkg].Keep() == true && Pkg.State() == PkgIterator::NeedsNothing))
606 continue;
17182c0c
CB
607
608 if (List->IsFlag(Pkg,pkgOrderList::Configured)) {
609 Bad = false;
610 continue;
611 }
6c139d6e 612
9fc57a59 613 if (Debug)
d41d0e01
CB
614 clog << OutputInDepth(Depth) << "Trying to SmartConfigure " << Pkg.Name() << endl;
615 Bad = !SmartConfigure(Pkg, Depth + 1);
6c139d6e 616 }
1006601e 617
421c8d10 618 /* If this or element did not match then continue on to the
1006601e 619 next or element until a matching element is found */
421c8d10 620 if (Bad == true)
1006601e
AL
621 {
622 // This triggers if someone make a pre-depends/depend loop.
421c8d10 623 if (Start == End)
1006601e
AL
624 return _error->Error("Couldn't configure pre-depend %s for %s, "
625 "probably a dependency cycle.",
626 End.TargetPkg().Name(),Pkg.Name());
f7f0d6c7 627 ++Start;
421c8d10 628 }
a6c8798a 629 else
421c8d10 630 break;
6c139d6e
AL
631 }
632
b2e465d6
AL
633 if (End->Type == pkgCache::Dep::Conflicts ||
634 End->Type == pkgCache::Dep::Obsoletes)
6c139d6e
AL
635 {
636 /* Look for conflicts. Two packages that are both in the install
637 state cannot conflict so we don't check.. */
b2e465d6 638 SPtrArray<Version *> VList = End.AllTargets();
6c139d6e
AL
639 for (Version **I = VList; *I != 0; I++)
640 {
641 VerIterator Ver(Cache,*I);
9fc57a59
CB
642 PkgIterator ConflictPkg = Ver.ParentPkg();
643 VerIterator InstallVer(Cache,Cache[ConflictPkg].InstallVer);
6c139d6e
AL
644
645 // See if the current version is conflicting
b9f66879 646 if (ConflictPkg.CurrentVer() == Ver && List->IsNow(ConflictPkg))
cbea0578 647 {
d41d0e01 648 cout << OutputInDepth(Depth) << Pkg.Name() << " conflicts with " << ConflictPkg.Name() << endl;
c7c7d3e8
CB
649 /* If a loop is not present or has not yet been detected, attempt to unpack packages
650 to resolve this conflict. If there is a loop present, remove packages to resolve this conflict */
e2a5ff0c
CB
651 if (!List->IsFlag(ConflictPkg,pkgOrderList::Loop)) {
652 if (Cache[ConflictPkg].Keep() == 0 && Cache[ConflictPkg].InstallVer != 0) {
b9f66879 653 if (Debug)
d41d0e01 654 cout << OutputInDepth(Depth) << OutputInDepth(Depth) << "Unpacking " << ConflictPkg.Name() << " to prevent conflict" << endl;
cbea0578 655 List->Flag(Pkg,pkgOrderList::Loop);
d41d0e01 656 SmartUnPack(ConflictPkg,false, Depth + 1);
cbea0578
CB
657 // Remove loop to allow it to be used later if needed
658 List->RmFlag(Pkg,pkgOrderList::Loop);
e2a5ff0c
CB
659 } else {
660 if (EarlyRemove(ConflictPkg) == false)
661 return _error->Error("Internal Error, Could not early remove %s",ConflictPkg.Name());
662 }
663 } else {
664 if (!List->IsFlag(ConflictPkg,pkgOrderList::Removed)) {
b9f66879 665 if (Debug)
d41d0e01 666 cout << OutputInDepth(Depth) << "Because of conficts knot, removing " << ConflictPkg.Name() << " to conflict violation" << endl;
e2a5ff0c
CB
667 if (EarlyRemove(ConflictPkg) == false)
668 return _error->Error("Internal Error, Could not early remove %s",ConflictPkg.Name());
669 }
670 }
6c139d6e
AL
671 }
672 }
6c139d6e 673 }
cfcdf7fe
CB
674
675 // Check for breaks
676 if (End->Type == pkgCache::Dep::DpkgBreaks) {
677 SPtrArray<Version *> VList = End.AllTargets();
678 for (Version **I = VList; *I != 0; I++)
679 {
680 VerIterator Ver(Cache,*I);
8b1f5756 681 PkgIterator BrokenPkg = Ver.ParentPkg();
3e9ab9f0
DK
682 if (BrokenPkg.CurrentVer() != Ver)
683 {
684 if (Debug)
685 std::clog << OutputInDepth(Depth) << " Ignore not-installed version " << Ver.VerStr() << " of " << Pkg.FullName() << " for " << End << std::endl;
686 continue;
687 }
688
55c04aa4 689 // Check if it needs to be unpacked
6b92f60c 690 if (List->IsFlag(BrokenPkg,pkgOrderList::InList) && Cache[BrokenPkg].Delete() == false &&
940f2160 691 List->IsNow(BrokenPkg)) {
6b92f60c
DK
692 if (List->IsFlag(BrokenPkg,pkgOrderList::Loop) && PkgLoop) {
693 // This dependancy has already been dealt with by another SmartUnPack on Pkg
694 break;
695 } else {
440d3d65 696 // Found a break, so see if we can unpack the package to avoid it
6b92f60c 697 // but do not set loop if another SmartUnPack already deals with it
440d3d65
DK
698 VerIterator InstallVer(Cache,Cache[BrokenPkg].InstallVer);
699 bool circle = false;
700 for (pkgCache::DepIterator D = InstallVer.DependsList(); D.end() == false; ++D)
701 {
702 if (D->Type != pkgCache::Dep::PreDepends)
703 continue;
704 SPtrArray<Version *> VL = D.AllTargets();
705 for (Version **I = VL; *I != 0; ++I)
706 {
707 VerIterator V(Cache,*I);
708 PkgIterator P = V.ParentPkg();
709 // we are checking for installation as an easy 'protection' against or-groups and (unchosen) providers
710 if (P->CurrentVer == 0 || P != Pkg || (P.CurrentVer() != V && Cache[P].InstallVer != V))
711 continue;
712 circle = true;
713 break;
714 }
715 if (circle == true)
716 break;
717 }
718 if (circle == true)
719 {
720 if (Debug)
721 cout << OutputInDepth(Depth) << " Avoiding " << End << " avoided as " << BrokenPkg.FullName() << " has a pre-depends on " << Pkg.FullName() << std::endl;
722 continue;
723 }
724 else
2264548f 725 {
440d3d65
DK
726 if (Debug)
727 {
728 cout << OutputInDepth(Depth) << " Unpacking " << BrokenPkg.FullName() << " to avoid " << End;
729 if (PkgLoop == true)
730 cout << " (Looping)";
731 cout << std::endl;
732 }
733 if (PkgLoop == false)
734 List->Flag(Pkg,pkgOrderList::Loop);
735 SmartUnPack(BrokenPkg, false, Depth + 1);
736 if (PkgLoop == false)
737 List->RmFlag(Pkg,pkgOrderList::Loop);
2264548f 738 }
6b92f60c
DK
739 }
740 } else {
741 // Check if a package needs to be removed
742 if (Cache[BrokenPkg].Delete() == true && !List->IsFlag(BrokenPkg,pkgOrderList::Configured))
743 {
744 if (Debug)
745 cout << OutputInDepth(Depth) << " Removing " << BrokenPkg.Name() << " to avoid " << End << endl;
746 SmartRemove(BrokenPkg);
747 }
6c139d6e
AL
748 }
749 }
6c139d6e
AL
750 }
751 }
9fc57a59 752
6c139d6e 753 // Check for reverse conflicts.
5af32db6 754 if (CheckRConflicts(Pkg,Pkg.RevDependsList(),
d77b985a 755 instVer.VerStr()) == false)
c7c7d3e8 756 return false;
5af32db6 757
d77b985a 758 for (PrvIterator P = instVer.ProvidesList();
f7f0d6c7 759 P.end() == false; ++P)
32d9baea
DK
760 if (Pkg->Group != P.OwnerPkg()->Group)
761 CheckRConflicts(Pkg,P.ParentPkg().RevDependsList(),P.ProvideVersion());
70ae2409 762
75a90b93
DK
763 if (PkgLoop)
764 return true;
940f2160 765
d77b985a
DK
766 List->Flag(Pkg,pkgOrderList::UnPacked,pkgOrderList::States);
767
2a2a7ef4 768 if (Immediate == true && (instVer->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same)
30426f48
DK
769 {
770 /* Do lockstep M-A:same unpacking in two phases:
771 First unpack all installed architectures, then the not installed.
772 This way we avoid that M-A: enabled packages are installed before
773 their older non-M-A enabled packages are replaced by newer versions */
774 bool const installed = Pkg->CurrentVer != 0;
775 if (installed == true && Install(Pkg,FileNames[Pkg->ID]) == false)
776 return false;
d77b985a
DK
777 for (PkgIterator P = Pkg.Group().PackageList();
778 P.end() == false; P = Pkg.Group().NextPkg(P))
779 {
30426f48 780 if (P->CurrentVer == 0 || P == Pkg || List->IsFlag(P,pkgOrderList::UnPacked) == true ||
d77b985a
DK
781 Cache[P].InstallVer == 0 || (P.CurrentVer() == Cache[P].InstallVer &&
782 (Cache[Pkg].iFlags & pkgDepCache::ReInstall) != pkgDepCache::ReInstall))
783 continue;
75a90b93 784 if (SmartUnPack(P, false, Depth + 1) == false)
30426f48 785 return false;
d77b985a 786 }
30426f48
DK
787 if (installed == false && Install(Pkg,FileNames[Pkg->ID]) == false)
788 return false;
789 for (PkgIterator P = Pkg.Group().PackageList();
790 P.end() == false; P = Pkg.Group().NextPkg(P))
791 {
792 if (P->CurrentVer != 0 || P == Pkg || List->IsFlag(P,pkgOrderList::UnPacked) == true ||
793 Cache[P].InstallVer == 0 || (P.CurrentVer() == Cache[P].InstallVer &&
794 (Cache[Pkg].iFlags & pkgDepCache::ReInstall) != pkgDepCache::ReInstall))
795 continue;
75a90b93 796 if (SmartUnPack(P, false, Depth + 1) == false)
30426f48
DK
797 return false;
798 }
799 }
cd5e8444
DK
800 // packages which are already unpacked don't need to be unpacked again
801 else if (Pkg.State() != pkgCache::PkgIterator::NeedsConfigure && Install(Pkg,FileNames[Pkg->ID]) == false)
28166356
DK
802 return false;
803
d41d0e01 804 if (Immediate == true) {
590f1923 805 // Perform immedate configuration of the package.
d41d0e01 806 if (SmartConfigure(Pkg, Depth + 1) == false)
590f1923
CB
807 _error->Warning(_("Could not perform immediate configuration on '%s'. "
808 "Please see man 5 apt.conf under APT::Immediate-Configure for details. (%d)"),Pkg.Name(),2);
809 }
6c139d6e
AL
810
811 return true;
812}
813 /*}}}*/
814// PM::OrderInstall - Installation ordering routine /*{{{*/
815// ---------------------------------------------------------------------
816/* */
281daf46 817pkgPackageManager::OrderResult pkgPackageManager::OrderInstall()
6c139d6e 818{
7a1b1f8b 819 if (CreateOrderList() == false)
281daf46
AL
820 return Failed;
821
822 Reset();
6c139d6e 823
30e1eab5 824 if (Debug == true)
5e312de7 825 clog << "Beginning to order" << endl;
6c139d6e 826
5e312de7
DK
827 bool const ordering =
828 _config->FindB("PackageManager::UnpackAll",true) ?
829 List->OrderUnpack(FileNames) : List->OrderCritical();
830 if (ordering == false)
281daf46
AL
831 {
832 _error->Error("Internal ordering error");
833 return Failed;
834 }
835
30e1eab5
AL
836 if (Debug == true)
837 clog << "Done ordering" << endl;
838
281daf46 839 bool DoneSomething = false;
91c03d37 840 for (pkgOrderList::iterator I = List->begin(); I != List->end(); ++I)
6c139d6e
AL
841 {
842 PkgIterator Pkg(Cache,*I);
e2a5ff0c 843
281daf46
AL
844 if (List->IsNow(Pkg) == false)
845 {
b684d8c7 846 if (!List->IsFlag(Pkg,pkgOrderList::Configured) && !NoImmConfigure) {
d41d0e01 847 if (SmartConfigure(Pkg, 0) == false && Debug)
634985f8
CB
848 _error->Warning("Internal Error, Could not configure %s",Pkg.Name());
849 // FIXME: The above warning message might need changing
b684d8c7 850 } else {
634985f8
CB
851 if (Debug == true)
852 clog << "Skipping already done " << Pkg.Name() << endl;
853 }
281daf46 854 continue;
634985f8 855
281daf46
AL
856 }
857
2fd65468 858 if (List->IsMissing(Pkg) == true)
281daf46
AL
859 {
860 if (Debug == true)
a3eaf954 861 clog << "Sequence completed at " << Pkg.Name() << endl;
281daf46
AL
862 if (DoneSomething == false)
863 {
864 _error->Error("Internal Error, ordering was unable to handle the media swap");
865 return Failed;
866 }
867 return Incomplete;
868 }
6c139d6e
AL
869
870 // Sanity check
d0c59649
AL
871 if (Cache[Pkg].Keep() == true &&
872 Pkg.State() == pkgCache::PkgIterator::NeedsNothing &&
873 (Cache[Pkg].iFlags & pkgDepCache::ReInstall) != pkgDepCache::ReInstall)
281daf46 874 {
71a174ee 875 _error->Error("Internal Error, trying to manipulate a kept package (%s)",Pkg.Name());
281daf46
AL
876 return Failed;
877 }
6c139d6e
AL
878
879 // Perform a delete or an install
880 if (Cache[Pkg].Delete() == true)
881 {
882 if (SmartRemove(Pkg) == false)
281daf46 883 return Failed;
6c139d6e
AL
884 }
885 else
d41d0e01 886 if (SmartUnPack(Pkg,List->IsFlag(Pkg,pkgOrderList::Immediate),0) == false)
281daf46
AL
887 return Failed;
888 DoneSomething = true;
590f1923
CB
889
890 if (ImmConfigureAll) {
891 /* ConfigureAll here to pick up and packages left unconfigured becuase they were unpacked in the
892 "PreUnpack Checks" section */
c7c7d3e8
CB
893 if (!ConfigureAll())
894 return Failed;
590f1923 895 }
6c139d6e 896 }
5e312de7 897
6c139d6e
AL
898 // Final run through the configure phase
899 if (ConfigureAll() == false)
281daf46 900 return Failed;
6c139d6e
AL
901
902 // Sanity check
91c03d37 903 for (pkgOrderList::iterator I = List->begin(); I != List->end(); ++I)
281daf46 904 {
6c139d6e 905 if (List->IsFlag(*I,pkgOrderList::Configured) == false)
281daf46
AL
906 {
907 _error->Error("Internal error, packages left unconfigured. %s",
908 PkgIterator(Cache,*I).Name());
909 return Failed;
910 }
9fc57a59 911 }
281daf46
AL
912
913 return Completed;
6c139d6e
AL
914}
915 /*}}}*/
1d6386f3
MV
916// PM::DoInstallPostFork - Does install part that happens after the fork /*{{{*/
917// ---------------------------------------------------------------------
918pkgPackageManager::OrderResult
919pkgPackageManager::DoInstallPostFork(int statusFd)
920{
921 if(statusFd > 0)
922 // FIXME: use SetCloseExec here once it taught about throwing
923 // exceptions instead of doing _exit(100) on failure
924 fcntl(statusFd,F_SETFD,FD_CLOEXEC);
925 bool goResult = Go(statusFd);
926 if(goResult == false)
927 return Failed;
928
1d6386f3
MV
929 return Res;
930};
931
2a7e07c7
MV
932// PM::DoInstall - Does the installation /*{{{*/
933// ---------------------------------------------------------------------
934/* This uses the filenames in FileNames and the information in the
935 DepCache to perform the installation of packages.*/
936pkgPackageManager::OrderResult pkgPackageManager::DoInstall(int statusFd)
937{
938 if(DoInstallPreFork() == Failed)
939 return Failed;
940
7230ad48 941 return DoInstallPostFork(statusFd);
2a7e07c7 942}
eef71338 943 /*}}}*/