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

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: dbreg_util.c,v 11.22 2002/09/10 02:43:10 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <string.h>
  14. #endif
  15. #include "db_int.h"
  16. #include "dbinc/db_page.h"
  17. #include "dbinc/db_am.h"
  18. #include "dbinc/log.h"
  19. #include "dbinc/txn.h"
  20. static int __dbreg_check_master __P((DB_ENV *, u_int8_t *, char *));
  21. /*
  22.  * __dbreg_add_dbentry --
  23.  * Adds a DB entry to the dbreg DB entry table.
  24.  *
  25.  * PUBLIC: int __dbreg_add_dbentry __P((DB_ENV *, DB_LOG *, DB *, int32_t));
  26.  */
  27. int
  28. __dbreg_add_dbentry(dbenv, dblp, dbp, ndx)
  29. DB_ENV *dbenv;
  30. DB_LOG *dblp;
  31. DB *dbp;
  32. int32_t ndx;
  33. {
  34. int32_t i;
  35. int ret;
  36. ret = 0;
  37. MUTEX_THREAD_LOCK(dbenv, dblp->mutexp);
  38. /*
  39.  * Check if we need to grow the table.  Note, ndx is 0-based (the
  40.  * index into the DB entry table) an dbentry_cnt is 1-based, the
  41.  * number of available slots.
  42.  */
  43. if (dblp->dbentry_cnt <= ndx) {
  44. if ((ret = __os_realloc(dbenv,
  45.     (ndx + DB_GROW_SIZE) * sizeof(DB_ENTRY),
  46.     &dblp->dbentry)) != 0)
  47. goto err;
  48. /* Initialize the new entries. */
  49. for (i = dblp->dbentry_cnt; i < ndx + DB_GROW_SIZE; i++) {
  50. dblp->dbentry[i].dbp = NULL;
  51. dblp->dbentry[i].deleted = 0;
  52. }
  53. dblp->dbentry_cnt = i;
  54. }
  55. DB_ASSERT(dblp->dbentry[ndx].dbp == NULL);
  56. dblp->dbentry[ndx].deleted = dbp == NULL;
  57. dblp->dbentry[ndx].dbp = dbp;
  58. err: MUTEX_THREAD_UNLOCK(dbenv, dblp->mutexp);
  59. return (ret);
  60. }
  61. /*
  62.  * __dbreg_rem_dbentry
  63.  * Remove an entry from the DB entry table.
  64.  *
  65.  * PUBLIC: void __dbreg_rem_dbentry __P((DB_LOG *, int32_t));
  66.  */
  67. void
  68. __dbreg_rem_dbentry(dblp, ndx)
  69. DB_LOG *dblp;
  70. int32_t ndx;
  71. {
  72. MUTEX_THREAD_LOCK(dblp->dbenv, dblp->mutexp);
  73. dblp->dbentry[ndx].dbp = NULL;
  74. dblp->dbentry[ndx].deleted = 0;
  75. MUTEX_THREAD_UNLOCK(dblp->dbenv, dblp->mutexp);
  76. }
  77. /*
  78.  * __dbreg_open_files --
  79.  * Put a LOG_CHECKPOINT log record for each open database.
  80.  *
  81.  * PUBLIC: int __dbreg_open_files __P((DB_ENV *));
  82.  */
  83. int
  84. __dbreg_open_files(dbenv)
  85. DB_ENV *dbenv;
  86. {
  87. DB_LOG *dblp;
  88. DB_LSN r_unused;
  89. DBT *dbtp, fid_dbt, t;
  90. FNAME *fnp;
  91. LOG *lp;
  92. int ret;
  93. dblp = dbenv->lg_handle;
  94. lp = dblp->reginfo.primary;
  95. ret = 0;
  96. MUTEX_LOCK(dbenv, &lp->fq_mutex);
  97. for (fnp = SH_TAILQ_FIRST(&lp->fq, __fname);
  98.     fnp != NULL; fnp = SH_TAILQ_NEXT(fnp, q, __fname)) {
  99. if (fnp->name_off == INVALID_ROFF)
  100. dbtp = NULL;
  101. else {
  102. memset(&t, 0, sizeof(t));
  103. t.data = R_ADDR(&dblp->reginfo, fnp->name_off);
  104. t.size = (u_int32_t)strlen(t.data) + 1;
  105. dbtp = &t;
  106. }
  107. memset(&fid_dbt, 0, sizeof(fid_dbt));
  108. fid_dbt.data = fnp->ufid;
  109. fid_dbt.size = DB_FILE_ID_LEN;
  110. /*
  111.  * Output LOG_CHECKPOINT records which will be
  112.  * processed during the OPENFILES pass of recovery.
  113.  * At the end of recovery we want to output the
  114.  * files that were open so that a future recovery
  115.  * run will have the correct files open during
  116.  * a backward pass.  For this we output LOG_RCLOSE
  117.  * records so that the files will be closed on
  118.  * the forward pass.
  119.  */
  120. if ((ret = __dbreg_register_log(dbenv,
  121.     NULL, &r_unused, 0,
  122.     F_ISSET(dblp, DBLOG_RECOVER) ? LOG_RCLOSE : LOG_CHECKPOINT,
  123.     dbtp, &fid_dbt, fnp->id, fnp->s_type, fnp->meta_pgno,
  124.     TXN_INVALID)) != 0)
  125. break;
  126. }
  127. MUTEX_UNLOCK(dbenv, &lp->fq_mutex);
  128. return (ret);
  129. }
  130. /*
  131.  * __dbreg_close_files --
  132.  * Close files that were opened by the recovery daemon.  We sync the
  133.  * file, unless its mpf pointer has been NULLed by a db_remove or
  134.  * db_rename.  We may not have flushed the log_register record that
  135.  * closes the file.
  136.  *
  137.  * PUBLIC: int __dbreg_close_files __P((DB_ENV *));
  138.  */
  139. int
  140. __dbreg_close_files(dbenv)
  141. DB_ENV *dbenv;
  142. {
  143. DB_LOG *dblp;
  144. DB *dbp;
  145. int ret, t_ret;
  146. int32_t i;
  147. /* If we haven't initialized logging, we have nothing to do. */
  148. if (!LOGGING_ON(dbenv))
  149. return (0);
  150. dblp = dbenv->lg_handle;
  151. ret = 0;
  152. MUTEX_THREAD_LOCK(dbenv, dblp->mutexp);
  153. for (i = 0; i < dblp->dbentry_cnt; i++) {
  154. /* We only want to close dbps that recovery opened. */
  155. if ((dbp = dblp->dbentry[i].dbp) != NULL &&
  156.     F_ISSET(dbp, DB_AM_RECOVER)) {
  157. /*
  158.  * It's unsafe to call DB->close while holding the
  159.  * thread lock, because we'll call __dbreg_rem_dbentry
  160.  * and grab it again.
  161.  *
  162.  * Just drop it.  Since dbreg ids go monotonically
  163.  * upward, concurrent opens should be safe, and the
  164.  * user should have no business closing files while
  165.  * we're in this loop anyway--we're in the process of
  166.  * making all outstanding dbps invalid.
  167.  */
  168. MUTEX_THREAD_UNLOCK(dbenv, dblp->mutexp);
  169. if ((t_ret = dbp->close(dbp,
  170.     dbp->mpf == NULL ? DB_NOSYNC : 0)) != 0 && ret == 0)
  171. ret = t_ret;
  172. MUTEX_THREAD_LOCK(dbenv, dblp->mutexp);
  173. }
  174. dblp->dbentry[i].deleted = 0;
  175. dblp->dbentry[i].dbp = NULL;
  176. }
  177. MUTEX_THREAD_UNLOCK(dbenv, dblp->mutexp);
  178. return (ret);
  179. }
  180. /*
  181.  * __dbreg_nofiles --
  182.  * Check that there are no open files in the process local table.
  183.  * Returns 0 if there are no files and EINVAL if there are any.
  184.  *
  185.  * PUBLIC: int __dbreg_nofiles __P((DB_ENV *));
  186.  */
  187. int
  188. __dbreg_nofiles(dbenv)
  189. DB_ENV *dbenv;
  190. {
  191. DB *dbp;
  192. DB_LOG *dblp;
  193. int ret;
  194. int32_t i;
  195. /* If we haven't initialized logging, we have nothing to do. */
  196. if (!LOGGING_ON(dbenv))
  197. return (0);
  198. dblp = dbenv->lg_handle;
  199. ret = 0;
  200. MUTEX_THREAD_LOCK(dbenv, dblp->mutexp);
  201. for (i = 0; i < dblp->dbentry_cnt; i++) {
  202. if ((dbp = dblp->dbentry[i].dbp) != NULL &&
  203.     !F_ISSET(dbp, DB_AM_RECOVER)) {
  204. ret = EINVAL;
  205. break;
  206. }
  207. }
  208. MUTEX_THREAD_UNLOCK(dbenv, dblp->mutexp);
  209. return (ret);
  210. }
  211. /*
  212.  * __dbreg_id_to_db --
  213.  * Return the DB corresponding to the specified dbreg id.
  214.  *
  215.  * PUBLIC: int __dbreg_id_to_db __P((DB_ENV *, DB_TXN *, DB **, int32_t, int));
  216.  */
  217. int
  218. __dbreg_id_to_db(dbenv, txn, dbpp, ndx, inc)
  219. DB_ENV *dbenv;
  220. DB_TXN *txn;
  221. DB **dbpp;
  222. int32_t ndx;
  223. int inc;
  224. {
  225. return (__dbreg_id_to_db_int(dbenv, txn, dbpp, ndx, inc, 1));
  226. }
  227. /*
  228.  * __dbreg_id_to_db_int --
  229.  * Return the DB corresponding to the specified dbreg id.  The internal
  230.  * version takes a final parameter that indicates whether we should attempt
  231.  * to open the file if no mapping is found.  During recovery, the recovery
  232.  * routines all want to try to open the file (and this is called from
  233.  * __dbreg_id_to_db), however, if we have a multi-process environment where
  234.  * some processes may not have the files open (e.g., XA), then we also get
  235.  * called from __dbreg_assign_id and it's OK if there is no mapping.
  236.  *
  237.  * PUBLIC: int __dbreg_id_to_db_int __P((DB_ENV *,
  238.  * PUBLIC:     DB_TXN *, DB **, int32_t, int, int));
  239.  */
  240. int
  241. __dbreg_id_to_db_int(dbenv, txn, dbpp, ndx, inc, tryopen)
  242. DB_ENV *dbenv;
  243. DB_TXN *txn;
  244. DB **dbpp;
  245. int32_t ndx;
  246. int inc, tryopen;
  247. {
  248. DB_LOG *dblp;
  249. FNAME *fname;
  250. int ret;
  251. char *name;
  252. ret = 0;
  253. dblp = dbenv->lg_handle;
  254. COMPQUIET(inc, 0);
  255. MUTEX_THREAD_LOCK(dbenv, dblp->mutexp);
  256. /*
  257.  * Under XA, a process different than the one issuing DB operations
  258.  * may abort a transaction.  In this case, the "recovery" routines
  259.  * are run by a process that does not necessarily have the file open,
  260.  * so we we must open the file explicitly.
  261.  */
  262. if (ndx >= dblp->dbentry_cnt ||
  263.     (!dblp->dbentry[ndx].deleted && dblp->dbentry[ndx].dbp == NULL)) {
  264. if (!tryopen || F_ISSET(dblp, DBLOG_RECOVER)) {
  265. ret = ENOENT;
  266. goto err;
  267. }
  268. /*
  269.  * __dbreg_id_to_fname acquires the region's fq_mutex,
  270.  * which we can't safely acquire while we hold the thread lock.
  271.  * We no longer need it anyway--the dbentry table didn't
  272.  * have what we needed.
  273.  */
  274. MUTEX_THREAD_UNLOCK(dbenv, dblp->mutexp);
  275. if (__dbreg_id_to_fname(dblp, ndx, 0, &fname) != 0)
  276. /*
  277.  * With transactional opens, we may actually have
  278.  * closed this file in the transaction in which
  279.  * case this will fail too.  Then it's up to the
  280.  * caller to reopen the file.
  281.  */
  282. return (ENOENT);
  283. /*
  284.  * Note that we're relying on fname not to change, even
  285.  * though we released the mutex that protects it (fq_mutex)
  286.  * inside __dbreg_id_to_fname.  This should be a safe
  287.  * assumption, because the other process that has the file
  288.  * open shouldn't be closing it while we're trying to abort.
  289.  */
  290. name = R_ADDR(&dblp->reginfo, fname->name_off);
  291. /*
  292.  * At this point, we are not holding the thread lock, so exit
  293.  * directly instead of going through the exit code at the
  294.  * bottom.  If the __dbreg_do_open succeeded, then we don't need
  295.  * to do any of the remaining error checking at the end of this
  296.  * routine.
  297.  * XXX I am sending a NULL txnlist and 0 txnid which may be
  298.  * completely broken ;(
  299.  */
  300. if ((ret = __dbreg_do_open(dbenv, txn, dblp,
  301.     fname->ufid, name, fname->s_type,
  302.     ndx, fname->meta_pgno, NULL, 0)) != 0)
  303. return (ret);
  304. *dbpp = dblp->dbentry[ndx].dbp;
  305. return (0);
  306. }
  307. /*
  308.  * Return DB_DELETED if the file has been deleted (it's not an error).
  309.  */
  310. if (dblp->dbentry[ndx].deleted) {
  311. ret = DB_DELETED;
  312. goto err;
  313. }
  314. /* It's an error if we don't have a corresponding writeable DB. */
  315. if ((*dbpp = dblp->dbentry[ndx].dbp) == NULL)
  316. ret = ENOENT;
  317. err: MUTEX_THREAD_UNLOCK(dbenv, dblp->mutexp);
  318. return (ret);
  319. }
  320. /*
  321.  * __dbreg_id_to_fname --
  322.  * Traverse the shared-memory region looking for the entry that
  323.  * matches the passed dbreg id.  Returns 0 on success; -1 on error.
  324.  *
  325.  * PUBLIC: int __dbreg_id_to_fname __P((DB_LOG *, int32_t, int, FNAME **));
  326.  */
  327. int
  328. __dbreg_id_to_fname(dblp, lid, have_lock, fnamep)
  329. DB_LOG *dblp;
  330. int32_t lid;
  331. int have_lock;
  332. FNAME **fnamep;
  333. {
  334. DB_ENV *dbenv;
  335. FNAME *fnp;
  336. LOG *lp;
  337. int ret;
  338. dbenv = dblp->dbenv;
  339. lp = dblp->reginfo.primary;
  340. ret = -1;
  341. if (!have_lock)
  342. MUTEX_LOCK(dbenv, &lp->fq_mutex);
  343. for (fnp = SH_TAILQ_FIRST(&lp->fq, __fname);
  344.     fnp != NULL; fnp = SH_TAILQ_NEXT(fnp, q, __fname)) {
  345. if (fnp->id == lid) {
  346. *fnamep = fnp;
  347. ret = 0;
  348. break;
  349. }
  350. }
  351. if (!have_lock)
  352. MUTEX_UNLOCK(dbenv, &lp->fq_mutex);
  353. return (ret);
  354. }
  355. /*
  356.  * __dbreg_fid_to_fname --
  357.  * Traverse the shared-memory region looking for the entry that
  358.  * matches the passed file unique id.  Returns 0 on success; -1 on error.
  359.  *
  360.  * PUBLIC: int __dbreg_fid_to_fname __P((DB_LOG *, u_int8_t *, int, FNAME **));
  361.  */
  362. int
  363. __dbreg_fid_to_fname(dblp, fid, have_lock, fnamep)
  364. DB_LOG *dblp;
  365. u_int8_t *fid;
  366. int have_lock;
  367. FNAME **fnamep;
  368. {
  369. DB_ENV *dbenv;
  370. FNAME *fnp;
  371. LOG *lp;
  372. int ret;
  373. dbenv = dblp->dbenv;
  374. lp = dblp->reginfo.primary;
  375. ret = -1;
  376. if (!have_lock)
  377. MUTEX_LOCK(dbenv, &lp->fq_mutex);
  378. for (fnp = SH_TAILQ_FIRST(&lp->fq, __fname);
  379.     fnp != NULL; fnp = SH_TAILQ_NEXT(fnp, q, __fname)) {
  380. if (memcmp(fnp->ufid, fid, DB_FILE_ID_LEN) == 0) {
  381. *fnamep = fnp;
  382. ret = 0;
  383. break;
  384. }
  385. }
  386. if (!have_lock)
  387. MUTEX_UNLOCK(dbenv, &lp->fq_mutex);
  388. return (ret);
  389. }
  390. /*
  391.  * __dbreg_get_name
  392.  *
  393.  * Interface to get name of registered files.  This is mainly diagnostic
  394.  * and the name passed could be transient unless there is something
  395.  * ensuring that the file cannot be closed.
  396.  *
  397.  * PUBLIC: int __dbreg_get_name __P((DB_ENV *, u_int8_t *, char **));
  398.  */
  399. int
  400. __dbreg_get_name(dbenv, fid, namep)
  401. DB_ENV *dbenv;
  402. u_int8_t *fid;
  403. char **namep;
  404. {
  405. DB_LOG *dblp;
  406. FNAME *fname;
  407. dblp = dbenv->lg_handle;
  408. if (dblp != NULL && __dbreg_fid_to_fname(dblp, fid, 0, &fname) == 0) {
  409. *namep = R_ADDR(&dblp->reginfo, fname->name_off);
  410. return (0);
  411. }
  412. return (-1);
  413. }
  414. /*
  415.  * __dbreg_do_open --
  416.  * Open files referenced in the log.  This is the part of the open that
  417.  * is not protected by the thread mutex.
  418.  * PUBLIC: int __dbreg_do_open __P((DB_ENV *, DB_TXN *, DB_LOG *, u_int8_t *,
  419.  * PUBLIC:     char *, DBTYPE, int32_t, db_pgno_t, void *, u_int32_t));
  420.  */
  421. int
  422. __dbreg_do_open(dbenv,
  423.     txn, lp, uid, name, ftype, ndx, meta_pgno, info, id)
  424. DB_ENV *dbenv;
  425. DB_TXN *txn;
  426. DB_LOG *lp;
  427. u_int8_t *uid;
  428. char *name;
  429. DBTYPE ftype;
  430. int32_t ndx;
  431. db_pgno_t meta_pgno;
  432. void *info;
  433. u_int32_t id;
  434. {
  435. DB *dbp;
  436. int ret;
  437. u_int32_t cstat;
  438. if ((ret = db_create(&dbp, lp->dbenv, 0)) != 0)
  439. return (ret);
  440. /*
  441.  * We can open files under a number of different scenarios.
  442.  * First, we can open a file during a normal txn_abort, if that file
  443.  * was opened and closed during the transaction (as is the master
  444.  * database of a sub-database).
  445.  * Second, we might be aborting a transaction in XA and not have
  446.  * it open in the process that is actually doing the abort.
  447.  * Third, we might be in recovery.
  448.  * In case 3, there is no locking, so there is no issue.
  449.  * In cases 1 and 2, we are guaranteed to already hold any locks
  450.  * that we need, since we're still in the same transaction, so by
  451.  * setting DB_AM_RECOVER, we guarantee that we don't log and that
  452.  * we don't try to acquire locks on behalf of a different locker id.
  453.  */
  454. F_SET(dbp, DB_AM_RECOVER);
  455. if (meta_pgno != PGNO_BASE_MD) {
  456. memcpy(dbp->fileid, uid, DB_FILE_ID_LEN);
  457. dbp->meta_pgno = meta_pgno;
  458. }
  459. dbp->type = ftype;
  460. if ((ret = __db_dbopen(dbp, txn, name, NULL,
  461.     DB_ODDFILESIZE, __db_omode("rw----"), meta_pgno)) == 0) {
  462. /*
  463.  * Verify that we are opening the same file that we were
  464.  * referring to when we wrote this log record.
  465.  */
  466. if ((meta_pgno != PGNO_BASE_MD &&
  467.     __dbreg_check_master(dbenv, uid, name) != 0) ||
  468.     memcmp(uid, dbp->fileid, DB_FILE_ID_LEN) != 0)
  469. cstat = TXN_IGNORE;
  470. else
  471. cstat = TXN_EXPECTED;
  472. /* Assign the specific dbreg id to this dbp. */
  473. if ((ret = __dbreg_assign_id(dbp, ndx)) != 0)
  474. goto err;
  475. /*
  476.  * If we successfully opened this file, then we need to
  477.  * convey that information to the txnlist so that we
  478.  * know how to handle the subtransaction that created
  479.  * the file system object.
  480.  */
  481. if (id != TXN_INVALID) {
  482. if ((ret = __db_txnlist_update(dbenv,
  483.     info, id, cstat, NULL)) == TXN_NOTFOUND)
  484. ret = __db_txnlist_add(dbenv,
  485.     info, id, cstat, NULL);
  486. else if (ret > 0)
  487. ret = 0;
  488. }
  489. err: if (cstat == TXN_IGNORE)
  490. goto not_right;
  491. return (ret);
  492. } else {
  493. /* Record that the open failed in the txnlist. */
  494. if (id != TXN_INVALID && (ret = __db_txnlist_update(dbenv,
  495.     info, id, TXN_UNEXPECTED, NULL)) == TXN_NOTFOUND)
  496. ret = __db_txnlist_add(dbenv,
  497.     info, id, TXN_UNEXPECTED, NULL);
  498. }
  499. not_right:
  500. (void)dbp->close(dbp, 0);
  501. /* Add this file as deleted. */
  502. (void)__dbreg_add_dbentry(dbenv, lp, NULL, ndx);
  503. return (ENOENT);
  504. }
  505. static int
  506. __dbreg_check_master(dbenv, uid, name)
  507. DB_ENV *dbenv;
  508. u_int8_t *uid;
  509. char *name;
  510. {
  511. DB *dbp;
  512. int ret;
  513. ret = 0;
  514. if ((ret = db_create(&dbp, dbenv, 0)) != 0)
  515. return (ret);
  516. dbp->type = DB_BTREE;
  517. F_SET(dbp, DB_AM_RECOVER);
  518. ret = __db_dbopen(dbp,
  519.     NULL, name, NULL, 0, __db_omode("rw----"), PGNO_BASE_MD);
  520. if (ret == 0 && memcmp(uid, dbp->fileid, DB_FILE_ID_LEN) != 0)
  521. ret = EINVAL;
  522. (void)dbp->close(dbp, 0);
  523. return (ret);
  524. }
  525. /*
  526.  * __dbreg_lazy_id --
  527.  * When a replication client gets upgraded to being a replication master,
  528.  * it may have database handles open that have not been assigned an ID, but
  529.  * which have become legal to use for logging.
  530.  *
  531.  * This function lazily allocates a new ID for such a function, in a
  532.  * new transaction created for the purpose.  We need to do this in a new
  533.  * transaction because we definitely wish to commit the dbreg_register, but
  534.  * at this point we have no way of knowing whether the log record that incited
  535.  * us to call this will be part of a committed transaction.
  536.  *
  537.  * PUBLIC: int __dbreg_lazy_id __P((DB *));
  538.  */
  539. int
  540. __dbreg_lazy_id(dbp)
  541. DB *dbp;
  542. {
  543. DB_ENV *dbenv;
  544. DB_TXN *txn;
  545. int ret;
  546. dbenv = dbp->dbenv;
  547. DB_ASSERT(F_ISSET(dbenv, DB_ENV_REP_MASTER));
  548. if ((ret = dbenv->txn_begin(dbenv, NULL, &txn, 0)) != 0)
  549. return (ret);
  550. if ((ret = __dbreg_new_id(dbp, txn)) != 0) {
  551. (void)txn->abort(txn);
  552. return (ret);
  553. }
  554. return (txn->commit(txn, DB_TXN_NOSYNC));
  555. }
  556. /*
  557.  * __dbreg_push_id and __dbreg_pop_id --
  558.  * Dbreg ids from closed files are kept on a stack in shared memory
  559.  * for recycling.  (We want to reuse them as much as possible because each
  560.  * process keeps open files in an array by ID.)  Push them to the stack and
  561.  * pop them from it, managing memory as appropriate.
  562.  *
  563.  * The stack is protected by the fq_mutex, and in both functions we assume
  564.  * that this is already locked.
  565.  *
  566.  * PUBLIC: int __dbreg_push_id __P((DB_ENV *, int32_t));
  567.  * PUBLIC: int __dbreg_pop_id __P((DB_ENV *, int32_t *));
  568.  */
  569. int
  570. __dbreg_push_id(dbenv, id)
  571. DB_ENV *dbenv;
  572. int32_t id;
  573. {
  574. DB_LOG *dblp;
  575. LOG *lp;
  576. int32_t *stack, *newstack;
  577. int ret;
  578. dblp = dbenv->lg_handle;
  579. lp = dblp->reginfo.primary;
  580. if (lp->free_fid_stack != INVALID_ROFF)
  581. stack = R_ADDR(&dblp->reginfo, lp->free_fid_stack);
  582. else
  583. stack = NULL;
  584. /* Check if we have room on the stack. */
  585. if (lp->free_fids_alloced <= lp->free_fids + 1) {
  586. R_LOCK(dbenv, &dblp->reginfo);
  587. if ((ret = __db_shalloc(dblp->reginfo.addr,
  588.     (lp->free_fids_alloced + 20) * sizeof(u_int32_t), 0,
  589.     &newstack)) != 0) {
  590. R_UNLOCK(dbenv, &dblp->reginfo);
  591. return (ret);
  592. }
  593. memcpy(newstack, stack,
  594.     lp->free_fids_alloced * sizeof(u_int32_t));
  595. lp->free_fid_stack = R_OFFSET(&dblp->reginfo, newstack);
  596. lp->free_fids_alloced += 20;
  597. if (stack != NULL)
  598. __db_shalloc_free(dblp->reginfo.addr, stack);
  599. stack = newstack;
  600. R_UNLOCK(dbenv, &dblp->reginfo);
  601. }
  602. DB_ASSERT(stack != NULL);
  603. stack[lp->free_fids++] = id;
  604. return (0);
  605. }
  606. int
  607. __dbreg_pop_id(dbenv, id)
  608. DB_ENV *dbenv;
  609. int32_t *id;
  610. {
  611. DB_LOG *dblp;
  612. LOG *lp;
  613. int32_t *stack;
  614. dblp = dbenv->lg_handle;
  615. lp = dblp->reginfo.primary;
  616. /* Do we have anything to pop? */
  617. if (lp->free_fid_stack != INVALID_ROFF && lp->free_fids > 0) {
  618. stack = R_ADDR(&dblp->reginfo, lp->free_fid_stack);
  619. *id = stack[--lp->free_fids];
  620. } else
  621. *id = DB_LOGFILEID_INVALID;
  622. return (0);
  623. }
  624. /*
  625.  * __dbreg_pluck_id --
  626.  * Remove a particular dbreg id from the stack of free ids.  This is
  627.  * used when we open a file, as in recovery, with a specific ID that might
  628.  * be on the stack.
  629.  *
  630.  * Returns success whether or not the particular id was found, and like
  631.  * push and pop, assumes that the fq_mutex is locked.
  632.  *
  633.  * PUBLIC: int __dbreg_pluck_id __P((DB_ENV *, int32_t));
  634.  */
  635. int
  636. __dbreg_pluck_id(dbenv, id)
  637. DB_ENV *dbenv;
  638. int32_t id;
  639. {
  640. DB_LOG *dblp;
  641. LOG *lp;
  642. int32_t *stack;
  643. int i;
  644. dblp = dbenv->lg_handle;
  645. lp = dblp->reginfo.primary;
  646. /* Do we have anything to look at? */
  647. if (lp->free_fid_stack != INVALID_ROFF) {
  648. stack = R_ADDR(&dblp->reginfo, lp->free_fid_stack);
  649. for (i = 0; i < lp->free_fids; i++)
  650. if (id == stack[i]) {
  651. /*
  652.  * Found it.  Overwrite it with the top
  653.  * id (which may harmlessly be itself),
  654.  * and shorten the stack by one.
  655.  */
  656. stack[i] = stack[lp->free_fids - 1];
  657. lp->free_fids--;
  658. return (0);
  659. }
  660. }
  661. return (0);
  662. }
  663. #ifdef DEBUG
  664. /*
  665.  * __dbreg_print_dblist --
  666.  * Display the list of files.
  667.  *
  668.  * PUBLIC: void __dbreg_print_dblist __P((DB_ENV *));
  669.  */
  670. void
  671. __dbreg_print_dblist(dbenv)
  672. DB_ENV *dbenv;
  673. {
  674. DB *dbp;
  675. DB_LOG *dblp;
  676. FNAME *fnp;
  677. LOG *lp;
  678. int del, first;
  679. char *name;
  680. dblp = dbenv->lg_handle;
  681. lp = dblp->reginfo.primary;
  682. MUTEX_LOCK(dbenv, &lp->fq_mutex);
  683. for (first = 1, fnp = SH_TAILQ_FIRST(&lp->fq, __fname);
  684.     fnp != NULL; fnp = SH_TAILQ_NEXT(fnp, q, __fname)) {
  685. if (first) {
  686. first = 0;
  687. __db_err(dbenv,
  688.     "IDtttNametTypetPgnotTxnidtDBP-info");
  689. }
  690. if (fnp->name_off == INVALID_ROFF)
  691. name = "";
  692. else
  693. name = R_ADDR(&dblp->reginfo, fnp->name_off);
  694. dbp = fnp->id >= dblp->dbentry_cnt ? NULL :
  695.     dblp->dbentry[fnp->id].dbp;
  696. del = fnp->id >= dblp->dbentry_cnt ? 0 :
  697.     dblp->dbentry[fnp->id].deleted;
  698. __db_err(dbenv, "%ldt%sttt%st%lut%lxt%s %d %lx %lx",
  699.     (long)fnp->id, name,
  700.     __db_dbtype_to_string(fnp->s_type),
  701.     (u_long)fnp->meta_pgno, (u_long)fnp->create_txnid,
  702.     dbp == NULL ? "No DBP" : "DBP", del, P_TO_ULONG(dbp),
  703.     dbp == NULL ? 0 : dbp->flags);
  704. }
  705. MUTEX_UNLOCK(dbenv, &lp->fq_mutex);
  706. }
  707. #endif