]>
git.saurik.com Git - apt.git/blob - ftparchive/cachedb.cc
539ed671bf354ea22cf3804870c73c999b4e2bfc
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 /*{{{*/
15 #include <apt-pkg/error.h>
16 #include <apt-pkg/md5.h>
17 #include <apt-pkg/sha1.h>
18 #include <apt-pkg/sha2.h>
19 #include <apt-pkg/strutl.h>
20 #include <apt-pkg/configuration.h>
21 #include <apt-pkg/fileutl.h>
22 #include <apt-pkg/debfile.h>
23 #include <apt-pkg/gpgv.h>
25 #include <netinet/in.h> // htonl, etc
35 // CacheDB::ReadyDB - Ready the DB2 /*{{{*/
36 // ---------------------------------------------------------------------
37 /* This opens the DB2 file for caching package information */
38 bool CacheDB::ReadyDB(std::string
const &DB
)
42 ReadOnly
= _config
->FindB("APT::FTPArchive::ReadOnlyDB",false);
48 /* Check if the DB was disabled while running and deal with a
50 if (DBFailed() == true)
52 _error
->Warning(_("DB was corrupted, file renamed to %s.old"),DBFile
.c_str());
53 rename(DBFile
.c_str(),(DBFile
+".old").c_str());
58 DBFile
= std::string();
63 db_create(&Dbp
, NULL
, 0);
64 if ((err
= Dbp
->open(Dbp
, NULL
, DB
.c_str(), NULL
, DB_BTREE
,
65 (ReadOnly
?DB_RDONLY
:DB_CREATE
),
68 if (err
== DB_OLD_VERSION
)
70 _error
->Warning(_("DB is old, attempting to upgrade %s"),DBFile
.c_str());
71 err
= Dbp
->upgrade(Dbp
, DB
.c_str(), 0);
73 err
= Dbp
->open(Dbp
, NULL
, DB
.c_str(), NULL
, DB_HASH
,
74 (ReadOnly
?DB_RDONLY
:DB_CREATE
), 0644);
77 // the database format has changed from DB_HASH to DB_BTREE in
81 _error
->Error(_("DB format is invalid. If you upgraded from an older version of apt, please remove and re-create the database."));
86 return _error
->Error(_("Unable to open DB file %s: %s"),DB
.c_str(), db_strerror(err
));
95 // CacheDB::OpenFile - Open the file /*{{{*/
96 // ---------------------------------------------------------------------
98 bool CacheDB::OpenFile()
101 if(Fd
&& Fd
->Name() == this->FileName
)
104 // a different file is open, close it first
105 if(Fd
&& Fd
->Name() != this->FileName
)
109 Fd
= new FileFd(FileName
,FileFd::ReadOnly
);
110 if (_error
->PendingError() == true)
118 // CacheDB::CloseFile - Close the file /*{{{*/
119 void CacheDB::CloseFile()
128 // CacheDB::OpenDebFile - Open a debfile /*{{{*/
129 bool CacheDB::OpenDebFile()
131 // debfile is already open
132 if(DebFile
&& &DebFile
->GetFile() == Fd
)
135 // a different debfile is open, close it first
136 if(DebFile
&& &DebFile
->GetFile() != Fd
)
139 // first open the fd, then pass it to the debDebFile
140 if(OpenFile() == false)
142 DebFile
= new debDebFile(*Fd
);
143 if (_error
->PendingError() == true)
148 // CacheDB::CloseDebFile - Close a debfile again /*{{{*/
149 void CacheDB::CloseDebFile()
160 // CacheDB::GetFileStat - Get stats from the file /*{{{*/
161 // ---------------------------------------------------------------------
162 /* This gets the size from the database if it's there. If we need
163 * to look at the file, also get the mtime from the file. */
164 bool CacheDB::GetFileStat(bool const &doStat
)
166 if ((CurStat
.Flags
& FlSize
) == FlSize
&& doStat
== false)
169 /* Get it from the file. */
170 if (OpenFile() == false)
175 if (fstat(Fd
->Fd(),&St
) != 0)
178 return _error
->Errno("fstat",
179 _("Failed to stat %s"),FileName
.c_str());
181 CurStat
.FileSize
= St
.st_size
;
182 CurStat
.mtime
= htonl(St
.st_mtime
);
183 CurStat
.Flags
|= FlSize
;
188 // CacheDB::GetCurStat - Set the CurStat variable. /*{{{*/
189 // ---------------------------------------------------------------------
190 /* Sets the CurStat variable. Either to 0 if no database is used
191 * or to the value in the database if one is used */
192 bool CacheDB::GetCurStat()
194 memset(&CurStat
,0,sizeof(CurStat
));
198 /* First see if there is anything about it
201 /* Get the flags (and mtime) */
203 // Ensure alignment of the returned structure
204 Data
.data
= &CurStat
;
205 Data
.ulen
= sizeof(CurStat
);
206 Data
.flags
= DB_DBT_USERMEM
;
211 CurStat
.Flags
= ntohl(CurStat
.Flags
);
212 CurStat
.FileSize
= ntohl(CurStat
.FileSize
);
217 // CacheDB::GetFileInfo - Get all the info about the file /*{{{*/
218 // ---------------------------------------------------------------------
219 bool CacheDB::GetFileInfo(std::string
const &FileName
, bool const &DoControl
,
220 bool const &DoContents
,
221 bool const &GenContentsOnly
,
222 bool const &DoSource
,
223 bool const &DoMD5
, bool const &DoSHA1
,
224 bool const &DoSHA256
, bool const &DoSHA512
,
225 bool const &checkMtime
)
228 this->FileName
= FileName
;
230 if (GetCurStat() == false)
234 if (GetFileStat(checkMtime
) == false)
237 /* if mtime changed, update CurStat from disk */
238 if (checkMtime
== true && OldStat
.mtime
!= CurStat
.mtime
)
239 CurStat
.Flags
= FlSize
;
241 Stats
.Bytes
+= CurStat
.FileSize
;
244 if ((DoControl
&& LoadControl() == false)
245 || (DoContents
&& LoadContents(GenContentsOnly
) == false)
246 || (DoSource
&& LoadSource() == false)
247 || (DoMD5
&& GetMD5(false) == false)
248 || (DoSHA1
&& GetSHA1(false) == false)
249 || (DoSHA256
&& GetSHA256(false) == false)
250 || (DoSHA512
&& GetSHA512(false) == false) )
259 bool CacheDB::LoadSource()
261 // Try to read the control information out of the DB.
262 if ((CurStat
.Flags
& FlSource
) == FlSource
)
264 // Lookup the control information
266 if (Get() == true && Dsc
.TakeDsc(Data
.data
, Data
.size
) == true)
268 CurStat
.Flags
&= ~FlSource
;
271 if (OpenFile() == false)
275 if (Dsc
.Read(FileName
) == false)
279 return _error
->Error(_("Failed to read .dsc"));
281 // Write back the control information
283 if (Put(Dsc
.Data
, Dsc
.Length
) == true)
284 CurStat
.Flags
|= FlSource
;
289 // CacheDB::LoadControl - Load Control information /*{{{*/
290 // ---------------------------------------------------------------------
292 bool CacheDB::LoadControl()
294 // Try to read the control information out of the DB.
295 if ((CurStat
.Flags
& FlControl
) == FlControl
)
297 // Lookup the control information
299 if (Get() == true && Control
.TakeControl(Data
.data
,Data
.size
) == true)
301 CurStat
.Flags
&= ~FlControl
;
304 if(OpenDebFile() == false)
308 if (Control
.Read(*DebFile
) == false)
311 if (Control
.Control
== 0)
312 return _error
->Error(_("Archive has no control record"));
314 // Write back the control information
316 if (Put(Control
.Control
,Control
.Length
) == true)
317 CurStat
.Flags
|= FlControl
;
321 // CacheDB::LoadContents - Load the File Listing /*{{{*/
322 // ---------------------------------------------------------------------
324 bool CacheDB::LoadContents(bool const &GenOnly
)
326 // Try to read the control information out of the DB.
327 if ((CurStat
.Flags
& FlContents
) == FlContents
)
332 // Lookup the contents information
336 if (Contents
.TakeContents(Data
.data
,Data
.size
) == true)
340 CurStat
.Flags
&= ~FlContents
;
343 if(OpenDebFile() == false)
347 if (Contents
.Read(*DebFile
) == false)
350 // Write back the control information
352 if (Put(Contents
.Data
,Contents
.CurSize
) == true)
353 CurStat
.Flags
|= FlContents
;
358 static std::string
bytes2hex(uint8_t *bytes
, size_t length
) {
362 space
.reserve(length
*2 + 1);
363 for (size_t i
= 0; i
< length
; i
++) {
364 snprintf(buf
, sizeof(buf
), "%02x", bytes
[i
]);
370 static inline unsigned char xdig2num(char const &dig
) {
371 if (isdigit(dig
)) return dig
- '0';
372 if ('a' <= dig
&& dig
<= 'f') return dig
- 'a' + 10;
373 if ('A' <= dig
&& dig
<= 'F') return dig
- 'A' + 10;
377 static void hex2bytes(uint8_t *bytes
, const char *hex
, int length
) {
378 while (length
-- > 0) {
380 if (isxdigit(hex
[0]) && isxdigit(hex
[1])) {
381 *bytes
= xdig2num(hex
[0]) * 16 + xdig2num(hex
[1]);
388 // CacheDB::GetMD5 - Get the MD5 hash /*{{{*/
389 // ---------------------------------------------------------------------
391 bool CacheDB::GetMD5(bool const &GenOnly
)
393 // Try to read the control information out of the DB.
394 if ((CurStat
.Flags
& FlMD5
) == FlMD5
)
399 MD5Res
= bytes2hex(CurStat
.MD5
, sizeof(CurStat
.MD5
));
403 Stats
.MD5Bytes
+= CurStat
.FileSize
;
405 if (OpenFile() == false)
409 if (Fd
->Seek(0) == false || MD5
.AddFD(*Fd
, CurStat
.FileSize
) == false)
412 MD5Res
= MD5
.Result();
413 hex2bytes(CurStat
.MD5
, MD5Res
.data(), sizeof(CurStat
.MD5
));
414 CurStat
.Flags
|= FlMD5
;
418 // CacheDB::GetSHA1 - Get the SHA1 hash /*{{{*/
419 // ---------------------------------------------------------------------
421 bool CacheDB::GetSHA1(bool const &GenOnly
)
423 // Try to read the control information out of the DB.
424 if ((CurStat
.Flags
& FlSHA1
) == FlSHA1
)
429 SHA1Res
= bytes2hex(CurStat
.SHA1
, sizeof(CurStat
.SHA1
));
433 Stats
.SHA1Bytes
+= CurStat
.FileSize
;
435 if (OpenFile() == false)
439 if (Fd
->Seek(0) == false || SHA1
.AddFD(*Fd
, CurStat
.FileSize
) == false)
442 SHA1Res
= SHA1
.Result();
443 hex2bytes(CurStat
.SHA1
, SHA1Res
.data(), sizeof(CurStat
.SHA1
));
444 CurStat
.Flags
|= FlSHA1
;
448 // CacheDB::GetSHA256 - Get the SHA256 hash /*{{{*/
449 // ---------------------------------------------------------------------
451 bool CacheDB::GetSHA256(bool const &GenOnly
)
453 // Try to read the control information out of the DB.
454 if ((CurStat
.Flags
& FlSHA256
) == FlSHA256
)
459 SHA256Res
= bytes2hex(CurStat
.SHA256
, sizeof(CurStat
.SHA256
));
463 Stats
.SHA256Bytes
+= CurStat
.FileSize
;
465 if (OpenFile() == false)
468 SHA256Summation SHA256
;
469 if (Fd
->Seek(0) == false || SHA256
.AddFD(*Fd
, CurStat
.FileSize
) == false)
472 SHA256Res
= SHA256
.Result();
473 hex2bytes(CurStat
.SHA256
, SHA256Res
.data(), sizeof(CurStat
.SHA256
));
474 CurStat
.Flags
|= FlSHA256
;
478 // CacheDB::GetSHA256 - Get the SHA256 hash /*{{{*/
479 // ---------------------------------------------------------------------
481 bool CacheDB::GetSHA512(bool const &GenOnly
)
483 // Try to read the control information out of the DB.
484 if ((CurStat
.Flags
& FlSHA512
) == FlSHA512
)
489 SHA512Res
= bytes2hex(CurStat
.SHA512
, sizeof(CurStat
.SHA512
));
493 Stats
.SHA512Bytes
+= CurStat
.FileSize
;
495 if (OpenFile() == false)
498 SHA512Summation SHA512
;
499 if (Fd
->Seek(0) == false || SHA512
.AddFD(*Fd
, CurStat
.FileSize
) == false)
502 SHA512Res
= SHA512
.Result();
503 hex2bytes(CurStat
.SHA512
, SHA512Res
.data(), sizeof(CurStat
.SHA512
));
504 CurStat
.Flags
|= FlSHA512
;
508 // CacheDB::Finish - Write back the cache structure /*{{{*/
509 // ---------------------------------------------------------------------
511 bool CacheDB::Finish()
513 // Optimize away some writes.
514 if (CurStat
.Flags
== OldStat
.Flags
&&
515 CurStat
.mtime
== OldStat
.mtime
)
518 // Write the stat information
519 CurStat
.Flags
= htonl(CurStat
.Flags
);
520 CurStat
.FileSize
= htonl(CurStat
.FileSize
);
522 Put(&CurStat
,sizeof(CurStat
));
523 CurStat
.Flags
= ntohl(CurStat
.Flags
);
524 CurStat
.FileSize
= ntohl(CurStat
.FileSize
);
529 // CacheDB::Clean - Clean the Database /*{{{*/
530 // ---------------------------------------------------------------------
531 /* Tidy the database by removing files that no longer exist at all. */
532 bool CacheDB::Clean()
534 if (DBLoaded
== false)
537 /* I'm not sure what VERSION_MINOR should be here.. 2.4.14 certainly
538 needs the lower one and 2.7.7 needs the upper.. */
540 if ((errno
= Dbp
->cursor(Dbp
, NULL
, &Cursor
, 0)) != 0)
541 return _error
->Error(_("Unable to get a cursor"));
545 memset(&Key
,0,sizeof(Key
));
546 memset(&Data
,0,sizeof(Data
));
547 while ((errno
= Cursor
->c_get(Cursor
,&Key
,&Data
,DB_NEXT
)) == 0)
549 const char *Colon
= (char*)memrchr(Key
.data
, ':', Key
.size
);
552 if (stringcmp(Colon
+ 1, (char *)Key
.data
+Key
.size
,"st") == 0 ||
553 stringcmp(Colon
+ 1, (char *)Key
.data
+Key
.size
,"cl") == 0 ||
554 stringcmp(Colon
+ 1, (char *)Key
.data
+Key
.size
,"cn") == 0)
556 if (FileExists(std::string((const char *)Key
.data
,Colon
)) == true)
561 Cursor
->c_del(Cursor
,0);
563 Dbp
->compact(Dbp
, NULL
, NULL
, NULL
, NULL
, DB_FREE_SPACE
, NULL
);