]>
git.saurik.com Git - apt.git/blob - ftparchive/cachedb.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: cachedb.cc,v 1.7 2004/05/08 19:41:01 mdz Exp $
4 /* ######################################################################
8 Simple uniform interface to a cache database.
10 ##################################################################### */
12 // Include Files /*{{{*/
16 #include <apt-pkg/error.h>
17 #include <apt-pkg/md5.h>
18 #include <apt-pkg/sha1.h>
19 #include <apt-pkg/sha256.h>
20 #include <apt-pkg/strutl.h>
21 #include <apt-pkg/configuration.h>
23 #include <netinet/in.h> // htonl, etc
26 // CacheDB::ReadyDB - Ready the DB2 /*{{{*/
27 // ---------------------------------------------------------------------
28 /* This opens the DB2 file for caching package information */
29 bool CacheDB::ReadyDB(string DB
)
33 ReadOnly
= _config
->FindB("APT::FTPArchive::ReadOnlyDB",false);
39 /* Check if the DB was disabled while running and deal with a
41 if (DBFailed() == true)
43 _error
->Warning(_("DB was corrupted, file renamed to %s.old"),DBFile
.c_str());
44 rename(DBFile
.c_str(),(DBFile
+".old").c_str());
54 db_create(&Dbp
, NULL
, 0);
55 if ((err
= Dbp
->open(Dbp
, NULL
, DB
.c_str(), NULL
, DB_BTREE
,
56 (ReadOnly
?DB_RDONLY
:DB_CREATE
),
59 if (err
== DB_OLD_VERSION
)
61 _error
->Warning(_("DB is old, attempting to upgrade %s"),DBFile
.c_str());
62 err
= Dbp
->upgrade(Dbp
, DB
.c_str(), 0);
64 err
= Dbp
->open(Dbp
, NULL
, DB
.c_str(), NULL
, DB_HASH
,
65 (ReadOnly
?DB_RDONLY
:DB_CREATE
), 0644);
68 // the database format has changed from DB_HASH to DB_BTREE in
72 _error
->Error(_("DB format is invalid. If you upgraded from an older version of apt, please remove and re-create the database."));
77 return _error
->Error(_("Unable to open DB file %s: %s"),DB
.c_str(), db_strerror(err
));
86 // CacheDB::OpenFile - Open the file /*{{{*/
87 // ---------------------------------------------------------------------
89 bool CacheDB::OpenFile()
91 Fd
= new FileFd(FileName
,FileFd::ReadOnly
);
92 if (_error
->PendingError() == true)
101 // CacheDB::GetFileStat - Get stats from the file /*{{{*/
102 // ---------------------------------------------------------------------
103 /* This gets the size from the database if it's there. If we need
104 * to look at the file, also get the mtime from the file. */
105 bool CacheDB::GetFileStat()
107 if ((CurStat
.Flags
& FlSize
) == FlSize
)
109 /* Already worked out the file size */
113 /* Get it from the file. */
114 if (Fd
== NULL
&& OpenFile() == false)
120 if (fstat(Fd
->Fd(),&St
) != 0)
122 return _error
->Errno("fstat",
123 _("Failed to stat %s"),FileName
.c_str());
125 CurStat
.FileSize
= St
.st_size
;
126 CurStat
.mtime
= htonl(St
.st_mtime
);
127 CurStat
.Flags
|= FlSize
;
132 // CacheDB::GetCurStat - Set the CurStat variable. /*{{{*/
133 // ---------------------------------------------------------------------
134 /* Sets the CurStat variable. Either to 0 if no database is used
135 * or to the value in the database if one is used */
136 bool CacheDB::GetCurStat()
138 memset(&CurStat
,0,sizeof(CurStat
));
142 /* First see if there is anything about it
145 /* Get the flags (and mtime) */
147 // Ensure alignment of the returned structure
148 Data
.data
= &CurStat
;
149 Data
.ulen
= sizeof(CurStat
);
150 Data
.flags
= DB_DBT_USERMEM
;
155 CurStat
.Flags
= ntohl(CurStat
.Flags
);
156 CurStat
.FileSize
= ntohl(CurStat
.FileSize
);
161 // CacheDB::GetFileInfo - Get all the info about the file /*{{{*/
162 // ---------------------------------------------------------------------
163 bool CacheDB::GetFileInfo(string FileName
, bool DoControl
, bool DoContents
,
164 bool GenContentsOnly
,
165 bool DoMD5
, bool DoSHA1
, bool DoSHA256
)
167 this->FileName
= FileName
;
169 if (GetCurStat() == false)
175 if (GetFileStat() == false)
182 Stats
.Bytes
+= CurStat
.FileSize
;
185 if ((DoControl
&& LoadControl() == false)
186 || (DoContents
&& LoadContents(GenContentsOnly
) == false)
187 || (DoMD5
&& GetMD5(false) == false)
188 || (DoSHA1
&& GetSHA1(false) == false)
189 || (DoSHA256
&& GetSHA256(false) == false))
206 // CacheDB::LoadControl - Load Control information /*{{{*/
207 // ---------------------------------------------------------------------
209 bool CacheDB::LoadControl()
211 // Try to read the control information out of the DB.
212 if ((CurStat
.Flags
& FlControl
) == FlControl
)
214 // Lookup the control information
216 if (Get() == true && Control
.TakeControl(Data
.data
,Data
.size
) == true)
218 CurStat
.Flags
&= ~FlControl
;
221 if (Fd
== NULL
&& OpenFile() == false)
225 // Create a deb instance to read the archive
228 DebFile
= new debDebFile(*Fd
);
229 if (_error
->PendingError() == true)
234 if (Control
.Read(*DebFile
) == false)
237 if (Control
.Control
== 0)
238 return _error
->Error(_("Archive has no control record"));
240 // Write back the control information
242 if (Put(Control
.Control
,Control
.Length
) == true)
243 CurStat
.Flags
|= FlControl
;
247 // CacheDB::LoadContents - Load the File Listing /*{{{*/
248 // ---------------------------------------------------------------------
250 bool CacheDB::LoadContents(bool GenOnly
)
252 // Try to read the control information out of the DB.
253 if ((CurStat
.Flags
& FlContents
) == FlContents
)
258 // Lookup the contents information
262 if (Contents
.TakeContents(Data
.data
,Data
.size
) == true)
266 CurStat
.Flags
&= ~FlContents
;
269 if (Fd
== NULL
&& OpenFile() == false)
273 // Create a deb instance to read the archive
276 DebFile
= new debDebFile(*Fd
);
277 if (_error
->PendingError() == true)
281 if (Contents
.Read(*DebFile
) == false)
284 // Write back the control information
286 if (Put(Contents
.Data
,Contents
.CurSize
) == true)
287 CurStat
.Flags
|= FlContents
;
292 static string
bytes2hex(uint8_t *bytes
, size_t length
) {
294 if (length
* 2 > sizeof(space
) - 1) length
= (sizeof(space
) - 1) / 2;
295 for (size_t i
= 0; i
< length
; i
++)
296 snprintf(&space
[i
*2], 3, "%02x", bytes
[i
]);
297 return string(space
);
300 static inline unsigned char xdig2num(char dig
) {
301 if (isdigit(dig
)) return dig
- '0';
302 if ('a' <= dig
&& dig
<= 'f') return dig
- 'a' + 10;
303 if ('A' <= dig
&& dig
<= 'F') return dig
- 'A' + 10;
307 static void hex2bytes(uint8_t *bytes
, const char *hex
, int length
) {
308 while (length
-- > 0) {
310 if (isxdigit(hex
[0]) && isxdigit(hex
[1])) {
311 *bytes
= xdig2num(hex
[0]) * 16 + xdig2num(hex
[1]);
318 // CacheDB::GetMD5 - Get the MD5 hash /*{{{*/
319 // ---------------------------------------------------------------------
321 bool CacheDB::GetMD5(bool GenOnly
)
323 // Try to read the control information out of the DB.
324 if ((CurStat
.Flags
& FlMD5
) == FlMD5
)
329 MD5Res
= bytes2hex(CurStat
.MD5
, sizeof(CurStat
.MD5
));
333 Stats
.MD5Bytes
+= CurStat
.FileSize
;
335 if (Fd
== NULL
&& OpenFile() == false)
340 if (Fd
->Seek(0) == false || MD5
.AddFD(Fd
->Fd(),CurStat
.FileSize
) == false)
343 MD5Res
= MD5
.Result();
344 hex2bytes(CurStat
.MD5
, MD5Res
.data(), sizeof(CurStat
.MD5
));
345 CurStat
.Flags
|= FlMD5
;
349 // CacheDB::GetSHA1 - Get the SHA1 hash /*{{{*/
350 // ---------------------------------------------------------------------
352 bool CacheDB::GetSHA1(bool GenOnly
)
354 // Try to read the control information out of the DB.
355 if ((CurStat
.Flags
& FlSHA1
) == FlSHA1
)
360 SHA1Res
= bytes2hex(CurStat
.SHA1
, sizeof(CurStat
.SHA1
));
364 Stats
.SHA1Bytes
+= CurStat
.FileSize
;
366 if (Fd
== NULL
&& OpenFile() == false)
371 if (Fd
->Seek(0) == false || SHA1
.AddFD(Fd
->Fd(),CurStat
.FileSize
) == false)
374 SHA1Res
= SHA1
.Result();
375 hex2bytes(CurStat
.SHA1
, SHA1Res
.data(), sizeof(CurStat
.SHA1
));
376 CurStat
.Flags
|= FlSHA1
;
380 // CacheDB::GetSHA256 - Get the SHA256 hash /*{{{*/
381 // ---------------------------------------------------------------------
383 bool CacheDB::GetSHA256(bool GenOnly
)
385 // Try to read the control information out of the DB.
386 if ((CurStat
.Flags
& FlSHA256
) == FlSHA256
)
391 SHA256Res
= bytes2hex(CurStat
.SHA256
, sizeof(CurStat
.SHA256
));
395 Stats
.SHA256Bytes
+= CurStat
.FileSize
;
397 if (Fd
== NULL
&& OpenFile() == false)
401 SHA256Summation SHA256
;
402 if (Fd
->Seek(0) == false || SHA256
.AddFD(Fd
->Fd(),CurStat
.FileSize
) == false)
405 SHA256Res
= SHA256
.Result();
406 hex2bytes(CurStat
.SHA256
, SHA256Res
.data(), sizeof(CurStat
.SHA256
));
407 CurStat
.Flags
|= FlSHA256
;
411 // CacheDB::Finish - Write back the cache structure /*{{{*/
412 // ---------------------------------------------------------------------
414 bool CacheDB::Finish()
416 // Optimize away some writes.
417 if (CurStat
.Flags
== OldStat
.Flags
&&
418 CurStat
.mtime
== OldStat
.mtime
)
421 // Write the stat information
422 CurStat
.Flags
= htonl(CurStat
.Flags
);
423 CurStat
.FileSize
= htonl(CurStat
.FileSize
);
425 Put(&CurStat
,sizeof(CurStat
));
426 CurStat
.Flags
= ntohl(CurStat
.Flags
);
427 CurStat
.FileSize
= ntohl(CurStat
.FileSize
);
432 // CacheDB::Clean - Clean the Database /*{{{*/
433 // ---------------------------------------------------------------------
434 /* Tidy the database by removing files that no longer exist at all. */
435 bool CacheDB::Clean()
437 if (DBLoaded
== false)
440 /* I'm not sure what VERSION_MINOR should be here.. 2.4.14 certainly
441 needs the lower one and 2.7.7 needs the upper.. */
443 if ((errno
= Dbp
->cursor(Dbp
, NULL
, &Cursor
, 0)) != 0)
444 return _error
->Error(_("Unable to get a cursor"));
448 memset(&Key
,0,sizeof(Key
));
449 memset(&Data
,0,sizeof(Data
));
450 while ((errno
= Cursor
->c_get(Cursor
,&Key
,&Data
,DB_NEXT
)) == 0)
452 const char *Colon
= (char*)memrchr(Key
.data
, ':', Key
.size
);
455 if (stringcmp(Colon
+ 1, (char *)Key
.data
+Key
.size
,"st") == 0 ||
456 stringcmp(Colon
+ 1, (char *)Key
.data
+Key
.size
,"cl") == 0 ||
457 stringcmp(Colon
+ 1, (char *)Key
.data
+Key
.size
,"cn") == 0)
459 if (FileExists(string((const char *)Key
.data
,Colon
)) == true)
464 Cursor
->c_del(Cursor
,0);
466 Dbp
->compact(Dbp
, NULL
, NULL
, NULL
, NULL
, DB_FREE_SPACE
, NULL
);