refactor FileFd to hide some #ifdefs
[ntk/apt.git] / apt-pkg / acquire-item.cc
CommitLineData
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
MV
25#include <apt-pkg/sha1.h>
26#include <apt-pkg/tagfile.h>
472ff00e 27#include <apt-pkg/indexrecords.h>
453b82a3
DK
28#include <apt-pkg/acquire.h>
29#include <apt-pkg/hashes.h>
30#include <apt-pkg/indexfile.h>
31#include <apt-pkg/pkgcache.h>
32#include <apt-pkg/cacheiterators.h>
33#include <apt-pkg/pkgrecords.h>
34
35#include <stddef.h>
36#include <stdlib.h>
37#include <string.h>
38#include <iostream>
39#include <vector>
0a8a80e5
AL
40#include <sys/stat.h>
41#include <unistd.h>
c88edf1d 42#include <errno.h>
5819a761 43#include <string>
ac5b205a 44#include <sstream>
c88edf1d 45#include <stdio.h>
1ddb8596 46#include <ctime>
ea542140
DK
47
48#include <apti18n.h>
0118833a
AL
49 /*}}}*/
50
b3d44315 51using namespace std;
5819a761 52
0118833a
AL
53// Acquire::Item::Item - Constructor /*{{{*/
54// ---------------------------------------------------------------------
55/* */
8267fe24 56pkgAcquire::Item::Item(pkgAcquire *Owner) : Owner(Owner), FileSize(0),
6b1ff003
AL
57 PartialSize(0), Mode(0), ID(0), Complete(false),
58 Local(false), QueueCounter(0)
0118833a
AL
59{
60 Owner->Add(this);
c88edf1d 61 Status = StatIdle;
0118833a
AL
62}
63 /*}}}*/
64// Acquire::Item::~Item - Destructor /*{{{*/
65// ---------------------------------------------------------------------
66/* */
67pkgAcquire::Item::~Item()
68{
69 Owner->Remove(this);
70}
71 /*}}}*/
c88edf1d
AL
72// Acquire::Item::Failed - Item failed to download /*{{{*/
73// ---------------------------------------------------------------------
93bf083d
AL
74/* We return to an idle state if there are still other queues that could
75 fetch this object */
7d8afa39 76void pkgAcquire::Item::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
c88edf1d 77{
93bf083d 78 Status = StatIdle;
db890fdb 79 ErrorText = LookupTag(Message,"Message");
361593e9 80 UsedMirror = LookupTag(Message,"UsedMirror");
c88edf1d 81 if (QueueCounter <= 1)
93bf083d 82 {
a72ace20 83 /* This indicates that the file is not available right now but might
7d8afa39 84 be sometime later. If we do a retry cycle then this should be
17caf1b1 85 retried [CDROMs] */
7d8afa39
AL
86 if (Cnf->LocalOnly == true &&
87 StringToBool(LookupTag(Message,"Transient-Failure"),false) == true)
a72ace20
AL
88 {
89 Status = StatIdle;
681d76d0 90 Dequeue();
a72ace20
AL
91 return;
92 }
7e5f33eb 93
93bf083d 94 Status = StatError;
681d76d0 95 Dequeue();
93bf083d 96 }
23c5897c 97
36280399 98 // report mirror failure back to LP if we actually use a mirror
f0b509cd
MV
99 string FailReason = LookupTag(Message, "FailReason");
100 if(FailReason.size() != 0)
101 ReportMirrorFailure(FailReason);
102 else
103 ReportMirrorFailure(ErrorText);
c88edf1d
AL
104}
105 /*}}}*/
8267fe24
AL
106// Acquire::Item::Start - Item has begun to download /*{{{*/
107// ---------------------------------------------------------------------
17caf1b1
AL
108/* Stash status and the file size. Note that setting Complete means
109 sub-phases of the acquire process such as decompresion are operating */
73da43e9 110void pkgAcquire::Item::Start(string /*Message*/,unsigned long long Size)
8267fe24
AL
111{
112 Status = StatFetching;
113 if (FileSize == 0 && Complete == false)
114 FileSize = Size;
115}
116 /*}}}*/
c88edf1d
AL
117// Acquire::Item::Done - Item downloaded OK /*{{{*/
118// ---------------------------------------------------------------------
119/* */
65512241
DK
120void pkgAcquire::Item::Done(string Message,unsigned long long Size,string /*Hash*/,
121 pkgAcquire::MethodConfig * /*Cnf*/)
c88edf1d 122{
b98f2859
AL
123 // We just downloaded something..
124 string FileName = LookupTag(Message,"Filename");
36280399 125 UsedMirror = LookupTag(Message,"UsedMirror");
8f30ca30 126 if (Complete == false && !Local && FileName == DestFile)
b98f2859
AL
127 {
128 if (Owner->Log != 0)
129 Owner->Log->Fetched(Size,atoi(LookupTag(Message,"Resume-Point","0").c_str()));
130 }
aa0e1101
AL
131
132 if (FileSize == 0)
133 FileSize= Size;
c88edf1d
AL
134 Status = StatDone;
135 ErrorText = string();
136 Owner->Dequeue(this);
137}
138 /*}}}*/
8b89e57f
AL
139// Acquire::Item::Rename - Rename a file /*{{{*/
140// ---------------------------------------------------------------------
1e3f4083 141/* This helper function is used by a lot of item methods as their final
8b89e57f
AL
142 step */
143void pkgAcquire::Item::Rename(string From,string To)
144{
145 if (rename(From.c_str(),To.c_str()) != 0)
146 {
147 char S[300];
0fcd01de 148 snprintf(S,sizeof(S),_("rename failed, %s (%s -> %s)."),strerror(errno),
8b89e57f
AL
149 From.c_str(),To.c_str());
150 Status = StatError;
151 ErrorText = S;
7a3c2ab0 152 }
8b89e57f
AL
153}
154 /*}}}*/
3c8030a4
DK
155bool pkgAcquire::Item::RenameOnError(pkgAcquire::Item::RenameOnErrorState const error)/*{{{*/
156{
157 if(FileExists(DestFile))
158 Rename(DestFile, DestFile + ".FAILED");
159
160 switch (error)
161 {
162 case HashSumMismatch:
163 ErrorText = _("Hash Sum mismatch");
164 Status = StatAuthError;
165 ReportMirrorFailure("HashChecksumFailure");
166 break;
167 case SizeMismatch:
168 ErrorText = _("Size mismatch");
169 Status = StatAuthError;
170 ReportMirrorFailure("SizeFailure");
171 break;
172 case InvalidFormat:
173 ErrorText = _("Invalid file format");
174 Status = StatError;
175 // do not report as usually its not the mirrors fault, but Portal/Proxy
176 break;
177 }
178 return false;
179}
180 /*}}}*/
c91d9a63
DK
181// Acquire::Item::ReportMirrorFailure /*{{{*/
182// ---------------------------------------------------------------------
36280399
MV
183void pkgAcquire::Item::ReportMirrorFailure(string FailCode)
184{
59271f62
MV
185 // we only act if a mirror was used at all
186 if(UsedMirror.empty())
187 return;
36280399
MV
188#if 0
189 std::cerr << "\nReportMirrorFailure: "
190 << UsedMirror
59271f62 191 << " Uri: " << DescURI()
36280399
MV
192 << " FailCode: "
193 << FailCode << std::endl;
194#endif
195 const char *Args[40];
196 unsigned int i = 0;
197 string report = _config->Find("Methods::Mirror::ProblemReporting",
3f599bb7 198 "/usr/lib/apt/apt-report-mirror-failure");
36280399
MV
199 if(!FileExists(report))
200 return;
201 Args[i++] = report.c_str();
202 Args[i++] = UsedMirror.c_str();
f0b509cd 203 Args[i++] = DescURI().c_str();
36280399 204 Args[i++] = FailCode.c_str();
361593e9 205 Args[i++] = NULL;
36280399
MV
206 pid_t pid = ExecFork();
207 if(pid < 0)
208 {
209 _error->Error("ReportMirrorFailure Fork failed");
210 return;
211 }
212 else if(pid == 0)
213 {
361593e9
MV
214 execvp(Args[0], (char**)Args);
215 std::cerr << "Could not exec " << Args[0] << std::endl;
216 _exit(100);
36280399
MV
217 }
218 if(!ExecWait(pid, "report-mirror-failure"))
219 {
220 _error->Warning("Couldn't report problem to '%s'",
361593e9 221 _config->Find("Methods::Mirror::ProblemReporting").c_str());
36280399
MV
222 }
223}
c91d9a63 224 /*}}}*/
ab53c018
DK
225// AcqSubIndex::AcqSubIndex - Constructor /*{{{*/
226// ---------------------------------------------------------------------
8e3900d0
DK
227/* Get a sub-index file based on checksums from a 'master' file and
228 possibly query additional files */
ab53c018
DK
229pkgAcqSubIndex::pkgAcqSubIndex(pkgAcquire *Owner, string const &URI,
230 string const &URIDesc, string const &ShortDesc,
231 HashString const &ExpectedHash)
232 : Item(Owner), ExpectedHash(ExpectedHash)
233{
8e3900d0 234 /* XXX: Beware: Currently this class does nothing (of value) anymore ! */
ab53c018
DK
235 Debug = _config->FindB("Debug::pkgAcquire::SubIndex",false);
236
237 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
238 DestFile += URItoFileName(URI);
239
240 Desc.URI = URI;
241 Desc.Description = URIDesc;
242 Desc.Owner = this;
243 Desc.ShortDesc = ShortDesc;
244
245 QueueURI(Desc);
246
247 if(Debug)
248 std::clog << "pkgAcqSubIndex: " << Desc.URI << std::endl;
249}
250 /*}}}*/
251// AcqSubIndex::Custom600Headers - Insert custom request headers /*{{{*/
252// ---------------------------------------------------------------------
253/* The only header we use is the last-modified header. */
254string pkgAcqSubIndex::Custom600Headers()
255{
256 string Final = _config->FindDir("Dir::State::lists");
257 Final += URItoFileName(Desc.URI);
258
259 struct stat Buf;
260 if (stat(Final.c_str(),&Buf) != 0)
97b65b10
MV
261 return "\nIndex-File: true\nFail-Ignore: true\n";
262 return "\nIndex-File: true\nFail-Ignore: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
ab53c018
DK
263}
264 /*}}}*/
65512241 265void pkgAcqSubIndex::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/*{{{*/
ab53c018
DK
266{
267 if(Debug)
65512241 268 std::clog << "pkgAcqSubIndex failed: " << Desc.URI << " with " << Message << std::endl;
ab53c018
DK
269
270 Complete = false;
271 Status = StatDone;
272 Dequeue();
273
8e3900d0 274 // No good Index is provided
ab53c018
DK
275}
276 /*}}}*/
73da43e9 277void pkgAcqSubIndex::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/
ab53c018
DK
278 pkgAcquire::MethodConfig *Cnf)
279{
280 if(Debug)
281 std::clog << "pkgAcqSubIndex::Done(): " << Desc.URI << std::endl;
282
283 string FileName = LookupTag(Message,"Filename");
284 if (FileName.empty() == true)
285 {
286 Status = StatError;
287 ErrorText = "Method gave a blank filename";
288 return;
289 }
290
291 if (FileName != DestFile)
292 {
293 Local = true;
294 Desc.URI = "copy:" + FileName;
295 QueueURI(Desc);
296 return;
297 }
298
299 Item::Done(Message,Size,Md5Hash,Cnf);
300
301 string FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(Desc.URI);
302
4fdb6123 303 /* Downloaded invalid transindex => Error (LP: #346386) (Closes: #627642) */
0901c5d0
JAK
304 indexRecords SubIndexParser;
305 if (FileExists(DestFile) == true && !SubIndexParser.Load(DestFile)) {
306 Status = StatError;
307 ErrorText = SubIndexParser.ErrorText;
308 return;
309 }
310
1e3f4083 311 // success in downloading the index
ab53c018
DK
312 // rename the index
313 if(Debug)
314 std::clog << "Renaming: " << DestFile << " -> " << FinalFile << std::endl;
315 Rename(DestFile,FinalFile);
316 chmod(FinalFile.c_str(),0644);
317 DestFile = FinalFile;
318
319 if(ParseIndex(DestFile) == false)
320 return Failed("", NULL);
321
322 Complete = true;
323 Status = StatDone;
324 Dequeue();
325 return;
326}
327 /*}}}*/
328bool pkgAcqSubIndex::ParseIndex(string const &IndexFile) /*{{{*/
329{
330 indexRecords SubIndexParser;
331 if (FileExists(IndexFile) == false || SubIndexParser.Load(IndexFile) == false)
332 return false;
8e3900d0 333 // so something with the downloaded index
ab53c018
DK
334 return true;
335}
336 /*}}}*/
92fcbfc1 337// AcqDiffIndex::AcqDiffIndex - Constructor /*{{{*/
ac5b205a 338// ---------------------------------------------------------------------
1e3f4083 339/* Get the DiffIndex file first and see if there are patches available
2237bd01
MV
340 * If so, create a pkgAcqIndexDiffs fetcher that will get and apply the
341 * patches. If anything goes wrong in that process, it will fall back to
342 * the original packages file
ac5b205a 343 */
2237bd01
MV
344pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire *Owner,
345 string URI,string URIDesc,string ShortDesc,
495e5cb2
MV
346 HashString ExpectedHash)
347 : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash),
348 Description(URIDesc)
ac5b205a
MV
349{
350
ac5b205a
MV
351 Debug = _config->FindB("Debug::pkgAcquire::Diffs",false);
352
2237bd01 353 Desc.Description = URIDesc + "/DiffIndex";
ac5b205a
MV
354 Desc.Owner = this;
355 Desc.ShortDesc = ShortDesc;
2237bd01
MV
356 Desc.URI = URI + ".diff/Index";
357
358 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
359 DestFile += URItoFileName(URI) + string(".DiffIndex");
360
361 if(Debug)
362 std::clog << "pkgAcqDiffIndex: " << Desc.URI << std::endl;
ac5b205a 363
2237bd01 364 // look for the current package file
ac5b205a
MV
365 CurrentPackagesFile = _config->FindDir("Dir::State::lists");
366 CurrentPackagesFile += URItoFileName(RealURI);
367
b4e57d2d
MV
368 // FIXME: this file:/ check is a hack to prevent fetching
369 // from local sources. this is really silly, and
370 // should be fixed cleanly as soon as possible
ac5b205a 371 if(!FileExists(CurrentPackagesFile) ||
81fcf9e2 372 Desc.URI.substr(0,strlen("file:/")) == "file:/")
2ac3eeb6 373 {
ac5b205a
MV
374 // we don't have a pkg file or we don't want to queue
375 if(Debug)
b4e57d2d 376 std::clog << "No index file, local or canceld by user" << std::endl;
ac5b205a
MV
377 Failed("", NULL);
378 return;
379 }
380
1e4a2b76
AT
381 if(Debug)
382 std::clog << "pkgAcqDiffIndex::pkgAcqDiffIndex(): "
383 << CurrentPackagesFile << std::endl;
384
ac5b205a 385 QueueURI(Desc);
2237bd01 386
ac5b205a 387}
92fcbfc1 388 /*}}}*/
6cb30d01
MV
389// AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/
390// ---------------------------------------------------------------------
391/* The only header we use is the last-modified header. */
2237bd01 392string pkgAcqDiffIndex::Custom600Headers()
6cb30d01 393{
6cb30d01
MV
394 string Final = _config->FindDir("Dir::State::lists");
395 Final += URItoFileName(RealURI) + string(".IndexDiff");
396
397 if(Debug)
398 std::clog << "Custom600Header-IMS: " << Final << std::endl;
399
400 struct stat Buf;
401 if (stat(Final.c_str(),&Buf) != 0)
402 return "\nIndex-File: true";
403
404 return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
405}
92fcbfc1
DK
406 /*}}}*/
407bool pkgAcqDiffIndex::ParseDiffIndex(string IndexDiffFile) /*{{{*/
2237bd01
MV
408{
409 if(Debug)
1e4a2b76
AT
410 std::clog << "pkgAcqDiffIndex::ParseIndexDiff() " << IndexDiffFile
411 << std::endl;
2237bd01
MV
412
413 pkgTagSection Tags;
414 string ServerSha1;
415 vector<DiffInfo> available_patches;
416
417 FileFd Fd(IndexDiffFile,FileFd::ReadOnly);
418 pkgTagFile TF(&Fd);
419 if (_error->PendingError() == true)
420 return false;
421
422 if(TF.Step(Tags) == true)
423 {
002d9943
MV
424 bool found = false;
425 DiffInfo d;
426 string size;
427
02dceb31 428 string const tmp = Tags.FindS("SHA1-Current");
2237bd01 429 std::stringstream ss(tmp);
02dceb31
DK
430 ss >> ServerSha1 >> size;
431 unsigned long const ServerSize = atol(size.c_str());
2237bd01 432
f213b6ea 433 FileFd fd(CurrentPackagesFile, FileFd::ReadOnly);
2237bd01 434 SHA1Summation SHA1;
109eb151 435 SHA1.AddFD(fd);
02dceb31 436 string const local_sha1 = SHA1.Result();
2237bd01 437
5e1ed088 438 if(local_sha1 == ServerSha1)
2ac3eeb6 439 {
5e1ed088 440 // we have the same sha1 as the server so we are done here
2237bd01
MV
441 if(Debug)
442 std::clog << "Package file is up-to-date" << std::endl;
5e1ed088
DK
443 // list cleanup needs to know that this file as well as the already
444 // present index is ours, so we create an empty diff to save it for us
445 new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc,
446 ExpectedHash, ServerSha1, available_patches);
447 return true;
448 }
449 else
2ac3eeb6 450 {
002d9943 451 if(Debug)
f213b6ea 452 std::clog << "SHA1-Current: " << ServerSha1 << " and we start at "<< fd.Name() << " " << fd.Size() << " " << local_sha1 << std::endl;
002d9943
MV
453
454 // check the historie and see what patches we need
02dceb31 455 string const history = Tags.FindS("SHA1-History");
002d9943 456 std::stringstream hist(history);
02dceb31 457 while(hist >> d.sha1 >> size >> d.file)
2ac3eeb6 458 {
002d9943 459 // read until the first match is found
02dceb31 460 // from that point on, we probably need all diffs
002d9943
MV
461 if(d.sha1 == local_sha1)
462 found=true;
02dceb31
DK
463 else if (found == false)
464 continue;
465
466 if(Debug)
467 std::clog << "Need to get diff: " << d.file << std::endl;
468 available_patches.push_back(d);
469 }
470
471 if (available_patches.empty() == false)
472 {
473 // patching with too many files is rather slow compared to a fast download
c3a17127 474 unsigned long const fileLimit = _config->FindI("Acquire::PDiffs::FileLimit", 0);
02dceb31
DK
475 if (fileLimit != 0 && fileLimit < available_patches.size())
476 {
477 if (Debug)
478 std::clog << "Need " << available_patches.size() << " diffs (Limit is " << fileLimit
479 << ") so fallback to complete download" << std::endl;
480 return false;
481 }
482
483 // see if the patches are too big
484 found = false; // it was true and it will be true again at the end
485 d = *available_patches.begin();
486 string const firstPatch = d.file;
487 unsigned long patchesSize = 0;
488 std::stringstream patches(Tags.FindS("SHA1-Patches"));
489 while(patches >> d.sha1 >> size >> d.file)
490 {
491 if (firstPatch == d.file)
492 found = true;
493 else if (found == false)
494 continue;
495
496 patchesSize += atol(size.c_str());
497 }
498 unsigned long const sizeLimit = ServerSize * _config->FindI("Acquire::PDiffs::SizeLimit", 100);
499 if (sizeLimit > 0 && (sizeLimit/100) < patchesSize)
2ac3eeb6 500 {
02dceb31
DK
501 if (Debug)
502 std::clog << "Need " << patchesSize << " bytes (Limit is " << sizeLimit/100
503 << ") so fallback to complete download" << std::endl;
504 return false;
002d9943 505 }
2237bd01
MV
506 }
507 }
508
05aab406 509 // we have something, queue the next diff
47d2bc78 510 if(found)
2ac3eeb6 511 {
2237bd01 512 // queue the diffs
02dceb31 513 string::size_type const last_space = Description.rfind(" ");
05aab406
MV
514 if(last_space != string::npos)
515 Description.erase(last_space, Description.size()-last_space);
47d2bc78
DK
516
517 /* decide if we should download patches one by one or in one go:
518 The first is good if the server merges patches, but many don't so client
519 based merging can be attempt in which case the second is better.
520 "bad things" will happen if patches are merged on the server,
521 but client side merging is attempt as well */
522 bool pdiff_merge = _config->FindB("Acquire::PDiffs::Merge", true);
523 if (pdiff_merge == true)
524 {
50bd6fd3
DK
525 // reprepro adds this flag if it has merged patches on the server
526 std::string const precedence = Tags.FindS("X-Patch-Precedence");
527 pdiff_merge = (precedence != "merged");
47d2bc78
DK
528 }
529
530 if (pdiff_merge == false)
531 new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc,
532 ExpectedHash, ServerSha1, available_patches);
533 else
534 {
535 std::vector<pkgAcqIndexMergeDiffs*> *diffs = new std::vector<pkgAcqIndexMergeDiffs*>(available_patches.size());
536 for(size_t i = 0; i < available_patches.size(); ++i)
537 (*diffs)[i] = new pkgAcqIndexMergeDiffs(Owner, RealURI, Description, Desc.ShortDesc, ExpectedHash,
538 available_patches[i], diffs);
539 }
540
2237bd01
MV
541 Complete = false;
542 Status = StatDone;
543 Dequeue();
544 return true;
545 }
546 }
05aab406
MV
547
548 // Nothing found, report and return false
549 // Failing here is ok, if we return false later, the full
550 // IndexFile is queued
551 if(Debug)
552 std::clog << "Can't find a patch in the index file" << std::endl;
2237bd01
MV
553 return false;
554}
92fcbfc1 555 /*}}}*/
65512241 556void pkgAcqDiffIndex::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/*{{{*/
2237bd01
MV
557{
558 if(Debug)
65512241 559 std::clog << "pkgAcqDiffIndex failed: " << Desc.URI << " with " << Message << std::endl
1e3f4083 560 << "Falling back to normal index file acquire" << std::endl;
2237bd01 561
002d9943 562 new pkgAcqIndex(Owner, RealURI, Description, Desc.ShortDesc,
495e5cb2 563 ExpectedHash);
2237bd01
MV
564
565 Complete = false;
566 Status = StatDone;
567 Dequeue();
568}
92fcbfc1 569 /*}}}*/
73da43e9 570void pkgAcqDiffIndex::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/
2237bd01
MV
571 pkgAcquire::MethodConfig *Cnf)
572{
573 if(Debug)
574 std::clog << "pkgAcqDiffIndex::Done(): " << Desc.URI << std::endl;
575
576 Item::Done(Message,Size,Md5Hash,Cnf);
577
578 string FinalFile;
579 FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(RealURI);
580
1e3f4083 581 // success in downloading the index
2237bd01
MV
582 // rename the index
583 FinalFile += string(".IndexDiff");
584 if(Debug)
585 std::clog << "Renaming: " << DestFile << " -> " << FinalFile
586 << std::endl;
587 Rename(DestFile,FinalFile);
588 chmod(FinalFile.c_str(),0644);
589 DestFile = FinalFile;
590
591 if(!ParseDiffIndex(DestFile))
592 return Failed("", NULL);
593
594 Complete = true;
595 Status = StatDone;
596 Dequeue();
597 return;
598}
92fcbfc1
DK
599 /*}}}*/
600// AcqIndexDiffs::AcqIndexDiffs - Constructor /*{{{*/
2237bd01
MV
601// ---------------------------------------------------------------------
602/* The package diff is added to the queue. one object is constructed
603 * for each diff and the index
604 */
605pkgAcqIndexDiffs::pkgAcqIndexDiffs(pkgAcquire *Owner,
606 string URI,string URIDesc,string ShortDesc,
59d5cc74 607 HashString ExpectedHash,
8a3207f4 608 string ServerSha1,
495e5cb2
MV
609 vector<DiffInfo> diffs)
610 : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash),
8a3207f4 611 available_patches(diffs), ServerSha1(ServerSha1)
2237bd01
MV
612{
613
614 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
615 DestFile += URItoFileName(URI);
616
617 Debug = _config->FindB("Debug::pkgAcquire::Diffs",false);
618
05aab406 619 Description = URIDesc;
2237bd01
MV
620 Desc.Owner = this;
621 Desc.ShortDesc = ShortDesc;
622
69c2ecbd 623 if(available_patches.empty() == true)
2ac3eeb6 624 {
2237bd01
MV
625 // we are done (yeah!)
626 Finish(true);
2ac3eeb6
MV
627 }
628 else
629 {
2237bd01
MV
630 // get the next diff
631 State = StateFetchDiff;
632 QueueNextDiff();
633 }
634}
92fcbfc1 635 /*}}}*/
65512241 636void pkgAcqIndexDiffs::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/*{{{*/
ac5b205a 637{
2237bd01 638 if(Debug)
65512241 639 std::clog << "pkgAcqIndexDiffs failed: " << Desc.URI << " with " << Message << std::endl
1e3f4083 640 << "Falling back to normal index file acquire" << std::endl;
2237bd01 641 new pkgAcqIndex(Owner, RealURI, Description,Desc.ShortDesc,
495e5cb2 642 ExpectedHash);
ac5b205a
MV
643 Finish();
644}
92fcbfc1
DK
645 /*}}}*/
646// Finish - helper that cleans the item out of the fetcher queue /*{{{*/
ac5b205a
MV
647void pkgAcqIndexDiffs::Finish(bool allDone)
648{
649 // we restore the original name, this is required, otherwise
650 // the file will be cleaned
2ac3eeb6
MV
651 if(allDone)
652 {
ac5b205a
MV
653 DestFile = _config->FindDir("Dir::State::lists");
654 DestFile += URItoFileName(RealURI);
2d4722e2 655
495e5cb2 656 if(!ExpectedHash.empty() && !ExpectedHash.VerifyFile(DestFile))
2d4722e2 657 {
3c8030a4 658 RenameOnError(HashSumMismatch);
2d4722e2
MV
659 Dequeue();
660 return;
661 }
662
663 // this is for the "real" finish
ac5b205a 664 Complete = true;
cffc2ddd 665 Status = StatDone;
ac5b205a
MV
666 Dequeue();
667 if(Debug)
668 std::clog << "\n\nallDone: " << DestFile << "\n" << std::endl;
669 return;
ac5b205a
MV
670 }
671
672 if(Debug)
673 std::clog << "Finishing: " << Desc.URI << std::endl;
674 Complete = false;
675 Status = StatDone;
676 Dequeue();
677 return;
678}
92fcbfc1
DK
679 /*}}}*/
680bool pkgAcqIndexDiffs::QueueNextDiff() /*{{{*/
ac5b205a 681{
3de9ff77 682
94dc9d7d
MV
683 // calc sha1 of the just patched file
684 string FinalFile = _config->FindDir("Dir::State::lists");
685 FinalFile += URItoFileName(RealURI);
686
f213b6ea 687 FileFd fd(FinalFile, FileFd::ReadOnly);
94dc9d7d 688 SHA1Summation SHA1;
109eb151 689 SHA1.AddFD(fd);
94dc9d7d 690 string local_sha1 = string(SHA1.Result());
3de9ff77
MV
691 if(Debug)
692 std::clog << "QueueNextDiff: "
693 << FinalFile << " (" << local_sha1 << ")"<<std::endl;
94dc9d7d 694
8a3207f4
DK
695 // final file reached before all patches are applied
696 if(local_sha1 == ServerSha1)
697 {
698 Finish(true);
699 return true;
700 }
701
26d27645
MV
702 // remove all patches until the next matching patch is found
703 // this requires the Index file to be ordered
94dc9d7d 704 for(vector<DiffInfo>::iterator I=available_patches.begin();
f7f0d6c7 705 available_patches.empty() == false &&
2ac3eeb6 706 I != available_patches.end() &&
f7f0d6c7
DK
707 I->sha1 != local_sha1;
708 ++I)
2ac3eeb6 709 {
26d27645 710 available_patches.erase(I);
59a704f0 711 }
94dc9d7d
MV
712
713 // error checking and falling back if no patch was found
f7f0d6c7
DK
714 if(available_patches.empty() == true)
715 {
94dc9d7d
MV
716 Failed("", NULL);
717 return false;
718 }
6cb30d01 719
94dc9d7d 720 // queue the right diff
e788a834 721 Desc.URI = RealURI + ".diff/" + available_patches[0].file + ".gz";
05aab406 722 Desc.Description = Description + " " + available_patches[0].file + string(".pdiff");
ac5b205a 723 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
2237bd01 724 DestFile += URItoFileName(RealURI + ".diff/" + available_patches[0].file);
ac5b205a
MV
725
726 if(Debug)
727 std::clog << "pkgAcqIndexDiffs::QueueNextDiff(): " << Desc.URI << std::endl;
728
729 QueueURI(Desc);
730
731 return true;
732}
92fcbfc1 733 /*}}}*/
73da43e9 734void pkgAcqIndexDiffs::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/
ac5b205a
MV
735 pkgAcquire::MethodConfig *Cnf)
736{
737 if(Debug)
738 std::clog << "pkgAcqIndexDiffs::Done(): " << Desc.URI << std::endl;
739
740 Item::Done(Message,Size,Md5Hash,Cnf);
741
4a0a786f
MV
742 string FinalFile;
743 FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(RealURI);
6cb30d01 744
1e3f4083 745 // success in downloading a diff, enter ApplyDiff state
caffd480 746 if(State == StateFetchDiff)
4a0a786f
MV
747 {
748
749 // rred excepts the patch as $FinalFile.ed
750 Rename(DestFile,FinalFile+".ed");
751
752 if(Debug)
753 std::clog << "Sending to rred method: " << FinalFile << std::endl;
754
755 State = StateApplyDiff;
b7347826 756 Local = true;
4a0a786f
MV
757 Desc.URI = "rred:" + FinalFile;
758 QueueURI(Desc);
759 Mode = "rred";
760 return;
761 }
762
763
764 // success in download/apply a diff, queue next (if needed)
765 if(State == StateApplyDiff)
766 {
767 // remove the just applied patch
94dc9d7d 768 available_patches.erase(available_patches.begin());
34d6ece7 769 unlink((FinalFile + ".ed").c_str());
ac5b205a 770
4a0a786f 771 // move into place
59a704f0
MV
772 if(Debug)
773 {
4a0a786f
MV
774 std::clog << "Moving patched file in place: " << std::endl
775 << DestFile << " -> " << FinalFile << std::endl;
59a704f0 776 }
4a0a786f 777 Rename(DestFile,FinalFile);
1790e0cf 778 chmod(FinalFile.c_str(),0644);
4a0a786f
MV
779
780 // see if there is more to download
f7f0d6c7 781 if(available_patches.empty() == false) {
ac5b205a 782 new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc,
8a3207f4 783 ExpectedHash, ServerSha1, available_patches);
4a0a786f
MV
784 return Finish();
785 } else
786 return Finish(true);
ac5b205a 787 }
ac5b205a 788}
92fcbfc1 789 /*}}}*/
47d2bc78
DK
790// AcqIndexMergeDiffs::AcqIndexMergeDiffs - Constructor /*{{{*/
791pkgAcqIndexMergeDiffs::pkgAcqIndexMergeDiffs(pkgAcquire *Owner,
792 string const &URI, string const &URIDesc,
793 string const &ShortDesc, HashString const &ExpectedHash,
794 DiffInfo const &patch,
795 std::vector<pkgAcqIndexMergeDiffs*> const * const allPatches)
796 : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash),
797 patch(patch),allPatches(allPatches), State(StateFetchDiff)
798{
799
800 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
801 DestFile += URItoFileName(URI);
802
803 Debug = _config->FindB("Debug::pkgAcquire::Diffs",false);
804
805 Description = URIDesc;
806 Desc.Owner = this;
807 Desc.ShortDesc = ShortDesc;
808
e788a834 809 Desc.URI = RealURI + ".diff/" + patch.file + ".gz";
47d2bc78
DK
810 Desc.Description = Description + " " + patch.file + string(".pdiff");
811 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
812 DestFile += URItoFileName(RealURI + ".diff/" + patch.file);
813
814 if(Debug)
815 std::clog << "pkgAcqIndexMergeDiffs: " << Desc.URI << std::endl;
816
817 QueueURI(Desc);
818}
819 /*}}}*/
65512241 820void pkgAcqIndexMergeDiffs::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)/*{{{*/
47d2bc78
DK
821{
822 if(Debug)
823 std::clog << "pkgAcqIndexMergeDiffs failed: " << Desc.URI << " with " << Message << std::endl;
824 Complete = false;
825 Status = StatDone;
826 Dequeue();
827
828 // check if we are the first to fail, otherwise we are done here
829 State = StateDoneDiff;
830 for (std::vector<pkgAcqIndexMergeDiffs *>::const_iterator I = allPatches->begin();
831 I != allPatches->end(); ++I)
832 if ((*I)->State == StateErrorDiff)
833 return;
834
835 // first failure means we should fallback
836 State = StateErrorDiff;
1e3f4083 837 std::clog << "Falling back to normal index file acquire" << std::endl;
47d2bc78
DK
838 new pkgAcqIndex(Owner, RealURI, Description,Desc.ShortDesc,
839 ExpectedHash);
840}
841 /*}}}*/
842void pkgAcqIndexMergeDiffs::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/
843 pkgAcquire::MethodConfig *Cnf)
844{
845 if(Debug)
846 std::clog << "pkgAcqIndexMergeDiffs::Done(): " << Desc.URI << std::endl;
847
848 Item::Done(Message,Size,Md5Hash,Cnf);
849
850 string const FinalFile = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI);
851
852 if (State == StateFetchDiff)
853 {
854 // rred expects the patch as $FinalFile.ed.$patchname.gz
855 Rename(DestFile, FinalFile + ".ed." + patch.file + ".gz");
856
857 // check if this is the last completed diff
858 State = StateDoneDiff;
859 for (std::vector<pkgAcqIndexMergeDiffs *>::const_iterator I = allPatches->begin();
860 I != allPatches->end(); ++I)
861 if ((*I)->State != StateDoneDiff)
862 {
863 if(Debug)
864 std::clog << "Not the last done diff in the batch: " << Desc.URI << std::endl;
865 return;
866 }
867
868 // this is the last completed diff, so we are ready to apply now
869 State = StateApplyDiff;
870
871 if(Debug)
872 std::clog << "Sending to rred method: " << FinalFile << std::endl;
873
874 Local = true;
875 Desc.URI = "rred:" + FinalFile;
876 QueueURI(Desc);
877 Mode = "rred";
878 return;
879 }
880 // success in download/apply all diffs, clean up
881 else if (State == StateApplyDiff)
882 {
883 // see if we really got the expected file
884 if(!ExpectedHash.empty() && !ExpectedHash.VerifyFile(DestFile))
885 {
886 RenameOnError(HashSumMismatch);
887 return;
888 }
889
890 // move the result into place
891 if(Debug)
892 std::clog << "Moving patched file in place: " << std::endl
893 << DestFile << " -> " << FinalFile << std::endl;
894 Rename(DestFile, FinalFile);
895 chmod(FinalFile.c_str(), 0644);
896
897 // otherwise lists cleanup will eat the file
898 DestFile = FinalFile;
899
34d6ece7
DK
900 // ensure the ed's are gone regardless of list-cleanup
901 for (std::vector<pkgAcqIndexMergeDiffs *>::const_iterator I = allPatches->begin();
902 I != allPatches->end(); ++I)
903 {
904 std::string patch = FinalFile + ".ed." + (*I)->patch.file + ".gz";
905 unlink(patch.c_str());
906 }
907
47d2bc78
DK
908 // all set and done
909 Complete = true;
910 if(Debug)
911 std::clog << "allDone: " << DestFile << "\n" << std::endl;
912 }
913}
914 /*}}}*/
0118833a
AL
915// AcqIndex::AcqIndex - Constructor /*{{{*/
916// ---------------------------------------------------------------------
917/* The package file is added to the queue and a second class is
b2e465d6
AL
918 instantiated to fetch the revision file */
919pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner,
b3d44315 920 string URI,string URIDesc,string ShortDesc,
495e5cb2
MV
921 HashString ExpectedHash, string comprExt)
922 : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash)
0118833a 923{
5d885723
DK
924 if(comprExt.empty() == true)
925 {
926 // autoselect the compression method
927 std::vector<std::string> types = APT::Configuration::getCompressionTypes();
928 for (std::vector<std::string>::const_iterator t = types.begin(); t != types.end(); ++t)
929 comprExt.append(*t).append(" ");
930 if (comprExt.empty() == false)
931 comprExt.erase(comprExt.end()-1);
932 }
933 CompressionExtension = comprExt;
934
935 Init(URI, URIDesc, ShortDesc);
936}
937pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, IndexTarget const *Target,
938 HashString const &ExpectedHash, indexRecords const *MetaIndexParser)
939 : Item(Owner), RealURI(Target->URI), ExpectedHash(ExpectedHash)
940{
941 // autoselect the compression method
942 std::vector<std::string> types = APT::Configuration::getCompressionTypes();
943 CompressionExtension = "";
944 if (ExpectedHash.empty() == false)
945 {
946 for (std::vector<std::string>::const_iterator t = types.begin(); t != types.end(); ++t)
947 if (*t == "uncompressed" || MetaIndexParser->Exists(string(Target->MetaKey).append(".").append(*t)) == true)
948 CompressionExtension.append(*t).append(" ");
949 }
950 else
951 {
952 for (std::vector<std::string>::const_iterator t = types.begin(); t != types.end(); ++t)
953 CompressionExtension.append(*t).append(" ");
954 }
955 if (CompressionExtension.empty() == false)
956 CompressionExtension.erase(CompressionExtension.end()-1);
957
97efc27f
MV
958 // only verify non-optional targets, see acquire-item.h for a FIXME
959 // to make this more flexible
c5f661b7
MV
960 if (Target->IsOptional())
961 Verify = false;
97efc27f
MV
962 else
963 Verify = true;
c5f661b7 964
5d885723
DK
965 Init(Target->URI, Target->Description, Target->ShortDesc);
966}
967 /*}}}*/
968// AcqIndex::Init - defered Constructor /*{{{*/
969void pkgAcqIndex::Init(string const &URI, string const &URIDesc, string const &ShortDesc) {
8b89e57f 970 Decompression = false;
bfd22fc0 971 Erase = false;
13e8426f 972
0a8a80e5 973 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
b2e465d6 974 DestFile += URItoFileName(URI);
8267fe24 975
5d885723
DK
976 std::string const comprExt = CompressionExtension.substr(0, CompressionExtension.find(' '));
977 if (comprExt == "uncompressed")
978 Desc.URI = URI;
979 else
980 Desc.URI = URI + '.' + comprExt;
b3d44315 981
b2e465d6 982 Desc.Description = URIDesc;
8267fe24 983 Desc.Owner = this;
b2e465d6 984 Desc.ShortDesc = ShortDesc;
5d885723 985
8267fe24 986 QueueURI(Desc);
0118833a
AL
987}
988 /*}}}*/
0a8a80e5 989// AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/
0118833a 990// ---------------------------------------------------------------------
0a8a80e5
AL
991/* The only header we use is the last-modified header. */
992string pkgAcqIndex::Custom600Headers()
0118833a 993{
0a8a80e5 994 string Final = _config->FindDir("Dir::State::lists");
b2e465d6 995 Final += URItoFileName(RealURI);
01606def 996 if (_config->FindB("Acquire::GzipIndexes",false))
997 Final += ".gz";
0a8a80e5 998
97b65b10
MV
999 string msg = "\nIndex-File: true";
1000 // FIXME: this really should use "IndexTarget::IsOptional()" but that
1001 // seems to be difficult without breaking ABI
1002 if (ShortDesc().find("Translation") != 0)
1003 msg += "\nFail-Ignore: true";
0a8a80e5 1004 struct stat Buf;
3a1f49c4 1005 if (stat(Final.c_str(),&Buf) == 0)
97b65b10
MV
1006 msg += "\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
1007
1008 return msg;
0118833a
AL
1009}
1010 /*}}}*/
92fcbfc1 1011void pkgAcqIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/
debc84b2 1012{
5d885723
DK
1013 size_t const nextExt = CompressionExtension.find(' ');
1014 if (nextExt != std::string::npos)
e85b4cd5 1015 {
5d885723
DK
1016 CompressionExtension = CompressionExtension.substr(nextExt+1);
1017 Init(RealURI, Desc.Description, Desc.ShortDesc);
6abe2699 1018 return;
0d7a243d
EL
1019 }
1020
17ff0930 1021 // on decompression failure, remove bad versions in partial/
5d885723 1022 if (Decompression && Erase) {
17ff0930 1023 string s = _config->FindDir("Dir::State::lists") + "partial/";
5d885723 1024 s.append(URItoFileName(RealURI));
17ff0930 1025 unlink(s.c_str());
debc84b2
MZ
1026 }
1027
debc84b2
MZ
1028 Item::Failed(Message,Cnf);
1029}
92fcbfc1 1030 /*}}}*/
8b89e57f
AL
1031// AcqIndex::Done - Finished a fetch /*{{{*/
1032// ---------------------------------------------------------------------
1033/* This goes through a number of states.. On the initial fetch the
1034 method could possibly return an alternate filename which points
1035 to the uncompressed version of the file. If this is so the file
1036 is copied into the partial directory. In all other cases the file
1037 is decompressed with a gzip uri. */
73da43e9 1038void pkgAcqIndex::Done(string Message,unsigned long long Size,string Hash,
459681d3 1039 pkgAcquire::MethodConfig *Cfg)
8b89e57f 1040{
495e5cb2 1041 Item::Done(Message,Size,Hash,Cfg);
8b89e57f
AL
1042
1043 if (Decompression == true)
1044 {
b3d44315
MV
1045 if (_config->FindB("Debug::pkgAcquire::Auth", false))
1046 {
495e5cb2
MV
1047 std::cerr << std::endl << RealURI << ": Computed Hash: " << Hash;
1048 std::cerr << " Expected Hash: " << ExpectedHash.toStr() << std::endl;
b3d44315
MV
1049 }
1050
8a8feb29 1051 if (!ExpectedHash.empty() && ExpectedHash.toStr() != Hash)
b3d44315 1052 {
3c8030a4 1053 RenameOnError(HashSumMismatch);
b3d44315
MV
1054 return;
1055 }
0901c5d0
JAK
1056
1057 /* Verify the index file for correctness (all indexes must
4fdb6123 1058 * have a Package field) (LP: #346386) (Closes: #627642) */
c5f661b7 1059 if (Verify == true)
0901c5d0
JAK
1060 {
1061 FileFd fd(DestFile, FileFd::ReadOnly);
3c8030a4
DK
1062 // Only test for correctness if the file is not empty (empty is ok)
1063 if (fd.FileSize() > 0)
1064 {
1065 pkgTagSection sec;
1066 pkgTagFile tag(&fd);
1067
1068 // all our current indexes have a field 'Package' in each section
1069 if (_error->PendingError() == true || tag.Step(sec) == false || sec.Exists("Package") == false)
1070 {
1071 RenameOnError(InvalidFormat);
1072 return;
1073 }
a0c3110e 1074 }
0901c5d0
JAK
1075 }
1076
8b89e57f
AL
1077 // Done, move it into position
1078 string FinalFile = _config->FindDir("Dir::State::lists");
b2e465d6 1079 FinalFile += URItoFileName(RealURI);
8b89e57f 1080 Rename(DestFile,FinalFile);
7a3c2ab0 1081 chmod(FinalFile.c_str(),0644);
bfd22fc0 1082
7a7fa5f0
AL
1083 /* We restore the original name to DestFile so that the clean operation
1084 will work OK */
1085 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
b2e465d6 1086 DestFile += URItoFileName(RealURI);
7a7fa5f0 1087
bfd22fc0
AL
1088 // Remove the compressed version.
1089 if (Erase == true)
bfd22fc0 1090 unlink(DestFile.c_str());
8b89e57f
AL
1091 return;
1092 }
bfd22fc0
AL
1093
1094 Erase = false;
8267fe24 1095 Complete = true;
bfd22fc0 1096
8b89e57f
AL
1097 // Handle the unzipd case
1098 string FileName = LookupTag(Message,"Alt-Filename");
1099 if (FileName.empty() == false)
1100 {
1101 // The files timestamp matches
1102 if (StringToBool(LookupTag(Message,"Alt-IMS-Hit"),false) == true)
1103 return;
8b89e57f 1104 Decompression = true;
a6568219 1105 Local = true;
8b89e57f 1106 DestFile += ".decomp";
8267fe24
AL
1107 Desc.URI = "copy:" + FileName;
1108 QueueURI(Desc);
b98f2859 1109 Mode = "copy";
8b89e57f
AL
1110 return;
1111 }
1112
1113 FileName = LookupTag(Message,"Filename");
1114 if (FileName.empty() == true)
1115 {
1116 Status = StatError;
1117 ErrorText = "Method gave a blank filename";
1118 }
5d885723
DK
1119
1120 std::string const compExt = CompressionExtension.substr(0, CompressionExtension.find(' '));
0b9032b1 1121
8b89e57f 1122 // The files timestamp matches
0b9032b1 1123 if (StringToBool(LookupTag(Message,"IMS-Hit"),false) == true) {
1124 if (_config->FindB("Acquire::GzipIndexes",false) && compExt == "gz")
1125 // Update DestFile for .gz suffix so that the clean operation keeps it
1126 DestFile += ".gz";
8b89e57f 1127 return;
0b9032b1 1128 }
bfd22fc0
AL
1129
1130 if (FileName == DestFile)
1131 Erase = true;
8267fe24 1132 else
a6568219 1133 Local = true;
8b89e57f 1134
e85b4cd5
DK
1135 string decompProg;
1136
bb109d0b 1137 // If we enable compressed indexes and already have gzip, keep it
7aeee365 1138 if (_config->FindB("Acquire::GzipIndexes",false) && compExt == "gz" && !Local) {
bb109d0b 1139 string FinalFile = _config->FindDir("Dir::State::lists");
1140 FinalFile += URItoFileName(RealURI) + ".gz";
bb109d0b 1141 Rename(DestFile,FinalFile);
1142 chmod(FinalFile.c_str(),0644);
1143
1144 // Update DestFile for .gz suffix so that the clean operation keeps it
1145 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
1146 DestFile += URItoFileName(RealURI) + ".gz";
1147 return;
1148 }
1149
e85b4cd5
DK
1150 // get the binary name for your used compression type
1151 decompProg = _config->Find(string("Acquire::CompressionTypes::").append(compExt),"");
1152 if(decompProg.empty() == false);
5d885723 1153 else if(compExt == "uncompressed")
0d7a243d 1154 decompProg = "copy";
debc84b2
MZ
1155 else {
1156 _error->Error("Unsupported extension: %s", compExt.c_str());
1157 return;
1158 }
1159
8b89e57f
AL
1160 Decompression = true;
1161 DestFile += ".decomp";
e85b4cd5 1162 Desc.URI = decompProg + ":" + FileName;
8267fe24 1163 QueueURI(Desc);
70e0c168
MV
1164
1165 // FIXME: this points to a c++ string that goes out of scope
e85b4cd5 1166 Mode = decompProg.c_str();
8b89e57f 1167}
92fcbfc1 1168 /*}}}*/
a52f938b
OS
1169// AcqIndexTrans::pkgAcqIndexTrans - Constructor /*{{{*/
1170// ---------------------------------------------------------------------
1171/* The Translation file is added to the queue */
1172pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire *Owner,
495e5cb2
MV
1173 string URI,string URIDesc,string ShortDesc)
1174 : pkgAcqIndex(Owner, URI, URIDesc, ShortDesc, HashString(), "")
a52f938b 1175{
ab53c018
DK
1176}
1177pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire *Owner, IndexTarget const *Target,
1178 HashString const &ExpectedHash, indexRecords const *MetaIndexParser)
1179 : pkgAcqIndex(Owner, Target, ExpectedHash, MetaIndexParser)
1180{
963b16dc
MV
1181}
1182 /*}}}*/
1183// AcqIndexTrans::Custom600Headers - Insert custom request headers /*{{{*/
1184// ---------------------------------------------------------------------
1185string pkgAcqIndexTrans::Custom600Headers()
1186{
c91d9a63
DK
1187 string Final = _config->FindDir("Dir::State::lists");
1188 Final += URItoFileName(RealURI);
1189
1190 struct stat Buf;
1191 if (stat(Final.c_str(),&Buf) != 0)
a3f7fff8
MV
1192 return "\nFail-Ignore: true\nIndex-File: true";
1193 return "\nFail-Ignore: true\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
a52f938b 1194}
a52f938b
OS
1195 /*}}}*/
1196// AcqIndexTrans::Failed - Silence failure messages for missing files /*{{{*/
1197// ---------------------------------------------------------------------
1198/* */
1199void pkgAcqIndexTrans::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
1200{
5d885723
DK
1201 size_t const nextExt = CompressionExtension.find(' ');
1202 if (nextExt != std::string::npos)
1203 {
1204 CompressionExtension = CompressionExtension.substr(nextExt+1);
1205 Init(RealURI, Desc.Description, Desc.ShortDesc);
1206 Status = StatIdle;
1207 return;
1208 }
1209
a52f938b
OS
1210 if (Cnf->LocalOnly == true ||
1211 StringToBool(LookupTag(Message,"Transient-Failure"),false) == false)
1212 {
1213 // Ignore this
1214 Status = StatDone;
1215 Complete = false;
1216 Dequeue();
1217 return;
1218 }
5d885723 1219
a52f938b
OS
1220 Item::Failed(Message,Cnf);
1221}
1222 /*}}}*/
92fcbfc1 1223pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire *Owner, /*{{{*/
b3d44315
MV
1224 string URI,string URIDesc,string ShortDesc,
1225 string MetaIndexURI, string MetaIndexURIDesc,
1226 string MetaIndexShortDesc,
1227 const vector<IndexTarget*>* IndexTargets,
1228 indexRecords* MetaIndexParser) :
1229 Item(Owner), RealURI(URI), MetaIndexURI(MetaIndexURI),
46e00f9d
MV
1230 MetaIndexURIDesc(MetaIndexURIDesc), MetaIndexShortDesc(MetaIndexShortDesc),
1231 MetaIndexParser(MetaIndexParser), IndexTargets(IndexTargets)
0118833a 1232{
0a8a80e5 1233 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
b2e465d6 1234 DestFile += URItoFileName(URI);
b3d44315 1235
47eb38f4
MV
1236 // remove any partial downloaded sig-file in partial/.
1237 // it may confuse proxies and is too small to warrant a
1238 // partial download anyway
f6237efd
MV
1239 unlink(DestFile.c_str());
1240
8267fe24 1241 // Create the item
b2e465d6 1242 Desc.Description = URIDesc;
8267fe24 1243 Desc.Owner = this;
b3d44315
MV
1244 Desc.ShortDesc = ShortDesc;
1245 Desc.URI = URI;
b3d44315
MV
1246
1247 string Final = _config->FindDir("Dir::State::lists");
1248 Final += URItoFileName(RealURI);
ffcccd62 1249 if (RealFileExists(Final) == true)
b3d44315 1250 {
ef942597 1251 // File was already in place. It needs to be re-downloaded/verified
1e3f4083 1252 // because Release might have changed, we do give it a different
ef942597
MV
1253 // name than DestFile because otherwise the http method will
1254 // send If-Range requests and there are too many broken servers
1255 // out there that do not understand them
1256 LastGoodSig = DestFile+".reverify";
1257 Rename(Final,LastGoodSig);
b3d44315 1258 }
8267fe24 1259
8267fe24 1260 QueueURI(Desc);
ffcccd62
DK
1261}
1262 /*}}}*/
1263pkgAcqMetaSig::~pkgAcqMetaSig() /*{{{*/
1264{
1265 // if the file was never queued undo file-changes done in the constructor
1266 if (QueueCounter == 1 && Status == StatIdle && FileSize == 0 && Complete == false &&
1267 LastGoodSig.empty() == false)
1268 {
1269 string const Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI);
1270 if (RealFileExists(Final) == false && RealFileExists(LastGoodSig) == true)
1271 Rename(LastGoodSig, Final);
1272 }
1273
0118833a
AL
1274}
1275 /*}}}*/
b3d44315 1276// pkgAcqMetaSig::Custom600Headers - Insert custom request headers /*{{{*/
0118833a 1277// ---------------------------------------------------------------------
0a8a80e5 1278/* The only header we use is the last-modified header. */
b3d44315 1279string pkgAcqMetaSig::Custom600Headers()
0118833a 1280{
0a8a80e5 1281 struct stat Buf;
ef942597 1282 if (stat(LastGoodSig.c_str(),&Buf) != 0)
a72ace20 1283 return "\nIndex-File: true";
a789b983 1284
a72ace20 1285 return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
0118833a 1286}
b3d44315 1287
73da43e9 1288void pkgAcqMetaSig::Done(string Message,unsigned long long Size,string MD5,
b3d44315 1289 pkgAcquire::MethodConfig *Cfg)
c88edf1d 1290{
459681d3 1291 Item::Done(Message,Size,MD5,Cfg);
c88edf1d
AL
1292
1293 string FileName = LookupTag(Message,"Filename");
1294 if (FileName.empty() == true)
1295 {
1296 Status = StatError;
1297 ErrorText = "Method gave a blank filename";
8b89e57f 1298 return;
c88edf1d 1299 }
8b89e57f 1300
c88edf1d
AL
1301 if (FileName != DestFile)
1302 {
b3d44315 1303 // We have to copy it into place
a6568219 1304 Local = true;
8267fe24
AL
1305 Desc.URI = "copy:" + FileName;
1306 QueueURI(Desc);
c88edf1d
AL
1307 return;
1308 }
b3d44315
MV
1309
1310 Complete = true;
1311
ef942597
MV
1312 // put the last known good file back on i-m-s hit (it will
1313 // be re-verified again)
1314 // Else do nothing, we have the new file in DestFile then
1315 if(StringToBool(LookupTag(Message,"IMS-Hit"),false) == true)
1316 Rename(LastGoodSig, DestFile);
1317
b3d44315 1318 // queue a pkgAcqMetaIndex to be verified against the sig we just retrieved
fce72602
MV
1319 new pkgAcqMetaIndex(Owner, MetaIndexURI, MetaIndexURIDesc,
1320 MetaIndexShortDesc, DestFile, IndexTargets,
1321 MetaIndexParser);
b3d44315 1322
c88edf1d
AL
1323}
1324 /*}}}*/
92fcbfc1 1325void pkgAcqMetaSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf)/*{{{*/
681d76d0 1326{
47eb38f4 1327 string Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI);
a789b983 1328
75dd8af1 1329 // if we get a network error we fail gracefully
7e5f33eb
MV
1330 if(Status == StatTransientNetworkError)
1331 {
24057ad6 1332 Item::Failed(Message,Cnf);
484dbb81 1333 // move the sigfile back on transient network failures
7730e095 1334 if(FileExists(LastGoodSig))
ef942597 1335 Rename(LastGoodSig,Final);
7e5f33eb
MV
1336
1337 // set the status back to , Item::Failed likes to reset it
1338 Status = pkgAcquire::Item::StatTransientNetworkError;
24057ad6
MV
1339 return;
1340 }
1341
75dd8af1 1342 // Delete any existing sigfile when the acquire failed
75dd8af1
MV
1343 unlink(Final.c_str());
1344
b3d44315
MV
1345 // queue a pkgAcqMetaIndex with no sigfile
1346 new pkgAcqMetaIndex(Owner, MetaIndexURI, MetaIndexURIDesc, MetaIndexShortDesc,
1347 "", IndexTargets, MetaIndexParser);
1348
681d76d0
AL
1349 if (Cnf->LocalOnly == true ||
1350 StringToBool(LookupTag(Message,"Transient-Failure"),false) == false)
1351 {
2b154e53
AL
1352 // Ignore this
1353 Status = StatDone;
1354 Complete = false;
681d76d0
AL
1355 Dequeue();
1356 return;
1357 }
1358
1359 Item::Failed(Message,Cnf);
1360}
92fcbfc1
DK
1361 /*}}}*/
1362pkgAcqMetaIndex::pkgAcqMetaIndex(pkgAcquire *Owner, /*{{{*/
b3d44315
MV
1363 string URI,string URIDesc,string ShortDesc,
1364 string SigFile,
1365 const vector<struct IndexTarget*>* IndexTargets,
1366 indexRecords* MetaIndexParser) :
21fd1746
OS
1367 Item(Owner), RealURI(URI), SigFile(SigFile), IndexTargets(IndexTargets),
1368 MetaIndexParser(MetaIndexParser), AuthPass(false), IMSHit(false)
b3d44315 1369{
b3d44315
MV
1370 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
1371 DestFile += URItoFileName(URI);
1372
1373 // Create the item
1374 Desc.Description = URIDesc;
1375 Desc.Owner = this;
1376 Desc.ShortDesc = ShortDesc;
1377 Desc.URI = URI;
1378
1379 QueueURI(Desc);
1380}
b3d44315
MV
1381 /*}}}*/
1382// pkgAcqMetaIndex::Custom600Headers - Insert custom request headers /*{{{*/
1383// ---------------------------------------------------------------------
1384/* The only header we use is the last-modified header. */
1385string pkgAcqMetaIndex::Custom600Headers()
1386{
1387 string Final = _config->FindDir("Dir::State::lists");
1388 Final += URItoFileName(RealURI);
1389
1390 struct stat Buf;
1391 if (stat(Final.c_str(),&Buf) != 0)
1392 return "\nIndex-File: true";
1393
1394 return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
1395}
92fcbfc1 1396 /*}}}*/
73da43e9 1397void pkgAcqMetaIndex::Done(string Message,unsigned long long Size,string Hash, /*{{{*/
b3d44315
MV
1398 pkgAcquire::MethodConfig *Cfg)
1399{
495e5cb2 1400 Item::Done(Message,Size,Hash,Cfg);
b3d44315
MV
1401
1402 // MetaIndexes are done in two passes: one to download the
1403 // metaindex with an appropriate method, and a second to verify it
1404 // with the gpgv method
1405
1406 if (AuthPass == true)
1407 {
1408 AuthDone(Message);
fce72602
MV
1409
1410 // all cool, move Release file into place
1411 Complete = true;
b3d44315
MV
1412 }
1413 else
1414 {
1415 RetrievalDone(Message);
1416 if (!Complete)
1417 // Still more retrieving to do
1418 return;
1419
1420 if (SigFile == "")
1421 {
1422 // There was no signature file, so we are finished. Download
1207cf3f 1423 // the indexes and do only hashsum verification if possible
3568a640 1424 MetaIndexParser->Load(DestFile);
1207cf3f 1425 QueueIndexes(false);
b3d44315
MV
1426 }
1427 else
1428 {
1429 // There was a signature file, so pass it to gpgv for
1430 // verification
1431
1432 if (_config->FindB("Debug::pkgAcquire::Auth", false))
1433 std::cerr << "Metaindex acquired, queueing gpg verification ("
1434 << SigFile << "," << DestFile << ")\n";
1435 AuthPass = true;
1436 Desc.URI = "gpgv:" + SigFile;
1437 QueueURI(Desc);
1438 Mode = "gpgv";
56bc3358 1439 return;
b3d44315
MV
1440 }
1441 }
56bc3358
DK
1442
1443 if (Complete == true)
1444 {
1445 string FinalFile = _config->FindDir("Dir::State::lists");
1446 FinalFile += URItoFileName(RealURI);
fe0f7911
DK
1447 if (SigFile == DestFile)
1448 SigFile = FinalFile;
56bc3358
DK
1449 Rename(DestFile,FinalFile);
1450 chmod(FinalFile.c_str(),0644);
1451 DestFile = FinalFile;
1452 }
b3d44315 1453}
92fcbfc1
DK
1454 /*}}}*/
1455void pkgAcqMetaIndex::RetrievalDone(string Message) /*{{{*/
b3d44315
MV
1456{
1457 // We have just finished downloading a Release file (it is not
1458 // verified yet)
1459
1460 string FileName = LookupTag(Message,"Filename");
1461 if (FileName.empty() == true)
1462 {
1463 Status = StatError;
1464 ErrorText = "Method gave a blank filename";
1465 return;
1466 }
1467
1468 if (FileName != DestFile)
1469 {
1470 Local = true;
1471 Desc.URI = "copy:" + FileName;
1472 QueueURI(Desc);
1473 return;
1474 }
1475
fce72602 1476 // make sure to verify against the right file on I-M-S hit
f381d68d 1477 IMSHit = StringToBool(LookupTag(Message,"IMS-Hit"),false);
fce72602
MV
1478 if(IMSHit)
1479 {
1480 string FinalFile = _config->FindDir("Dir::State::lists");
1481 FinalFile += URItoFileName(RealURI);
fe0f7911 1482 if (SigFile == DestFile)
0aec7d5c 1483 {
fe0f7911 1484 SigFile = FinalFile;
0aec7d5c
DK
1485 // constructor of pkgAcqMetaClearSig moved it out of the way,
1486 // now move it back in on IMS hit for the 'old' file
1487 string const OldClearSig = DestFile + ".reverify";
1488 if (RealFileExists(OldClearSig) == true)
1489 Rename(OldClearSig, FinalFile);
1490 }
fce72602
MV
1491 DestFile = FinalFile;
1492 }
b3d44315 1493 Complete = true;
b3d44315 1494}
92fcbfc1
DK
1495 /*}}}*/
1496void pkgAcqMetaIndex::AuthDone(string Message) /*{{{*/
b3d44315
MV
1497{
1498 // At this point, the gpgv method has succeeded, so there is a
1499 // valid signature from a key in the trusted keyring. We
1500 // perform additional verification of its contents, and use them
1501 // to verify the indexes we are about to download
1502
1503 if (!MetaIndexParser->Load(DestFile))
1504 {
1505 Status = StatAuthError;
1506 ErrorText = MetaIndexParser->ErrorText;
1507 return;
1508 }
1509
ce424cd4 1510 if (!VerifyVendor(Message))
b3d44315
MV
1511 {
1512 return;
1513 }
1514
1515 if (_config->FindB("Debug::pkgAcquire::Auth", false))
1516 std::cerr << "Signature verification succeeded: "
1517 << DestFile << std::endl;
1518
1519 // Download further indexes with verification
1520 QueueIndexes(true);
1521
fe0f7911
DK
1522 // is it a clearsigned MetaIndex file?
1523 if (DestFile == SigFile)
1524 return;
1525
b3d44315 1526 // Done, move signature file into position
b3d44315
MV
1527 string VerifiedSigFile = _config->FindDir("Dir::State::lists") +
1528 URItoFileName(RealURI) + ".gpg";
1529 Rename(SigFile,VerifiedSigFile);
1530 chmod(VerifiedSigFile.c_str(),0644);
1531}
92fcbfc1
DK
1532 /*}}}*/
1533void pkgAcqMetaIndex::QueueIndexes(bool verify) /*{{{*/
b3d44315 1534{
0901c5d0 1535#if 0
4fdb6123 1536 /* Reject invalid, existing Release files (LP: #346386) (Closes: #627642)
0901c5d0
JAK
1537 * FIXME: Disabled; it breaks unsigned repositories without hashes */
1538 if (!verify && FileExists(DestFile) && !MetaIndexParser->Load(DestFile))
1539 {
1540 Status = StatError;
1541 ErrorText = MetaIndexParser->ErrorText;
1542 return;
1543 }
1544#endif
8e3900d0
DK
1545 bool transInRelease = false;
1546 {
1547 std::vector<std::string> const keys = MetaIndexParser->MetaKeys();
1548 for (std::vector<std::string>::const_iterator k = keys.begin(); k != keys.end(); ++k)
1549 // FIXME: Feels wrong to check for hardcoded string here, but what should we do else…
1550 if (k->find("Translation-") != std::string::npos)
1551 {
1552 transInRelease = true;
1553 break;
1554 }
1555 }
1556
b3d44315
MV
1557 for (vector <struct IndexTarget*>::const_iterator Target = IndexTargets->begin();
1558 Target != IndexTargets->end();
f7f0d6c7 1559 ++Target)
b3d44315 1560 {
495e5cb2 1561 HashString ExpectedIndexHash;
1207cf3f 1562 const indexRecords::checkSum *Record = MetaIndexParser->Lookup((*Target)->MetaKey);
a5b9f489 1563 bool compressedAvailable = false;
1207cf3f 1564 if (Record == NULL)
b3d44315 1565 {
a5b9f489
DK
1566 if ((*Target)->IsOptional() == true)
1567 {
1568 std::vector<std::string> types = APT::Configuration::getCompressionTypes();
1569 for (std::vector<std::string>::const_iterator t = types.begin(); t != types.end(); ++t)
e788a834 1570 if (MetaIndexParser->Exists((*Target)->MetaKey + "." + *t) == true)
a5b9f489
DK
1571 {
1572 compressedAvailable = true;
1573 break;
1574 }
1575 }
1576 else if (verify == true)
ab53c018 1577 {
1207cf3f
DK
1578 Status = StatAuthError;
1579 strprintf(ErrorText, _("Unable to find expected entry '%s' in Release file (Wrong sources.list entry or malformed file)"), (*Target)->MetaKey.c_str());
1580 return;
ab53c018 1581 }
1207cf3f
DK
1582 }
1583 else
1584 {
1585 ExpectedIndexHash = Record->Hash;
1586 if (_config->FindB("Debug::pkgAcquire::Auth", false))
ab53c018 1587 {
1207cf3f
DK
1588 std::cerr << "Queueing: " << (*Target)->URI << std::endl;
1589 std::cerr << "Expected Hash: " << ExpectedIndexHash.toStr() << std::endl;
1590 std::cerr << "For: " << Record->MetaKeyFilename << std::endl;
1591 }
1592 if (verify == true && ExpectedIndexHash.empty() == true && (*Target)->IsOptional() == false)
1593 {
1594 Status = StatAuthError;
1595 strprintf(ErrorText, _("Unable to find hash sum for '%s' in Release file"), (*Target)->MetaKey.c_str());
1596 return;
ab53c018
DK
1597 }
1598 }
1599
1600 if ((*Target)->IsOptional() == true)
1601 {
1602 if ((*Target)->IsSubIndex() == true)
1603 new pkgAcqSubIndex(Owner, (*Target)->URI, (*Target)->Description,
1604 (*Target)->ShortDesc, ExpectedIndexHash);
a5b9f489 1605 else if (transInRelease == false || Record != NULL || compressedAvailable == true)
8e3900d0 1606 {
f55602cb 1607 if (_config->FindB("Acquire::PDiffs",true) == true && transInRelease == true &&
e788a834 1608 MetaIndexParser->Exists((*Target)->MetaKey + ".diff/Index") == true)
f55602cb
DK
1609 new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description,
1610 (*Target)->ShortDesc, ExpectedIndexHash);
1611 else
1612 new pkgAcqIndexTrans(Owner, *Target, ExpectedIndexHash, MetaIndexParser);
8e3900d0 1613 }
ab53c018 1614 continue;
b3d44315 1615 }
e1430400
DK
1616
1617 /* Queue Packages file (either diff or full packages files, depending
1618 on the users option) - we also check if the PDiff Index file is listed
1619 in the Meta-Index file. Ideal would be if pkgAcqDiffIndex would test this
1620 instead, but passing the required info to it is to much hassle */
1621 if(_config->FindB("Acquire::PDiffs",true) == true && (verify == false ||
e788a834 1622 MetaIndexParser->Exists((*Target)->MetaKey + ".diff/Index") == true))
2ac3eeb6 1623 new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description,
495e5cb2 1624 (*Target)->ShortDesc, ExpectedIndexHash);
e1430400 1625 else
5d885723 1626 new pkgAcqIndex(Owner, *Target, ExpectedIndexHash, MetaIndexParser);
b3d44315
MV
1627 }
1628}
92fcbfc1
DK
1629 /*}}}*/
1630bool pkgAcqMetaIndex::VerifyVendor(string Message) /*{{{*/
b3d44315 1631{
ce424cd4
MV
1632 string::size_type pos;
1633
1634 // check for missing sigs (that where not fatal because otherwise we had
1635 // bombed earlier)
1636 string missingkeys;
400ad7a4 1637 string msg = _("There is no public key available for the "
ce424cd4
MV
1638 "following key IDs:\n");
1639 pos = Message.find("NO_PUBKEY ");
1640 if (pos != std::string::npos)
1641 {
1642 string::size_type start = pos+strlen("NO_PUBKEY ");
1643 string Fingerprint = Message.substr(start, Message.find("\n")-start);
1644 missingkeys += (Fingerprint);
1645 }
1646 if(!missingkeys.empty())
e788a834 1647 _error->Warning("%s", (msg + missingkeys).c_str());
b3d44315
MV
1648
1649 string Transformed = MetaIndexParser->GetExpectedDist();
1650
1651 if (Transformed == "../project/experimental")
1652 {
1653 Transformed = "experimental";
1654 }
1655
ce424cd4 1656 pos = Transformed.rfind('/');
b3d44315
MV
1657 if (pos != string::npos)
1658 {
1659 Transformed = Transformed.substr(0, pos);
1660 }
1661
1662 if (Transformed == ".")
1663 {
1664 Transformed = "";
1665 }
1666
0323317c
DK
1667 if (_config->FindB("Acquire::Check-Valid-Until", true) == true &&
1668 MetaIndexParser->GetValidUntil() > 0) {
1669 time_t const invalid_since = time(NULL) - MetaIndexParser->GetValidUntil();
1670 if (invalid_since > 0)
1671 // TRANSLATOR: The first %s is the URL of the bad Release file, the second is
1672 // the time since then the file is invalid - formated in the same way as in
1673 // the download progress display (e.g. 7d 3h 42min 1s)
457bea86
MV
1674 return _error->Error(
1675 _("Release file for %s is expired (invalid since %s). "
1676 "Updates for this repository will not be applied."),
1677 RealURI.c_str(), TimeToStr(invalid_since).c_str());
1ddb8596
DK
1678 }
1679
b3d44315
MV
1680 if (_config->FindB("Debug::pkgAcquire::Auth", false))
1681 {
1682 std::cerr << "Got Codename: " << MetaIndexParser->GetDist() << std::endl;
1683 std::cerr << "Expecting Dist: " << MetaIndexParser->GetExpectedDist() << std::endl;
1684 std::cerr << "Transformed Dist: " << Transformed << std::endl;
1685 }
1686
1687 if (MetaIndexParser->CheckDist(Transformed) == false)
1688 {
1689 // This might become fatal one day
1690// Status = StatAuthError;
1691// ErrorText = "Conflicting distribution; expected "
1692// + MetaIndexParser->GetExpectedDist() + " but got "
1693// + MetaIndexParser->GetDist();
1694// return false;
1695 if (!Transformed.empty())
1696 {
1ddb8596 1697 _error->Warning(_("Conflicting distribution: %s (expected %s but got %s)"),
b3d44315
MV
1698 Desc.Description.c_str(),
1699 Transformed.c_str(),
1700 MetaIndexParser->GetDist().c_str());
1701 }
1702 }
1703
1704 return true;
1705}
92fcbfc1
DK
1706 /*}}}*/
1707// pkgAcqMetaIndex::Failed - no Release file present or no signature file present /*{{{*/
b3d44315
MV
1708// ---------------------------------------------------------------------
1709/* */
65512241 1710void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig * /*Cnf*/)
b3d44315
MV
1711{
1712 if (AuthPass == true)
1713 {
fce72602 1714 // gpgv method failed, if we have a good signature
39f38a81
DK
1715 string LastGoodSigFile = _config->FindDir("Dir::State::lists").append("partial/").append(URItoFileName(RealURI));
1716 if (DestFile != SigFile)
1717 LastGoodSigFile.append(".gpg");
1718 LastGoodSigFile.append(".reverify");
fe0f7911 1719
fce72602 1720 if(FileExists(LastGoodSigFile))
f381d68d 1721 {
39f38a81 1722 string VerifiedSigFile = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI);
fe0f7911 1723 if (DestFile != SigFile)
39f38a81
DK
1724 VerifiedSigFile.append(".gpg");
1725 Rename(LastGoodSigFile, VerifiedSigFile);
fce72602 1726 Status = StatTransientNetworkError;
b5595da9 1727 _error->Warning(_("An error occurred during the signature "
fce72602 1728 "verification. The repository is not updated "
2493f4b5 1729 "and the previous index files will be used. "
76b8e5a5 1730 "GPG error: %s: %s\n"),
fce72602
MV
1731 Desc.Description.c_str(),
1732 LookupTag(Message,"Message").c_str());
5d149bfc 1733 RunScripts("APT::Update::Auth-Failure");
f381d68d 1734 return;
0901c5d0 1735 } else if (LookupTag(Message,"Message").find("NODATA") != string::npos) {
4fdb6123 1736 /* Invalid signature file, reject (LP: #346386) (Closes: #627642) */
0901c5d0
JAK
1737 _error->Error(_("GPG error: %s: %s"),
1738 Desc.Description.c_str(),
1739 LookupTag(Message,"Message").c_str());
1740 return;
fce72602
MV
1741 } else {
1742 _error->Warning(_("GPG error: %s: %s"),
1743 Desc.Description.c_str(),
1744 LookupTag(Message,"Message").c_str());
f381d68d 1745 }
f381d68d 1746 // gpgv method failed
59271f62 1747 ReportMirrorFailure("GPGFailure");
b3d44315
MV
1748 }
1749
7ea7ac9e
JAK
1750 /* Always move the meta index, even if gpgv failed. This ensures
1751 * that PackageFile objects are correctly filled in */
a235ddf8 1752 if (FileExists(DestFile)) {
7ea7ac9e
JAK
1753 string FinalFile = _config->FindDir("Dir::State::lists");
1754 FinalFile += URItoFileName(RealURI);
1755 /* InRelease files become Release files, otherwise
1756 * they would be considered as trusted later on */
1757 if (SigFile == DestFile) {
1758 RealURI = RealURI.replace(RealURI.rfind("InRelease"), 9,
1759 "Release");
1760 FinalFile = FinalFile.replace(FinalFile.rfind("InRelease"), 9,
1761 "Release");
1762 SigFile = FinalFile;
1763 }
1764 Rename(DestFile,FinalFile);
1765 chmod(FinalFile.c_str(),0644);
1766
1767 DestFile = FinalFile;
1768 }
1769
b3d44315
MV
1770 // No Release file was present, or verification failed, so fall
1771 // back to queueing Packages files without verification
1772 QueueIndexes(false);
1773}
681d76d0 1774 /*}}}*/
fe0f7911
DK
1775pkgAcqMetaClearSig::pkgAcqMetaClearSig(pkgAcquire *Owner, /*{{{*/
1776 string const &URI, string const &URIDesc, string const &ShortDesc,
1777 string const &MetaIndexURI, string const &MetaIndexURIDesc, string const &MetaIndexShortDesc,
1778 string const &MetaSigURI, string const &MetaSigURIDesc, string const &MetaSigShortDesc,
1779 const vector<struct IndexTarget*>* IndexTargets,
1780 indexRecords* MetaIndexParser) :
1781 pkgAcqMetaIndex(Owner, URI, URIDesc, ShortDesc, "", IndexTargets, MetaIndexParser),
1782 MetaIndexURI(MetaIndexURI), MetaIndexURIDesc(MetaIndexURIDesc), MetaIndexShortDesc(MetaIndexShortDesc),
1783 MetaSigURI(MetaSigURI), MetaSigURIDesc(MetaSigURIDesc), MetaSigShortDesc(MetaSigShortDesc)
1784{
1785 SigFile = DestFile;
39f38a81
DK
1786
1787 // keep the old InRelease around in case of transistent network errors
1788 string const Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI);
ffcccd62 1789 if (RealFileExists(Final) == true)
39f38a81
DK
1790 {
1791 string const LastGoodSig = DestFile + ".reverify";
1792 Rename(Final,LastGoodSig);
1793 }
fe0f7911
DK
1794}
1795 /*}}}*/
ffcccd62
DK
1796pkgAcqMetaClearSig::~pkgAcqMetaClearSig() /*{{{*/
1797{
1798 // if the file was never queued undo file-changes done in the constructor
1799 if (QueueCounter == 1 && Status == StatIdle && FileSize == 0 && Complete == false)
1800 {
1801 string const Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI);
1802 string const LastGoodSig = DestFile + ".reverify";
1803 if (RealFileExists(Final) == false && RealFileExists(LastGoodSig) == true)
1804 Rename(LastGoodSig, Final);
1805 }
1806}
1807 /*}}}*/
8d6c5839
MV
1808// pkgAcqMetaClearSig::Custom600Headers - Insert custom request headers /*{{{*/
1809// ---------------------------------------------------------------------
1810// FIXME: this can go away once the InRelease file is used widely
1811string pkgAcqMetaClearSig::Custom600Headers()
1812{
1813 string Final = _config->FindDir("Dir::State::lists");
1814 Final += URItoFileName(RealURI);
1815
1816 struct stat Buf;
1817 if (stat(Final.c_str(),&Buf) != 0)
0aec7d5c
DK
1818 {
1819 Final = DestFile + ".reverify";
1820 if (stat(Final.c_str(),&Buf) != 0)
1821 return "\nIndex-File: true\nFail-Ignore: true\n";
1822 }
8d6c5839
MV
1823
1824 return "\nIndex-File: true\nFail-Ignore: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
1825}
1826 /*}}}*/
fe0f7911
DK
1827void pkgAcqMetaClearSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/
1828{
1829 if (AuthPass == false)
1830 {
de498a52
DK
1831 // Remove the 'old' InRelease file if we try Release.gpg now as otherwise
1832 // the file will stay around and gives a false-auth impression (CVE-2012-0214)
1833 string FinalFile = _config->FindDir("Dir::State::lists");
1834 FinalFile.append(URItoFileName(RealURI));
1835 if (FileExists(FinalFile))
1836 unlink(FinalFile.c_str());
1837
fe0f7911
DK
1838 new pkgAcqMetaSig(Owner,
1839 MetaSigURI, MetaSigURIDesc, MetaSigShortDesc,
1840 MetaIndexURI, MetaIndexURIDesc, MetaIndexShortDesc,
1841 IndexTargets, MetaIndexParser);
1842 if (Cnf->LocalOnly == true ||
1843 StringToBool(LookupTag(Message, "Transient-Failure"), false) == false)
1844 Dequeue();
1845 }
1846 else
1847 pkgAcqMetaIndex::Failed(Message, Cnf);
1848}
1849 /*}}}*/
03e39e59
AL
1850// AcqArchive::AcqArchive - Constructor /*{{{*/
1851// ---------------------------------------------------------------------
17caf1b1
AL
1852/* This just sets up the initial fetch environment and queues the first
1853 possibilitiy */
03e39e59 1854pkgAcqArchive::pkgAcqArchive(pkgAcquire *Owner,pkgSourceList *Sources,
30e1eab5
AL
1855 pkgRecords *Recs,pkgCache::VerIterator const &Version,
1856 string &StoreFilename) :
1857 Item(Owner), Version(Version), Sources(Sources), Recs(Recs),
b3d44315
MV
1858 StoreFilename(StoreFilename), Vf(Version.FileList()),
1859 Trusted(false)
03e39e59 1860{
7d8afa39 1861 Retries = _config->FindI("Acquire::Retries",0);
813c8eea
AL
1862
1863 if (Version.Arch() == 0)
bdae53f1 1864 {
d1f1f6a8 1865 _error->Error(_("I wasn't able to locate a file for the %s package. "
7a3c2ab0
AL
1866 "This might mean you need to manually fix this package. "
1867 "(due to missing arch)"),
813c8eea 1868 Version.ParentPkg().Name());
bdae53f1
AL
1869 return;
1870 }
813c8eea 1871
b2e465d6
AL
1872 /* We need to find a filename to determine the extension. We make the
1873 assumption here that all the available sources for this version share
1874 the same extension.. */
1875 // Skip not source sources, they do not have file fields.
69c2ecbd 1876 for (; Vf.end() == false; ++Vf)
b2e465d6
AL
1877 {
1878 if ((Vf.File()->Flags & pkgCache::Flag::NotSource) != 0)
1879 continue;
1880 break;
1881 }
1882
1883 // Does not really matter here.. we are going to fail out below
1884 if (Vf.end() != true)
1885 {
1886 // If this fails to get a file name we will bomb out below.
1887 pkgRecords::Parser &Parse = Recs->Lookup(Vf);
1888 if (_error->PendingError() == true)
1889 return;
1890
1891 // Generate the final file name as: package_version_arch.foo
1892 StoreFilename = QuoteString(Version.ParentPkg().Name(),"_:") + '_' +
1893 QuoteString(Version.VerStr(),"_:") + '_' +
1894 QuoteString(Version.Arch(),"_:.") +
1895 "." + flExtension(Parse.FileName());
1896 }
b3d44315
MV
1897
1898 // check if we have one trusted source for the package. if so, switch
6c34ccca
DK
1899 // to "TrustedOnly" mode - but only if not in AllowUnauthenticated mode
1900 bool const allowUnauth = _config->FindB("APT::Get::AllowUnauthenticated", false);
1901 bool const debugAuth = _config->FindB("Debug::pkgAcquire::Auth", false);
1902 bool seenUntrusted = false;
f7f0d6c7 1903 for (pkgCache::VerFileIterator i = Version.FileList(); i.end() == false; ++i)
b3d44315
MV
1904 {
1905 pkgIndexFile *Index;
1906 if (Sources->FindIndex(i.File(),Index) == false)
1907 continue;
6c34ccca
DK
1908
1909 if (debugAuth == true)
b3d44315 1910 std::cerr << "Checking index: " << Index->Describe()
6c34ccca
DK
1911 << "(Trusted=" << Index->IsTrusted() << ")" << std::endl;
1912
1913 if (Index->IsTrusted() == true)
1914 {
b3d44315 1915 Trusted = true;
6c34ccca
DK
1916 if (allowUnauth == false)
1917 break;
b3d44315 1918 }
6c34ccca
DK
1919 else
1920 seenUntrusted = true;
b3d44315
MV
1921 }
1922
a3371852
MV
1923 // "allow-unauthenticated" restores apts old fetching behaviour
1924 // that means that e.g. unauthenticated file:// uris are higher
1925 // priority than authenticated http:// uris
6c34ccca 1926 if (allowUnauth == true && seenUntrusted == true)
a3371852
MV
1927 Trusted = false;
1928
03e39e59 1929 // Select a source
b185acc2 1930 if (QueueNext() == false && _error->PendingError() == false)
d57f6084
DK
1931 _error->Error(_("Can't find a source to download version '%s' of '%s'"),
1932 Version.VerStr(), Version.ParentPkg().FullName(false).c_str());
b185acc2
AL
1933}
1934 /*}}}*/
1935// AcqArchive::QueueNext - Queue the next file source /*{{{*/
1936// ---------------------------------------------------------------------
17caf1b1
AL
1937/* This queues the next available file version for download. It checks if
1938 the archive is already available in the cache and stashs the MD5 for
1939 checking later. */
b185acc2 1940bool pkgAcqArchive::QueueNext()
a722b2c5
DK
1941{
1942 string const ForceHash = _config->Find("Acquire::ForceHash");
f7f0d6c7 1943 for (; Vf.end() == false; ++Vf)
03e39e59
AL
1944 {
1945 // Ignore not source sources
1946 if ((Vf.File()->Flags & pkgCache::Flag::NotSource) != 0)
1947 continue;
1948
1949 // Try to cross match against the source list
b2e465d6
AL
1950 pkgIndexFile *Index;
1951 if (Sources->FindIndex(Vf.File(),Index) == false)
1952 continue;
03e39e59 1953
b3d44315
MV
1954 // only try to get a trusted package from another source if that source
1955 // is also trusted
1956 if(Trusted && !Index->IsTrusted())
1957 continue;
1958
03e39e59
AL
1959 // Grab the text package record
1960 pkgRecords::Parser &Parse = Recs->Lookup(Vf);
1961 if (_error->PendingError() == true)
b185acc2 1962 return false;
03e39e59 1963
b2e465d6 1964 string PkgFile = Parse.FileName();
a722b2c5
DK
1965 if (ForceHash.empty() == false)
1966 {
d9b9e9e2
MV
1967 if(stringcasecmp(ForceHash, "sha512") == 0)
1968 ExpectedHash = HashString("SHA512", Parse.SHA512Hash());
ee5f5d25 1969 else if(stringcasecmp(ForceHash, "sha256") == 0)
a722b2c5
DK
1970 ExpectedHash = HashString("SHA256", Parse.SHA256Hash());
1971 else if (stringcasecmp(ForceHash, "sha1") == 0)
1972 ExpectedHash = HashString("SHA1", Parse.SHA1Hash());
1973 else
1974 ExpectedHash = HashString("MD5Sum", Parse.MD5Hash());
1975 }
1976 else
1977 {
1978 string Hash;
d9b9e9e2
MV
1979 if ((Hash = Parse.SHA512Hash()).empty() == false)
1980 ExpectedHash = HashString("SHA512", Hash);
1981 else if ((Hash = Parse.SHA256Hash()).empty() == false)
a722b2c5
DK
1982 ExpectedHash = HashString("SHA256", Hash);
1983 else if ((Hash = Parse.SHA1Hash()).empty() == false)
1984 ExpectedHash = HashString("SHA1", Hash);
1985 else
1986 ExpectedHash = HashString("MD5Sum", Parse.MD5Hash());
1987 }
03e39e59 1988 if (PkgFile.empty() == true)
b2e465d6
AL
1989 return _error->Error(_("The package index files are corrupted. No Filename: "
1990 "field for package %s."),
1991 Version.ParentPkg().Name());
a6568219 1992
b3d44315
MV
1993 Desc.URI = Index->ArchiveURI(PkgFile);
1994 Desc.Description = Index->ArchiveInfo(Version);
1995 Desc.Owner = this;
1996 Desc.ShortDesc = Version.ParentPkg().Name();
1997
17caf1b1 1998 // See if we already have the file. (Legacy filenames)
a6568219
AL
1999 FileSize = Version->Size;
2000 string FinalFile = _config->FindDir("Dir::Cache::Archives") + flNotDir(PkgFile);
2001 struct stat Buf;
2002 if (stat(FinalFile.c_str(),&Buf) == 0)
2003 {
2004 // Make sure the size matches
73da43e9 2005 if ((unsigned long long)Buf.st_size == Version->Size)
a6568219
AL
2006 {
2007 Complete = true;
2008 Local = true;
2009 Status = StatDone;
30e1eab5 2010 StoreFilename = DestFile = FinalFile;
b185acc2 2011 return true;
a6568219
AL
2012 }
2013
6b1ff003
AL
2014 /* Hmm, we have a file and its size does not match, this means it is
2015 an old style mismatched arch */
a6568219
AL
2016 unlink(FinalFile.c_str());
2017 }
17caf1b1
AL
2018
2019 // Check it again using the new style output filenames
2020 FinalFile = _config->FindDir("Dir::Cache::Archives") + flNotDir(StoreFilename);
2021 if (stat(FinalFile.c_str(),&Buf) == 0)
2022 {
2023 // Make sure the size matches
73da43e9 2024 if ((unsigned long long)Buf.st_size == Version->Size)
17caf1b1
AL
2025 {
2026 Complete = true;
2027 Local = true;
2028 Status = StatDone;
2029 StoreFilename = DestFile = FinalFile;
2030 return true;
2031 }
2032
1e3f4083 2033 /* Hmm, we have a file and its size does not match, this shouldn't
17caf1b1
AL
2034 happen.. */
2035 unlink(FinalFile.c_str());
2036 }
2037
2038 DestFile = _config->FindDir("Dir::Cache::Archives") + "partial/" + flNotDir(StoreFilename);
6b1ff003
AL
2039
2040 // Check the destination file
2041 if (stat(DestFile.c_str(),&Buf) == 0)
2042 {
2043 // Hmm, the partial file is too big, erase it
73da43e9 2044 if ((unsigned long long)Buf.st_size > Version->Size)
6b1ff003
AL
2045 unlink(DestFile.c_str());
2046 else
2047 PartialSize = Buf.st_size;
2048 }
de31189f
DK
2049
2050 // Disables download of archives - useful if no real installation follows,
2051 // e.g. if we are just interested in proposed installation order
2052 if (_config->FindB("Debug::pkgAcqArchive::NoQueue", false) == true)
2053 {
2054 Complete = true;
2055 Local = true;
2056 Status = StatDone;
2057 StoreFilename = DestFile = FinalFile;
2058 return true;
2059 }
2060
03e39e59 2061 // Create the item
b2e465d6
AL
2062 Local = false;
2063 Desc.URI = Index->ArchiveURI(PkgFile);
2064 Desc.Description = Index->ArchiveInfo(Version);
03e39e59
AL
2065 Desc.Owner = this;
2066 Desc.ShortDesc = Version.ParentPkg().Name();
2067 QueueURI(Desc);
b185acc2 2068
f7f0d6c7 2069 ++Vf;
b185acc2 2070 return true;
03e39e59 2071 }
b185acc2
AL
2072 return false;
2073}
03e39e59
AL
2074 /*}}}*/
2075// AcqArchive::Done - Finished fetching /*{{{*/
2076// ---------------------------------------------------------------------
2077/* */
73da43e9 2078void pkgAcqArchive::Done(string Message,unsigned long long Size,string CalcHash,
459681d3 2079 pkgAcquire::MethodConfig *Cfg)
03e39e59 2080{
495e5cb2 2081 Item::Done(Message,Size,CalcHash,Cfg);
03e39e59
AL
2082
2083 // Check the size
2084 if (Size != Version->Size)
2085 {
3c8030a4 2086 RenameOnError(SizeMismatch);
03e39e59
AL
2087 return;
2088 }
2089
495e5cb2 2090 // Check the hash
8a8feb29 2091 if(ExpectedHash.toStr() != CalcHash)
03e39e59 2092 {
3c8030a4 2093 RenameOnError(HashSumMismatch);
495e5cb2 2094 return;
03e39e59 2095 }
a6568219
AL
2096
2097 // Grab the output filename
03e39e59
AL
2098 string FileName = LookupTag(Message,"Filename");
2099 if (FileName.empty() == true)
2100 {
2101 Status = StatError;
2102 ErrorText = "Method gave a blank filename";
2103 return;
2104 }
a6568219
AL
2105
2106 Complete = true;
30e1eab5
AL
2107
2108 // Reference filename
a6568219
AL
2109 if (FileName != DestFile)
2110 {
30e1eab5 2111 StoreFilename = DestFile = FileName;
a6568219
AL
2112 Local = true;
2113 return;
2114 }
2115
2116 // Done, move it into position
2117 string FinalFile = _config->FindDir("Dir::Cache::Archives");
17caf1b1 2118 FinalFile += flNotDir(StoreFilename);
a6568219 2119 Rename(DestFile,FinalFile);
03e39e59 2120
30e1eab5 2121 StoreFilename = DestFile = FinalFile;
03e39e59
AL
2122 Complete = true;
2123}
2124 /*}}}*/
db890fdb
AL
2125// AcqArchive::Failed - Failure handler /*{{{*/
2126// ---------------------------------------------------------------------
2127/* Here we try other sources */
7d8afa39 2128void pkgAcqArchive::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
db890fdb
AL
2129{
2130 ErrorText = LookupTag(Message,"Message");
b2e465d6
AL
2131
2132 /* We don't really want to retry on failed media swaps, this prevents
2133 that. An interesting observation is that permanent failures are not
2134 recorded. */
2135 if (Cnf->Removable == true &&
2136 StringToBool(LookupTag(Message,"Transient-Failure"),false) == true)
2137 {
2138 // Vf = Version.FileList();
f7f0d6c7 2139 while (Vf.end() == false) ++Vf;
b2e465d6
AL
2140 StoreFilename = string();
2141 Item::Failed(Message,Cnf);
2142 return;
2143 }
2144
db890fdb 2145 if (QueueNext() == false)
7d8afa39
AL
2146 {
2147 // This is the retry counter
2148 if (Retries != 0 &&
2149 Cnf->LocalOnly == false &&
2150 StringToBool(LookupTag(Message,"Transient-Failure"),false) == true)
2151 {
2152 Retries--;
2153 Vf = Version.FileList();
2154 if (QueueNext() == true)
2155 return;
2156 }
2157
9dbb421f 2158 StoreFilename = string();
7d8afa39
AL
2159 Item::Failed(Message,Cnf);
2160 }
db890fdb
AL
2161}
2162 /*}}}*/
92fcbfc1 2163// AcqArchive::IsTrusted - Determine whether this archive comes from a trusted source /*{{{*/
b3d44315 2164// ---------------------------------------------------------------------
a02db58f 2165APT_PURE bool pkgAcqArchive::IsTrusted()
b3d44315
MV
2166{
2167 return Trusted;
2168}
92fcbfc1 2169 /*}}}*/
ab559b35
AL
2170// AcqArchive::Finished - Fetching has finished, tidy up /*{{{*/
2171// ---------------------------------------------------------------------
2172/* */
2173void pkgAcqArchive::Finished()
2174{
2175 if (Status == pkgAcquire::Item::StatDone &&
2176 Complete == true)
2177 return;
2178 StoreFilename = string();
2179}
2180 /*}}}*/
36375005
AL
2181// AcqFile::pkgAcqFile - Constructor /*{{{*/
2182// ---------------------------------------------------------------------
2183/* The file is added to the queue */
8a8feb29 2184pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI,string Hash,
73da43e9 2185 unsigned long long Size,string Dsc,string ShortDesc,
77278c2b
MV
2186 const string &DestDir, const string &DestFilename,
2187 bool IsIndexFile) :
2188 Item(Owner), ExpectedHash(Hash), IsIndexFile(IsIndexFile)
36375005 2189{
08cfc005
AL
2190 Retries = _config->FindI("Acquire::Retries",0);
2191
46e00f9d
MV
2192 if(!DestFilename.empty())
2193 DestFile = DestFilename;
2194 else if(!DestDir.empty())
2195 DestFile = DestDir + "/" + flNotDir(URI);
2196 else
2197 DestFile = flNotDir(URI);
2198
36375005
AL
2199 // Create the item
2200 Desc.URI = URI;
2201 Desc.Description = Dsc;
2202 Desc.Owner = this;
2203
2204 // Set the short description to the archive component
2205 Desc.ShortDesc = ShortDesc;
2206
2207 // Get the transfer sizes
2208 FileSize = Size;
2209 struct stat Buf;
2210 if (stat(DestFile.c_str(),&Buf) == 0)
2211 {
2212 // Hmm, the partial file is too big, erase it
ed9665ae 2213 if ((Size > 0) && (unsigned long long)Buf.st_size > Size)
36375005
AL
2214 unlink(DestFile.c_str());
2215 else
2216 PartialSize = Buf.st_size;
2217 }
092ae175 2218
36375005
AL
2219 QueueURI(Desc);
2220}
2221 /*}}}*/
2222// AcqFile::Done - Item downloaded OK /*{{{*/
2223// ---------------------------------------------------------------------
2224/* */
73da43e9 2225void pkgAcqFile::Done(string Message,unsigned long long Size,string CalcHash,
459681d3 2226 pkgAcquire::MethodConfig *Cnf)
36375005 2227{
495e5cb2
MV
2228 Item::Done(Message,Size,CalcHash,Cnf);
2229
8a8feb29 2230 // Check the hash
2c941d89 2231 if(!ExpectedHash.empty() && ExpectedHash.toStr() != CalcHash)
b3c39978 2232 {
3c8030a4 2233 RenameOnError(HashSumMismatch);
495e5cb2 2234 return;
b3c39978
AL
2235 }
2236
36375005
AL
2237 string FileName = LookupTag(Message,"Filename");
2238 if (FileName.empty() == true)
2239 {
2240 Status = StatError;
2241 ErrorText = "Method gave a blank filename";
2242 return;
2243 }
2244
2245 Complete = true;
2246
2247 // The files timestamp matches
2248 if (StringToBool(LookupTag(Message,"IMS-Hit"),false) == true)
2249 return;
2250
2251 // We have to copy it into place
2252 if (FileName != DestFile)
2253 {
2254 Local = true;
459681d3
AL
2255 if (_config->FindB("Acquire::Source-Symlinks",true) == false ||
2256 Cnf->Removable == true)
917ae805
AL
2257 {
2258 Desc.URI = "copy:" + FileName;
2259 QueueURI(Desc);
2260 return;
2261 }
2262
83ab33fc
AL
2263 // Erase the file if it is a symlink so we can overwrite it
2264 struct stat St;
2265 if (lstat(DestFile.c_str(),&St) == 0)
2266 {
2267 if (S_ISLNK(St.st_mode) != 0)
2268 unlink(DestFile.c_str());
2269 }
2270
2271 // Symlink the file
917ae805
AL
2272 if (symlink(FileName.c_str(),DestFile.c_str()) != 0)
2273 {
83ab33fc 2274 ErrorText = "Link to " + DestFile + " failure ";
917ae805
AL
2275 Status = StatError;
2276 Complete = false;
2277 }
36375005
AL
2278 }
2279}
2280 /*}}}*/
08cfc005
AL
2281// AcqFile::Failed - Failure handler /*{{{*/
2282// ---------------------------------------------------------------------
2283/* Here we try other sources */
2284void pkgAcqFile::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
2285{
2286 ErrorText = LookupTag(Message,"Message");
2287
2288 // This is the retry counter
2289 if (Retries != 0 &&
2290 Cnf->LocalOnly == false &&
2291 StringToBool(LookupTag(Message,"Transient-Failure"),false) == true)
2292 {
2293 Retries--;
2294 QueueURI(Desc);
2295 return;
2296 }
2297
2298 Item::Failed(Message,Cnf);
2299}
2300 /*}}}*/
77278c2b
MV
2301// AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/
2302// ---------------------------------------------------------------------
2303/* The only header we use is the last-modified header. */
2304string pkgAcqFile::Custom600Headers()
2305{
2306 if (IsIndexFile)
2307 return "\nIndex-File: true";
61a07c57 2308 return "";
77278c2b
MV
2309}
2310 /*}}}*/