]>
git.saurik.com Git - apt.git/blob - apt-pkg/indexrecords.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: indexrecords.cc,v 1.1.2.4 2003/12/30 02:11:43 mdz Exp $
5 // Include Files /*{{{*/
8 #include <apt-pkg/indexrecords.h>
9 #include <apt-pkg/tagfile.h>
10 #include <apt-pkg/error.h>
11 #include <apt-pkg/strutl.h>
12 #include <apt-pkg/configuration.h>
13 #include <apt-pkg/fileutl.h>
14 #include <apt-pkg/hashes.h>
15 #include <apt-pkg/gpgv.h>
30 APT_PURE string
indexRecords::GetDist() const
35 APT_PURE string
indexRecords::GetSuite() const
40 APT_PURE
bool indexRecords::GetSupportsAcquireByHash() const
42 return this->SupportsAcquireByHash
;
45 APT_PURE
bool indexRecords::CheckDist(const string MaybeDist
) const
47 return (this->Dist
== MaybeDist
48 || this->Suite
== MaybeDist
);
51 APT_PURE string
indexRecords::GetExpectedDist() const
53 return this->ExpectedDist
;
56 APT_PURE
time_t indexRecords::GetValidUntil() const
58 return this->ValidUntil
;
61 APT_PURE
time_t indexRecords::GetDate() const
66 APT_PURE
indexRecords::checkSum
*indexRecords::Lookup(const string MetaKey
)
68 std::map
<std::string
, indexRecords::checkSum
* >::const_iterator sum
= Entries
.find(MetaKey
);
69 if (sum
== Entries
.end())
74 APT_PURE
bool indexRecords::Exists(string
const &MetaKey
) const
76 return Entries
.find(MetaKey
) != Entries
.end();
79 bool indexRecords::Load(const string Filename
) /*{{{*/
82 if (OpenMaybeClearSignedFile(Filename
, Fd
) == false)
85 pkgTagFile
TagFile(&Fd
, Fd
.Size());
86 if (_error
->PendingError() == true)
88 strprintf(ErrorText
, _("Unable to parse Release file %s"),Filename
.c_str());
92 pkgTagSection Section
;
93 const char *Start
, *End
;
94 if (TagFile
.Step(Section
) == false)
96 strprintf(ErrorText
, _("No sections in Release file %s"), Filename
.c_str());
99 // FIXME: find better tag name
100 SupportsAcquireByHash
= Section
.FindB("Acquire-By-Hash", false);
102 Suite
= Section
.FindS("Suite");
103 Dist
= Section
.FindS("Codename");
105 bool FoundHashSum
= false;
106 for (int i
=0;HashString::SupportedHashes()[i
] != NULL
; i
++)
108 if (!Section
.Find(HashString::SupportedHashes()[i
], Start
, End
))
113 unsigned long long Size
;
116 if (!parseSumData(Start
, End
, Name
, Hash
, Size
))
119 if (Entries
.find(Name
) == Entries
.end())
121 indexRecords::checkSum
*Sum
= new indexRecords::checkSum
;
122 Sum
->MetaKeyFilename
= Name
;
125 strprintf(SizeStr
, "%llu", Size
);
126 Sum
->Hashes
.push_back(HashString("Checksum-FileSize", SizeStr
));
127 APT_IGNORE_DEPRECATED(Sum
->Hash
= HashString(HashString::SupportedHashes()[i
],Hash
);)
130 Entries
[Name
]->Hashes
.push_back(HashString(HashString::SupportedHashes()[i
],Hash
));
135 if(FoundHashSum
== false)
137 strprintf(ErrorText
, _("No Hash entry in Release file %s"), Filename
.c_str());
141 string
const StrDate
= Section
.FindS("Date");
142 if (RFC1123StrToTime(StrDate
.c_str(), Date
) == false)
144 strprintf(ErrorText
, _("Invalid 'Date' entry in Release file %s"), Filename
.c_str());
148 string
const Label
= Section
.FindS("Label");
149 string
const StrValidUntil
= Section
.FindS("Valid-Until");
151 // if we have a Valid-Until header in the Release file, use it as default
152 if (StrValidUntil
.empty() == false)
154 if(RFC1123StrToTime(StrValidUntil
.c_str(), ValidUntil
) == false)
156 strprintf(ErrorText
, _("Invalid 'Valid-Until' entry in Release file %s"), Filename
.c_str());
160 // get the user settings for this archive and use what expires earlier
161 int MaxAge
= _config
->FindI("Acquire::Max-ValidTime", 0);
162 if (Label
.empty() == false)
163 MaxAge
= _config
->FindI(("Acquire::Max-ValidTime::" + Label
).c_str(), MaxAge
);
164 int MinAge
= _config
->FindI("Acquire::Min-ValidTime", 0);
165 if (Label
.empty() == false)
166 MinAge
= _config
->FindI(("Acquire::Min-ValidTime::" + Label
).c_str(), MinAge
);
169 (MinAge
== 0 || ValidUntil
== 0)) // No user settings, use the one from the Release file
172 if (MinAge
!= 0 && ValidUntil
!= 0) {
173 time_t const min_date
= Date
+ MinAge
;
174 if (ValidUntil
< min_date
)
175 ValidUntil
= min_date
;
178 time_t const max_date
= Date
+ MaxAge
;
179 if (ValidUntil
== 0 || ValidUntil
> max_date
)
180 ValidUntil
= max_date
;
186 std::vector
<string
> indexRecords::MetaKeys() /*{{{*/
188 std::vector
<std::string
> keys
;
189 std::map
<string
,checkSum
*>::iterator I
= Entries
.begin();
190 while(I
!= Entries
.end()) {
191 keys
.push_back((*I
).first
);
197 bool indexRecords::parseSumData(const char *&Start
, const char *End
, /*{{{*/
198 string
&Name
, string
&Hash
, unsigned long long &Size
)
203 /* Skip over the first blank */
204 while ((*Start
== '\t' || *Start
== ' ' || *Start
== '\n' || *Start
== '\r')
210 /* Move EntryEnd to the end of the first entry (the hash) */
211 const char *EntryEnd
= Start
;
212 while ((*EntryEnd
!= '\t' && *EntryEnd
!= ' ')
218 Hash
.append(Start
, EntryEnd
-Start
);
220 /* Skip over intermediate blanks */
222 while (*Start
== '\t' || *Start
== ' ')
228 /* Find the end of the second entry (the size) */
229 while ((*EntryEnd
!= '\t' && *EntryEnd
!= ' ' )
235 Size
= strtoull (Start
, NULL
, 10);
237 /* Skip over intermediate blanks */
239 while (*Start
== '\t' || *Start
== ' ')
245 /* Find the end of the third entry (the filename) */
246 while ((*EntryEnd
!= '\t' && *EntryEnd
!= ' ' &&
247 *EntryEnd
!= '\n' && *EntryEnd
!= '\r')
251 Name
.append(Start
, EntryEnd
-Start
);
252 Start
= EntryEnd
; //prepare for the next round
257 APT_PURE
bool indexRecords::IsAlwaysTrusted() const
259 if (Trusted
== ALWAYS_TRUSTED
)
263 APT_PURE
bool indexRecords::IsNeverTrusted() const
265 if (Trusted
== NEVER_TRUSTED
)
269 void indexRecords::SetTrusted(bool const Trusted
)
272 this->Trusted
= ALWAYS_TRUSTED
;
274 this->Trusted
= NEVER_TRUSTED
;
277 #if APT_PKG_ABI >= 413
278 indexRecords::indexRecords(const string
&ExpectedDist
) :
279 Trusted(CHECK_TRUST
), d(NULL
), ExpectedDist(ExpectedDist
), ValidUntil(0),
280 SupportsAcquireByHash(false)
284 indexRecords::indexRecords() :
285 Trusted(CHECK_TRUST
), d(NULL
), ExpectedDist(""), ValidUntil(0),
286 SupportsAcquireByHash(false)
289 indexRecords::indexRecords(const string ExpectedDist
) :
290 Trusted(CHECK_TRUST
), d(NULL
), ExpectedDist(ExpectedDist
), ValidUntil(0),
291 SupportsAcquireByHash(false)
296 indexRecords::~indexRecords() {}