apt-key del: Ignore case when checking if a keyid exists in a keyring.
[ntk/apt.git] / apt-pkg / indexcopy.cc
CommitLineData
143abaeb
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
90f057fd 3// $Id: indexcopy.cc,v 1.10 2002/03/26 07:38:58 jgg Exp $
143abaeb
AL
4/* ######################################################################
5
6 Index Copying - Aid for copying and verifying the index files
7
8 This class helps apt-cache reconstruct a damaged index files.
9
10 ##################################################################### */
11 /*}}}*/
12// Include Files /*{{{*/
ea542140 13#include<config.h>
143abaeb
AL
14
15#include <apt-pkg/error.h>
16#include <apt-pkg/progress.h>
17#include <apt-pkg/strutl.h>
18#include <apt-pkg/fileutl.h>
78c9276d 19#include <apt-pkg/aptconfiguration.h>
143abaeb
AL
20#include <apt-pkg/configuration.h>
21#include <apt-pkg/tagfile.h>
a75c6a6e 22#include <apt-pkg/indexrecords.h>
a75c6a6e 23#include <apt-pkg/cdrom.h>
453b82a3
DK
24#include <apt-pkg/gpgv.h>
25#include <apt-pkg/hashes.h>
143abaeb 26
90f057fd 27#include <iostream>
a75c6a6e 28#include <sstream>
143abaeb
AL
29#include <unistd.h>
30#include <sys/stat.h>
31#include <stdio.h>
650faab0 32#include <stdlib.h>
453b82a3 33#include <string.h>
ea542140
DK
34
35#include "indexcopy.h"
36#include <apti18n.h>
143abaeb
AL
37 /*}}}*/
38
076d01b0
AL
39using namespace std;
40
143abaeb
AL
41// IndexCopy::CopyPackages - Copy the package files from the CD /*{{{*/
42// ---------------------------------------------------------------------
43/* */
a75c6a6e
MZ
44bool IndexCopy::CopyPackages(string CDROM,string Name,vector<string> &List,
45 pkgCdromStatus *log)
143abaeb 46{
a75c6a6e 47 OpProgress *Progress = NULL;
f7f0d6c7 48 if (List.empty() == true)
143abaeb
AL
49 return true;
50
a75c6a6e
MZ
51 if(log)
52 Progress = log->GetOpProgress();
143abaeb
AL
53
54 bool NoStat = _config->FindB("APT::CDROM::Fast",false);
55 bool Debug = _config->FindB("Debug::aptcdrom",false);
56
57 // Prepare the progress indicator
650faab0 58 off_t TotalSize = 0;
78c9276d 59 std::vector<APT::Configuration::Compressor> const compressor = APT::Configuration::getCompressors();
f7f0d6c7 60 for (vector<string>::iterator I = List.begin(); I != List.end(); ++I)
143abaeb
AL
61 {
62 struct stat Buf;
78c9276d
DK
63 bool found = false;
64 std::string file = std::string(*I).append(GetFileName());
65 for (std::vector<APT::Configuration::Compressor>::const_iterator c = compressor.begin();
66 c != compressor.end(); ++c)
67 {
e788a834 68 if (stat((file + c->Extension).c_str(), &Buf) != 0)
78c9276d
DK
69 continue;
70 found = true;
71 break;
72 }
73
74 if (found == false)
75 return _error->Errno("stat", "Stat failed for %s", file.c_str());
143abaeb 76 TotalSize += Buf.st_size;
78c9276d 77 }
143abaeb 78
650faab0 79 off_t CurrentSize = 0;
143abaeb
AL
80 unsigned int NotFound = 0;
81 unsigned int WrongSize = 0;
82 unsigned int Packages = 0;
f7f0d6c7 83 for (vector<string>::iterator I = List.begin(); I != List.end(); ++I)
143abaeb
AL
84 {
85 string OrigPath = string(*I,CDROM.length());
143abaeb
AL
86
87 // Open the package file
144353a9 88 FileFd Pkg(*I + GetFileName(), FileFd::ReadOnly, FileFd::Auto);
699b209e 89 off_t const FileSize = Pkg.Size();
01366a44 90
b2e465d6 91 pkgTagFile Parser(&Pkg);
143abaeb
AL
92 if (_error->PendingError() == true)
93 return false;
94
95 // Open the output file
96 char S[400];
20ebd488
AL
97 snprintf(S,sizeof(S),"cdrom:[%s]/%s%s",Name.c_str(),
98 (*I).c_str() + CDROM.length(),GetFileName());
143abaeb
AL
99 string TargetF = _config->FindDir("Dir::State::lists") + "partial/";
100 TargetF += URItoFileName(S);
8deb53ab 101 FileFd Target;
143abaeb 102 if (_config->FindB("APT::CDROM::NoAct",false) == true)
8deb53ab 103 {
143abaeb 104 TargetF = "/dev/null";
8deb53ab
MV
105 Target.Open(TargetF,FileFd::WriteExists);
106 } else {
107 Target.Open(TargetF,FileFd::WriteAtomic);
108 }
143abaeb
AL
109 if (_error->PendingError() == true)
110 return false;
60fc4f21 111 FILE *TargetFl = fdopen(dup(Target.Fd()),"w");
b2e465d6
AL
112 if (TargetFl == 0)
113 return _error->Errno("fdopen","Failed to reopen fd");
143abaeb
AL
114
115 // Setup the progress meter
a75c6a6e
MZ
116 if(Progress)
117 Progress->OverallProgress(CurrentSize,TotalSize,FileSize,
118 string("Reading ") + Type() + " Indexes");
143abaeb
AL
119
120 // Parse
a75c6a6e
MZ
121 if(Progress)
122 Progress->SubProgress(Pkg.Size());
143abaeb
AL
123 pkgTagSection Section;
124 this->Section = &Section;
125 string Prefix;
126 unsigned long Hits = 0;
127 unsigned long Chop = 0;
128 while (Parser.Step(Section) == true)
129 {
a75c6a6e
MZ
130 if(Progress)
131 Progress->Progress(Parser.Offset());
143abaeb 132 string File;
650faab0 133 unsigned long long Size;
143abaeb 134 if (GetFile(File,Size) == false)
b2e465d6
AL
135 {
136 fclose(TargetFl);
143abaeb 137 return false;
b2e465d6 138 }
143abaeb
AL
139
140 if (Chop != 0)
141 File = OrigPath + ChopDirs(File,Chop);
142
143 // See if the file exists
143abaeb
AL
144 if (NoStat == false || Hits < 10)
145 {
146 // Attempt to fix broken structure
147 if (Hits == 0)
148 {
149 if (ReconstructPrefix(Prefix,OrigPath,CDROM,File) == false &&
150 ReconstructChop(Chop,*I,File) == false)
151 {
152 if (Debug == true)
153 clog << "Missed: " << File << endl;
154 NotFound++;
155 continue;
156 }
157 if (Chop != 0)
158 File = OrigPath + ChopDirs(File,Chop);
159 }
160
161 // Get the size
162 struct stat Buf;
e788a834 163 if (stat((CDROM + Prefix + File).c_str(),&Buf) != 0 ||
143abaeb
AL
164 Buf.st_size == 0)
165 {
69c2ecbd 166 bool Mangled = false;
143abaeb
AL
167 // Attempt to fix busted symlink support for one instance
168 string OrigFile = File;
169 string::size_type Start = File.find("binary-");
170 string::size_type End = File.find("/",Start+3);
171 if (Start != string::npos && End != string::npos)
172 {
173 File.replace(Start,End-Start,"binary-all");
174 Mangled = true;
175 }
176
177 if (Mangled == false ||
e788a834 178 stat((CDROM + Prefix + File).c_str(),&Buf) != 0)
143abaeb
AL
179 {
180 if (Debug == true)
181 clog << "Missed(2): " << OrigFile << endl;
182 NotFound++;
183 continue;
184 }
185 }
186
187 // Size match
650faab0 188 if ((unsigned long long)Buf.st_size != Size)
143abaeb
AL
189 {
190 if (Debug == true)
191 clog << "Wrong Size: " << File << endl;
192 WrongSize++;
193 continue;
194 }
195 }
196
197 Packages++;
198 Hits++;
199
b2e465d6 200 if (RewriteEntry(TargetFl,File) == false)
143abaeb 201 {
b2e465d6
AL
202 fclose(TargetFl);
203 return false;
143abaeb 204 }
143abaeb 205 }
b2e465d6 206 fclose(TargetFl);
143abaeb
AL
207
208 if (Debug == true)
209 cout << " Processed by using Prefix '" << Prefix << "' and chop " << Chop << endl;
210
211 if (_config->FindB("APT::CDROM::NoAct",false) == false)
212 {
213 // Move out of the partial directory
214 Target.Close();
215 string FinalF = _config->FindDir("Dir::State::lists");
216 FinalF += URItoFileName(S);
217 if (rename(TargetF.c_str(),FinalF.c_str()) != 0)
218 return _error->Errno("rename","Failed to rename");
143abaeb 219 }
a75c6a6e 220
143abaeb
AL
221 /* Mangle the source to be in the proper notation with
222 prefix dist [component] */
223 *I = string(*I,Prefix.length());
224 ConvertToSourceList(CDROM,*I);
225 *I = Prefix + ' ' + *I;
226
227 CurrentSize += FileSize;
228 }
a75c6a6e
MZ
229 if(Progress)
230 Progress->Done();
143abaeb
AL
231
232 // Some stats
a75c6a6e
MZ
233 if(log) {
234 stringstream msg;
235 if(NotFound == 0 && WrongSize == 0)
236 ioprintf(msg, _("Wrote %i records.\n"), Packages);
237 else if (NotFound != 0 && WrongSize == 0)
238 ioprintf(msg, _("Wrote %i records with %i missing files.\n"),
239 Packages, NotFound);
240 else if (NotFound == 0 && WrongSize != 0)
db0db9fe 241 ioprintf(msg, _("Wrote %i records with %i mismatched files\n"),
a75c6a6e
MZ
242 Packages, WrongSize);
243 if (NotFound != 0 && WrongSize != 0)
db0db9fe 244 ioprintf(msg, _("Wrote %i records with %i missing files and %i mismatched files\n"), Packages, NotFound, WrongSize);
a75c6a6e 245 }
143abaeb
AL
246
247 if (Packages == 0)
dd27443e
AL
248 _error->Warning("No valid records were found.");
249
143abaeb 250 if (NotFound + WrongSize > 10)
46e39c8e 251 _error->Warning("A lot of entries were discarded, something may be wrong.\n");
a75c6a6e 252
143abaeb
AL
253
254 return true;
255}
256 /*}}}*/
257// IndexCopy::ChopDirs - Chop off the leading directory components /*{{{*/
258// ---------------------------------------------------------------------
259/* */
260string IndexCopy::ChopDirs(string Path,unsigned int Depth)
261{
262 string::size_type I = 0;
263 do
264 {
265 I = Path.find('/',I+1);
266 Depth--;
267 }
268 while (I != string::npos && Depth != 0);
269
270 if (I == string::npos)
271 return string();
272
273 return string(Path,I+1);
274}
275 /*}}}*/
276// IndexCopy::ReconstructPrefix - Fix strange prefixing /*{{{*/
277// ---------------------------------------------------------------------
278/* This prepends dir components from the path to the package files to
279 the path to the deb until it is found */
280bool IndexCopy::ReconstructPrefix(string &Prefix,string OrigPath,string CD,
281 string File)
282{
283 bool Debug = _config->FindB("Debug::aptcdrom",false);
284 unsigned int Depth = 1;
285 string MyPrefix = Prefix;
286 while (1)
287 {
288 struct stat Buf;
e788a834 289 if (stat((CD + MyPrefix + File).c_str(),&Buf) != 0)
143abaeb
AL
290 {
291 if (Debug == true)
292 cout << "Failed, " << CD + MyPrefix + File << endl;
293 if (GrabFirst(OrigPath,MyPrefix,Depth++) == true)
294 continue;
295
296 return false;
297 }
298 else
299 {
300 Prefix = MyPrefix;
301 return true;
302 }
303 }
304 return false;
305}
306 /*}}}*/
307// IndexCopy::ReconstructChop - Fixes bad source paths /*{{{*/
308// ---------------------------------------------------------------------
309/* This removes path components from the filename and prepends the location
310 of the package files until a file is found */
311bool IndexCopy::ReconstructChop(unsigned long &Chop,string Dir,string File)
312{
313 // Attempt to reconstruct the filename
314 unsigned long Depth = 0;
315 while (1)
316 {
317 struct stat Buf;
e788a834 318 if (stat((Dir + File).c_str(),&Buf) != 0)
143abaeb
AL
319 {
320 File = ChopDirs(File,1);
321 Depth++;
322 if (File.empty() == false)
323 continue;
324 return false;
325 }
326 else
327 {
328 Chop = Depth;
329 return true;
330 }
331 }
332 return false;
333}
334 /*}}}*/
335// IndexCopy::ConvertToSourceList - Convert a Path to a sourcelist /*{{{*/
336// ---------------------------------------------------------------------
337/* We look for things in dists/ notation and convert them to
338 <dist> <component> form otherwise it is left alone. This also strips
0f770a0c
AL
339 the CD path.
340
341 This implements a regex sort of like:
342 (.*)/dists/([^/]*)/(.*)/binary-*
343 ^ ^ ^- Component
344 | |-------- Distribution
345 |------------------- Path
346
347 It was deciced to use only a single word for dist (rather than say
348 unstable/non-us) to increase the chance that each CD gets a single
349 line in sources.list.
350 */
143abaeb
AL
351void IndexCopy::ConvertToSourceList(string CD,string &Path)
352{
143abaeb
AL
353 // Strip the cdrom base path
354 Path = string(Path,CD.length());
355 if (Path.empty() == true)
356 Path = "/";
357
358 // Too short to be a dists/ type
359 if (Path.length() < strlen("dists/"))
360 return;
361
362 // Not a dists type.
076d01b0 363 if (stringcmp(Path.c_str(),Path.c_str()+strlen("dists/"),"dists/") != 0)
143abaeb 364 return;
7834cb57 365
143abaeb
AL
366 // Isolate the dist
367 string::size_type Slash = strlen("dists/");
368 string::size_type Slash2 = Path.find('/',Slash + 1);
369 if (Slash2 == string::npos || Slash2 + 2 >= Path.length())
370 return;
371 string Dist = string(Path,Slash,Slash2 - Slash);
372
373 // Isolate the component
0f770a0c
AL
374 Slash = Slash2;
375 for (unsigned I = 0; I != 10; I++)
376 {
377 Slash = Path.find('/',Slash+1);
378 if (Slash == string::npos || Slash + 2 >= Path.length())
379 return;
380 string Comp = string(Path,Slash2+1,Slash - Slash2-1);
381
382 // Verify the trailing binary- bit
383 string::size_type BinSlash = Path.find('/',Slash + 1);
384 if (Slash == string::npos)
385 return;
386 string Binary = string(Path,Slash+1,BinSlash - Slash-1);
387
d29a5330
DK
388 if (strncmp(Binary.c_str(), "binary-", strlen("binary-")) == 0)
389 {
390 Binary.erase(0, strlen("binary-"));
391 if (APT::Configuration::checkArchitecture(Binary) == false)
392 continue;
393 }
394 else if (Binary != "source")
0f770a0c
AL
395 continue;
396
397 Path = Dist + ' ' + Comp;
143abaeb 398 return;
0f770a0c 399 }
143abaeb
AL
400}
401 /*}}}*/
402// IndexCopy::GrabFirst - Return the first Depth path components /*{{{*/
403// ---------------------------------------------------------------------
404/* */
405bool IndexCopy::GrabFirst(string Path,string &To,unsigned int Depth)
406{
407 string::size_type I = 0;
408 do
409 {
410 I = Path.find('/',I+1);
411 Depth--;
412 }
413 while (I != string::npos && Depth != 0);
414
415 if (I == string::npos)
416 return false;
417
418 To = string(Path,0,I+1);
419 return true;
420}
421 /*}}}*/
143abaeb
AL
422// PackageCopy::GetFile - Get the file information from the section /*{{{*/
423// ---------------------------------------------------------------------
424/* */
650faab0 425bool PackageCopy::GetFile(string &File,unsigned long long &Size)
143abaeb
AL
426{
427 File = Section->FindS("Filename");
428 Size = Section->FindI("Size");
429 if (File.empty() || Size == 0)
430 return _error->Error("Cannot find filename or size tag");
431 return true;
432}
433 /*}}}*/
434// PackageCopy::RewriteEntry - Rewrite the entry with a new filename /*{{{*/
435// ---------------------------------------------------------------------
436/* */
b2e465d6 437bool PackageCopy::RewriteEntry(FILE *Target,string File)
143abaeb 438{
67c3067f
DK
439 TFRewriteData Changes[] = {{ "Filename", File.c_str(), NULL },
440 { NULL, NULL, NULL }};
b2e465d6
AL
441
442 if (TFRewrite(Target,*Section,TFRewritePackageOrder,Changes) == false)
443 return false;
444 fputc('\n',Target);
445 return true;
143abaeb
AL
446}
447 /*}}}*/
448// SourceCopy::GetFile - Get the file information from the section /*{{{*/
449// ---------------------------------------------------------------------
450/* */
650faab0 451bool SourceCopy::GetFile(string &File,unsigned long long &Size)
143abaeb
AL
452{
453 string Files = Section->FindS("Files");
454 if (Files.empty() == true)
455 return false;
456
457 // Stash the / terminated directory prefix
458 string Base = Section->FindS("Directory");
459 if (Base.empty() == false && Base[Base.length()-1] != '/')
460 Base += '/';
461
b2e465d6 462 // Read the first file triplet
143abaeb
AL
463 const char *C = Files.c_str();
464 string sSize;
465 string MD5Hash;
466
467 // Parse each of the elements
468 if (ParseQuoteWord(C,MD5Hash) == false ||
469 ParseQuoteWord(C,sSize) == false ||
470 ParseQuoteWord(C,File) == false)
471 return _error->Error("Error parsing file record");
472
473 // Parse the size and append the directory
650faab0 474 Size = strtoull(sSize.c_str(), NULL, 10);
143abaeb
AL
475 File = Base + File;
476 return true;
477}
478 /*}}}*/
479// SourceCopy::RewriteEntry - Rewrite the entry with a new filename /*{{{*/
480// ---------------------------------------------------------------------
481/* */
b2e465d6 482bool SourceCopy::RewriteEntry(FILE *Target,string File)
143abaeb 483{
b2e465d6 484 string Dir(File,0,File.rfind('/'));
67c3067f
DK
485 TFRewriteData Changes[] = {{ "Directory", Dir.c_str(), NULL },
486 { NULL, NULL, NULL }};
b2e465d6
AL
487
488 if (TFRewrite(Target,*Section,TFRewriteSourceOrder,Changes) == false)
489 return false;
490 fputc('\n',Target);
491 return true;
143abaeb
AL
492}
493 /*}}}*/
22f8568d
MV
494// SigVerify::Verify - Verify a files md5sum against its metaindex /*{{{*/
495// ---------------------------------------------------------------------
496/* */
a75c6a6e
MZ
497bool SigVerify::Verify(string prefix, string file, indexRecords *MetaIndex)
498{
499 const indexRecords::checkSum *Record = MetaIndex->Lookup(file);
12c7078f 500 bool const Debug = _config->FindB("Debug::aptcdrom",false);
a75c6a6e 501
12c7078f
DK
502 // we skip non-existing files in the verifcation of the Release file
503 // as non-existing files do not harm, but a warning scares people and
504 // makes it hard to strip unneeded files from an ISO like uncompressed
505 // indexes as it is done on the mirrors (see also LP: #255545 )
8220213e 506 if(!RealFileExists(prefix+file))
8d357c52 507 {
12c7078f
DK
508 if (Debug == true)
509 cout << "Skipping nonexistent in " << prefix << " file " << file << std::endl;
8d357c52
MV
510 return true;
511 }
512
12c7078f 513 if (!Record)
a75c6a6e 514 {
a1e42d1f 515 _error->Warning(_("Can't find authentication record for: %s"), file.c_str());
a75c6a6e
MZ
516 return false;
517 }
518
495e5cb2 519 if (!Record->Hash.VerifyFile(prefix+file))
a75c6a6e 520 {
a1e42d1f 521 _error->Warning(_("Hash mismatch for: %s"),file.c_str());
a75c6a6e
MZ
522 return false;
523 }
524
12c7078f 525 if(Debug == true)
a75c6a6e
MZ
526 {
527 cout << "File: " << prefix+file << endl;
495e5cb2 528 cout << "Expected Hash " << Record->Hash.toStr() << endl;
a75c6a6e
MZ
529 }
530
531 return true;
532}
92fcbfc1
DK
533 /*}}}*/
534bool SigVerify::CopyMetaIndex(string CDROM, string CDName, /*{{{*/
a75c6a6e
MZ
535 string prefix, string file)
536{
537 char S[400];
538 snprintf(S,sizeof(S),"cdrom:[%s]/%s%s",CDName.c_str(),
539 (prefix).c_str() + CDROM.length(),file.c_str());
540 string TargetF = _config->FindDir("Dir::State::lists");
541 TargetF += URItoFileName(S);
542
543 FileFd Target;
544 FileFd Rel;
22041bd2 545 Target.Open(TargetF,FileFd::WriteAtomic);
a75c6a6e 546 Rel.Open(prefix + file,FileFd::ReadOnly);
a75c6a6e 547 if (CopyFile(Rel,Target) == false)
2128d3fc
DK
548 return _error->Error("Copying of '%s' for '%s' from '%s' failed", file.c_str(), CDName.c_str(), prefix.c_str());
549
a75c6a6e
MZ
550 return true;
551}
92fcbfc1
DK
552 /*}}}*/
553bool SigVerify::CopyAndVerify(string CDROM,string Name,vector<string> &SigList, /*{{{*/
65512241 554 vector<string> /*PkgList*/,vector<string> /*SrcList*/)
a75c6a6e 555{
f7f0d6c7 556 if (SigList.empty() == true)
a75c6a6e
MZ
557 return true;
558
559 bool Debug = _config->FindB("Debug::aptcdrom",false);
560
561 // Read all Release files
f7f0d6c7 562 for (vector<string>::iterator I = SigList.begin(); I != SigList.end(); ++I)
a75c6a6e
MZ
563 {
564 if(Debug)
565 cout << "Signature verify for: " << *I << endl;
566
567 indexRecords *MetaIndex = new indexRecords;
568 string prefix = *I;
569
a319c4ee
DK
570 string const releasegpg = *I+"Release.gpg";
571 string const release = *I+"Release";
212080b8
DK
572 string const inrelease = *I+"InRelease";
573 bool useInRelease = true;
a319c4ee 574
a75c6a6e 575 // a Release.gpg without a Release should never happen
212080b8
DK
576 if (RealFileExists(inrelease) == true)
577 ;
578 else if(RealFileExists(release) == false || RealFileExists(releasegpg) == false)
cfb3d242
DK
579 {
580 delete MetaIndex;
a75c6a6e 581 continue;
cfb3d242 582 }
212080b8
DK
583 else
584 useInRelease = false;
a75c6a6e 585
a75c6a6e
MZ
586 pid_t pid = ExecFork();
587 if(pid < 0) {
588 _error->Error("Fork failed");
589 return false;
590 }
cf440fac 591 if(pid == 0)
212080b8
DK
592 {
593 if (useInRelease == true)
2f5b6151 594 ExecGPGV(inrelease, inrelease);
212080b8 595 else
2f5b6151 596 ExecGPGV(release, releasegpg);
212080b8 597 }
cf440fac 598
a75c6a6e
MZ
599 if(!ExecWait(pid, "gpgv")) {
600 _error->Warning("Signature verification failed for: %s",
212080b8 601 (useInRelease ? inrelease.c_str() : releasegpg.c_str()));
a75c6a6e
MZ
602 // something went wrong, don't copy the Release.gpg
603 // FIXME: delete any existing gpg file?
a9d6b0ad 604 delete MetaIndex;
a75c6a6e
MZ
605 continue;
606 }
607
608 // Open the Release file and add it to the MetaIndex
a319c4ee 609 if(!MetaIndex->Load(release))
a75c6a6e 610 {
9b5d79ec 611 _error->Error("%s",MetaIndex->ErrorText.c_str());
a75c6a6e
MZ
612 return false;
613 }
614
615 // go over the Indexfiles and see if they verify
616 // if so, remove them from our copy of the lists
617 vector<string> keys = MetaIndex->MetaKeys();
f7f0d6c7 618 for (vector<string>::iterator I = keys.begin(); I != keys.end(); ++I)
a75c6a6e
MZ
619 {
620 if(!Verify(prefix,*I, MetaIndex)) {
621 // something went wrong, don't copy the Release.gpg
622 // FIXME: delete any existing gpg file?
7efdcd3a 623 _error->Discard();
a75c6a6e
MZ
624 continue;
625 }
626 }
627
628 // we need a fresh one for the Release.gpg
629 delete MetaIndex;
630
631 // everything was fine, copy the Release and Release.gpg file
212080b8
DK
632 if (useInRelease == true)
633 CopyMetaIndex(CDROM, Name, prefix, "InRelease");
634 else
635 {
636 CopyMetaIndex(CDROM, Name, prefix, "Release");
637 CopyMetaIndex(CDROM, Name, prefix, "Release.gpg");
638 }
a75c6a6e
MZ
639 }
640
cf440fac 641 return true;
a319c4ee
DK
642}
643 /*}}}*/
27cc55ee 644// SigVerify::RunGPGV - deprecated wrapper calling ExecGPGV /*{{{*/
a02db58f 645APT_NORETURN bool SigVerify::RunGPGV(std::string const &File, std::string const &FileOut,
27cc55ee
DK
646 int const &statusfd, int fd[2]) {
647 ExecGPGV(File, FileOut, statusfd, fd);
d3e8fbb3 648}
a02db58f 649APT_NORETURN bool SigVerify::RunGPGV(std::string const &File, std::string const &FileOut,
27cc55ee
DK
650 int const &statusfd) {
651 ExecGPGV(File, FileOut, statusfd);
d3e8fbb3 652}
27cc55ee 653 /*}}}*/
92fcbfc1
DK
654bool TranslationsCopy::CopyTranslations(string CDROM,string Name, /*{{{*/
655 vector<string> &List, pkgCdromStatus *log)
22f8568d
MV
656{
657 OpProgress *Progress = NULL;
f7f0d6c7 658 if (List.empty() == true)
22f8568d
MV
659 return true;
660
661 if(log)
662 Progress = log->GetOpProgress();
663
664 bool Debug = _config->FindB("Debug::aptcdrom",false);
665
666 // Prepare the progress indicator
650faab0 667 off_t TotalSize = 0;
78c9276d 668 std::vector<APT::Configuration::Compressor> const compressor = APT::Configuration::getCompressors();
f7f0d6c7 669 for (vector<string>::iterator I = List.begin(); I != List.end(); ++I)
22f8568d
MV
670 {
671 struct stat Buf;
78c9276d
DK
672 bool found = false;
673 std::string file = *I;
674 for (std::vector<APT::Configuration::Compressor>::const_iterator c = compressor.begin();
675 c != compressor.end(); ++c)
676 {
e788a834 677 if (stat((file + c->Extension).c_str(), &Buf) != 0)
78c9276d
DK
678 continue;
679 found = true;
680 break;
681 }
682
683 if (found == false)
684 return _error->Errno("stat", "Stat failed for %s", file.c_str());
22f8568d 685 TotalSize += Buf.st_size;
78c9276d 686 }
22f8568d 687
650faab0 688 off_t CurrentSize = 0;
22f8568d
MV
689 unsigned int NotFound = 0;
690 unsigned int WrongSize = 0;
691 unsigned int Packages = 0;
f7f0d6c7 692 for (vector<string>::iterator I = List.begin(); I != List.end(); ++I)
69c2ecbd 693 {
22f8568d 694 // Open the package file
144353a9 695 FileFd Pkg(*I, FileFd::ReadOnly, FileFd::Auto);
699b209e
DK
696 off_t const FileSize = Pkg.Size();
697
22f8568d
MV
698 pkgTagFile Parser(&Pkg);
699 if (_error->PendingError() == true)
700 return false;
701
702 // Open the output file
703 char S[400];
704 snprintf(S,sizeof(S),"cdrom:[%s]/%s",Name.c_str(),
705 (*I).c_str() + CDROM.length());
706 string TargetF = _config->FindDir("Dir::State::lists") + "partial/";
707 TargetF += URItoFileName(S);
d5da93b8 708 FileFd Target;
22f8568d 709 if (_config->FindB("APT::CDROM::NoAct",false) == true)
d5da93b8 710 {
22f8568d 711 TargetF = "/dev/null";
d5da93b8
DK
712 Target.Open(TargetF,FileFd::WriteExists);
713 } else {
714 Target.Open(TargetF,FileFd::WriteAtomic);
715 }
22f8568d
MV
716 if (_error->PendingError() == true)
717 return false;
a80a0344 718 FILE *TargetFl = fdopen(dup(Target.Fd()),"w");
22f8568d
MV
719 if (TargetFl == 0)
720 return _error->Errno("fdopen","Failed to reopen fd");
721
722 // Setup the progress meter
723 if(Progress)
724 Progress->OverallProgress(CurrentSize,TotalSize,FileSize,
725 string("Reading Translation Indexes"));
726
727 // Parse
728 if(Progress)
729 Progress->SubProgress(Pkg.Size());
730 pkgTagSection Section;
731 this->Section = &Section;
732 string Prefix;
733 unsigned long Hits = 0;
22f8568d
MV
734 while (Parser.Step(Section) == true)
735 {
736 if(Progress)
737 Progress->Progress(Parser.Offset());
738
739 const char *Start;
740 const char *Stop;
741 Section.GetSection(Start,Stop);
742 fwrite(Start,Stop-Start, 1, TargetFl);
743 fputc('\n',TargetFl);
744
745 Packages++;
746 Hits++;
747 }
748 fclose(TargetFl);
749
750 if (Debug == true)
91c03d37 751 cout << " Processed by using Prefix '" << Prefix << "' and chop " << endl;
22f8568d
MV
752
753 if (_config->FindB("APT::CDROM::NoAct",false) == false)
754 {
755 // Move out of the partial directory
756 Target.Close();
757 string FinalF = _config->FindDir("Dir::State::lists");
758 FinalF += URItoFileName(S);
759 if (rename(TargetF.c_str(),FinalF.c_str()) != 0)
760 return _error->Errno("rename","Failed to rename");
761 }
762
763
764 CurrentSize += FileSize;
765 }
766 if(Progress)
767 Progress->Done();
768
769 // Some stats
770 if(log) {
771 stringstream msg;
772 if(NotFound == 0 && WrongSize == 0)
773 ioprintf(msg, _("Wrote %i records.\n"), Packages);
774 else if (NotFound != 0 && WrongSize == 0)
775 ioprintf(msg, _("Wrote %i records with %i missing files.\n"),
776 Packages, NotFound);
777 else if (NotFound == 0 && WrongSize != 0)
778 ioprintf(msg, _("Wrote %i records with %i mismatched files\n"),
779 Packages, WrongSize);
780 if (NotFound != 0 && WrongSize != 0)
781 ioprintf(msg, _("Wrote %i records with %i missing files and %i mismatched files\n"), Packages, NotFound, WrongSize);
782 }
783
784 if (Packages == 0)
785 _error->Warning("No valid records were found.");
786
787 if (NotFound + WrongSize > 10)
46e39c8e 788 _error->Warning("A lot of entries were discarded, something may be wrong.\n");
22f8568d
MV
789
790
791 return true;
792}
92fcbfc1 793 /*}}}*/