]> git.saurik.com Git - apt.git/blame - apt-pkg/acquire-item.cc
* improve the timeout handling (again)
[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 /*{{{*/
16#ifdef __GNUG__
17#pragma implementation "apt-pkg/acquire-item.h"
18#endif
19#include <apt-pkg/acquire-item.h>
20#include <apt-pkg/configuration.h>
b2e465d6 21#include <apt-pkg/sourcelist.h>
b3d44315 22#include <apt-pkg/vendorlist.h>
03e39e59 23#include <apt-pkg/error.h>
cdcc6d34 24#include <apt-pkg/strutl.h>
36375005 25#include <apt-pkg/fileutl.h>
b3d44315 26#include <apt-pkg/md5.h>
0a8a80e5 27
b2e465d6
AL
28#include <apti18n.h>
29
0a8a80e5
AL
30#include <sys/stat.h>
31#include <unistd.h>
c88edf1d 32#include <errno.h>
5819a761 33#include <string>
c88edf1d 34#include <stdio.h>
0118833a
AL
35 /*}}}*/
36
b3d44315 37using namespace std;
5819a761 38
0118833a
AL
39// Acquire::Item::Item - Constructor /*{{{*/
40// ---------------------------------------------------------------------
41/* */
8267fe24 42pkgAcquire::Item::Item(pkgAcquire *Owner) : Owner(Owner), FileSize(0),
6b1ff003
AL
43 PartialSize(0), Mode(0), ID(0), Complete(false),
44 Local(false), QueueCounter(0)
0118833a
AL
45{
46 Owner->Add(this);
c88edf1d 47 Status = StatIdle;
0118833a
AL
48}
49 /*}}}*/
50// Acquire::Item::~Item - Destructor /*{{{*/
51// ---------------------------------------------------------------------
52/* */
53pkgAcquire::Item::~Item()
54{
55 Owner->Remove(this);
56}
57 /*}}}*/
c88edf1d
AL
58// Acquire::Item::Failed - Item failed to download /*{{{*/
59// ---------------------------------------------------------------------
93bf083d
AL
60/* We return to an idle state if there are still other queues that could
61 fetch this object */
7d8afa39 62void pkgAcquire::Item::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
c88edf1d 63{
93bf083d 64 Status = StatIdle;
db890fdb 65 ErrorText = LookupTag(Message,"Message");
c88edf1d 66 if (QueueCounter <= 1)
93bf083d 67 {
a72ace20 68 /* This indicates that the file is not available right now but might
7d8afa39 69 be sometime later. If we do a retry cycle then this should be
17caf1b1 70 retried [CDROMs] */
7d8afa39
AL
71 if (Cnf->LocalOnly == true &&
72 StringToBool(LookupTag(Message,"Transient-Failure"),false) == true)
a72ace20
AL
73 {
74 Status = StatIdle;
681d76d0 75 Dequeue();
a72ace20
AL
76 return;
77 }
78
93bf083d 79 Status = StatError;
681d76d0 80 Dequeue();
93bf083d 81 }
c88edf1d
AL
82}
83 /*}}}*/
8267fe24
AL
84// Acquire::Item::Start - Item has begun to download /*{{{*/
85// ---------------------------------------------------------------------
17caf1b1
AL
86/* Stash status and the file size. Note that setting Complete means
87 sub-phases of the acquire process such as decompresion are operating */
727f18af 88void pkgAcquire::Item::Start(string /*Message*/,unsigned long Size)
8267fe24
AL
89{
90 Status = StatFetching;
91 if (FileSize == 0 && Complete == false)
92 FileSize = Size;
93}
94 /*}}}*/
c88edf1d
AL
95// Acquire::Item::Done - Item downloaded OK /*{{{*/
96// ---------------------------------------------------------------------
97/* */
459681d3
AL
98void pkgAcquire::Item::Done(string Message,unsigned long Size,string,
99 pkgAcquire::MethodConfig *Cnf)
c88edf1d 100{
b98f2859
AL
101 // We just downloaded something..
102 string FileName = LookupTag(Message,"Filename");
103 if (Complete == false && FileName == DestFile)
104 {
105 if (Owner->Log != 0)
106 Owner->Log->Fetched(Size,atoi(LookupTag(Message,"Resume-Point","0").c_str()));
107 }
aa0e1101
AL
108
109 if (FileSize == 0)
110 FileSize= Size;
b98f2859 111
c88edf1d
AL
112 Status = StatDone;
113 ErrorText = string();
114 Owner->Dequeue(this);
115}
116 /*}}}*/
8b89e57f
AL
117// Acquire::Item::Rename - Rename a file /*{{{*/
118// ---------------------------------------------------------------------
119/* This helper function is used by alot of item methods as thier final
120 step */
121void pkgAcquire::Item::Rename(string From,string To)
122{
123 if (rename(From.c_str(),To.c_str()) != 0)
124 {
125 char S[300];
0fcd01de 126 snprintf(S,sizeof(S),_("rename failed, %s (%s -> %s)."),strerror(errno),
8b89e57f
AL
127 From.c_str(),To.c_str());
128 Status = StatError;
129 ErrorText = S;
7a3c2ab0 130 }
8b89e57f
AL
131}
132 /*}}}*/
0118833a
AL
133
134// AcqIndex::AcqIndex - Constructor /*{{{*/
135// ---------------------------------------------------------------------
136/* The package file is added to the queue and a second class is
b2e465d6
AL
137 instantiated to fetch the revision file */
138pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner,
b3d44315
MV
139 string URI,string URIDesc,string ShortDesc,
140 string ExpectedMD5, string comprExt) :
141 Item(Owner), RealURI(URI), ExpectedMD5(ExpectedMD5)
0118833a 142{
8b89e57f 143 Decompression = false;
bfd22fc0 144 Erase = false;
8b89e57f 145
0a8a80e5 146 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
b2e465d6 147 DestFile += URItoFileName(URI);
8267fe24 148
b3d44315
MV
149 if(comprExt.empty())
150 {
151 // autoselect
152 if(FileExists("/usr/bin/bzip2"))
153 Desc.URI = URI + ".bz2";
154 else
155 Desc.URI = URI + ".gz";
156 } else {
157 Desc.URI = URI + comprExt;
158 }
159
b2e465d6 160 Desc.Description = URIDesc;
8267fe24 161 Desc.Owner = this;
b2e465d6 162 Desc.ShortDesc = ShortDesc;
8267fe24
AL
163
164 QueueURI(Desc);
0118833a
AL
165}
166 /*}}}*/
0a8a80e5 167// AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/
0118833a 168// ---------------------------------------------------------------------
0a8a80e5
AL
169/* The only header we use is the last-modified header. */
170string pkgAcqIndex::Custom600Headers()
0118833a 171{
0a8a80e5 172 string Final = _config->FindDir("Dir::State::lists");
b2e465d6 173 Final += URItoFileName(RealURI);
0a8a80e5
AL
174
175 struct stat Buf;
176 if (stat(Final.c_str(),&Buf) != 0)
a72ace20 177 return "\nIndex-File: true";
0118833a 178
a72ace20 179 return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
0118833a
AL
180}
181 /*}}}*/
debc84b2
MZ
182
183void pkgAcqIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
184{
185 // no .bz2 found, retry with .gz
186 if(Desc.URI.substr(Desc.URI.size()-3,Desc.URI.size()-1) == "bz2") {
187 Desc.URI = Desc.URI.substr(0,Desc.URI.size()-3) + "gz";
b3d44315
MV
188
189 // retry with a gzip one
190 new pkgAcqIndex(Owner, RealURI, Desc.Description,Desc.ShortDesc,
191 ExpectedMD5, string(".gz"));
192 Status = StatDone;
193 Complete = false;
194 Dequeue();
debc84b2
MZ
195 return;
196 }
197
198
199 Item::Failed(Message,Cnf);
200}
201
202
8b89e57f
AL
203// AcqIndex::Done - Finished a fetch /*{{{*/
204// ---------------------------------------------------------------------
205/* This goes through a number of states.. On the initial fetch the
206 method could possibly return an alternate filename which points
207 to the uncompressed version of the file. If this is so the file
208 is copied into the partial directory. In all other cases the file
209 is decompressed with a gzip uri. */
459681d3
AL
210void pkgAcqIndex::Done(string Message,unsigned long Size,string MD5,
211 pkgAcquire::MethodConfig *Cfg)
8b89e57f 212{
459681d3 213 Item::Done(Message,Size,MD5,Cfg);
8b89e57f
AL
214
215 if (Decompression == true)
216 {
b3d44315
MV
217 if (_config->FindB("Debug::pkgAcquire::Auth", false))
218 {
219 std::cerr << std::endl << RealURI << ": Computed MD5: " << MD5;
220 std::cerr << " Expected MD5: " << ExpectedMD5 << std::endl;
221 }
222
223 if (MD5.empty())
224 {
225 MD5Summation sum;
226 FileFd Fd(DestFile, FileFd::ReadOnly);
227 sum.AddFD(Fd.Fd(), Fd.Size());
228 Fd.Close();
229 MD5 = (string)sum.Result();
230 }
231
232 if (!ExpectedMD5.empty() && MD5 != ExpectedMD5)
233 {
234 Status = StatAuthError;
235 ErrorText = _("MD5Sum mismatch");
236 Rename(DestFile,DestFile + ".FAILED");
237 return;
238 }
8b89e57f
AL
239 // Done, move it into position
240 string FinalFile = _config->FindDir("Dir::State::lists");
b2e465d6 241 FinalFile += URItoFileName(RealURI);
8b89e57f 242 Rename(DestFile,FinalFile);
7a3c2ab0 243 chmod(FinalFile.c_str(),0644);
bfd22fc0 244
7a7fa5f0
AL
245 /* We restore the original name to DestFile so that the clean operation
246 will work OK */
247 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
b2e465d6 248 DestFile += URItoFileName(RealURI);
7a7fa5f0 249
bfd22fc0
AL
250 // Remove the compressed version.
251 if (Erase == true)
bfd22fc0 252 unlink(DestFile.c_str());
8b89e57f
AL
253 return;
254 }
bfd22fc0
AL
255
256 Erase = false;
8267fe24 257 Complete = true;
bfd22fc0 258
8b89e57f
AL
259 // Handle the unzipd case
260 string FileName = LookupTag(Message,"Alt-Filename");
261 if (FileName.empty() == false)
262 {
263 // The files timestamp matches
264 if (StringToBool(LookupTag(Message,"Alt-IMS-Hit"),false) == true)
265 return;
b3d44315 266
8b89e57f 267 Decompression = true;
a6568219 268 Local = true;
8b89e57f 269 DestFile += ".decomp";
8267fe24
AL
270 Desc.URI = "copy:" + FileName;
271 QueueURI(Desc);
b98f2859 272 Mode = "copy";
8b89e57f
AL
273 return;
274 }
275
276 FileName = LookupTag(Message,"Filename");
277 if (FileName.empty() == true)
278 {
279 Status = StatError;
280 ErrorText = "Method gave a blank filename";
281 }
282
283 // The files timestamp matches
284 if (StringToBool(LookupTag(Message,"IMS-Hit"),false) == true)
285 return;
bfd22fc0
AL
286
287 if (FileName == DestFile)
288 Erase = true;
8267fe24 289 else
a6568219 290 Local = true;
8b89e57f 291
debc84b2
MZ
292 string compExt = Desc.URI.substr(Desc.URI.size()-3,Desc.URI.size()-1);
293 char *decompProg;
294 if(compExt == "bz2")
295 decompProg = "bzip2";
296 else if(compExt == ".gz")
297 decompProg = "gzip";
298 else {
299 _error->Error("Unsupported extension: %s", compExt.c_str());
300 return;
301 }
302
8b89e57f
AL
303 Decompression = true;
304 DestFile += ".decomp";
debc84b2 305 Desc.URI = string(decompProg) + ":" + FileName;
8267fe24 306 QueueURI(Desc);
debc84b2 307 Mode = decompProg;
8b89e57f 308}
8b89e57f 309
b3d44315
MV
310pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquire *Owner,
311 string URI,string URIDesc,string ShortDesc,
312 string MetaIndexURI, string MetaIndexURIDesc,
313 string MetaIndexShortDesc,
314 const vector<IndexTarget*>* IndexTargets,
315 indexRecords* MetaIndexParser) :
316 Item(Owner), RealURI(URI), MetaIndexURI(MetaIndexURI),
317 MetaIndexURIDesc(MetaIndexURIDesc), MetaIndexShortDesc(MetaIndexShortDesc)
0118833a 318{
b3d44315
MV
319 this->MetaIndexParser = MetaIndexParser;
320 this->IndexTargets = IndexTargets;
0a8a80e5 321 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
b2e465d6 322 DestFile += URItoFileName(URI);
b3d44315 323
f6237efd
MV
324 // remove any partial downloaded sig-file. it may confuse proxies
325 // and is too small to warrant a partial download anyway
326 unlink(DestFile.c_str());
327
8267fe24 328 // Create the item
b2e465d6 329 Desc.Description = URIDesc;
8267fe24 330 Desc.Owner = this;
b3d44315
MV
331 Desc.ShortDesc = ShortDesc;
332 Desc.URI = URI;
333
334
335 string Final = _config->FindDir("Dir::State::lists");
336 Final += URItoFileName(RealURI);
337 struct stat Buf;
338 if (stat(Final.c_str(),&Buf) == 0)
339 {
340 // File was already in place. It needs to be re-verified
341 // because Release might have changed, so Move it into partial
342 Rename(Final,DestFile);
284c8bbc
MV
343 // unlink the file and do not try to use I-M-S and Last-Modified
344 // if the users proxy is broken
345 if(_config->FindB("Acquire::BrokenProxy", false) == true) {
346 std::cerr << "forcing re-get of the signature file as requested" << std::endl;
347 unlink(DestFile.c_str());
348 }
b3d44315 349 }
8267fe24 350
8267fe24 351 QueueURI(Desc);
0118833a
AL
352}
353 /*}}}*/
b3d44315 354// pkgAcqMetaSig::Custom600Headers - Insert custom request headers /*{{{*/
0118833a 355// ---------------------------------------------------------------------
0a8a80e5 356/* The only header we use is the last-modified header. */
b3d44315 357string pkgAcqMetaSig::Custom600Headers()
0118833a 358{
0a8a80e5 359 struct stat Buf;
2aab5956 360 if (stat(DestFile.c_str(),&Buf) != 0)
a72ace20 361 return "\nIndex-File: true";
a789b983 362
a72ace20 363 return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
0118833a 364}
b3d44315
MV
365
366void pkgAcqMetaSig::Done(string Message,unsigned long Size,string MD5,
367 pkgAcquire::MethodConfig *Cfg)
c88edf1d 368{
459681d3 369 Item::Done(Message,Size,MD5,Cfg);
c88edf1d
AL
370
371 string FileName = LookupTag(Message,"Filename");
372 if (FileName.empty() == true)
373 {
374 Status = StatError;
375 ErrorText = "Method gave a blank filename";
8b89e57f 376 return;
c88edf1d 377 }
8b89e57f 378
c88edf1d
AL
379 if (FileName != DestFile)
380 {
b3d44315 381 // We have to copy it into place
a6568219 382 Local = true;
8267fe24
AL
383 Desc.URI = "copy:" + FileName;
384 QueueURI(Desc);
c88edf1d
AL
385 return;
386 }
b3d44315
MV
387
388 Complete = true;
389
390 // queue a pkgAcqMetaIndex to be verified against the sig we just retrieved
391 new pkgAcqMetaIndex(Owner, MetaIndexURI, MetaIndexURIDesc, MetaIndexShortDesc,
392 DestFile, IndexTargets, MetaIndexParser);
393
c88edf1d
AL
394}
395 /*}}}*/
b3d44315 396void pkgAcqMetaSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
681d76d0 397{
b3d44315
MV
398 // Delete any existing sigfile, so that this source isn't
399 // mistakenly trusted
400 string Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI);
401 unlink(Final.c_str());
a789b983 402
24057ad6 403 // if we get a timeout if fail
25182152
MV
404 if(LookupTag(Message,"FailReason") == "Timeout" ||
405 LookupTag(Message,"FailReason") == "TmpResolveFailure") {
24057ad6
MV
406 Item::Failed(Message,Cnf);
407 return;
408 }
409
b3d44315
MV
410 // queue a pkgAcqMetaIndex with no sigfile
411 new pkgAcqMetaIndex(Owner, MetaIndexURI, MetaIndexURIDesc, MetaIndexShortDesc,
412 "", IndexTargets, MetaIndexParser);
413
681d76d0
AL
414 if (Cnf->LocalOnly == true ||
415 StringToBool(LookupTag(Message,"Transient-Failure"),false) == false)
416 {
2b154e53
AL
417 // Ignore this
418 Status = StatDone;
419 Complete = false;
681d76d0
AL
420 Dequeue();
421 return;
422 }
423
424 Item::Failed(Message,Cnf);
425}
b3d44315
MV
426
427pkgAcqMetaIndex::pkgAcqMetaIndex(pkgAcquire *Owner,
428 string URI,string URIDesc,string ShortDesc,
429 string SigFile,
430 const vector<struct IndexTarget*>* IndexTargets,
431 indexRecords* MetaIndexParser) :
432 Item(Owner), RealURI(URI), SigFile(SigFile)
433{
434 this->AuthPass = false;
435 this->MetaIndexParser = MetaIndexParser;
436 this->IndexTargets = IndexTargets;
437 DestFile = _config->FindDir("Dir::State::lists") + "partial/";
438 DestFile += URItoFileName(URI);
439
440 // Create the item
441 Desc.Description = URIDesc;
442 Desc.Owner = this;
443 Desc.ShortDesc = ShortDesc;
444 Desc.URI = URI;
445
446 QueueURI(Desc);
447}
448
449 /*}}}*/
450// pkgAcqMetaIndex::Custom600Headers - Insert custom request headers /*{{{*/
451// ---------------------------------------------------------------------
452/* The only header we use is the last-modified header. */
453string pkgAcqMetaIndex::Custom600Headers()
454{
455 string Final = _config->FindDir("Dir::State::lists");
456 Final += URItoFileName(RealURI);
457
458 struct stat Buf;
459 if (stat(Final.c_str(),&Buf) != 0)
460 return "\nIndex-File: true";
461
462 return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime);
463}
464
465void pkgAcqMetaIndex::Done(string Message,unsigned long Size,string MD5,
466 pkgAcquire::MethodConfig *Cfg)
467{
468 Item::Done(Message,Size,MD5,Cfg);
469
470 // MetaIndexes are done in two passes: one to download the
471 // metaindex with an appropriate method, and a second to verify it
472 // with the gpgv method
473
474 if (AuthPass == true)
475 {
476 AuthDone(Message);
477 }
478 else
479 {
480 RetrievalDone(Message);
481 if (!Complete)
482 // Still more retrieving to do
483 return;
484
485 if (SigFile == "")
486 {
487 // There was no signature file, so we are finished. Download
488 // the indexes without verification.
489 QueueIndexes(false);
490 }
491 else
492 {
493 // There was a signature file, so pass it to gpgv for
494 // verification
495
496 if (_config->FindB("Debug::pkgAcquire::Auth", false))
497 std::cerr << "Metaindex acquired, queueing gpg verification ("
498 << SigFile << "," << DestFile << ")\n";
499 AuthPass = true;
500 Desc.URI = "gpgv:" + SigFile;
501 QueueURI(Desc);
502 Mode = "gpgv";
503 }
504 }
505}
506
507void pkgAcqMetaIndex::RetrievalDone(string Message)
508{
509 // We have just finished downloading a Release file (it is not
510 // verified yet)
511
512 string FileName = LookupTag(Message,"Filename");
513 if (FileName.empty() == true)
514 {
515 Status = StatError;
516 ErrorText = "Method gave a blank filename";
517 return;
518 }
519
520 if (FileName != DestFile)
521 {
522 Local = true;
523 Desc.URI = "copy:" + FileName;
524 QueueURI(Desc);
525 return;
526 }
527
528 Complete = true;
529
530 string FinalFile = _config->FindDir("Dir::State::lists");
531 FinalFile += URItoFileName(RealURI);
532
533 // The files timestamp matches
534 if (StringToBool(LookupTag(Message,"IMS-Hit"),false) == false)
535 {
536 // Move it into position
537 Rename(DestFile,FinalFile);
538 }
539 DestFile = FinalFile;
540}
541
542void pkgAcqMetaIndex::AuthDone(string Message)
543{
544 // At this point, the gpgv method has succeeded, so there is a
545 // valid signature from a key in the trusted keyring. We
546 // perform additional verification of its contents, and use them
547 // to verify the indexes we are about to download
548
549 if (!MetaIndexParser->Load(DestFile))
550 {
551 Status = StatAuthError;
552 ErrorText = MetaIndexParser->ErrorText;
553 return;
554 }
555
556 if (!VerifyVendor())
557 {
558 return;
559 }
560
561 if (_config->FindB("Debug::pkgAcquire::Auth", false))
562 std::cerr << "Signature verification succeeded: "
563 << DestFile << std::endl;
564
565 // Download further indexes with verification
566 QueueIndexes(true);
567
568 // Done, move signature file into position
569
570 string VerifiedSigFile = _config->FindDir("Dir::State::lists") +
571 URItoFileName(RealURI) + ".gpg";
572 Rename(SigFile,VerifiedSigFile);
573 chmod(VerifiedSigFile.c_str(),0644);
574}
575
576void pkgAcqMetaIndex::QueueIndexes(bool verify)
577{
578 for (vector <struct IndexTarget*>::const_iterator Target = IndexTargets->begin();
579 Target != IndexTargets->end();
580 Target++)
581 {
582 string ExpectedIndexMD5;
583 if (verify)
584 {
585 const indexRecords::checkSum *Record = MetaIndexParser->Lookup((*Target)->MetaKey);
586 if (!Record)
587 {
588 Status = StatAuthError;
589 ErrorText = "Unable to find expected entry "
590 + (*Target)->MetaKey + " in Meta-index file (malformed Release file?)";
591 return;
592 }
593 ExpectedIndexMD5 = Record->MD5Hash;
594 if (_config->FindB("Debug::pkgAcquire::Auth", false))
595 {
596 std::cerr << "Queueing: " << (*Target)->URI << std::endl;
597 std::cerr << "Expected MD5: " << ExpectedIndexMD5 << std::endl;
598 }
599 if (ExpectedIndexMD5.empty())
600 {
601 Status = StatAuthError;
602 ErrorText = "Unable to find MD5 sum for "
603 + (*Target)->MetaKey + " in Meta-index file";
604 return;
605 }
606 }
607
608 // Queue Packages file
609 new pkgAcqIndex(Owner, (*Target)->URI, (*Target)->Description,
610 (*Target)->ShortDesc, ExpectedIndexMD5);
611 }
612}
613
614bool pkgAcqMetaIndex::VerifyVendor()
615{
616// // Maybe this should be made available from above so we don't have
617// // to read and parse it every time?
618// pkgVendorList List;
619// List.ReadMainList();
620
621// const Vendor* Vndr = NULL;
622// for (std::vector<string>::const_iterator I = GPGVOutput.begin(); I != GPGVOutput.end(); I++)
623// {
624// string::size_type pos = (*I).find("VALIDSIG ");
625// if (_config->FindB("Debug::Vendor", false))
626// std::cerr << "Looking for VALIDSIG in \"" << (*I) << "\": pos " << pos
627// << std::endl;
628// if (pos != std::string::npos)
629// {
630// string Fingerprint = (*I).substr(pos+sizeof("VALIDSIG"));
631// if (_config->FindB("Debug::Vendor", false))
632// std::cerr << "Looking for \"" << Fingerprint << "\" in vendor..." <<
633// std::endl;
634// Vndr = List.FindVendor(Fingerprint) != "";
635// if (Vndr != NULL);
636// break;
637// }
638// }
639
640 string Transformed = MetaIndexParser->GetExpectedDist();
641
642 if (Transformed == "../project/experimental")
643 {
644 Transformed = "experimental";
645 }
646
647 string::size_type pos = Transformed.rfind('/');
648 if (pos != string::npos)
649 {
650 Transformed = Transformed.substr(0, pos);
651 }
652
653 if (Transformed == ".")
654 {
655 Transformed = "";
656 }
657
658 if (_config->FindB("Debug::pkgAcquire::Auth", false))
659 {
660 std::cerr << "Got Codename: " << MetaIndexParser->GetDist() << std::endl;
661 std::cerr << "Expecting Dist: " << MetaIndexParser->GetExpectedDist() << std::endl;
662 std::cerr << "Transformed Dist: " << Transformed << std::endl;
663 }
664
665 if (MetaIndexParser->CheckDist(Transformed) == false)
666 {
667 // This might become fatal one day
668// Status = StatAuthError;
669// ErrorText = "Conflicting distribution; expected "
670// + MetaIndexParser->GetExpectedDist() + " but got "
671// + MetaIndexParser->GetDist();
672// return false;
673 if (!Transformed.empty())
674 {
675 _error->Warning("Conflicting distribution: %s (expected %s but got %s)",
676 Desc.Description.c_str(),
677 Transformed.c_str(),
678 MetaIndexParser->GetDist().c_str());
679 }
680 }
681
682 return true;
683}
684 /*}}}*/
685// pkgAcqMetaIndex::Failed - no Release file present or no signature
686// file present /*{{{*/
687// ---------------------------------------------------------------------
688/* */
689void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
690{
691 if (AuthPass == true)
692 {
693 // gpgv method failed
694 _error->Warning("GPG error: %s: %s",
695 Desc.Description.c_str(),
696 LookupTag(Message,"Message").c_str());
697 }
698
699 // No Release file was present, or verification failed, so fall
700 // back to queueing Packages files without verification
701 QueueIndexes(false);
702}
703
681d76d0 704 /*}}}*/
03e39e59
AL
705
706// AcqArchive::AcqArchive - Constructor /*{{{*/
707// ---------------------------------------------------------------------
17caf1b1
AL
708/* This just sets up the initial fetch environment and queues the first
709 possibilitiy */
03e39e59 710pkgAcqArchive::pkgAcqArchive(pkgAcquire *Owner,pkgSourceList *Sources,
30e1eab5
AL
711 pkgRecords *Recs,pkgCache::VerIterator const &Version,
712 string &StoreFilename) :
713 Item(Owner), Version(Version), Sources(Sources), Recs(Recs),
b3d44315
MV
714 StoreFilename(StoreFilename), Vf(Version.FileList()),
715 Trusted(false)
03e39e59 716{
7d8afa39 717 Retries = _config->FindI("Acquire::Retries",0);
813c8eea
AL
718
719 if (Version.Arch() == 0)
bdae53f1 720 {
d1f1f6a8 721 _error->Error(_("I wasn't able to locate a file for the %s package. "
7a3c2ab0
AL
722 "This might mean you need to manually fix this package. "
723 "(due to missing arch)"),
813c8eea 724 Version.ParentPkg().Name());
bdae53f1
AL
725 return;
726 }
813c8eea 727
b2e465d6
AL
728 /* We need to find a filename to determine the extension. We make the
729 assumption here that all the available sources for this version share
730 the same extension.. */
731 // Skip not source sources, they do not have file fields.
732 for (; Vf.end() == false; Vf++)
733 {
734 if ((Vf.File()->Flags & pkgCache::Flag::NotSource) != 0)
735 continue;
736 break;
737 }
738
739 // Does not really matter here.. we are going to fail out below
740 if (Vf.end() != true)
741 {
742 // If this fails to get a file name we will bomb out below.
743 pkgRecords::Parser &Parse = Recs->Lookup(Vf);
744 if (_error->PendingError() == true)
745 return;
746
747 // Generate the final file name as: package_version_arch.foo
748 StoreFilename = QuoteString(Version.ParentPkg().Name(),"_:") + '_' +
749 QuoteString(Version.VerStr(),"_:") + '_' +
750 QuoteString(Version.Arch(),"_:.") +
751 "." + flExtension(Parse.FileName());
752 }
b3d44315
MV
753
754 // check if we have one trusted source for the package. if so, switch
755 // to "TrustedOnly" mode
756 for (pkgCache::VerFileIterator i = Version.FileList(); i.end() == false; i++)
757 {
758 pkgIndexFile *Index;
759 if (Sources->FindIndex(i.File(),Index) == false)
760 continue;
761 if (_config->FindB("Debug::pkgAcquire::Auth", false))
762 {
763 std::cerr << "Checking index: " << Index->Describe()
764 << "(Trusted=" << Index->IsTrusted() << ")\n";
765 }
766 if (Index->IsTrusted()) {
767 Trusted = true;
768 break;
769 }
770 }
771
03e39e59 772 // Select a source
b185acc2 773 if (QueueNext() == false && _error->PendingError() == false)
b2e465d6
AL
774 _error->Error(_("I wasn't able to locate file for the %s package. "
775 "This might mean you need to manually fix this package."),
b185acc2
AL
776 Version.ParentPkg().Name());
777}
778 /*}}}*/
779// AcqArchive::QueueNext - Queue the next file source /*{{{*/
780// ---------------------------------------------------------------------
17caf1b1
AL
781/* This queues the next available file version for download. It checks if
782 the archive is already available in the cache and stashs the MD5 for
783 checking later. */
b185acc2 784bool pkgAcqArchive::QueueNext()
b2e465d6 785{
03e39e59
AL
786 for (; Vf.end() == false; Vf++)
787 {
788 // Ignore not source sources
789 if ((Vf.File()->Flags & pkgCache::Flag::NotSource) != 0)
790 continue;
791
792 // Try to cross match against the source list
b2e465d6
AL
793 pkgIndexFile *Index;
794 if (Sources->FindIndex(Vf.File(),Index) == false)
795 continue;
03e39e59 796
b3d44315
MV
797 // only try to get a trusted package from another source if that source
798 // is also trusted
799 if(Trusted && !Index->IsTrusted())
800 continue;
801
03e39e59
AL
802 // Grab the text package record
803 pkgRecords::Parser &Parse = Recs->Lookup(Vf);
804 if (_error->PendingError() == true)
b185acc2 805 return false;
03e39e59 806
b2e465d6 807 string PkgFile = Parse.FileName();
03e39e59
AL
808 MD5 = Parse.MD5Hash();
809 if (PkgFile.empty() == true)
b2e465d6
AL
810 return _error->Error(_("The package index files are corrupted. No Filename: "
811 "field for package %s."),
812 Version.ParentPkg().Name());
a6568219 813
b3d44315
MV
814 Desc.URI = Index->ArchiveURI(PkgFile);
815 Desc.Description = Index->ArchiveInfo(Version);
816 Desc.Owner = this;
817 Desc.ShortDesc = Version.ParentPkg().Name();
818
17caf1b1 819 // See if we already have the file. (Legacy filenames)
a6568219
AL
820 FileSize = Version->Size;
821 string FinalFile = _config->FindDir("Dir::Cache::Archives") + flNotDir(PkgFile);
822 struct stat Buf;
823 if (stat(FinalFile.c_str(),&Buf) == 0)
824 {
825 // Make sure the size matches
826 if ((unsigned)Buf.st_size == Version->Size)
827 {
828 Complete = true;
829 Local = true;
830 Status = StatDone;
30e1eab5 831 StoreFilename = DestFile = FinalFile;
b185acc2 832 return true;
a6568219
AL
833 }
834
6b1ff003
AL
835 /* Hmm, we have a file and its size does not match, this means it is
836 an old style mismatched arch */
a6568219
AL
837 unlink(FinalFile.c_str());
838 }
17caf1b1
AL
839
840 // Check it again using the new style output filenames
841 FinalFile = _config->FindDir("Dir::Cache::Archives") + flNotDir(StoreFilename);
842 if (stat(FinalFile.c_str(),&Buf) == 0)
843 {
844 // Make sure the size matches
845 if ((unsigned)Buf.st_size == Version->Size)
846 {
847 Complete = true;
848 Local = true;
849 Status = StatDone;
850 StoreFilename = DestFile = FinalFile;
851 return true;
852 }
853
854 /* Hmm, we have a file and its size does not match, this shouldnt
855 happen.. */
856 unlink(FinalFile.c_str());
857 }
858
859 DestFile = _config->FindDir("Dir::Cache::Archives") + "partial/" + flNotDir(StoreFilename);
6b1ff003
AL
860
861 // Check the destination file
862 if (stat(DestFile.c_str(),&Buf) == 0)
863 {
864 // Hmm, the partial file is too big, erase it
865 if ((unsigned)Buf.st_size > Version->Size)
866 unlink(DestFile.c_str());
867 else
868 PartialSize = Buf.st_size;
869 }
870
03e39e59 871 // Create the item
b2e465d6
AL
872 Local = false;
873 Desc.URI = Index->ArchiveURI(PkgFile);
874 Desc.Description = Index->ArchiveInfo(Version);
03e39e59
AL
875 Desc.Owner = this;
876 Desc.ShortDesc = Version.ParentPkg().Name();
877 QueueURI(Desc);
b185acc2
AL
878
879 Vf++;
880 return true;
03e39e59 881 }
b185acc2
AL
882 return false;
883}
03e39e59
AL
884 /*}}}*/
885// AcqArchive::Done - Finished fetching /*{{{*/
886// ---------------------------------------------------------------------
887/* */
459681d3
AL
888void pkgAcqArchive::Done(string Message,unsigned long Size,string Md5Hash,
889 pkgAcquire::MethodConfig *Cfg)
03e39e59 890{
459681d3 891 Item::Done(Message,Size,Md5Hash,Cfg);
03e39e59
AL
892
893 // Check the size
894 if (Size != Version->Size)
895 {
bdae53f1 896 Status = StatError;
b2e465d6 897 ErrorText = _("Size mismatch");
03e39e59
AL
898 return;
899 }
900
901 // Check the md5
902 if (Md5Hash.empty() == false && MD5.empty() == false)
903 {
904 if (Md5Hash != MD5)
905 {
bdae53f1 906 Status = StatError;
b2e465d6 907 ErrorText = _("MD5Sum mismatch");
9978c7b0 908 Rename(DestFile,DestFile + ".FAILED");
03e39e59
AL
909 return;
910 }
911 }
a6568219
AL
912
913 // Grab the output filename
03e39e59
AL
914 string FileName = LookupTag(Message,"Filename");
915 if (FileName.empty() == true)
916 {
917 Status = StatError;
918 ErrorText = "Method gave a blank filename";
919 return;
920 }
a6568219
AL
921
922 Complete = true;
30e1eab5
AL
923
924 // Reference filename
a6568219
AL
925 if (FileName != DestFile)
926 {
30e1eab5 927 StoreFilename = DestFile = FileName;
a6568219
AL
928 Local = true;
929 return;
930 }
931
932 // Done, move it into position
933 string FinalFile = _config->FindDir("Dir::Cache::Archives");
17caf1b1 934 FinalFile += flNotDir(StoreFilename);
a6568219 935 Rename(DestFile,FinalFile);
03e39e59 936
30e1eab5 937 StoreFilename = DestFile = FinalFile;
03e39e59
AL
938 Complete = true;
939}
940 /*}}}*/
db890fdb
AL
941// AcqArchive::Failed - Failure handler /*{{{*/
942// ---------------------------------------------------------------------
943/* Here we try other sources */
7d8afa39 944void pkgAcqArchive::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
db890fdb
AL
945{
946 ErrorText = LookupTag(Message,"Message");
b2e465d6
AL
947
948 /* We don't really want to retry on failed media swaps, this prevents
949 that. An interesting observation is that permanent failures are not
950 recorded. */
951 if (Cnf->Removable == true &&
952 StringToBool(LookupTag(Message,"Transient-Failure"),false) == true)
953 {
954 // Vf = Version.FileList();
955 while (Vf.end() == false) Vf++;
956 StoreFilename = string();
957 Item::Failed(Message,Cnf);
958 return;
959 }
960
db890fdb 961 if (QueueNext() == false)
7d8afa39
AL
962 {
963 // This is the retry counter
964 if (Retries != 0 &&
965 Cnf->LocalOnly == false &&
966 StringToBool(LookupTag(Message,"Transient-Failure"),false) == true)
967 {
968 Retries--;
969 Vf = Version.FileList();
970 if (QueueNext() == true)
971 return;
972 }
973
9dbb421f 974 StoreFilename = string();
7d8afa39
AL
975 Item::Failed(Message,Cnf);
976 }
db890fdb
AL
977}
978 /*}}}*/
b3d44315
MV
979// AcqArchive::IsTrusted - Determine whether this archive comes from a
980// trusted source /*{{{*/
981// ---------------------------------------------------------------------
982bool pkgAcqArchive::IsTrusted()
983{
984 return Trusted;
985}
986
ab559b35
AL
987// AcqArchive::Finished - Fetching has finished, tidy up /*{{{*/
988// ---------------------------------------------------------------------
989/* */
990void pkgAcqArchive::Finished()
991{
992 if (Status == pkgAcquire::Item::StatDone &&
993 Complete == true)
994 return;
995 StoreFilename = string();
996}
997 /*}}}*/
36375005
AL
998
999// AcqFile::pkgAcqFile - Constructor /*{{{*/
1000// ---------------------------------------------------------------------
1001/* The file is added to the queue */
1002pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI,string MD5,
1003 unsigned long Size,string Dsc,string ShortDesc) :
b3c39978 1004 Item(Owner), Md5Hash(MD5)
36375005 1005{
08cfc005
AL
1006 Retries = _config->FindI("Acquire::Retries",0);
1007
36375005
AL
1008 DestFile = flNotDir(URI);
1009
1010 // Create the item
1011 Desc.URI = URI;
1012 Desc.Description = Dsc;
1013 Desc.Owner = this;
1014
1015 // Set the short description to the archive component
1016 Desc.ShortDesc = ShortDesc;
1017
1018 // Get the transfer sizes
1019 FileSize = Size;
1020 struct stat Buf;
1021 if (stat(DestFile.c_str(),&Buf) == 0)
1022 {
1023 // Hmm, the partial file is too big, erase it
1024 if ((unsigned)Buf.st_size > Size)
1025 unlink(DestFile.c_str());
1026 else
1027 PartialSize = Buf.st_size;
1028 }
1029
1030 QueueURI(Desc);
1031}
1032 /*}}}*/
1033// AcqFile::Done - Item downloaded OK /*{{{*/
1034// ---------------------------------------------------------------------
1035/* */
459681d3
AL
1036void pkgAcqFile::Done(string Message,unsigned long Size,string MD5,
1037 pkgAcquire::MethodConfig *Cnf)
36375005 1038{
b3c39978
AL
1039 // Check the md5
1040 if (Md5Hash.empty() == false && MD5.empty() == false)
1041 {
1042 if (Md5Hash != MD5)
1043 {
1044 Status = StatError;
1045 ErrorText = "MD5Sum mismatch";
1046 Rename(DestFile,DestFile + ".FAILED");
1047 return;
1048 }
1049 }
1050
459681d3 1051 Item::Done(Message,Size,MD5,Cnf);
36375005
AL
1052
1053 string FileName = LookupTag(Message,"Filename");
1054 if (FileName.empty() == true)
1055 {
1056 Status = StatError;
1057 ErrorText = "Method gave a blank filename";
1058 return;
1059 }
1060
1061 Complete = true;
1062
1063 // The files timestamp matches
1064 if (StringToBool(LookupTag(Message,"IMS-Hit"),false) == true)
1065 return;
1066
1067 // We have to copy it into place
1068 if (FileName != DestFile)
1069 {
1070 Local = true;
459681d3
AL
1071 if (_config->FindB("Acquire::Source-Symlinks",true) == false ||
1072 Cnf->Removable == true)
917ae805
AL
1073 {
1074 Desc.URI = "copy:" + FileName;
1075 QueueURI(Desc);
1076 return;
1077 }
1078
83ab33fc
AL
1079 // Erase the file if it is a symlink so we can overwrite it
1080 struct stat St;
1081 if (lstat(DestFile.c_str(),&St) == 0)
1082 {
1083 if (S_ISLNK(St.st_mode) != 0)
1084 unlink(DestFile.c_str());
1085 }
1086
1087 // Symlink the file
917ae805
AL
1088 if (symlink(FileName.c_str(),DestFile.c_str()) != 0)
1089 {
83ab33fc 1090 ErrorText = "Link to " + DestFile + " failure ";
917ae805
AL
1091 Status = StatError;
1092 Complete = false;
1093 }
36375005
AL
1094 }
1095}
1096 /*}}}*/
08cfc005
AL
1097// AcqFile::Failed - Failure handler /*{{{*/
1098// ---------------------------------------------------------------------
1099/* Here we try other sources */
1100void pkgAcqFile::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
1101{
1102 ErrorText = LookupTag(Message,"Message");
1103
1104 // This is the retry counter
1105 if (Retries != 0 &&
1106 Cnf->LocalOnly == false &&
1107 StringToBool(LookupTag(Message,"Transient-Failure"),false) == true)
1108 {
1109 Retries--;
1110 QueueURI(Desc);
1111 return;
1112 }
1113
1114 Item::Failed(Message,Cnf);
1115}
1116 /*}}}*/