]>
git.saurik.com Git - apt-legacy.git/blob - apt-pkg/indexcopy.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: indexcopy.cc,v 1.10 2002/03/26 07:38:58 jgg Exp $
4 /* ######################################################################
6 Index Copying - Aid for copying and verifying the index files
8 This class helps apt-cache reconstruct a damaged index files.
10 ##################################################################### */
12 // Include Files /*{{{*/
13 #include "indexcopy.h"
15 #include <apt-pkg/error.h>
16 #include <apt-pkg/progress.h>
17 #include <apt-pkg/strutl.h>
18 #include <apt-pkg/fileutl.h>
19 #include <apt-pkg/configuration.h>
20 #include <apt-pkg/tagfile.h>
21 #include <apt-pkg/indexrecords.h>
22 #include <apt-pkg/md5.h>
23 #include <apt-pkg/cdrom.h>
35 // IndexCopy::CopyPackages - Copy the package files from the CD /*{{{*/
36 // ---------------------------------------------------------------------
38 bool IndexCopy::CopyPackages(string CDROM
,string Name
,vector
<string
> &List
,
41 OpProgress
*Progress
= NULL
;
46 Progress
= log
->GetOpProgress();
48 bool NoStat
= _config
->FindB("APT::CDROM::Fast",false);
49 bool Debug
= _config
->FindB("Debug::aptcdrom",false);
51 // Prepare the progress indicator
52 unsigned long TotalSize
= 0;
53 for (vector
<string
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
56 if (stat(string(*I
+ GetFileName()).c_str(),&Buf
) != 0 &&
57 stat(string(*I
+ GetFileName() + ".gz").c_str(),&Buf
) != 0)
58 return _error
->Errno("stat","Stat failed for %s",
59 string(*I
+ GetFileName()).c_str());
60 TotalSize
+= Buf
.st_size
;
63 unsigned long CurrentSize
= 0;
64 unsigned int NotFound
= 0;
65 unsigned int WrongSize
= 0;
66 unsigned int Packages
= 0;
67 for (vector
<string
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
69 string OrigPath
= string(*I
,CDROM
.length());
70 unsigned long FileSize
= 0;
72 // Open the package file
74 if (FileExists(*I
+ GetFileName()) == true)
76 Pkg
.Open(*I
+ GetFileName(),FileFd::ReadOnly
);
77 FileSize
= Pkg
.Size();
81 FileFd
From(*I
+ GetFileName() + ".gz",FileFd::ReadOnly
);
82 if (_error
->PendingError() == true)
84 FileSize
= From
.Size();
87 FILE *tmp
= tmpfile();
89 return _error
->Errno("tmpfile","Unable to create a tmp file");
90 Pkg
.Fd(dup(fileno(tmp
)));
94 pid_t Process
= fork();
96 return _error
->Errno("fork","Couldn't fork gzip");
101 dup2(From
.Fd(),STDIN_FILENO
);
102 dup2(Pkg
.Fd(),STDOUT_FILENO
);
103 SetCloseExec(STDIN_FILENO
,false);
104 SetCloseExec(STDOUT_FILENO
,false);
107 string Tmp
= _config
->Find("Dir::bin::gzip","gzip");
108 Args
[0] = Tmp
.c_str();
111 execvp(Args
[0],(char **)Args
);
115 // Wait for gzip to finish
116 if (ExecWait(Process
,_config
->Find("Dir::bin::gzip","gzip").c_str(),false) == false)
117 return _error
->Error("gzip failed, perhaps the disk is full.");
121 pkgTagFile
Parser(&Pkg
);
122 if (_error
->PendingError() == true)
125 // Open the output file
127 snprintf(S
,sizeof(S
),"cdrom:[%s]/%s%s",Name
.c_str(),
128 (*I
).c_str() + CDROM
.length(),GetFileName());
129 string TargetF
= _config
->FindDir("Dir::State::lists") + "partial/";
130 TargetF
+= URItoFileName(S
);
131 if (_config
->FindB("APT::CDROM::NoAct",false) == true)
132 TargetF
= "/dev/null";
133 FileFd
Target(TargetF
,FileFd::WriteEmpty
);
134 FILE *TargetFl
= fdopen(dup(Target
.Fd()),"w");
135 if (_error
->PendingError() == true)
138 return _error
->Errno("fdopen","Failed to reopen fd");
140 // Setup the progress meter
142 Progress
->OverallProgress(CurrentSize
,TotalSize
,FileSize
,
143 string("Reading ") + Type() + " Indexes");
147 Progress
->SubProgress(Pkg
.Size());
148 pkgTagSection Section
;
149 this->Section
= &Section
;
151 unsigned long Hits
= 0;
152 unsigned long Chop
= 0;
153 while (Parser
.Step(Section
) == true)
156 Progress
->Progress(Parser
.Offset());
159 if (GetFile(File
,Size
) == false)
166 File
= OrigPath
+ ChopDirs(File
,Chop
);
168 // See if the file exists
169 bool Mangled
= false;
170 if (NoStat
== false || Hits
< 10)
172 // Attempt to fix broken structure
175 if (ReconstructPrefix(Prefix
,OrigPath
,CDROM
,File
) == false &&
176 ReconstructChop(Chop
,*I
,File
) == false)
179 clog
<< "Missed: " << File
<< endl
;
184 File
= OrigPath
+ ChopDirs(File
,Chop
);
189 if (stat(string(CDROM
+ Prefix
+ File
).c_str(),&Buf
) != 0 ||
192 // Attempt to fix busted symlink support for one instance
193 string OrigFile
= File
;
194 string::size_type Start
= File
.find("binary-");
195 string::size_type End
= File
.find("/",Start
+3);
196 if (Start
!= string::npos
&& End
!= string::npos
)
198 File
.replace(Start
,End
-Start
,"binary-all");
202 if (Mangled
== false ||
203 stat(string(CDROM
+ Prefix
+ File
).c_str(),&Buf
) != 0)
206 clog
<< "Missed(2): " << OrigFile
<< endl
;
213 if ((unsigned)Buf
.st_size
!= Size
)
216 clog
<< "Wrong Size: " << File
<< endl
;
225 if (RewriteEntry(TargetFl
,File
) == false)
234 cout
<< " Processed by using Prefix '" << Prefix
<< "' and chop " << Chop
<< endl
;
236 if (_config
->FindB("APT::CDROM::NoAct",false) == false)
238 // Move out of the partial directory
240 string FinalF
= _config
->FindDir("Dir::State::lists");
241 FinalF
+= URItoFileName(S
);
242 if (rename(TargetF
.c_str(),FinalF
.c_str()) != 0)
243 return _error
->Errno("rename","Failed to rename");
246 /* Mangle the source to be in the proper notation with
247 prefix dist [component] */
248 *I
= string(*I
,Prefix
.length());
249 ConvertToSourceList(CDROM
,*I
);
250 *I
= Prefix
+ ' ' + *I
;
252 CurrentSize
+= FileSize
;
260 if(NotFound
== 0 && WrongSize
== 0)
261 ioprintf(msg
, _("Wrote %i records.\n"), Packages
);
262 else if (NotFound
!= 0 && WrongSize
== 0)
263 ioprintf(msg
, _("Wrote %i records with %i missing files.\n"),
265 else if (NotFound
== 0 && WrongSize
!= 0)
266 ioprintf(msg
, _("Wrote %i records with %i mismatched files\n"),
267 Packages
, WrongSize
);
268 if (NotFound
!= 0 && WrongSize
!= 0)
269 ioprintf(msg
, _("Wrote %i records with %i missing files and %i mismatched files\n"), Packages
, NotFound
, WrongSize
);
273 _error
->Warning("No valid records were found.");
275 if (NotFound
+ WrongSize
> 10)
276 _error
->Warning("Alot of entries were discarded, something may be wrong.\n");
282 // IndexCopy::ChopDirs - Chop off the leading directory components /*{{{*/
283 // ---------------------------------------------------------------------
285 string
IndexCopy::ChopDirs(string Path
,unsigned int Depth
)
287 string::size_type I
= 0;
290 I
= Path
.find('/',I
+1);
293 while (I
!= string::npos
&& Depth
!= 0);
295 if (I
== string::npos
)
298 return string(Path
,I
+1);
301 // IndexCopy::ReconstructPrefix - Fix strange prefixing /*{{{*/
302 // ---------------------------------------------------------------------
303 /* This prepends dir components from the path to the package files to
304 the path to the deb until it is found */
305 bool IndexCopy::ReconstructPrefix(string
&Prefix
,string OrigPath
,string CD
,
308 bool Debug
= _config
->FindB("Debug::aptcdrom",false);
309 unsigned int Depth
= 1;
310 string MyPrefix
= Prefix
;
314 if (stat(string(CD
+ MyPrefix
+ File
).c_str(),&Buf
) != 0)
317 cout
<< "Failed, " << CD
+ MyPrefix
+ File
<< endl
;
318 if (GrabFirst(OrigPath
,MyPrefix
,Depth
++) == true)
332 // IndexCopy::ReconstructChop - Fixes bad source paths /*{{{*/
333 // ---------------------------------------------------------------------
334 /* This removes path components from the filename and prepends the location
335 of the package files until a file is found */
336 bool IndexCopy::ReconstructChop(unsigned long &Chop
,string Dir
,string File
)
338 // Attempt to reconstruct the filename
339 unsigned long Depth
= 0;
343 if (stat(string(Dir
+ File
).c_str(),&Buf
) != 0)
345 File
= ChopDirs(File
,1);
347 if (File
.empty() == false)
360 // IndexCopy::ConvertToSourceList - Convert a Path to a sourcelist /*{{{*/
361 // ---------------------------------------------------------------------
362 /* We look for things in dists/ notation and convert them to
363 <dist> <component> form otherwise it is left alone. This also strips
366 This implements a regex sort of like:
367 (.*)/dists/([^/]*)/(.*)/binary-*
369 | |-------- Distribution
370 |------------------- Path
372 It was deciced to use only a single word for dist (rather than say
373 unstable/non-us) to increase the chance that each CD gets a single
374 line in sources.list.
376 void IndexCopy::ConvertToSourceList(string CD
,string
&Path
)
379 snprintf(S
,sizeof(S
),"binary-%s",_config
->Find("Apt::Architecture").c_str());
381 // Strip the cdrom base path
382 Path
= string(Path
,CD
.length());
383 if (Path
.empty() == true)
386 // Too short to be a dists/ type
387 if (Path
.length() < strlen("dists/"))
391 if (stringcmp(Path
.c_str(),Path
.c_str()+strlen("dists/"),"dists/") != 0)
395 string::size_type Slash
= strlen("dists/");
396 string::size_type Slash2
= Path
.find('/',Slash
+ 1);
397 if (Slash2
== string::npos
|| Slash2
+ 2 >= Path
.length())
399 string Dist
= string(Path
,Slash
,Slash2
- Slash
);
401 // Isolate the component
403 for (unsigned I
= 0; I
!= 10; I
++)
405 Slash
= Path
.find('/',Slash
+1);
406 if (Slash
== string::npos
|| Slash
+ 2 >= Path
.length())
408 string Comp
= string(Path
,Slash2
+1,Slash
- Slash2
-1);
410 // Verify the trailing binary- bit
411 string::size_type BinSlash
= Path
.find('/',Slash
+ 1);
412 if (Slash
== string::npos
)
414 string Binary
= string(Path
,Slash
+1,BinSlash
- Slash
-1);
416 if (Binary
!= S
&& Binary
!= "source")
419 Path
= Dist
+ ' ' + Comp
;
424 // IndexCopy::GrabFirst - Return the first Depth path components /*{{{*/
425 // ---------------------------------------------------------------------
427 bool IndexCopy::GrabFirst(string Path
,string
&To
,unsigned int Depth
)
429 string::size_type I
= 0;
432 I
= Path
.find('/',I
+1);
435 while (I
!= string::npos
&& Depth
!= 0);
437 if (I
== string::npos
)
440 To
= string(Path
,0,I
+1);
444 // PackageCopy::GetFile - Get the file information from the section /*{{{*/
445 // ---------------------------------------------------------------------
447 bool PackageCopy::GetFile(string
&File
,unsigned long &Size
)
449 File
= Section
->FindS("Filename");
450 Size
= Section
->FindI("Size");
451 if (File
.empty() || Size
== 0)
452 return _error
->Error("Cannot find filename or size tag");
456 // PackageCopy::RewriteEntry - Rewrite the entry with a new filename /*{{{*/
457 // ---------------------------------------------------------------------
459 bool PackageCopy::RewriteEntry(FILE *Target
,string File
)
461 TFRewriteData Changes
[] = {{"Filename",File
.c_str()},
464 if (TFRewrite(Target
,*Section
,TFRewritePackageOrder
,Changes
) == false)
470 // SourceCopy::GetFile - Get the file information from the section /*{{{*/
471 // ---------------------------------------------------------------------
473 bool SourceCopy::GetFile(string
&File
,unsigned long &Size
)
475 string Files
= Section
->FindS("Files");
476 if (Files
.empty() == true)
479 // Stash the / terminated directory prefix
480 string Base
= Section
->FindS("Directory");
481 if (Base
.empty() == false && Base
[Base
.length()-1] != '/')
484 // Read the first file triplet
485 const char *C
= Files
.c_str();
489 // Parse each of the elements
490 if (ParseQuoteWord(C
,MD5Hash
) == false ||
491 ParseQuoteWord(C
,sSize
) == false ||
492 ParseQuoteWord(C
,File
) == false)
493 return _error
->Error("Error parsing file record");
495 // Parse the size and append the directory
496 Size
= atoi(sSize
.c_str());
501 // SourceCopy::RewriteEntry - Rewrite the entry with a new filename /*{{{*/
502 // ---------------------------------------------------------------------
504 bool SourceCopy::RewriteEntry(FILE *Target
,string File
)
506 string
Dir(File
,0,File
.rfind('/'));
507 TFRewriteData Changes
[] = {{"Directory",Dir
.c_str()},
510 if (TFRewrite(Target
,*Section
,TFRewriteSourceOrder
,Changes
) == false)
519 bool SigVerify::Verify(string prefix
, string file
, indexRecords
*MetaIndex
)
521 const indexRecords::checkSum
*Record
= MetaIndex
->Lookup(file
);
525 _error
->Warning("Can't find authentication record for: %s",file
.c_str());
530 FileFd
Fd(prefix
+file
, FileFd::ReadOnly
);
531 sum
.AddFD(Fd
.Fd(), Fd
.Size());
533 string MD5
= (string
)sum
.Result();
535 if (Record
->MD5Hash
!= MD5
)
537 _error
->Warning("MD5 mismatch for: %s",file
.c_str());
541 if(_config
->FindB("Debug::aptcdrom",false))
543 cout
<< "File: " << prefix
+file
<< endl
;
544 cout
<< "Expected MD5sum: " << Record
->MD5Hash
<< endl
;
545 cout
<< "got: " << MD5
<< endl
<< endl
;
551 bool SigVerify::CopyMetaIndex(string CDROM
, string CDName
,
552 string prefix
, string file
)
555 snprintf(S
,sizeof(S
),"cdrom:[%s]/%s%s",CDName
.c_str(),
556 (prefix
).c_str() + CDROM
.length(),file
.c_str());
557 string TargetF
= _config
->FindDir("Dir::State::lists");
558 TargetF
+= URItoFileName(S
);
562 Target
.Open(TargetF
,FileFd::WriteEmpty
);
563 Rel
.Open(prefix
+ file
,FileFd::ReadOnly
);
564 if (_error
->PendingError() == true)
566 if (CopyFile(Rel
,Target
) == false)
572 bool SigVerify::CopyAndVerify(string CDROM
,string Name
,vector
<string
> &SigList
,
573 vector
<string
> PkgList
,vector
<string
> SrcList
)
575 if (SigList
.size() == 0)
578 bool Debug
= _config
->FindB("Debug::aptcdrom",false);
580 // Read all Release files
581 for (vector
<string
>::iterator I
= SigList
.begin(); I
!= SigList
.end(); I
++)
584 cout
<< "Signature verify for: " << *I
<< endl
;
586 indexRecords
*MetaIndex
= new indexRecords
;
589 // a Release.gpg without a Release should never happen
590 if(!FileExists(*I
+"Release"))
594 // verify the gpg signature of "Release"
595 // gpg --verify "*I+Release.gpg", "*I+Release"
596 const char *Args
[400];
599 string gpgvpath
= _config
->Find("Dir::Bin::gpg", "/usr/bin/gpgv");
600 string pubringpath
= _config
->Find("Apt::GPGV::TrustedKeyring", "/etc/apt/trusted.gpg");
601 string releasegpg
= *I
+"Release.gpg";
602 string release
= *I
+"Release";
604 Args
[i
++] = gpgvpath
.c_str();
605 Args
[i
++] = "--keyring";
606 Args
[i
++] = pubringpath
.c_str();
607 Configuration::Item
const *Opts
;
608 Opts
= _config
->Tree("Acquire::gpgv::Options");
612 for (; Opts
!= 0; Opts
= Opts
->Next
)
614 if (Opts
->Value
.empty() == true)
616 Args
[i
++] = Opts
->Value
.c_str();
618 _error
->Error("Argument list from Acquire::gpgv::Options too long. Exiting.");
624 Args
[i
++] = releasegpg
.c_str();
625 Args
[i
++] = release
.c_str();
628 pid_t pid
= ExecFork();
630 _error
->Error("Fork failed");
634 execvp(gpgvpath
.c_str(), (char**)Args
);
636 if(!ExecWait(pid
, "gpgv")) {
637 _error
->Warning("Signature verification failed for: %s",
638 string(*I
+"Release.gpg").c_str());
639 // something went wrong, don't copy the Release.gpg
640 // FIXME: delete any existing gpg file?
644 // Open the Release file and add it to the MetaIndex
645 if(!MetaIndex
->Load(*I
+"Release"))
647 _error
->Error(MetaIndex
->ErrorText
.c_str());
651 // go over the Indexfiles and see if they verify
652 // if so, remove them from our copy of the lists
653 vector
<string
> keys
= MetaIndex
->MetaKeys();
654 for (vector
<string
>::iterator I
= keys
.begin(); I
!= keys
.end(); I
++)
656 if(!Verify(prefix
,*I
, MetaIndex
)) {
657 // something went wrong, don't copy the Release.gpg
658 // FIXME: delete any existing gpg file?
663 // we need a fresh one for the Release.gpg
666 // everything was fine, copy the Release and Release.gpg file
667 CopyMetaIndex(CDROM
, Name
, prefix
, "Release");
668 CopyMetaIndex(CDROM
, Name
, prefix
, "Release.gpg");