log_archive.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:11k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: log_archive.c,v 11.39 2002/08/06 05:00:31 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <stdlib.h>
  14. #include <string.h>
  15. #include <unistd.h>
  16. #endif
  17. #include "db_int.h"
  18. #include "dbinc/db_page.h"
  19. #include "dbinc/log.h"
  20. #include "dbinc/qam.h"
  21. #include "dbinc/txn.h"
  22. static int __absname __P((DB_ENV *, char *, char *, char **));
  23. static int __build_data __P((DB_ENV *, char *, char ***));
  24. static int __cmpfunc __P((const void *, const void *));
  25. static int __usermem __P((DB_ENV *, char ***));
  26. /*
  27.  * __log_archive --
  28.  * Supporting function for db_archive(1).
  29.  *
  30.  * PUBLIC: int __log_archive __P((DB_ENV *, char **[], u_int32_t));
  31.  */
  32. int
  33. __log_archive(dbenv, listp, flags)
  34. DB_ENV *dbenv;
  35. char ***listp;
  36. u_int32_t flags;
  37. {
  38. DBT rec;
  39. DB_LOG *dblp;
  40. DB_LOGC *logc;
  41. DB_LSN stable_lsn;
  42. __txn_ckp_args *ckp_args;
  43. char **array, **arrayp, *name, *p, *pref, buf[MAXPATHLEN];
  44. int array_size, db_arch_abs, n, ret;
  45. u_int32_t fnum;
  46. PANIC_CHECK(dbenv);
  47. ENV_REQUIRES_CONFIG(dbenv,
  48.     dbenv->lg_handle, "DB_ENV->log_archive", DB_INIT_LOG);
  49. name = NULL;
  50. dblp = dbenv->lg_handle;
  51. COMPQUIET(fnum, 0);
  52. #define OKFLAGS (DB_ARCH_ABS | DB_ARCH_DATA | DB_ARCH_LOG)
  53. if (flags != 0) {
  54. if ((ret = __db_fchk(
  55.     dbenv, "DB_ENV->log_archive", flags, OKFLAGS)) != 0)
  56. return (ret);
  57. if ((ret = __db_fcchk(dbenv, "DB_ENV->log_archive",
  58.     flags, DB_ARCH_DATA, DB_ARCH_LOG)) != 0)
  59. return (ret);
  60. }
  61. if (LF_ISSET(DB_ARCH_ABS)) {
  62. db_arch_abs = 1;
  63. LF_CLR(DB_ARCH_ABS);
  64. } else
  65. db_arch_abs = 0;
  66. if (flags == 0 || flags == DB_ARCH_DATA)
  67. ENV_REQUIRES_CONFIG(dbenv,
  68.     dbenv->tx_handle, "DB_ENV->log_archive", DB_INIT_TXN);
  69. /*
  70.  * Get the absolute pathname of the current directory.  It would
  71.  * be nice to get the shortest pathname of the database directory,
  72.  * but that's just not possible.
  73.  *
  74.  * XXX
  75.  * Can't trust getcwd(3) to set a valid errno.  If it doesn't, just
  76.  * guess that we ran out of memory.
  77.  */
  78. if (db_arch_abs) {
  79. __os_set_errno(0);
  80. if ((pref = getcwd(buf, sizeof(buf))) == NULL) {
  81. if (__os_get_errno() == 0)
  82. __os_set_errno(ENOMEM);
  83. return (__os_get_errno());
  84. }
  85. } else
  86. pref = NULL;
  87. switch (flags) {
  88. case DB_ARCH_DATA:
  89. return (__build_data(dbenv, pref, listp));
  90. case DB_ARCH_LOG:
  91. memset(&rec, 0, sizeof(rec));
  92. if ((ret = dbenv->log_cursor(dbenv, &logc, 0)) != 0)
  93. return (ret);
  94. #ifdef UMRW
  95. ZERO_LSN(stable_lsn);
  96. #endif
  97. ret = logc->get(logc, &stable_lsn, &rec, DB_LAST);
  98. (void)logc->close(logc, 0);
  99. if (ret != 0)
  100. return (ret);
  101. fnum = stable_lsn.file;
  102. break;
  103. case 0:
  104. memset(&rec, 0, sizeof(rec));
  105. if (__txn_getckp(dbenv, &stable_lsn) != 0) {
  106. /*
  107.  * A failure return means that there's no checkpoint
  108.  * in the log (so we are not going to be deleting
  109.  * any log files).
  110.  */
  111. *listp = NULL;
  112. return (0);
  113. }
  114. if ((ret = dbenv->log_cursor(dbenv, &logc, 0)) != 0)
  115. return (ret);
  116. if ((ret = logc->get(logc, &stable_lsn, &rec, DB_SET)) != 0 ||
  117.     (ret = __txn_ckp_read(dbenv, rec.data, &ckp_args)) != 0) {
  118. /*
  119.  * A return of DB_NOTFOUND may only mean that the
  120.  * checkpoint LSN is before the beginning of the
  121.  * log files that we still have.  This is not
  122.  * an error;  it just means our work is done.
  123.  */
  124. if (ret == DB_NOTFOUND) {
  125. *listp = NULL;
  126. ret = 0;
  127. }
  128. (void)logc->close(logc, 0);
  129. return (ret);
  130. }
  131. if ((ret = logc->close(logc, 0)) != 0)
  132. return (ret);
  133. stable_lsn = ckp_args->ckp_lsn;
  134. __os_free(dbenv, ckp_args);
  135. /* Remove any log files before the last stable LSN. */
  136. fnum = stable_lsn.file - 1;
  137. break;
  138. }
  139. #define LIST_INCREMENT 64
  140. /* Get some initial space. */
  141. array_size = 64;
  142. if ((ret = __os_malloc(dbenv,
  143.     sizeof(char *) * array_size, &array)) != 0)
  144. return (ret);
  145. array[0] = NULL;
  146. /* Build an array of the file names. */
  147. for (n = 0; fnum > 0; --fnum) {
  148. if ((ret = __log_name(dblp, fnum, &name, NULL, 0)) != 0)
  149. goto err;
  150. if (__os_exists(name, NULL) != 0) {
  151. if (LF_ISSET(DB_ARCH_LOG) && fnum == stable_lsn.file)
  152. continue;
  153. __os_free(dbenv, name);
  154. name = NULL;
  155. break;
  156. }
  157. if (n >= array_size - 2) {
  158. array_size += LIST_INCREMENT;
  159. if ((ret = __os_realloc(dbenv,
  160.     sizeof(char *) * array_size, &array)) != 0)
  161. goto err;
  162. }
  163. if (db_arch_abs) {
  164. if ((ret = __absname(dbenv,
  165.     pref, name, &array[n])) != 0)
  166. goto err;
  167. __os_free(dbenv, name);
  168. } else if ((p = __db_rpath(name)) != NULL) {
  169. if ((ret = __os_strdup(dbenv, p + 1, &array[n])) != 0)
  170. goto err;
  171. __os_free(dbenv, name);
  172. } else
  173. array[n] = name;
  174. name = NULL;
  175. array[++n] = NULL;
  176. }
  177. /* If there's nothing to return, we're done. */
  178. if (n == 0) {
  179. *listp = NULL;
  180. ret = 0;
  181. goto err;
  182. }
  183. /* Sort the list. */
  184. qsort(array, (size_t)n, sizeof(char *), __cmpfunc);
  185. /* Rework the memory. */
  186. if ((ret = __usermem(dbenv, &array)) != 0)
  187. goto err;
  188. *listp = array;
  189. return (0);
  190. err: if (array != NULL) {
  191. for (arrayp = array; *arrayp != NULL; ++arrayp)
  192. __os_free(dbenv, *arrayp);
  193. __os_free(dbenv, array);
  194. }
  195. if (name != NULL)
  196. __os_free(dbenv, name);
  197. return (ret);
  198. }
  199. /*
  200.  * __build_data --
  201.  * Build a list of datafiles for return.
  202.  */
  203. static int
  204. __build_data(dbenv, pref, listp)
  205. DB_ENV *dbenv;
  206. char *pref, ***listp;
  207. {
  208. DBT rec;
  209. DB_LOGC *logc;
  210. DB_LSN lsn;
  211. __dbreg_register_args *argp;
  212. u_int32_t rectype;
  213. int array_size, last, n, nxt, ret, t_ret;
  214. char **array, **arrayp, **list, **lp, *p, *real_name;
  215. /* Get some initial space. */
  216. array_size = 64;
  217. if ((ret = __os_malloc(dbenv,
  218.     sizeof(char *) * array_size, &array)) != 0)
  219. return (ret);
  220. array[0] = NULL;
  221. memset(&rec, 0, sizeof(rec));
  222. if ((ret = dbenv->log_cursor(dbenv, &logc, 0)) != 0)
  223. return (ret);
  224. for (n = 0; (ret = logc->get(logc, &lsn, &rec, DB_PREV)) == 0;) {
  225. if (rec.size < sizeof(rectype)) {
  226. ret = EINVAL;
  227. __db_err(dbenv, "DB_ENV->log_archive: bad log record");
  228. goto free_continue;
  229. }
  230. memcpy(&rectype, rec.data, sizeof(rectype));
  231. if (rectype != DB___dbreg_register)
  232. continue;
  233. if ((ret =
  234.     __dbreg_register_read(dbenv, rec.data, &argp)) != 0) {
  235. ret = EINVAL;
  236. __db_err(dbenv,
  237.     "DB_ENV->log_archive: unable to read log record");
  238. goto free_continue;
  239. }
  240. if (n >= array_size - 2) {
  241. array_size += LIST_INCREMENT;
  242. if ((ret = __os_realloc(dbenv,
  243.     sizeof(char *) * array_size, &array)) != 0)
  244. goto free_continue;
  245. }
  246. if ((ret = __os_strdup(dbenv,
  247.     argp->name.data, &array[n++])) != 0)
  248. goto free_continue;
  249. array[n] = NULL;
  250. if (argp->ftype == DB_QUEUE) {
  251. if ((ret = __qam_extent_names(dbenv,
  252.     argp->name.data, &list)) != 0)
  253. goto q_err;
  254. for (lp = list;
  255.     lp != NULL && *lp != NULL; lp++) {
  256. if (n >= array_size - 2) {
  257. array_size += LIST_INCREMENT;
  258. if ((ret = __os_realloc(dbenv,
  259.     sizeof(char *) *
  260.     array_size, &array)) != 0)
  261. goto q_err;
  262. }
  263. if ((ret =
  264.     __os_strdup(dbenv, *lp, &array[n++])) != 0)
  265. goto q_err;
  266. array[n] = NULL;
  267. }
  268. q_err: if (list != NULL)
  269. __os_free(dbenv, list);
  270. }
  271. free_continue: __os_free(dbenv, argp);
  272. if (ret != 0)
  273. break;
  274. }
  275. if (ret == DB_NOTFOUND)
  276. ret = 0;
  277. if ((t_ret = logc->close(logc, 0)) != 0 && ret == 0)
  278. ret = t_ret;
  279. if (ret != 0)
  280. goto err1;
  281. /* If there's nothing to return, we're done. */
  282. if (n == 0) {
  283. ret = 0;
  284. *listp = NULL;
  285. goto err1;
  286. }
  287. /* Sort the list. */
  288. qsort(array, (size_t)n, sizeof(char *), __cmpfunc);
  289. /*
  290.  * Build the real pathnames, discarding nonexistent files and
  291.  * duplicates.
  292.  */
  293. for (last = nxt = 0; nxt < n;) {
  294. /*
  295.  * Discard duplicates.  Last is the next slot we're going
  296.  * to return to the user, nxt is the next slot that we're
  297.  * going to consider.
  298.  */
  299. if (last != nxt) {
  300. array[last] = array[nxt];
  301. array[nxt] = NULL;
  302. }
  303. for (++nxt; nxt < n &&
  304.     strcmp(array[last], array[nxt]) == 0; ++nxt) {
  305. __os_free(dbenv, array[nxt]);
  306. array[nxt] = NULL;
  307. }
  308. /* Get the real name. */
  309. if ((ret = __db_appname(dbenv,
  310.     DB_APP_DATA, array[last], 0, NULL, &real_name)) != 0)
  311. goto err2;
  312. /* If the file doesn't exist, ignore it. */
  313. if (__os_exists(real_name, NULL) != 0) {
  314. __os_free(dbenv, real_name);
  315. __os_free(dbenv, array[last]);
  316. array[last] = NULL;
  317. continue;
  318. }
  319. /* Rework the name as requested by the user. */
  320. __os_free(dbenv, array[last]);
  321. array[last] = NULL;
  322. if (pref != NULL) {
  323. ret = __absname(dbenv, pref, real_name, &array[last]);
  324. __os_free(dbenv, real_name);
  325. if (ret != 0)
  326. goto err2;
  327. } else if ((p = __db_rpath(real_name)) != NULL) {
  328. ret = __os_strdup(dbenv, p + 1, &array[last]);
  329. __os_free(dbenv, real_name);
  330. if (ret != 0)
  331. goto err2;
  332. } else
  333. array[last] = real_name;
  334. ++last;
  335. }
  336. /* NULL-terminate the list. */
  337. array[last] = NULL;
  338. /* Rework the memory. */
  339. if ((ret = __usermem(dbenv, &array)) != 0)
  340. goto err1;
  341. *listp = array;
  342. return (0);
  343. err2: /*
  344.  * XXX
  345.  * We've possibly inserted NULLs into the array list, so clean up a
  346.  * bit so that the other error processing works.
  347.  */
  348. if (array != NULL)
  349. for (; nxt < n; ++nxt)
  350. __os_free(dbenv, array[nxt]);
  351. /* FALLTHROUGH */
  352. err1: if (array != NULL) {
  353. for (arrayp = array; *arrayp != NULL; ++arrayp)
  354. __os_free(dbenv, *arrayp);
  355. __os_free(dbenv, array);
  356. }
  357. return (ret);
  358. }
  359. /*
  360.  * __absname --
  361.  * Return an absolute path name for the file.
  362.  */
  363. static int
  364. __absname(dbenv, pref, name, newnamep)
  365. DB_ENV *dbenv;
  366. char *pref, *name, **newnamep;
  367. {
  368. size_t l_pref, l_name;
  369. int isabspath, ret;
  370. char *newname;
  371. l_name = strlen(name);
  372. isabspath = __os_abspath(name);
  373. l_pref = isabspath ? 0 : strlen(pref);
  374. /* Malloc space for concatenating the two. */
  375. if ((ret = __os_malloc(dbenv,
  376.     l_pref + l_name + 2, &newname)) != 0)
  377. return (ret);
  378. *newnamep = newname;
  379. /* Build the name.  If `name' is an absolute path, ignore any prefix. */
  380. if (!isabspath) {
  381. memcpy(newname, pref, l_pref);
  382. if (strchr(PATH_SEPARATOR, newname[l_pref - 1]) == NULL)
  383. newname[l_pref++] = PATH_SEPARATOR[0];
  384. }
  385. memcpy(newname + l_pref, name, l_name + 1);
  386. return (0);
  387. }
  388. /*
  389.  * __usermem --
  390.  * Create a single chunk of memory that holds the returned information.
  391.  * If the user has their own malloc routine, use it.
  392.  */
  393. static int
  394. __usermem(dbenv, listp)
  395. DB_ENV *dbenv;
  396. char ***listp;
  397. {
  398. size_t len;
  399. int ret;
  400. char **array, **arrayp, **orig, *strp;
  401. /* Find out how much space we need. */
  402. for (len = 0, orig = *listp; *orig != NULL; ++orig)
  403. len += sizeof(char *) + strlen(*orig) + 1;
  404. len += sizeof(char *);
  405. /* Allocate it and set up the pointers. */
  406. if ((ret = __os_umalloc(dbenv, len, &array)) != 0)
  407. return (ret);
  408. strp = (char *)(array + (orig - *listp) + 1);
  409. /* Copy the original information into the new memory. */
  410. for (orig = *listp, arrayp = array; *orig != NULL; ++orig, ++arrayp) {
  411. len = strlen(*orig);
  412. memcpy(strp, *orig, len + 1);
  413. *arrayp = strp;
  414. strp += len + 1;
  415. __os_free(dbenv, *orig);
  416. }
  417. /* NULL-terminate the list. */
  418. *arrayp = NULL;
  419. __os_free(dbenv, *listp);
  420. *listp = array;
  421. return (0);
  422. }
  423. static int
  424. __cmpfunc(p1, p2)
  425. const void *p1, *p2;
  426. {
  427. return (strcmp(*((char * const *)p1), *((char * const *)p2)));
  428. }