cachedb.cc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: cachedb.cc,v 1.7 2004/05/08 19:41:01 mdz Exp $
  4. /* ######################################################################
  5. CacheDB
  6. Simple uniform interface to a cache database.
  7. ##################################################################### */
  8. /*}}}*/
  9. // Include Files /*{{{*/
  10. #ifdef __GNUG__
  11. #pragma implementation "cachedb.h"
  12. #endif
  13. #include "cachedb.h"
  14. #include <apti18n.h>
  15. #include <apt-pkg/error.h>
  16. #include <apt-pkg/md5.h>
  17. #include <apt-pkg/sha1.h>
  18. #include <apt-pkg/sha256.h>
  19. #include <apt-pkg/strutl.h>
  20. #include <apt-pkg/configuration.h>
  21. #include <netinet/in.h> // htonl, etc
  22. /*}}}*/
  23. // CacheDB::ReadyDB - Ready the DB2 /*{{{*/
  24. // ---------------------------------------------------------------------
  25. /* This opens the DB2 file for caching package information */
  26. bool CacheDB::ReadyDB(string DB)
  27. {
  28. int err;
  29. ReadOnly = _config->FindB("APT::FTPArchive::ReadOnlyDB",false);
  30. // Close the old DB
  31. if (Dbp != 0)
  32. Dbp->close(Dbp,0);
  33. /* Check if the DB was disabled while running and deal with a
  34. corrupted DB */
  35. if (DBFailed() == true)
  36. {
  37. _error->Warning(_("DB was corrupted, file renamed to %s.old"),DBFile.c_str());
  38. rename(DBFile.c_str(),(DBFile+".old").c_str());
  39. }
  40. DBLoaded = false;
  41. Dbp = 0;
  42. DBFile = string();
  43. if (DB.empty())
  44. return true;
  45. db_create(&Dbp, NULL, 0);
  46. if ((err = Dbp->open(Dbp, NULL, DB.c_str(), NULL, DB_BTREE,
  47. (ReadOnly?DB_RDONLY:DB_CREATE),
  48. 0644)) != 0)
  49. {
  50. if (err == DB_OLD_VERSION)
  51. {
  52. _error->Warning(_("DB is old, attempting to upgrade %s"),DBFile.c_str());
  53. err = Dbp->upgrade(Dbp, DB.c_str(), 0);
  54. if (!err)
  55. err = Dbp->open(Dbp, NULL, DB.c_str(), NULL, DB_HASH,
  56. (ReadOnly?DB_RDONLY:DB_CREATE), 0644);
  57. }
  58. // the database format has changed from DB_HASH to DB_BTREE in
  59. // apt 0.6.44
  60. if (err == EINVAL)
  61. {
  62. _error->Error(_("DB format is invalid. If you upgraded from a older version of apt, please remove and re-create the database."));
  63. }
  64. if (err)
  65. {
  66. Dbp = 0;
  67. return _error->Error(_("Unable to open DB file %s: %s"),DB.c_str(), db_strerror(err));
  68. }
  69. }
  70. DBFile = DB;
  71. DBLoaded = true;
  72. return true;
  73. }
  74. /*}}}*/
  75. // CacheDB::OpenFile - Open the filei /*{{{*/
  76. // ---------------------------------------------------------------------
  77. /* */
  78. bool CacheDB::OpenFile()
  79. {
  80. Fd = new FileFd(FileName,FileFd::ReadOnly);
  81. if (_error->PendingError() == true)
  82. {
  83. delete Fd;
  84. Fd = NULL;
  85. return false;
  86. }
  87. return true;
  88. }
  89. /*}}}*/
  90. // CacheDB::GetFileStat - Get stats from the file /*{{{*/
  91. // ---------------------------------------------------------------------
  92. /* This gets the size from the database if it's there. If we need
  93. * to look at the file, also get the mtime from the file. */
  94. bool CacheDB::GetFileStat()
  95. {
  96. if ((CurStat.Flags & FlSize) == FlSize)
  97. {
  98. /* Already worked out the file size */
  99. }
  100. else
  101. {
  102. /* Get it from the file. */
  103. if (Fd == NULL && OpenFile() == false)
  104. {
  105. return false;
  106. }
  107. // Stat the file
  108. struct stat St;
  109. if (fstat(Fd->Fd(),&St) != 0)
  110. {
  111. return _error->Errno("fstat",
  112. _("Failed to stat %s"),FileName.c_str());
  113. }
  114. CurStat.FileSize = St.st_size;
  115. CurStat.mtime = htonl(St.st_mtime);
  116. CurStat.Flags |= FlSize;
  117. }
  118. return true;
  119. }
  120. /*}}}*/
  121. // CacheDB::GetCurStat - Set the CurStat variable. /*{{{*/
  122. // ---------------------------------------------------------------------
  123. /* Sets the CurStat variable. Either to 0 if no database is used
  124. * or to the value in the database if one is used */
  125. bool CacheDB::GetCurStat()
  126. {
  127. memset(&CurStat,0,sizeof(CurStat));
  128. if (DBLoaded)
  129. {
  130. /* First see if thre is anything about it
  131. in the database */
  132. /* Get the flags (and mtime) */
  133. InitQuery("st");
  134. // Ensure alignment of the returned structure
  135. Data.data = &CurStat;
  136. Data.ulen = sizeof(CurStat);
  137. Data.flags = DB_DBT_USERMEM;
  138. if (Get() == false)
  139. {
  140. CurStat.Flags = 0;
  141. }
  142. CurStat.Flags = ntohl(CurStat.Flags);
  143. CurStat.FileSize = ntohl(CurStat.FileSize);
  144. }
  145. return true;
  146. }
  147. /*}}}*/
  148. // CacheDB::GetFileInfo - Get all the info about the file /*{{{*/
  149. // ---------------------------------------------------------------------
  150. bool CacheDB::GetFileInfo(string FileName, bool DoControl, bool DoContents,
  151. bool GenContentsOnly,
  152. bool DoMD5, bool DoSHA1, bool DoSHA256)
  153. {
  154. this->FileName = FileName;
  155. if (GetCurStat() == false)
  156. {
  157. return false;
  158. }
  159. OldStat = CurStat;
  160. if (GetFileStat() == false)
  161. {
  162. delete Fd;
  163. Fd = NULL;
  164. return false;
  165. }
  166. Stats.Bytes += CurStat.FileSize;
  167. Stats.Packages++;
  168. if (DoControl && LoadControl() == false
  169. || DoContents && LoadContents(GenContentsOnly) == false
  170. || DoMD5 && GetMD5(false) == false
  171. || DoSHA1 && GetSHA1(false) == false
  172. || DoSHA256 && GetSHA256(false) == false)
  173. {
  174. delete Fd;
  175. Fd = NULL;
  176. delete DebFile;
  177. DebFile = NULL;
  178. return false;
  179. }
  180. delete Fd;
  181. Fd = NULL;
  182. delete DebFile;
  183. DebFile = NULL;
  184. return true;
  185. }
  186. /*}}}*/
  187. // CacheDB::LoadControl - Load Control information /*{{{*/
  188. // ---------------------------------------------------------------------
  189. /* */
  190. bool CacheDB::LoadControl()
  191. {
  192. // Try to read the control information out of the DB.
  193. if ((CurStat.Flags & FlControl) == FlControl)
  194. {
  195. // Lookup the control information
  196. InitQuery("cl");
  197. if (Get() == true && Control.TakeControl(Data.data,Data.size) == true)
  198. return true;
  199. CurStat.Flags &= ~FlControl;
  200. }
  201. if (Fd == NULL && OpenFile() == false)
  202. {
  203. return false;
  204. }
  205. // Create a deb instance to read the archive
  206. if (DebFile == 0)
  207. {
  208. DebFile = new debDebFile(*Fd);
  209. if (_error->PendingError() == true)
  210. return false;
  211. }
  212. Stats.Misses++;
  213. if (Control.Read(*DebFile) == false)
  214. return false;
  215. if (Control.Control == 0)
  216. return _error->Error(_("Archive has no control record"));
  217. // Write back the control information
  218. InitQuery("cl");
  219. if (Put(Control.Control,Control.Length) == true)
  220. CurStat.Flags |= FlControl;
  221. return true;
  222. }
  223. /*}}}*/
  224. // CacheDB::LoadContents - Load the File Listing /*{{{*/
  225. // ---------------------------------------------------------------------
  226. /* */
  227. bool CacheDB::LoadContents(bool GenOnly)
  228. {
  229. // Try to read the control information out of the DB.
  230. if ((CurStat.Flags & FlContents) == FlContents)
  231. {
  232. if (GenOnly == true)
  233. return true;
  234. // Lookup the contents information
  235. InitQuery("cn");
  236. if (Get() == true)
  237. {
  238. if (Contents.TakeContents(Data.data,Data.size) == true)
  239. return true;
  240. }
  241. CurStat.Flags &= ~FlContents;
  242. }
  243. if (Fd == NULL && OpenFile() == false)
  244. {
  245. return false;
  246. }
  247. // Create a deb instance to read the archive
  248. if (DebFile == 0)
  249. {
  250. DebFile = new debDebFile(*Fd);
  251. if (_error->PendingError() == true)
  252. return false;
  253. }
  254. if (Contents.Read(*DebFile) == false)
  255. return false;
  256. // Write back the control information
  257. InitQuery("cn");
  258. if (Put(Contents.Data,Contents.CurSize) == true)
  259. CurStat.Flags |= FlContents;
  260. return true;
  261. }
  262. /*}}}*/
  263. static string bytes2hex(uint8_t *bytes, size_t length) {
  264. char space[65];
  265. if (length * 2 > sizeof(space) - 1) length = (sizeof(space) - 1) / 2;
  266. for (size_t i = 0; i < length; i++)
  267. snprintf(&space[i*2], 3, "%02x", bytes[i]);
  268. return string(space);
  269. }
  270. static inline unsigned char xdig2num(char dig) {
  271. if (isdigit(dig)) return dig - '0';
  272. if ('a' <= dig && dig <= 'f') return dig - 'a' + 10;
  273. if ('A' <= dig && dig <= 'F') return dig - 'A' + 10;
  274. return 0;
  275. }
  276. static void hex2bytes(uint8_t *bytes, const char *hex, int length) {
  277. while (length-- > 0) {
  278. *bytes = 0;
  279. if (isxdigit(hex[0]) && isxdigit(hex[1])) {
  280. *bytes = xdig2num(hex[0]) * 16 + xdig2num(hex[1]);
  281. hex += 2;
  282. }
  283. bytes++;
  284. }
  285. }
  286. // CacheDB::GetMD5 - Get the MD5 hash /*{{{*/
  287. // ---------------------------------------------------------------------
  288. /* */
  289. bool CacheDB::GetMD5(bool GenOnly)
  290. {
  291. // Try to read the control information out of the DB.
  292. if ((CurStat.Flags & FlMD5) == FlMD5)
  293. {
  294. if (GenOnly == true)
  295. return true;
  296. MD5Res = bytes2hex(CurStat.MD5, sizeof(CurStat.MD5));
  297. return true;
  298. }
  299. Stats.MD5Bytes += CurStat.FileSize;
  300. if (Fd == NULL && OpenFile() == false)
  301. {
  302. return false;
  303. }
  304. MD5Summation MD5;
  305. if (Fd->Seek(0) == false || MD5.AddFD(Fd->Fd(),CurStat.FileSize) == false)
  306. return false;
  307. MD5Res = MD5.Result();
  308. hex2bytes(CurStat.MD5, MD5Res.data(), sizeof(CurStat.MD5));
  309. CurStat.Flags |= FlMD5;
  310. return true;
  311. }
  312. /*}}}*/
  313. // CacheDB::GetSHA1 - Get the SHA1 hash /*{{{*/
  314. // ---------------------------------------------------------------------
  315. /* */
  316. bool CacheDB::GetSHA1(bool GenOnly)
  317. {
  318. // Try to read the control information out of the DB.
  319. if ((CurStat.Flags & FlSHA1) == FlSHA1)
  320. {
  321. if (GenOnly == true)
  322. return true;
  323. SHA1Res = bytes2hex(CurStat.SHA1, sizeof(CurStat.SHA1));
  324. return true;
  325. }
  326. Stats.SHA1Bytes += CurStat.FileSize;
  327. if (Fd == NULL && OpenFile() == false)
  328. {
  329. return false;
  330. }
  331. SHA1Summation SHA1;
  332. if (Fd->Seek(0) == false || SHA1.AddFD(Fd->Fd(),CurStat.FileSize) == false)
  333. return false;
  334. SHA1Res = SHA1.Result();
  335. hex2bytes(CurStat.SHA1, SHA1Res.data(), sizeof(CurStat.SHA1));
  336. CurStat.Flags |= FlSHA1;
  337. return true;
  338. }
  339. /*}}}*/
  340. // CacheDB::GetSHA256 - Get the SHA256 hash /*{{{*/
  341. // ---------------------------------------------------------------------
  342. /* */
  343. bool CacheDB::GetSHA256(bool GenOnly)
  344. {
  345. // Try to read the control information out of the DB.
  346. if ((CurStat.Flags & FlSHA256) == FlSHA256)
  347. {
  348. if (GenOnly == true)
  349. return true;
  350. SHA256Res = bytes2hex(CurStat.SHA256, sizeof(CurStat.SHA256));
  351. return true;
  352. }
  353. Stats.SHA256Bytes += CurStat.FileSize;
  354. if (Fd == NULL && OpenFile() == false)
  355. {
  356. return false;
  357. }
  358. SHA256Summation SHA256;
  359. if (Fd->Seek(0) == false || SHA256.AddFD(Fd->Fd(),CurStat.FileSize) == false)
  360. return false;
  361. SHA256Res = SHA256.Result();
  362. hex2bytes(CurStat.SHA256, SHA256Res.data(), sizeof(CurStat.SHA256));
  363. CurStat.Flags |= FlSHA256;
  364. return true;
  365. }
  366. /*}}}*/
  367. // CacheDB::Finish - Write back the cache structure /*{{{*/
  368. // ---------------------------------------------------------------------
  369. /* */
  370. bool CacheDB::Finish()
  371. {
  372. // Optimize away some writes.
  373. if (CurStat.Flags == OldStat.Flags &&
  374. CurStat.mtime == OldStat.mtime)
  375. return true;
  376. // Write the stat information
  377. CurStat.Flags = htonl(CurStat.Flags);
  378. CurStat.FileSize = htonl(CurStat.FileSize);
  379. InitQuery("st");
  380. Put(&CurStat,sizeof(CurStat));
  381. CurStat.Flags = ntohl(CurStat.Flags);
  382. CurStat.FileSize = ntohl(CurStat.FileSize);
  383. return true;
  384. }
  385. /*}}}*/
  386. // CacheDB::Clean - Clean the Database /*{{{*/
  387. // ---------------------------------------------------------------------
  388. /* Tidy the database by removing files that no longer exist at all. */
  389. bool CacheDB::Clean()
  390. {
  391. if (DBLoaded == false)
  392. return true;
  393. /* I'm not sure what VERSION_MINOR should be here.. 2.4.14 certainly
  394. needs the lower one and 2.7.7 needs the upper.. */
  395. DBC *Cursor;
  396. if ((errno = Dbp->cursor(Dbp, NULL, &Cursor, 0)) != 0)
  397. return _error->Error(_("Unable to get a cursor"));
  398. DBT Key;
  399. DBT Data;
  400. memset(&Key,0,sizeof(Key));
  401. memset(&Data,0,sizeof(Data));
  402. while ((errno = Cursor->c_get(Cursor,&Key,&Data,DB_NEXT)) == 0)
  403. {
  404. const char *Colon = (char*)memrchr(Key.data, ':', Key.size);
  405. if (Colon)
  406. {
  407. if (stringcmp(Colon + 1, (char *)Key.data+Key.size,"st") == 0 ||
  408. stringcmp(Colon + 1, (char *)Key.data+Key.size,"cl") == 0 ||
  409. stringcmp(Colon + 1, (char *)Key.data+Key.size,"cn") == 0)
  410. {
  411. if (FileExists(string((const char *)Key.data,Colon)) == true)
  412. continue;
  413. }
  414. }
  415. Cursor->c_del(Cursor,0);
  416. }
  417. return true;
  418. }
  419. /*}}}*/