]>
Commit | Line | Data |
---|---|---|
7db98ffc MZ |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | // $Id: indexrecords.cc,v 1.1.2.4 2003/12/30 02:11:43 mdz Exp $ | |
4 | /*}}}*/ | |
5 | // Include Files /*{{{*/ | |
ea542140 DK |
6 | #include<config.h> |
7 | ||
7db98ffc MZ |
8 | #include <apt-pkg/indexrecords.h> |
9 | #include <apt-pkg/tagfile.h> | |
10 | #include <apt-pkg/error.h> | |
11 | #include <apt-pkg/strutl.h> | |
1ddb8596 | 12 | #include <apt-pkg/configuration.h> |
472ff00e DK |
13 | #include <apt-pkg/fileutl.h> |
14 | #include <apt-pkg/hashes.h> | |
233b7808 | 15 | #include <apt-pkg/gpgv.h> |
472ff00e | 16 | |
453b82a3 DK |
17 | #include <stdlib.h> |
18 | #include <time.h> | |
1ddb8596 | 19 | #include <clocale> |
453b82a3 DK |
20 | #include <map> |
21 | #include <string> | |
22 | #include <utility> | |
23 | #include <vector> | |
1ddb8596 | 24 | |
ea542140 | 25 | #include <apti18n.h> |
92fcbfc1 | 26 | /*}}}*/ |
8f3ba4e8 DK |
27 | |
28 | using std::string; | |
29 | ||
a02db58f | 30 | APT_PURE string indexRecords::GetDist() const |
7db98ffc MZ |
31 | { |
32 | return this->Dist; | |
33 | } | |
34 | ||
a02db58f | 35 | APT_PURE string indexRecords::GetSuite() const |
7014e148 MV |
36 | { |
37 | return this->Suite; | |
38 | } | |
39 | ||
a2fdb57f MV |
40 | APT_PURE bool indexRecords::GetSupportsAcquireByHash() const |
41 | { | |
42 | return this->SupportsAcquireByHash; | |
43 | } | |
44 | ||
a02db58f | 45 | APT_PURE bool indexRecords::CheckDist(const string MaybeDist) const |
7db98ffc MZ |
46 | { |
47 | return (this->Dist == MaybeDist | |
48 | || this->Suite == MaybeDist); | |
49 | } | |
50 | ||
a02db58f | 51 | APT_PURE string indexRecords::GetExpectedDist() const |
7db98ffc MZ |
52 | { |
53 | return this->ExpectedDist; | |
54 | } | |
55 | ||
a02db58f | 56 | APT_PURE time_t indexRecords::GetValidUntil() const |
1ddb8596 DK |
57 | { |
58 | return this->ValidUntil; | |
59 | } | |
60 | ||
6bf93605 DK |
61 | APT_PURE time_t indexRecords::GetDate() const |
62 | { | |
63 | return this->Date; | |
64 | } | |
65 | ||
1dca8dc5 | 66 | APT_PURE indexRecords::checkSum *indexRecords::Lookup(const string MetaKey) |
7db98ffc | 67 | { |
d90d3a05 DK |
68 | std::map<std::string, indexRecords::checkSum* >::const_iterator sum = Entries.find(MetaKey); |
69 | if (sum == Entries.end()) | |
70 | return NULL; | |
71 | return sum->second; | |
7db98ffc MZ |
72 | } |
73 | ||
a02db58f | 74 | APT_PURE bool indexRecords::Exists(string const &MetaKey) const |
e1430400 | 75 | { |
448c38bd | 76 | return Entries.find(MetaKey) != Entries.end(); |
e1430400 DK |
77 | } |
78 | ||
92fcbfc1 | 79 | bool indexRecords::Load(const string Filename) /*{{{*/ |
7db98ffc | 80 | { |
233b7808 DK |
81 | FileFd Fd; |
82 | if (OpenMaybeClearSignedFile(Filename, Fd) == false) | |
83 | return false; | |
84 | ||
233d79a5 | 85 | pkgTagFile TagFile(&Fd, Fd.Size()); |
7db98ffc MZ |
86 | if (_error->PendingError() == true) |
87 | { | |
d4cd303e | 88 | strprintf(ErrorText, _("Unable to parse Release file %s"),Filename.c_str()); |
7db98ffc MZ |
89 | return false; |
90 | } | |
91 | ||
92 | pkgTagSection Section; | |
7db98ffc | 93 | const char *Start, *End; |
91c4cc14 DK |
94 | if (TagFile.Step(Section) == false) |
95 | { | |
96 | strprintf(ErrorText, _("No sections in Release file %s"), Filename.c_str()); | |
97 | return false; | |
98 | } | |
a2fdb57f MV |
99 | // FIXME: find better tag name |
100 | SupportsAcquireByHash = Section.FindB("Acquire-By-Hash", false); | |
495e5cb2 | 101 | |
7db98ffc MZ |
102 | Suite = Section.FindS("Suite"); |
103 | Dist = Section.FindS("Codename"); | |
495e5cb2 | 104 | |
50d98a1b MV |
105 | bool FoundHashSum = false; |
106 | for (int i=0;HashString::SupportedHashes()[i] != NULL; i++) | |
7db98ffc | 107 | { |
495e5cb2 MV |
108 | if (!Section.Find(HashString::SupportedHashes()[i], Start, End)) |
109 | continue; | |
110 | ||
111 | string Name; | |
112 | string Hash; | |
650faab0 | 113 | unsigned long long Size; |
495e5cb2 MV |
114 | while (Start < End) |
115 | { | |
116 | if (!parseSumData(Start, End, Name, Hash, Size)) | |
117 | return false; | |
50d98a1b MV |
118 | |
119 | if (Entries.find(Name) == Entries.end()) | |
120 | { | |
121 | indexRecords::checkSum *Sum = new indexRecords::checkSum; | |
122 | Sum->MetaKeyFilename = Name; | |
123 | Sum->Size = Size; | |
23397c9d DK |
124 | std::string SizeStr; |
125 | strprintf(SizeStr, "%llu", Size); | |
126 | Sum->Hashes.push_back(HashString("Checksum-FileSize", SizeStr)); | |
586d8704 | 127 | APT_IGNORE_DEPRECATED(Sum->Hash = HashString(HashString::SupportedHashes()[i],Hash);) |
50d98a1b MV |
128 | Entries[Name] = Sum; |
129 | } | |
130 | Entries[Name]->Hashes.push_back(HashString(HashString::SupportedHashes()[i],Hash)); | |
131 | FoundHashSum = true; | |
495e5cb2 | 132 | } |
7db98ffc | 133 | } |
495e5cb2 | 134 | |
50d98a1b | 135 | if(FoundHashSum == false) |
7db98ffc | 136 | { |
d4cd303e | 137 | strprintf(ErrorText, _("No Hash entry in Release file %s"), Filename.c_str()); |
495e5cb2 | 138 | return false; |
bbde96a6 | 139 | } |
495e5cb2 | 140 | |
6bf93605 DK |
141 | string const StrDate = Section.FindS("Date"); |
142 | if (RFC1123StrToTime(StrDate.c_str(), Date) == false) | |
143 | { | |
144 | strprintf(ErrorText, _("Invalid 'Date' entry in Release file %s"), Filename.c_str()); | |
145 | return false; | |
146 | } | |
147 | ||
148 | string const Label = Section.FindS("Label"); | |
149 | string const StrValidUntil = Section.FindS("Valid-Until"); | |
1ddb8596 | 150 | |
bbde96a6 | 151 | // if we have a Valid-Until header in the Release file, use it as default |
0323317c | 152 | if (StrValidUntil.empty() == false) |
1ddb8596 | 153 | { |
0323317c | 154 | if(RFC1123StrToTime(StrValidUntil.c_str(), ValidUntil) == false) |
1ddb8596 | 155 | { |
0323317c | 156 | strprintf(ErrorText, _("Invalid 'Valid-Until' entry in Release file %s"), Filename.c_str()); |
1ddb8596 DK |
157 | return false; |
158 | } | |
bbde96a6 DK |
159 | } |
160 | // get the user settings for this archive and use what expires earlier | |
b02fffa6 | 161 | int MaxAge = _config->FindI("Acquire::Max-ValidTime", 0); |
884a4c0a | 162 | if (Label.empty() == false) |
e788a834 | 163 | MaxAge = _config->FindI(("Acquire::Max-ValidTime::" + Label).c_str(), MaxAge); |
89500a25 DK |
164 | int MinAge = _config->FindI("Acquire::Min-ValidTime", 0); |
165 | if (Label.empty() == false) | |
e788a834 | 166 | MinAge = _config->FindI(("Acquire::Min-ValidTime::" + Label).c_str(), MinAge); |
0323317c | 167 | |
89500a25 DK |
168 | if(MaxAge == 0 && |
169 | (MinAge == 0 || ValidUntil == 0)) // No user settings, use the one from the Release file | |
bbde96a6 DK |
170 | return true; |
171 | ||
89500a25 | 172 | if (MinAge != 0 && ValidUntil != 0) { |
6bf93605 | 173 | time_t const min_date = Date + MinAge; |
89500a25 DK |
174 | if (ValidUntil < min_date) |
175 | ValidUntil = min_date; | |
176 | } | |
177 | if (MaxAge != 0) { | |
6bf93605 | 178 | time_t const max_date = Date + MaxAge; |
89500a25 DK |
179 | if (ValidUntil == 0 || ValidUntil > max_date) |
180 | ValidUntil = max_date; | |
181 | } | |
495e5cb2 | 182 | |
7db98ffc MZ |
183 | return true; |
184 | } | |
92fcbfc1 | 185 | /*}}}*/ |
8f3ba4e8 | 186 | std::vector<string> indexRecords::MetaKeys() /*{{{*/ |
a75c6a6e MZ |
187 | { |
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); | |
192 | ++I; | |
193 | } | |
194 | return keys; | |
195 | } | |
92fcbfc1 DK |
196 | /*}}}*/ |
197 | bool indexRecords::parseSumData(const char *&Start, const char *End, /*{{{*/ | |
650faab0 | 198 | string &Name, string &Hash, unsigned long long &Size) |
7db98ffc MZ |
199 | { |
200 | Name = ""; | |
201 | Hash = ""; | |
202 | Size = 0; | |
203 | /* Skip over the first blank */ | |
8d326119 | 204 | while ((*Start == '\t' || *Start == ' ' || *Start == '\n' || *Start == '\r') |
7db98ffc MZ |
205 | && Start < End) |
206 | Start++; | |
207 | if (Start >= End) | |
208 | return false; | |
209 | ||
210 | /* Move EntryEnd to the end of the first entry (the hash) */ | |
211 | const char *EntryEnd = Start; | |
212 | while ((*EntryEnd != '\t' && *EntryEnd != ' ') | |
213 | && EntryEnd < End) | |
214 | EntryEnd++; | |
215 | if (EntryEnd == End) | |
216 | return false; | |
217 | ||
218 | Hash.append(Start, EntryEnd-Start); | |
219 | ||
220 | /* Skip over intermediate blanks */ | |
221 | Start = EntryEnd; | |
222 | while (*Start == '\t' || *Start == ' ') | |
223 | Start++; | |
224 | if (Start >= End) | |
225 | return false; | |
226 | ||
227 | EntryEnd = Start; | |
228 | /* Find the end of the second entry (the size) */ | |
229 | while ((*EntryEnd != '\t' && *EntryEnd != ' ' ) | |
230 | && EntryEnd < End) | |
231 | EntryEnd++; | |
232 | if (EntryEnd == End) | |
233 | return false; | |
234 | ||
650faab0 | 235 | Size = strtoull (Start, NULL, 10); |
7db98ffc MZ |
236 | |
237 | /* Skip over intermediate blanks */ | |
238 | Start = EntryEnd; | |
239 | while (*Start == '\t' || *Start == ' ') | |
240 | Start++; | |
241 | if (Start >= End) | |
242 | return false; | |
243 | ||
244 | EntryEnd = Start; | |
245 | /* Find the end of the third entry (the filename) */ | |
8d326119 MV |
246 | while ((*EntryEnd != '\t' && *EntryEnd != ' ' && |
247 | *EntryEnd != '\n' && *EntryEnd != '\r') | |
7db98ffc MZ |
248 | && EntryEnd < End) |
249 | EntryEnd++; | |
250 | ||
251 | Name.append(Start, EntryEnd-Start); | |
252 | Start = EntryEnd; //prepare for the next round | |
253 | return true; | |
254 | } | |
92fcbfc1 | 255 | /*}}}*/ |
07cb47e7 DK |
256 | |
257 | APT_PURE bool indexRecords::IsAlwaysTrusted() const | |
258 | { | |
259 | if (Trusted == ALWAYS_TRUSTED) | |
260 | return true; | |
261 | return false; | |
262 | } | |
263 | APT_PURE bool indexRecords::IsNeverTrusted() const | |
264 | { | |
265 | if (Trusted == NEVER_TRUSTED) | |
266 | return true; | |
267 | return false; | |
268 | } | |
269 | void indexRecords::SetTrusted(bool const Trusted) | |
7db98ffc | 270 | { |
07cb47e7 DK |
271 | if (Trusted == true) |
272 | this->Trusted = ALWAYS_TRUSTED; | |
273 | else | |
274 | this->Trusted = NEVER_TRUSTED; | |
7db98ffc MZ |
275 | } |
276 | ||
fa5404ab | 277 | #if APT_PKG_ABI >= 413 |
07cb47e7 DK |
278 | indexRecords::indexRecords(const string &ExpectedDist) : |
279 | Trusted(CHECK_TRUST), d(NULL), ExpectedDist(ExpectedDist), ValidUntil(0), | |
280 | SupportsAcquireByHash(false) | |
7db98ffc MZ |
281 | { |
282 | } | |
fa5404ab DK |
283 | #else |
284 | indexRecords::indexRecords() : | |
285 | Trusted(CHECK_TRUST), d(NULL), ExpectedDist(""), ValidUntil(0), | |
286 | SupportsAcquireByHash(false) | |
287 | { | |
288 | } | |
289 | indexRecords::indexRecords(const string ExpectedDist) : | |
290 | Trusted(CHECK_TRUST), d(NULL), ExpectedDist(ExpectedDist), ValidUntil(0), | |
291 | SupportsAcquireByHash(false) | |
292 | { | |
293 | } | |
294 | #endif | |
862bafea DK |
295 | |
296 | indexRecords::~indexRecords() {} |