]>
Commit | Line | Data |
---|---|---|
1 | // -*- mode: cpp; mode: fold -*- | |
2 | // Description /*{{{*/ | |
3 | // $Id: acquire-item.cc,v 1.46.2.9 2004/01/16 18:51:11 mdz Exp $ | |
4 | /* ###################################################################### | |
5 | ||
6 | Acquire Item - Item to acquire | |
7 | ||
8 | Each item can download to exactly one file at a time. This means you | |
9 | cannot create an item that fetches two uri's to two files at the same | |
10 | time. The pkgAcqIndex class creates a second class upon instantiation | |
11 | to fetch the other index files because of this. | |
12 | ||
13 | ##################################################################### */ | |
14 | /*}}}*/ | |
15 | // Include Files /*{{{*/ | |
16 | #include <config.h> | |
17 | ||
18 | #include <apt-pkg/acquire-item.h> | |
19 | #include <apt-pkg/configuration.h> | |
20 | #include <apt-pkg/aptconfiguration.h> | |
21 | #include <apt-pkg/sourcelist.h> | |
22 | #include <apt-pkg/error.h> | |
23 | #include <apt-pkg/strutl.h> | |
24 | #include <apt-pkg/fileutl.h> | |
25 | #include <apt-pkg/tagfile.h> | |
26 | #include <apt-pkg/metaindex.h> | |
27 | #include <apt-pkg/acquire.h> | |
28 | #include <apt-pkg/hashes.h> | |
29 | #include <apt-pkg/indexfile.h> | |
30 | #include <apt-pkg/pkgcache.h> | |
31 | #include <apt-pkg/cacheiterators.h> | |
32 | #include <apt-pkg/pkgrecords.h> | |
33 | #include <apt-pkg/gpgv.h> | |
34 | ||
35 | #include <algorithm> | |
36 | #include <stddef.h> | |
37 | #include <stdlib.h> | |
38 | #include <string.h> | |
39 | #include <iostream> | |
40 | #include <vector> | |
41 | #include <sys/stat.h> | |
42 | #include <unistd.h> | |
43 | #include <errno.h> | |
44 | #include <string> | |
45 | #include <stdio.h> | |
46 | #include <ctime> | |
47 | #include <sstream> | |
48 | ||
49 | #include <apti18n.h> | |
50 | /*}}}*/ | |
51 | ||
52 | using namespace std; | |
53 | ||
54 | static void printHashSumComparision(std::string const &URI, HashStringList const &Expected, HashStringList const &Actual) /*{{{*/ | |
55 | { | |
56 | if (_config->FindB("Debug::Acquire::HashSumMismatch", false) == false) | |
57 | return; | |
58 | std::cerr << std::endl << URI << ":" << std::endl << " Expected Hash: " << std::endl; | |
59 | for (HashStringList::const_iterator hs = Expected.begin(); hs != Expected.end(); ++hs) | |
60 | std::cerr << "\t- " << hs->toStr() << std::endl; | |
61 | std::cerr << " Actual Hash: " << std::endl; | |
62 | for (HashStringList::const_iterator hs = Actual.begin(); hs != Actual.end(); ++hs) | |
63 | std::cerr << "\t- " << hs->toStr() << std::endl; | |
64 | } | |
65 | /*}}}*/ | |
66 | static std::string GetPartialFileName(std::string const &file) /*{{{*/ | |
67 | { | |
68 | std::string DestFile = _config->FindDir("Dir::State::lists") + "partial/"; | |
69 | DestFile += file; | |
70 | return DestFile; | |
71 | } | |
72 | /*}}}*/ | |
73 | static std::string GetPartialFileNameFromURI(std::string const &uri) /*{{{*/ | |
74 | { | |
75 | return GetPartialFileName(URItoFileName(uri)); | |
76 | } | |
77 | /*}}}*/ | |
78 | static std::string GetFinalFileNameFromURI(std::string const &uri) /*{{{*/ | |
79 | { | |
80 | return _config->FindDir("Dir::State::lists") + URItoFileName(uri); | |
81 | } | |
82 | /*}}}*/ | |
83 | static std::string GetKeepCompressedFileName(std::string file, IndexTarget const &Target)/*{{{*/ | |
84 | { | |
85 | if (Target.KeepCompressed == false) | |
86 | return file; | |
87 | ||
88 | std::string const CompressionTypes = Target.Option(IndexTarget::COMPRESSIONTYPES); | |
89 | if (CompressionTypes.empty() == false) | |
90 | { | |
91 | std::string const ext = CompressionTypes.substr(0, CompressionTypes.find(' ')); | |
92 | if (ext != "uncompressed") | |
93 | file.append(".").append(ext); | |
94 | } | |
95 | return file; | |
96 | } | |
97 | /*}}}*/ | |
98 | static std::string GetCompressedFileName(IndexTarget const &Target, std::string const &Name, std::string const &Ext) /*{{{*/ | |
99 | { | |
100 | if (Ext.empty() || Ext == "uncompressed") | |
101 | return Name; | |
102 | ||
103 | // do not reverify cdrom sources as apt-cdrom may rewrite the Packages | |
104 | // file when its doing the indexcopy | |
105 | if (Target.URI.substr(0,6) == "cdrom:") | |
106 | return Name; | |
107 | ||
108 | // adjust DestFile if its compressed on disk | |
109 | if (Target.KeepCompressed == true) | |
110 | return Name + '.' + Ext; | |
111 | return Name; | |
112 | } | |
113 | /*}}}*/ | |
114 | static std::string GetMergeDiffsPatchFileName(std::string const &Final, std::string const &Patch)/*{{{*/ | |
115 | { | |
116 | // rred expects the patch as $FinalFile.ed.$patchname.gz | |
117 | return Final + ".ed." + Patch + ".gz"; | |
118 | } | |
119 | /*}}}*/ | |
120 | static std::string GetDiffsPatchFileName(std::string const &Final) /*{{{*/ | |
121 | { | |
122 | // rred expects the patch as $FinalFile.ed | |
123 | return Final + ".ed"; | |
124 | } | |
125 | /*}}}*/ | |
126 | static bool BootstrapPDiffWith(std::string const &PartialFile, std::string const &FinalFile, IndexTarget const &Target)/*{{{*/ | |
127 | { | |
128 | // patching needs to be bootstrapped with the 'old' version | |
129 | std::vector<std::string> types = VectorizeString(Target.Option(IndexTarget::COMPRESSIONTYPES), ' '); | |
130 | auto typeItr = types.cbegin(); | |
131 | for (; typeItr != types.cend(); ++typeItr) | |
132 | { | |
133 | std::string Final = FinalFile; | |
134 | if (*typeItr != "uncompressed") | |
135 | Final.append(".").append(*typeItr); | |
136 | if (RealFileExists(Final) == false) | |
137 | continue; | |
138 | std::string Partial = PartialFile; | |
139 | if (*typeItr != "uncompressed") | |
140 | Partial.append(".").append(*typeItr); | |
141 | if (FileExists(Partial.c_str()) == true) | |
142 | return true; | |
143 | if (symlink(Final.c_str(), Partial.c_str()) != 0) | |
144 | return false; | |
145 | break; | |
146 | } | |
147 | return typeItr != types.cend(); | |
148 | } | |
149 | /*}}}*/ | |
150 | ||
151 | static bool MessageInsecureRepository(bool const isError, std::string const &msg)/*{{{*/ | |
152 | { | |
153 | if (isError) | |
154 | { | |
155 | _error->Error("%s", msg.c_str()); | |
156 | _error->Notice("%s", _("Updating such a repository securily is impossible and therefore disabled by default.")); | |
157 | } | |
158 | else | |
159 | { | |
160 | _error->Warning("%s", msg.c_str()); | |
161 | _error->Notice("%s", _("Data from such a repository can not be authenticated and is therefore potentially dangerous to use.")); | |
162 | } | |
163 | _error->Notice("%s", _("See apt-secure(8) manpage for repository creation and user configuration details.")); | |
164 | return false; | |
165 | } | |
166 | static bool MessageInsecureRepository(bool const isError, char const * const msg, std::string const &repo) | |
167 | { | |
168 | std::string m; | |
169 | strprintf(m, msg, repo.c_str()); | |
170 | return MessageInsecureRepository(isError, m); | |
171 | } | |
172 | /*}}}*/ | |
173 | static bool AllowInsecureRepositories(char const * const msg, std::string const &repo,/*{{{*/ | |
174 | metaIndex const * const MetaIndexParser, pkgAcqMetaClearSig * const TransactionManager, pkgAcquire::Item * const I) | |
175 | { | |
176 | if(MetaIndexParser->GetTrusted() == metaIndex::TRI_YES) | |
177 | return true; | |
178 | ||
179 | if (_config->FindB("Acquire::AllowInsecureRepositories") == true) | |
180 | { | |
181 | MessageInsecureRepository(false, msg, repo); | |
182 | return true; | |
183 | } | |
184 | ||
185 | MessageInsecureRepository(true, msg, repo); | |
186 | TransactionManager->AbortTransaction(); | |
187 | I->Status = pkgAcquire::Item::StatError; | |
188 | return false; | |
189 | } | |
190 | /*}}}*/ | |
191 | static HashStringList GetExpectedHashesFromFor(metaIndex * const Parser, std::string const &MetaKey)/*{{{*/ | |
192 | { | |
193 | if (Parser == NULL) | |
194 | return HashStringList(); | |
195 | metaIndex::checkSum * const R = Parser->Lookup(MetaKey); | |
196 | if (R == NULL) | |
197 | return HashStringList(); | |
198 | return R->Hashes; | |
199 | } | |
200 | /*}}}*/ | |
201 | ||
202 | // all ::HashesRequired and ::GetExpectedHashes implementations /*{{{*/ | |
203 | /* ::GetExpectedHashes is abstract and has to be implemented by all subclasses. | |
204 | It is best to implement it as broadly as possible, while ::HashesRequired defaults | |
205 | to true and should be as restrictive as possible for false cases. Note that if | |
206 | a hash is returned by ::GetExpectedHashes it must match. Only if it doesn't | |
207 | ::HashesRequired is called to evaluate if its okay to have no hashes. */ | |
208 | APT_CONST bool pkgAcqTransactionItem::HashesRequired() const | |
209 | { | |
210 | /* signed repositories obviously have a parser and good hashes. | |
211 | unsigned repositories, too, as even if we can't trust them for security, | |
212 | we can at least trust them for integrity of the download itself. | |
213 | Only repositories without a Release file can (obviously) not have | |
214 | hashes – and they are very uncommon and strongly discouraged */ | |
215 | return TransactionManager->MetaIndexParser != NULL && | |
216 | TransactionManager->MetaIndexParser->GetLoadedSuccessfully() == metaIndex::TRI_YES; | |
217 | } | |
218 | HashStringList pkgAcqTransactionItem::GetExpectedHashes() const | |
219 | { | |
220 | return GetExpectedHashesFor(GetMetaKey()); | |
221 | } | |
222 | ||
223 | APT_CONST bool pkgAcqMetaBase::HashesRequired() const | |
224 | { | |
225 | // Release and co have no hashes 'by design'. | |
226 | return false; | |
227 | } | |
228 | HashStringList pkgAcqMetaBase::GetExpectedHashes() const | |
229 | { | |
230 | return HashStringList(); | |
231 | } | |
232 | ||
233 | APT_CONST bool pkgAcqIndexDiffs::HashesRequired() const | |
234 | { | |
235 | /* We don't always have the diff of the downloaded pdiff file. | |
236 | What we have for sure is hashes for the uncompressed file, | |
237 | but rred uncompresses them on the fly while parsing, so not handled here. | |
238 | Hashes are (also) checked while searching for (next) patch to apply. */ | |
239 | if (State == StateFetchDiff) | |
240 | return available_patches[0].download_hashes.empty() == false; | |
241 | return false; | |
242 | } | |
243 | HashStringList pkgAcqIndexDiffs::GetExpectedHashes() const | |
244 | { | |
245 | if (State == StateFetchDiff) | |
246 | return available_patches[0].download_hashes; | |
247 | return HashStringList(); | |
248 | } | |
249 | ||
250 | APT_CONST bool pkgAcqIndexMergeDiffs::HashesRequired() const | |
251 | { | |
252 | /* @see #pkgAcqIndexDiffs::HashesRequired, with the difference that | |
253 | we can check the rred result after all patches are applied as | |
254 | we know the expected result rather than potentially apply more patches */ | |
255 | if (State == StateFetchDiff) | |
256 | return patch.download_hashes.empty() == false; | |
257 | return State == StateApplyDiff; | |
258 | } | |
259 | HashStringList pkgAcqIndexMergeDiffs::GetExpectedHashes() const | |
260 | { | |
261 | if (State == StateFetchDiff) | |
262 | return patch.download_hashes; | |
263 | else if (State == StateApplyDiff) | |
264 | return GetExpectedHashesFor(Target.MetaKey); | |
265 | return HashStringList(); | |
266 | } | |
267 | ||
268 | APT_CONST bool pkgAcqArchive::HashesRequired() const | |
269 | { | |
270 | return LocalSource == false; | |
271 | } | |
272 | HashStringList pkgAcqArchive::GetExpectedHashes() const | |
273 | { | |
274 | // figured out while parsing the records | |
275 | return ExpectedHashes; | |
276 | } | |
277 | ||
278 | APT_CONST bool pkgAcqFile::HashesRequired() const | |
279 | { | |
280 | // supplied as parameter at creation time, so the caller decides | |
281 | return ExpectedHashes.usable(); | |
282 | } | |
283 | HashStringList pkgAcqFile::GetExpectedHashes() const | |
284 | { | |
285 | return ExpectedHashes; | |
286 | } | |
287 | /*}}}*/ | |
288 | // Acquire::Item::QueueURI and specialisations from child classes /*{{{*/ | |
289 | bool pkgAcquire::Item::QueueURI(pkgAcquire::ItemDesc &Item) | |
290 | { | |
291 | Owner->Enqueue(Item); | |
292 | return true; | |
293 | } | |
294 | /* The idea here is that an item isn't queued if it exists on disk and the | |
295 | transition manager was a hit as this means that the files it contains | |
296 | the checksums for can't be updated either (or they are and we are asking | |
297 | for a hashsum mismatch to happen which helps nobody) */ | |
298 | bool pkgAcqTransactionItem::QueueURI(pkgAcquire::ItemDesc &Item) | |
299 | { | |
300 | std::string const FinalFile = GetFinalFilename(); | |
301 | if (TransactionManager != NULL && TransactionManager->IMSHit == true && | |
302 | FileExists(FinalFile) == true) | |
303 | { | |
304 | PartialFile = DestFile = FinalFile; | |
305 | Status = StatDone; | |
306 | return false; | |
307 | } | |
308 | return pkgAcquire::Item::QueueURI(Item); | |
309 | } | |
310 | /* The transition manager InRelease itself (or its older sisters-in-law | |
311 | Release & Release.gpg) is always queued as this allows us to rerun gpgv | |
312 | on it to verify that we aren't stalled with old files */ | |
313 | bool pkgAcqMetaBase::QueueURI(pkgAcquire::ItemDesc &Item) | |
314 | { | |
315 | return pkgAcquire::Item::QueueURI(Item); | |
316 | } | |
317 | /* the Diff/Index needs to queue also the up-to-date complete index file | |
318 | to ensure that the list cleaner isn't eating it */ | |
319 | bool pkgAcqDiffIndex::QueueURI(pkgAcquire::ItemDesc &Item) | |
320 | { | |
321 | if (pkgAcqTransactionItem::QueueURI(Item) == true) | |
322 | return true; | |
323 | QueueOnIMSHit(); | |
324 | return false; | |
325 | } | |
326 | /*}}}*/ | |
327 | // Acquire::Item::GetFinalFilename and specialisations for child classes /*{{{*/ | |
328 | std::string pkgAcquire::Item::GetFinalFilename() const | |
329 | { | |
330 | return GetFinalFileNameFromURI(Desc.URI); | |
331 | } | |
332 | std::string pkgAcqDiffIndex::GetFinalFilename() const | |
333 | { | |
334 | // the logic we inherent from pkgAcqBaseIndex isn't what we need here | |
335 | return pkgAcquire::Item::GetFinalFilename(); | |
336 | } | |
337 | std::string pkgAcqIndex::GetFinalFilename() const | |
338 | { | |
339 | std::string const FinalFile = GetFinalFileNameFromURI(Target.URI); | |
340 | return GetCompressedFileName(Target, FinalFile, CurrentCompressionExtension); | |
341 | } | |
342 | std::string pkgAcqMetaSig::GetFinalFilename() const | |
343 | { | |
344 | return GetFinalFileNameFromURI(Target.URI); | |
345 | } | |
346 | std::string pkgAcqBaseIndex::GetFinalFilename() const | |
347 | { | |
348 | return GetFinalFileNameFromURI(Target.URI); | |
349 | } | |
350 | std::string pkgAcqMetaBase::GetFinalFilename() const | |
351 | { | |
352 | return GetFinalFileNameFromURI(Target.URI); | |
353 | } | |
354 | std::string pkgAcqArchive::GetFinalFilename() const | |
355 | { | |
356 | return _config->FindDir("Dir::Cache::Archives") + flNotDir(StoreFilename); | |
357 | } | |
358 | /*}}}*/ | |
359 | // pkgAcqTransactionItem::GetMetaKey and specialisations for child classes /*{{{*/ | |
360 | std::string pkgAcqTransactionItem::GetMetaKey() const | |
361 | { | |
362 | return Target.MetaKey; | |
363 | } | |
364 | std::string pkgAcqIndex::GetMetaKey() const | |
365 | { | |
366 | if (Stage == STAGE_DECOMPRESS_AND_VERIFY || CurrentCompressionExtension == "uncompressed") | |
367 | return Target.MetaKey; | |
368 | return Target.MetaKey + "." + CurrentCompressionExtension; | |
369 | } | |
370 | std::string pkgAcqDiffIndex::GetMetaKey() const | |
371 | { | |
372 | return Target.MetaKey + ".diff/Index"; | |
373 | } | |
374 | /*}}}*/ | |
375 | //pkgAcqTransactionItem::TransactionState and specialisations for child classes /*{{{*/ | |
376 | bool pkgAcqTransactionItem::TransactionState(TransactionStates const state) | |
377 | { | |
378 | bool const Debug = _config->FindB("Debug::Acquire::Transaction", false); | |
379 | switch(state) | |
380 | { | |
381 | case TransactionAbort: | |
382 | if(Debug == true) | |
383 | std::clog << " Cancel: " << DestFile << std::endl; | |
384 | if (Status == pkgAcquire::Item::StatIdle) | |
385 | { | |
386 | Status = pkgAcquire::Item::StatDone; | |
387 | Dequeue(); | |
388 | } | |
389 | break; | |
390 | case TransactionCommit: | |
391 | if(PartialFile != "") | |
392 | { | |
393 | if(Debug == true) | |
394 | std::clog << "mv " << PartialFile << " -> "<< DestFile << " # " << DescURI() << std::endl; | |
395 | ||
396 | Rename(PartialFile, DestFile); | |
397 | } else { | |
398 | if(Debug == true) | |
399 | std::clog << "rm " << DestFile << " # " << DescURI() << std::endl; | |
400 | RemoveFile("TransactionCommit", DestFile); | |
401 | } | |
402 | break; | |
403 | } | |
404 | return true; | |
405 | } | |
406 | bool pkgAcqMetaBase::TransactionState(TransactionStates const state) | |
407 | { | |
408 | // Do not remove InRelease on IMSHit of Release.gpg [yes, this is very edgecasey] | |
409 | if (TransactionManager->IMSHit == false) | |
410 | return pkgAcqTransactionItem::TransactionState(state); | |
411 | return true; | |
412 | } | |
413 | bool pkgAcqIndex::TransactionState(TransactionStates const state) | |
414 | { | |
415 | if (pkgAcqTransactionItem::TransactionState(state) == false) | |
416 | return false; | |
417 | ||
418 | switch (state) | |
419 | { | |
420 | case TransactionAbort: | |
421 | if (Stage == STAGE_DECOMPRESS_AND_VERIFY) | |
422 | { | |
423 | // keep the compressed file, but drop the decompressed | |
424 | EraseFileName.clear(); | |
425 | if (PartialFile.empty() == false && flExtension(PartialFile) == "decomp") | |
426 | RemoveFile("TransactionAbort", PartialFile); | |
427 | } | |
428 | break; | |
429 | case TransactionCommit: | |
430 | if (EraseFileName.empty() == false) | |
431 | RemoveFile("TransactionCommit", EraseFileName); | |
432 | break; | |
433 | } | |
434 | return true; | |
435 | } | |
436 | bool pkgAcqDiffIndex::TransactionState(TransactionStates const state) | |
437 | { | |
438 | if (pkgAcqTransactionItem::TransactionState(state) == false) | |
439 | return false; | |
440 | ||
441 | switch (state) | |
442 | { | |
443 | case TransactionCommit: | |
444 | break; | |
445 | case TransactionAbort: | |
446 | std::string const Partial = GetPartialFileNameFromURI(Target.URI); | |
447 | RemoveFile("TransactionAbort", Partial); | |
448 | break; | |
449 | } | |
450 | ||
451 | return true; | |
452 | } | |
453 | /*}}}*/ | |
454 | ||
455 | class APT_HIDDEN NoActionItem : public pkgAcquire::Item /*{{{*/ | |
456 | /* The sole purpose of this class is having an item which does nothing to | |
457 | reach its done state to prevent cleanup deleting the mentioned file. | |
458 | Handy in cases in which we know we have the file already, like IMS-Hits. */ | |
459 | { | |
460 | IndexTarget const Target; | |
461 | public: | |
462 | virtual std::string DescURI() const APT_OVERRIDE {return Target.URI;}; | |
463 | virtual HashStringList GetExpectedHashes() const APT_OVERRIDE {return HashStringList();}; | |
464 | ||
465 | NoActionItem(pkgAcquire * const Owner, IndexTarget const &Target) : | |
466 | pkgAcquire::Item(Owner), Target(Target) | |
467 | { | |
468 | Status = StatDone; | |
469 | DestFile = GetFinalFileNameFromURI(Target.URI); | |
470 | } | |
471 | NoActionItem(pkgAcquire * const Owner, IndexTarget const &Target, std::string const &FinalFile) : | |
472 | pkgAcquire::Item(Owner), Target(Target) | |
473 | { | |
474 | Status = StatDone; | |
475 | DestFile = FinalFile; | |
476 | } | |
477 | }; | |
478 | /*}}}*/ | |
479 | ||
480 | // Acquire::Item::Item - Constructor /*{{{*/ | |
481 | APT_IGNORE_DEPRECATED_PUSH | |
482 | pkgAcquire::Item::Item(pkgAcquire * const owner) : | |
483 | FileSize(0), PartialSize(0), Mode(0), ID(0), Complete(false), Local(false), | |
484 | QueueCounter(0), ExpectedAdditionalItems(0), Owner(owner), d(NULL) | |
485 | { | |
486 | Owner->Add(this); | |
487 | Status = StatIdle; | |
488 | } | |
489 | APT_IGNORE_DEPRECATED_POP | |
490 | /*}}}*/ | |
491 | // Acquire::Item::~Item - Destructor /*{{{*/ | |
492 | pkgAcquire::Item::~Item() | |
493 | { | |
494 | Owner->Remove(this); | |
495 | } | |
496 | /*}}}*/ | |
497 | std::string pkgAcquire::Item::Custom600Headers() const /*{{{*/ | |
498 | { | |
499 | return std::string(); | |
500 | } | |
501 | /*}}}*/ | |
502 | std::string pkgAcquire::Item::ShortDesc() const /*{{{*/ | |
503 | { | |
504 | return DescURI(); | |
505 | } | |
506 | /*}}}*/ | |
507 | APT_CONST void pkgAcquire::Item::Finished() /*{{{*/ | |
508 | { | |
509 | } | |
510 | /*}}}*/ | |
511 | APT_PURE pkgAcquire * pkgAcquire::Item::GetOwner() const /*{{{*/ | |
512 | { | |
513 | return Owner; | |
514 | } | |
515 | /*}}}*/ | |
516 | APT_CONST pkgAcquire::ItemDesc &pkgAcquire::Item::GetItemDesc() /*{{{*/ | |
517 | { | |
518 | return Desc; | |
519 | } | |
520 | /*}}}*/ | |
521 | APT_CONST bool pkgAcquire::Item::IsTrusted() const /*{{{*/ | |
522 | { | |
523 | return false; | |
524 | } | |
525 | /*}}}*/ | |
526 | // Acquire::Item::Failed - Item failed to download /*{{{*/ | |
527 | // --------------------------------------------------------------------- | |
528 | /* We return to an idle state if there are still other queues that could | |
529 | fetch this object */ | |
530 | void pkgAcquire::Item::Failed(string const &Message,pkgAcquire::MethodConfig const * const Cnf) | |
531 | { | |
532 | if(ErrorText.empty()) | |
533 | ErrorText = LookupTag(Message,"Message"); | |
534 | if (QueueCounter <= 1) | |
535 | { | |
536 | /* This indicates that the file is not available right now but might | |
537 | be sometime later. If we do a retry cycle then this should be | |
538 | retried [CDROMs] */ | |
539 | if (Cnf != NULL && Cnf->LocalOnly == true && | |
540 | StringToBool(LookupTag(Message,"Transient-Failure"),false) == true) | |
541 | { | |
542 | Status = StatIdle; | |
543 | Dequeue(); | |
544 | return; | |
545 | } | |
546 | ||
547 | switch (Status) | |
548 | { | |
549 | case StatIdle: | |
550 | case StatFetching: | |
551 | case StatDone: | |
552 | Status = StatError; | |
553 | break; | |
554 | case StatAuthError: | |
555 | case StatError: | |
556 | case StatTransientNetworkError: | |
557 | break; | |
558 | } | |
559 | Complete = false; | |
560 | Dequeue(); | |
561 | } | |
562 | ||
563 | string const FailReason = LookupTag(Message, "FailReason"); | |
564 | if (FailReason == "MaximumSizeExceeded") | |
565 | RenameOnError(MaximumSizeExceeded); | |
566 | else if (Status == StatAuthError) | |
567 | RenameOnError(HashSumMismatch); | |
568 | ||
569 | // report mirror failure back to LP if we actually use a mirror | |
570 | if (FailReason.empty() == false) | |
571 | ReportMirrorFailure(FailReason); | |
572 | else | |
573 | ReportMirrorFailure(ErrorText); | |
574 | ||
575 | if (QueueCounter > 1) | |
576 | Status = StatIdle; | |
577 | } | |
578 | /*}}}*/ | |
579 | // Acquire::Item::Start - Item has begun to download /*{{{*/ | |
580 | // --------------------------------------------------------------------- | |
581 | /* Stash status and the file size. Note that setting Complete means | |
582 | sub-phases of the acquire process such as decompresion are operating */ | |
583 | void pkgAcquire::Item::Start(string const &/*Message*/, unsigned long long const Size) | |
584 | { | |
585 | Status = StatFetching; | |
586 | ErrorText.clear(); | |
587 | if (FileSize == 0 && Complete == false) | |
588 | FileSize = Size; | |
589 | } | |
590 | /*}}}*/ | |
591 | // Acquire::Item::VerifyDone - check if Item was downloaded OK /*{{{*/ | |
592 | /* Note that hash-verification is 'hardcoded' in acquire-worker and has | |
593 | * already passed if this method is called. */ | |
594 | bool pkgAcquire::Item::VerifyDone(std::string const &Message, | |
595 | pkgAcquire::MethodConfig const * const /*Cnf*/) | |
596 | { | |
597 | std::string const FileName = LookupTag(Message,"Filename"); | |
598 | if (FileName.empty() == true) | |
599 | { | |
600 | Status = StatError; | |
601 | ErrorText = "Method gave a blank filename"; | |
602 | return false; | |
603 | } | |
604 | ||
605 | return true; | |
606 | } | |
607 | /*}}}*/ | |
608 | // Acquire::Item::Done - Item downloaded OK /*{{{*/ | |
609 | void pkgAcquire::Item::Done(string const &/*Message*/, HashStringList const &Hashes, | |
610 | pkgAcquire::MethodConfig const * const /*Cnf*/) | |
611 | { | |
612 | // We just downloaded something.. | |
613 | if (FileSize == 0) | |
614 | { | |
615 | unsigned long long const downloadedSize = Hashes.FileSize(); | |
616 | if (downloadedSize != 0) | |
617 | { | |
618 | FileSize = downloadedSize; | |
619 | } | |
620 | } | |
621 | Status = StatDone; | |
622 | ErrorText = string(); | |
623 | Owner->Dequeue(this); | |
624 | } | |
625 | /*}}}*/ | |
626 | // Acquire::Item::Rename - Rename a file /*{{{*/ | |
627 | // --------------------------------------------------------------------- | |
628 | /* This helper function is used by a lot of item methods as their final | |
629 | step */ | |
630 | bool pkgAcquire::Item::Rename(string const &From,string const &To) | |
631 | { | |
632 | if (From == To || rename(From.c_str(),To.c_str()) == 0) | |
633 | return true; | |
634 | ||
635 | std::string S; | |
636 | strprintf(S, _("rename failed, %s (%s -> %s)."), strerror(errno), | |
637 | From.c_str(),To.c_str()); | |
638 | Status = StatError; | |
639 | if (ErrorText.empty()) | |
640 | ErrorText = S; | |
641 | else | |
642 | ErrorText = ErrorText + ": " + S; | |
643 | return false; | |
644 | } | |
645 | /*}}}*/ | |
646 | void pkgAcquire::Item::Dequeue() /*{{{*/ | |
647 | { | |
648 | Owner->Dequeue(this); | |
649 | } | |
650 | /*}}}*/ | |
651 | bool pkgAcquire::Item::RenameOnError(pkgAcquire::Item::RenameOnErrorState const error)/*{{{*/ | |
652 | { | |
653 | if (RealFileExists(DestFile)) | |
654 | Rename(DestFile, DestFile + ".FAILED"); | |
655 | ||
656 | std::string errtext; | |
657 | switch (error) | |
658 | { | |
659 | case HashSumMismatch: | |
660 | errtext = _("Hash Sum mismatch"); | |
661 | Status = StatAuthError; | |
662 | ReportMirrorFailure("HashChecksumFailure"); | |
663 | break; | |
664 | case SizeMismatch: | |
665 | errtext = _("Size mismatch"); | |
666 | Status = StatAuthError; | |
667 | ReportMirrorFailure("SizeFailure"); | |
668 | break; | |
669 | case InvalidFormat: | |
670 | errtext = _("Invalid file format"); | |
671 | Status = StatError; | |
672 | // do not report as usually its not the mirrors fault, but Portal/Proxy | |
673 | break; | |
674 | case SignatureError: | |
675 | errtext = _("Signature error"); | |
676 | Status = StatError; | |
677 | break; | |
678 | case NotClearsigned: | |
679 | strprintf(errtext, _("Clearsigned file isn't valid, got '%s' (does the network require authentication?)"), "NOSPLIT"); | |
680 | Status = StatAuthError; | |
681 | break; | |
682 | case MaximumSizeExceeded: | |
683 | // the method is expected to report a good error for this | |
684 | Status = StatError; | |
685 | break; | |
686 | case PDiffError: | |
687 | // no handling here, done by callers | |
688 | break; | |
689 | } | |
690 | if (ErrorText.empty()) | |
691 | ErrorText = errtext; | |
692 | return false; | |
693 | } | |
694 | /*}}}*/ | |
695 | void pkgAcquire::Item::SetActiveSubprocess(const std::string &subprocess)/*{{{*/ | |
696 | { | |
697 | ActiveSubprocess = subprocess; | |
698 | APT_IGNORE_DEPRECATED(Mode = ActiveSubprocess.c_str();) | |
699 | } | |
700 | /*}}}*/ | |
701 | // Acquire::Item::ReportMirrorFailure /*{{{*/ | |
702 | void pkgAcquire::Item::ReportMirrorFailure(string const &FailCode) | |
703 | { | |
704 | // we only act if a mirror was used at all | |
705 | if(UsedMirror.empty()) | |
706 | return; | |
707 | #if 0 | |
708 | std::cerr << "\nReportMirrorFailure: " | |
709 | << UsedMirror | |
710 | << " Uri: " << DescURI() | |
711 | << " FailCode: " | |
712 | << FailCode << std::endl; | |
713 | #endif | |
714 | string report = _config->Find("Methods::Mirror::ProblemReporting", | |
715 | "/usr/lib/apt/apt-report-mirror-failure"); | |
716 | if(!FileExists(report)) | |
717 | return; | |
718 | ||
719 | std::vector<char const*> Args; | |
720 | Args.push_back(report.c_str()); | |
721 | Args.push_back(UsedMirror.c_str()); | |
722 | Args.push_back(DescURI().c_str()); | |
723 | Args.push_back(FailCode.c_str()); | |
724 | Args.push_back(NULL); | |
725 | ||
726 | pid_t pid = ExecFork(); | |
727 | if(pid < 0) | |
728 | { | |
729 | _error->Error("ReportMirrorFailure Fork failed"); | |
730 | return; | |
731 | } | |
732 | else if(pid == 0) | |
733 | { | |
734 | execvp(Args[0], (char**)Args.data()); | |
735 | std::cerr << "Could not exec " << Args[0] << std::endl; | |
736 | _exit(100); | |
737 | } | |
738 | if(!ExecWait(pid, "report-mirror-failure")) | |
739 | { | |
740 | _error->Warning("Couldn't report problem to '%s'", | |
741 | _config->Find("Methods::Mirror::ProblemReporting").c_str()); | |
742 | } | |
743 | } | |
744 | /*}}}*/ | |
745 | std::string pkgAcquire::Item::HashSum() const /*{{{*/ | |
746 | { | |
747 | HashStringList const hashes = GetExpectedHashes(); | |
748 | HashString const * const hs = hashes.find(NULL); | |
749 | return hs != NULL ? hs->toStr() : ""; | |
750 | } | |
751 | /*}}}*/ | |
752 | ||
753 | pkgAcqTransactionItem::pkgAcqTransactionItem(pkgAcquire * const Owner, /*{{{*/ | |
754 | pkgAcqMetaClearSig * const transactionManager, IndexTarget const &target) : | |
755 | pkgAcquire::Item(Owner), d(NULL), Target(target), TransactionManager(transactionManager) | |
756 | { | |
757 | if (TransactionManager != this) | |
758 | TransactionManager->Add(this); | |
759 | } | |
760 | /*}}}*/ | |
761 | pkgAcqTransactionItem::~pkgAcqTransactionItem() /*{{{*/ | |
762 | { | |
763 | } | |
764 | /*}}}*/ | |
765 | HashStringList pkgAcqTransactionItem::GetExpectedHashesFor(std::string const &MetaKey) const /*{{{*/ | |
766 | { | |
767 | return GetExpectedHashesFromFor(TransactionManager->MetaIndexParser, MetaKey); | |
768 | } | |
769 | /*}}}*/ | |
770 | ||
771 | // AcqMetaBase - Constructor /*{{{*/ | |
772 | pkgAcqMetaBase::pkgAcqMetaBase(pkgAcquire * const Owner, | |
773 | pkgAcqMetaClearSig * const TransactionManager, | |
774 | std::vector<IndexTarget> const &IndexTargets, | |
775 | IndexTarget const &DataTarget) | |
776 | : pkgAcqTransactionItem(Owner, TransactionManager, DataTarget), d(NULL), | |
777 | IndexTargets(IndexTargets), | |
778 | AuthPass(false), IMSHit(false) | |
779 | { | |
780 | } | |
781 | /*}}}*/ | |
782 | // AcqMetaBase::Add - Add a item to the current Transaction /*{{{*/ | |
783 | void pkgAcqMetaBase::Add(pkgAcqTransactionItem * const I) | |
784 | { | |
785 | Transaction.push_back(I); | |
786 | } | |
787 | /*}}}*/ | |
788 | // AcqMetaBase::AbortTransaction - Abort the current Transaction /*{{{*/ | |
789 | void pkgAcqMetaBase::AbortTransaction() | |
790 | { | |
791 | if(_config->FindB("Debug::Acquire::Transaction", false) == true) | |
792 | std::clog << "AbortTransaction: " << TransactionManager << std::endl; | |
793 | ||
794 | // ensure the toplevel is in error state too | |
795 | for (std::vector<pkgAcqTransactionItem*>::iterator I = Transaction.begin(); | |
796 | I != Transaction.end(); ++I) | |
797 | { | |
798 | (*I)->TransactionState(TransactionAbort); | |
799 | } | |
800 | Transaction.clear(); | |
801 | } | |
802 | /*}}}*/ | |
803 | // AcqMetaBase::TransactionHasError - Check for errors in Transaction /*{{{*/ | |
804 | APT_PURE bool pkgAcqMetaBase::TransactionHasError() const | |
805 | { | |
806 | for (std::vector<pkgAcqTransactionItem*>::const_iterator I = Transaction.begin(); | |
807 | I != Transaction.end(); ++I) | |
808 | { | |
809 | switch((*I)->Status) { | |
810 | case StatDone: break; | |
811 | case StatIdle: break; | |
812 | case StatAuthError: return true; | |
813 | case StatError: return true; | |
814 | case StatTransientNetworkError: return true; | |
815 | case StatFetching: break; | |
816 | } | |
817 | } | |
818 | return false; | |
819 | } | |
820 | /*}}}*/ | |
821 | // AcqMetaBase::CommitTransaction - Commit a transaction /*{{{*/ | |
822 | void pkgAcqMetaBase::CommitTransaction() | |
823 | { | |
824 | if(_config->FindB("Debug::Acquire::Transaction", false) == true) | |
825 | std::clog << "CommitTransaction: " << this << std::endl; | |
826 | ||
827 | // move new files into place *and* remove files that are not | |
828 | // part of the transaction but are still on disk | |
829 | for (std::vector<pkgAcqTransactionItem*>::iterator I = Transaction.begin(); | |
830 | I != Transaction.end(); ++I) | |
831 | { | |
832 | (*I)->TransactionState(TransactionCommit); | |
833 | } | |
834 | Transaction.clear(); | |
835 | } | |
836 | /*}}}*/ | |
837 | // AcqMetaBase::TransactionStageCopy - Stage a file for copying /*{{{*/ | |
838 | void pkgAcqMetaBase::TransactionStageCopy(pkgAcqTransactionItem * const I, | |
839 | const std::string &From, | |
840 | const std::string &To) | |
841 | { | |
842 | I->PartialFile = From; | |
843 | I->DestFile = To; | |
844 | } | |
845 | /*}}}*/ | |
846 | // AcqMetaBase::TransactionStageRemoval - Stage a file for removal /*{{{*/ | |
847 | void pkgAcqMetaBase::TransactionStageRemoval(pkgAcqTransactionItem * const I, | |
848 | const std::string &FinalFile) | |
849 | { | |
850 | I->PartialFile = ""; | |
851 | I->DestFile = FinalFile; | |
852 | } | |
853 | /*}}}*/ | |
854 | // AcqMetaBase::GenerateAuthWarning - Check gpg authentication error /*{{{*/ | |
855 | bool pkgAcqMetaBase::CheckStopAuthentication(pkgAcquire::Item * const I, const std::string &Message) | |
856 | { | |
857 | // FIXME: this entire function can do now that we disallow going to | |
858 | // a unauthenticated state and can cleanly rollback | |
859 | ||
860 | string const Final = I->GetFinalFilename(); | |
861 | if(FileExists(Final)) | |
862 | { | |
863 | I->Status = StatTransientNetworkError; | |
864 | _error->Warning(_("An error occurred during the signature " | |
865 | "verification. The repository is not updated " | |
866 | "and the previous index files will be used. " | |
867 | "GPG error: %s: %s"), | |
868 | Desc.Description.c_str(), | |
869 | LookupTag(Message,"Message").c_str()); | |
870 | RunScripts("APT::Update::Auth-Failure"); | |
871 | return true; | |
872 | } else if (LookupTag(Message,"Message").find("NODATA") != string::npos) { | |
873 | /* Invalid signature file, reject (LP: #346386) (Closes: #627642) */ | |
874 | _error->Error(_("GPG error: %s: %s"), | |
875 | Desc.Description.c_str(), | |
876 | LookupTag(Message,"Message").c_str()); | |
877 | I->Status = StatAuthError; | |
878 | return true; | |
879 | } else { | |
880 | _error->Warning(_("GPG error: %s: %s"), | |
881 | Desc.Description.c_str(), | |
882 | LookupTag(Message,"Message").c_str()); | |
883 | } | |
884 | // gpgv method failed | |
885 | ReportMirrorFailure("GPGFailure"); | |
886 | return false; | |
887 | } | |
888 | /*}}}*/ | |
889 | // AcqMetaBase::Custom600Headers - Get header for AcqMetaBase /*{{{*/ | |
890 | // --------------------------------------------------------------------- | |
891 | string pkgAcqMetaBase::Custom600Headers() const | |
892 | { | |
893 | std::string Header = "\nIndex-File: true"; | |
894 | std::string MaximumSize; | |
895 | strprintf(MaximumSize, "\nMaximum-Size: %i", | |
896 | _config->FindI("Acquire::MaxReleaseFileSize", 10*1000*1000)); | |
897 | Header += MaximumSize; | |
898 | ||
899 | string const FinalFile = GetFinalFilename(); | |
900 | struct stat Buf; | |
901 | if (stat(FinalFile.c_str(),&Buf) == 0) | |
902 | Header += "\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); | |
903 | ||
904 | return Header; | |
905 | } | |
906 | /*}}}*/ | |
907 | // AcqMetaBase::QueueForSignatureVerify /*{{{*/ | |
908 | void pkgAcqMetaBase::QueueForSignatureVerify(pkgAcqTransactionItem * const I, std::string const &File, std::string const &Signature) | |
909 | { | |
910 | AuthPass = true; | |
911 | I->Desc.URI = "gpgv:" + Signature; | |
912 | I->DestFile = File; | |
913 | QueueURI(I->Desc); | |
914 | I->SetActiveSubprocess("gpgv"); | |
915 | } | |
916 | /*}}}*/ | |
917 | // AcqMetaBase::CheckDownloadDone /*{{{*/ | |
918 | bool pkgAcqMetaBase::CheckDownloadDone(pkgAcqTransactionItem * const I, const std::string &Message, HashStringList const &Hashes) const | |
919 | { | |
920 | // We have just finished downloading a Release file (it is not | |
921 | // verified yet) | |
922 | ||
923 | std::string const FileName = LookupTag(Message,"Filename"); | |
924 | if (FileName != I->DestFile && RealFileExists(I->DestFile) == false) | |
925 | { | |
926 | I->Local = true; | |
927 | I->Desc.URI = "copy:" + FileName; | |
928 | I->QueueURI(I->Desc); | |
929 | return false; | |
930 | } | |
931 | ||
932 | // make sure to verify against the right file on I-M-S hit | |
933 | bool IMSHit = StringToBool(LookupTag(Message,"IMS-Hit"), false); | |
934 | if (IMSHit == false && Hashes.usable()) | |
935 | { | |
936 | // detect IMS-Hits servers haven't detected by Hash comparison | |
937 | std::string const FinalFile = I->GetFinalFilename(); | |
938 | if (RealFileExists(FinalFile) && Hashes.VerifyFile(FinalFile) == true) | |
939 | { | |
940 | IMSHit = true; | |
941 | RemoveFile("CheckDownloadDone", I->DestFile); | |
942 | } | |
943 | } | |
944 | ||
945 | if(IMSHit == true) | |
946 | { | |
947 | // for simplicity, the transaction manager is always InRelease | |
948 | // even if it doesn't exist. | |
949 | if (TransactionManager != NULL) | |
950 | TransactionManager->IMSHit = true; | |
951 | I->PartialFile = I->DestFile = I->GetFinalFilename(); | |
952 | } | |
953 | ||
954 | // set Item to complete as the remaining work is all local (verify etc) | |
955 | I->Complete = true; | |
956 | ||
957 | return true; | |
958 | } | |
959 | /*}}}*/ | |
960 | bool pkgAcqMetaBase::CheckAuthDone(string const &Message) /*{{{*/ | |
961 | { | |
962 | // At this point, the gpgv method has succeeded, so there is a | |
963 | // valid signature from a key in the trusted keyring. We | |
964 | // perform additional verification of its contents, and use them | |
965 | // to verify the indexes we are about to download | |
966 | ||
967 | if (TransactionManager->IMSHit == false) | |
968 | { | |
969 | // open the last (In)Release if we have it | |
970 | std::string const FinalFile = GetFinalFilename(); | |
971 | std::string FinalRelease; | |
972 | std::string FinalInRelease; | |
973 | if (APT::String::Endswith(FinalFile, "InRelease")) | |
974 | { | |
975 | FinalInRelease = FinalFile; | |
976 | FinalRelease = FinalFile.substr(0, FinalFile.length() - strlen("InRelease")) + "Release"; | |
977 | } | |
978 | else | |
979 | { | |
980 | FinalInRelease = FinalFile.substr(0, FinalFile.length() - strlen("Release")) + "InRelease"; | |
981 | FinalRelease = FinalFile; | |
982 | } | |
983 | if (RealFileExists(FinalInRelease) || RealFileExists(FinalRelease)) | |
984 | { | |
985 | TransactionManager->LastMetaIndexParser = TransactionManager->MetaIndexParser->UnloadedClone(); | |
986 | if (TransactionManager->LastMetaIndexParser != NULL) | |
987 | { | |
988 | _error->PushToStack(); | |
989 | if (RealFileExists(FinalInRelease)) | |
990 | TransactionManager->LastMetaIndexParser->Load(FinalInRelease, NULL); | |
991 | else | |
992 | TransactionManager->LastMetaIndexParser->Load(FinalRelease, NULL); | |
993 | // its unlikely to happen, but if what we have is bad ignore it | |
994 | if (_error->PendingError()) | |
995 | { | |
996 | delete TransactionManager->LastMetaIndexParser; | |
997 | TransactionManager->LastMetaIndexParser = NULL; | |
998 | } | |
999 | _error->RevertToStack(); | |
1000 | } | |
1001 | } | |
1002 | } | |
1003 | ||
1004 | if (TransactionManager->MetaIndexParser->Load(DestFile, &ErrorText) == false) | |
1005 | { | |
1006 | Status = StatAuthError; | |
1007 | return false; | |
1008 | } | |
1009 | ||
1010 | if (!VerifyVendor(Message)) | |
1011 | { | |
1012 | Status = StatAuthError; | |
1013 | return false; | |
1014 | } | |
1015 | ||
1016 | if (_config->FindB("Debug::pkgAcquire::Auth", false)) | |
1017 | std::cerr << "Signature verification succeeded: " | |
1018 | << DestFile << std::endl; | |
1019 | ||
1020 | // Download further indexes with verification | |
1021 | QueueIndexes(true); | |
1022 | ||
1023 | return true; | |
1024 | } | |
1025 | /*}}}*/ | |
1026 | void pkgAcqMetaBase::QueueIndexes(bool const verify) /*{{{*/ | |
1027 | { | |
1028 | // at this point the real Items are loaded in the fetcher | |
1029 | ExpectedAdditionalItems = 0; | |
1030 | ||
1031 | bool metaBaseSupportsByHash = false; | |
1032 | if (TransactionManager != NULL && TransactionManager->MetaIndexParser != NULL) | |
1033 | metaBaseSupportsByHash = TransactionManager->MetaIndexParser->GetSupportsAcquireByHash(); | |
1034 | ||
1035 | for (std::vector <IndexTarget>::iterator Target = IndexTargets.begin(); | |
1036 | Target != IndexTargets.end(); | |
1037 | ++Target) | |
1038 | { | |
1039 | // all is an implementation detail. Users shouldn't use this as arch | |
1040 | // We need this support trickery here as e.g. Debian has binary-all files already, | |
1041 | // but arch:all packages are still in the arch:any files, so we would waste precious | |
1042 | // download time, bandwidth and diskspace for nothing, BUT Debian doesn't feature all | |
1043 | // in the set of supported architectures, so we can filter based on this property rather | |
1044 | // than invent an entirely new flag we would need to carry for all of eternity. | |
1045 | if (Target->Option(IndexTarget::ARCHITECTURE) == "all" && | |
1046 | TransactionManager->MetaIndexParser->IsArchitectureSupported("all") == false) | |
1047 | continue; | |
1048 | ||
1049 | bool trypdiff = Target->OptionBool(IndexTarget::PDIFFS); | |
1050 | if (verify == true) | |
1051 | { | |
1052 | if (TransactionManager->MetaIndexParser->Exists(Target->MetaKey) == false) | |
1053 | { | |
1054 | // optional targets that we do not have in the Release file are skipped | |
1055 | if (Target->IsOptional) | |
1056 | continue; | |
1057 | ||
1058 | std::string const &arch = Target->Option(IndexTarget::ARCHITECTURE); | |
1059 | if (arch.empty() == false) | |
1060 | { | |
1061 | if (TransactionManager->MetaIndexParser->IsArchitectureSupported(arch) == false) | |
1062 | { | |
1063 | _error->Notice(_("Skipping acquire of configured file '%s' as repository '%s' doesn't support architecture '%s'"), | |
1064 | Target->MetaKey.c_str(), TransactionManager->Target.Description.c_str(), arch.c_str()); | |
1065 | continue; | |
1066 | } | |
1067 | // if the architecture is officially supported but currently no packages for it available, | |
1068 | // ignore silently as this is pretty much the same as just shipping an empty file. | |
1069 | // if we don't know which architectures are supported, we do NOT ignore it to notify user about this | |
1070 | if (TransactionManager->MetaIndexParser->IsArchitectureSupported("*undefined*") == false) | |
1071 | continue; | |
1072 | } | |
1073 | ||
1074 | Status = StatAuthError; | |
1075 | strprintf(ErrorText, _("Unable to find expected entry '%s' in Release file (Wrong sources.list entry or malformed file)"), Target->MetaKey.c_str()); | |
1076 | return; | |
1077 | } | |
1078 | ||
1079 | // autoselect the compression method | |
1080 | std::vector<std::string> types = VectorizeString(Target->Option(IndexTarget::COMPRESSIONTYPES), ' '); | |
1081 | types.erase(std::remove_if(types.begin(), types.end(), [&](std::string const &t) { | |
1082 | if (t == "uncompressed") | |
1083 | return TransactionManager->MetaIndexParser->Exists(Target->MetaKey) == false; | |
1084 | std::string const MetaKey = Target->MetaKey + "." + t; | |
1085 | return TransactionManager->MetaIndexParser->Exists(MetaKey) == false; | |
1086 | }), types.end()); | |
1087 | if (types.empty() == false) | |
1088 | { | |
1089 | std::ostringstream os; | |
1090 | // add the special compressiontype byhash first if supported | |
1091 | std::string const useByHashConf = Target->Option(IndexTarget::BY_HASH); | |
1092 | bool useByHash = false; | |
1093 | if(useByHashConf == "force") | |
1094 | useByHash = true; | |
1095 | else | |
1096 | useByHash = StringToBool(useByHashConf) == true && metaBaseSupportsByHash; | |
1097 | if (useByHash == true) | |
1098 | os << "by-hash "; | |
1099 | std::copy(types.begin(), types.end()-1, std::ostream_iterator<std::string>(os, " ")); | |
1100 | os << *types.rbegin(); | |
1101 | Target->Options["COMPRESSIONTYPES"] = os.str(); | |
1102 | } | |
1103 | else | |
1104 | Target->Options["COMPRESSIONTYPES"].clear(); | |
1105 | ||
1106 | std::string filename = GetFinalFileNameFromURI(Target->URI); | |
1107 | if (RealFileExists(filename) == false) | |
1108 | { | |
1109 | if (Target->KeepCompressed) | |
1110 | { | |
1111 | filename = GetKeepCompressedFileName(filename, *Target); | |
1112 | if (RealFileExists(filename) == false) | |
1113 | filename.clear(); | |
1114 | } | |
1115 | else | |
1116 | filename.clear(); | |
1117 | } | |
1118 | ||
1119 | if (filename.empty() == false) | |
1120 | { | |
1121 | // if the Release file is a hit and we have an index it must be the current one | |
1122 | if (TransactionManager->IMSHit == true) | |
1123 | ; | |
1124 | else if (TransactionManager->LastMetaIndexParser != NULL) | |
1125 | { | |
1126 | // see if the file changed since the last Release file | |
1127 | // we use the uncompressed files as we might compress differently compared to the server, | |
1128 | // so the hashes might not match, even if they contain the same data. | |
1129 | HashStringList const newFile = GetExpectedHashesFromFor(TransactionManager->MetaIndexParser, Target->MetaKey); | |
1130 | HashStringList const oldFile = GetExpectedHashesFromFor(TransactionManager->LastMetaIndexParser, Target->MetaKey); | |
1131 | if (newFile != oldFile) | |
1132 | filename.clear(); | |
1133 | } | |
1134 | else | |
1135 | filename.clear(); | |
1136 | } | |
1137 | else | |
1138 | trypdiff = false; // no file to patch | |
1139 | ||
1140 | if (filename.empty() == false) | |
1141 | { | |
1142 | new NoActionItem(Owner, *Target, filename); | |
1143 | std::string const idxfilename = GetFinalFileNameFromURI(Target->URI + ".diff/Index"); | |
1144 | if (FileExists(idxfilename)) | |
1145 | new NoActionItem(Owner, *Target, idxfilename); | |
1146 | continue; | |
1147 | } | |
1148 | ||
1149 | // check if we have patches available | |
1150 | trypdiff &= TransactionManager->MetaIndexParser->Exists(Target->MetaKey + ".diff/Index"); | |
1151 | } | |
1152 | else | |
1153 | { | |
1154 | // if we have no file to patch, no point in trying | |
1155 | std::string filename = GetFinalFileNameFromURI(Target->URI); | |
1156 | if (RealFileExists(filename) == false) | |
1157 | { | |
1158 | if (Target->KeepCompressed) | |
1159 | { | |
1160 | filename = GetKeepCompressedFileName(filename, *Target); | |
1161 | if (RealFileExists(filename) == false) | |
1162 | filename.clear(); | |
1163 | } | |
1164 | else | |
1165 | filename.clear(); | |
1166 | } | |
1167 | trypdiff &= (filename.empty() == false); | |
1168 | } | |
1169 | ||
1170 | // no point in patching from local sources | |
1171 | if (trypdiff) | |
1172 | { | |
1173 | std::string const proto = Target->URI.substr(0, strlen("file:/")); | |
1174 | if (proto == "file:/" || proto == "copy:/" || proto == "cdrom:") | |
1175 | trypdiff = false; | |
1176 | } | |
1177 | ||
1178 | // Queue the Index file (Packages, Sources, Translation-$foo, …) | |
1179 | if (trypdiff) | |
1180 | new pkgAcqDiffIndex(Owner, TransactionManager, *Target); | |
1181 | else | |
1182 | new pkgAcqIndex(Owner, TransactionManager, *Target); | |
1183 | } | |
1184 | } | |
1185 | /*}}}*/ | |
1186 | bool pkgAcqMetaBase::VerifyVendor(string const &Message) /*{{{*/ | |
1187 | { | |
1188 | string::size_type pos; | |
1189 | ||
1190 | // check for missing sigs (that where not fatal because otherwise we had | |
1191 | // bombed earlier) | |
1192 | string missingkeys; | |
1193 | string msg = _("There is no public key available for the " | |
1194 | "following key IDs:\n"); | |
1195 | pos = Message.find("NO_PUBKEY "); | |
1196 | if (pos != std::string::npos) | |
1197 | { | |
1198 | string::size_type start = pos+strlen("NO_PUBKEY "); | |
1199 | string Fingerprint = Message.substr(start, Message.find("\n")-start); | |
1200 | missingkeys += (Fingerprint); | |
1201 | } | |
1202 | if(!missingkeys.empty()) | |
1203 | _error->Warning("%s", (msg + missingkeys).c_str()); | |
1204 | ||
1205 | string Transformed = TransactionManager->MetaIndexParser->GetExpectedDist(); | |
1206 | ||
1207 | if (Transformed == "../project/experimental") | |
1208 | { | |
1209 | Transformed = "experimental"; | |
1210 | } | |
1211 | ||
1212 | pos = Transformed.rfind('/'); | |
1213 | if (pos != string::npos) | |
1214 | { | |
1215 | Transformed = Transformed.substr(0, pos); | |
1216 | } | |
1217 | ||
1218 | if (Transformed == ".") | |
1219 | { | |
1220 | Transformed = ""; | |
1221 | } | |
1222 | ||
1223 | if (TransactionManager->MetaIndexParser->GetValidUntil() > 0) | |
1224 | { | |
1225 | time_t const invalid_since = time(NULL) - TransactionManager->MetaIndexParser->GetValidUntil(); | |
1226 | if (invalid_since > 0) | |
1227 | { | |
1228 | std::string errmsg; | |
1229 | strprintf(errmsg, | |
1230 | // TRANSLATOR: The first %s is the URL of the bad Release file, the second is | |
1231 | // the time since then the file is invalid - formatted in the same way as in | |
1232 | // the download progress display (e.g. 7d 3h 42min 1s) | |
1233 | _("Release file for %s is expired (invalid since %s). " | |
1234 | "Updates for this repository will not be applied."), | |
1235 | Target.URI.c_str(), TimeToStr(invalid_since).c_str()); | |
1236 | if (ErrorText.empty()) | |
1237 | ErrorText = errmsg; | |
1238 | return _error->Error("%s", errmsg.c_str()); | |
1239 | } | |
1240 | } | |
1241 | ||
1242 | /* Did we get a file older than what we have? This is a last minute IMS hit and doubles | |
1243 | as a prevention of downgrading us to older (still valid) files */ | |
1244 | if (TransactionManager->IMSHit == false && TransactionManager->LastMetaIndexParser != NULL && | |
1245 | TransactionManager->LastMetaIndexParser->GetDate() > TransactionManager->MetaIndexParser->GetDate()) | |
1246 | { | |
1247 | TransactionManager->IMSHit = true; | |
1248 | RemoveFile("VerifyVendor", DestFile); | |
1249 | PartialFile = DestFile = GetFinalFilename(); | |
1250 | // load the 'old' file in the 'new' one instead of flipping pointers as | |
1251 | // the new one isn't owned by us, while the old one is so cleanup would be confused. | |
1252 | TransactionManager->MetaIndexParser->swapLoad(TransactionManager->LastMetaIndexParser); | |
1253 | delete TransactionManager->LastMetaIndexParser; | |
1254 | TransactionManager->LastMetaIndexParser = NULL; | |
1255 | } | |
1256 | ||
1257 | if (_config->FindB("Debug::pkgAcquire::Auth", false)) | |
1258 | { | |
1259 | std::cerr << "Got Codename: " << TransactionManager->MetaIndexParser->GetCodename() << std::endl; | |
1260 | std::cerr << "Expecting Dist: " << TransactionManager->MetaIndexParser->GetExpectedDist() << std::endl; | |
1261 | std::cerr << "Transformed Dist: " << Transformed << std::endl; | |
1262 | } | |
1263 | ||
1264 | if (TransactionManager->MetaIndexParser->CheckDist(Transformed) == false) | |
1265 | { | |
1266 | // This might become fatal one day | |
1267 | // Status = StatAuthError; | |
1268 | // ErrorText = "Conflicting distribution; expected " | |
1269 | // + MetaIndexParser->GetExpectedDist() + " but got " | |
1270 | // + MetaIndexParser->GetCodename(); | |
1271 | // return false; | |
1272 | if (!Transformed.empty()) | |
1273 | { | |
1274 | _error->Warning(_("Conflicting distribution: %s (expected %s but got %s)"), | |
1275 | Desc.Description.c_str(), | |
1276 | Transformed.c_str(), | |
1277 | TransactionManager->MetaIndexParser->GetCodename().c_str()); | |
1278 | } | |
1279 | } | |
1280 | ||
1281 | return true; | |
1282 | } | |
1283 | /*}}}*/ | |
1284 | pkgAcqMetaBase::~pkgAcqMetaBase() | |
1285 | { | |
1286 | } | |
1287 | ||
1288 | pkgAcqMetaClearSig::pkgAcqMetaClearSig(pkgAcquire * const Owner, /*{{{*/ | |
1289 | IndexTarget const &ClearsignedTarget, | |
1290 | IndexTarget const &DetachedDataTarget, IndexTarget const &DetachedSigTarget, | |
1291 | std::vector<IndexTarget> const &IndexTargets, | |
1292 | metaIndex * const MetaIndexParser) : | |
1293 | pkgAcqMetaIndex(Owner, this, ClearsignedTarget, DetachedSigTarget, IndexTargets), | |
1294 | d(NULL), ClearsignedTarget(ClearsignedTarget), | |
1295 | DetachedDataTarget(DetachedDataTarget), | |
1296 | MetaIndexParser(MetaIndexParser), LastMetaIndexParser(NULL) | |
1297 | { | |
1298 | // index targets + (worst case:) Release/Release.gpg | |
1299 | ExpectedAdditionalItems = IndexTargets.size() + 2; | |
1300 | TransactionManager->Add(this); | |
1301 | } | |
1302 | /*}}}*/ | |
1303 | pkgAcqMetaClearSig::~pkgAcqMetaClearSig() /*{{{*/ | |
1304 | { | |
1305 | if (LastMetaIndexParser != NULL) | |
1306 | delete LastMetaIndexParser; | |
1307 | } | |
1308 | /*}}}*/ | |
1309 | // pkgAcqMetaClearSig::Custom600Headers - Insert custom request headers /*{{{*/ | |
1310 | string pkgAcqMetaClearSig::Custom600Headers() const | |
1311 | { | |
1312 | string Header = pkgAcqMetaBase::Custom600Headers(); | |
1313 | Header += "\nFail-Ignore: true"; | |
1314 | std::string const key = TransactionManager->MetaIndexParser->GetSignedBy(); | |
1315 | if (key.empty() == false) | |
1316 | Header += "\nSigned-By: " + key; | |
1317 | ||
1318 | return Header; | |
1319 | } | |
1320 | /*}}}*/ | |
1321 | bool pkgAcqMetaClearSig::VerifyDone(std::string const &Message, /*{{{*/ | |
1322 | pkgAcquire::MethodConfig const * const Cnf) | |
1323 | { | |
1324 | Item::VerifyDone(Message, Cnf); | |
1325 | ||
1326 | if (FileExists(DestFile) && !StartsWithGPGClearTextSignature(DestFile)) | |
1327 | return RenameOnError(NotClearsigned); | |
1328 | ||
1329 | return true; | |
1330 | } | |
1331 | /*}}}*/ | |
1332 | // pkgAcqMetaClearSig::Done - We got a file /*{{{*/ | |
1333 | void pkgAcqMetaClearSig::Done(std::string const &Message, | |
1334 | HashStringList const &Hashes, | |
1335 | pkgAcquire::MethodConfig const * const Cnf) | |
1336 | { | |
1337 | Item::Done(Message, Hashes, Cnf); | |
1338 | ||
1339 | if(AuthPass == false) | |
1340 | { | |
1341 | if(CheckDownloadDone(this, Message, Hashes) == true) | |
1342 | QueueForSignatureVerify(this, DestFile, DestFile); | |
1343 | return; | |
1344 | } | |
1345 | else if(CheckAuthDone(Message) == true) | |
1346 | { | |
1347 | if (TransactionManager->IMSHit == false) | |
1348 | TransactionManager->TransactionStageCopy(this, DestFile, GetFinalFilename()); | |
1349 | else if (RealFileExists(GetFinalFilename()) == false) | |
1350 | { | |
1351 | // We got an InRelease file IMSHit, but we haven't one, which means | |
1352 | // we had a valid Release/Release.gpg combo stepping in, which we have | |
1353 | // to 'acquire' now to ensure list cleanup isn't removing them | |
1354 | new NoActionItem(Owner, DetachedDataTarget); | |
1355 | new NoActionItem(Owner, DetachedSigTarget); | |
1356 | } | |
1357 | } | |
1358 | } | |
1359 | /*}}}*/ | |
1360 | void pkgAcqMetaClearSig::Failed(string const &Message,pkgAcquire::MethodConfig const * const Cnf) /*{{{*/ | |
1361 | { | |
1362 | Item::Failed(Message, Cnf); | |
1363 | ||
1364 | // we failed, we will not get additional items from this method | |
1365 | ExpectedAdditionalItems = 0; | |
1366 | ||
1367 | if (AuthPass == false) | |
1368 | { | |
1369 | if (Status == StatAuthError || Status == StatTransientNetworkError) | |
1370 | { | |
1371 | // if we expected a ClearTextSignature (InRelease) but got a network | |
1372 | // error or got a file, but it wasn't valid, we end up here (see VerifyDone). | |
1373 | // As these is usually called by web-portals we do not try Release/Release.gpg | |
1374 | // as this is gonna fail anyway and instead abort our try (LP#346386) | |
1375 | TransactionManager->AbortTransaction(); | |
1376 | return; | |
1377 | } | |
1378 | ||
1379 | // Queue the 'old' InRelease file for removal if we try Release.gpg | |
1380 | // as otherwise the file will stay around and gives a false-auth | |
1381 | // impression (CVE-2012-0214) | |
1382 | TransactionManager->TransactionStageRemoval(this, GetFinalFilename()); | |
1383 | Status = StatDone; | |
1384 | ||
1385 | new pkgAcqMetaIndex(Owner, TransactionManager, DetachedDataTarget, DetachedSigTarget, IndexTargets); | |
1386 | } | |
1387 | else | |
1388 | { | |
1389 | if(CheckStopAuthentication(this, Message)) | |
1390 | return; | |
1391 | ||
1392 | // No Release file was present, or verification failed, so fall | |
1393 | // back to queueing Packages files without verification | |
1394 | // only allow going further if the users explicitely wants it | |
1395 | if(AllowInsecureRepositories(_("The repository '%s' is not signed."), ClearsignedTarget.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true) | |
1396 | { | |
1397 | Status = StatDone; | |
1398 | ||
1399 | /* InRelease files become Release files, otherwise | |
1400 | * they would be considered as trusted later on */ | |
1401 | string const FinalRelease = GetFinalFileNameFromURI(DetachedDataTarget.URI); | |
1402 | string const PartialRelease = GetPartialFileNameFromURI(DetachedDataTarget.URI); | |
1403 | string const FinalReleasegpg = GetFinalFileNameFromURI(DetachedSigTarget.URI); | |
1404 | string const FinalInRelease = GetFinalFilename(); | |
1405 | Rename(DestFile, PartialRelease); | |
1406 | TransactionManager->TransactionStageCopy(this, PartialRelease, FinalRelease); | |
1407 | ||
1408 | if (RealFileExists(FinalReleasegpg) || RealFileExists(FinalInRelease)) | |
1409 | { | |
1410 | // open the last Release if we have it | |
1411 | if (TransactionManager->IMSHit == false) | |
1412 | { | |
1413 | TransactionManager->LastMetaIndexParser = TransactionManager->MetaIndexParser->UnloadedClone(); | |
1414 | if (TransactionManager->LastMetaIndexParser != NULL) | |
1415 | { | |
1416 | _error->PushToStack(); | |
1417 | if (RealFileExists(FinalInRelease)) | |
1418 | TransactionManager->LastMetaIndexParser->Load(FinalInRelease, NULL); | |
1419 | else | |
1420 | TransactionManager->LastMetaIndexParser->Load(FinalRelease, NULL); | |
1421 | // its unlikely to happen, but if what we have is bad ignore it | |
1422 | if (_error->PendingError()) | |
1423 | { | |
1424 | delete TransactionManager->LastMetaIndexParser; | |
1425 | TransactionManager->LastMetaIndexParser = NULL; | |
1426 | } | |
1427 | _error->RevertToStack(); | |
1428 | } | |
1429 | } | |
1430 | } | |
1431 | ||
1432 | // we parse the indexes here because at this point the user wanted | |
1433 | // a repository that may potentially harm him | |
1434 | if (TransactionManager->MetaIndexParser->Load(PartialRelease, &ErrorText) == false || VerifyVendor(Message) == false) | |
1435 | /* expired Release files are still a problem you need extra force for */; | |
1436 | else | |
1437 | QueueIndexes(true); | |
1438 | } | |
1439 | } | |
1440 | } | |
1441 | /*}}}*/ | |
1442 | ||
1443 | pkgAcqMetaIndex::pkgAcqMetaIndex(pkgAcquire * const Owner, /*{{{*/ | |
1444 | pkgAcqMetaClearSig * const TransactionManager, | |
1445 | IndexTarget const &DataTarget, | |
1446 | IndexTarget const &DetachedSigTarget, | |
1447 | vector<IndexTarget> const &IndexTargets) : | |
1448 | pkgAcqMetaBase(Owner, TransactionManager, IndexTargets, DataTarget), d(NULL), | |
1449 | DetachedSigTarget(DetachedSigTarget) | |
1450 | { | |
1451 | if(_config->FindB("Debug::Acquire::Transaction", false) == true) | |
1452 | std::clog << "New pkgAcqMetaIndex with TransactionManager " | |
1453 | << this->TransactionManager << std::endl; | |
1454 | ||
1455 | DestFile = GetPartialFileNameFromURI(DataTarget.URI); | |
1456 | ||
1457 | // Create the item | |
1458 | Desc.Description = DataTarget.Description; | |
1459 | Desc.Owner = this; | |
1460 | Desc.ShortDesc = DataTarget.ShortDesc; | |
1461 | Desc.URI = DataTarget.URI; | |
1462 | ||
1463 | // we expect more item | |
1464 | ExpectedAdditionalItems = IndexTargets.size(); | |
1465 | QueueURI(Desc); | |
1466 | } | |
1467 | /*}}}*/ | |
1468 | void pkgAcqMetaIndex::Done(string const &Message, /*{{{*/ | |
1469 | HashStringList const &Hashes, | |
1470 | pkgAcquire::MethodConfig const * const Cfg) | |
1471 | { | |
1472 | Item::Done(Message,Hashes,Cfg); | |
1473 | ||
1474 | if(CheckDownloadDone(this, Message, Hashes)) | |
1475 | { | |
1476 | // we have a Release file, now download the Signature, all further | |
1477 | // verify/queue for additional downloads will be done in the | |
1478 | // pkgAcqMetaSig::Done() code | |
1479 | new pkgAcqMetaSig(Owner, TransactionManager, DetachedSigTarget, this); | |
1480 | } | |
1481 | } | |
1482 | /*}}}*/ | |
1483 | // pkgAcqMetaIndex::Failed - no Release file present /*{{{*/ | |
1484 | void pkgAcqMetaIndex::Failed(string const &Message, | |
1485 | pkgAcquire::MethodConfig const * const Cnf) | |
1486 | { | |
1487 | pkgAcquire::Item::Failed(Message, Cnf); | |
1488 | Status = StatDone; | |
1489 | ||
1490 | // No Release file was present so fall | |
1491 | // back to queueing Packages files without verification | |
1492 | // only allow going further if the users explicitely wants it | |
1493 | if(AllowInsecureRepositories(_("The repository '%s' does not have a Release file."), Target.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true) | |
1494 | { | |
1495 | // ensure old Release files are removed | |
1496 | TransactionManager->TransactionStageRemoval(this, GetFinalFilename()); | |
1497 | ||
1498 | // queue without any kind of hashsum support | |
1499 | QueueIndexes(false); | |
1500 | } | |
1501 | } | |
1502 | /*}}}*/ | |
1503 | void pkgAcqMetaIndex::Finished() /*{{{*/ | |
1504 | { | |
1505 | if(_config->FindB("Debug::Acquire::Transaction", false) == true) | |
1506 | std::clog << "Finished: " << DestFile <<std::endl; | |
1507 | if(TransactionManager != NULL && | |
1508 | TransactionManager->TransactionHasError() == false) | |
1509 | TransactionManager->CommitTransaction(); | |
1510 | } | |
1511 | /*}}}*/ | |
1512 | std::string pkgAcqMetaIndex::DescURI() const /*{{{*/ | |
1513 | { | |
1514 | return Target.URI; | |
1515 | } | |
1516 | /*}}}*/ | |
1517 | pkgAcqMetaIndex::~pkgAcqMetaIndex() {} | |
1518 | ||
1519 | // AcqMetaSig::AcqMetaSig - Constructor /*{{{*/ | |
1520 | pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire * const Owner, | |
1521 | pkgAcqMetaClearSig * const TransactionManager, | |
1522 | IndexTarget const &Target, | |
1523 | pkgAcqMetaIndex * const MetaIndex) : | |
1524 | pkgAcqTransactionItem(Owner, TransactionManager, Target), d(NULL), MetaIndex(MetaIndex) | |
1525 | { | |
1526 | DestFile = GetPartialFileNameFromURI(Target.URI); | |
1527 | ||
1528 | // remove any partial downloaded sig-file in partial/. | |
1529 | // it may confuse proxies and is too small to warrant a | |
1530 | // partial download anyway | |
1531 | RemoveFile("pkgAcqMetaSig", DestFile); | |
1532 | ||
1533 | // set the TransactionManager | |
1534 | if(_config->FindB("Debug::Acquire::Transaction", false) == true) | |
1535 | std::clog << "New pkgAcqMetaSig with TransactionManager " | |
1536 | << TransactionManager << std::endl; | |
1537 | ||
1538 | // Create the item | |
1539 | Desc.Description = Target.Description; | |
1540 | Desc.Owner = this; | |
1541 | Desc.ShortDesc = Target.ShortDesc; | |
1542 | Desc.URI = Target.URI; | |
1543 | ||
1544 | // If we got a hit for Release, we will get one for Release.gpg too (or obscure errors), | |
1545 | // so we skip the download step and go instantly to verification | |
1546 | if (TransactionManager->IMSHit == true && RealFileExists(GetFinalFilename())) | |
1547 | { | |
1548 | Complete = true; | |
1549 | Status = StatDone; | |
1550 | PartialFile = DestFile = GetFinalFilename(); | |
1551 | MetaIndexFileSignature = DestFile; | |
1552 | MetaIndex->QueueForSignatureVerify(this, MetaIndex->DestFile, DestFile); | |
1553 | } | |
1554 | else | |
1555 | QueueURI(Desc); | |
1556 | } | |
1557 | /*}}}*/ | |
1558 | pkgAcqMetaSig::~pkgAcqMetaSig() /*{{{*/ | |
1559 | { | |
1560 | } | |
1561 | /*}}}*/ | |
1562 | // pkgAcqMetaSig::Custom600Headers - Insert custom request headers /*{{{*/ | |
1563 | std::string pkgAcqMetaSig::Custom600Headers() const | |
1564 | { | |
1565 | std::string Header = pkgAcqTransactionItem::Custom600Headers(); | |
1566 | std::string const key = TransactionManager->MetaIndexParser->GetSignedBy(); | |
1567 | if (key.empty() == false) | |
1568 | Header += "\nSigned-By: " + key; | |
1569 | return Header; | |
1570 | } | |
1571 | /*}}}*/ | |
1572 | // AcqMetaSig::Done - The signature was downloaded/verified /*{{{*/ | |
1573 | void pkgAcqMetaSig::Done(string const &Message, HashStringList const &Hashes, | |
1574 | pkgAcquire::MethodConfig const * const Cfg) | |
1575 | { | |
1576 | if (MetaIndexFileSignature.empty() == false) | |
1577 | { | |
1578 | DestFile = MetaIndexFileSignature; | |
1579 | MetaIndexFileSignature.clear(); | |
1580 | } | |
1581 | Item::Done(Message, Hashes, Cfg); | |
1582 | ||
1583 | if(MetaIndex->AuthPass == false) | |
1584 | { | |
1585 | if(MetaIndex->CheckDownloadDone(this, Message, Hashes) == true) | |
1586 | { | |
1587 | // destfile will be modified to point to MetaIndexFile for the | |
1588 | // gpgv method, so we need to save it here | |
1589 | MetaIndexFileSignature = DestFile; | |
1590 | MetaIndex->QueueForSignatureVerify(this, MetaIndex->DestFile, DestFile); | |
1591 | } | |
1592 | return; | |
1593 | } | |
1594 | else if(MetaIndex->CheckAuthDone(Message) == true) | |
1595 | { | |
1596 | if (TransactionManager->IMSHit == false) | |
1597 | { | |
1598 | TransactionManager->TransactionStageCopy(this, DestFile, GetFinalFilename()); | |
1599 | TransactionManager->TransactionStageCopy(MetaIndex, MetaIndex->DestFile, MetaIndex->GetFinalFilename()); | |
1600 | } | |
1601 | } | |
1602 | } | |
1603 | /*}}}*/ | |
1604 | void pkgAcqMetaSig::Failed(string const &Message,pkgAcquire::MethodConfig const * const Cnf)/*{{{*/ | |
1605 | { | |
1606 | Item::Failed(Message,Cnf); | |
1607 | ||
1608 | // check if we need to fail at this point | |
1609 | if (MetaIndex->AuthPass == true && MetaIndex->CheckStopAuthentication(this, Message)) | |
1610 | return; | |
1611 | ||
1612 | string const FinalRelease = MetaIndex->GetFinalFilename(); | |
1613 | string const FinalReleasegpg = GetFinalFilename(); | |
1614 | string const FinalInRelease = TransactionManager->GetFinalFilename(); | |
1615 | ||
1616 | if (RealFileExists(FinalReleasegpg) || RealFileExists(FinalInRelease)) | |
1617 | { | |
1618 | std::string downgrade_msg; | |
1619 | strprintf(downgrade_msg, _("The repository '%s' is no longer signed."), | |
1620 | MetaIndex->Target.Description.c_str()); | |
1621 | if(_config->FindB("Acquire::AllowDowngradeToInsecureRepositories")) | |
1622 | { | |
1623 | // meh, the users wants to take risks (we still mark the packages | |
1624 | // from this repository as unauthenticated) | |
1625 | _error->Warning("%s", downgrade_msg.c_str()); | |
1626 | _error->Warning(_("This is normally not allowed, but the option " | |
1627 | "Acquire::AllowDowngradeToInsecureRepositories was " | |
1628 | "given to override it.")); | |
1629 | Status = StatDone; | |
1630 | } else { | |
1631 | MessageInsecureRepository(true, downgrade_msg); | |
1632 | if (TransactionManager->IMSHit == false) | |
1633 | Rename(MetaIndex->DestFile, MetaIndex->DestFile + ".FAILED"); | |
1634 | Item::Failed("Message: " + downgrade_msg, Cnf); | |
1635 | TransactionManager->AbortTransaction(); | |
1636 | return; | |
1637 | } | |
1638 | } | |
1639 | ||
1640 | // ensures that a Release.gpg file in the lists/ is removed by the transaction | |
1641 | TransactionManager->TransactionStageRemoval(this, DestFile); | |
1642 | ||
1643 | // only allow going further if the users explicitely wants it | |
1644 | if (AllowInsecureRepositories(_("The repository '%s' is not signed."), MetaIndex->Target.Description, TransactionManager->MetaIndexParser, TransactionManager, this) == true) | |
1645 | { | |
1646 | if (RealFileExists(FinalReleasegpg) || RealFileExists(FinalInRelease)) | |
1647 | { | |
1648 | // open the last Release if we have it | |
1649 | if (TransactionManager->IMSHit == false) | |
1650 | { | |
1651 | TransactionManager->LastMetaIndexParser = TransactionManager->MetaIndexParser->UnloadedClone(); | |
1652 | if (TransactionManager->LastMetaIndexParser != NULL) | |
1653 | { | |
1654 | _error->PushToStack(); | |
1655 | if (RealFileExists(FinalInRelease)) | |
1656 | TransactionManager->LastMetaIndexParser->Load(FinalInRelease, NULL); | |
1657 | else | |
1658 | TransactionManager->LastMetaIndexParser->Load(FinalRelease, NULL); | |
1659 | // its unlikely to happen, but if what we have is bad ignore it | |
1660 | if (_error->PendingError()) | |
1661 | { | |
1662 | delete TransactionManager->LastMetaIndexParser; | |
1663 | TransactionManager->LastMetaIndexParser = NULL; | |
1664 | } | |
1665 | _error->RevertToStack(); | |
1666 | } | |
1667 | } | |
1668 | } | |
1669 | ||
1670 | // we parse the indexes here because at this point the user wanted | |
1671 | // a repository that may potentially harm him | |
1672 | bool const GoodLoad = TransactionManager->MetaIndexParser->Load(MetaIndex->DestFile, &ErrorText); | |
1673 | if (MetaIndex->VerifyVendor(Message) == false) | |
1674 | /* expired Release files are still a problem you need extra force for */; | |
1675 | else | |
1676 | MetaIndex->QueueIndexes(GoodLoad); | |
1677 | ||
1678 | TransactionManager->TransactionStageCopy(MetaIndex, MetaIndex->DestFile, MetaIndex->GetFinalFilename()); | |
1679 | } | |
1680 | ||
1681 | // FIXME: this is used often (e.g. in pkgAcqIndexTrans) so refactor | |
1682 | if (Cnf->LocalOnly == true || | |
1683 | StringToBool(LookupTag(Message,"Transient-Failure"),false) == false) | |
1684 | { | |
1685 | // Ignore this | |
1686 | Status = StatDone; | |
1687 | } | |
1688 | } | |
1689 | /*}}}*/ | |
1690 | ||
1691 | ||
1692 | // AcqBaseIndex - Constructor /*{{{*/ | |
1693 | pkgAcqBaseIndex::pkgAcqBaseIndex(pkgAcquire * const Owner, | |
1694 | pkgAcqMetaClearSig * const TransactionManager, | |
1695 | IndexTarget const &Target) | |
1696 | : pkgAcqTransactionItem(Owner, TransactionManager, Target), d(NULL) | |
1697 | { | |
1698 | } | |
1699 | /*}}}*/ | |
1700 | pkgAcqBaseIndex::~pkgAcqBaseIndex() {} | |
1701 | ||
1702 | // AcqDiffIndex::AcqDiffIndex - Constructor /*{{{*/ | |
1703 | // --------------------------------------------------------------------- | |
1704 | /* Get the DiffIndex file first and see if there are patches available | |
1705 | * If so, create a pkgAcqIndexDiffs fetcher that will get and apply the | |
1706 | * patches. If anything goes wrong in that process, it will fall back to | |
1707 | * the original packages file | |
1708 | */ | |
1709 | pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire * const Owner, | |
1710 | pkgAcqMetaClearSig * const TransactionManager, | |
1711 | IndexTarget const &Target) | |
1712 | : pkgAcqBaseIndex(Owner, TransactionManager, Target), d(NULL), diffs(NULL) | |
1713 | { | |
1714 | Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); | |
1715 | ||
1716 | Desc.Owner = this; | |
1717 | Desc.Description = Target.Description + ".diff/Index"; | |
1718 | Desc.ShortDesc = Target.ShortDesc; | |
1719 | Desc.URI = Target.URI + ".diff/Index"; | |
1720 | ||
1721 | DestFile = GetPartialFileNameFromURI(Desc.URI); | |
1722 | ||
1723 | if(Debug) | |
1724 | std::clog << "pkgAcqDiffIndex: " << Desc.URI << std::endl; | |
1725 | ||
1726 | QueueURI(Desc); | |
1727 | } | |
1728 | /*}}}*/ | |
1729 | // AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/ | |
1730 | // --------------------------------------------------------------------- | |
1731 | /* The only header we use is the last-modified header. */ | |
1732 | string pkgAcqDiffIndex::Custom600Headers() const | |
1733 | { | |
1734 | string const Final = GetFinalFilename(); | |
1735 | ||
1736 | if(Debug) | |
1737 | std::clog << "Custom600Header-IMS: " << Final << std::endl; | |
1738 | ||
1739 | struct stat Buf; | |
1740 | if (stat(Final.c_str(),&Buf) != 0) | |
1741 | return "\nIndex-File: true"; | |
1742 | ||
1743 | return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); | |
1744 | } | |
1745 | /*}}}*/ | |
1746 | void pkgAcqDiffIndex::QueueOnIMSHit() const /*{{{*/ | |
1747 | { | |
1748 | // list cleanup needs to know that this file as well as the already | |
1749 | // present index is ours, so we create an empty diff to save it for us | |
1750 | new pkgAcqIndexDiffs(Owner, TransactionManager, Target); | |
1751 | } | |
1752 | /*}}}*/ | |
1753 | bool pkgAcqDiffIndex::ParseDiffIndex(string const &IndexDiffFile) /*{{{*/ | |
1754 | { | |
1755 | // failing here is fine: our caller will take care of trying to | |
1756 | // get the complete file if patching fails | |
1757 | if(Debug) | |
1758 | std::clog << "pkgAcqDiffIndex::ParseIndexDiff() " << IndexDiffFile | |
1759 | << std::endl; | |
1760 | ||
1761 | FileFd Fd(IndexDiffFile,FileFd::ReadOnly); | |
1762 | pkgTagFile TF(&Fd); | |
1763 | if (Fd.IsOpen() == false || Fd.Failed()) | |
1764 | return false; | |
1765 | ||
1766 | pkgTagSection Tags; | |
1767 | if(unlikely(TF.Step(Tags) == false)) | |
1768 | return false; | |
1769 | ||
1770 | HashStringList ServerHashes; | |
1771 | unsigned long long ServerSize = 0; | |
1772 | ||
1773 | for (char const * const * type = HashString::SupportedHashes(); *type != NULL; ++type) | |
1774 | { | |
1775 | std::string tagname = *type; | |
1776 | tagname.append("-Current"); | |
1777 | std::string const tmp = Tags.FindS(tagname.c_str()); | |
1778 | if (tmp.empty() == true) | |
1779 | continue; | |
1780 | ||
1781 | string hash; | |
1782 | unsigned long long size; | |
1783 | std::stringstream ss(tmp); | |
1784 | ss >> hash >> size; | |
1785 | if (unlikely(hash.empty() == true)) | |
1786 | continue; | |
1787 | if (unlikely(ServerSize != 0 && ServerSize != size)) | |
1788 | continue; | |
1789 | ServerHashes.push_back(HashString(*type, hash)); | |
1790 | ServerSize = size; | |
1791 | } | |
1792 | ||
1793 | if (ServerHashes.usable() == false) | |
1794 | { | |
1795 | if (Debug == true) | |
1796 | std::clog << "pkgAcqDiffIndex: " << IndexDiffFile << ": Did not find a good hashsum in the index" << std::endl; | |
1797 | return false; | |
1798 | } | |
1799 | ||
1800 | std::string const CurrentPackagesFile = GetFinalFileNameFromURI(Target.URI); | |
1801 | HashStringList const TargetFileHashes = GetExpectedHashesFor(Target.MetaKey); | |
1802 | if (TargetFileHashes.usable() == false || ServerHashes != TargetFileHashes) | |
1803 | { | |
1804 | if (Debug == true) | |
1805 | { | |
1806 | std::clog << "pkgAcqDiffIndex: " << IndexDiffFile << ": Index has different hashes than parser, probably older, so fail pdiffing" << std::endl; | |
1807 | printHashSumComparision(CurrentPackagesFile, ServerHashes, TargetFileHashes); | |
1808 | } | |
1809 | return false; | |
1810 | } | |
1811 | ||
1812 | HashStringList LocalHashes; | |
1813 | // try avoiding calculating the hash here as this is costly | |
1814 | if (TransactionManager->LastMetaIndexParser != NULL) | |
1815 | LocalHashes = GetExpectedHashesFromFor(TransactionManager->LastMetaIndexParser, Target.MetaKey); | |
1816 | if (LocalHashes.usable() == false) | |
1817 | { | |
1818 | FileFd fd(CurrentPackagesFile, FileFd::ReadOnly, FileFd::Auto); | |
1819 | Hashes LocalHashesCalc(ServerHashes); | |
1820 | LocalHashesCalc.AddFD(fd); | |
1821 | LocalHashes = LocalHashesCalc.GetHashStringList(); | |
1822 | } | |
1823 | ||
1824 | if (ServerHashes == LocalHashes) | |
1825 | { | |
1826 | // we have the same sha1 as the server so we are done here | |
1827 | if(Debug) | |
1828 | std::clog << "pkgAcqDiffIndex: Package file " << CurrentPackagesFile << " is up-to-date" << std::endl; | |
1829 | QueueOnIMSHit(); | |
1830 | return true; | |
1831 | } | |
1832 | ||
1833 | if(Debug) | |
1834 | std::clog << "Server-Current: " << ServerHashes.find(NULL)->toStr() << " and we start at " | |
1835 | << CurrentPackagesFile << " " << LocalHashes.FileSize() << " " << LocalHashes.find(NULL)->toStr() << std::endl; | |
1836 | ||
1837 | // parse all of (provided) history | |
1838 | vector<DiffInfo> available_patches; | |
1839 | bool firstAcceptedHashes = true; | |
1840 | for (char const * const * type = HashString::SupportedHashes(); *type != NULL; ++type) | |
1841 | { | |
1842 | if (LocalHashes.find(*type) == NULL) | |
1843 | continue; | |
1844 | ||
1845 | std::string tagname = *type; | |
1846 | tagname.append("-History"); | |
1847 | std::string const tmp = Tags.FindS(tagname.c_str()); | |
1848 | if (tmp.empty() == true) | |
1849 | continue; | |
1850 | ||
1851 | string hash, filename; | |
1852 | unsigned long long size; | |
1853 | std::stringstream ss(tmp); | |
1854 | ||
1855 | while (ss >> hash >> size >> filename) | |
1856 | { | |
1857 | if (unlikely(hash.empty() == true || filename.empty() == true)) | |
1858 | continue; | |
1859 | ||
1860 | // see if we have a record for this file already | |
1861 | std::vector<DiffInfo>::iterator cur = available_patches.begin(); | |
1862 | for (; cur != available_patches.end(); ++cur) | |
1863 | { | |
1864 | if (cur->file != filename) | |
1865 | continue; | |
1866 | cur->result_hashes.push_back(HashString(*type, hash)); | |
1867 | break; | |
1868 | } | |
1869 | if (cur != available_patches.end()) | |
1870 | continue; | |
1871 | if (firstAcceptedHashes == true) | |
1872 | { | |
1873 | DiffInfo next; | |
1874 | next.file = filename; | |
1875 | next.result_hashes.push_back(HashString(*type, hash)); | |
1876 | next.result_hashes.FileSize(size); | |
1877 | available_patches.push_back(next); | |
1878 | } | |
1879 | else | |
1880 | { | |
1881 | if (Debug == true) | |
1882 | std::clog << "pkgAcqDiffIndex: " << IndexDiffFile << ": File " << filename | |
1883 | << " wasn't in the list for the first parsed hash! (history)" << std::endl; | |
1884 | break; | |
1885 | } | |
1886 | } | |
1887 | firstAcceptedHashes = false; | |
1888 | } | |
1889 | ||
1890 | if (unlikely(available_patches.empty() == true)) | |
1891 | { | |
1892 | if (Debug) | |
1893 | std::clog << "pkgAcqDiffIndex: " << IndexDiffFile << ": " | |
1894 | << "Couldn't find any patches for the patch series." << std::endl; | |
1895 | return false; | |
1896 | } | |
1897 | ||
1898 | for (char const * const * type = HashString::SupportedHashes(); *type != NULL; ++type) | |
1899 | { | |
1900 | if (LocalHashes.find(*type) == NULL) | |
1901 | continue; | |
1902 | ||
1903 | std::string tagname = *type; | |
1904 | tagname.append("-Patches"); | |
1905 | std::string const tmp = Tags.FindS(tagname.c_str()); | |
1906 | if (tmp.empty() == true) | |
1907 | continue; | |
1908 | ||
1909 | string hash, filename; | |
1910 | unsigned long long size; | |
1911 | std::stringstream ss(tmp); | |
1912 | ||
1913 | while (ss >> hash >> size >> filename) | |
1914 | { | |
1915 | if (unlikely(hash.empty() == true || filename.empty() == true)) | |
1916 | continue; | |
1917 | ||
1918 | // see if we have a record for this file already | |
1919 | std::vector<DiffInfo>::iterator cur = available_patches.begin(); | |
1920 | for (; cur != available_patches.end(); ++cur) | |
1921 | { | |
1922 | if (cur->file != filename) | |
1923 | continue; | |
1924 | if (cur->patch_hashes.empty()) | |
1925 | cur->patch_hashes.FileSize(size); | |
1926 | cur->patch_hashes.push_back(HashString(*type, hash)); | |
1927 | break; | |
1928 | } | |
1929 | if (cur != available_patches.end()) | |
1930 | continue; | |
1931 | if (Debug == true) | |
1932 | std::clog << "pkgAcqDiffIndex: " << IndexDiffFile << ": File " << filename | |
1933 | << " wasn't in the list for the first parsed hash! (patches)" << std::endl; | |
1934 | break; | |
1935 | } | |
1936 | } | |
1937 | ||
1938 | for (char const * const * type = HashString::SupportedHashes(); *type != NULL; ++type) | |
1939 | { | |
1940 | std::string tagname = *type; | |
1941 | tagname.append("-Download"); | |
1942 | std::string const tmp = Tags.FindS(tagname.c_str()); | |
1943 | if (tmp.empty() == true) | |
1944 | continue; | |
1945 | ||
1946 | string hash, filename; | |
1947 | unsigned long long size; | |
1948 | std::stringstream ss(tmp); | |
1949 | ||
1950 | // FIXME: all of pdiff supports only .gz compressed patches | |
1951 | while (ss >> hash >> size >> filename) | |
1952 | { | |
1953 | if (unlikely(hash.empty() == true || filename.empty() == true)) | |
1954 | continue; | |
1955 | if (unlikely(APT::String::Endswith(filename, ".gz") == false)) | |
1956 | continue; | |
1957 | filename.erase(filename.length() - 3); | |
1958 | ||
1959 | // see if we have a record for this file already | |
1960 | std::vector<DiffInfo>::iterator cur = available_patches.begin(); | |
1961 | for (; cur != available_patches.end(); ++cur) | |
1962 | { | |
1963 | if (cur->file != filename) | |
1964 | continue; | |
1965 | if (cur->download_hashes.empty()) | |
1966 | cur->download_hashes.FileSize(size); | |
1967 | cur->download_hashes.push_back(HashString(*type, hash)); | |
1968 | break; | |
1969 | } | |
1970 | if (cur != available_patches.end()) | |
1971 | continue; | |
1972 | if (Debug == true) | |
1973 | std::clog << "pkgAcqDiffIndex: " << IndexDiffFile << ": File " << filename | |
1974 | << " wasn't in the list for the first parsed hash! (download)" << std::endl; | |
1975 | break; | |
1976 | } | |
1977 | } | |
1978 | ||
1979 | ||
1980 | bool foundStart = false; | |
1981 | for (std::vector<DiffInfo>::iterator cur = available_patches.begin(); | |
1982 | cur != available_patches.end(); ++cur) | |
1983 | { | |
1984 | if (LocalHashes != cur->result_hashes) | |
1985 | continue; | |
1986 | ||
1987 | available_patches.erase(available_patches.begin(), cur); | |
1988 | foundStart = true; | |
1989 | break; | |
1990 | } | |
1991 | ||
1992 | if (foundStart == false || unlikely(available_patches.empty() == true)) | |
1993 | { | |
1994 | if (Debug) | |
1995 | std::clog << "pkgAcqDiffIndex: " << IndexDiffFile << ": " | |
1996 | << "Couldn't find the start of the patch series." << std::endl; | |
1997 | return false; | |
1998 | } | |
1999 | ||
2000 | // patching with too many files is rather slow compared to a fast download | |
2001 | unsigned long const fileLimit = _config->FindI("Acquire::PDiffs::FileLimit", 0); | |
2002 | if (fileLimit != 0 && fileLimit < available_patches.size()) | |
2003 | { | |
2004 | if (Debug) | |
2005 | std::clog << "Need " << available_patches.size() << " diffs (Limit is " << fileLimit | |
2006 | << ") so fallback to complete download" << std::endl; | |
2007 | return false; | |
2008 | } | |
2009 | ||
2010 | // calculate the size of all patches we have to get | |
2011 | // note that all sizes are uncompressed, while we download compressed files | |
2012 | unsigned long long patchesSize = 0; | |
2013 | for (std::vector<DiffInfo>::const_iterator cur = available_patches.begin(); | |
2014 | cur != available_patches.end(); ++cur) | |
2015 | patchesSize += cur->patch_hashes.FileSize(); | |
2016 | unsigned long long const sizeLimit = ServerSize * _config->FindI("Acquire::PDiffs::SizeLimit", 100); | |
2017 | if (sizeLimit > 0 && (sizeLimit/100) < patchesSize) | |
2018 | { | |
2019 | if (Debug) | |
2020 | std::clog << "Need " << patchesSize << " bytes (Limit is " << sizeLimit/100 | |
2021 | << ") so fallback to complete download" << std::endl; | |
2022 | return false; | |
2023 | } | |
2024 | ||
2025 | // we have something, queue the diffs | |
2026 | string::size_type const last_space = Description.rfind(" "); | |
2027 | if(last_space != string::npos) | |
2028 | Description.erase(last_space, Description.size()-last_space); | |
2029 | ||
2030 | /* decide if we should download patches one by one or in one go: | |
2031 | The first is good if the server merges patches, but many don't so client | |
2032 | based merging can be attempt in which case the second is better. | |
2033 | "bad things" will happen if patches are merged on the server, | |
2034 | but client side merging is attempt as well */ | |
2035 | bool pdiff_merge = _config->FindB("Acquire::PDiffs::Merge", true); | |
2036 | if (pdiff_merge == true) | |
2037 | { | |
2038 | // reprepro adds this flag if it has merged patches on the server | |
2039 | std::string const precedence = Tags.FindS("X-Patch-Precedence"); | |
2040 | pdiff_merge = (precedence != "merged"); | |
2041 | } | |
2042 | ||
2043 | if (pdiff_merge == false) | |
2044 | new pkgAcqIndexDiffs(Owner, TransactionManager, Target, available_patches); | |
2045 | else | |
2046 | { | |
2047 | diffs = new std::vector<pkgAcqIndexMergeDiffs*>(available_patches.size()); | |
2048 | for(size_t i = 0; i < available_patches.size(); ++i) | |
2049 | (*diffs)[i] = new pkgAcqIndexMergeDiffs(Owner, TransactionManager, | |
2050 | Target, | |
2051 | available_patches[i], | |
2052 | diffs); | |
2053 | } | |
2054 | ||
2055 | Complete = false; | |
2056 | Status = StatDone; | |
2057 | Dequeue(); | |
2058 | return true; | |
2059 | } | |
2060 | /*}}}*/ | |
2061 | void pkgAcqDiffIndex::Failed(string const &Message,pkgAcquire::MethodConfig const * const Cnf)/*{{{*/ | |
2062 | { | |
2063 | Item::Failed(Message,Cnf); | |
2064 | Status = StatDone; | |
2065 | ||
2066 | if(Debug) | |
2067 | std::clog << "pkgAcqDiffIndex failed: " << Desc.URI << " with " << Message << std::endl | |
2068 | << "Falling back to normal index file acquire" << std::endl; | |
2069 | ||
2070 | new pkgAcqIndex(Owner, TransactionManager, Target); | |
2071 | } | |
2072 | /*}}}*/ | |
2073 | void pkgAcqDiffIndex::Done(string const &Message,HashStringList const &Hashes, /*{{{*/ | |
2074 | pkgAcquire::MethodConfig const * const Cnf) | |
2075 | { | |
2076 | if(Debug) | |
2077 | std::clog << "pkgAcqDiffIndex::Done(): " << Desc.URI << std::endl; | |
2078 | ||
2079 | Item::Done(Message, Hashes, Cnf); | |
2080 | ||
2081 | string const FinalFile = GetFinalFilename(); | |
2082 | if(StringToBool(LookupTag(Message,"IMS-Hit"),false)) | |
2083 | DestFile = FinalFile; | |
2084 | ||
2085 | if(ParseDiffIndex(DestFile) == false) | |
2086 | { | |
2087 | Failed("Message: Couldn't parse pdiff index", Cnf); | |
2088 | // queue for final move - this should happen even if we fail | |
2089 | // while parsing (e.g. on sizelimit) and download the complete file. | |
2090 | TransactionManager->TransactionStageCopy(this, DestFile, FinalFile); | |
2091 | return; | |
2092 | } | |
2093 | ||
2094 | TransactionManager->TransactionStageCopy(this, DestFile, FinalFile); | |
2095 | ||
2096 | Complete = true; | |
2097 | Status = StatDone; | |
2098 | Dequeue(); | |
2099 | ||
2100 | return; | |
2101 | } | |
2102 | /*}}}*/ | |
2103 | pkgAcqDiffIndex::~pkgAcqDiffIndex() | |
2104 | { | |
2105 | if (diffs != NULL) | |
2106 | delete diffs; | |
2107 | } | |
2108 | ||
2109 | // AcqIndexDiffs::AcqIndexDiffs - Constructor /*{{{*/ | |
2110 | // --------------------------------------------------------------------- | |
2111 | /* The package diff is added to the queue. one object is constructed | |
2112 | * for each diff and the index | |
2113 | */ | |
2114 | pkgAcqIndexDiffs::pkgAcqIndexDiffs(pkgAcquire * const Owner, | |
2115 | pkgAcqMetaClearSig * const TransactionManager, | |
2116 | IndexTarget const &Target, | |
2117 | vector<DiffInfo> const &diffs) | |
2118 | : pkgAcqBaseIndex(Owner, TransactionManager, Target), d(NULL), | |
2119 | available_patches(diffs) | |
2120 | { | |
2121 | DestFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI), Target); | |
2122 | ||
2123 | Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); | |
2124 | ||
2125 | Desc.Owner = this; | |
2126 | Description = Target.Description; | |
2127 | Desc.ShortDesc = Target.ShortDesc; | |
2128 | ||
2129 | if(available_patches.empty() == true) | |
2130 | { | |
2131 | // we are done (yeah!), check hashes against the final file | |
2132 | DestFile = GetKeepCompressedFileName(GetFinalFileNameFromURI(Target.URI), Target); | |
2133 | Finish(true); | |
2134 | } | |
2135 | else | |
2136 | { | |
2137 | if (BootstrapPDiffWith(GetPartialFileNameFromURI(Target.URI), GetFinalFilename(), Target) == false) | |
2138 | { | |
2139 | Failed("Bootstrapping of " + DestFile + " failed", NULL); | |
2140 | return; | |
2141 | } | |
2142 | ||
2143 | // get the next diff | |
2144 | State = StateFetchDiff; | |
2145 | QueueNextDiff(); | |
2146 | } | |
2147 | } | |
2148 | /*}}}*/ | |
2149 | void pkgAcqIndexDiffs::Failed(string const &Message,pkgAcquire::MethodConfig const * const Cnf)/*{{{*/ | |
2150 | { | |
2151 | Item::Failed(Message,Cnf); | |
2152 | Status = StatDone; | |
2153 | ||
2154 | DestFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI), Target); | |
2155 | if(Debug) | |
2156 | std::clog << "pkgAcqIndexDiffs failed: " << Desc.URI << " with " << Message << std::endl | |
2157 | << "Falling back to normal index file acquire " << std::endl; | |
2158 | RenameOnError(PDiffError); | |
2159 | std::string const patchname = GetDiffsPatchFileName(DestFile); | |
2160 | if (RealFileExists(patchname)) | |
2161 | rename(patchname.c_str(), std::string(patchname + ".FAILED").c_str()); | |
2162 | new pkgAcqIndex(Owner, TransactionManager, Target); | |
2163 | Finish(); | |
2164 | } | |
2165 | /*}}}*/ | |
2166 | // Finish - helper that cleans the item out of the fetcher queue /*{{{*/ | |
2167 | void pkgAcqIndexDiffs::Finish(bool allDone) | |
2168 | { | |
2169 | if(Debug) | |
2170 | std::clog << "pkgAcqIndexDiffs::Finish(): " | |
2171 | << allDone << " " | |
2172 | << Desc.URI << std::endl; | |
2173 | ||
2174 | // we restore the original name, this is required, otherwise | |
2175 | // the file will be cleaned | |
2176 | if(allDone) | |
2177 | { | |
2178 | std::string Final = GetFinalFilename(); | |
2179 | if (Target.KeepCompressed) | |
2180 | { | |
2181 | std::string const ext = flExtension(DestFile); | |
2182 | if (ext.empty() == false) | |
2183 | Final.append(".").append(ext); | |
2184 | } | |
2185 | TransactionManager->TransactionStageCopy(this, DestFile, Final); | |
2186 | ||
2187 | // this is for the "real" finish | |
2188 | Complete = true; | |
2189 | Status = StatDone; | |
2190 | Dequeue(); | |
2191 | if(Debug) | |
2192 | std::clog << "\n\nallDone: " << DestFile << "\n" << std::endl; | |
2193 | return; | |
2194 | } | |
2195 | else | |
2196 | DestFile.clear(); | |
2197 | ||
2198 | if(Debug) | |
2199 | std::clog << "Finishing: " << Desc.URI << std::endl; | |
2200 | Complete = false; | |
2201 | Status = StatDone; | |
2202 | Dequeue(); | |
2203 | return; | |
2204 | } | |
2205 | /*}}}*/ | |
2206 | bool pkgAcqIndexDiffs::QueueNextDiff() /*{{{*/ | |
2207 | { | |
2208 | // calc sha1 of the just patched file | |
2209 | std::string const FinalFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI), Target); | |
2210 | if(!FileExists(FinalFile)) | |
2211 | { | |
2212 | Failed("Message: No FinalFile " + FinalFile + " available", NULL); | |
2213 | return false; | |
2214 | } | |
2215 | ||
2216 | FileFd fd(FinalFile, FileFd::ReadOnly, FileFd::Extension); | |
2217 | Hashes LocalHashesCalc; | |
2218 | LocalHashesCalc.AddFD(fd); | |
2219 | HashStringList const LocalHashes = LocalHashesCalc.GetHashStringList(); | |
2220 | ||
2221 | if(Debug) | |
2222 | std::clog << "QueueNextDiff: " << FinalFile << " (" << LocalHashes.find(NULL)->toStr() << ")" << std::endl; | |
2223 | ||
2224 | HashStringList const TargetFileHashes = GetExpectedHashesFor(Target.MetaKey); | |
2225 | if (unlikely(LocalHashes.usable() == false || TargetFileHashes.usable() == false)) | |
2226 | { | |
2227 | Failed("Local/Expected hashes are not usable", NULL); | |
2228 | return false; | |
2229 | } | |
2230 | ||
2231 | ||
2232 | // final file reached before all patches are applied | |
2233 | if(LocalHashes == TargetFileHashes) | |
2234 | { | |
2235 | Finish(true); | |
2236 | return true; | |
2237 | } | |
2238 | ||
2239 | // remove all patches until the next matching patch is found | |
2240 | // this requires the Index file to be ordered | |
2241 | available_patches.erase(available_patches.begin(), | |
2242 | std::find_if(available_patches.begin(), available_patches.end(), [&](DiffInfo const &I) { | |
2243 | return I.result_hashes == LocalHashes; | |
2244 | })); | |
2245 | ||
2246 | // error checking and falling back if no patch was found | |
2247 | if(available_patches.empty() == true) | |
2248 | { | |
2249 | Failed("No patches left to reach target", NULL); | |
2250 | return false; | |
2251 | } | |
2252 | ||
2253 | // queue the right diff | |
2254 | Desc.URI = Target.URI + ".diff/" + available_patches[0].file + ".gz"; | |
2255 | Desc.Description = Description + " " + available_patches[0].file + string(".pdiff"); | |
2256 | DestFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI + ".diff/" + available_patches[0].file), Target); | |
2257 | ||
2258 | if(Debug) | |
2259 | std::clog << "pkgAcqIndexDiffs::QueueNextDiff(): " << Desc.URI << std::endl; | |
2260 | ||
2261 | QueueURI(Desc); | |
2262 | ||
2263 | return true; | |
2264 | } | |
2265 | /*}}}*/ | |
2266 | void pkgAcqIndexDiffs::Done(string const &Message, HashStringList const &Hashes, /*{{{*/ | |
2267 | pkgAcquire::MethodConfig const * const Cnf) | |
2268 | { | |
2269 | if(Debug) | |
2270 | std::clog << "pkgAcqIndexDiffs::Done(): " << Desc.URI << std::endl; | |
2271 | ||
2272 | Item::Done(Message, Hashes, Cnf); | |
2273 | ||
2274 | std::string const FinalFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI), Target); | |
2275 | std::string const PatchFile = GetDiffsPatchFileName(FinalFile); | |
2276 | ||
2277 | // success in downloading a diff, enter ApplyDiff state | |
2278 | if(State == StateFetchDiff) | |
2279 | { | |
2280 | Rename(DestFile, PatchFile); | |
2281 | ||
2282 | if(Debug) | |
2283 | std::clog << "Sending to rred method: " << FinalFile << std::endl; | |
2284 | ||
2285 | State = StateApplyDiff; | |
2286 | Local = true; | |
2287 | Desc.URI = "rred:" + FinalFile; | |
2288 | QueueURI(Desc); | |
2289 | SetActiveSubprocess("rred"); | |
2290 | return; | |
2291 | } | |
2292 | ||
2293 | // success in download/apply a diff, queue next (if needed) | |
2294 | if(State == StateApplyDiff) | |
2295 | { | |
2296 | // remove the just applied patch | |
2297 | available_patches.erase(available_patches.begin()); | |
2298 | RemoveFile("pkgAcqIndexDiffs::Done", PatchFile); | |
2299 | ||
2300 | // move into place | |
2301 | if(Debug) | |
2302 | { | |
2303 | std::clog << "Moving patched file in place: " << std::endl | |
2304 | << DestFile << " -> " << FinalFile << std::endl; | |
2305 | } | |
2306 | Rename(DestFile,FinalFile); | |
2307 | chmod(FinalFile.c_str(),0644); | |
2308 | ||
2309 | // see if there is more to download | |
2310 | if(available_patches.empty() == false) { | |
2311 | new pkgAcqIndexDiffs(Owner, TransactionManager, Target, | |
2312 | available_patches); | |
2313 | return Finish(); | |
2314 | } else | |
2315 | // update | |
2316 | DestFile = FinalFile; | |
2317 | return Finish(true); | |
2318 | } | |
2319 | } | |
2320 | /*}}}*/ | |
2321 | std::string pkgAcqIndexDiffs::Custom600Headers() const /*{{{*/ | |
2322 | { | |
2323 | if(State != StateApplyDiff) | |
2324 | return pkgAcqBaseIndex::Custom600Headers(); | |
2325 | std::ostringstream patchhashes; | |
2326 | HashStringList const ExpectedHashes = available_patches[0].patch_hashes; | |
2327 | for (HashStringList::const_iterator hs = ExpectedHashes.begin(); hs != ExpectedHashes.end(); ++hs) | |
2328 | patchhashes << "\nPatch-0-" << hs->HashType() << "-Hash: " << hs->HashValue(); | |
2329 | patchhashes << pkgAcqBaseIndex::Custom600Headers(); | |
2330 | return patchhashes.str(); | |
2331 | } | |
2332 | /*}}}*/ | |
2333 | pkgAcqIndexDiffs::~pkgAcqIndexDiffs() {} | |
2334 | ||
2335 | // AcqIndexMergeDiffs::AcqIndexMergeDiffs - Constructor /*{{{*/ | |
2336 | pkgAcqIndexMergeDiffs::pkgAcqIndexMergeDiffs(pkgAcquire * const Owner, | |
2337 | pkgAcqMetaClearSig * const TransactionManager, | |
2338 | IndexTarget const &Target, | |
2339 | DiffInfo const &patch, | |
2340 | std::vector<pkgAcqIndexMergeDiffs*> const * const allPatches) | |
2341 | : pkgAcqBaseIndex(Owner, TransactionManager, Target), d(NULL), | |
2342 | patch(patch), allPatches(allPatches), State(StateFetchDiff) | |
2343 | { | |
2344 | Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); | |
2345 | ||
2346 | Desc.Owner = this; | |
2347 | Description = Target.Description; | |
2348 | Desc.ShortDesc = Target.ShortDesc; | |
2349 | ||
2350 | Desc.URI = Target.URI + ".diff/" + patch.file + ".gz"; | |
2351 | Desc.Description = Description + " " + patch.file + string(".pdiff"); | |
2352 | ||
2353 | DestFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI + ".diff/" + patch.file), Target); | |
2354 | ||
2355 | if(Debug) | |
2356 | std::clog << "pkgAcqIndexMergeDiffs: " << Desc.URI << std::endl; | |
2357 | ||
2358 | QueueURI(Desc); | |
2359 | } | |
2360 | /*}}}*/ | |
2361 | void pkgAcqIndexMergeDiffs::Failed(string const &Message,pkgAcquire::MethodConfig const * const Cnf)/*{{{*/ | |
2362 | { | |
2363 | if(Debug) | |
2364 | std::clog << "pkgAcqIndexMergeDiffs failed: " << Desc.URI << " with " << Message << std::endl; | |
2365 | ||
2366 | Item::Failed(Message,Cnf); | |
2367 | Status = StatDone; | |
2368 | ||
2369 | // check if we are the first to fail, otherwise we are done here | |
2370 | State = StateDoneDiff; | |
2371 | for (std::vector<pkgAcqIndexMergeDiffs *>::const_iterator I = allPatches->begin(); | |
2372 | I != allPatches->end(); ++I) | |
2373 | if ((*I)->State == StateErrorDiff) | |
2374 | return; | |
2375 | ||
2376 | // first failure means we should fallback | |
2377 | State = StateErrorDiff; | |
2378 | if (Debug) | |
2379 | std::clog << "Falling back to normal index file acquire" << std::endl; | |
2380 | DestFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI), Target); | |
2381 | RenameOnError(PDiffError); | |
2382 | std::string const patchname = GetMergeDiffsPatchFileName(DestFile, patch.file); | |
2383 | if (RealFileExists(patchname)) | |
2384 | rename(patchname.c_str(), std::string(patchname + ".FAILED").c_str()); | |
2385 | new pkgAcqIndex(Owner, TransactionManager, Target); | |
2386 | DestFile.clear(); | |
2387 | } | |
2388 | /*}}}*/ | |
2389 | void pkgAcqIndexMergeDiffs::Done(string const &Message, HashStringList const &Hashes, /*{{{*/ | |
2390 | pkgAcquire::MethodConfig const * const Cnf) | |
2391 | { | |
2392 | if(Debug) | |
2393 | std::clog << "pkgAcqIndexMergeDiffs::Done(): " << Desc.URI << std::endl; | |
2394 | ||
2395 | Item::Done(Message, Hashes, Cnf); | |
2396 | ||
2397 | std::string const UncompressedFinalFile = GetPartialFileNameFromURI(Target.URI); | |
2398 | std::string const FinalFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI), Target); | |
2399 | if (State == StateFetchDiff) | |
2400 | { | |
2401 | Rename(DestFile, GetMergeDiffsPatchFileName(FinalFile, patch.file)); | |
2402 | ||
2403 | // check if this is the last completed diff | |
2404 | State = StateDoneDiff; | |
2405 | for (std::vector<pkgAcqIndexMergeDiffs *>::const_iterator I = allPatches->begin(); | |
2406 | I != allPatches->end(); ++I) | |
2407 | if ((*I)->State != StateDoneDiff) | |
2408 | { | |
2409 | if(Debug) | |
2410 | std::clog << "Not the last done diff in the batch: " << Desc.URI << std::endl; | |
2411 | return; | |
2412 | } | |
2413 | ||
2414 | // this is the last completed diff, so we are ready to apply now | |
2415 | State = StateApplyDiff; | |
2416 | ||
2417 | if (BootstrapPDiffWith(UncompressedFinalFile, GetFinalFilename(), Target) == false) | |
2418 | { | |
2419 | Failed("Bootstrapping of " + DestFile + " failed", NULL); | |
2420 | return; | |
2421 | } | |
2422 | ||
2423 | if(Debug) | |
2424 | std::clog << "Sending to rred method: " << FinalFile << std::endl; | |
2425 | ||
2426 | Local = true; | |
2427 | Desc.URI = "rred:" + FinalFile; | |
2428 | QueueURI(Desc); | |
2429 | SetActiveSubprocess("rred"); | |
2430 | return; | |
2431 | } | |
2432 | // success in download/apply all diffs, clean up | |
2433 | else if (State == StateApplyDiff) | |
2434 | { | |
2435 | // move the result into place | |
2436 | std::string const Final = GetKeepCompressedFileName(GetFinalFilename(), Target); | |
2437 | if(Debug) | |
2438 | std::clog << "Queue patched file in place: " << std::endl | |
2439 | << DestFile << " -> " << Final << std::endl; | |
2440 | ||
2441 | // queue for copy by the transaction manager | |
2442 | TransactionManager->TransactionStageCopy(this, DestFile, Final); | |
2443 | ||
2444 | // ensure the ed's are gone regardless of list-cleanup | |
2445 | for (std::vector<pkgAcqIndexMergeDiffs *>::const_iterator I = allPatches->begin(); | |
2446 | I != allPatches->end(); ++I) | |
2447 | { | |
2448 | std::string const PartialFile = GetKeepCompressedFileName(GetPartialFileNameFromURI(Target.URI), Target); | |
2449 | std::string const patch = GetMergeDiffsPatchFileName(PartialFile, (*I)->patch.file); | |
2450 | RemoveFile("pkgAcqIndexMergeDiffs::Done", patch); | |
2451 | } | |
2452 | RemoveFile("pkgAcqIndexMergeDiffs::Done", FinalFile); | |
2453 | ||
2454 | // all set and done | |
2455 | Complete = true; | |
2456 | if(Debug) | |
2457 | std::clog << "allDone: " << DestFile << "\n" << std::endl; | |
2458 | } | |
2459 | } | |
2460 | /*}}}*/ | |
2461 | std::string pkgAcqIndexMergeDiffs::Custom600Headers() const /*{{{*/ | |
2462 | { | |
2463 | if(State != StateApplyDiff) | |
2464 | return pkgAcqBaseIndex::Custom600Headers(); | |
2465 | std::ostringstream patchhashes; | |
2466 | unsigned int seen_patches = 0; | |
2467 | for (std::vector<pkgAcqIndexMergeDiffs *>::const_iterator I = allPatches->begin(); | |
2468 | I != allPatches->end(); ++I) | |
2469 | { | |
2470 | HashStringList const ExpectedHashes = (*I)->patch.patch_hashes; | |
2471 | for (HashStringList::const_iterator hs = ExpectedHashes.begin(); hs != ExpectedHashes.end(); ++hs) | |
2472 | patchhashes << "\nPatch-" << seen_patches << "-" << hs->HashType() << "-Hash: " << hs->HashValue(); | |
2473 | ++seen_patches; | |
2474 | } | |
2475 | patchhashes << pkgAcqBaseIndex::Custom600Headers(); | |
2476 | return patchhashes.str(); | |
2477 | } | |
2478 | /*}}}*/ | |
2479 | pkgAcqIndexMergeDiffs::~pkgAcqIndexMergeDiffs() {} | |
2480 | ||
2481 | // AcqIndex::AcqIndex - Constructor /*{{{*/ | |
2482 | pkgAcqIndex::pkgAcqIndex(pkgAcquire * const Owner, | |
2483 | pkgAcqMetaClearSig * const TransactionManager, | |
2484 | IndexTarget const &Target) | |
2485 | : pkgAcqBaseIndex(Owner, TransactionManager, Target), d(NULL), Stage(STAGE_DOWNLOAD), | |
2486 | CompressionExtensions(Target.Option(IndexTarget::COMPRESSIONTYPES)) | |
2487 | { | |
2488 | Init(Target.URI, Target.Description, Target.ShortDesc); | |
2489 | ||
2490 | if(_config->FindB("Debug::Acquire::Transaction", false) == true) | |
2491 | std::clog << "New pkgIndex with TransactionManager " | |
2492 | << TransactionManager << std::endl; | |
2493 | } | |
2494 | /*}}}*/ | |
2495 | // AcqIndex::Init - defered Constructor /*{{{*/ | |
2496 | static void NextCompressionExtension(std::string &CurrentCompressionExtension, std::string &CompressionExtensions, bool const preview) | |
2497 | { | |
2498 | size_t const nextExt = CompressionExtensions.find(' '); | |
2499 | if (nextExt == std::string::npos) | |
2500 | { | |
2501 | CurrentCompressionExtension = CompressionExtensions; | |
2502 | if (preview == false) | |
2503 | CompressionExtensions.clear(); | |
2504 | } | |
2505 | else | |
2506 | { | |
2507 | CurrentCompressionExtension = CompressionExtensions.substr(0, nextExt); | |
2508 | if (preview == false) | |
2509 | CompressionExtensions = CompressionExtensions.substr(nextExt+1); | |
2510 | } | |
2511 | } | |
2512 | void pkgAcqIndex::Init(string const &URI, string const &URIDesc, | |
2513 | string const &ShortDesc) | |
2514 | { | |
2515 | Stage = STAGE_DOWNLOAD; | |
2516 | ||
2517 | DestFile = GetPartialFileNameFromURI(URI); | |
2518 | NextCompressionExtension(CurrentCompressionExtension, CompressionExtensions, false); | |
2519 | ||
2520 | if (CurrentCompressionExtension == "uncompressed") | |
2521 | { | |
2522 | Desc.URI = URI; | |
2523 | } | |
2524 | else if (CurrentCompressionExtension == "by-hash") | |
2525 | { | |
2526 | NextCompressionExtension(CurrentCompressionExtension, CompressionExtensions, true); | |
2527 | if(unlikely(TransactionManager->MetaIndexParser == NULL || CurrentCompressionExtension.empty())) | |
2528 | return; | |
2529 | if (CurrentCompressionExtension != "uncompressed") | |
2530 | { | |
2531 | Desc.URI = URI + '.' + CurrentCompressionExtension; | |
2532 | DestFile = DestFile + '.' + CurrentCompressionExtension; | |
2533 | } | |
2534 | ||
2535 | HashStringList const Hashes = GetExpectedHashes(); | |
2536 | HashString const * const TargetHash = Hashes.find(NULL); | |
2537 | if (unlikely(TargetHash == nullptr)) | |
2538 | return; | |
2539 | std::string const ByHash = "/by-hash/" + TargetHash->HashType() + "/" + TargetHash->HashValue(); | |
2540 | size_t const trailing_slash = Desc.URI.find_last_of("/"); | |
2541 | if (unlikely(trailing_slash == std::string::npos)) | |
2542 | return; | |
2543 | Desc.URI = Desc.URI.replace( | |
2544 | trailing_slash, | |
2545 | Desc.URI.substr(trailing_slash+1).size()+1, | |
2546 | ByHash); | |
2547 | } | |
2548 | else if (unlikely(CurrentCompressionExtension.empty())) | |
2549 | return; | |
2550 | else | |
2551 | { | |
2552 | Desc.URI = URI + '.' + CurrentCompressionExtension; | |
2553 | DestFile = DestFile + '.' + CurrentCompressionExtension; | |
2554 | } | |
2555 | ||
2556 | ||
2557 | Desc.Description = URIDesc; | |
2558 | Desc.Owner = this; | |
2559 | Desc.ShortDesc = ShortDesc; | |
2560 | ||
2561 | QueueURI(Desc); | |
2562 | } | |
2563 | /*}}}*/ | |
2564 | // AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/ | |
2565 | // --------------------------------------------------------------------- | |
2566 | /* The only header we use is the last-modified header. */ | |
2567 | string pkgAcqIndex::Custom600Headers() const | |
2568 | { | |
2569 | string Final = GetFinalFilename(); | |
2570 | ||
2571 | string msg = "\nIndex-File: true"; | |
2572 | struct stat Buf; | |
2573 | if (stat(Final.c_str(),&Buf) == 0) | |
2574 | msg += "\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); | |
2575 | ||
2576 | if(Target.IsOptional) | |
2577 | msg += "\nFail-Ignore: true"; | |
2578 | ||
2579 | return msg; | |
2580 | } | |
2581 | /*}}}*/ | |
2582 | // AcqIndex::Failed - getting the indexfile failed /*{{{*/ | |
2583 | void pkgAcqIndex::Failed(string const &Message,pkgAcquire::MethodConfig const * const Cnf) | |
2584 | { | |
2585 | Item::Failed(Message,Cnf); | |
2586 | ||
2587 | // authorisation matches will not be fixed by other compression types | |
2588 | if (Status != StatAuthError) | |
2589 | { | |
2590 | if (CompressionExtensions.empty() == false) | |
2591 | { | |
2592 | Init(Target.URI, Desc.Description, Desc.ShortDesc); | |
2593 | Status = StatIdle; | |
2594 | return; | |
2595 | } | |
2596 | } | |
2597 | ||
2598 | if(Target.IsOptional && GetExpectedHashes().empty() && Stage == STAGE_DOWNLOAD) | |
2599 | Status = StatDone; | |
2600 | else | |
2601 | TransactionManager->AbortTransaction(); | |
2602 | } | |
2603 | /*}}}*/ | |
2604 | // AcqIndex::ReverifyAfterIMS - Reverify index after an ims-hit /*{{{*/ | |
2605 | void pkgAcqIndex::ReverifyAfterIMS() | |
2606 | { | |
2607 | // update destfile to *not* include the compression extension when doing | |
2608 | // a reverify (as its uncompressed on disk already) | |
2609 | DestFile = GetCompressedFileName(Target, GetPartialFileNameFromURI(Target.URI), CurrentCompressionExtension); | |
2610 | ||
2611 | // copy FinalFile into partial/ so that we check the hash again | |
2612 | string FinalFile = GetFinalFilename(); | |
2613 | Stage = STAGE_DECOMPRESS_AND_VERIFY; | |
2614 | Desc.URI = "copy:" + FinalFile; | |
2615 | QueueURI(Desc); | |
2616 | } | |
2617 | /*}}}*/ | |
2618 | // AcqIndex::Done - Finished a fetch /*{{{*/ | |
2619 | // --------------------------------------------------------------------- | |
2620 | /* This goes through a number of states.. On the initial fetch the | |
2621 | method could possibly return an alternate filename which points | |
2622 | to the uncompressed version of the file. If this is so the file | |
2623 | is copied into the partial directory. In all other cases the file | |
2624 | is decompressed with a compressed uri. */ | |
2625 | void pkgAcqIndex::Done(string const &Message, | |
2626 | HashStringList const &Hashes, | |
2627 | pkgAcquire::MethodConfig const * const Cfg) | |
2628 | { | |
2629 | Item::Done(Message,Hashes,Cfg); | |
2630 | ||
2631 | switch(Stage) | |
2632 | { | |
2633 | case STAGE_DOWNLOAD: | |
2634 | StageDownloadDone(Message, Hashes, Cfg); | |
2635 | break; | |
2636 | case STAGE_DECOMPRESS_AND_VERIFY: | |
2637 | StageDecompressDone(Message, Hashes, Cfg); | |
2638 | break; | |
2639 | } | |
2640 | } | |
2641 | /*}}}*/ | |
2642 | // AcqIndex::StageDownloadDone - Queue for decompress and verify /*{{{*/ | |
2643 | void pkgAcqIndex::StageDownloadDone(string const &Message, HashStringList const &, | |
2644 | pkgAcquire::MethodConfig const * const) | |
2645 | { | |
2646 | Complete = true; | |
2647 | ||
2648 | // Handle the unzipd case | |
2649 | std::string FileName = LookupTag(Message,"Alt-Filename"); | |
2650 | if (FileName.empty() == false) | |
2651 | { | |
2652 | Stage = STAGE_DECOMPRESS_AND_VERIFY; | |
2653 | Local = true; | |
2654 | DestFile += ".decomp"; | |
2655 | Desc.URI = "copy:" + FileName; | |
2656 | QueueURI(Desc); | |
2657 | SetActiveSubprocess("copy"); | |
2658 | return; | |
2659 | } | |
2660 | FileName = LookupTag(Message,"Filename"); | |
2661 | ||
2662 | // Methods like e.g. "file:" will give us a (compressed) FileName that is | |
2663 | // not the "DestFile" we set, in this case we uncompress from the local file | |
2664 | if (FileName != DestFile && RealFileExists(DestFile) == false) | |
2665 | { | |
2666 | Local = true; | |
2667 | if (Target.KeepCompressed == true) | |
2668 | { | |
2669 | // but if we don't keep the uncompress we copy the compressed file first | |
2670 | Stage = STAGE_DOWNLOAD; | |
2671 | Desc.URI = "copy:" + FileName; | |
2672 | QueueURI(Desc); | |
2673 | SetActiveSubprocess("copy"); | |
2674 | return; | |
2675 | } | |
2676 | } | |
2677 | else | |
2678 | EraseFileName = FileName; | |
2679 | ||
2680 | // we need to verify the file against the current Release file again | |
2681 | // on if-modfied-since hit to avoid a stale attack against us | |
2682 | if(StringToBool(LookupTag(Message,"IMS-Hit"),false) == true) | |
2683 | { | |
2684 | // The files timestamp matches, reverify by copy into partial/ | |
2685 | EraseFileName = ""; | |
2686 | ReverifyAfterIMS(); | |
2687 | return; | |
2688 | } | |
2689 | ||
2690 | // get the binary name for your used compression type | |
2691 | string decompProg; | |
2692 | if(CurrentCompressionExtension == "uncompressed") | |
2693 | decompProg = "copy"; | |
2694 | else | |
2695 | decompProg = _config->Find(string("Acquire::CompressionTypes::").append(CurrentCompressionExtension),""); | |
2696 | if(decompProg.empty() == true) | |
2697 | { | |
2698 | _error->Error("Unsupported extension: %s", CurrentCompressionExtension.c_str()); | |
2699 | return; | |
2700 | } | |
2701 | ||
2702 | if (Target.KeepCompressed == true) | |
2703 | { | |
2704 | DestFile = "/dev/null"; | |
2705 | EraseFileName.clear(); | |
2706 | } | |
2707 | else | |
2708 | DestFile += ".decomp"; | |
2709 | ||
2710 | // queue uri for the next stage | |
2711 | Stage = STAGE_DECOMPRESS_AND_VERIFY; | |
2712 | Desc.URI = decompProg + ":" + FileName; | |
2713 | QueueURI(Desc); | |
2714 | SetActiveSubprocess(decompProg); | |
2715 | } | |
2716 | /*}}}*/ | |
2717 | // AcqIndex::StageDecompressDone - Final verification /*{{{*/ | |
2718 | void pkgAcqIndex::StageDecompressDone(string const &, | |
2719 | HashStringList const &, | |
2720 | pkgAcquire::MethodConfig const * const) | |
2721 | { | |
2722 | if (Target.KeepCompressed == true && DestFile == "/dev/null") | |
2723 | DestFile = GetPartialFileNameFromURI(Target.URI + '.' + CurrentCompressionExtension); | |
2724 | ||
2725 | // Done, queue for rename on transaction finished | |
2726 | TransactionManager->TransactionStageCopy(this, DestFile, GetFinalFilename()); | |
2727 | return; | |
2728 | } | |
2729 | /*}}}*/ | |
2730 | pkgAcqIndex::~pkgAcqIndex() {} | |
2731 | ||
2732 | ||
2733 | // AcqArchive::AcqArchive - Constructor /*{{{*/ | |
2734 | // --------------------------------------------------------------------- | |
2735 | /* This just sets up the initial fetch environment and queues the first | |
2736 | possibilitiy */ | |
2737 | pkgAcqArchive::pkgAcqArchive(pkgAcquire * const Owner,pkgSourceList * const Sources, | |
2738 | pkgRecords * const Recs,pkgCache::VerIterator const &Version, | |
2739 | string &StoreFilename) : | |
2740 | Item(Owner), d(NULL), LocalSource(false), Version(Version), Sources(Sources), Recs(Recs), | |
2741 | StoreFilename(StoreFilename), Vf(Version.FileList()), | |
2742 | Trusted(false) | |
2743 | { | |
2744 | Retries = _config->FindI("Acquire::Retries",0); | |
2745 | ||
2746 | if (Version.Arch() == 0) | |
2747 | { | |
2748 | _error->Error(_("I wasn't able to locate a file for the %s package. " | |
2749 | "This might mean you need to manually fix this package. " | |
2750 | "(due to missing arch)"), | |
2751 | Version.ParentPkg().FullName().c_str()); | |
2752 | return; | |
2753 | } | |
2754 | ||
2755 | /* We need to find a filename to determine the extension. We make the | |
2756 | assumption here that all the available sources for this version share | |
2757 | the same extension.. */ | |
2758 | // Skip not source sources, they do not have file fields. | |
2759 | for (; Vf.end() == false; ++Vf) | |
2760 | { | |
2761 | if (Vf.File().Flagged(pkgCache::Flag::NotSource)) | |
2762 | continue; | |
2763 | break; | |
2764 | } | |
2765 | ||
2766 | // Does not really matter here.. we are going to fail out below | |
2767 | if (Vf.end() != true) | |
2768 | { | |
2769 | // If this fails to get a file name we will bomb out below. | |
2770 | pkgRecords::Parser &Parse = Recs->Lookup(Vf); | |
2771 | if (_error->PendingError() == true) | |
2772 | return; | |
2773 | ||
2774 | // Generate the final file name as: package_version_arch.foo | |
2775 | StoreFilename = QuoteString(Version.ParentPkg().Name(),"_:") + '_' + | |
2776 | QuoteString(Version.VerStr(),"_:") + '_' + | |
2777 | QuoteString(Version.Arch(),"_:.") + | |
2778 | "." + flExtension(Parse.FileName()); | |
2779 | } | |
2780 | ||
2781 | // check if we have one trusted source for the package. if so, switch | |
2782 | // to "TrustedOnly" mode - but only if not in AllowUnauthenticated mode | |
2783 | bool const allowUnauth = _config->FindB("APT::Get::AllowUnauthenticated", false); | |
2784 | bool const debugAuth = _config->FindB("Debug::pkgAcquire::Auth", false); | |
2785 | bool seenUntrusted = false; | |
2786 | for (pkgCache::VerFileIterator i = Version.FileList(); i.end() == false; ++i) | |
2787 | { | |
2788 | pkgIndexFile *Index; | |
2789 | if (Sources->FindIndex(i.File(),Index) == false) | |
2790 | continue; | |
2791 | ||
2792 | if (debugAuth == true) | |
2793 | std::cerr << "Checking index: " << Index->Describe() | |
2794 | << "(Trusted=" << Index->IsTrusted() << ")" << std::endl; | |
2795 | ||
2796 | if (Index->IsTrusted() == true) | |
2797 | { | |
2798 | Trusted = true; | |
2799 | if (allowUnauth == false) | |
2800 | break; | |
2801 | } | |
2802 | else | |
2803 | seenUntrusted = true; | |
2804 | } | |
2805 | ||
2806 | // "allow-unauthenticated" restores apts old fetching behaviour | |
2807 | // that means that e.g. unauthenticated file:// uris are higher | |
2808 | // priority than authenticated http:// uris | |
2809 | if (allowUnauth == true && seenUntrusted == true) | |
2810 | Trusted = false; | |
2811 | ||
2812 | // Select a source | |
2813 | if (QueueNext() == false && _error->PendingError() == false) | |
2814 | _error->Error(_("Can't find a source to download version '%s' of '%s'"), | |
2815 | Version.VerStr(), Version.ParentPkg().FullName(false).c_str()); | |
2816 | } | |
2817 | /*}}}*/ | |
2818 | // AcqArchive::QueueNext - Queue the next file source /*{{{*/ | |
2819 | // --------------------------------------------------------------------- | |
2820 | /* This queues the next available file version for download. It checks if | |
2821 | the archive is already available in the cache and stashs the MD5 for | |
2822 | checking later. */ | |
2823 | bool pkgAcqArchive::QueueNext() | |
2824 | { | |
2825 | for (; Vf.end() == false; ++Vf) | |
2826 | { | |
2827 | pkgCache::PkgFileIterator const PkgF = Vf.File(); | |
2828 | // Ignore not source sources | |
2829 | if (PkgF.Flagged(pkgCache::Flag::NotSource)) | |
2830 | continue; | |
2831 | ||
2832 | // Try to cross match against the source list | |
2833 | pkgIndexFile *Index; | |
2834 | if (Sources->FindIndex(PkgF, Index) == false) | |
2835 | continue; | |
2836 | LocalSource = PkgF.Flagged(pkgCache::Flag::LocalSource); | |
2837 | ||
2838 | // only try to get a trusted package from another source if that source | |
2839 | // is also trusted | |
2840 | if(Trusted && !Index->IsTrusted()) | |
2841 | continue; | |
2842 | ||
2843 | // Grab the text package record | |
2844 | pkgRecords::Parser &Parse = Recs->Lookup(Vf); | |
2845 | if (_error->PendingError() == true) | |
2846 | return false; | |
2847 | ||
2848 | string PkgFile = Parse.FileName(); | |
2849 | ExpectedHashes = Parse.Hashes(); | |
2850 | ||
2851 | if (PkgFile.empty() == true) | |
2852 | return _error->Error(_("The package index files are corrupted. No Filename: " | |
2853 | "field for package %s."), | |
2854 | Version.ParentPkg().Name()); | |
2855 | ||
2856 | Desc.URI = Index->ArchiveURI(PkgFile); | |
2857 | Desc.Description = Index->ArchiveInfo(Version); | |
2858 | Desc.Owner = this; | |
2859 | Desc.ShortDesc = Version.ParentPkg().FullName(true); | |
2860 | ||
2861 | // See if we already have the file. (Legacy filenames) | |
2862 | FileSize = Version->Size; | |
2863 | string FinalFile = _config->FindDir("Dir::Cache::Archives") + flNotDir(PkgFile); | |
2864 | struct stat Buf; | |
2865 | if (stat(FinalFile.c_str(),&Buf) == 0) | |
2866 | { | |
2867 | // Make sure the size matches | |
2868 | if ((unsigned long long)Buf.st_size == Version->Size) | |
2869 | { | |
2870 | Complete = true; | |
2871 | Local = true; | |
2872 | Status = StatDone; | |
2873 | StoreFilename = DestFile = FinalFile; | |
2874 | return true; | |
2875 | } | |
2876 | ||
2877 | /* Hmm, we have a file and its size does not match, this means it is | |
2878 | an old style mismatched arch */ | |
2879 | RemoveFile("pkgAcqArchive::QueueNext", FinalFile); | |
2880 | } | |
2881 | ||
2882 | // Check it again using the new style output filenames | |
2883 | FinalFile = _config->FindDir("Dir::Cache::Archives") + flNotDir(StoreFilename); | |
2884 | if (stat(FinalFile.c_str(),&Buf) == 0) | |
2885 | { | |
2886 | // Make sure the size matches | |
2887 | if ((unsigned long long)Buf.st_size == Version->Size) | |
2888 | { | |
2889 | Complete = true; | |
2890 | Local = true; | |
2891 | Status = StatDone; | |
2892 | StoreFilename = DestFile = FinalFile; | |
2893 | return true; | |
2894 | } | |
2895 | ||
2896 | /* Hmm, we have a file and its size does not match, this shouldn't | |
2897 | happen.. */ | |
2898 | RemoveFile("pkgAcqArchive::QueueNext", FinalFile); | |
2899 | } | |
2900 | ||
2901 | DestFile = _config->FindDir("Dir::Cache::Archives") + "partial/" + flNotDir(StoreFilename); | |
2902 | ||
2903 | // Check the destination file | |
2904 | if (stat(DestFile.c_str(),&Buf) == 0) | |
2905 | { | |
2906 | // Hmm, the partial file is too big, erase it | |
2907 | if ((unsigned long long)Buf.st_size > Version->Size) | |
2908 | RemoveFile("pkgAcqArchive::QueueNext", DestFile); | |
2909 | else | |
2910 | PartialSize = Buf.st_size; | |
2911 | } | |
2912 | ||
2913 | // Disables download of archives - useful if no real installation follows, | |
2914 | // e.g. if we are just interested in proposed installation order | |
2915 | if (_config->FindB("Debug::pkgAcqArchive::NoQueue", false) == true) | |
2916 | { | |
2917 | Complete = true; | |
2918 | Local = true; | |
2919 | Status = StatDone; | |
2920 | StoreFilename = DestFile = FinalFile; | |
2921 | return true; | |
2922 | } | |
2923 | ||
2924 | // Create the item | |
2925 | Local = false; | |
2926 | QueueURI(Desc); | |
2927 | ||
2928 | ++Vf; | |
2929 | return true; | |
2930 | } | |
2931 | return false; | |
2932 | } | |
2933 | /*}}}*/ | |
2934 | // AcqArchive::Done - Finished fetching /*{{{*/ | |
2935 | // --------------------------------------------------------------------- | |
2936 | /* */ | |
2937 | void pkgAcqArchive::Done(string const &Message, HashStringList const &Hashes, | |
2938 | pkgAcquire::MethodConfig const * const Cfg) | |
2939 | { | |
2940 | Item::Done(Message, Hashes, Cfg); | |
2941 | ||
2942 | // Grab the output filename | |
2943 | std::string const FileName = LookupTag(Message,"Filename"); | |
2944 | if (DestFile != FileName && RealFileExists(DestFile) == false) | |
2945 | { | |
2946 | StoreFilename = DestFile = FileName; | |
2947 | Local = true; | |
2948 | Complete = true; | |
2949 | return; | |
2950 | } | |
2951 | ||
2952 | // Done, move it into position | |
2953 | string const FinalFile = GetFinalFilename(); | |
2954 | Rename(DestFile,FinalFile); | |
2955 | StoreFilename = DestFile = FinalFile; | |
2956 | Complete = true; | |
2957 | } | |
2958 | /*}}}*/ | |
2959 | // AcqArchive::Failed - Failure handler /*{{{*/ | |
2960 | // --------------------------------------------------------------------- | |
2961 | /* Here we try other sources */ | |
2962 | void pkgAcqArchive::Failed(string const &Message,pkgAcquire::MethodConfig const * const Cnf) | |
2963 | { | |
2964 | Item::Failed(Message,Cnf); | |
2965 | ||
2966 | /* We don't really want to retry on failed media swaps, this prevents | |
2967 | that. An interesting observation is that permanent failures are not | |
2968 | recorded. */ | |
2969 | if (Cnf->Removable == true && | |
2970 | StringToBool(LookupTag(Message,"Transient-Failure"),false) == true) | |
2971 | { | |
2972 | // Vf = Version.FileList(); | |
2973 | while (Vf.end() == false) ++Vf; | |
2974 | StoreFilename = string(); | |
2975 | return; | |
2976 | } | |
2977 | ||
2978 | Status = StatIdle; | |
2979 | if (QueueNext() == false) | |
2980 | { | |
2981 | // This is the retry counter | |
2982 | if (Retries != 0 && | |
2983 | Cnf->LocalOnly == false && | |
2984 | StringToBool(LookupTag(Message,"Transient-Failure"),false) == true) | |
2985 | { | |
2986 | Retries--; | |
2987 | Vf = Version.FileList(); | |
2988 | if (QueueNext() == true) | |
2989 | return; | |
2990 | } | |
2991 | ||
2992 | StoreFilename = string(); | |
2993 | Status = StatError; | |
2994 | } | |
2995 | } | |
2996 | /*}}}*/ | |
2997 | APT_PURE bool pkgAcqArchive::IsTrusted() const /*{{{*/ | |
2998 | { | |
2999 | return Trusted; | |
3000 | } | |
3001 | /*}}}*/ | |
3002 | void pkgAcqArchive::Finished() /*{{{*/ | |
3003 | { | |
3004 | if (Status == pkgAcquire::Item::StatDone && | |
3005 | Complete == true) | |
3006 | return; | |
3007 | StoreFilename = string(); | |
3008 | } | |
3009 | /*}}}*/ | |
3010 | std::string pkgAcqArchive::DescURI() const /*{{{*/ | |
3011 | { | |
3012 | return Desc.URI; | |
3013 | } | |
3014 | /*}}}*/ | |
3015 | std::string pkgAcqArchive::ShortDesc() const /*{{{*/ | |
3016 | { | |
3017 | return Desc.ShortDesc; | |
3018 | } | |
3019 | /*}}}*/ | |
3020 | pkgAcqArchive::~pkgAcqArchive() {} | |
3021 | ||
3022 | // AcqChangelog::pkgAcqChangelog - Constructors /*{{{*/ | |
3023 | pkgAcqChangelog::pkgAcqChangelog(pkgAcquire * const Owner, pkgCache::VerIterator const &Ver, | |
3024 | std::string const &DestDir, std::string const &DestFilename) : | |
3025 | pkgAcquire::Item(Owner), d(NULL), SrcName(Ver.SourcePkgName()), SrcVersion(Ver.SourceVerStr()) | |
3026 | { | |
3027 | Desc.URI = URI(Ver); | |
3028 | Init(DestDir, DestFilename); | |
3029 | } | |
3030 | // some parameters are char* here as they come likely from char* interfaces – which can also return NULL | |
3031 | pkgAcqChangelog::pkgAcqChangelog(pkgAcquire * const Owner, pkgCache::RlsFileIterator const &RlsFile, | |
3032 | char const * const Component, char const * const SrcName, char const * const SrcVersion, | |
3033 | const string &DestDir, const string &DestFilename) : | |
3034 | pkgAcquire::Item(Owner), d(NULL), SrcName(SrcName), SrcVersion(SrcVersion) | |
3035 | { | |
3036 | Desc.URI = URI(RlsFile, Component, SrcName, SrcVersion); | |
3037 | Init(DestDir, DestFilename); | |
3038 | } | |
3039 | pkgAcqChangelog::pkgAcqChangelog(pkgAcquire * const Owner, | |
3040 | std::string const &URI, char const * const SrcName, char const * const SrcVersion, | |
3041 | const string &DestDir, const string &DestFilename) : | |
3042 | pkgAcquire::Item(Owner), d(NULL), SrcName(SrcName), SrcVersion(SrcVersion) | |
3043 | { | |
3044 | Desc.URI = URI; | |
3045 | Init(DestDir, DestFilename); | |
3046 | } | |
3047 | void pkgAcqChangelog::Init(std::string const &DestDir, std::string const &DestFilename) | |
3048 | { | |
3049 | if (Desc.URI.empty()) | |
3050 | { | |
3051 | Status = StatError; | |
3052 | // TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1 | |
3053 | strprintf(ErrorText, _("Changelog unavailable for %s=%s"), SrcName.c_str(), SrcVersion.c_str()); | |
3054 | // Let the error message print something sensible rather than "Failed to fetch /" | |
3055 | if (DestFilename.empty()) | |
3056 | DestFile = SrcName + ".changelog"; | |
3057 | else | |
3058 | DestFile = DestFilename; | |
3059 | Desc.URI = "changelog:/" + DestFile; | |
3060 | return; | |
3061 | } | |
3062 | ||
3063 | if (DestDir.empty()) | |
3064 | { | |
3065 | std::string const SandboxUser = _config->Find("APT::Sandbox::User"); | |
3066 | std::string const systemTemp = GetTempDir(SandboxUser); | |
3067 | char tmpname[100]; | |
3068 | snprintf(tmpname, sizeof(tmpname), "%s/apt-changelog-XXXXXX", systemTemp.c_str()); | |
3069 | if (NULL == mkdtemp(tmpname)) | |
3070 | { | |
3071 | _error->Errno("mkdtemp", "mkdtemp failed in changelog acquire of %s %s", SrcName.c_str(), SrcVersion.c_str()); | |
3072 | Status = StatError; | |
3073 | return; | |
3074 | } | |
3075 | DestFile = TemporaryDirectory = tmpname; | |
3076 | ||
3077 | ChangeOwnerAndPermissionOfFile("Item::QueueURI", DestFile.c_str(), | |
3078 | SandboxUser.c_str(), "root", 0700); | |
3079 | } | |
3080 | else | |
3081 | DestFile = DestDir; | |
3082 | ||
3083 | if (DestFilename.empty()) | |
3084 | DestFile = flCombine(DestFile, SrcName + ".changelog"); | |
3085 | else | |
3086 | DestFile = flCombine(DestFile, DestFilename); | |
3087 | ||
3088 | Desc.ShortDesc = "Changelog"; | |
3089 | strprintf(Desc.Description, "%s %s %s Changelog", URI::SiteOnly(Desc.URI).c_str(), SrcName.c_str(), SrcVersion.c_str()); | |
3090 | Desc.Owner = this; | |
3091 | QueueURI(Desc); | |
3092 | } | |
3093 | /*}}}*/ | |
3094 | std::string pkgAcqChangelog::URI(pkgCache::VerIterator const &Ver) /*{{{*/ | |
3095 | { | |
3096 | char const * const SrcName = Ver.SourcePkgName(); | |
3097 | char const * const SrcVersion = Ver.SourceVerStr(); | |
3098 | pkgCache::PkgFileIterator PkgFile; | |
3099 | // find the first source for this version which promises a changelog | |
3100 | for (pkgCache::VerFileIterator VF = Ver.FileList(); VF.end() == false; ++VF) | |
3101 | { | |
3102 | pkgCache::PkgFileIterator const PF = VF.File(); | |
3103 | if (PF.Flagged(pkgCache::Flag::NotSource) || PF->Release == 0) | |
3104 | continue; | |
3105 | PkgFile = PF; | |
3106 | pkgCache::RlsFileIterator const RF = PF.ReleaseFile(); | |
3107 | std::string const uri = URI(RF, PF.Component(), SrcName, SrcVersion); | |
3108 | if (uri.empty()) | |
3109 | continue; | |
3110 | return uri; | |
3111 | } | |
3112 | return ""; | |
3113 | } | |
3114 | std::string pkgAcqChangelog::URITemplate(pkgCache::RlsFileIterator const &Rls) | |
3115 | { | |
3116 | if (Rls.end() == true || (Rls->Label == 0 && Rls->Origin == 0)) | |
3117 | return ""; | |
3118 | std::string const serverConfig = "Acquire::Changelogs::URI"; | |
3119 | std::string server; | |
3120 | #define APT_EMPTY_SERVER \ | |
3121 | if (server.empty() == false) \ | |
3122 | { \ | |
3123 | if (server != "no") \ | |
3124 | return server; \ | |
3125 | return ""; \ | |
3126 | } | |
3127 | #define APT_CHECK_SERVER(X, Y) \ | |
3128 | if (Rls->X != 0) \ | |
3129 | { \ | |
3130 | std::string const specialServerConfig = serverConfig + "::" + Y + #X + "::" + Rls.X(); \ | |
3131 | server = _config->Find(specialServerConfig); \ | |
3132 | APT_EMPTY_SERVER \ | |
3133 | } | |
3134 | // this way e.g. Debian-Security can fallback to Debian | |
3135 | APT_CHECK_SERVER(Label, "Override::") | |
3136 | APT_CHECK_SERVER(Origin, "Override::") | |
3137 | ||
3138 | if (RealFileExists(Rls.FileName())) | |
3139 | { | |
3140 | _error->PushToStack(); | |
3141 | FileFd rf; | |
3142 | /* This can be costly. A caller wanting to get millions of URIs might | |
3143 | want to do this on its own once and use Override settings. | |
3144 | We don't do this here as Origin/Label are not as unique as they | |
3145 | should be so this could produce request order-dependent anomalies */ | |
3146 | if (OpenMaybeClearSignedFile(Rls.FileName(), rf) == true) | |
3147 | { | |
3148 | pkgTagFile TagFile(&rf, rf.Size()); | |
3149 | pkgTagSection Section; | |
3150 | if (TagFile.Step(Section) == true) | |
3151 | server = Section.FindS("Changelogs"); | |
3152 | } | |
3153 | _error->RevertToStack(); | |
3154 | APT_EMPTY_SERVER | |
3155 | } | |
3156 | ||
3157 | APT_CHECK_SERVER(Label, "") | |
3158 | APT_CHECK_SERVER(Origin, "") | |
3159 | #undef APT_CHECK_SERVER | |
3160 | #undef APT_EMPTY_SERVER | |
3161 | return ""; | |
3162 | } | |
3163 | std::string pkgAcqChangelog::URI(pkgCache::RlsFileIterator const &Rls, | |
3164 | char const * const Component, char const * const SrcName, | |
3165 | char const * const SrcVersion) | |
3166 | { | |
3167 | return URI(URITemplate(Rls), Component, SrcName, SrcVersion); | |
3168 | } | |
3169 | std::string pkgAcqChangelog::URI(std::string const &Template, | |
3170 | char const * const Component, char const * const SrcName, | |
3171 | char const * const SrcVersion) | |
3172 | { | |
3173 | if (Template.find("CHANGEPATH") == std::string::npos) | |
3174 | return ""; | |
3175 | ||
3176 | // the path is: COMPONENT/SRC/SRCNAME/SRCNAME_SRCVER, e.g. main/a/apt/1.1 or contrib/liba/libapt/2.0 | |
3177 | std::string Src = SrcName; | |
3178 | std::string path = APT::String::Startswith(SrcName, "lib") ? Src.substr(0, 4) : Src.substr(0,1); | |
3179 | path.append("/").append(Src).append("/"); | |
3180 | path.append(Src).append("_").append(StripEpoch(SrcVersion)); | |
3181 | // we omit component for releases without one (= flat-style repositories) | |
3182 | if (Component != NULL && strlen(Component) != 0) | |
3183 | path = std::string(Component) + "/" + path; | |
3184 | ||
3185 | return SubstVar(Template, "CHANGEPATH", path); | |
3186 | } | |
3187 | /*}}}*/ | |
3188 | // AcqChangelog::Failed - Failure handler /*{{{*/ | |
3189 | void pkgAcqChangelog::Failed(string const &Message, pkgAcquire::MethodConfig const * const Cnf) | |
3190 | { | |
3191 | Item::Failed(Message,Cnf); | |
3192 | ||
3193 | std::string errText; | |
3194 | // TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1 | |
3195 | strprintf(errText, _("Changelog unavailable for %s=%s"), SrcName.c_str(), SrcVersion.c_str()); | |
3196 | ||
3197 | // Error is probably something techy like 404 Not Found | |
3198 | if (ErrorText.empty()) | |
3199 | ErrorText = errText; | |
3200 | else | |
3201 | ErrorText = errText + " (" + ErrorText + ")"; | |
3202 | return; | |
3203 | } | |
3204 | /*}}}*/ | |
3205 | // AcqChangelog::Done - Item downloaded OK /*{{{*/ | |
3206 | void pkgAcqChangelog::Done(string const &Message,HashStringList const &CalcHashes, | |
3207 | pkgAcquire::MethodConfig const * const Cnf) | |
3208 | { | |
3209 | Item::Done(Message,CalcHashes,Cnf); | |
3210 | ||
3211 | Complete = true; | |
3212 | } | |
3213 | /*}}}*/ | |
3214 | pkgAcqChangelog::~pkgAcqChangelog() /*{{{*/ | |
3215 | { | |
3216 | if (TemporaryDirectory.empty() == false) | |
3217 | { | |
3218 | RemoveFile("~pkgAcqChangelog", DestFile); | |
3219 | rmdir(TemporaryDirectory.c_str()); | |
3220 | } | |
3221 | } | |
3222 | /*}}}*/ | |
3223 | ||
3224 | // AcqFile::pkgAcqFile - Constructor /*{{{*/ | |
3225 | pkgAcqFile::pkgAcqFile(pkgAcquire * const Owner,string const &URI, HashStringList const &Hashes, | |
3226 | unsigned long long const Size,string const &Dsc,string const &ShortDesc, | |
3227 | const string &DestDir, const string &DestFilename, | |
3228 | bool const IsIndexFile) : | |
3229 | Item(Owner), d(NULL), IsIndexFile(IsIndexFile), ExpectedHashes(Hashes) | |
3230 | { | |
3231 | Retries = _config->FindI("Acquire::Retries",0); | |
3232 | ||
3233 | if(!DestFilename.empty()) | |
3234 | DestFile = DestFilename; | |
3235 | else if(!DestDir.empty()) | |
3236 | DestFile = DestDir + "/" + flNotDir(URI); | |
3237 | else | |
3238 | DestFile = flNotDir(URI); | |
3239 | ||
3240 | // Create the item | |
3241 | Desc.URI = URI; | |
3242 | Desc.Description = Dsc; | |
3243 | Desc.Owner = this; | |
3244 | ||
3245 | // Set the short description to the archive component | |
3246 | Desc.ShortDesc = ShortDesc; | |
3247 | ||
3248 | // Get the transfer sizes | |
3249 | FileSize = Size; | |
3250 | struct stat Buf; | |
3251 | if (stat(DestFile.c_str(),&Buf) == 0) | |
3252 | { | |
3253 | // Hmm, the partial file is too big, erase it | |
3254 | if ((Size > 0) && (unsigned long long)Buf.st_size > Size) | |
3255 | RemoveFile("pkgAcqFile", DestFile); | |
3256 | else | |
3257 | PartialSize = Buf.st_size; | |
3258 | } | |
3259 | ||
3260 | QueueURI(Desc); | |
3261 | } | |
3262 | /*}}}*/ | |
3263 | // AcqFile::Done - Item downloaded OK /*{{{*/ | |
3264 | void pkgAcqFile::Done(string const &Message,HashStringList const &CalcHashes, | |
3265 | pkgAcquire::MethodConfig const * const Cnf) | |
3266 | { | |
3267 | Item::Done(Message,CalcHashes,Cnf); | |
3268 | ||
3269 | std::string const FileName = LookupTag(Message,"Filename"); | |
3270 | Complete = true; | |
3271 | ||
3272 | // The files timestamp matches | |
3273 | if (StringToBool(LookupTag(Message,"IMS-Hit"),false) == true) | |
3274 | return; | |
3275 | ||
3276 | // We have to copy it into place | |
3277 | if (RealFileExists(DestFile.c_str()) == false) | |
3278 | { | |
3279 | Local = true; | |
3280 | if (_config->FindB("Acquire::Source-Symlinks",true) == false || | |
3281 | Cnf->Removable == true) | |
3282 | { | |
3283 | Desc.URI = "copy:" + FileName; | |
3284 | QueueURI(Desc); | |
3285 | return; | |
3286 | } | |
3287 | ||
3288 | // Erase the file if it is a symlink so we can overwrite it | |
3289 | struct stat St; | |
3290 | if (lstat(DestFile.c_str(),&St) == 0) | |
3291 | { | |
3292 | if (S_ISLNK(St.st_mode) != 0) | |
3293 | RemoveFile("pkgAcqFile::Done", DestFile); | |
3294 | } | |
3295 | ||
3296 | // Symlink the file | |
3297 | if (symlink(FileName.c_str(),DestFile.c_str()) != 0) | |
3298 | { | |
3299 | _error->PushToStack(); | |
3300 | _error->Errno("pkgAcqFile::Done", "Symlinking file %s failed", DestFile.c_str()); | |
3301 | std::stringstream msg; | |
3302 | _error->DumpErrors(msg, GlobalError::DEBUG, false); | |
3303 | _error->RevertToStack(); | |
3304 | ErrorText = msg.str(); | |
3305 | Status = StatError; | |
3306 | Complete = false; | |
3307 | } | |
3308 | } | |
3309 | } | |
3310 | /*}}}*/ | |
3311 | // AcqFile::Failed - Failure handler /*{{{*/ | |
3312 | // --------------------------------------------------------------------- | |
3313 | /* Here we try other sources */ | |
3314 | void pkgAcqFile::Failed(string const &Message, pkgAcquire::MethodConfig const * const Cnf) | |
3315 | { | |
3316 | Item::Failed(Message,Cnf); | |
3317 | ||
3318 | // This is the retry counter | |
3319 | if (Retries != 0 && | |
3320 | Cnf->LocalOnly == false && | |
3321 | StringToBool(LookupTag(Message,"Transient-Failure"),false) == true) | |
3322 | { | |
3323 | --Retries; | |
3324 | QueueURI(Desc); | |
3325 | Status = StatIdle; | |
3326 | return; | |
3327 | } | |
3328 | ||
3329 | } | |
3330 | /*}}}*/ | |
3331 | string pkgAcqFile::Custom600Headers() const /*{{{*/ | |
3332 | { | |
3333 | if (IsIndexFile) | |
3334 | return "\nIndex-File: true"; | |
3335 | return ""; | |
3336 | } | |
3337 | /*}}}*/ | |
3338 | pkgAcqFile::~pkgAcqFile() {} |