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