]>
git.saurik.com Git - apt.git/blob - apt-inst/deb/dpkgdb.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: dpkgdb.cc,v 1.7.2.1 2004/01/16 18:58:50 mdz Exp $
4 /* ######################################################################
6 DPKGv1 Database Implemenation
8 This class provides parsers and other implementations for the DPKGv1
9 database. It reads the diversion file, the list files and the status
10 file to build both the list of currently installed files and the
11 currently installed package list.
13 ##################################################################### */
15 // Include Files /*{{{*/
18 #include <apt-pkg/dpkgdb.h>
19 #include <apt-pkg/configuration.h>
20 #include <apt-pkg/error.h>
21 #include <apt-pkg/progress.h>
22 #include <apt-pkg/tagfile.h>
23 #include <apt-pkg/strutl.h>
24 #include <apt-pkg/fileutl.h>
25 #include <apt-pkg/filelist.h>
39 // EraseDir - Erase A Directory /*{{{*/
40 // ---------------------------------------------------------------------
41 /* This is necessary to create a new empty sub directory. The caller should
42 invoke mkdir after this with the proper permissions and check for
43 error. Maybe stick this in fileutils */
44 static bool EraseDir(const char *Dir
)
46 // First we try a simple RM
47 if (rmdir(Dir
) == 0 ||
51 // A file? Easy enough..
55 return _error
->Errno("unlink",_("Failed to remove %s"),Dir
);
60 if (errno
!= ENOTEMPTY
)
61 return _error
->Errno("rmdir",_("Failed to remove %s"),Dir
);
64 pid_t Pid
= ExecFork();
66 // Spawn the subprocess
69 execlp(_config
->Find("Dir::Bin::rm","/bin/rm").c_str(),
70 "rm","-rf","--",Dir
,(char *)NULL
);
73 return ExecWait(Pid
,_config
->Find("dir::bin::rm","/bin/rm").c_str());
76 // DpkgDB::debDpkgDB - Constructor /*{{{*/
77 // ---------------------------------------------------------------------
79 debDpkgDB::debDpkgDB() : CacheMap(0), FileMap(0)
81 AdminDir
= flNotFile(_config
->Find("Dir::State::status"));
86 // DpkgDB::~debDpkgDB - Destructor /*{{{*/
87 // ---------------------------------------------------------------------
89 debDpkgDB::~debDpkgDB()
102 // DpkgDB::InitMetaTmp - Get the temp dir for meta information /*{{{*/
103 // ---------------------------------------------------------------------
104 /* This creats+empties the meta temporary directory /var/lib/dpkg/tmp.ci
105 Only one package at a time can be using the returned meta directory. */
106 bool debDpkgDB::InitMetaTmp(string
&Dir
)
108 string Tmp
= AdminDir
+ "tmp.ci/";
109 if (EraseDir(Tmp
.c_str()) == false)
110 return _error
->Error(_("Unable to create %s"),Tmp
.c_str());
111 if (mkdir(Tmp
.c_str(),0755) != 0)
112 return _error
->Errno("mkdir",_("Unable to create %s"),Tmp
.c_str());
114 // Verify it is on the same filesystem as the main info directory
117 if (stat((AdminDir
+ "info").c_str(),&St
) != 0)
118 return _error
->Errno("stat",_("Failed to stat %sinfo"),AdminDir
.c_str());
120 if (stat(Tmp
.c_str(),&St
) != 0)
121 return _error
->Errno("stat",_("Failed to stat %s"),Tmp
.c_str());
122 if (Dev
!= St
.st_dev
)
123 return _error
->Error(_("The info and temp directories need to be on the same filesystem"));
130 // DpkgDB::ReadyPkgCache - Prepare the cache with the current status /*{{{*/
131 // ---------------------------------------------------------------------
132 /* This reads in the status file into an empty cache. This really needs
133 to be somehow unified with the high level APT notion of the Database
134 directory, but there is no clear way on how to do that yet. */
135 bool debDpkgDB::ReadyPkgCache(OpProgress
&Progress
)
139 Progress
.OverallProgress(1,1,1,_("Reading package lists"));
149 if (pkgCacheGenerator::MakeOnlyStatusCache(&Progress
,&CacheMap
) == false)
151 Cache
->DropProgress();
156 // DpkgDB::ReadFList - Read the File Listings in /*{{{*/
157 // ---------------------------------------------------------------------
158 /* This reads the file listing in from the state directory. This is a
159 performance critical routine, as it needs to parse about 50k lines of
160 text spread over a hundred or more files. For an initial cold start
161 most of the time is spent in reading file inodes and so on, not
163 bool debDpkgDB::ReadFList(OpProgress
&Progress
)
165 // Count the number of packages we need to read information for
166 unsigned long Total
= 0;
167 pkgCache
&Cache
= this->Cache
->GetCache();
168 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
170 // Only not installed packages have no files.
171 if (I
->CurrentState
== pkgCache::State::NotInstalled
)
176 /* Switch into the admin dir, this prevents useless lookups for the
178 string Cwd
= SafeGetCWD();
179 if (chdir((AdminDir
+ "info/").c_str()) != 0)
180 return _error
->Errno("chdir",_("Failed to change to the admin dir %sinfo"),AdminDir
.c_str());
182 // Allocate a buffer. Anything larger than this buffer will be mmaped
183 unsigned long BufSize
= 32*1024;
184 char *Buffer
= new char[BufSize
];
186 // Begin Loading them
187 unsigned long Count
= 0;
189 for (pkgCache::PkgIterator I
= Cache
.PkgBegin(); I
.end() == false; I
++)
191 /* Only not installed packages have no files. ConfFile packages have
192 file lists but we don't want to read them in */
193 if (I
->CurrentState
== pkgCache::State::NotInstalled
||
194 I
->CurrentState
== pkgCache::State::ConfigFiles
)
197 // Fetch a package handle to associate with the file
198 pkgFLCache::PkgIterator FlPkg
= FList
->GetPkg(I
.Name(),0,true);
199 if (FlPkg
.end() == true)
201 _error
->Error(_("Internal error getting a package name"));
205 Progress
.OverallProgress(Count
,Total
,1,_("Reading file listing"));
207 // Open the list file
208 snprintf(Name
,sizeof(Name
),"%s.list",I
.Name());
209 int Fd
= open(Name
,O_RDONLY
);
211 /* Okay this is very strange and bad.. Best thing is to bail and
212 instruct the user to look into it. */
214 if (Fd
== -1 || fstat(Fd
,&Stat
) != 0)
216 _error
->Errno("open",_("Failed to open the list file '%sinfo/%s'. If you "
217 "cannot restore this file then make it empty "
218 "and immediately re-install the same version of the package!"),
219 AdminDir
.c_str(),Name
);
223 // Set File to be a memory buffer containing the whole file
225 if ((unsigned)Stat
.st_size
< BufSize
)
227 if (read(Fd
,Buffer
,Stat
.st_size
) != Stat
.st_size
)
229 _error
->Errno("read",_("Failed reading the list file %sinfo/%s"),
230 AdminDir
.c_str(),Name
);
239 File
= (char *)mmap(0,Stat
.st_size
,PROT_READ
,MAP_PRIVATE
,Fd
,0);
240 if (File
== (char *)(-1))
242 _error
->Errno("mmap",_("Failed reading the list file %sinfo/%s"),
243 AdminDir
.c_str(),Name
);
250 const char *Start
= File
;
251 const char *End
= File
;
252 const char *Finish
= File
+ Stat
.st_size
;
253 for (; End
< Finish
; End
++)
255 // Not an end of line
256 if (*End
!= '\n' && End
+ 1 < Finish
)
262 pkgFLCache::NodeIterator Node
= FList
->GetNode(Start
,End
,
263 FlPkg
.Offset(),true,false);
264 if (Node
.end() == true)
266 _error
->Error(_("Internal error getting a node"));
271 // Skip past the end of line
272 for (; *End
== '\n' && End
< Finish
; End
++);
277 if ((unsigned)Stat
.st_size
>= BufSize
)
278 munmap((caddr_t
)File
,Stat
.st_size
);
288 if (chdir(Cwd
.c_str()) != 0)
289 return _error
->Errno("chdir",_("Unable to change to %s"),Cwd
.c_str());
290 return !_error
->PendingError();
293 // DpkgDB::ReadDiversions - Load the diversions file /*{{{*/
294 // ---------------------------------------------------------------------
295 /* Read the diversion file in from disk. This is usually invoked by
296 LoadChanges before performing an operation that uses the FLCache. */
297 bool debDpkgDB::ReadDiversions()
300 if (stat((AdminDir
+ "diversions").c_str(),&Stat
) != 0)
303 if (_error
->PendingError() == true)
306 FILE *Fd
= fopen((AdminDir
+ "diversions").c_str(),"r");
308 return _error
->Errno("fopen",_("Failed to open the diversions file %sdiversions"),AdminDir
.c_str());
310 FList
->BeginDiverLoad();
317 // Read the three lines in
318 if (fgets(From
,sizeof(From
),Fd
) == 0)
320 if (fgets(To
,sizeof(To
),Fd
) == 0 ||
321 fgets(Package
,sizeof(Package
),Fd
) == 0)
323 _error
->Error(_("The diversion file is corrupted"));
328 unsigned long Len
= strlen(From
);
329 if (Len
< 2 || From
[Len
-1] != '\n')
330 _error
->Error(_("Invalid line in the diversion file: %s"),From
);
334 if (Len
< 2 || To
[Len
-1] != '\n')
335 _error
->Error(_("Invalid line in the diversion file: %s"),To
);
338 Len
= strlen(Package
);
339 if (Len
< 2 || Package
[Len
-1] != '\n')
340 _error
->Error(_("Invalid line in the diversion file: %s"),Package
);
344 // Make sure the lines were parsed OK
345 if (_error
->PendingError() == true)
349 if (strcmp(Package
,":") == 0)
351 pkgFLCache::PkgIterator FlPkg
= FList
->GetPkg(Package
,0,true);
352 if (FlPkg
.end() == true)
354 _error
->Error(_("Internal error getting a package name"));
358 // Install the diversion
359 if (FList
->AddDiversion(FlPkg
,From
,To
) == false)
361 _error
->Error(_("Internal error adding a diversion"));
365 if (_error
->PendingError() == false)
366 FList
->FinishDiverLoad();
368 DiverInode
= Stat
.st_ino
;
369 DiverTime
= Stat
.st_mtime
;
372 return !_error
->PendingError();
375 // DpkgDB::ReadFileList - Read the file listing /*{{{*/
376 // ---------------------------------------------------------------------
377 /* Read in the file listing. The file listing is created from three
378 sources, *.list, Conffile sections and the Diversion table. */
379 bool debDpkgDB::ReadyFileList(OpProgress
&Progress
)
382 return _error
->Error(_("The pkg cache must be initialized first"));
385 Progress
.OverallProgress(1,1,1,_("Reading file listing"));
389 // Create the cache and read in the file listing
390 FileMap
= new DynamicMMap(MMap::Public
);
391 FList
= new pkgFLCache(*FileMap
);
392 if (_error
->PendingError() == true ||
393 ReadFList(Progress
) == false ||
394 ReadConfFiles() == false ||
395 ReadDiversions() == false)
404 cout
<< "Node: " << FList
->HeaderP
->NodeCount
<< ',' << FList
->HeaderP
->UniqNodes
<< endl
;
405 cout
<< "Dir: " << FList
->HeaderP
->DirCount
<< endl
;
406 cout
<< "Package: " << FList
->HeaderP
->PackageCount
<< endl
;
407 cout
<< "HashSize: " << FList
->HeaderP
->HashSize
<< endl
;
408 cout
<< "Size: " << FileMap
->Size() << endl
;
414 // DpkgDB::ReadConfFiles - Read the conf file sections from the s-file /*{{{*/
415 // ---------------------------------------------------------------------
416 /* Reading the conf files is done by reparsing the status file. This is
417 actually rather fast so it is no big deal. */
418 bool debDpkgDB::ReadConfFiles()
420 FileFd
File(_config
->FindFile("Dir::State::status"),FileFd::ReadOnly
);
421 pkgTagFile
Tags(&File
);
422 if (_error
->PendingError() == true)
425 pkgTagSection Section
;
428 // Skip to the next section
429 unsigned long Offset
= Tags
.Offset();
430 if (Tags
.Step(Section
) == false)
436 if (Section
.Find("Conffiles",Start
,Stop
) == false)
439 const char *PkgStart
;
441 if (Section
.Find("Package",PkgStart
,PkgEnd
) == false)
442 return _error
->Error(_("Failed to find a Package: header, offset %lu"),Offset
);
444 // Snag a package record for it
445 pkgFLCache::PkgIterator FlPkg
= FList
->GetPkg(PkgStart
,PkgEnd
,true);
446 if (FlPkg
.end() == true)
447 return _error
->Error(_("Internal error getting a package name"));
449 // Parse the conf file lines
452 for (; isspace(*Start
) != 0 && Start
< Stop
; Start
++);
456 // Split it into words
457 const char *End
= Start
;
458 for (; isspace(*End
) == 0 && End
< Stop
; End
++);
459 const char *StartMd5
= End
;
460 for (; isspace(*StartMd5
) != 0 && StartMd5
< Stop
; StartMd5
++);
461 const char *EndMd5
= StartMd5
;
462 for (; isspace(*EndMd5
) == 0 && EndMd5
< Stop
; EndMd5
++);
463 if (StartMd5
== EndMd5
|| Start
== End
)
464 return _error
->Error(_("Bad ConfFile section in the status file. Offset %lu"),Offset
);
466 // Insert a new entry
467 unsigned char MD5
[16];
468 if (Hex2Num(string(StartMd5
,EndMd5
-StartMd5
),MD5
,16) == false)
469 return _error
->Error(_("Error parsing MD5. Offset %lu"),Offset
);
471 if (FList
->AddConfFile(Start
,End
,FlPkg
,MD5
) == false)
480 // DpkgDB::LoadChanges - Read in any changed state files /*{{{*/
481 // ---------------------------------------------------------------------
482 /* The only file in the dpkg system that can change while packages are
483 unpacking is the diversions file. */
484 bool debDpkgDB::LoadChanges()
487 if (stat((AdminDir
+ "diversions").c_str(),&Stat
) != 0)
489 if (DiverInode
== Stat
.st_ino
&& DiverTime
== Stat
.st_mtime
)
491 return ReadDiversions();