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