mp_bh.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:17k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: mp_bh.c,v 11.25 2001/01/10 04:50:53 ubell Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <string.h>
  14. #include <unistd.h>
  15. #endif
  16. #include "db_int.h"
  17. #include "db_shash.h"
  18. #include "mp.h"
  19. #include "log.h"
  20. #include "db_page.h"
  21. static int __memp_upgrade __P((DB_MPOOL *, DB_MPOOLFILE *, MPOOLFILE *));
  22. /*
  23.  * __memp_bhwrite --
  24.  * Write the page associated with a given bucket header.
  25.  *
  26.  * PUBLIC: int __memp_bhwrite
  27.  * PUBLIC:     __P((DB_MPOOL *, MPOOLFILE *, BH *, int *, int *));
  28.  */
  29. int
  30. __memp_bhwrite(dbmp, mfp, bhp, restartp, wrotep)
  31. DB_MPOOL *dbmp;
  32. MPOOLFILE *mfp;
  33. BH *bhp;
  34. int *restartp, *wrotep;
  35. {
  36. DB_MPOOLFILE *dbmfp;
  37. DB_MPREG *mpreg;
  38. int incremented, ret;
  39. if (restartp != NULL)
  40. *restartp = 0;
  41. if (wrotep != NULL)
  42. *wrotep = 0;
  43. incremented = 0;
  44. /*
  45.  * If the file has been removed or is a closed temporary file, Jump
  46.  * right ahead and pretend that we've found the file we want-- the
  47.  * page-write function knows how to handle the fact that we don't have
  48.  * (or need!) any real file descriptor information.
  49.  */
  50. if (F_ISSET(mfp, MP_DEADFILE)) {
  51. dbmfp = NULL;
  52. goto found;
  53. }
  54. /*
  55.  * Walk the process' DB_MPOOLFILE list and find a file descriptor for
  56.  * the file.  We also check that the descriptor is open for writing.
  57.  * If we find a descriptor on the file that's not open for writing, we
  58.  * try and upgrade it to make it writeable.  If that fails, we're done.
  59.  */
  60. MUTEX_THREAD_LOCK(dbmp->dbenv, dbmp->mutexp);
  61. for (dbmfp = TAILQ_FIRST(&dbmp->dbmfq);
  62.     dbmfp != NULL; dbmfp = TAILQ_NEXT(dbmfp, q))
  63. if (dbmfp->mfp == mfp) {
  64. if (F_ISSET(dbmfp, MP_READONLY) &&
  65.     __memp_upgrade(dbmp, dbmfp, mfp)) {
  66. MUTEX_THREAD_UNLOCK(dbmp->dbenv, dbmp->mutexp);
  67. return (0);
  68. }
  69. /*
  70.  * Increment the reference count -- see the comment in
  71.  * memp_fclose().
  72.  */
  73. ++dbmfp->ref;
  74. incremented = 1;
  75. break;
  76. }
  77. MUTEX_THREAD_UNLOCK(dbmp->dbenv, dbmp->mutexp);
  78. if (dbmfp != NULL)
  79. goto found;
  80. /*
  81.  * !!!
  82.  * Don't try to attach to temporary files.  There are two problems in
  83.  * trying to do that.  First, if we have different privileges than the
  84.  * process that "owns" the temporary file, we might create the backing
  85.  * disk file such that the owning process couldn't read/write its own
  86.  * buffers, e.g., memp_trickle() running as root creating a file owned
  87.  * as root, mode 600.  Second, if the temporary file has already been
  88.  * created, we don't have any way of finding out what its real name is,
  89.  * and, even if we did, it was already unlinked (so that it won't be
  90.  * left if the process dies horribly).  This decision causes a problem,
  91.  * however: if the temporary file consumes the entire buffer cache,
  92.  * and the owner doesn't flush the buffers to disk, we could end up
  93.  * with resource starvation, and the memp_trickle() thread couldn't do
  94.  * anything about it.  That's a pretty unlikely scenario, though.
  95.  *
  96.  * Note that we should never get here when the temporary file
  97.  * in question has already been closed in another process, in which
  98.  * case it should be marked MP_DEADFILE.
  99.  */
  100. if (F_ISSET(mfp, MP_TEMP)) {
  101. DB_ASSERT(!F_ISSET(mfp, MP_DEADFILE));
  102. return (0);
  103. }
  104. /*
  105.  * It's not a page from a file we've opened.  If the file requires
  106.  * input/output processing, see if this process has ever registered
  107.  * information as to how to write this type of file.  If not, there's
  108.  * nothing we can do.
  109.  */
  110. if (mfp->ftype != 0) {
  111. MUTEX_THREAD_LOCK(dbmp->dbenv, dbmp->mutexp);
  112. for (mpreg = LIST_FIRST(&dbmp->dbregq);
  113.     mpreg != NULL; mpreg = LIST_NEXT(mpreg, q))
  114. if (mpreg->ftype == mfp->ftype)
  115. break;
  116. MUTEX_THREAD_UNLOCK(dbmp->dbenv, dbmp->mutexp);
  117. if (mpreg == NULL)
  118. return (0);
  119. }
  120. /*
  121.  * Try and open the file, attaching to the underlying shared area.
  122.  * Ignore any error, assume it's a permissions problem.
  123.  *
  124.  * XXX
  125.  * There's no negative cache, so we may repeatedly try and open files
  126.  * that we have previously tried (and failed) to open.
  127.  */
  128. if (__memp_fopen(dbmp, mfp, R_ADDR(dbmp->reginfo, mfp->path_off),
  129.     0, 0, mfp->stat.st_pagesize, 0, NULL, &dbmfp) != 0)
  130. return (0);
  131. found: ret = __memp_pgwrite(dbmp, dbmfp, bhp, restartp, wrotep);
  132. if (incremented) {
  133. MUTEX_THREAD_LOCK(dbmp->dbenv, dbmp->mutexp);
  134. --dbmfp->ref;
  135. MUTEX_THREAD_UNLOCK(dbmp->dbenv, dbmp->mutexp);
  136. }
  137. return (ret);
  138. }
  139. /*
  140.  * __memp_pgread --
  141.  * Read a page from a file.
  142.  *
  143.  * PUBLIC: int __memp_pgread __P((DB_MPOOLFILE *, BH *, int));
  144.  */
  145. int
  146. __memp_pgread(dbmfp, bhp, can_create)
  147. DB_MPOOLFILE *dbmfp;
  148. BH *bhp;
  149. int can_create;
  150. {
  151. DB_IO db_io;
  152. DB_ENV *dbenv;
  153. DB_MPOOL *dbmp;
  154. MPOOLFILE *mfp;
  155. size_t len, pagesize;
  156. size_t nr;
  157. int created, ret;
  158. dbmp = dbmfp->dbmp;
  159. dbenv = dbmp->dbenv;
  160. mfp = dbmfp->mfp;
  161. pagesize = mfp->stat.st_pagesize;
  162. F_SET(bhp, BH_LOCKED | BH_TRASH);
  163. MUTEX_LOCK(dbenv, &bhp->mutex, dbenv->lockfhp);
  164. R_UNLOCK(dbenv, dbmp->reginfo);
  165. /*
  166.  * Temporary files may not yet have been created.  We don't create
  167.  * them now, we create them when the pages have to be flushed.
  168.  */
  169. nr = 0;
  170. if (F_ISSET(&dbmfp->fh, DB_FH_VALID)) {
  171. /*
  172.  * Ignore read errors if we have permission to create the page.
  173.  * Assume that the page doesn't exist, and that we'll create it
  174.  * when we write it out.
  175.  *
  176.  * XXX
  177.  * Theoretically, we could overwrite a page of data if it were
  178.  * possible for a file to be successfully opened for reading
  179.  * and then for the read to fail.  Shouldn't ever happen, but
  180.  * it might be worth checking to see if the offset is past the
  181.  * known end-of-file.
  182.  */
  183. db_io.fhp = &dbmfp->fh;
  184. db_io.mutexp = dbmfp->mutexp;
  185. db_io.pagesize = db_io.bytes = pagesize;
  186. db_io.pgno = bhp->pgno;
  187. db_io.buf = bhp->buf;
  188. ret = __os_io(dbenv, &db_io, DB_IO_READ, &nr);
  189. } else
  190. ret = 0;
  191. created = 0;
  192. if (nr < pagesize) {
  193. if (can_create)
  194. created = 1;
  195. else {
  196. /*
  197.  * If we had a short read, ret may be 0.  This may not
  198.  * be an error -- in particular DB recovery processing
  199.  * may request pages that have never been written to
  200.  * disk, in which case we won't find the page.  So, the
  201.  * caller must know how to handle the error.
  202.  */
  203. if (ret == 0)
  204. ret = EIO;
  205. goto err;
  206. }
  207. }
  208. /*
  209.  * Clear any bytes we didn't read that need to be cleared.  If we're
  210.  * running in diagnostic mode, smash any bytes on the page that are
  211.  * unknown quantities for the caller.
  212.  */
  213. if (nr != pagesize) {
  214. len = mfp->clear_len == 0 ? pagesize : mfp->clear_len;
  215. if (nr < len)
  216. memset(bhp->buf + nr, 0, len - nr);
  217. #ifdef DIAGNOSTIC
  218. if (nr > len)
  219. len = nr;
  220. if (len < pagesize)
  221. memset(bhp->buf + len, CLEAR_BYTE, pagesize - len);
  222. #endif
  223. }
  224. /* Call any pgin function. */
  225. ret = mfp->ftype == 0 ? 0 : __memp_pg(dbmfp, bhp, 1);
  226. /* Unlock the buffer and reacquire the region lock. */
  227. err: MUTEX_UNLOCK(dbenv, &bhp->mutex);
  228. R_LOCK(dbenv, dbmp->reginfo);
  229. /*
  230.  * If no errors occurred, the data is now valid, clear the BH_TRASH
  231.  * flag; regardless, clear the lock bit and let other threads proceed.
  232.  */
  233. F_CLR(bhp, BH_LOCKED);
  234. if (ret == 0) {
  235. F_CLR(bhp, BH_TRASH);
  236. /* Update the statistics. */
  237. if (created)
  238. ++mfp->stat.st_page_create;
  239. else
  240. ++mfp->stat.st_page_in;
  241. }
  242. return (ret);
  243. }
  244. /*
  245.  * __memp_pgwrite --
  246.  * Write a page to a file.
  247.  *
  248.  * PUBLIC: int __memp_pgwrite
  249.  * PUBLIC:     __P((DB_MPOOL *, DB_MPOOLFILE *, BH *, int *, int *));
  250.  */
  251. int
  252. __memp_pgwrite(dbmp, dbmfp, bhp, restartp, wrotep)
  253. DB_MPOOL *dbmp;
  254. DB_MPOOLFILE *dbmfp;
  255. BH *bhp;
  256. int *restartp, *wrotep;
  257. {
  258. DB_ENV *dbenv;
  259. DB_IO db_io;
  260. DB_LSN lsn;
  261. MPOOL *c_mp, *mp;
  262. MPOOLFILE *mfp;
  263. size_t nw;
  264. int callpgin, dosync, ret, syncfail;
  265. const char *fail;
  266. dbenv = dbmp->dbenv;
  267. mp = dbmp->reginfo[0].primary;
  268. mfp = dbmfp == NULL ? NULL : dbmfp->mfp;
  269. if (restartp != NULL)
  270. *restartp = 0;
  271. if (wrotep != NULL)
  272. *wrotep = 0;
  273. callpgin = 0;
  274. /*
  275.  * Check the dirty bit -- this buffer may have been written since we
  276.  * decided to write it.
  277.  */
  278. if (!F_ISSET(bhp, BH_DIRTY)) {
  279. if (wrotep != NULL)
  280. *wrotep = 1;
  281. return (0);
  282. }
  283. MUTEX_LOCK(dbenv, &bhp->mutex, dbenv->lockfhp);
  284. /*
  285.  * If there were two writers, we may have just been waiting while the
  286.  * other writer completed I/O on this buffer.  Check the dirty bit one
  287.  * more time.
  288.  */
  289. if (!F_ISSET(bhp, BH_DIRTY)) {
  290. MUTEX_UNLOCK(dbenv, &bhp->mutex);
  291. if (wrotep != NULL)
  292. *wrotep = 1;
  293. return (0);
  294. }
  295. F_SET(bhp, BH_LOCKED);
  296. R_UNLOCK(dbenv, dbmp->reginfo);
  297. if (restartp != NULL)
  298. *restartp = 1;
  299. /*
  300.  * It's possible that the underlying file doesn't exist, either
  301.  * because of an outright removal or because it was a temporary
  302.  * file that's been closed.
  303.  *
  304.  * !!!
  305.  * Once we pass this point, we know that dbmfp and mfp aren't NULL,
  306.  * and that we have a valid file reference.
  307.  */
  308. if (mfp == NULL || F_ISSET(mfp, MP_DEADFILE))
  309. goto file_dead;
  310. /*
  311.  * Ensure the appropriate log records are on disk.  If the page is
  312.  * being written as part of a sync operation, the flush has already
  313.  * been done, unless it was written by the application *after* the
  314.  * sync was scheduled.
  315.  */
  316. if (LOGGING_ON(dbenv) &&
  317.     (!F_ISSET(bhp, BH_SYNC) || F_ISSET(bhp, BH_SYNC_LOGFLSH))) {
  318. memcpy(&lsn, bhp->buf + mfp->lsn_off, sizeof(DB_LSN));
  319. if ((ret = log_flush(dbenv, &lsn)) != 0)
  320. goto err;
  321. }
  322. DB_ASSERT(!LOGGING_ON(dbenv) ||
  323.    log_compare(&((LOG *)((DB_LOG *)
  324.    dbenv->lg_handle)->reginfo.primary)->s_lsn, &LSN(bhp->buf)) > 0);
  325. /*
  326.  * Call any pgout function.  We set the callpgin flag so that we flag
  327.  * that the contents of the buffer will need to be passed through pgin
  328.  * before they are reused.
  329.  */
  330. if (mfp->ftype == 0)
  331. ret = 0;
  332. else {
  333. callpgin = 1;
  334. if ((ret = __memp_pg(dbmfp, bhp, 0)) != 0)
  335. goto err;
  336. }
  337. /* Temporary files may not yet have been created. */
  338. if (!F_ISSET(&dbmfp->fh, DB_FH_VALID)) {
  339. MUTEX_THREAD_LOCK(dbenv, dbmp->mutexp);
  340. if (!F_ISSET(&dbmfp->fh, DB_FH_VALID) &&
  341.     ((ret = __db_appname(dbenv, DB_APP_TMP, NULL, NULL,
  342.     DB_OSO_CREATE | DB_OSO_EXCL | DB_OSO_TEMP,
  343.     &dbmfp->fh, NULL)) != 0 ||
  344.     !F_ISSET(&dbmfp->fh, DB_FH_VALID))) {
  345. MUTEX_THREAD_UNLOCK(dbenv, dbmp->mutexp);
  346. __db_err(dbenv,
  347.     "unable to create temporary backing file");
  348. goto err;
  349. }
  350. MUTEX_THREAD_UNLOCK(dbenv, dbmp->mutexp);
  351. }
  352. /* Write the page. */
  353. db_io.fhp = &dbmfp->fh;
  354. db_io.mutexp = dbmfp->mutexp;
  355. db_io.pagesize = db_io.bytes = mfp->stat.st_pagesize;
  356. db_io.pgno = bhp->pgno;
  357. db_io.buf = bhp->buf;
  358. if ((ret = __os_io(dbenv, &db_io, DB_IO_WRITE, &nw)) != 0) {
  359. ret = __db_panic(dbenv, ret);
  360. fail = "write";
  361. goto syserr;
  362. }
  363. if (nw != mfp->stat.st_pagesize) {
  364. ret = EIO;
  365. fail = "write";
  366. goto syserr;
  367. }
  368. file_dead:
  369. /*
  370.  * !!!
  371.  * Once we pass this point, dbmfp and mfp may be NULL, we may not have
  372.  * a valid file reference.
  373.  *
  374.  * Unlock the buffer and reacquire the region lock.
  375.  */
  376. MUTEX_UNLOCK(dbenv, &bhp->mutex);
  377. R_LOCK(dbenv, dbmp->reginfo);
  378. /*
  379.  * Clean up the flags based on a successful write.
  380.  *
  381.  * If we rewrote the page, it will need processing by the pgin
  382.  * routine before reuse.
  383.  */
  384. if (callpgin)
  385. F_SET(bhp, BH_CALLPGIN);
  386. F_CLR(bhp, BH_DIRTY | BH_LOCKED);
  387. /*
  388.  * If we write a buffer for which a checkpoint is waiting, update
  389.  * the count of pending buffers (both in the mpool as a whole and
  390.  * for this file).  If the count for this file goes to zero, set a
  391.  * flag so we flush the writes.
  392.  */
  393. dosync = 0;
  394. if (F_ISSET(bhp, BH_SYNC)) {
  395. F_CLR(bhp, BH_SYNC | BH_SYNC_LOGFLSH);
  396. --mp->lsn_cnt;
  397. if (mfp != NULL)
  398. dosync = --mfp->lsn_cnt == 0 ? 1 : 0;
  399. }
  400. /* Update the page clean/dirty statistics. */
  401. c_mp = BH_TO_CACHE(dbmp, bhp);
  402. ++c_mp->stat.st_page_clean;
  403. --c_mp->stat.st_page_dirty;
  404. /* Update I/O statistics. */
  405. if (mfp != NULL)
  406. ++mfp->stat.st_page_out;
  407. /*
  408.  * Do the sync after everything else has been updated, so any incoming
  409.  * checkpoint doesn't see inconsistent information.
  410.  *
  411.  * XXX:
  412.  * Don't lock the region around the sync, fsync(2) has no atomicity
  413.  * issues.
  414.  *
  415.  * XXX:
  416.  * We ignore errors from the sync -- it makes no sense to return an
  417.  * error to the calling process, so set a flag causing the checkpoint
  418.  * to be retried later.  There is a possibility, of course, that a
  419.  * subsequent checkpoint was started and that we're going to force it
  420.  * to fail.  That should be unlikely, and fixing it would be difficult.
  421.  */
  422. if (dosync) {
  423. R_UNLOCK(dbenv, dbmp->reginfo);
  424. syncfail = __os_fsync(dbenv, &dbmfp->fh) != 0;
  425. R_LOCK(dbenv, dbmp->reginfo);
  426. if (syncfail)
  427. F_SET(mp, MP_LSN_RETRY);
  428. }
  429. if (wrotep != NULL)
  430. *wrotep = 1;
  431. return (0);
  432. syserr: __db_err(dbenv, "%s: %s failed for page %lu",
  433.     __memp_fn(dbmfp), fail, (u_long)bhp->pgno);
  434. err: /* Unlock the buffer and reacquire the region lock. */
  435. MUTEX_UNLOCK(dbenv, &bhp->mutex);
  436. R_LOCK(dbenv, dbmp->reginfo);
  437. /*
  438.  * Clean up the flags based on a failure.
  439.  *
  440.  * The page remains dirty but we remove our lock.  If we rewrote the
  441.  * page, it will need processing by the pgin routine before reuse.
  442.  */
  443. if (callpgin)
  444. F_SET(bhp, BH_CALLPGIN);
  445. F_CLR(bhp, BH_LOCKED);
  446. return (ret);
  447. }
  448. /*
  449.  * __memp_pg --
  450.  * Call the pgin/pgout routine.
  451.  *
  452.  * PUBLIC: int __memp_pg __P((DB_MPOOLFILE *, BH *, int));
  453.  */
  454. int
  455. __memp_pg(dbmfp, bhp, is_pgin)
  456. DB_MPOOLFILE *dbmfp;
  457. BH *bhp;
  458. int is_pgin;
  459. {
  460. DBT dbt, *dbtp;
  461. DB_MPOOL *dbmp;
  462. DB_MPREG *mpreg;
  463. MPOOLFILE *mfp;
  464. int ftype, ret;
  465. dbmp = dbmfp->dbmp;
  466. mfp = dbmfp->mfp;
  467. MUTEX_THREAD_LOCK(dbmp->dbenv, dbmp->mutexp);
  468. ftype = mfp->ftype;
  469. for (mpreg = LIST_FIRST(&dbmp->dbregq);
  470.     mpreg != NULL; mpreg = LIST_NEXT(mpreg, q)) {
  471. if (ftype != mpreg->ftype)
  472. continue;
  473. if (mfp->pgcookie_len == 0)
  474. dbtp = NULL;
  475. else {
  476. dbt.size = mfp->pgcookie_len;
  477. dbt.data = R_ADDR(dbmp->reginfo, mfp->pgcookie_off);
  478. dbtp = &dbt;
  479. }
  480. MUTEX_THREAD_UNLOCK(dbmp->dbenv, dbmp->mutexp);
  481. if (is_pgin) {
  482. if (mpreg->pgin != NULL &&
  483.     (ret = mpreg->pgin(dbmp->dbenv,
  484.     bhp->pgno, bhp->buf, dbtp)) != 0)
  485. goto err;
  486. } else
  487. if (mpreg->pgout != NULL &&
  488.     (ret = mpreg->pgout(dbmp->dbenv,
  489.     bhp->pgno, bhp->buf, dbtp)) != 0)
  490. goto err;
  491. break;
  492. }
  493. if (mpreg == NULL)
  494. MUTEX_THREAD_UNLOCK(dbmp->dbenv, dbmp->mutexp);
  495. return (0);
  496. err: MUTEX_THREAD_UNLOCK(dbmp->dbenv, dbmp->mutexp);
  497. __db_err(dbmp->dbenv, "%s: %s failed for page %lu",
  498.     __memp_fn(dbmfp), is_pgin ? "pgin" : "pgout", (u_long)bhp->pgno);
  499. return (ret);
  500. }
  501. /*
  502.  * __memp_bhfree --
  503.  * Free a bucket header and its referenced data.
  504.  *
  505.  * PUBLIC: void __memp_bhfree __P((DB_MPOOL *, BH *, int));
  506.  */
  507. void
  508. __memp_bhfree(dbmp, bhp, free_mem)
  509. DB_MPOOL *dbmp;
  510. BH *bhp;
  511. int free_mem;
  512. {
  513. DB_HASHTAB *dbht;
  514. MPOOL *c_mp, *mp;
  515. MPOOLFILE *mfp;
  516. int n_bucket, n_cache;
  517. mp = dbmp->reginfo[0].primary;
  518. c_mp = BH_TO_CACHE(dbmp, bhp);
  519. n_cache = NCACHE(mp, bhp->pgno);
  520. n_bucket = NBUCKET(c_mp, bhp->mf_offset, bhp->pgno);
  521. dbht = R_ADDR(&dbmp->reginfo[n_cache], c_mp->htab);
  522. /* Delete the buffer header from the hash bucket queue. */
  523. SH_TAILQ_REMOVE(&dbht[n_bucket], bhp, hq, __bh);
  524. /* Delete the buffer header from the LRU queue. */
  525. SH_TAILQ_REMOVE(&c_mp->bhq, bhp, q, __bh);
  526. /* Clear the mutex this buffer recorded */
  527. __db_shlocks_clear(&bhp->mutex, &dbmp->reginfo[n_cache],
  528.     (REGMAINT *)R_ADDR(&dbmp->reginfo[n_cache], mp->maint_off));
  529. /*
  530.  * Find the underlying MPOOLFILE and decrement its reference count.
  531.  * If this is its last reference, remove it.
  532.  */
  533. mfp = R_ADDR(dbmp->reginfo, bhp->mf_offset);
  534. if (--mfp->block_cnt == 0 && mfp->mpf_cnt == 0)
  535. __memp_mf_discard(dbmp, mfp);
  536. /*
  537.  * If we're not reusing it immediately, free the buffer header
  538.  * and data for real.
  539.  */
  540. if (free_mem) {
  541. --c_mp->stat.st_page_clean;
  542. __db_shalloc_free(dbmp->reginfo[n_cache].addr, bhp);
  543. }
  544. }
  545. /*
  546.  * __memp_upgrade --
  547.  * Upgrade a file descriptor from readonly to readwrite.
  548.  */
  549. static int
  550. __memp_upgrade(dbmp, dbmfp, mfp)
  551. DB_MPOOL *dbmp;
  552. DB_MPOOLFILE *dbmfp;
  553. MPOOLFILE *mfp;
  554. {
  555. DB_FH fh;
  556. int ret;
  557. char *rpath;
  558. /*
  559.  * !!!
  560.  * We expect the handle to already be locked.
  561.  */
  562. /* Check to see if we've already upgraded. */
  563. if (F_ISSET(dbmfp, MP_UPGRADE))
  564. return (0);
  565. /* Check to see if we've already failed. */
  566. if (F_ISSET(dbmfp, MP_UPGRADE_FAIL))
  567. return (1);
  568. /*
  569.  * Calculate the real name for this file and try to open it read/write.
  570.  * We know we have a valid pathname for the file because it's the only
  571.  * way we could have gotten a file descriptor of any kind.
  572.  */
  573. if ((ret = __db_appname(dbmp->dbenv, DB_APP_DATA,
  574.     NULL, R_ADDR(dbmp->reginfo, mfp->path_off), 0, NULL, &rpath)) != 0)
  575. return (ret);
  576. if (__os_open(dbmp->dbenv, rpath, 0, 0, &fh) != 0) {
  577. F_SET(dbmfp, MP_UPGRADE_FAIL);
  578. ret = 1;
  579. } else {
  580. /* Swap the descriptors and set the upgrade flag. */
  581. (void)__os_closehandle(&dbmfp->fh);
  582. dbmfp->fh = fh;
  583. F_SET(dbmfp, MP_UPGRADE);
  584. ret = 0;
  585. }
  586. __os_freestr(rpath);
  587. return (ret);
  588. }