| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787 |
- #include <config.h>
- #include <apt-pkg/error.h>
- #include <apt-pkg/debmetaindex.h>
- #include <apt-pkg/debindexfile.h>
- #include <apt-pkg/strutl.h>
- #include <apt-pkg/fileutl.h>
- #include <apt-pkg/acquire-item.h>
- #include <apt-pkg/configuration.h>
- #include <apt-pkg/aptconfiguration.h>
- #include <apt-pkg/sourcelist.h>
- #include <apt-pkg/hashes.h>
- #include <apt-pkg/metaindex.h>
- #include <apt-pkg/pkgcachegen.h>
- #include <apt-pkg/tagfile.h>
- #include <apt-pkg/gpgv.h>
- #include <apt-pkg/macros.h>
- #include <map>
- #include <string>
- #include <utility>
- #include <vector>
- #include <algorithm>
- #include <sys/stat.h>
- #include <string.h>
- #include <apti18n.h>
- class APT_HIDDEN debReleaseIndexPrivate /*{{{*/
- {
- public:
- struct APT_HIDDEN debSectionEntry
- {
- std::string Name;
- std::vector<std::string> Targets;
- std::vector<std::string> Architectures;
- std::vector<std::string> Languages;
- };
- std::vector<debSectionEntry> DebEntries;
- std::vector<debSectionEntry> DebSrcEntries;
- metaIndex::TriState CheckValidUntil;
- time_t ValidUntilMin;
- time_t ValidUntilMax;
- debReleaseIndexPrivate() : CheckValidUntil(metaIndex::TRI_UNSET), ValidUntilMin(0), ValidUntilMax(0) {}
- };
- /*}}}*/
- // ReleaseIndex::MetaIndex* - display helpers /*{{{*/
- std::string debReleaseIndex::MetaIndexInfo(const char *Type) const
- {
- std::string Info = ::URI::ArchiveOnly(URI) + ' ';
- if (Dist[Dist.size() - 1] == '/')
- {
- if (Dist != "/")
- Info += Dist;
- }
- else
- Info += Dist;
- Info += " ";
- Info += Type;
- return Info;
- }
- std::string debReleaseIndex::Describe() const
- {
- return MetaIndexInfo("Release");
- }
- std::string debReleaseIndex::MetaIndexFile(const char *Type) const
- {
- return _config->FindDir("Dir::State::lists") +
- URItoFileName(MetaIndexURI(Type));
- }
- std::string debReleaseIndex::MetaIndexURI(const char *Type) const
- {
- std::string Res;
- if (Dist == "/")
- Res = URI;
- else if (Dist[Dist.size()-1] == '/')
- Res = URI + Dist;
- else
- Res = URI + "dists/" + Dist + "/";
-
- Res += Type;
- return Res;
- }
- /*}}}*/
- // ReleaseIndex Con- and Destructors /*{{{*/
- debReleaseIndex::debReleaseIndex(std::string const &URI, std::string const &Dist) :
- metaIndex(URI, Dist, "deb"), d(new debReleaseIndexPrivate())
- {}
- debReleaseIndex::debReleaseIndex(std::string const &URI, std::string const &Dist, bool const pTrusted) :
- metaIndex(URI, Dist, "deb"), d(new debReleaseIndexPrivate())
- {
- Trusted = pTrusted ? TRI_YES : TRI_NO;
- }
- debReleaseIndex::~debReleaseIndex() {
- if (d != NULL)
- delete d;
- }
- /*}}}*/
- // ReleaseIndex::GetIndexTargets /*{{{*/
- static void GetIndexTargetsFor(char const * const Type, std::string const &URI, std::string const &Dist,
- std::vector<debReleaseIndexPrivate::debSectionEntry> const &entries,
- std::vector<IndexTarget> &IndexTargets)
- {
- bool const flatArchive = (Dist[Dist.length() - 1] == '/');
- std::string baseURI = URI;
- if (flatArchive)
- {
- if (Dist != "/")
- baseURI += Dist;
- }
- else
- baseURI += "dists/" + Dist + "/";
- std::string const Release = (Dist == "/") ? "" : Dist;
- std::string const Site = ::URI::ArchiveOnly(URI);
- bool const GzipIndex = _config->FindB("Acquire::GzipIndexes", false);
- for (std::vector<debReleaseIndexPrivate::debSectionEntry>::const_iterator E = entries.begin(); E != entries.end(); ++E)
- {
- for (std::vector<std::string>::const_iterator T = E->Targets.begin(); T != E->Targets.end(); ++T)
- {
- #define APT_T_CONFIG(X) _config->Find(std::string("Acquire::IndexTargets::") + Type + "::" + *T + "::" + (X))
- std::string const tplMetaKey = APT_T_CONFIG(flatArchive ? "flatMetaKey" : "MetaKey");
- std::string const tplShortDesc = APT_T_CONFIG("ShortDescription");
- std::string const tplLongDesc = "$(SITE) " + APT_T_CONFIG(flatArchive ? "flatDescription" : "Description");
- bool const IsOptional = _config->FindB(std::string("Acquire::IndexTargets::") + Type + "::" + *T + "::Optional", true);
- bool const KeepCompressed = _config->FindB(std::string("Acquire::IndexTargets::") + Type + "::" + *T + "::KeepCompressed", GzipIndex);
- #undef APT_T_CONFIG
- if (tplMetaKey.empty())
- continue;
- for (std::vector<std::string>::const_iterator L = E->Languages.begin(); L != E->Languages.end(); ++L)
- {
- if (*L == "none" && tplMetaKey.find("$(LANGUAGE)") != std::string::npos)
- continue;
- for (std::vector<std::string>::const_iterator A = E->Architectures.begin(); A != E->Architectures.end(); ++A)
- {
- std::map<std::string, std::string> Options;
- Options.insert(std::make_pair("SITE", Site));
- Options.insert(std::make_pair("RELEASE", Release));
- if (tplMetaKey.find("$(COMPONENT)") != std::string::npos)
- Options.insert(std::make_pair("COMPONENT", E->Name));
- if (tplMetaKey.find("$(LANGUAGE)") != std::string::npos)
- Options.insert(std::make_pair("LANGUAGE", *L));
- if (tplMetaKey.find("$(ARCHITECTURE)") != std::string::npos)
- Options.insert(std::make_pair("ARCHITECTURE", *A));
- Options.insert(std::make_pair("BASE_URI", baseURI));
- Options.insert(std::make_pair("REPO_URI", URI));
- Options.insert(std::make_pair("TARGET_OF", "deb-src"));
- Options.insert(std::make_pair("CREATED_BY", *T));
- std::string MetaKey = tplMetaKey;
- std::string ShortDesc = tplShortDesc;
- std::string LongDesc = tplLongDesc;
- for (std::map<std::string, std::string>::const_iterator O = Options.begin(); O != Options.end(); ++O)
- {
- MetaKey = SubstVar(MetaKey, std::string("$(") + O->first + ")", O->second);
- ShortDesc = SubstVar(ShortDesc, std::string("$(") + O->first + ")", O->second);
- LongDesc = SubstVar(LongDesc, std::string("$(") + O->first + ")", O->second);
- }
- IndexTarget Target(
- MetaKey,
- ShortDesc,
- LongDesc,
- Options.find("BASE_URI")->second + MetaKey,
- IsOptional,
- KeepCompressed,
- Options
- );
- IndexTargets.push_back(Target);
- if (tplMetaKey.find("$(ARCHITECTURE)") == std::string::npos)
- break;
- }
- if (tplMetaKey.find("$(LANGUAGE)") == std::string::npos)
- break;
- }
- }
- }
- }
- std::vector<IndexTarget> debReleaseIndex::GetIndexTargets() const
- {
- std::vector<IndexTarget> IndexTargets;
- GetIndexTargetsFor("deb-src", URI, Dist, d->DebSrcEntries, IndexTargets);
- GetIndexTargetsFor("deb", URI, Dist, d->DebEntries, IndexTargets);
- return IndexTargets;
- }
- /*}}}*/
- void debReleaseIndex::AddComponent(bool const isSrc, std::string const &Name,/*{{{*/
- std::vector<std::string> const &Targets,
- std::vector<std::string> const &Architectures,
- std::vector<std::string> Languages)
- {
- if (Languages.empty() == true)
- Languages.push_back("none");
- debReleaseIndexPrivate::debSectionEntry const entry = {
- Name, Targets, Architectures, Languages
- };
- if (isSrc)
- d->DebSrcEntries.push_back(entry);
- else
- d->DebEntries.push_back(entry);
- }
- /*}}}*/
- bool debReleaseIndex::Load(std::string const &Filename, std::string * const ErrorText)/*{{{*/
- {
- LoadedSuccessfully = TRI_NO;
- FileFd Fd;
- if (OpenMaybeClearSignedFile(Filename, Fd) == false)
- return false;
- pkgTagFile TagFile(&Fd, Fd.Size());
- if (_error->PendingError() == true)
- {
- if (ErrorText != NULL)
- strprintf(*ErrorText, _("Unable to parse Release file %s"),Filename.c_str());
- return false;
- }
- pkgTagSection Section;
- const char *Start, *End;
- if (TagFile.Step(Section) == false)
- {
- if (ErrorText != NULL)
- strprintf(*ErrorText, _("No sections in Release file %s"), Filename.c_str());
- return false;
- }
- // FIXME: find better tag name
- SupportsAcquireByHash = Section.FindB("Acquire-By-Hash", false);
- Suite = Section.FindS("Suite");
- Codename = Section.FindS("Codename");
- bool FoundHashSum = false;
- for (int i=0;HashString::SupportedHashes()[i] != NULL; i++)
- {
- if (!Section.Find(HashString::SupportedHashes()[i], Start, End))
- continue;
- std::string Name;
- std::string Hash;
- unsigned long long Size;
- while (Start < End)
- {
- if (!parseSumData(Start, End, Name, Hash, Size))
- return false;
- if (Entries.find(Name) == Entries.end())
- {
- metaIndex::checkSum *Sum = new metaIndex::checkSum;
- Sum->MetaKeyFilename = Name;
- Sum->Size = Size;
- Sum->Hashes.FileSize(Size);
- APT_IGNORE_DEPRECATED(Sum->Hash = HashString(HashString::SupportedHashes()[i],Hash);)
- Entries[Name] = Sum;
- }
- Entries[Name]->Hashes.push_back(HashString(HashString::SupportedHashes()[i],Hash));
- FoundHashSum = true;
- }
- }
- if(FoundHashSum == false)
- {
- if (ErrorText != NULL)
- strprintf(*ErrorText, _("No Hash entry in Release file %s"), Filename.c_str());
- return false;
- }
- std::string const StrDate = Section.FindS("Date");
- if (RFC1123StrToTime(StrDate.c_str(), Date) == false)
- {
- if (ErrorText != NULL)
- strprintf(*ErrorText, _("Invalid 'Date' entry in Release file %s"), Filename.c_str());
- return false;
- }
- bool CheckValidUntil = _config->FindB("Acquire::Check-Valid-Until", true);
- if (d->CheckValidUntil == metaIndex::TRI_NO)
- CheckValidUntil = false;
- else if (d->CheckValidUntil == metaIndex::TRI_YES)
- CheckValidUntil = true;
- if (CheckValidUntil == true)
- {
- std::string const Label = Section.FindS("Label");
- std::string const StrValidUntil = Section.FindS("Valid-Until");
- // if we have a Valid-Until header in the Release file, use it as default
- if (StrValidUntil.empty() == false)
- {
- if(RFC1123StrToTime(StrValidUntil.c_str(), ValidUntil) == false)
- {
- if (ErrorText != NULL)
- strprintf(*ErrorText, _("Invalid 'Valid-Until' entry in Release file %s"), Filename.c_str());
- return false;
- }
- }
- // get the user settings for this archive and use what expires earlier
- time_t MaxAge = d->ValidUntilMax;
- if (MaxAge == 0)
- {
- MaxAge = _config->FindI("Acquire::Max-ValidTime", 0);
- if (Label.empty() == false)
- MaxAge = _config->FindI(("Acquire::Max-ValidTime::" + Label).c_str(), MaxAge);
- }
- time_t MinAge = d->ValidUntilMin;
- if (MinAge == 0)
- {
- MinAge = _config->FindI("Acquire::Min-ValidTime", 0);
- if (Label.empty() == false)
- MinAge = _config->FindI(("Acquire::Min-ValidTime::" + Label).c_str(), MinAge);
- }
- if (MinAge != 0 && ValidUntil != 0) {
- time_t const min_date = Date + MinAge;
- if (ValidUntil < min_date)
- ValidUntil = min_date;
- }
- if (MaxAge != 0) {
- time_t const max_date = Date + MaxAge;
- if (ValidUntil == 0 || ValidUntil > max_date)
- ValidUntil = max_date;
- }
- }
- LoadedSuccessfully = TRI_YES;
- return true;
- }
- /*}}}*/
- metaIndex * debReleaseIndex::UnloadedClone() const /*{{{*/
- {
- if (Trusted == TRI_NO)
- return new debReleaseIndex(URI, Dist, false);
- else if (Trusted == TRI_YES)
- return new debReleaseIndex(URI, Dist, true);
- else
- return new debReleaseIndex(URI, Dist);
- }
- /*}}}*/
- bool debReleaseIndex::parseSumData(const char *&Start, const char *End, /*{{{*/
- std::string &Name, std::string &Hash, unsigned long long &Size)
- {
- Name = "";
- Hash = "";
- Size = 0;
- /* Skip over the first blank */
- while ((*Start == '\t' || *Start == ' ' || *Start == '\n' || *Start == '\r')
- && Start < End)
- Start++;
- if (Start >= End)
- return false;
- /* Move EntryEnd to the end of the first entry (the hash) */
- const char *EntryEnd = Start;
- while ((*EntryEnd != '\t' && *EntryEnd != ' ')
- && EntryEnd < End)
- EntryEnd++;
- if (EntryEnd == End)
- return false;
- Hash.append(Start, EntryEnd-Start);
- /* Skip over intermediate blanks */
- Start = EntryEnd;
- while (*Start == '\t' || *Start == ' ')
- Start++;
- if (Start >= End)
- return false;
-
- EntryEnd = Start;
- /* Find the end of the second entry (the size) */
- while ((*EntryEnd != '\t' && *EntryEnd != ' ' )
- && EntryEnd < End)
- EntryEnd++;
- if (EntryEnd == End)
- return false;
-
- Size = strtoull (Start, NULL, 10);
-
- /* Skip over intermediate blanks */
- Start = EntryEnd;
- while (*Start == '\t' || *Start == ' ')
- Start++;
- if (Start >= End)
- return false;
-
- EntryEnd = Start;
- /* Find the end of the third entry (the filename) */
- while ((*EntryEnd != '\t' && *EntryEnd != ' ' &&
- *EntryEnd != '\n' && *EntryEnd != '\r')
- && EntryEnd < End)
- EntryEnd++;
- Name.append(Start, EntryEnd-Start);
- Start = EntryEnd; //prepare for the next round
- return true;
- }
- /*}}}*/
- bool debReleaseIndex::GetIndexes(pkgAcquire *Owner, bool const &GetAll)/*{{{*/
- {
- std::vector<IndexTarget> const targets = GetIndexTargets();
- #define APT_TARGET(X) IndexTarget("", X, MetaIndexInfo(X), MetaIndexURI(X), false, false, std::map<std::string,std::string>())
- pkgAcqMetaClearSig * const TransactionManager = new pkgAcqMetaClearSig(Owner,
- APT_TARGET("InRelease"), APT_TARGET("Release"), APT_TARGET("Release.gpg"),
- targets, this);
- #undef APT_TARGET
- // special case for --print-uris
- if (GetAll)
- {
- for (std::vector<IndexTarget>::const_iterator Target = targets.begin(); Target != targets.end(); ++Target)
- new pkgAcqIndex(Owner, TransactionManager, *Target);
- }
- return true;
- }
- /*}}}*/
- // ReleaseIndex::Set* TriState options /*{{{*/
- bool debReleaseIndex::SetTrusted(TriState const pTrusted)
- {
- if (Trusted == TRI_UNSET)
- Trusted = pTrusted;
- else if (Trusted != pTrusted)
- // TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
- return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Trusted", URI.c_str(), Dist.c_str());
- return true;
- }
- bool debReleaseIndex::SetCheckValidUntil(TriState const pCheckValidUntil)
- {
- if (d->CheckValidUntil == TRI_UNSET)
- d->CheckValidUntil = pCheckValidUntil;
- else if (d->CheckValidUntil != pCheckValidUntil)
- return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Check-Valid-Until", URI.c_str(), Dist.c_str());
- return true;
- }
- bool debReleaseIndex::SetValidUntilMin(time_t const Valid)
- {
- if (d->ValidUntilMin == 0)
- d->ValidUntilMin = Valid;
- else if (d->ValidUntilMin != Valid)
- return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Min-ValidTime", URI.c_str(), Dist.c_str());
- return true;
- }
- bool debReleaseIndex::SetValidUntilMax(time_t const Valid)
- {
- if (d->ValidUntilMax == 0)
- d->ValidUntilMax = Valid;
- else if (d->ValidUntilMax != Valid)
- return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Max-ValidTime", URI.c_str(), Dist.c_str());
- return true;
- }
- bool debReleaseIndex::SetSignedBy(std::string const &pSignedBy)
- {
- if (SignedBy.empty() == true && pSignedBy.empty() == false)
- {
- if (pSignedBy[0] == '/') // no check for existence as we could be chrooting later or such things
- ; // absolute path to a keyring file
- else
- {
- // we could go all fancy and allow short/long/string matches as gpgv/apt-key does,
- // but fingerprints are harder to fake than the others and this option is set once,
- // not interactively all the time so easy to type is not really a concern.
- std::string finger = pSignedBy;
- finger.erase(std::remove(finger.begin(), finger.end(), ' '), finger.end());
- std::transform(finger.begin(), finger.end(), finger.begin(), ::toupper);
- if (finger.length() != 40 || finger.find_first_not_of("0123456789ABCDEF") != std::string::npos)
- return _error->Error(_("Invalid value set for option %s concerning source %s %s (%s)"), "Signed-By", URI.c_str(), Dist.c_str(), "not a fingerprint");
- }
- SignedBy = pSignedBy;
- }
- else if (SignedBy != pSignedBy)
- return _error->Error(_("Conflicting values set for option %s concerning source %s %s"), "Signed-By", URI.c_str(), Dist.c_str());
- return true;
- }
- /*}}}*/
- // ReleaseIndex::IsTrusted /*{{{*/
- bool debReleaseIndex::IsTrusted() const
- {
- if (Trusted == TRI_YES)
- return true;
- else if (Trusted == TRI_NO)
- return false;
- if(_config->FindB("APT::Authentication::TrustCDROM", false))
- if(URI.substr(0,strlen("cdrom:")) == "cdrom:")
- return true;
- if (FileExists(MetaIndexFile("Release.gpg")))
- return true;
- return FileExists(MetaIndexFile("InRelease"));
- }
- /*}}}*/
- std::vector <pkgIndexFile *> *debReleaseIndex::GetIndexFiles() /*{{{*/
- {
- if (Indexes != NULL)
- return Indexes;
- Indexes = new std::vector<pkgIndexFile*>();
- std::vector<IndexTarget> const Targets = GetIndexTargets();
- bool const istrusted = IsTrusted();
- for (std::vector<IndexTarget>::const_iterator T = Targets.begin(); T != Targets.end(); ++T)
- {
- std::string const TargetName = T->Option(IndexTarget::CREATED_BY);
- if (TargetName == "Packages")
- Indexes->push_back(new debPackagesIndex(*T, istrusted));
- else if (TargetName == "Sources")
- Indexes->push_back(new debSourcesIndex(*T, istrusted));
- else if (TargetName == "Translations")
- Indexes->push_back(new debTranslationsIndex(*T));
- }
- return Indexes;
- }
- /*}}}*/
- static bool ReleaseFileName(debReleaseIndex const * const That, std::string &ReleaseFile)/*{{{*/
- {
- ReleaseFile = That->MetaIndexFile("InRelease");
- bool releaseExists = false;
- if (FileExists(ReleaseFile) == true)
- releaseExists = true;
- else
- {
- ReleaseFile = That->MetaIndexFile("Release");
- if (FileExists(ReleaseFile))
- releaseExists = true;
- }
- return releaseExists;
- }
- /*}}}*/
- bool debReleaseIndex::Merge(pkgCacheGenerator &Gen,OpProgress * /*Prog*/) const/*{{{*/
- {
- std::string ReleaseFile;
- bool const releaseExists = ReleaseFileName(this, ReleaseFile);
- ::URI Tmp(URI);
- if (Gen.SelectReleaseFile(ReleaseFile, Tmp.Host) == false)
- return _error->Error("Problem with SelectReleaseFile %s", ReleaseFile.c_str());
- if (releaseExists == false)
- return true;
- FileFd Rel;
- // Beware: The 'Release' file might be clearsigned in case the
- // signature for an 'InRelease' file couldn't be checked
- if (OpenMaybeClearSignedFile(ReleaseFile, Rel) == false)
- return false;
- if (_error->PendingError() == true)
- return false;
- // Store the IMS information
- pkgCache::RlsFileIterator File = Gen.GetCurRlsFile();
- pkgCacheGenerator::Dynamic<pkgCache::RlsFileIterator> DynFile(File);
- // Rel can't be used as this is potentially a temporary file
- struct stat Buf;
- if (stat(ReleaseFile.c_str(), &Buf) != 0)
- return _error->Errno("fstat", "Unable to stat file %s", ReleaseFile.c_str());
- File->Size = Buf.st_size;
- File->mtime = Buf.st_mtime;
- pkgTagFile TagFile(&Rel, Rel.Size());
- pkgTagSection Section;
- if (_error->PendingError() == true || TagFile.Step(Section) == false)
- return false;
- std::string data;
- #define APT_INRELEASE(TYPE, TAG, STORE) \
- data = Section.FindS(TAG); \
- if (data.empty() == false) \
- { \
- map_stringitem_t const storage = Gen.StoreString(pkgCacheGenerator::TYPE, data); \
- STORE = storage; \
- }
- APT_INRELEASE(MIXED, "Suite", File->Archive)
- APT_INRELEASE(VERSIONNUMBER, "Version", File->Version)
- APT_INRELEASE(MIXED, "Origin", File->Origin)
- APT_INRELEASE(MIXED, "Codename", File->Codename)
- APT_INRELEASE(MIXED, "Label", File->Label)
- #undef APT_INRELEASE
- Section.FindFlag("NotAutomatic", File->Flags, pkgCache::Flag::NotAutomatic);
- Section.FindFlag("ButAutomaticUpgrades", File->Flags, pkgCache::Flag::ButAutomaticUpgrades);
- return !_error->PendingError();
- }
- /*}}}*/
- // ReleaseIndex::FindInCache - Find this index /*{{{*/
- pkgCache::RlsFileIterator debReleaseIndex::FindInCache(pkgCache &Cache, bool const ModifyCheck) const
- {
- std::string ReleaseFile;
- bool const releaseExists = ReleaseFileName(this, ReleaseFile);
- pkgCache::RlsFileIterator File = Cache.RlsFileBegin();
- for (; File.end() == false; ++File)
- {
- if (File->FileName == 0 || ReleaseFile != File.FileName())
- continue;
- // empty means the file does not exist by "design"
- if (ModifyCheck == false || (releaseExists == false && File->Size == 0))
- return File;
- struct stat St;
- if (stat(File.FileName(),&St) != 0)
- {
- if (_config->FindB("Debug::pkgCacheGen", false))
- std::clog << "ReleaseIndex::FindInCache - stat failed on " << File.FileName() << std::endl;
- return pkgCache::RlsFileIterator(Cache);
- }
- if ((unsigned)St.st_size != File->Size || St.st_mtime != File->mtime)
- {
- if (_config->FindB("Debug::pkgCacheGen", false))
- std::clog << "ReleaseIndex::FindInCache - size (" << St.st_size << " <> " << File->Size
- << ") or mtime (" << St.st_mtime << " <> " << File->mtime
- << ") doesn't match for " << File.FileName() << std::endl;
- return pkgCache::RlsFileIterator(Cache);
- }
- return File;
- }
- return File;
- }
- /*}}}*/
- static std::vector<std::string> parsePlusMinusOptions(std::string const &Name, /*{{{*/
- std::map<std::string, std::string> const &Options, std::vector<std::string> const &defaultValues)
- {
- std::map<std::string, std::string>::const_iterator val = Options.find(Name);
- std::vector<std::string> Values;
- if (val != Options.end())
- Values = VectorizeString(val->second, ',');
- else
- Values = defaultValues;
- if ((val = Options.find(Name + "+")) != Options.end())
- {
- std::vector<std::string> const plusArch = VectorizeString(val->second, ',');
- for (std::vector<std::string>::const_iterator plus = plusArch.begin(); plus != plusArch.end(); ++plus)
- if (std::find(Values.begin(), Values.end(), *plus) == Values.end())
- Values.push_back(*plus);
- }
- if ((val = Options.find(Name + "-")) != Options.end())
- {
- std::vector<std::string> const minusArch = VectorizeString(val->second, ',');
- for (std::vector<std::string>::const_iterator minus = minusArch.begin(); minus != minusArch.end(); ++minus)
- {
- std::vector<std::string>::iterator kill = std::find(Values.begin(), Values.end(), *minus);
- if (kill != Values.end())
- Values.erase(kill);
- }
- }
- return Values;
- }
- /*}}}*/
- class APT_HIDDEN debSLTypeDebian : public pkgSourceList::Type /*{{{*/
- {
- metaIndex::TriState GetTriStateOption(std::map<std::string, std::string>const &Options, char const * const name) const
- {
- std::map<std::string, std::string>::const_iterator const opt = Options.find(name);
- if (opt != Options.end())
- return StringToBool(opt->second, false) ? metaIndex::TRI_YES : metaIndex::TRI_NO;
- return metaIndex::TRI_DONTCARE;
- }
- time_t GetTimeOption(std::map<std::string, std::string>const &Options, char const * const name) const
- {
- std::map<std::string, std::string>::const_iterator const opt = Options.find(name);
- if (opt == Options.end())
- return 0;
- return strtoull(opt->second.c_str(), NULL, 10);
- }
- protected:
- bool CreateItemInternal(std::vector<metaIndex *> &List, std::string const &URI,
- std::string const &Dist, std::string const &Section,
- bool const &IsSrc, std::map<std::string, std::string> const &Options) const
- {
- debReleaseIndex *Deb = NULL;
- for (std::vector<metaIndex *>::const_iterator I = List.begin();
- I != List.end(); ++I)
- {
- // We only worry about debian entries here
- if (strcmp((*I)->GetType(), "deb") != 0)
- continue;
- /* This check insures that there will be only one Release file
- queued for all the Packages files and Sources files it
- corresponds to. */
- if ((*I)->GetURI() == URI && (*I)->GetDist() == Dist)
- {
- Deb = dynamic_cast<debReleaseIndex*>(*I);
- if (Deb != NULL)
- break;
- }
- }
- // No currently created Release file indexes this entry, so we create a new one.
- if (Deb == NULL)
- {
- Deb = new debReleaseIndex(URI, Dist);
- List.push_back(Deb);
- }
- Deb->AddComponent(
- IsSrc,
- Section,
- parsePlusMinusOptions("target", Options, _config->FindVector(std::string("Acquire::IndexTargets::") + Name, "", true)),
- parsePlusMinusOptions("arch", Options, APT::Configuration::getArchitectures()),
- parsePlusMinusOptions("lang", Options, APT::Configuration::getLanguages(true))
- );
- if (Deb->SetTrusted(GetTriStateOption(Options, "trusted")) == false ||
- Deb->SetCheckValidUntil(GetTriStateOption(Options, "check-valid-until")) == false ||
- Deb->SetValidUntilMax(GetTimeOption(Options, "valid-until-max")) == false ||
- Deb->SetValidUntilMin(GetTimeOption(Options, "valid-until-min")) == false)
- return false;
- std::map<std::string, std::string>::const_iterator const signedby = Options.find("signed-by");
- if (signedby == Options.end())
- {
- if (Deb->SetSignedBy("") == false)
- return false;
- }
- else
- {
- if (Deb->SetSignedBy(signedby->second) == false)
- return false;
- }
- return true;
- }
- debSLTypeDebian(char const * const Name, char const * const Label) : Type(Name, Label)
- {
- }
- };
- /*}}}*/
- class APT_HIDDEN debSLTypeDeb : public debSLTypeDebian /*{{{*/
- {
- public:
- bool CreateItem(std::vector<metaIndex *> &List, std::string const &URI,
- std::string const &Dist, std::string const &Section,
- std::map<std::string, std::string> const &Options) const APT_OVERRIDE
- {
- return CreateItemInternal(List, URI, Dist, Section, false, Options);
- }
- debSLTypeDeb() : debSLTypeDebian("deb", "Debian binary tree")
- {
- }
- };
- /*}}}*/
- class APT_HIDDEN debSLTypeDebSrc : public debSLTypeDebian /*{{{*/
- {
- public:
- bool CreateItem(std::vector<metaIndex *> &List, std::string const &URI,
- std::string const &Dist, std::string const &Section,
- std::map<std::string, std::string> const &Options) const APT_OVERRIDE
- {
- return CreateItemInternal(List, URI, Dist, Section, true, Options);
- }
- debSLTypeDebSrc() : debSLTypeDebian("deb-src", "Debian source tree")
- {
- }
- };
- /*}}}*/
- APT_HIDDEN debSLTypeDeb _apt_DebType;
- APT_HIDDEN debSLTypeDebSrc _apt_DebSrcType;
|