]>
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 | ||
1dca8dc5 | 61 | APT_PURE indexRecords::checkSum *indexRecords::Lookup(const string MetaKey) |
7db98ffc | 62 | { |
d90d3a05 DK |
63 | std::map<std::string, indexRecords::checkSum* >::const_iterator sum = Entries.find(MetaKey); |
64 | if (sum == Entries.end()) | |
65 | return NULL; | |
66 | return sum->second; | |
7db98ffc MZ |
67 | } |
68 | ||
a02db58f | 69 | APT_PURE bool indexRecords::Exists(string const &MetaKey) const |
e1430400 DK |
70 | { |
71 | return Entries.count(MetaKey) == 1; | |
72 | } | |
73 | ||
92fcbfc1 | 74 | bool indexRecords::Load(const string Filename) /*{{{*/ |
7db98ffc | 75 | { |
233b7808 DK |
76 | FileFd Fd; |
77 | if (OpenMaybeClearSignedFile(Filename, Fd) == false) | |
78 | return false; | |
79 | ||
233d79a5 | 80 | pkgTagFile TagFile(&Fd, Fd.Size()); |
7db98ffc MZ |
81 | if (_error->PendingError() == true) |
82 | { | |
d4cd303e | 83 | strprintf(ErrorText, _("Unable to parse Release file %s"),Filename.c_str()); |
7db98ffc MZ |
84 | return false; |
85 | } | |
86 | ||
87 | pkgTagSection Section; | |
7db98ffc | 88 | const char *Start, *End; |
91c4cc14 DK |
89 | if (TagFile.Step(Section) == false) |
90 | { | |
91 | strprintf(ErrorText, _("No sections in Release file %s"), Filename.c_str()); | |
92 | return false; | |
93 | } | |
a2fdb57f MV |
94 | // FIXME: find better tag name |
95 | SupportsAcquireByHash = Section.FindB("Acquire-By-Hash", false); | |
495e5cb2 | 96 | |
7db98ffc MZ |
97 | Suite = Section.FindS("Suite"); |
98 | Dist = Section.FindS("Codename"); | |
495e5cb2 | 99 | |
50d98a1b MV |
100 | bool FoundHashSum = false; |
101 | for (int i=0;HashString::SupportedHashes()[i] != NULL; i++) | |
7db98ffc | 102 | { |
495e5cb2 MV |
103 | if (!Section.Find(HashString::SupportedHashes()[i], Start, End)) |
104 | continue; | |
105 | ||
106 | string Name; | |
107 | string Hash; | |
650faab0 | 108 | unsigned long long Size; |
495e5cb2 MV |
109 | while (Start < End) |
110 | { | |
111 | if (!parseSumData(Start, End, Name, Hash, Size)) | |
112 | return false; | |
50d98a1b MV |
113 | |
114 | if (Entries.find(Name) == Entries.end()) | |
115 | { | |
116 | indexRecords::checkSum *Sum = new indexRecords::checkSum; | |
117 | Sum->MetaKeyFilename = Name; | |
118 | Sum->Size = Size; | |
119 | Entries[Name] = Sum; | |
120 | } | |
121 | Entries[Name]->Hashes.push_back(HashString(HashString::SupportedHashes()[i],Hash)); | |
122 | FoundHashSum = true; | |
495e5cb2 | 123 | } |
7db98ffc | 124 | } |
495e5cb2 | 125 | |
50d98a1b | 126 | if(FoundHashSum == false) |
7db98ffc | 127 | { |
d4cd303e | 128 | strprintf(ErrorText, _("No Hash entry in Release file %s"), Filename.c_str()); |
495e5cb2 | 129 | return false; |
bbde96a6 | 130 | } |
495e5cb2 | 131 | |
1ddb8596 | 132 | string Label = Section.FindS("Label"); |
0323317c | 133 | string StrDate = Section.FindS("Date"); |
1ddb8596 DK |
134 | string StrValidUntil = Section.FindS("Valid-Until"); |
135 | ||
bbde96a6 | 136 | // if we have a Valid-Until header in the Release file, use it as default |
0323317c | 137 | if (StrValidUntil.empty() == false) |
1ddb8596 | 138 | { |
0323317c | 139 | if(RFC1123StrToTime(StrValidUntil.c_str(), ValidUntil) == false) |
1ddb8596 | 140 | { |
0323317c | 141 | strprintf(ErrorText, _("Invalid 'Valid-Until' entry in Release file %s"), Filename.c_str()); |
1ddb8596 DK |
142 | return false; |
143 | } | |
bbde96a6 DK |
144 | } |
145 | // get the user settings for this archive and use what expires earlier | |
b02fffa6 | 146 | int MaxAge = _config->FindI("Acquire::Max-ValidTime", 0); |
884a4c0a | 147 | if (Label.empty() == false) |
e788a834 | 148 | MaxAge = _config->FindI(("Acquire::Max-ValidTime::" + Label).c_str(), MaxAge); |
89500a25 DK |
149 | int MinAge = _config->FindI("Acquire::Min-ValidTime", 0); |
150 | if (Label.empty() == false) | |
e788a834 | 151 | MinAge = _config->FindI(("Acquire::Min-ValidTime::" + Label).c_str(), MinAge); |
0323317c | 152 | |
89500a25 DK |
153 | if(MaxAge == 0 && |
154 | (MinAge == 0 || ValidUntil == 0)) // No user settings, use the one from the Release file | |
bbde96a6 DK |
155 | return true; |
156 | ||
157 | time_t date; | |
158 | if (RFC1123StrToTime(StrDate.c_str(), date) == false) | |
159 | { | |
160 | strprintf(ErrorText, _("Invalid 'Date' entry in Release file %s"), Filename.c_str()); | |
161 | return false; | |
1ddb8596 | 162 | } |
bbde96a6 | 163 | |
89500a25 DK |
164 | if (MinAge != 0 && ValidUntil != 0) { |
165 | time_t const min_date = date + MinAge; | |
166 | if (ValidUntil < min_date) | |
167 | ValidUntil = min_date; | |
168 | } | |
169 | if (MaxAge != 0) { | |
170 | time_t const max_date = date + MaxAge; | |
171 | if (ValidUntil == 0 || ValidUntil > max_date) | |
172 | ValidUntil = max_date; | |
173 | } | |
495e5cb2 | 174 | |
7db98ffc MZ |
175 | return true; |
176 | } | |
92fcbfc1 | 177 | /*}}}*/ |
8f3ba4e8 | 178 | std::vector<string> indexRecords::MetaKeys() /*{{{*/ |
a75c6a6e MZ |
179 | { |
180 | std::vector<std::string> keys; | |
181 | std::map<string,checkSum *>::iterator I = Entries.begin(); | |
182 | while(I != Entries.end()) { | |
183 | keys.push_back((*I).first); | |
184 | ++I; | |
185 | } | |
186 | return keys; | |
187 | } | |
92fcbfc1 DK |
188 | /*}}}*/ |
189 | bool indexRecords::parseSumData(const char *&Start, const char *End, /*{{{*/ | |
650faab0 | 190 | string &Name, string &Hash, unsigned long long &Size) |
7db98ffc MZ |
191 | { |
192 | Name = ""; | |
193 | Hash = ""; | |
194 | Size = 0; | |
195 | /* Skip over the first blank */ | |
8d326119 | 196 | while ((*Start == '\t' || *Start == ' ' || *Start == '\n' || *Start == '\r') |
7db98ffc MZ |
197 | && Start < End) |
198 | Start++; | |
199 | if (Start >= End) | |
200 | return false; | |
201 | ||
202 | /* Move EntryEnd to the end of the first entry (the hash) */ | |
203 | const char *EntryEnd = Start; | |
204 | while ((*EntryEnd != '\t' && *EntryEnd != ' ') | |
205 | && EntryEnd < End) | |
206 | EntryEnd++; | |
207 | if (EntryEnd == End) | |
208 | return false; | |
209 | ||
210 | Hash.append(Start, EntryEnd-Start); | |
211 | ||
212 | /* Skip over intermediate blanks */ | |
213 | Start = EntryEnd; | |
214 | while (*Start == '\t' || *Start == ' ') | |
215 | Start++; | |
216 | if (Start >= End) | |
217 | return false; | |
218 | ||
219 | EntryEnd = Start; | |
220 | /* Find the end of the second entry (the size) */ | |
221 | while ((*EntryEnd != '\t' && *EntryEnd != ' ' ) | |
222 | && EntryEnd < End) | |
223 | EntryEnd++; | |
224 | if (EntryEnd == End) | |
225 | return false; | |
226 | ||
650faab0 | 227 | Size = strtoull (Start, NULL, 10); |
7db98ffc MZ |
228 | |
229 | /* Skip over intermediate blanks */ | |
230 | Start = EntryEnd; | |
231 | while (*Start == '\t' || *Start == ' ') | |
232 | Start++; | |
233 | if (Start >= End) | |
234 | return false; | |
235 | ||
236 | EntryEnd = Start; | |
237 | /* Find the end of the third entry (the filename) */ | |
8d326119 MV |
238 | while ((*EntryEnd != '\t' && *EntryEnd != ' ' && |
239 | *EntryEnd != '\n' && *EntryEnd != '\r') | |
7db98ffc MZ |
240 | && EntryEnd < End) |
241 | EntryEnd++; | |
242 | ||
243 | Name.append(Start, EntryEnd-Start); | |
244 | Start = EntryEnd; //prepare for the next round | |
245 | return true; | |
246 | } | |
92fcbfc1 | 247 | /*}}}*/ |
7db98ffc MZ |
248 | indexRecords::indexRecords() |
249 | { | |
250 | } | |
251 | ||
252 | indexRecords::indexRecords(const string ExpectedDist) : | |
a2fdb57f | 253 | ExpectedDist(ExpectedDist), ValidUntil(0), SupportsAcquireByHash(false) |
7db98ffc MZ |
254 | { |
255 | } |