/* * solver3.cc - The APT 3.0 solver * * Copyright (c) 2023 Julian Andres Klode * Copyright (c) 2023 Canonical Ltd * * SPDX-License-Identifier: GPL-2.0+ */ #define APT_COMPILING_APT #include #include #include #include #include #include #include #include #include #include #include #include #include // FIXME: Helpers stolen from DepCache, please give them back. struct APT::Solver::CompareProviders3 /*{{{*/ { pkgCache &Cache; pkgDepCache::Policy &Policy; pkgCache::PkgIterator const Pkg; APT::Solver &Solver; bool upgrade{_config->FindB("APT::Solver::Upgrade", false)}; bool operator()(pkgCache::Version *AV, pkgCache::Version *BV) { return (*this)(pkgCache::VerIterator(Cache, AV), pkgCache::VerIterator(Cache, BV)); } bool operator()(pkgCache::VerIterator const &AV, pkgCache::VerIterator const &BV) { pkgCache::PkgIterator const A = AV.ParentPkg(); pkgCache::PkgIterator const B = BV.ParentPkg(); // Compare versions for the same package. FIXME: Move this to the real implementation if (A == B) { if (AV == BV) return false; // Candidate wins in upgrade scenario if (upgrade) { auto Cand = Policy.GetCandidateVer(A); if (AV == Cand || BV == Cand) return (AV == Cand); } // Installed version wins otherwise if (A.CurrentVer() == AV || B.CurrentVer() == BV) return (A.CurrentVer() == AV); // Rest is ordered list, first by priority if (auto pinA = Policy.GetPriority(AV), pinB = Policy.GetPriority(BV); pinA != pinB) return pinA > pinB; // Then by version return _system->VS->CmpVersion(AV.VerStr(), BV.VerStr()) > 0; } // Try obsolete choices only after exhausting non-obsolete choices such that we install // packages replacing them and don't keep back upgrades depending on the replacement to // keep the obsolete package installed. if (upgrade) if (auto obsoleteA = Solver.Obsolete(A), obsoleteB = Solver.Obsolete(B); obsoleteA != obsoleteB) return obsoleteB; // Prefer MA:same packages if other architectures for it are installed if ((AV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same || (BV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same) { bool instA = false; if ((AV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same) { pkgCache::GrpIterator Grp = A.Group(); for (pkgCache::PkgIterator P = Grp.PackageList(); P.end() == false; P = Grp.NextPkg(P)) if (P->CurrentVer != 0) { instA = true; break; } } bool instB = false; if ((BV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same) { pkgCache::GrpIterator Grp = B.Group(); for (pkgCache::PkgIterator P = Grp.PackageList(); P.end() == false; P = Grp.NextPkg(P)) { if (P->CurrentVer != 0) { instB = true; break; } } } if (instA != instB) return instA; } if ((A->CurrentVer == 0 || B->CurrentVer == 0) && A->CurrentVer != B->CurrentVer) return A->CurrentVer != 0; // Prefer packages in the same group as the target; e.g. foo:i386, foo:amd64 if (A->Group != B->Group) { if (A->Group == Pkg->Group && B->Group != Pkg->Group) return true; else if (B->Group == Pkg->Group && A->Group != Pkg->Group) return false; } // we like essentials if ((A->Flags & pkgCache::Flag::Essential) != (B->Flags & pkgCache::Flag::Essential)) { if ((A->Flags & pkgCache::Flag::Essential) == pkgCache::Flag::Essential) return true; else if ((B->Flags & pkgCache::Flag::Essential) == pkgCache::Flag::Essential) return false; } if ((A->Flags & pkgCache::Flag::Important) != (B->Flags & pkgCache::Flag::Important)) { if ((A->Flags & pkgCache::Flag::Important) == pkgCache::Flag::Important) return true; else if ((B->Flags & pkgCache::Flag::Important) == pkgCache::Flag::Important) return false; } // prefer native architecture if (strcmp(A.Arch(), B.Arch()) != 0) { if (strcmp(A.Arch(), A.Cache()->NativeArch()) == 0) return true; else if (strcmp(B.Arch(), B.Cache()->NativeArch()) == 0) return false; std::vector archs = APT::Configuration::getArchitectures(); for (std::vector::const_iterator a = archs.begin(); a != archs.end(); ++a) if (*a == A.Arch()) return true; else if (*a == B.Arch()) return false; } // higher priority seems like a good idea if (AV->Priority != BV->Priority) return AV->Priority < BV->Priority; if (auto NameCmp = strcmp(A.Name(), B.Name())) return NameCmp < 0; // unable to decide… return A->ID > B->ID; } }; /** \brief Returns \b true for packages matching a regular * expression in APT::NeverAutoRemove. */ class DefaultRootSetFunc2 : public pkgDepCache::DefaultRootSetFunc { std::unique_ptr Kernels; public: DefaultRootSetFunc2(pkgCache *cache) : Kernels(APT::KernelAutoRemoveHelper::GetProtectedKernelsFilter(cache)) {}; virtual ~DefaultRootSetFunc2() {}; bool InRootSet(const pkgCache::PkgIterator &pkg) APT_OVERRIDE { return pkg.end() == false && ((*Kernels)(pkg) || DefaultRootSetFunc::InRootSet(pkg)); }; }; // FIXME: DEDUP with pkgDepCache. /*}}}*/ APT::Solver::Solver(pkgCache &cache, pkgDepCache::Policy &policy) : cache(cache), policy(policy), pkgStates(cache.Head().PackageCount), verStates(cache.Head().VersionCount), pkgObsolete(cache.Head().PackageCount) { static_assert(sizeof(APT::Solver::State) == 3 * sizeof(int)); static_assert(sizeof(APT::Solver::Var) == sizeof(map_pointer)); static_assert(sizeof(APT::Solver::Var) == sizeof(map_pointer)); } // This function determines if a work item is less important than another. bool APT::Solver::Work::operator<(APT::Solver::Work const &b) const { if ((not optional && size < 2) != (not b.optional && b.size < 2)) return not b.optional && b.size < 2; if (group != b.group) return group > b.group; if (optional && b.optional && reason.empty() != b.reason.empty()) return reason.empty(); // An optional item is less important than a required one. if (optional != b.optional) return optional; // We enqueue common dependencies at the package level to avoid choosing versions, so let's solve package items first, // this improves the implication graph as it now tells you that common dependencies were installed by the package. if (reason.Pkg() != b.reason.Pkg()) return reason.Pkg() == 0; return false; } void APT::Solver::Work::Dump(pkgCache &cache) { if (erased) std::cerr << "Erased "; if (optional) std::cerr << "Optional "; std::cerr << "Item (" << ssize_t(size <= solutions.size() ? size : -1) << "@" << depth << (upgrade ? "u" : "") << ") "; if (auto Pkg = reason.Pkg(cache); not Pkg.end()) std::cerr << Pkg.FullName(); if (auto Ver = reason.Ver(cache); not Ver.end()) std::cerr << Ver.ParentPkg().FullName() << "=" << Ver.VerStr(); std::cerr << " -> "; for (auto sol : solutions) { auto Ver = pkgCache::VerIterator(cache, sol); std::cerr << " | " << Ver.ParentPkg().FullName() << "=" << Ver.VerStr(); } } // Prints an implication graph part of the form A -> B -> C, possibly with "not" std::string APT::Solver::WhyStr(Var reason) { std::vector out; while (not reason.empty()) { if (auto Pkg = reason.Pkg(cache); not Pkg.end()) { if ((*this)[Pkg].decision == Decision::MUSTNOT) out.push_back(std::string("not ") + Pkg.FullName()); else out.push_back(Pkg.FullName()); reason = (*this)[Pkg].reason; } if (auto Ver = reason.Ver(cache); not Ver.end()) { if ((*this)[Ver].decision == Decision::MUSTNOT) out.push_back(std::string("not ") + Ver.ParentPkg().FullName() + "=" + Ver.VerStr()); else out.push_back(Ver.ParentPkg().FullName() + "=" + Ver.VerStr()); reason = (*this)[Ver].reason; } } std::string outstr; for (auto I = out.rbegin(); I != out.rend(); ++I) { outstr += (outstr.size() == 0 ? "" : " -> ") + *I; } return outstr; } // This is essentially asking whether any other binary in the source package has a higher candidate // version. This pretends that each package is installed at the same source version as the package // under consideration. bool APT::Solver::ObsoletedByNewerSourceVersion(pkgCache::VerIterator cand) const { const auto pkg = cand.ParentPkg(); const int candPriority = policy.GetPriority(cand); for (auto ver = cand.Cache()->FindGrp(cand.SourcePkgName()).VersionsInSource(); not ver.end(); ver = ver.NextInSource()) { // We are only interested in other packages in the same source package; built for the same architecture. if (ver->ParentPkg == cand->ParentPkg || ver.ParentPkg()->Arch != cand.ParentPkg()->Arch || cache.VS->CmpVersion(ver.SourceVerStr(), cand.SourceVerStr()) <= 0) continue; // We also take equal priority here, given that we have a higher version const int priority = policy.GetPriority(ver, true); if (priority == 0 || priority < candPriority) continue; pkgObsolete[pkg->ID] = 2; if (debug >= 3) std::cerr << "Obsolete: " << cand.ParentPkg().FullName() << "=" << cand.VerStr() << " due to " << ver.ParentPkg().FullName() << "=" << ver.VerStr() << "\n"; return true; } return false; } bool APT::Solver::Obsolete(pkgCache::PkgIterator pkg) const { if (pkgObsolete[pkg->ID] != 0) return pkgObsolete[pkg->ID] == 2; auto ver = policy.GetCandidateVer(pkg); if (ver.end() && not StrictPinning) ver = pkg.VersionList(); if (ver.end()) { if (debug >= 3) std::cerr << "Obsolete: " << pkg.FullName() << " - not installable\n"; pkgObsolete[pkg->ID] = 2; return true; } if (ObsoletedByNewerSourceVersion(ver)) return true; for (auto file = ver.FileList(); !file.end(); file++) if ((file.File()->Flags & pkgCache::Flag::NotSource) == 0) { pkgObsolete[pkg->ID] = 1; return false; } if (debug >= 3) std::cerr << "Obsolete: " << ver.ParentPkg().FullName() << "=" << ver.VerStr() << " - not installable\n"; pkgObsolete[pkg->ID] = 2; return true; } bool APT::Solver::Assume(Var var, bool decision, Var reason) { choices.push_back(solved.size()); return Enqueue(var, decision, std::move(reason)); } bool APT::Solver::Enqueue(Var var, bool decision, Var reason) { auto &state = (*this)[var]; auto decisionCast = decision ? Decision::MUST : Decision::MUSTNOT; if (state.decision != Decision::NONE) { if (state.decision != decisionCast) return _error->Error("Conflict: %s -> %s%s but %s", WhyStr(reason).c_str(), decision ? "" : "not ", var.toString(cache).c_str(), WhyStr(var).c_str()); return true; } state.decision = decisionCast; state.depth = depth(); state.reason = reason; if (unlikely(debug >= 1)) std::cerr << "[" << depth() << "] " << (decision ? "Install" : "Reject") << ":" << var.toString(cache) << " (" << WhyStr(state.reason) << ")\n"; solved.push_back(Solved{var, std::nullopt}); if (not decision) { if (not PropagateReject(var)) return false; needsRescore = true; } else { if (not PropagateInstall(var)) return false; } return true; } bool APT::Solver::Install(pkgCache::PkgIterator Pkg, Var reason, Group group) { if ((*this)[Pkg].decision == Decision::MUST) return true; // Note decision if (not Enqueue(Var(Pkg), true, reason)) return false; bool anyInstallable = false; // Insert the work item. Work workItem{Var(Pkg), depth(), group}; for (auto ver = Pkg.VersionList(); not ver.end(); ver++) { workItem.solutions.push_back(ver); if ((*this)[ver].decision != Decision::MUSTNOT) anyInstallable = true; } if (not anyInstallable) { _error->Error("Conflict: %s -> %s but no versions are installable", WhyStr(reason).c_str(), Pkg.FullName().c_str()); for (auto ver = Pkg.VersionList(); not ver.end(); ver++) _error->Error("Uninstallable version: %s", WhyStr(Var(ver)).c_str()); return false; } std::stable_sort(workItem.solutions.begin(), workItem.solutions.end(), CompareProviders3{cache, policy, Pkg, *this}); assert(workItem.solutions.size() > 0); if (workItem.solutions.size() > 1 || workItem.optional) AddWork(std::move(workItem)); else if (not Enqueue(Var(pkgCache::VerIterator(cache, workItem.solutions[0])), true, workItem.reason)) return false; if (not EnqueueCommonDependencies(Pkg)) return false; return true; } bool APT::Solver::PropagateInstall(Var var) { if (auto Pkg = var.Pkg(cache); not Pkg.end()) { } else if (auto Ver = var.Ver(cache); not Ver.end()) { if (not Enqueue(Var(Ver.ParentPkg()), true, Var(Ver))) return false; for (auto OV = Ver.ParentPkg().VersionList(); not OV.end(); ++OV) { if (OV != Ver && not Enqueue(Var(OV), false, Var(Ver))) return false; } for (auto dep = Ver.DependsList(); not dep.end();) { // Compute a single dependency element (glob or) pkgCache::DepIterator start; pkgCache::DepIterator end; dep.GlobOr(start, end); // advances dep if (not EnqueueOrGroup(start, end, Var(Ver))) return false; } } return true; } bool APT::Solver::PropagateReject(Var var) { if (auto Pkg = var.Pkg(cache); not Pkg.end()) { for (auto ver = Pkg.VersionList(); not ver.end(); ver++) if (not Enqueue(Var(ver), false, Var(Pkg))) return false; } else if (auto Ver = var.Ver(cache); not Ver.end()) { if (auto pkg = Ver.ParentPkg(); (*this)[pkg].decision != Decision::MUSTNOT) { bool anyInstallable = false; for (auto otherVer = pkg.VersionList(); not otherVer.end(); otherVer++) if (otherVer->ID != Ver->ID && (*this)[otherVer].decision != Decision::MUSTNOT) anyInstallable = true; if (anyInstallable) ; else if ((*this)[pkg].decision == Decision::MUST) // Must install, but none available { _error->Error("Conflict: %s but no versions are installable", WhyStr(Var(pkg)).c_str()); for (auto otherVer = pkg.VersionList(); not otherVer.end(); otherVer++) if ((*this)[otherVer].decision == Decision::MUSTNOT) _error->Error("Uninstallable version: %s", WhyStr(Var(otherVer)).c_str()); return _error->Error("Uninstallable version: %s", WhyStr(Var(Ver)).c_str()); } else if (not Enqueue(Var(Ver.ParentPkg()), false, Var(Ver))) // Last version invalidated return false; } if (not RejectReverseDependencies(Ver)) return false; } return true; } bool APT::Solver::EnqueueCommonDependencies(pkgCache::PkgIterator Pkg) { if (not _config->FindB("APT::Solver::Enqueue-Common-Dependencies", true)) return false; for (auto dep = Pkg.VersionList().DependsList(); not dep.end();) { pkgCache::DepIterator start; pkgCache::DepIterator end; dep.GlobOr(start, end); // advances dep bool allHaveDep = true; for (auto ver = Pkg.VersionList()++; not ver.end(); ver++) { bool haveDep = false; for (auto otherDep = ver.DependsList(); not haveDep && not otherDep.end(); otherDep++) haveDep = otherDep->DependencyData == start->DependencyData; if (!haveDep) allHaveDep = haveDep; } if (not allHaveDep) continue; if (not EnqueueOrGroup(start, end, Var(Pkg))) return false; } return true; } bool APT::Solver::EnqueueOrGroup(pkgCache::DepIterator start, pkgCache::DepIterator end, Var reason) { auto TgtPkg = start.TargetPkg(); auto Ver = start.ParentVer(); auto fixPolicy = _config->FindB("APT::Get::Fix-Policy-Broken"); // Non-important dependencies can only be installed if they are currently satisfied, see the check further // below once we have calculated all possible solutions. if (start.ParentPkg()->CurrentVer == 0 && not policy.IsImportantDep(start)) return true; // Replaces and Enhances are not a real dependency. if (start->Type == pkgCache::Dep::Replaces || start->Type == pkgCache::Dep::Enhances) return true; if (unlikely(debug >= 3)) std::cerr << "Found dependency critical " << Ver.ParentPkg().FullName() << "=" << Ver.VerStr() << " -> " << start.TargetPkg().FullName() << "\n"; Work workItem{reason, depth(), Group::Satisfy, not start.IsCritical() /* optional */}; do { auto begin = workItem.solutions.size(); auto all = start.AllTargets(); for (auto tgt = all; *tgt; ++tgt) { pkgCache::VerIterator tgti(cache, *tgt); if (start.IsNegative()) { if (unlikely(debug >= 3)) std::cerr << "Reject: " << Ver.ParentPkg().FullName() << "=" << Ver.VerStr() << " -> " << tgti.ParentPkg().FullName() << "=" << tgti.VerStr() << "\n"; // FIXME: We should be collecting these and marking the heap only once. if (not Enqueue(Var(pkgCache::VerIterator(cache, *tgt)), false, Var(Ver))) return false; } else { if (unlikely(debug >= 3)) std::cerr << "Adding work to item " << Ver.ParentPkg().FullName() << "=" << Ver.VerStr() << " -> " << tgti.ParentPkg().FullName() << "=" << tgti.VerStr() << "\n"; workItem.solutions.push_back(*tgt); } } delete[] all; // If we are fixing the policy, we need to sort each alternative in an or group separately // FIXME: This is not really true, though, we should fix the CompareProviders to ignore the // installed state if (fixPolicy) std::stable_sort(workItem.solutions.begin() + begin, workItem.solutions.end(), CompareProviders3{cache, policy, TgtPkg, *this}); if (start == end) break; ++start; } while (1); if (not fixPolicy) std::stable_sort(workItem.solutions.begin(), workItem.solutions.end(), CompareProviders3{cache, policy, TgtPkg, *this}); if (std::all_of(workItem.solutions.begin(), workItem.solutions.end(), [this](auto V) -> auto { return pkgCache::VerIterator(cache, V).ParentPkg()->CurrentVer == 0; })) workItem.group = Group::SatisfyNew; if (std::any_of(workItem.solutions.begin(), workItem.solutions.end(), [this](auto V) -> auto { return Obsolete(pkgCache::VerIterator(cache, V).ParentPkg()); })) workItem.group = Group::SatisfyObsolete; // Try to perserve satisfied Recommends. FIXME: We should check if the Recommends was there in the installed version? if (workItem.optional && start.ParentPkg()->CurrentVer) { bool important = policy.IsImportantDep(start); bool newOptional = true; bool wasImportant = false; for (auto D = start.ParentPkg().CurrentVer().DependsList(); not D.end(); D++) if (not D.IsCritical() && not D.IsNegative() && D.TargetPkg() == start.TargetPkg()) newOptional = false, wasImportant = policy.IsImportantDep(D); bool satisfied = std::any_of(workItem.solutions.begin(), workItem.solutions.end(), [this](auto ver) { return pkgCache::VerIterator(cache, ver).ParentPkg().CurrentVer() == ver; }); if (important && wasImportant && not newOptional && not satisfied) { if (unlikely(debug >= 3)) { std::cerr << "Ignoring unsatisfied Recommends "; workItem.Dump(cache); std::cerr << "\n"; } return true; } if (not important && not wasImportant && not newOptional && satisfied) { if (unlikely(debug >= 3)) { std::cerr << "Promoting satisfied Suggests to Recommends: "; workItem.Dump(cache); std::cerr << "\n"; } important = true; } if (not important) { if (unlikely(debug >= 3)) { std::cerr << "Ignoring Suggests "; workItem.Dump(cache); std::cerr << "\n"; } return true; } } else if (workItem.optional && start.ParentPkg()->CurrentVer == 0) workItem.group = Group::NewUnsatRecommends; if (not workItem.solutions.empty()) { // std::stable_sort(workItem.solutions.begin(), workItem.solutions.end(), CompareProviders3{cache, TgtPkg}); if (unlikely(debug >= 3 && workItem.optional)) { std::cerr << "Enqueuing Recommends "; workItem.Dump(cache); std::cerr << "\n"; } if (workItem.optional || workItem.solutions.size() > 1) AddWork(std::move(workItem)); else if (not Enqueue(Var(pkgCache::VerIterator(cache, workItem.solutions[0])), true, reason)) return false; } else if (start.IsCritical() && not start.IsNegative()) { return _error->Error("Unsatisfiable dependency group %s=%s -> %s", Ver.ParentPkg().FullName().c_str(), Ver.VerStr(), TgtPkg.FullName().c_str()); } return true; } // \brief Find the or group containing the given dependency. static void FindOrGroup(pkgCache::DepIterator const &D, pkgCache::DepIterator &start, pkgCache::DepIterator &end) { for (auto dep = D.ParentVer().DependsList(); not dep.end();) { dep.GlobOr(start, end); // advances dep for (auto member = start;;) { if (member == D) return; if (member == end) break; member++; } } _error->Fatal("Found a dependency that does not exist in its parent version"); abort(); } // This is the opposite of EnqueueOrDependencies, it rejects the reverse dependencies of the // given version iterator. bool APT::Solver::RejectReverseDependencies(pkgCache::VerIterator Ver) { // This checks whether an or group is still satisfiable. auto stillPossible = [this](pkgCache::DepIterator start, pkgCache::DepIterator end) { while (1) { std::unique_ptr Ts{start.AllTargets()}; for (size_t i = 0; Ts[i] != nullptr; ++i) if ((*this)[Ts[i]].decision != Decision::MUSTNOT) return true; if (start == end) return false; start++; } }; for (auto RD = Ver.ParentPkg().RevDependsList(); not RD.end(); ++RD) { auto RDV = RD.ParentVer(); if (RD.IsNegative() || not RD.IsCritical() || not RD.IsSatisfied(Ver)) continue; if ((*this)[RDV].decision == Decision::MUSTNOT) continue; pkgCache::DepIterator start; pkgCache::DepIterator end; FindOrGroup(RD, start, end); if (stillPossible(start, end)) continue; if (unlikely(debug >= 3)) std::cerr << "Propagate NOT " << Ver.ParentPkg().FullName() << "=" << Ver.VerStr() << " to " << RDV.ParentPkg().FullName() << "=" << RDV.VerStr() << " for dependency group starting with" << start.TargetPkg().FullName() << std::endl; if (not Enqueue(Var(RDV), false, Var(Ver))) return false; } return true; } void APT::Solver::Push(Work work) { if (unlikely(debug >= 2)) { std::cerr << "Trying choice for "; work.Dump(cache); std::cerr << "\n"; } choices.push_back(solved.size()); solved.push_back(Solved{Var(), std::move(work)}); // Pop() will call MergeWithStack() when reverting to level 0, or RevertToStack after dumping to the debug log. _error->PushToStack(); } void APT::Solver::UndoOne() { auto solvedItem = solved.back(); if (unlikely(debug >= 4)) std::cerr << "Undoing a single decision\n"; if (not solvedItem.assigned.empty()) { if (unlikely(debug >= 4)) { if (auto P = solvedItem.assigned.Pkg(cache); not P.end()) std::cerr << "Unassign " << P.FullName() << "\n"; if (auto V = solvedItem.assigned.Ver(cache); not V.end()) std::cerr << "Unassign " << V.ParentPkg().FullName() << "=" << V.VerStr() << "\n"; } auto &state = (*this)[solvedItem.assigned]; state.decision = Decision::NONE; state.reason = Var(); state.depth = 0; } if (auto work = solvedItem.work) { if (unlikely(debug >= 4)) { std::cerr << "Adding work item "; work->Dump(cache); std::cerr << "\n"; } AddWork(std::move(*work)); } solved.pop_back(); // FIXME: Add the undo handling here once we have watchers. } bool APT::Solver::Pop() { if (depth() == 0) return false; if (unlikely(debug >= 2)) for (std::string msg; _error->PopMessage(msg);) std::cerr << "Branch failed: " << msg << std::endl; _error->RevertToStack(); assert(choices.back() < solved.size()); int itemsToUndo = solved.size() - choices.back(); pkgCache::VerIterator choice(cache, solved[choices.back()].work->choice); for (; itemsToUndo; --itemsToUndo) UndoOne(); // We need to remove any work that is at a higher depth. // FIXME: We should just mark the entries as erased and only do a compaction // of the heap once we have a lot of erased entries in it. choices.pop_back(); work.erase(std::remove_if(work.begin(), work.end(), [this](Work &w) -> bool { return w.depth > depth() || w.erased; }), work.end()); std::make_heap(work.begin(), work.end()); if (unlikely(debug >= 2)) std::cerr << "Backtracking to choice " << choice.ParentPkg().FullName() << "=" << choice.VerStr() << "\n"; // FIXME: There should be a reason! if (not Enqueue(Var(choice), false, {})) return false; if (unlikely(debug >= 2)) std::cerr << "Backtracked to choice " << choice.ParentPkg().FullName() << "=" << choice.VerStr() << "\n"; return true; } void APT::Solver::AddWork(Work &&w) { w.size = std::count_if(w.solutions.begin(), w.solutions.end(), [this](auto V) { return (*this)[V].decision != Decision::MUSTNOT; }); work.push_back(std::move(w)); std::push_heap(work.begin(), work.end()); } void APT::Solver::RescoreWorkIfNeeded() { if (not needsRescore) return; needsRescore = false; std::vector resized; for (auto &w : work) { if (w.erased) continue; size_t newSize = std::count_if(w.solutions.begin(), w.solutions.end(), [this](auto V) { return (*this)[V].decision != Decision::MUSTNOT; }); // Notably we only insert the work into the queue if it got smaller. Work that got larger // we just move around when we get to it too early in Solve(). This reduces memory usage // at the expense of counting each item we see in Solve(). if (newSize < w.size) { Work newWork(w); newWork.size = newSize; resized.push_back(std::move(newWork)); w.erased = true; } } if (unlikely(debug >= 2)) std::cerr << "Rescored: " << resized.size() << "items\n"; for (auto &w : resized) { work.push_back(std::move(w)); std::push_heap(work.begin(), work.end()); } } bool APT::Solver::Solve() { while (not work.empty()) { // Rescore the work if we need to RescoreWorkIfNeeded(); // *NOW* we can pop the item. std::pop_heap(work.begin(), work.end()); // This item has been replaced with a new one. Remove it. if (work.back().erased) { work.pop_back(); continue; } // If our size increased, queue again. size_t newSize = std::count_if(work.back().solutions.begin(), work.back().solutions.end(), [this](auto V) { return (*this)[V].decision != Decision::MUSTNOT; }); if (newSize > work.back().size) { work.back().size = newSize; std::push_heap(work.begin(), work.end()); continue; } assert(newSize == work.back().size); auto item = std::move(work.back()); work.pop_back(); solved.push_back(Solved{Var(), item}); if (std::any_of(item.solutions.begin(), item.solutions.end(), [this](auto ver) { return (*this)[ver].decision == Decision::MUST; })) { if (unlikely(debug >= 2)) { std::cerr << "ELIDED "; item.Dump(cache); std::cerr << "\n"; } continue; } if (unlikely(debug >= 1)) { item.Dump(cache); std::cerr << "\n"; } assert(item.solutions.size() > 1 || item.optional); bool foundSolution = false; for (auto &sol : item.solutions) { pkgCache::VerIterator ver(cache, sol); if ((*this)[ver].decision == Decision::MUSTNOT) { if (unlikely(debug >= 3)) std::cerr << "(existing conflict: " << ver.ParentPkg().FullName() << "=" << ver.VerStr() << ")\n"; continue; } if (item.size > 1 || item.optional) { item.choice = ver; Push(item); } if (unlikely(debug >= 3)) std::cerr << "(try it: " << ver.ParentPkg().FullName() << "=" << ver.VerStr() << ")\n"; if (not Enqueue(Var(pkgCache::VerIterator(cache, ver)), true, item.reason) && not Pop()) return false; foundSolution = true; break; } if (not foundSolution && not item.optional) { std::ostringstream dep; assert(item.solutions.size() > 0); for (auto &sol : item.solutions) dep << (dep.tellp() == 0 ? "" : " | ") << pkgCache::VerIterator(cache, sol).ParentPkg().FullName() << "=" << pkgCache::VerIterator(cache, sol).VerStr(); _error->Error("Unsatisfiable dependency: %s -> %s", WhyStr(item.reason).c_str(), dep.str().c_str()); for (auto &sol : item.solutions) if ((*this)[sol].decision == Decision::MUSTNOT) _error->Error("Not considered: %s=%s: %s", pkgCache::VerIterator(cache, sol).ParentPkg().FullName().c_str(), pkgCache::VerIterator(cache, sol).VerStr(), WhyStr(Var(pkgCache::VerIterator(cache, sol))).c_str()); if (not Pop()) return false; } } return true; } // \brief Apply the selections from the dep cache to the solver bool APT::Solver::FromDepCache(pkgDepCache &depcache) { bool AllowRemoveManual = AllowRemove && _config->FindB("APT::Solver::RemoveManual", false); DefaultRootSetFunc2 rootSet(&cache); // Enforce strict pinning rules by rejecting all forbidden versions. if (StrictPinning) { for (auto P = cache.PkgBegin(); not P.end(); P++) { for (auto V = P.VersionList(); not V.end(); ++V) if (P.CurrentVer() != V && depcache.GetCandidateVersion(P) != V) if (not Enqueue(Var(V), false, {})) return false; } } for (auto P = cache.PkgBegin(); not P.end(); P++) { if (P->VersionList == nullptr) continue; auto state = depcache[P]; if (P->SelectedState == pkgCache::State::Hold && not state.Protect()) { if (unlikely(debug >= 1)) std::cerr << "Hold " << P.FullName() << "\n"; if (P->CurrentVer ? not Enqueue(Var(P.CurrentVer()), true, {}) : not Enqueue(Var(P), false, Var())) return false; } else if (state.Delete() // Normal delete request. || (not P->CurrentVer && state.Keep() && state.Protect()) // Delete request of not installed package. || (not P->CurrentVer && state.Keep() && not AllowInstall) // New package installs not allowed. ) { if (unlikely(debug >= 1)) std::cerr << "Delete " << P.FullName() << "\n"; if (not Enqueue(Var(P), false, Var())) return false; } else if (state.Install() || (state.Keep() && P->CurrentVer)) { auto isEssential = P->Flags & (pkgCache::Flag::Essential | pkgCache::Flag::Important); auto isAuto = (depcache[P].Flags & pkgCache::Flag::Auto); auto isOptional = ((isAuto && AllowRemove) || AllowRemoveManual) && not isEssential && not depcache[P].Protect(); auto Root = rootSet.InRootSet(P); auto Upgrade = depcache.GetCandidateVersion(P) != P.CurrentVer(); auto Group = isAuto ? (Upgrade ? Group::UpgradeAuto : Group::KeepAuto) : (Upgrade ? Group::UpgradeManual : Group::InstallManual); if (isAuto && not depcache[P].Protect() && not isEssential && not KeepAuto && not rootSet.InRootSet(P)) { if (unlikely(debug >= 1)) std::cerr << "Ignore automatic install " << P.FullName() << " (" << (isEssential ? "E" : "") << (isAuto ? "M" : "") << (Root ? "R" : "") << ")" << "\n"; continue; } if (unlikely(debug >= 1)) std::cerr << "Install " << P.FullName() << " (" << (isEssential ? "E" : "") << (isAuto ? "M" : "") << (Root ? "R" : "") << ")" << "\n"; if (not isOptional) { // Pre-empt the non-optional requests, as we don't want to queue them, we can just "unit propagate" here. if (depcache[P].Keep() ? not Install(P, {}, Group) : not Enqueue(Var(depcache.GetCandidateVersion(P)), true, {})) return false; } else { Work w{Var(), depth(), Group, isOptional, Upgrade}; for (auto V = P.VersionList(); not V.end(); ++V) w.solutions.push_back(V); std::stable_sort(w.solutions.begin(), w.solutions.end(), CompareProviders3{cache, policy, P, *this}); AddWork(std::move(w)); } } } return true; } bool APT::Solver::ToDepCache(pkgDepCache &depcache) { pkgDepCache::ActionGroup group(depcache); for (auto P = cache.PkgBegin(); not P.end(); P++) { depcache[P].Marked = 0; depcache[P].Garbage = 0; if ((*this)[P].decision == Decision::MUST) { for (auto V = P.VersionList(); not V.end(); V++) { if ((*this)[V].decision == Decision::MUST) { depcache.SetCandidateVersion(V); break; } } auto reason = (*this)[depcache.GetCandidateVersion(P)].reason; if (auto RP = reason.Pkg(); RP == P.MapPointer()) reason = (*this)[P].reason; depcache.MarkInstall(P, false, 0, reason.empty()); if (not P->CurrentVer) depcache.MarkAuto(P, not reason.empty()); depcache[P].Marked = 1; depcache[P].Garbage = 0; } else if (P->CurrentVer || depcache[P].Install()) { depcache.MarkDelete(P, false, 0, (*this)[P].reason.empty()); depcache[P].Marked = 0; depcache[P].Garbage = 1; } } return true; }