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