]>
git.saurik.com Git - apt.git/blob - cmdline/indexcopy.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: indexcopy.cc,v 1.7 2001/03/13 05:23:42 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>
28 // IndexCopy::CopyPackages - Copy the package files from the CD /*{{{*/
29 // ---------------------------------------------------------------------
31 bool IndexCopy::CopyPackages(string CDROM
,string Name
,vector
<string
> &List
)
36 OpTextProgress Progress
;
38 bool NoStat
= _config
->FindB("APT::CDROM::Fast",false);
39 bool Debug
= _config
->FindB("Debug::aptcdrom",false);
41 // Prepare the progress indicator
42 unsigned long TotalSize
= 0;
43 for (vector
<string
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
46 if (stat(string(*I
+ GetFileName()).c_str(),&Buf
) != 0 &&
47 stat(string(*I
+ GetFileName() + ".gz").c_str(),&Buf
) != 0)
48 return _error
->Errno("stat","Stat failed for %s",
49 string(*I
+ GetFileName()).c_str());
50 TotalSize
+= Buf
.st_size
;
53 unsigned long CurrentSize
= 0;
54 unsigned int NotFound
= 0;
55 unsigned int WrongSize
= 0;
56 unsigned int Packages
= 0;
57 for (vector
<string
>::iterator I
= List
.begin(); I
!= List
.end(); I
++)
59 string OrigPath
= string(*I
,CDROM
.length());
60 unsigned long FileSize
= 0;
62 // Open the package file
64 if (FileExists(*I
+ GetFileName()) == true)
66 Pkg
.Open(*I
+ GetFileName(),FileFd::ReadOnly
);
67 FileSize
= Pkg
.Size();
71 FileFd
From(*I
+ GetFileName() + ".gz",FileFd::ReadOnly
);
72 if (_error
->PendingError() == true)
74 FileSize
= From
.Size();
77 FILE *tmp
= tmpfile();
79 return _error
->Errno("tmpfile","Unable to create a tmp file");
80 Pkg
.Fd(dup(fileno(tmp
)));
86 return _error
->Errno("fork","Couldn't fork gzip");
91 dup2(From
.Fd(),STDIN_FILENO
);
92 dup2(Pkg
.Fd(),STDOUT_FILENO
);
93 SetCloseExec(STDIN_FILENO
,false);
94 SetCloseExec(STDOUT_FILENO
,false);
97 Args
[0] = _config
->Find("Dir::bin::gzip","gzip").c_str();
100 execvp(Args
[0],(char **)Args
);
104 // Wait for gzip to finish
105 if (ExecWait(Process
,_config
->Find("Dir::bin::gzip","gzip").c_str(),false) == false)
106 return _error
->Error("gzip failed, perhaps the disk is full.");
110 pkgTagFile
Parser(&Pkg
);
111 if (_error
->PendingError() == true)
114 // Open the output file
116 snprintf(S
,sizeof(S
),"cdrom:[%s]/%s%s",Name
.c_str(),
117 (*I
).c_str() + CDROM
.length(),GetFileName());
118 string TargetF
= _config
->FindDir("Dir::State::lists") + "partial/";
119 TargetF
+= URItoFileName(S
);
120 if (_config
->FindB("APT::CDROM::NoAct",false) == true)
121 TargetF
= "/dev/null";
122 FileFd
Target(TargetF
,FileFd::WriteEmpty
);
123 FILE *TargetFl
= fdopen(dup(Target
.Fd()),"w");
124 if (_error
->PendingError() == true)
127 return _error
->Errno("fdopen","Failed to reopen fd");
129 // Setup the progress meter
130 Progress
.OverallProgress(CurrentSize
,TotalSize
,FileSize
,
131 string("Reading ") + Type() + " Indexes");
134 Progress
.SubProgress(Pkg
.Size());
135 pkgTagSection Section
;
136 this->Section
= &Section
;
138 unsigned long Hits
= 0;
139 unsigned long Chop
= 0;
140 while (Parser
.Step(Section
) == true)
142 Progress
.Progress(Parser
.Offset());
145 if (GetFile(File
,Size
) == false)
152 File
= OrigPath
+ ChopDirs(File
,Chop
);
154 // See if the file exists
155 bool Mangled
= false;
156 if (NoStat
== false || Hits
< 10)
158 // Attempt to fix broken structure
161 if (ReconstructPrefix(Prefix
,OrigPath
,CDROM
,File
) == false &&
162 ReconstructChop(Chop
,*I
,File
) == false)
165 clog
<< "Missed: " << File
<< endl
;
170 File
= OrigPath
+ ChopDirs(File
,Chop
);
175 if (stat(string(CDROM
+ Prefix
+ File
).c_str(),&Buf
) != 0 ||
178 // Attempt to fix busted symlink support for one instance
179 string OrigFile
= File
;
180 string::size_type Start
= File
.find("binary-");
181 string::size_type End
= File
.find("/",Start
+3);
182 if (Start
!= string::npos
&& End
!= string::npos
)
184 File
.replace(Start
,End
-Start
,"binary-all");
188 if (Mangled
== false ||
189 stat(string(CDROM
+ Prefix
+ File
).c_str(),&Buf
) != 0)
192 clog
<< "Missed(2): " << OrigFile
<< endl
;
199 if ((unsigned)Buf
.st_size
!= Size
)
202 clog
<< "Wrong Size: " << File
<< endl
;
211 if (RewriteEntry(TargetFl
,File
) == false)
220 cout
<< " Processed by using Prefix '" << Prefix
<< "' and chop " << Chop
<< endl
;
222 if (_config
->FindB("APT::CDROM::NoAct",false) == false)
224 // Move out of the partial directory
226 string FinalF
= _config
->FindDir("Dir::State::lists");
227 FinalF
+= URItoFileName(S
);
228 if (rename(TargetF
.c_str(),FinalF
.c_str()) != 0)
229 return _error
->Errno("rename","Failed to rename");
231 // Copy the release file
232 snprintf(S
,sizeof(S
),"cdrom:[%s]/%sRelease",Name
.c_str(),
233 (*I
).c_str() + CDROM
.length());
234 string TargetF
= _config
->FindDir("Dir::State::lists") + "partial/";
235 TargetF
+= URItoFileName(S
);
236 if (FileExists(*I
+ "Release") == true)
238 FileFd
Target(TargetF
,FileFd::WriteEmpty
);
239 FileFd
Rel(*I
+ "Release",FileFd::ReadOnly
);
240 if (_error
->PendingError() == true)
243 if (CopyFile(Rel
,Target
) == false)
248 // Empty release file
249 FileFd
Target(TargetF
,FileFd::WriteEmpty
);
252 // Rename the release file
253 FinalF
= _config
->FindDir("Dir::State::lists");
254 FinalF
+= URItoFileName(S
);
255 if (rename(TargetF
.c_str(),FinalF
.c_str()) != 0)
256 return _error
->Errno("rename","Failed to rename");
259 /* Mangle the source to be in the proper notation with
260 prefix dist [component] */
261 *I
= string(*I
,Prefix
.length());
262 ConvertToSourceList(CDROM
,*I
);
263 *I
= Prefix
+ ' ' + *I
;
265 CurrentSize
+= FileSize
;
270 cout
<< "Wrote " << Packages
<< " records" ;
272 cout
<< " with " << NotFound
<< " missing files";
273 if (NotFound
!= 0 && WrongSize
!= 0)
276 cout
<< " with " << WrongSize
<< " mismatched files";
280 return _error
->Warning("No valid records were found.");
282 if (NotFound
+ WrongSize
> 10)
283 cout
<< "Alot of entries were discarded, something may be wrong." << endl
;
288 // IndexCopy::ChopDirs - Chop off the leading directory components /*{{{*/
289 // ---------------------------------------------------------------------
291 string
IndexCopy::ChopDirs(string Path
,unsigned int Depth
)
293 string::size_type I
= 0;
296 I
= Path
.find('/',I
+1);
299 while (I
!= string::npos
&& Depth
!= 0);
301 if (I
== string::npos
)
304 return string(Path
,I
+1);
307 // IndexCopy::ReconstructPrefix - Fix strange prefixing /*{{{*/
308 // ---------------------------------------------------------------------
309 /* This prepends dir components from the path to the package files to
310 the path to the deb until it is found */
311 bool IndexCopy::ReconstructPrefix(string
&Prefix
,string OrigPath
,string CD
,
314 bool Debug
= _config
->FindB("Debug::aptcdrom",false);
315 unsigned int Depth
= 1;
316 string MyPrefix
= Prefix
;
320 if (stat(string(CD
+ MyPrefix
+ File
).c_str(),&Buf
) != 0)
323 cout
<< "Failed, " << CD
+ MyPrefix
+ File
<< endl
;
324 if (GrabFirst(OrigPath
,MyPrefix
,Depth
++) == true)
338 // IndexCopy::ReconstructChop - Fixes bad source paths /*{{{*/
339 // ---------------------------------------------------------------------
340 /* This removes path components from the filename and prepends the location
341 of the package files until a file is found */
342 bool IndexCopy::ReconstructChop(unsigned long &Chop
,string Dir
,string File
)
344 // Attempt to reconstruct the filename
345 unsigned long Depth
= 0;
349 if (stat(string(Dir
+ File
).c_str(),&Buf
) != 0)
351 File
= ChopDirs(File
,1);
353 if (File
.empty() == false)
366 // IndexCopy::ConvertToSourceList - Convert a Path to a sourcelist /*{{{*/
367 // ---------------------------------------------------------------------
368 /* We look for things in dists/ notation and convert them to
369 <dist> <component> form otherwise it is left alone. This also strips
372 This implements a regex sort of like:
373 (.*)/dists/([^/]*)/(.*)/binary-*
375 | |-------- Distribution
376 |------------------- Path
378 It was deciced to use only a single word for dist (rather than say
379 unstable/non-us) to increase the chance that each CD gets a single
380 line in sources.list.
382 void IndexCopy::ConvertToSourceList(string CD
,string
&Path
)
385 snprintf(S
,sizeof(S
),"binary-%s",_config
->Find("Apt::Architecture").c_str());
387 // Strip the cdrom base path
388 Path
= string(Path
,CD
.length());
389 if (Path
.empty() == true)
392 // Too short to be a dists/ type
393 if (Path
.length() < strlen("dists/"))
397 if (stringcmp(Path
.begin(),Path
.begin()+strlen("dists/"),"dists/") != 0)
401 string::size_type Slash
= strlen("dists/");
402 string::size_type Slash2
= Path
.find('/',Slash
+ 1);
403 if (Slash2
== string::npos
|| Slash2
+ 2 >= Path
.length())
405 string Dist
= string(Path
,Slash
,Slash2
- Slash
);
407 // Isolate the component
409 for (unsigned I
= 0; I
!= 10; I
++)
411 Slash
= Path
.find('/',Slash
+1);
412 if (Slash
== string::npos
|| Slash
+ 2 >= Path
.length())
414 string Comp
= string(Path
,Slash2
+1,Slash
- Slash2
-1);
416 // Verify the trailing binary- bit
417 string::size_type BinSlash
= Path
.find('/',Slash
+ 1);
418 if (Slash
== string::npos
)
420 string Binary
= string(Path
,Slash
+1,BinSlash
- Slash
-1);
422 if (Binary
!= S
&& Binary
!= "source")
425 Path
= Dist
+ ' ' + Comp
;
430 // IndexCopy::GrabFirst - Return the first Depth path components /*{{{*/
431 // ---------------------------------------------------------------------
433 bool IndexCopy::GrabFirst(string Path
,string
&To
,unsigned int Depth
)
435 string::size_type I
= 0;
438 I
= Path
.find('/',I
+1);
441 while (I
!= string::npos
&& Depth
!= 0);
443 if (I
== string::npos
)
446 To
= string(Path
,0,I
+1);
450 // PackageCopy::GetFile - Get the file information from the section /*{{{*/
451 // ---------------------------------------------------------------------
453 bool PackageCopy::GetFile(string
&File
,unsigned long &Size
)
455 File
= Section
->FindS("Filename");
456 Size
= Section
->FindI("Size");
457 if (File
.empty() || Size
== 0)
458 return _error
->Error("Cannot find filename or size tag");
462 // PackageCopy::RewriteEntry - Rewrite the entry with a new filename /*{{{*/
463 // ---------------------------------------------------------------------
465 bool PackageCopy::RewriteEntry(FILE *Target
,string File
)
467 TFRewriteData Changes
[] = {{"Filename",File
.c_str()},
470 if (TFRewrite(Target
,*Section
,TFRewritePackageOrder
,Changes
) == false)
476 // SourceCopy::GetFile - Get the file information from the section /*{{{*/
477 // ---------------------------------------------------------------------
479 bool SourceCopy::GetFile(string
&File
,unsigned long &Size
)
481 string Files
= Section
->FindS("Files");
482 if (Files
.empty() == true)
485 // Stash the / terminated directory prefix
486 string Base
= Section
->FindS("Directory");
487 if (Base
.empty() == false && Base
[Base
.length()-1] != '/')
490 // Read the first file triplet
491 const char *C
= Files
.c_str();
495 // Parse each of the elements
496 if (ParseQuoteWord(C
,MD5Hash
) == false ||
497 ParseQuoteWord(C
,sSize
) == false ||
498 ParseQuoteWord(C
,File
) == false)
499 return _error
->Error("Error parsing file record");
501 // Parse the size and append the directory
502 Size
= atoi(sSize
.c_str());
507 // SourceCopy::RewriteEntry - Rewrite the entry with a new filename /*{{{*/
508 // ---------------------------------------------------------------------
510 bool SourceCopy::RewriteEntry(FILE *Target
,string File
)
512 string
Dir(File
,0,File
.rfind('/'));
513 TFRewriteData Changes
[] = {{"Directory",Dir
.c_str()},
516 if (TFRewrite(Target
,*Section
,TFRewriteSourceOrder
,Changes
) == false)