]>
Commit | Line | Data |
---|---|---|
6c139d6e AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
e7b470ee | 3 | // $Id: depcache.cc,v 1.25 2001/05/27 05:36:04 jgg Exp $ |
6c139d6e AL |
4 | /* ###################################################################### |
5 | ||
6 | Dependency Cache - Caches Dependency information. | |
7 | ||
8 | ##################################################################### */ | |
9 | /*}}}*/ | |
10 | // Include Files /*{{{*/ | |
094a497d | 11 | #include <apt-pkg/depcache.h> |
094a497d AL |
12 | #include <apt-pkg/version.h> |
13 | #include <apt-pkg/error.h> | |
b2e465d6 AL |
14 | #include <apt-pkg/sptr.h> |
15 | #include <apt-pkg/algorithms.h> | |
afb1e2e3 MV |
16 | |
17 | #include <apt-pkg/fileutl.h> | |
fa3b0945 | 18 | #include <apt-pkg/strutl.h> |
afb1e2e3 | 19 | #include <apt-pkg/configuration.h> |
8b32e920 | 20 | #include <apt-pkg/aptconfiguration.h> |
74a05226 | 21 | #include <apt-pkg/pkgsystem.h> |
afb1e2e3 | 22 | #include <apt-pkg/tagfile.h> |
120365ce MV |
23 | |
24 | #include <iostream> | |
a83d884d | 25 | #include <sstream> |
b1a8717a | 26 | #include <set> |
d4c5f11f | 27 | |
8a3a2e99 MV |
28 | #include <sys/stat.h> |
29 | ||
b2e465d6 | 30 | #include <apti18n.h> |
92fcbfc1 DK |
31 | /*}}}*/ |
32 | // helper for Install-Recommends-Sections and Never-MarkAuto-Sections /*{{{*/ | |
cb1933df MV |
33 | static bool |
34 | ConfigValueInSubTree(const char* SubTree, const char *needle) | |
35 | { | |
36 | Configuration::Item const *Opts; | |
37 | Opts = _config->Tree(SubTree); | |
38 | if (Opts != 0 && Opts->Child != 0) | |
39 | { | |
40 | Opts = Opts->Child; | |
41 | for (; Opts != 0; Opts = Opts->Next) | |
42 | { | |
43 | if (Opts->Value.empty() == true) | |
44 | continue; | |
45 | if (strcmp(needle, Opts->Value.c_str()) == 0) | |
46 | return true; | |
47 | } | |
48 | } | |
49 | return false; | |
50 | } | |
92fcbfc1 DK |
51 | /*}}}*/ |
52 | pkgDepCache::ActionGroup::ActionGroup(pkgDepCache &cache) : /*{{{*/ | |
74a05226 MV |
53 | cache(cache), released(false) |
54 | { | |
55 | ++cache.group_level; | |
56 | } | |
57 | ||
58 | void pkgDepCache::ActionGroup::release() | |
59 | { | |
60 | if(!released) | |
61 | { | |
62 | if(cache.group_level == 0) | |
63 | std::cerr << "W: Unbalanced action groups, expect badness" << std::endl; | |
64 | else | |
65 | { | |
66 | --cache.group_level; | |
67 | ||
68 | if(cache.group_level == 0) | |
69 | cache.MarkAndSweep(); | |
70 | } | |
71 | ||
72 | released = false; | |
73 | } | |
74 | } | |
75 | ||
76 | pkgDepCache::ActionGroup::~ActionGroup() | |
77 | { | |
78 | release(); | |
79 | } | |
92fcbfc1 | 80 | /*}}}*/ |
6c139d6e AL |
81 | // DepCache::pkgDepCache - Constructors /*{{{*/ |
82 | // --------------------------------------------------------------------- | |
83 | /* */ | |
b2e465d6 | 84 | pkgDepCache::pkgDepCache(pkgCache *pCache,Policy *Plcy) : |
74a05226 | 85 | group_level(0), Cache(pCache), PkgState(0), DepState(0) |
6c139d6e | 86 | { |
af29ffb4 MV |
87 | DebugMarker = _config->FindB("Debug::pkgDepCache::Marker", false); |
88 | DebugAutoInstall = _config->FindB("Debug::pkgDepCache::AutoInstall", false); | |
b2e465d6 AL |
89 | delLocalPolicy = 0; |
90 | LocalPolicy = Plcy; | |
91 | if (LocalPolicy == 0) | |
92 | delLocalPolicy = LocalPolicy = new Policy; | |
6c139d6e AL |
93 | } |
94 | /*}}}*/ | |
95 | // DepCache::~pkgDepCache - Destructor /*{{{*/ | |
96 | // --------------------------------------------------------------------- | |
97 | /* */ | |
98 | pkgDepCache::~pkgDepCache() | |
99 | { | |
100 | delete [] PkgState; | |
101 | delete [] DepState; | |
b2e465d6 | 102 | delete delLocalPolicy; |
6c139d6e AL |
103 | } |
104 | /*}}}*/ | |
6c139d6e AL |
105 | // DepCache::Init - Generate the initial extra structures. /*{{{*/ |
106 | // --------------------------------------------------------------------- | |
107 | /* This allocats the extension buffers and initializes them. */ | |
a246f2dc | 108 | bool pkgDepCache::Init(OpProgress *Prog) |
6c139d6e | 109 | { |
74a05226 MV |
110 | // Suppress mark updates during this operation (just in case) and |
111 | // run a mark operation when Init terminates. | |
112 | ActionGroup actions(*this); | |
113 | ||
6c139d6e AL |
114 | delete [] PkgState; |
115 | delete [] DepState; | |
116 | PkgState = new StateCache[Head().PackageCount]; | |
117 | DepState = new unsigned char[Head().DependsCount]; | |
118 | memset(PkgState,0,sizeof(*PkgState)*Head().PackageCount); | |
119 | memset(DepState,0,sizeof(*DepState)*Head().DependsCount); | |
b2e465d6 | 120 | |
a246f2dc AL |
121 | if (Prog != 0) |
122 | { | |
123 | Prog->OverallProgress(0,2*Head().PackageCount,Head().PackageCount, | |
db0db9fe CP |
124 | _("Building dependency tree")); |
125 | Prog->SubProgress(Head().PackageCount,_("Candidate versions")); | |
a246f2dc AL |
126 | } |
127 | ||
6c139d6e AL |
128 | /* Set the current state of everything. In this state all of the |
129 | packages are kept exactly as is. See AllUpgrade */ | |
a246f2dc AL |
130 | int Done = 0; |
131 | for (PkgIterator I = PkgBegin(); I.end() != true; I++,Done++) | |
6c139d6e | 132 | { |
2edcefd5 | 133 | if (Prog != 0 && Done%20 == 0) |
a246f2dc AL |
134 | Prog->Progress(Done); |
135 | ||
6c139d6e AL |
136 | // Find the proper cache slot |
137 | StateCache &State = PkgState[I->ID]; | |
138 | State.iFlags = 0; | |
afb1e2e3 | 139 | |
6c139d6e AL |
140 | // Figure out the install version |
141 | State.CandidateVer = GetCandidateVer(I); | |
142 | State.InstallVer = I.CurrentVer(); | |
143 | State.Mode = ModeKeep; | |
144 | ||
145 | State.Update(I,*this); | |
146 | } | |
147 | ||
a246f2dc AL |
148 | if (Prog != 0) |
149 | { | |
150 | ||
151 | Prog->OverallProgress(Head().PackageCount,2*Head().PackageCount, | |
152 | Head().PackageCount, | |
db0db9fe CP |
153 | _("Building dependency tree")); |
154 | Prog->SubProgress(Head().PackageCount,_("Dependency generation")); | |
a246f2dc AL |
155 | } |
156 | ||
157 | Update(Prog); | |
e004867d MV |
158 | |
159 | if(Prog != 0) | |
160 | Prog->Done(); | |
74a05226 | 161 | |
6c139d6e AL |
162 | return true; |
163 | } | |
164 | /*}}}*/ | |
92fcbfc1 | 165 | bool pkgDepCache::readStateFile(OpProgress *Prog) /*{{{*/ |
a83d884d MV |
166 | { |
167 | FileFd state_file; | |
d34690e1 | 168 | string const state = _config->FindFile("Dir::State::extended_states"); |
a83d884d MV |
169 | if(FileExists(state)) { |
170 | state_file.Open(state, FileFd::ReadOnly); | |
e0b94b97 | 171 | int const file_size = state_file.Size(); |
bc80031f MV |
172 | if(Prog != NULL) |
173 | Prog->OverallProgress(0, file_size, 1, | |
174 | _("Reading state information")); | |
a83d884d MV |
175 | |
176 | pkgTagFile tagfile(&state_file); | |
177 | pkgTagSection section; | |
e0b94b97 DK |
178 | int amt = 0; |
179 | bool const debug_autoremove = _config->FindB("Debug::pkgAutoRemove",false); | |
a83d884d | 180 | while(tagfile.Step(section)) { |
e0b94b97 DK |
181 | string const pkgname = section.FindS("Package"); |
182 | string pkgarch = section.FindS("Architecture"); | |
183 | if (pkgarch.empty() == true) | |
184 | pkgarch = "any"; | |
185 | pkgCache::PkgIterator pkg = Cache->FindPkg(pkgname, pkgarch); | |
186 | // Silently ignore unknown packages and packages with no actual version. | |
187 | if(pkg.end() == true || pkg->VersionList == 0) | |
188 | continue; | |
189 | ||
190 | short const reason = section.FindI("Auto-Installed", 0); | |
191 | if(reason > 0) | |
192 | { | |
193 | PkgState[pkg->ID].Flags |= Flag::Auto; | |
194 | if (unlikely(debug_autoremove)) | |
6ee2b0f8 | 195 | std::clog << "Auto-Installed : " << pkg.FullName() << std::endl; |
e0b94b97 DK |
196 | if (pkgarch == "any") |
197 | { | |
198 | pkgCache::GrpIterator G = pkg.Group(); | |
199 | for (pkg = G.NextPkg(pkg); pkg.end() != true; pkg = G.NextPkg(pkg)) | |
200 | if (pkg->VersionList != 0) | |
201 | PkgState[pkg->ID].Flags |= Flag::Auto; | |
202 | } | |
a83d884d | 203 | } |
e0b94b97 DK |
204 | amt += section.size(); |
205 | if(Prog != NULL) | |
206 | Prog->OverallProgress(amt, file_size, 1, | |
207 | _("Reading state information")); | |
a83d884d | 208 | } |
eef21b9f DK |
209 | if(Prog != NULL) |
210 | Prog->OverallProgress(file_size, file_size, 1, | |
211 | _("Reading state information")); | |
a83d884d MV |
212 | } |
213 | ||
214 | return true; | |
215 | } | |
92fcbfc1 DK |
216 | /*}}}*/ |
217 | bool pkgDepCache::writeStateFile(OpProgress *prog, bool InstalledOnly) /*{{{*/ | |
a83d884d | 218 | { |
e0b94b97 | 219 | bool const debug_autoremove = _config->FindB("Debug::pkgAutoRemove",false); |
95afdfd0 OS |
220 | |
221 | if(debug_autoremove) | |
e23e6733 MV |
222 | std::clog << "pkgDepCache::writeStateFile()" << std::endl; |
223 | ||
b1a8717a | 224 | FileFd StateFile; |
d34690e1 | 225 | string const state = _config->FindFile("Dir::State::extended_states"); |
9a9665f9 MV |
226 | |
227 | // if it does not exist, create a empty one | |
228 | if(!FileExists(state)) | |
229 | { | |
230 | StateFile.Open(state, FileFd::WriteEmpty); | |
231 | StateFile.Close(); | |
232 | } | |
233 | ||
234 | // open it | |
b1a8717a MV |
235 | if(!StateFile.Open(state, FileFd::ReadOnly)) |
236 | return _error->Error(_("Failed to open StateFile %s"), | |
a83d884d MV |
237 | state.c_str()); |
238 | ||
b1a8717a | 239 | FILE *OutFile; |
e0b94b97 | 240 | string const outfile = state + ".tmp"; |
b1a8717a MV |
241 | if((OutFile = fopen(outfile.c_str(),"w")) == NULL) |
242 | return _error->Error(_("Failed to write temporary StateFile %s"), | |
243 | outfile.c_str()); | |
80fa0d8a | 244 | |
b1a8717a MV |
245 | // first merge with the existing sections |
246 | pkgTagFile tagfile(&StateFile); | |
247 | pkgTagSection section; | |
248 | std::set<string> pkgs_seen; | |
249 | const char *nullreorderlist[] = {0}; | |
250 | while(tagfile.Step(section)) { | |
c176c4d0 | 251 | string const pkgname = section.FindS("Package"); |
e0b94b97 DK |
252 | string pkgarch = section.FindS("Architecture"); |
253 | if (pkgarch.empty() == true) | |
254 | pkgarch = "native"; | |
b1a8717a MV |
255 | // Silently ignore unknown packages and packages with no actual |
256 | // version. | |
e0b94b97 | 257 | pkgCache::PkgIterator pkg = Cache->FindPkg(pkgname, pkgarch); |
b1a8717a MV |
258 | if(pkg.end() || pkg.VersionList().end()) |
259 | continue; | |
c176c4d0 DK |
260 | StateCache const &P = PkgState[pkg->ID]; |
261 | bool newAuto = (P.Flags & Flag::Auto); | |
262 | // skip not installed or now-removed ones if requested | |
263 | if (InstalledOnly && ( | |
264 | (pkg->CurrentVer == 0 && P.Mode != ModeInstall) || | |
265 | (pkg->CurrentVer != 0 && P.Mode == ModeDelete))) | |
266 | { | |
267 | // The section is obsolete if it contains no other tag | |
268 | unsigned int const count = section.Count(); | |
269 | if (count < 2 || | |
c67dc114 DK |
270 | (count == 2 && section.Exists("Auto-Installed")) || |
271 | (count == 3 && section.Exists("Auto-Installed") && section.Exists("Architecture"))) | |
c176c4d0 DK |
272 | continue; |
273 | else | |
274 | newAuto = false; | |
275 | } | |
b1a8717a | 276 | if(_config->FindB("Debug::pkgAutoRemove",false)) |
a1e42d1f | 277 | std::clog << "Update existing AutoInstall info: " |
e0b94b97 DK |
278 | << pkg.FullName() << std::endl; |
279 | TFRewriteData rewrite[3]; | |
280 | rewrite[0].Tag = "Architecture"; | |
281 | rewrite[0].Rewrite = pkg.Arch(); | |
b1a8717a | 282 | rewrite[0].NewTag = 0; |
e0b94b97 DK |
283 | rewrite[1].Tag = "Auto-Installed"; |
284 | rewrite[1].Rewrite = newAuto ? "1" : "0"; | |
285 | rewrite[1].NewTag = 0; | |
286 | rewrite[2].Tag = 0; | |
b1a8717a MV |
287 | TFRewrite(OutFile, section, nullreorderlist, rewrite); |
288 | fprintf(OutFile,"\n"); | |
e0b94b97 | 289 | pkgs_seen.insert(pkg.FullName()); |
b1a8717a MV |
290 | } |
291 | ||
292 | // then write the ones we have not seen yet | |
293 | std::ostringstream ostr; | |
294 | for(pkgCache::PkgIterator pkg=Cache->PkgBegin(); !pkg.end(); pkg++) { | |
c176c4d0 DK |
295 | StateCache const &P = PkgState[pkg->ID]; |
296 | if(P.Flags & Flag::Auto) { | |
e0b94b97 | 297 | if (pkgs_seen.find(pkg.FullName()) != pkgs_seen.end()) { |
95afdfd0 | 298 | if(debug_autoremove) |
e0b94b97 | 299 | std::clog << "Skipping already written " << pkg.FullName() << std::endl; |
b1a8717a MV |
300 | continue; |
301 | } | |
c176c4d0 DK |
302 | // skip not installed ones if requested |
303 | if (InstalledOnly && ( | |
304 | (pkg->CurrentVer == 0 && P.Mode != ModeInstall) || | |
305 | (pkg->CurrentVer != 0 && P.Mode == ModeDelete))) | |
306 | continue; | |
e0b94b97 DK |
307 | const char* const pkgarch = pkg.Arch(); |
308 | if (strcmp(pkgarch, "all") == 0) | |
309 | continue; | |
95afdfd0 | 310 | if(debug_autoremove) |
e0b94b97 | 311 | std::clog << "Writing new AutoInstall: " << pkg.FullName() << std::endl; |
a83d884d | 312 | ostr.str(string("")); |
e0b94b97 DK |
313 | ostr << "Package: " << pkg.Name() |
314 | << "\nArchitecture: " << pkgarch | |
fc5aece9 | 315 | << "\nAuto-Installed: 1\n\n"; |
3c8cda8b | 316 | fprintf(OutFile,"%s",ostr.str().c_str()); |
a83d884d MV |
317 | } |
318 | } | |
a4decc40 | 319 | fclose(OutFile); |
b1a8717a | 320 | |
8a3a2e99 | 321 | // move the outfile over the real file and set permissions |
b1a8717a | 322 | rename(outfile.c_str(), state.c_str()); |
8a3a2e99 | 323 | chmod(state.c_str(), 0644); |
b1a8717a | 324 | |
a83d884d MV |
325 | return true; |
326 | } | |
92fcbfc1 | 327 | /*}}}*/ |
6c139d6e AL |
328 | // DepCache::CheckDep - Checks a single dependency /*{{{*/ |
329 | // --------------------------------------------------------------------- | |
330 | /* This first checks the dependency against the main target package and | |
331 | then walks along the package provides list and checks if each provides | |
332 | will be installed then checks the provides against the dep. Res will be | |
333 | set to the package which was used to satisfy the dep. */ | |
334 | bool pkgDepCache::CheckDep(DepIterator Dep,int Type,PkgIterator &Res) | |
335 | { | |
336 | Res = Dep.TargetPkg(); | |
337 | ||
338 | /* Check simple depends. A depends -should- never self match but | |
339 | we allow it anyhow because dpkg does. Technically it is a packaging | |
340 | bug. Conflicts may never self match */ | |
b2e465d6 | 341 | if (Dep.TargetPkg() != Dep.ParentPkg() || |
308c7d30 | 342 | (Dep->Type != Dep::Conflicts && Dep->Type != Dep::DpkgBreaks && Dep->Type != Dep::Obsoletes)) |
6c139d6e AL |
343 | { |
344 | PkgIterator Pkg = Dep.TargetPkg(); | |
345 | // Check the base package | |
346 | if (Type == NowVersion && Pkg->CurrentVer != 0) | |
b2e465d6 AL |
347 | if (VS().CheckDep(Pkg.CurrentVer().VerStr(),Dep->CompareOp, |
348 | Dep.TargetVer()) == true) | |
6c139d6e AL |
349 | return true; |
350 | ||
351 | if (Type == InstallVersion && PkgState[Pkg->ID].InstallVer != 0) | |
b2e465d6 AL |
352 | if (VS().CheckDep(PkgState[Pkg->ID].InstVerIter(*this).VerStr(), |
353 | Dep->CompareOp,Dep.TargetVer()) == true) | |
6c139d6e AL |
354 | return true; |
355 | ||
356 | if (Type == CandidateVersion && PkgState[Pkg->ID].CandidateVer != 0) | |
b2e465d6 AL |
357 | if (VS().CheckDep(PkgState[Pkg->ID].CandidateVerIter(*this).VerStr(), |
358 | Dep->CompareOp,Dep.TargetVer()) == true) | |
6c139d6e AL |
359 | return true; |
360 | } | |
361 | ||
b2e465d6 AL |
362 | if (Dep->Type == Dep::Obsoletes) |
363 | return false; | |
364 | ||
6c139d6e AL |
365 | // Check the providing packages |
366 | PrvIterator P = Dep.TargetPkg().ProvidesList(); | |
367 | PkgIterator Pkg = Dep.ParentPkg(); | |
368 | for (; P.end() != true; P++) | |
369 | { | |
370 | /* Provides may never be applied against the same package if it is | |
371 | a conflicts. See the comment above. */ | |
308c7d30 IJ |
372 | if (P.OwnerPkg() == Pkg && |
373 | (Dep->Type == Dep::Conflicts || Dep->Type == Dep::DpkgBreaks)) | |
6c139d6e AL |
374 | continue; |
375 | ||
376 | // Check if the provides is a hit | |
377 | if (Type == NowVersion) | |
378 | { | |
379 | if (P.OwnerPkg().CurrentVer() != P.OwnerVer()) | |
380 | continue; | |
381 | } | |
382 | ||
383 | if (Type == InstallVersion) | |
384 | { | |
385 | StateCache &State = PkgState[P.OwnerPkg()->ID]; | |
386 | if (State.InstallVer != (Version *)P.OwnerVer()) | |
387 | continue; | |
388 | } | |
389 | ||
390 | if (Type == CandidateVersion) | |
391 | { | |
392 | StateCache &State = PkgState[P.OwnerPkg()->ID]; | |
393 | if (State.CandidateVer != (Version *)P.OwnerVer()) | |
394 | continue; | |
395 | } | |
396 | ||
397 | // Compare the versions. | |
b2e465d6 | 398 | if (VS().CheckDep(P.ProvideVersion(),Dep->CompareOp,Dep.TargetVer()) == true) |
6c139d6e AL |
399 | { |
400 | Res = P.OwnerPkg(); | |
401 | return true; | |
402 | } | |
403 | } | |
404 | ||
405 | return false; | |
406 | } | |
407 | /*}}}*/ | |
408 | // DepCache::AddSizes - Add the packages sizes to the counters /*{{{*/ | |
409 | // --------------------------------------------------------------------- | |
81305a0b DK |
410 | /* Call with Mult = -1 to preform the inverse opration |
411 | The Mult increases the complexity of the calulations here and is unused - | |
412 | or do we really have a usecase for removing the size of a package two | |
413 | times? So let us replace it with a simple bool and be done with it… */ | |
414 | __deprecated void pkgDepCache::AddSizes(const PkgIterator &Pkg,signed long Mult) | |
6c139d6e AL |
415 | { |
416 | StateCache &P = PkgState[Pkg->ID]; | |
417 | ||
e7b470ee AL |
418 | if (Pkg->VersionList == 0) |
419 | return; | |
420 | ||
e5a1f2ff AL |
421 | if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure && |
422 | P.Keep() == true) | |
2cca3bd9 | 423 | return; |
2cca3bd9 | 424 | |
6c139d6e AL |
425 | // Compute the size data |
426 | if (P.NewInstall() == true) | |
427 | { | |
e2c66de5 DK |
428 | iUsrSize += (signed long long)(Mult*P.InstVerIter(*this)->InstalledSize); |
429 | iDownloadSize += (signed long long)(Mult*P.InstVerIter(*this)->Size); | |
d38b7b3d | 430 | return; |
6c139d6e AL |
431 | } |
432 | ||
433 | // Upgrading | |
d0c59649 AL |
434 | if (Pkg->CurrentVer != 0 && |
435 | (P.InstallVer != (Version *)Pkg.CurrentVer() || | |
436 | (P.iFlags & ReInstall) == ReInstall) && P.InstallVer != 0) | |
6c139d6e | 437 | { |
e2c66de5 DK |
438 | iUsrSize += (signed long long)(Mult*((signed long long)P.InstVerIter(*this)->InstalledSize - |
439 | (signed long long)Pkg.CurrentVer()->InstalledSize)); | |
440 | iDownloadSize += (signed long long)(Mult*P.InstVerIter(*this)->Size); | |
d38b7b3d AL |
441 | return; |
442 | } | |
443 | ||
444 | // Reinstall | |
2cca3bd9 AL |
445 | if (Pkg.State() == pkgCache::PkgIterator::NeedsUnpack && |
446 | P.Delete() == false) | |
d38b7b3d | 447 | { |
e2c66de5 | 448 | iDownloadSize += (signed long long)(Mult*P.InstVerIter(*this)->Size); |
d38b7b3d | 449 | return; |
6c139d6e AL |
450 | } |
451 | ||
452 | // Removing | |
453 | if (Pkg->CurrentVer != 0 && P.InstallVer == 0) | |
d38b7b3d | 454 | { |
e2c66de5 | 455 | iUsrSize -= (signed long long)(Mult*Pkg.CurrentVer()->InstalledSize); |
d38b7b3d AL |
456 | return; |
457 | } | |
6c139d6e AL |
458 | } |
459 | /*}}}*/ | |
81305a0b DK |
460 | // DepCache::AddSizes - Add the packages sizes to the counters /*{{{*/ |
461 | // --------------------------------------------------------------------- | |
462 | /* Call with Inverse = true to preform the inverse opration */ | |
463 | void pkgDepCache::AddSizes(const PkgIterator &Pkg, bool const &Inverse) | |
464 | { | |
465 | StateCache &P = PkgState[Pkg->ID]; | |
466 | ||
467 | if (Pkg->VersionList == 0) | |
468 | return; | |
469 | ||
470 | if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure && | |
471 | P.Keep() == true) | |
472 | return; | |
473 | ||
474 | // Compute the size data | |
475 | if (P.NewInstall() == true) | |
476 | { | |
477 | if (Inverse == false) { | |
478 | iUsrSize += P.InstVerIter(*this)->InstalledSize; | |
479 | iDownloadSize += P.InstVerIter(*this)->Size; | |
480 | } else { | |
481 | iUsrSize -= P.InstVerIter(*this)->InstalledSize; | |
482 | iDownloadSize -= P.InstVerIter(*this)->Size; | |
483 | } | |
484 | return; | |
485 | } | |
486 | ||
487 | // Upgrading | |
488 | if (Pkg->CurrentVer != 0 && | |
489 | (P.InstallVer != (Version *)Pkg.CurrentVer() || | |
490 | (P.iFlags & ReInstall) == ReInstall) && P.InstallVer != 0) | |
491 | { | |
492 | if (Inverse == false) { | |
493 | iUsrSize -= Pkg.CurrentVer()->InstalledSize; | |
494 | iUsrSize += P.InstVerIter(*this)->InstalledSize; | |
495 | iDownloadSize += P.InstVerIter(*this)->Size; | |
496 | } else { | |
497 | iUsrSize -= P.InstVerIter(*this)->InstalledSize; | |
498 | iUsrSize += Pkg.CurrentVer()->InstalledSize; | |
499 | iDownloadSize -= P.InstVerIter(*this)->Size; | |
500 | } | |
501 | return; | |
502 | } | |
503 | ||
504 | // Reinstall | |
505 | if (Pkg.State() == pkgCache::PkgIterator::NeedsUnpack && | |
506 | P.Delete() == false) | |
507 | { | |
508 | if (Inverse == false) | |
509 | iDownloadSize += P.InstVerIter(*this)->Size; | |
510 | else | |
511 | iDownloadSize -= P.InstVerIter(*this)->Size; | |
512 | return; | |
513 | } | |
514 | ||
515 | // Removing | |
516 | if (Pkg->CurrentVer != 0 && P.InstallVer == 0) | |
517 | { | |
518 | if (Inverse == false) | |
519 | iUsrSize -= Pkg.CurrentVer()->InstalledSize; | |
520 | else | |
521 | iUsrSize += Pkg.CurrentVer()->InstalledSize; | |
d38b7b3d AL |
522 | return; |
523 | } | |
6c139d6e AL |
524 | } |
525 | /*}}}*/ | |
526 | // DepCache::AddStates - Add the package to the state counter /*{{{*/ | |
527 | // --------------------------------------------------------------------- | |
528 | /* This routine is tricky to use, you must make sure that it is never | |
529 | called twice for the same package. This means the Remove/Add section | |
530 | should be as short as possible and not encompass any code that will | |
531 | calld Remove/Add itself. Remember, dependencies can be circular so | |
532 | while processing a dep for Pkg it is possible that Add/Remove | |
533 | will be called on Pkg */ | |
534 | void pkgDepCache::AddStates(const PkgIterator &Pkg,int Add) | |
535 | { | |
536 | StateCache &State = PkgState[Pkg->ID]; | |
537 | ||
4ef9a929 | 538 | // The Package is broken (either minimal dep or policy dep) |
6c139d6e AL |
539 | if ((State.DepState & DepInstMin) != DepInstMin) |
540 | iBrokenCount += Add; | |
4ef9a929 MV |
541 | if ((State.DepState & DepInstPolicy) != DepInstPolicy) |
542 | iPolicyBrokenCount += Add; | |
6c139d6e AL |
543 | |
544 | // Bad state | |
545 | if (Pkg.State() != PkgIterator::NeedsNothing) | |
546 | iBadCount += Add; | |
547 | ||
548 | // Not installed | |
549 | if (Pkg->CurrentVer == 0) | |
550 | { | |
d556d1a1 AL |
551 | if (State.Mode == ModeDelete && |
552 | (State.iFlags | Purge) == Purge && Pkg.Purge() == false) | |
553 | iDelCount += Add; | |
554 | ||
6c139d6e AL |
555 | if (State.Mode == ModeInstall) |
556 | iInstCount += Add; | |
557 | return; | |
558 | } | |
559 | ||
560 | // Installed, no upgrade | |
6321777b | 561 | if (State.Status == 0) |
d0c59649 | 562 | { |
6c139d6e AL |
563 | if (State.Mode == ModeDelete) |
564 | iDelCount += Add; | |
d0c59649 AL |
565 | else |
566 | if ((State.iFlags & ReInstall) == ReInstall) | |
567 | iInstCount += Add; | |
568 | ||
6c139d6e AL |
569 | return; |
570 | } | |
571 | ||
572 | // Alll 3 are possible | |
573 | if (State.Mode == ModeDelete) | |
574 | iDelCount += Add; | |
575 | if (State.Mode == ModeKeep) | |
576 | iKeepCount += Add; | |
577 | if (State.Mode == ModeInstall) | |
578 | iInstCount += Add; | |
579 | } | |
580 | /*}}}*/ | |
581 | // DepCache::BuildGroupOrs - Generate the Or group dep data /*{{{*/ | |
582 | // --------------------------------------------------------------------- | |
583 | /* The or group results are stored in the last item of the or group. This | |
584 | allows easy detection of the state of a whole or'd group. */ | |
585 | void pkgDepCache::BuildGroupOrs(VerIterator const &V) | |
586 | { | |
587 | unsigned char Group = 0; | |
588 | ||
589 | for (DepIterator D = V.DependsList(); D.end() != true; D++) | |
590 | { | |
591 | // Build the dependency state. | |
592 | unsigned char &State = DepState[D->ID]; | |
593 | ||
594 | /* Invert for Conflicts. We have to do this twice to get the | |
595 | right sense for a conflicts group */ | |
308c7d30 IJ |
596 | if (D->Type == Dep::Conflicts || |
597 | D->Type == Dep::DpkgBreaks || | |
598 | D->Type == Dep::Obsoletes) | |
6c139d6e AL |
599 | State = ~State; |
600 | ||
601 | // Add to the group if we are within an or.. | |
d2685fd6 | 602 | State &= 0x7; |
6c139d6e AL |
603 | Group |= State; |
604 | State |= Group << 3; | |
605 | if ((D->CompareOp & Dep::Or) != Dep::Or) | |
606 | Group = 0; | |
607 | ||
608 | // Invert for Conflicts | |
308c7d30 IJ |
609 | if (D->Type == Dep::Conflicts || |
610 | D->Type == Dep::DpkgBreaks || | |
611 | D->Type == Dep::Obsoletes) | |
6c139d6e AL |
612 | State = ~State; |
613 | } | |
614 | } | |
615 | /*}}}*/ | |
616 | // DepCache::VersionState - Perform a pass over a dependency list /*{{{*/ | |
617 | // --------------------------------------------------------------------- | |
618 | /* This is used to run over a dependency list and determine the dep | |
619 | state of the list, filtering it through both a Min check and a Policy | |
620 | check. The return result will have SetMin/SetPolicy low if a check | |
621 | fails. It uses the DepState cache for it's computations. */ | |
622 | unsigned char pkgDepCache::VersionState(DepIterator D,unsigned char Check, | |
623 | unsigned char SetMin, | |
624 | unsigned char SetPolicy) | |
625 | { | |
626 | unsigned char Dep = 0xFF; | |
627 | ||
628 | while (D.end() != true) | |
629 | { | |
630 | // Compute a single dependency element (glob or) | |
631 | DepIterator Start = D; | |
632 | unsigned char State = 0; | |
633 | for (bool LastOR = true; D.end() == false && LastOR == true; D++) | |
634 | { | |
635 | State |= DepState[D->ID]; | |
636 | LastOR = (D->CompareOp & Dep::Or) == Dep::Or; | |
637 | } | |
638 | ||
639 | // Minimum deps that must be satisfied to have a working package | |
640 | if (Start.IsCritical() == true) | |
641 | if ((State & Check) != Check) | |
642 | Dep &= ~SetMin; | |
643 | ||
644 | // Policy deps that must be satisfied to install the package | |
645 | if (IsImportantDep(Start) == true && | |
646 | (State & Check) != Check) | |
647 | Dep &= ~SetPolicy; | |
648 | } | |
649 | ||
650 | return Dep; | |
651 | } | |
652 | /*}}}*/ | |
653 | // DepCache::DependencyState - Compute the 3 results for a dep /*{{{*/ | |
654 | // --------------------------------------------------------------------- | |
655 | /* This is the main dependency computation bit. It computes the 3 main | |
656 | results for a dependencys, Now, Install and Candidate. Callers must | |
657 | invert the result if dealing with conflicts. */ | |
658 | unsigned char pkgDepCache::DependencyState(DepIterator &D) | |
659 | { | |
660 | unsigned char State = 0; | |
661 | ||
662 | if (CheckDep(D,NowVersion) == true) | |
663 | State |= DepNow; | |
664 | if (CheckDep(D,InstallVersion) == true) | |
665 | State |= DepInstall; | |
666 | if (CheckDep(D,CandidateVersion) == true) | |
667 | State |= DepCVer; | |
668 | ||
669 | return State; | |
670 | } | |
671 | /*}}}*/ | |
672 | // DepCache::UpdateVerState - Compute the Dep member of the state /*{{{*/ | |
673 | // --------------------------------------------------------------------- | |
674 | /* This determines the combined dependency representation of a package | |
675 | for its two states now and install. This is done by using the pre-generated | |
676 | dependency information. */ | |
677 | void pkgDepCache::UpdateVerState(PkgIterator Pkg) | |
678 | { | |
679 | // Empty deps are always true | |
680 | StateCache &State = PkgState[Pkg->ID]; | |
681 | State.DepState = 0xFF; | |
682 | ||
683 | // Check the Current state | |
684 | if (Pkg->CurrentVer != 0) | |
685 | { | |
686 | DepIterator D = Pkg.CurrentVer().DependsList(); | |
687 | State.DepState &= VersionState(D,DepNow,DepNowMin,DepNowPolicy); | |
688 | } | |
689 | ||
690 | /* Check the candidate state. We do not compare against the whole as | |
691 | a candidate state but check the candidate version against the | |
692 | install states */ | |
693 | if (State.CandidateVer != 0) | |
694 | { | |
695 | DepIterator D = State.CandidateVerIter(*this).DependsList(); | |
696 | State.DepState &= VersionState(D,DepInstall,DepCandMin,DepCandPolicy); | |
697 | } | |
698 | ||
699 | // Check target state which can only be current or installed | |
700 | if (State.InstallVer != 0) | |
701 | { | |
702 | DepIterator D = State.InstVerIter(*this).DependsList(); | |
703 | State.DepState &= VersionState(D,DepInstall,DepInstMin,DepInstPolicy); | |
704 | } | |
705 | } | |
706 | /*}}}*/ | |
8b32e920 DK |
707 | // DepCache::RemovePseudoInstalledPkg - MultiArch helper for Update() /*{{{*/ |
708 | // --------------------------------------------------------------------- | |
709 | /* We "install" arch all packages for all archs if it is installed. Many | |
710 | of these will be broken. This method will look at these broken Pkg and | |
711 | "remove" it. */ | |
712 | bool pkgDepCache::RemovePseudoInstalledPkg(PkgIterator &Pkg, std::set<unsigned long> &recheck) { | |
713 | if (unlikely(Pkg->CurrentVer == 0)) | |
714 | return false; | |
715 | ||
716 | VerIterator V = Pkg.CurrentVer(); | |
717 | if (V->MultiArch != Version::All) | |
718 | return false; | |
719 | ||
1ec1653c DK |
720 | // Never ever kill an "all" package - they have no dependency so they can't be broken |
721 | if (strcmp(Pkg.Arch(),"all") == 0) | |
8b32e920 DK |
722 | return false; |
723 | ||
1f530ccb DK |
724 | unsigned char const CurDepState = VersionState(V.DependsList(),DepInstall,DepInstMin,DepInstPolicy); |
725 | if ((CurDepState & DepInstMin) == DepInstMin) { | |
1ec1653c DK |
726 | // okay, the package isn't broken, but is the package also required? |
727 | // If it has no real dependencies, no installed rdepends and doesn't | |
728 | // provide something of value, we will kill it as not required. | |
729 | // These pseudopackages have otherwise interesting effects if they get | |
730 | // a new dependency in a newer version… | |
731 | for (pkgCache::DepIterator D = V.DependsList(); | |
732 | D.end() != true; ++D) | |
1f530ccb | 733 | if (D.IsCritical() == true && D.ParentPkg()->Group != Pkg->Group) |
1ec1653c DK |
734 | return false; |
735 | for (DepIterator D = Pkg.RevDependsList(); D.end() != true; ++D) | |
736 | { | |
1f530ccb | 737 | if (D.IsCritical() == false) |
1ec1653c DK |
738 | continue; |
739 | PkgIterator const P = D.ParentPkg(); | |
1f530ccb DK |
740 | if (P->Group == Pkg->Group) |
741 | continue; | |
1ec1653c DK |
742 | if (P->CurrentVer != 0) |
743 | return false; | |
744 | } | |
745 | for (PrvIterator Prv = V.ProvidesList(); Prv.end() != true; Prv++) | |
746 | for (DepIterator d = Prv.ParentPkg().RevDependsList(); | |
747 | d.end() != true; ++d) | |
748 | { | |
749 | PkgIterator const P = d.ParentPkg(); | |
750 | if (P->CurrentVer != 0 && | |
751 | P->Group != Pkg->Group) | |
752 | return false; | |
753 | } | |
754 | } | |
755 | ||
756 | // Dependencies for this arch all package are not statisfied | |
8b32e920 DK |
757 | // so we installed it only for our convenience: get right of it now. |
758 | RemoveSizes(Pkg); | |
759 | RemoveStates(Pkg); | |
760 | ||
761 | Pkg->CurrentVer = 0; | |
762 | PkgState[Pkg->ID].InstallVer = 0; | |
763 | ||
764 | AddStates(Pkg); | |
765 | Update(Pkg); | |
766 | AddSizes(Pkg); | |
767 | ||
768 | // After the remove previously satisfied pseudo pkg could be now | |
769 | // no longer satisfied, so we need to recheck the reverse dependencies | |
770 | for (DepIterator d = Pkg.RevDependsList(); d.end() != true; ++d) | |
771 | { | |
772 | PkgIterator const P = d.ParentPkg(); | |
773 | if (P->CurrentVer != 0) | |
774 | recheck.insert(P.Index()); | |
775 | } | |
776 | ||
1ec1653c DK |
777 | for (DepIterator d = V.DependsList(); d.end() != true; ++d) |
778 | { | |
779 | PkgIterator const P = d.TargetPkg(); | |
780 | for (PrvIterator Prv = P.ProvidesList(); Prv.end() != true; ++Prv) | |
781 | { | |
782 | PkgIterator const O = Prv.OwnerPkg(); | |
783 | if (O->CurrentVer != 0) | |
784 | recheck.insert(O.Index()); | |
785 | } | |
786 | ||
787 | if (P->CurrentVer != 0) | |
788 | recheck.insert(P.Index()); | |
789 | } | |
790 | ||
791 | for (PrvIterator Prv = V.ProvidesList(); Prv.end() != true; Prv++) | |
792 | { | |
793 | for (DepIterator d = Prv.ParentPkg().RevDependsList(); | |
794 | d.end() != true; ++d) | |
795 | { | |
796 | PkgIterator const P = d.ParentPkg(); | |
797 | if (P->CurrentVer == 0) | |
798 | continue; | |
799 | ||
800 | recheck.insert(P.Index()); | |
801 | } | |
802 | } | |
803 | ||
8b32e920 DK |
804 | |
805 | return true; | |
806 | } | |
807 | /*}}}*/ | |
6c139d6e AL |
808 | // DepCache::Update - Figure out all the state information /*{{{*/ |
809 | // --------------------------------------------------------------------- | |
810 | /* This will figure out the state of all the packages and all the | |
811 | dependencies based on the current policy. */ | |
a246f2dc | 812 | void pkgDepCache::Update(OpProgress *Prog) |
6c139d6e AL |
813 | { |
814 | iUsrSize = 0; | |
815 | iDownloadSize = 0; | |
816 | iDelCount = 0; | |
817 | iInstCount = 0; | |
818 | iKeepCount = 0; | |
819 | iBrokenCount = 0; | |
820 | iBadCount = 0; | |
8b32e920 DK |
821 | |
822 | std::set<unsigned long> recheck; | |
823 | ||
6c139d6e | 824 | // Perform the depends pass |
a246f2dc | 825 | int Done = 0; |
8b32e920 DK |
826 | bool const checkMultiArch = APT::Configuration::getArchitectures().size() > 1; |
827 | unsigned long killed = 0; | |
a246f2dc | 828 | for (PkgIterator I = PkgBegin(); I.end() != true; I++,Done++) |
6c139d6e | 829 | { |
2edcefd5 | 830 | if (Prog != 0 && Done%20 == 0) |
a246f2dc | 831 | Prog->Progress(Done); |
6c139d6e AL |
832 | for (VerIterator V = I.VersionList(); V.end() != true; V++) |
833 | { | |
834 | unsigned char Group = 0; | |
8b32e920 | 835 | |
6c139d6e AL |
836 | for (DepIterator D = V.DependsList(); D.end() != true; D++) |
837 | { | |
838 | // Build the dependency state. | |
839 | unsigned char &State = DepState[D->ID]; | |
b2e465d6 | 840 | State = DependencyState(D); |
6c139d6e AL |
841 | |
842 | // Add to the group if we are within an or.. | |
843 | Group |= State; | |
844 | State |= Group << 3; | |
845 | if ((D->CompareOp & Dep::Or) != Dep::Or) | |
846 | Group = 0; | |
847 | ||
848 | // Invert for Conflicts | |
308c7d30 IJ |
849 | if (D->Type == Dep::Conflicts || |
850 | D->Type == Dep::DpkgBreaks || | |
851 | D->Type == Dep::Obsoletes) | |
6c139d6e | 852 | State = ~State; |
8b32e920 | 853 | } |
6c139d6e AL |
854 | } |
855 | ||
8b32e920 | 856 | // Compute the package dependency state and size additions |
6c139d6e AL |
857 | AddSizes(I); |
858 | UpdateVerState(I); | |
859 | AddStates(I); | |
8b32e920 DK |
860 | |
861 | if (checkMultiArch != true || I->CurrentVer == 0) | |
862 | continue; | |
863 | ||
864 | VerIterator const V = I.CurrentVer(); | |
865 | if (V->MultiArch != Version::All) | |
866 | continue; | |
867 | ||
868 | recheck.insert(I.Index()); | |
869 | --Done; // no progress if we need to recheck the package | |
6c139d6e | 870 | } |
a246f2dc | 871 | |
8b32e920 DK |
872 | if (checkMultiArch == true) { |
873 | /* FIXME: recheck breaks proper progress reporting as we don't know | |
874 | how many packages we need to recheck. To lower the effect | |
875 | a bit we increase with a kill, but we should do something more clever… */ | |
6248b28e DK |
876 | while(recheck.empty() == false) |
877 | for (std::set<unsigned long>::const_iterator p = recheck.begin(); | |
461e4a5e | 878 | p != recheck.end();) { |
6248b28e DK |
879 | if (Prog != 0 && Done%20 == 0) |
880 | Prog->Progress(Done); | |
881 | PkgIterator P = PkgIterator(*Cache, Cache->PkgP + *p); | |
882 | if (RemovePseudoInstalledPkg(P, recheck) == true) { | |
883 | ++killed; | |
884 | ++Done; | |
885 | } | |
461e4a5e | 886 | recheck.erase(p++); |
8b32e920 | 887 | } |
1f530ccb DK |
888 | |
889 | /* Okay, we have killed a great amount of pseudopackages - | |
890 | we have killed so many that we have now arch "all" packages | |
891 | without an installed pseudo package, but we NEED an installed | |
892 | pseudo package, so we will search now for a pseudo package | |
893 | we can install without breaking everything. */ | |
894 | for (GrpIterator G = Cache->GrpBegin(); G.end() != true; ++G) | |
895 | { | |
896 | PkgIterator P = G.FindPkg("all"); | |
897 | if (P.end() == true) | |
898 | continue; | |
899 | if (P->CurrentVer == 0) | |
900 | continue; | |
901 | bool installed = false; | |
902 | for (P = G.FindPkg("any"); P.end() != true; P = G.NextPkg(P)) | |
903 | { | |
904 | if (strcmp(P.Arch(), "all") == 0) | |
905 | continue; | |
906 | if (P->CurrentVer == 0) | |
907 | continue; | |
908 | installed = true; | |
909 | break; | |
910 | } | |
911 | if (installed == false) | |
912 | recheck.insert(G.Index()); | |
913 | } | |
1f530ccb | 914 | |
edde664d DK |
915 | while (recheck.empty() != true) |
916 | { | |
917 | std::set<unsigned long>::const_iterator g = recheck.begin(); | |
918 | unsigned long const G = *g; | |
919 | recheck.erase(g); | |
920 | if (unlikely(ReInstallPseudoForGroup(G, recheck) == false)) | |
461e4a5e | 921 | _error->Warning(_("Internal error, group '%s' has no installable pseudo package"), GrpIterator(*Cache, Cache->GrpP + G).Name()); |
edde664d | 922 | } |
6c139d6e | 923 | } |
a246f2dc | 924 | |
8b32e920 | 925 | if (Prog != 0) |
a246f2dc | 926 | Prog->Progress(Done); |
74a05226 MV |
927 | |
928 | readStateFile(Prog); | |
6c139d6e AL |
929 | } |
930 | /*}}}*/ | |
edde664d DK |
931 | // DepCache::ReInstallPseudoForGroup - MultiArch helper for Update() /*{{{*/ |
932 | // --------------------------------------------------------------------- | |
933 | /* RemovePseudoInstalledPkg() is very successful. It even kills packages | |
934 | to an amount that no pseudo package is left, but we need a pseudo package | |
935 | for upgrading senarios so we need to reinstall one pseudopackage which | |
936 | doesn't break everything. Thankfully we can't have architecture depending | |
937 | negative dependencies so this problem is already eliminated */ | |
938 | bool pkgDepCache::ReInstallPseudoForGroup(pkgCache::PkgIterator const &P, std::set<unsigned long> &recheck) | |
939 | { | |
940 | if (P->CurrentVer != 0) | |
941 | return true; | |
942 | // recursive call for packages which provide this package | |
943 | for (pkgCache::PrvIterator Prv = P.ProvidesList(); Prv.end() != true; ++Prv) | |
944 | ReInstallPseudoForGroup(Prv.OwnerPkg(), recheck); | |
945 | // check if we actually need to look at this group | |
946 | unsigned long const G = P->Group; | |
947 | std::set<unsigned long>::const_iterator Pi = recheck.find(G); | |
948 | if (Pi == recheck.end()) | |
949 | return true; | |
950 | recheck.erase(Pi); // remove here, so we can't fall into an endless loop | |
951 | if (unlikely(ReInstallPseudoForGroup(G, recheck) == false)) | |
952 | { | |
953 | recheck.insert(G); | |
954 | return false; | |
955 | } | |
956 | return true; | |
957 | } | |
958 | bool pkgDepCache::ReInstallPseudoForGroup(unsigned long const &G, std::set<unsigned long> &recheck) | |
959 | { | |
960 | std::vector<std::string> static const Archs = APT::Configuration::getArchitectures(); | |
961 | pkgCache::GrpIterator Grp(*Cache, Cache->GrpP + G); | |
962 | if (unlikely(Grp.end() == true)) | |
963 | return false; | |
964 | for (std::vector<std::string>::const_iterator a = Archs.begin(); | |
965 | a != Archs.end(); ++a) | |
966 | { | |
967 | pkgCache::PkgIterator P = Grp.FindPkg(*a); | |
968 | if (P.end() == true) | |
969 | continue; | |
970 | pkgCache::VerIterator allV = Grp.FindPkg("all").CurrentVer(); | |
971 | for (VerIterator V = P.VersionList(); V.end() != true; ++V) | |
972 | { | |
973 | // search for the same version as the all package | |
974 | if (allV->Hash != V->Hash || strcmp(allV.VerStr(),V.VerStr()) != 0) | |
975 | continue; | |
976 | unsigned char const CurDepState = VersionState(V.DependsList(),DepInstall,DepInstMin,DepInstPolicy); | |
977 | // If it is broken, try to install dependencies first before retry | |
978 | if ((CurDepState & DepInstMin) != DepInstMin) | |
979 | { | |
980 | for (pkgCache::DepIterator D = V.DependsList(); D.end() != true; ++D) | |
981 | { | |
982 | if (D->Type != pkgCache::Dep::PreDepends && D->Type != pkgCache::Dep::Depends) | |
983 | continue; | |
984 | ReInstallPseudoForGroup(D.TargetPkg(), recheck); | |
985 | } | |
986 | unsigned char const CurDepState = VersionState(V.DependsList(),DepInstall,DepInstMin,DepInstPolicy); | |
987 | // if package ist still broken… try another arch | |
988 | if ((CurDepState & DepInstMin) != DepInstMin) | |
989 | break; | |
990 | } | |
991 | // dependencies satisfied: reinstall the package | |
992 | RemoveSizes(P); | |
993 | RemoveStates(P); | |
994 | P->CurrentVer = V.Index(); | |
995 | PkgState[P->ID].InstallVer = V; | |
996 | AddStates(P); | |
997 | Update(P); | |
998 | AddSizes(P); | |
999 | return true; | |
1000 | } | |
1001 | } | |
1002 | return false; | |
1003 | } | |
1004 | /*}}}*/ | |
6c139d6e AL |
1005 | // DepCache::Update - Update the deps list of a package /*{{{*/ |
1006 | // --------------------------------------------------------------------- | |
1007 | /* This is a helper for update that only does the dep portion of the scan. | |
74a05226 | 1008 | It is mainly meant to scan reverse dependencies. */ |
6c139d6e AL |
1009 | void pkgDepCache::Update(DepIterator D) |
1010 | { | |
1011 | // Update the reverse deps | |
1012 | for (;D.end() != true; D++) | |
1013 | { | |
1014 | unsigned char &State = DepState[D->ID]; | |
1015 | State = DependencyState(D); | |
1016 | ||
1017 | // Invert for Conflicts | |
308c7d30 IJ |
1018 | if (D->Type == Dep::Conflicts || |
1019 | D->Type == Dep::DpkgBreaks || | |
1020 | D->Type == Dep::Obsoletes) | |
6c139d6e | 1021 | State = ~State; |
b2e465d6 | 1022 | |
6c139d6e AL |
1023 | RemoveStates(D.ParentPkg()); |
1024 | BuildGroupOrs(D.ParentVer()); | |
1025 | UpdateVerState(D.ParentPkg()); | |
1026 | AddStates(D.ParentPkg()); | |
1027 | } | |
1028 | } | |
1029 | /*}}}*/ | |
1030 | // DepCache::Update - Update the related deps of a package /*{{{*/ | |
1031 | // --------------------------------------------------------------------- | |
1032 | /* This is called whenever the state of a package changes. It updates | |
1033 | all cached dependencies related to this package. */ | |
1034 | void pkgDepCache::Update(PkgIterator const &Pkg) | |
b2e465d6 | 1035 | { |
6c139d6e AL |
1036 | // Recompute the dep of the package |
1037 | RemoveStates(Pkg); | |
1038 | UpdateVerState(Pkg); | |
1039 | AddStates(Pkg); | |
1040 | ||
1041 | // Update the reverse deps | |
1042 | Update(Pkg.RevDependsList()); | |
1043 | ||
1044 | // Update the provides map for the current ver | |
1045 | if (Pkg->CurrentVer != 0) | |
1046 | for (PrvIterator P = Pkg.CurrentVer().ProvidesList(); | |
1047 | P.end() != true; P++) | |
1048 | Update(P.ParentPkg().RevDependsList()); | |
1049 | ||
1050 | // Update the provides map for the candidate ver | |
9972233d AL |
1051 | if (PkgState[Pkg->ID].CandidateVer != 0) |
1052 | for (PrvIterator P = PkgState[Pkg->ID].CandidateVerIter(*this).ProvidesList(); | |
1053 | P.end() != true; P++) | |
1054 | Update(P.ParentPkg().RevDependsList()); | |
6c139d6e | 1055 | } |
6c139d6e | 1056 | /*}}}*/ |
6c139d6e AL |
1057 | // DepCache::MarkKeep - Put the package in the keep state /*{{{*/ |
1058 | // --------------------------------------------------------------------- | |
1059 | /* */ | |
af29ffb4 MV |
1060 | void pkgDepCache::MarkKeep(PkgIterator const &Pkg, bool Soft, bool FromUser, |
1061 | unsigned long Depth) | |
6c139d6e AL |
1062 | { |
1063 | // Simplifies other routines. | |
1064 | if (Pkg.end() == true) | |
1065 | return; | |
813c8eea AL |
1066 | |
1067 | /* Reject an attempt to keep a non-source broken installed package, those | |
1068 | must be upgraded */ | |
1069 | if (Pkg.State() == PkgIterator::NeedsUnpack && | |
1070 | Pkg.CurrentVer().Downloadable() == false) | |
1071 | return; | |
6c139d6e | 1072 | |
74a05226 MV |
1073 | /** \todo Can this be moved later in the method? */ |
1074 | ActionGroup group(*this); | |
1075 | ||
6c139d6e AL |
1076 | /* We changed the soft state all the time so the UI is a bit nicer |
1077 | to use */ | |
1078 | StateCache &P = PkgState[Pkg->ID]; | |
1079 | if (Soft == true) | |
1080 | P.iFlags |= AutoKept; | |
1081 | else | |
1082 | P.iFlags &= ~AutoKept; | |
1083 | ||
1084 | // Check that it is not already kept | |
1085 | if (P.Mode == ModeKeep) | |
1086 | return; | |
1087 | ||
1088 | // We dont even try to keep virtual packages.. | |
1089 | if (Pkg->VersionList == 0) | |
1090 | return; | |
32085498 MV |
1091 | #if 0 // reseting the autoflag here means we lose the |
1092 | // auto-mark information if a user selects a package for removal | |
1093 | // but changes his mind then and sets it for keep again | |
1094 | // - this makes sense as default when all Garbage dependencies | |
1095 | // are automatically marked for removal (as aptitude does). | |
1096 | // setting a package for keep then makes it no longer autoinstalled | |
1097 | // for all other use-case this action is rather suprising | |
74a05226 MV |
1098 | if(FromUser && !P.Marked) |
1099 | P.Flags &= ~Flag::Auto; | |
32085498 MV |
1100 | #endif |
1101 | ||
af29ffb4 | 1102 | if (DebugMarker == true) |
c3a85f49 | 1103 | std::clog << OutputInDepth(Depth) << "MarkKeep " << Pkg << " FU=" << FromUser << std::endl; |
af29ffb4 | 1104 | |
6c139d6e AL |
1105 | RemoveSizes(Pkg); |
1106 | RemoveStates(Pkg); | |
1107 | ||
1108 | P.Mode = ModeKeep; | |
1109 | if (Pkg->CurrentVer == 0) | |
1110 | P.InstallVer = 0; | |
1111 | else | |
1112 | P.InstallVer = Pkg.CurrentVer(); | |
1113 | ||
1114 | AddStates(Pkg); | |
1115 | ||
1116 | Update(Pkg); | |
1117 | ||
1118 | AddSizes(Pkg); | |
1119 | } | |
1120 | /*}}}*/ | |
1121 | // DepCache::MarkDelete - Put the package in the delete state /*{{{*/ | |
1122 | // --------------------------------------------------------------------- | |
1123 | /* */ | |
af29ffb4 | 1124 | void pkgDepCache::MarkDelete(PkgIterator const &Pkg, bool rPurge, |
6910a2ac | 1125 | unsigned long Depth, bool FromUser) |
6c139d6e AL |
1126 | { |
1127 | // Simplifies other routines. | |
1128 | if (Pkg.end() == true) | |
1129 | return; | |
1130 | ||
74a05226 MV |
1131 | ActionGroup group(*this); |
1132 | ||
6c139d6e AL |
1133 | // Check that it is not already marked for delete |
1134 | StateCache &P = PkgState[Pkg->ID]; | |
d556d1a1 AL |
1135 | P.iFlags &= ~(AutoKept | Purge); |
1136 | if (rPurge == true) | |
1137 | P.iFlags |= Purge; | |
1138 | ||
1139 | if ((P.Mode == ModeDelete || P.InstallVer == 0) && | |
1140 | (Pkg.Purge() == true || rPurge == false)) | |
6c139d6e | 1141 | return; |
d556d1a1 | 1142 | |
6c139d6e AL |
1143 | // We dont even try to delete virtual packages.. |
1144 | if (Pkg->VersionList == 0) | |
1145 | return; | |
1146 | ||
6910a2ac DK |
1147 | // check if we are allowed to install the package |
1148 | if (IsDeleteOk(Pkg,rPurge,Depth,FromUser) == false) | |
6910a2ac | 1149 | return; |
6910a2ac | 1150 | |
af29ffb4 | 1151 | if (DebugMarker == true) |
c3a85f49 | 1152 | std::clog << OutputInDepth(Depth) << "MarkDelete " << Pkg << " FU=" << FromUser << std::endl; |
af29ffb4 | 1153 | |
6c139d6e AL |
1154 | RemoveSizes(Pkg); |
1155 | RemoveStates(Pkg); | |
1156 | ||
d556d1a1 | 1157 | if (Pkg->CurrentVer == 0 && (Pkg.Purge() == true || rPurge == false)) |
3d615484 AL |
1158 | P.Mode = ModeKeep; |
1159 | else | |
1160 | P.Mode = ModeDelete; | |
6c139d6e | 1161 | P.InstallVer = 0; |
6c139d6e AL |
1162 | |
1163 | AddStates(Pkg); | |
1164 | Update(Pkg); | |
1165 | AddSizes(Pkg); | |
803ea2a8 DK |
1166 | |
1167 | // if we remove the pseudo package, we also need to remove the "real" | |
1168 | if (Pkg->CurrentVer != 0 && Pkg.CurrentVer().Pseudo() == true) | |
1169 | MarkDelete(Pkg.Group().FindPkg("all"), rPurge, Depth+1, FromUser); | |
6c139d6e AL |
1170 | } |
1171 | /*}}}*/ | |
6910a2ac DK |
1172 | // DepCache::IsDeleteOk - check if it is ok to remove this package /*{{{*/ |
1173 | // --------------------------------------------------------------------- | |
1174 | /* The default implementation just honors dpkg hold | |
1175 | But an application using this library can override this method | |
1176 | to control the MarkDelete behaviour */ | |
1177 | bool pkgDepCache::IsDeleteOk(PkgIterator const &Pkg,bool rPurge, | |
1178 | unsigned long Depth, bool FromUser) | |
1179 | { | |
83cb4069 | 1180 | if (FromUser == false && Pkg->SelectedState == pkgCache::State::Hold && _config->FindB("APT::Ignore-Hold",false) == false) |
6910a2ac DK |
1181 | { |
1182 | if (DebugMarker == true) | |
c3a85f49 | 1183 | std::clog << OutputInDepth(Depth) << "Hold prevents MarkDelete of " << Pkg << " FU=" << FromUser << std::endl; |
6910a2ac DK |
1184 | return false; |
1185 | } | |
1186 | return true; | |
1187 | } | |
1188 | /*}}}*/ | |
6c139d6e AL |
1189 | // DepCache::MarkInstall - Put the package in the install state /*{{{*/ |
1190 | // --------------------------------------------------------------------- | |
1191 | /* */ | |
b2e465d6 | 1192 | void pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst, |
7610bb3d MV |
1193 | unsigned long Depth, bool FromUser, |
1194 | bool ForceImportantDeps) | |
b2e465d6 AL |
1195 | { |
1196 | if (Depth > 100) | |
1197 | return; | |
1198 | ||
6c139d6e AL |
1199 | // Simplifies other routines. |
1200 | if (Pkg.end() == true) | |
1201 | return; | |
1202 | ||
74a05226 MV |
1203 | ActionGroup group(*this); |
1204 | ||
6c139d6e AL |
1205 | /* Check that it is not already marked for install and that it can be |
1206 | installed */ | |
1207 | StateCache &P = PkgState[Pkg->ID]; | |
1208 | P.iFlags &= ~AutoKept; | |
60681f93 MV |
1209 | if ((P.InstPolicyBroken() == false && P.InstBroken() == false) && |
1210 | (P.Mode == ModeInstall || | |
6c139d6e AL |
1211 | P.CandidateVer == (Version *)Pkg.CurrentVer())) |
1212 | { | |
1213 | if (P.CandidateVer == (Version *)Pkg.CurrentVer() && P.InstallVer == 0) | |
af29ffb4 | 1214 | MarkKeep(Pkg, false, FromUser, Depth+1); |
6c139d6e AL |
1215 | return; |
1216 | } | |
b2e465d6 AL |
1217 | |
1218 | // See if there is even any possible instalation candidate | |
1219 | if (P.CandidateVer == 0) | |
1220 | return; | |
6c139d6e AL |
1221 | // We dont even try to install virtual packages.. |
1222 | if (Pkg->VersionList == 0) | |
1223 | return; | |
6910a2ac DK |
1224 | |
1225 | // check if we are allowed to install the package | |
1226 | if (IsInstallOk(Pkg,AutoInst,Depth,FromUser) == false) | |
6910a2ac | 1227 | return; |
6910a2ac | 1228 | |
6c139d6e AL |
1229 | /* Target the candidate version and remove the autoflag. We reset the |
1230 | autoflag below if this was called recursively. Otherwise the user | |
1231 | should have the ability to de-auto a package by changing its state */ | |
1232 | RemoveSizes(Pkg); | |
1233 | RemoveStates(Pkg); | |
1234 | ||
1235 | P.Mode = ModeInstall; | |
1236 | P.InstallVer = P.CandidateVer; | |
74a05226 MV |
1237 | |
1238 | if(FromUser) | |
1239 | { | |
1240 | // Set it to manual if it's a new install or cancelling the | |
1241 | // removal of a garbage package. | |
1242 | if(P.Status == 2 || (!Pkg.CurrentVer().end() && !P.Marked)) | |
1243 | P.Flags &= ~Flag::Auto; | |
1244 | } | |
1245 | else | |
1246 | { | |
1247 | // Set it to auto if this is a new install. | |
1248 | if(P.Status == 2) | |
1249 | P.Flags |= Flag::Auto; | |
1250 | } | |
6c139d6e AL |
1251 | if (P.CandidateVer == (Version *)Pkg.CurrentVer()) |
1252 | P.Mode = ModeKeep; | |
1253 | ||
1254 | AddStates(Pkg); | |
1255 | Update(Pkg); | |
1256 | AddSizes(Pkg); | |
6910a2ac | 1257 | |
5c640e86 DK |
1258 | // always trigger the install of the all package for a pseudo package |
1259 | if (P.CandidateVerIter(*Cache).Pseudo() == true) | |
1260 | MarkInstall(Pkg.Group().FindPkg("all"), AutoInst, Depth, FromUser, ForceImportantDeps); | |
1261 | ||
6c139d6e AL |
1262 | if (AutoInst == false) |
1263 | return; | |
1264 | ||
af29ffb4 | 1265 | if (DebugMarker == true) |
c3a85f49 | 1266 | std::clog << OutputInDepth(Depth) << "MarkInstall " << Pkg << " FU=" << FromUser << std::endl; |
af29ffb4 | 1267 | |
6c139d6e AL |
1268 | DepIterator Dep = P.InstVerIter(*this).DependsList(); |
1269 | for (; Dep.end() != true;) | |
1270 | { | |
1271 | // Grok or groups | |
1272 | DepIterator Start = Dep; | |
1273 | bool Result = true; | |
b2e465d6 AL |
1274 | unsigned Ors = 0; |
1275 | for (bool LastOR = true; Dep.end() == false && LastOR == true; Dep++,Ors++) | |
6c139d6e AL |
1276 | { |
1277 | LastOR = (Dep->CompareOp & Dep::Or) == Dep::Or; | |
1278 | ||
1279 | if ((DepState[Dep->ID] & DepInstall) == DepInstall) | |
1280 | Result = false; | |
1281 | } | |
1282 | ||
1283 | // Dep is satisfied okay. | |
1284 | if (Result == false) | |
1285 | continue; | |
1286 | ||
1287 | /* Check if this dep should be consider for install. If it is a user | |
1288 | defined important dep and we are installed a new package then | |
4ef9a929 MV |
1289 | it will be installed. Otherwise we only check for important |
1290 | deps that have changed from the installed version | |
1291 | */ | |
6c139d6e AL |
1292 | if (IsImportantDep(Start) == false) |
1293 | continue; | |
4ef9a929 | 1294 | |
0526822a DB |
1295 | /* Check if any ImportantDep() (but not Critical) were added |
1296 | * since we installed the package. Also check for deps that | |
1297 | * were satisfied in the past: for instance, if a version | |
1298 | * restriction in a Recommends was tightened, upgrading the | |
1299 | * package should follow that Recommends rather than causing the | |
1300 | * dependency to be removed. (bug #470115) | |
1b1c2224 MV |
1301 | */ |
1302 | bool isNewImportantDep = false; | |
0526822a | 1303 | bool isPreviouslySatisfiedImportantDep = false; |
4ef9a929 | 1304 | if(!ForceImportantDeps && !Start.IsCritical()) |
1b1c2224 MV |
1305 | { |
1306 | bool found=false; | |
1307 | VerIterator instVer = Pkg.CurrentVer(); | |
6ea08680 | 1308 | if(!instVer.end()) |
1d722933 | 1309 | { |
0526822a DB |
1310 | for (DepIterator D = instVer.DependsList(); D.end() != true; D++) |
1311 | { | |
6ea08680 MV |
1312 | //FIXME: deal better with or-groups(?) |
1313 | DepIterator LocalStart = D; | |
4faff53f MV |
1314 | |
1315 | if(IsImportantDep(D) && !D.IsCritical() && | |
1316 | Start.TargetPkg() == D.TargetPkg()) | |
0526822a DB |
1317 | { |
1318 | if(!isPreviouslySatisfiedImportantDep) | |
1319 | { | |
1320 | DepIterator D2 = D; | |
1321 | while((D2->CompareOp & Dep::Or) != 0) | |
1322 | ++D2; | |
1323 | ||
1324 | isPreviouslySatisfiedImportantDep = | |
1325 | (((*this)[D2] & DepGNow) != 0); | |
1326 | } | |
1327 | ||
1328 | found=true; | |
1329 | } | |
1330 | } | |
1d722933 MV |
1331 | // this is a new dep if it was not found to be already |
1332 | // a important dep of the installed pacakge | |
1333 | isNewImportantDep = !found; | |
1334 | } | |
1b1c2224 MV |
1335 | } |
1336 | if(isNewImportantDep) | |
af29ffb4 MV |
1337 | if(DebugAutoInstall == true) |
1338 | std::clog << OutputInDepth(Depth) << "new important dependency: " | |
1b1c2224 | 1339 | << Start.TargetPkg().Name() << std::endl; |
0526822a | 1340 | if(isPreviouslySatisfiedImportantDep) |
af29ffb4 MV |
1341 | if(DebugAutoInstall == true) |
1342 | std::clog << OutputInDepth(Depth) << "previously satisfied important dependency on " | |
0526822a | 1343 | << Start.TargetPkg().Name() << std::endl; |
1b1c2224 | 1344 | |
4ef9a929 MV |
1345 | // skip important deps if the package is already installed |
1346 | if (Pkg->CurrentVer != 0 && Start.IsCritical() == false | |
0526822a DB |
1347 | && !isNewImportantDep && !isPreviouslySatisfiedImportantDep |
1348 | && !ForceImportantDeps) | |
6c139d6e | 1349 | continue; |
b2e465d6 AL |
1350 | |
1351 | /* If we are in an or group locate the first or that can | |
1352 | succeed. We have already cached this.. */ | |
1353 | for (; Ors > 1 && (DepState[Start->ID] & DepCVer) != DepCVer; Ors--) | |
1354 | Start++; | |
2ed9b455 | 1355 | |
b2e465d6 AL |
1356 | /* This bit is for processing the possibilty of an install/upgrade |
1357 | fixing the problem */ | |
1358 | SPtrArray<Version *> List = Start.AllTargets(); | |
308c7d30 IJ |
1359 | if (Start->Type != Dep::DpkgBreaks && |
1360 | (DepState[Start->ID] & DepCVer) == DepCVer) | |
6c139d6e | 1361 | { |
b2e465d6 AL |
1362 | // Right, find the best version to install.. |
1363 | Version **Cur = List; | |
1364 | PkgIterator P = Start.TargetPkg(); | |
1365 | PkgIterator InstPkg(*Cache,0); | |
6c139d6e | 1366 | |
b2e465d6 AL |
1367 | // See if there are direct matches (at the start of the list) |
1368 | for (; *Cur != 0 && (*Cur)->ParentPkg == P.Index(); Cur++) | |
1369 | { | |
1370 | PkgIterator Pkg(*Cache,Cache->PkgP + (*Cur)->ParentPkg); | |
1371 | if (PkgState[Pkg->ID].CandidateVer != *Cur) | |
1372 | continue; | |
1373 | InstPkg = Pkg; | |
1374 | break; | |
1375 | } | |
1376 | ||
1377 | // Select the highest priority providing package | |
2ed9b455 | 1378 | if (InstPkg.end() == true) |
b2e465d6 AL |
1379 | { |
1380 | pkgPrioSortList(*Cache,Cur); | |
1381 | for (; *Cur != 0; Cur++) | |
1382 | { | |
1383 | PkgIterator Pkg(*Cache,Cache->PkgP + (*Cur)->ParentPkg); | |
1384 | if (PkgState[Pkg->ID].CandidateVer != *Cur) | |
1385 | continue; | |
1386 | InstPkg = Pkg; | |
1387 | break; | |
1388 | } | |
1389 | } | |
1390 | ||
6910a2ac | 1391 | if (InstPkg.end() == false) |
b2e465d6 | 1392 | { |
af29ffb4 MV |
1393 | if(DebugAutoInstall == true) |
1394 | std::clog << OutputInDepth(Depth) << "Installing " << InstPkg.Name() | |
1395 | << " as " << Start.DepType() << " of " << Pkg.Name() | |
d4c5f11f | 1396 | << std::endl; |
92b9551f | 1397 | // now check if we should consider it a automatic dependency or not |
cb1933df | 1398 | if(Pkg.Section() && ConfigValueInSubTree("APT::Never-MarkAuto-Sections", Pkg.Section())) |
92b9551f | 1399 | { |
af29ffb4 MV |
1400 | if(DebugAutoInstall == true) |
1401 | std::clog << OutputInDepth(Depth) << "Setting NOT as auto-installed (direct " | |
1402 | << Start.DepType() << " of pkg in APT::Never-MarkAuto-Sections)" << std::endl; | |
92b9551f MV |
1403 | MarkInstall(InstPkg,true,Depth + 1, true); |
1404 | } | |
1405 | else | |
1406 | { | |
1407 | // mark automatic dependency | |
b51ff02a | 1408 | MarkInstall(InstPkg,true,Depth + 1, false, ForceImportantDeps); |
92b9551f MV |
1409 | // Set the autoflag, after MarkInstall because MarkInstall unsets it |
1410 | if (P->CurrentVer == 0) | |
1411 | PkgState[InstPkg->ID].Flags |= Flag::Auto; | |
1412 | } | |
b2e465d6 | 1413 | } |
6c139d6e AL |
1414 | continue; |
1415 | } | |
308c7d30 | 1416 | |
b2e465d6 | 1417 | /* For conflicts we just de-install the package and mark as auto, |
308c7d30 IJ |
1418 | Conflicts may not have or groups. For dpkg's Breaks we try to |
1419 | upgrade the package. */ | |
1420 | if (Start->Type == Dep::Conflicts || Start->Type == Dep::Obsoletes || | |
1421 | Start->Type == Dep::DpkgBreaks) | |
6c139d6e | 1422 | { |
6c139d6e AL |
1423 | for (Version **I = List; *I != 0; I++) |
1424 | { | |
1425 | VerIterator Ver(*this,*I); | |
1426 | PkgIterator Pkg = Ver.ParentPkg(); | |
308c7d30 IJ |
1427 | |
1428 | if (Start->Type != Dep::DpkgBreaks) | |
6910a2ac DK |
1429 | MarkDelete(Pkg,false,Depth + 1, false); |
1430 | else if (PkgState[Pkg->ID].CandidateVer != *I) | |
1431 | MarkInstall(Pkg,true,Depth + 1, false, ForceImportantDeps); | |
6c139d6e | 1432 | } |
6c139d6e AL |
1433 | continue; |
1434 | } | |
1435 | } | |
1436 | } | |
92fcbfc1 | 1437 | /*}}}*/ |
6910a2ac | 1438 | // DepCache::IsInstallOk - check if it is ok to install this package /*{{{*/ |
2d403b92 | 1439 | // --------------------------------------------------------------------- |
d116d668 | 1440 | /* The default implementation just honors dpkg hold |
6910a2ac | 1441 | But an application using this library can override this method |
d116d668 | 1442 | to control the MarkInstall behaviour */ |
6910a2ac DK |
1443 | bool pkgDepCache::IsInstallOk(PkgIterator const &Pkg,bool AutoInst, |
1444 | unsigned long Depth, bool FromUser) | |
2d403b92 | 1445 | { |
83cb4069 | 1446 | if (FromUser == false && Pkg->SelectedState == pkgCache::State::Hold && _config->FindB("APT::Ignore-Hold",false) == false) |
6910a2ac DK |
1447 | { |
1448 | if (DebugMarker == true) | |
c3a85f49 | 1449 | std::clog << OutputInDepth(Depth) << "Hold prevents MarkInstall of " << Pkg << " FU=" << FromUser << std::endl; |
6910a2ac DK |
1450 | return false; |
1451 | } | |
1452 | return true; | |
2d403b92 MV |
1453 | } |
1454 | /*}}}*/ | |
d0c59649 AL |
1455 | // DepCache::SetReInstall - Set the reinstallation flag /*{{{*/ |
1456 | // --------------------------------------------------------------------- | |
1457 | /* */ | |
1458 | void pkgDepCache::SetReInstall(PkgIterator const &Pkg,bool To) | |
1459 | { | |
1019948c DK |
1460 | if (unlikely(Pkg.end() == true)) |
1461 | return; | |
1462 | ||
74a05226 MV |
1463 | ActionGroup group(*this); |
1464 | ||
d0c59649 AL |
1465 | RemoveSizes(Pkg); |
1466 | RemoveStates(Pkg); | |
1467 | ||
1468 | StateCache &P = PkgState[Pkg->ID]; | |
1469 | if (To == true) | |
1470 | P.iFlags |= ReInstall; | |
1471 | else | |
1472 | P.iFlags &= ~ReInstall; | |
1473 | ||
1474 | AddStates(Pkg); | |
1475 | AddSizes(Pkg); | |
1019948c DK |
1476 | |
1477 | if (unlikely(Pkg.CurrentVer().end() == true) || Pkg.CurrentVer().Pseudo() == false) | |
1478 | return; | |
1479 | ||
1480 | SetReInstall(Pkg.Group().FindPkg("all"), To); | |
d0c59649 AL |
1481 | } |
1482 | /*}}}*/ | |
b2e465d6 AL |
1483 | // DepCache::SetCandidateVersion - Change the candidate version /*{{{*/ |
1484 | // --------------------------------------------------------------------- | |
1485 | /* */ | |
1019948c | 1486 | void pkgDepCache::SetCandidateVersion(VerIterator TargetVer, bool const &Pseudo) |
b2e465d6 | 1487 | { |
74a05226 MV |
1488 | ActionGroup group(*this); |
1489 | ||
b2e465d6 AL |
1490 | pkgCache::PkgIterator Pkg = TargetVer.ParentPkg(); |
1491 | StateCache &P = PkgState[Pkg->ID]; | |
74a05226 | 1492 | |
b2e465d6 AL |
1493 | RemoveSizes(Pkg); |
1494 | RemoveStates(Pkg); | |
1495 | ||
1496 | if (P.CandidateVer == P.InstallVer) | |
1497 | P.InstallVer = (Version *)TargetVer; | |
1498 | P.CandidateVer = (Version *)TargetVer; | |
1499 | P.Update(Pkg,*this); | |
1500 | ||
1501 | AddStates(Pkg); | |
1502 | Update(Pkg); | |
1503 | AddSizes(Pkg); | |
1019948c DK |
1504 | |
1505 | if (TargetVer.Pseudo() == false || Pseudo == false) | |
1506 | return; | |
1507 | ||
1508 | // the version was pseudo: set all other pseudos also | |
1509 | pkgCache::GrpIterator Grp = Pkg.Group(); | |
1510 | for (Pkg = Grp.FindPkg("any"); Pkg.end() == false; ++Pkg) | |
1511 | { | |
1512 | StateCache &P = PkgState[Pkg->ID]; | |
1513 | if (TargetVer.SimilarVer(P.CandidateVerIter(*this)) == true || | |
1514 | (P.CandidateVerIter(*this).Pseudo() == false && | |
1515 | strcmp(Pkg.Arch(), "all") != 0)) | |
1516 | continue; | |
1517 | ||
1518 | for (pkgCache::VerIterator Ver = Pkg.VersionList(); Ver.end() == false; ++Ver) | |
1519 | { | |
1520 | if (TargetVer.SimilarVer(Ver) == false) | |
1521 | continue; | |
1522 | SetCandidateVersion(Ver, false); | |
1523 | break; | |
1524 | } | |
1525 | } | |
b2e465d6 | 1526 | } |
74a05226 MV |
1527 | |
1528 | void pkgDepCache::MarkAuto(const PkgIterator &Pkg, bool Auto) | |
1529 | { | |
1530 | StateCache &state = PkgState[Pkg->ID]; | |
1531 | ||
1532 | ActionGroup group(*this); | |
1533 | ||
1534 | if(Auto) | |
1535 | state.Flags |= Flag::Auto; | |
1536 | else | |
1537 | state.Flags &= ~Flag::Auto; | |
1538 | } | |
b2e465d6 | 1539 | /*}}}*/ |
6c139d6e AL |
1540 | // StateCache::Update - Compute the various static display things /*{{{*/ |
1541 | // --------------------------------------------------------------------- | |
1542 | /* This is called whenever the Candidate version changes. */ | |
1543 | void pkgDepCache::StateCache::Update(PkgIterator Pkg,pkgCache &Cache) | |
1544 | { | |
1545 | // Some info | |
1546 | VerIterator Ver = CandidateVerIter(Cache); | |
1547 | ||
1548 | // Use a null string or the version string | |
1549 | if (Ver.end() == true) | |
1550 | CandVersion = ""; | |
1551 | else | |
1552 | CandVersion = Ver.VerStr(); | |
1553 | ||
1554 | // Find the current version | |
1555 | CurVersion = ""; | |
1556 | if (Pkg->CurrentVer != 0) | |
1557 | CurVersion = Pkg.CurrentVer().VerStr(); | |
1558 | ||
1559 | // Strip off the epochs for display | |
1560 | CurVersion = StripEpoch(CurVersion); | |
1561 | CandVersion = StripEpoch(CandVersion); | |
1562 | ||
1563 | // Figure out if its up or down or equal | |
1564 | Status = Ver.CompareVer(Pkg.CurrentVer()); | |
1565 | if (Pkg->CurrentVer == 0 || Pkg->VersionList == 0 || CandidateVer == 0) | |
1566 | Status = 2; | |
1567 | } | |
1568 | /*}}}*/ | |
1569 | // StateCache::StripEpoch - Remove the epoch specifier from the version /*{{{*/ | |
1570 | // --------------------------------------------------------------------- | |
1571 | /* */ | |
1572 | const char *pkgDepCache::StateCache::StripEpoch(const char *Ver) | |
1573 | { | |
1574 | if (Ver == 0) | |
1575 | return 0; | |
1576 | ||
1577 | // Strip any epoch | |
1578 | for (const char *I = Ver; *I != 0; I++) | |
1579 | if (*I == ':') | |
1580 | return I + 1; | |
1581 | return Ver; | |
1582 | } | |
1583 | /*}}}*/ | |
b2e465d6 | 1584 | // Policy::GetCandidateVer - Returns the Candidate install version /*{{{*/ |
6321777b | 1585 | // --------------------------------------------------------------------- |
b2e465d6 AL |
1586 | /* The default just returns the highest available version that is not |
1587 | a source and automatic. */ | |
e841200b | 1588 | pkgCache::VerIterator pkgDepCache::Policy::GetCandidateVer(PkgIterator const &Pkg) |
6321777b | 1589 | { |
b2e465d6 AL |
1590 | /* Not source/not automatic versions cannot be a candidate version |
1591 | unless they are already installed */ | |
1592 | VerIterator Last(*(pkgCache *)this,0); | |
6321777b | 1593 | |
b2e465d6 AL |
1594 | for (VerIterator I = Pkg.VersionList(); I.end() == false; I++) |
1595 | { | |
1596 | if (Pkg.CurrentVer() == I) | |
1597 | return I; | |
1598 | ||
1599 | for (VerFileIterator J = I.FileList(); J.end() == false; J++) | |
1600 | { | |
1601 | if ((J.File()->Flags & Flag::NotSource) != 0) | |
1602 | continue; | |
1603 | ||
1604 | /* Stash the highest version of a not-automatic source, we use it | |
1605 | if there is nothing better */ | |
1606 | if ((J.File()->Flags & Flag::NotAutomatic) != 0) | |
1607 | { | |
1608 | if (Last.end() == true) | |
1609 | Last = I; | |
1610 | continue; | |
1611 | } | |
1612 | ||
1613 | return I; | |
1614 | } | |
1615 | } | |
6321777b | 1616 | |
b2e465d6 AL |
1617 | return Last; |
1618 | } | |
1619 | /*}}}*/ | |
1620 | // Policy::IsImportantDep - True if the dependency is important /*{{{*/ | |
1621 | // --------------------------------------------------------------------- | |
1622 | /* */ | |
e841200b | 1623 | bool pkgDepCache::Policy::IsImportantDep(DepIterator const &Dep) |
b2e465d6 | 1624 | { |
60681f93 MV |
1625 | if(Dep.IsCritical()) |
1626 | return true; | |
1d722933 MV |
1627 | else if(Dep->Type == pkgCache::Dep::Recommends) |
1628 | { | |
1629 | if ( _config->FindB("APT::Install-Recommends", false)) | |
1630 | return true; | |
1631 | // we suport a special mode to only install-recommends for certain | |
1632 | // sections | |
1633 | // FIXME: this is a meant as a temporarly solution until the | |
1634 | // recommends are cleaned up | |
cb1933df MV |
1635 | const char *sec = Dep.ParentVer().Section(); |
1636 | if (sec && ConfigValueInSubTree("APT::Install-Recommends-Sections", sec)) | |
1637 | return true; | |
1d722933 | 1638 | } |
60681f93 MV |
1639 | else if(Dep->Type == pkgCache::Dep::Suggests) |
1640 | return _config->FindB("APT::Install-Suggests", false); | |
1641 | ||
74a05226 MV |
1642 | return false; |
1643 | } | |
92fcbfc1 DK |
1644 | /*}}}*/ |
1645 | pkgDepCache::InRootSetFunc *pkgDepCache::GetRootSetFunc() /*{{{*/ | |
74a05226 MV |
1646 | { |
1647 | DefaultRootSetFunc *f = new DefaultRootSetFunc; | |
1648 | if(f->wasConstructedSuccessfully()) | |
1649 | return f; | |
1650 | else | |
1651 | { | |
1652 | delete f; | |
1653 | return NULL; | |
1654 | } | |
1655 | } | |
92fcbfc1 | 1656 | /*}}}*/ |
74a05226 MV |
1657 | bool pkgDepCache::MarkFollowsRecommends() |
1658 | { | |
1659 | return _config->FindB("APT::AutoRemove::RecommendsImportant", true); | |
1660 | } | |
1661 | ||
1662 | bool pkgDepCache::MarkFollowsSuggests() | |
1663 | { | |
1664 | return _config->FindB("APT::AutoRemove::SuggestsImportant", false); | |
1665 | } | |
1666 | ||
92fcbfc1 | 1667 | // pkgDepCache::MarkRequired - the main mark algorithm /*{{{*/ |
74a05226 MV |
1668 | bool pkgDepCache::MarkRequired(InRootSetFunc &userFunc) |
1669 | { | |
1670 | bool follow_recommends; | |
1671 | bool follow_suggests; | |
95afdfd0 | 1672 | bool debug_autoremove = _config->FindB("Debug::pkgAutoRemove",false); |
74a05226 MV |
1673 | |
1674 | // init the states | |
1675 | for(PkgIterator p = PkgBegin(); !p.end(); ++p) | |
1676 | { | |
1677 | PkgState[p->ID].Marked = false; | |
1678 | PkgState[p->ID].Garbage = false; | |
1679 | ||
1680 | // debug output | |
95afdfd0 | 1681 | if(debug_autoremove && PkgState[p->ID].Flags & Flag::Auto) |
e0b94b97 | 1682 | std::clog << "AutoDep: " << p.FullName() << std::endl; |
74a05226 MV |
1683 | } |
1684 | ||
1685 | // init vars | |
1686 | follow_recommends = MarkFollowsRecommends(); | |
1687 | follow_suggests = MarkFollowsSuggests(); | |
1688 | ||
1689 | ||
1690 | ||
1691 | // do the mark part, this is the core bit of the algorithm | |
1692 | for(PkgIterator p = PkgBegin(); !p.end(); ++p) | |
1693 | { | |
1694 | if(!(PkgState[p->ID].Flags & Flag::Auto) || | |
1695 | (p->Flags & Flag::Essential) || | |
83789130 DK |
1696 | userFunc.InRootSet(p) || |
1697 | // be nice even then a required package violates the policy (#583517) | |
1698 | // and do the full mark process also for required packages | |
1699 | (p.CurrentVer().end() != true && | |
1700 | p.CurrentVer()->Priority == pkgCache::State::Required)) | |
74a05226 MV |
1701 | { |
1702 | // the package is installed (and set to keep) | |
1703 | if(PkgState[p->ID].Keep() && !p.CurrentVer().end()) | |
83860e37 | 1704 | MarkPackage(p, p.CurrentVer(), |
74a05226 MV |
1705 | follow_recommends, follow_suggests); |
1706 | // the package is to be installed | |
1707 | else if(PkgState[p->ID].Install()) | |
1708 | MarkPackage(p, PkgState[p->ID].InstVerIter(*this), | |
1709 | follow_recommends, follow_suggests); | |
1710 | } | |
1711 | } | |
1712 | ||
1713 | return true; | |
1714 | } | |
92fcbfc1 DK |
1715 | /*}}}*/ |
1716 | // MarkPackage - mark a single package in Mark-and-Sweep /*{{{*/ | |
74a05226 MV |
1717 | void pkgDepCache::MarkPackage(const pkgCache::PkgIterator &pkg, |
1718 | const pkgCache::VerIterator &ver, | |
e0b94b97 DK |
1719 | bool const &follow_recommends, |
1720 | bool const &follow_suggests) | |
74a05226 MV |
1721 | { |
1722 | pkgDepCache::StateCache &state = PkgState[pkg->ID]; | |
e0b94b97 DK |
1723 | |
1724 | // if we are marked already we are done | |
1725 | if(state.Marked) | |
1726 | return; | |
1727 | ||
1728 | VerIterator const currver = pkg.CurrentVer(); | |
1729 | VerIterator const candver = state.CandidateVerIter(*this); | |
1730 | VerIterator const instver = state.InstVerIter(*this); | |
74a05226 MV |
1731 | |
1732 | #if 0 | |
1733 | // If a package was garbage-collected but is now being marked, we | |
1734 | // should re-select it | |
1735 | // For cases when a pkg is set to upgrade and this trigger the | |
1736 | // removal of a no-longer used dependency. if the pkg is set to | |
1737 | // keep again later it will result in broken deps | |
1738 | if(state.Delete() && state.RemoveReason = Unused) | |
1739 | { | |
1740 | if(ver==candver) | |
1741 | mark_install(pkg, false, false, NULL); | |
1742 | else if(ver==pkg.CurrentVer()) | |
1743 | MarkKeep(pkg, false, false); | |
1744 | ||
1745 | instver=state.InstVerIter(*this); | |
1746 | } | |
1747 | #endif | |
1748 | ||
36baa77a MV |
1749 | // For packages that are not going to be removed, ignore versions |
1750 | // other than the InstVer. For packages that are going to be | |
1751 | // removed, ignore versions other than the current version. | |
1752 | if(!(ver == instver && !instver.end()) && | |
1753 | !(ver == currver && instver.end() && !ver.end())) | |
74a05226 MV |
1754 | return; |
1755 | ||
e0b94b97 | 1756 | bool const debug_autoremove = _config->FindB("Debug::pkgAutoRemove", false); |
74a05226 | 1757 | |
95afdfd0 | 1758 | if(debug_autoremove) |
83860e37 | 1759 | { |
e0b94b97 | 1760 | std::clog << "Marking: " << pkg.FullName(); |
83860e37 DB |
1761 | if(!ver.end()) |
1762 | std::clog << " " << ver.VerStr(); | |
1763 | if(!currver.end()) | |
1764 | std::clog << ", Curr=" << currver.VerStr(); | |
1765 | if(!instver.end()) | |
1766 | std::clog << ", Inst=" << instver.VerStr(); | |
1767 | std::clog << std::endl; | |
1768 | } | |
1769 | ||
74a05226 MV |
1770 | state.Marked=true; |
1771 | ||
e0b94b97 DK |
1772 | if(ver.end() == true) |
1773 | return; | |
1774 | ||
1775 | // If the version belongs to a Multi-Arch all package | |
1776 | // we will mark all others in this Group with this version also | |
e0b94b97 DK |
1777 | if (ver->MultiArch == pkgCache::Version::All && |
1778 | strcmp(ver.Arch(true), "all") == 0) | |
74a05226 | 1779 | { |
e0b94b97 DK |
1780 | GrpIterator G = pkg.Group(); |
1781 | const char* const VerStr = ver.VerStr(); | |
1782 | for (PkgIterator P = G.FindPkg("any"); | |
1783 | P.end() != true; P = G.NextPkg(P)) | |
1784 | { | |
1785 | for (VerIterator V = P.VersionList(); | |
1786 | V.end() != true; ++V) | |
1787 | { | |
392a882a DK |
1788 | if (ver->Hash != V->Hash || |
1789 | strcmp(VerStr, V.VerStr()) != 0) | |
e0b94b97 DK |
1790 | continue; |
1791 | MarkPackage(P, V, follow_recommends, follow_suggests); | |
1792 | break; | |
1793 | } | |
1794 | } | |
1795 | } | |
1796 | ||
74a05226 MV |
1797 | for(DepIterator d = ver.DependsList(); !d.end(); ++d) |
1798 | { | |
1799 | if(d->Type == Dep::Depends || | |
1800 | d->Type == Dep::PreDepends || | |
1801 | (follow_recommends && | |
1802 | d->Type == Dep::Recommends) || | |
1803 | (follow_suggests && | |
1804 | d->Type == Dep::Suggests)) | |
1805 | { | |
1806 | // Try all versions of this package. | |
1807 | for(VerIterator V = d.TargetPkg().VersionList(); | |
1808 | !V.end(); ++V) | |
1809 | { | |
1810 | if(_system->VS->CheckDep(V.VerStr(), d->CompareOp, d.TargetVer())) | |
1811 | { | |
95afdfd0 | 1812 | if(debug_autoremove) |
83860e37 | 1813 | { |
e0b94b97 | 1814 | std::clog << "Following dep: " << d.ParentPkg().FullName() |
83860e37 | 1815 | << " " << d.ParentVer().VerStr() << " " |
e0b94b97 | 1816 | << d.DepType() << " " << d.TargetPkg().FullName(); |
83860e37 DB |
1817 | if((d->CompareOp & ~pkgCache::Dep::Or) != pkgCache::Dep::NoOp) |
1818 | { | |
1819 | std::clog << " (" << d.CompType() << " " | |
1820 | << d.TargetVer() << ")"; | |
1821 | } | |
1822 | std::clog << std::endl; | |
1823 | } | |
e0b94b97 | 1824 | MarkPackage(V.ParentPkg(), V, |
74a05226 MV |
1825 | follow_recommends, follow_suggests); |
1826 | } | |
1827 | } | |
1828 | // Now try virtual packages | |
1829 | for(PrvIterator prv=d.TargetPkg().ProvidesList(); | |
1830 | !prv.end(); ++prv) | |
1831 | { | |
1832 | if(_system->VS->CheckDep(prv.ProvideVersion(), d->CompareOp, | |
1833 | d.TargetVer())) | |
1834 | { | |
95afdfd0 | 1835 | if(debug_autoremove) |
83860e37 | 1836 | { |
e0b94b97 DK |
1837 | std::clog << "Following dep: " << d.ParentPkg().FullName() << " " |
1838 | << d.ParentVer().VerStr() << " " | |
1839 | << d.DepType() << " " << d.TargetPkg().FullName() << " "; | |
83860e37 DB |
1840 | if((d->CompareOp & ~pkgCache::Dep::Or) != pkgCache::Dep::NoOp) |
1841 | { | |
1842 | std::clog << " (" << d.CompType() << " " | |
1843 | << d.TargetVer() << ")"; | |
1844 | } | |
1845 | std::clog << ", provided by " | |
e0b94b97 | 1846 | << prv.OwnerPkg().FullName() << " " |
83860e37 DB |
1847 | << prv.OwnerVer().VerStr() |
1848 | << std::endl; | |
1849 | } | |
1850 | ||
74a05226 MV |
1851 | MarkPackage(prv.OwnerPkg(), prv.OwnerVer(), |
1852 | follow_recommends, follow_suggests); | |
1853 | } | |
1854 | } | |
1855 | } | |
1856 | } | |
74a05226 | 1857 | } |
92fcbfc1 DK |
1858 | /*}}}*/ |
1859 | bool pkgDepCache::Sweep() /*{{{*/ | |
74a05226 | 1860 | { |
95afdfd0 OS |
1861 | bool debug_autoremove = _config->FindB("Debug::pkgAutoRemove",false); |
1862 | ||
74a05226 MV |
1863 | // do the sweep |
1864 | for(PkgIterator p=PkgBegin(); !p.end(); ++p) | |
95afdfd0 | 1865 | { |
74a05226 MV |
1866 | StateCache &state=PkgState[p->ID]; |
1867 | ||
c9b320e8 MV |
1868 | // skip required packages |
1869 | if (!p.CurrentVer().end() && | |
1870 | (p.CurrentVer()->Priority == pkgCache::State::Required)) | |
1871 | continue; | |
1872 | ||
74a05226 | 1873 | // if it is not marked and it is installed, it's garbage |
32085498 | 1874 | if(!state.Marked && (!p.CurrentVer().end() || state.Install())) |
74a05226 MV |
1875 | { |
1876 | state.Garbage=true; | |
95afdfd0 | 1877 | if(debug_autoremove) |
6ee2b0f8 | 1878 | std::clog << "Garbage: " << p.FullName() << std::endl; |
74a05226 MV |
1879 | } |
1880 | } | |
1881 | ||
1882 | return true; | |
1883 | } | |
92fcbfc1 | 1884 | /*}}}*/ |