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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: lock_region.c,v 11.69 2002/08/06 05:05:22 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_shash.h"
  17. #include "dbinc/lock.h"
  18. static int  __lock_init __P((DB_ENV *, DB_LOCKTAB *));
  19. static size_t
  20.     __lock_region_size __P((DB_ENV *));
  21. #ifdef HAVE_MUTEX_SYSTEM_RESOURCES
  22. static size_t __lock_region_maint __P((DB_ENV *));
  23. #endif
  24. /*
  25.  * The conflict arrays are set up such that the row is the lock you are
  26.  * holding and the column is the lock that is desired.
  27.  */
  28. #define DB_LOCK_RIW_N 9
  29. static const u_int8_t db_riw_conflicts[] = {
  30. /*         N   R   W   WT  IW  IR  RIW DR  WW */
  31. /*   N */  0,  0,  0,  0,  0,  0,  0,  0,  0,
  32. /*   R */  0,  0,  1,  0,  1,  0,  1,  0,  1,
  33. /*   W */  0,  1,  1,  1,  1,  1,  1,  1,  1,
  34. /*  WT */  0,  0,  0,  0,  0,  0,  0,  0,  0,
  35. /*  IW */  0,  1,  1,  0,  0,  0,  0,  1,  1,
  36. /*  IR */  0,  0,  1,  0,  0,  0,  0,  0,  1,
  37. /* RIW */  0,  1,  1,  0,  0,  0,  0,  1,  1,
  38. /*  DR */  0,  0,  1,  0,  1,  0,  1,  0,  0,
  39. /*  WW */  0,  1,  1,  0,  1,  1,  1,  0,  1
  40. };
  41. /*
  42.  * This conflict array is used for concurrent db access (CDB).  It uses
  43.  * the same locks as the db_riw_conflicts array, but adds an IW mode to
  44.  * be used for write cursors.
  45.  */
  46. #define DB_LOCK_CDB_N 5
  47. static const u_int8_t db_cdb_conflicts[] = {
  48. /* N R W WT IW */
  49. /*   N */ 0, 0, 0, 0, 0,
  50. /*   R */ 0, 0, 1, 0, 0,
  51. /*   W */ 0, 1, 1, 1, 1,
  52. /*  WT */ 0, 0, 0, 0, 0,
  53. /*  IW */ 0, 0, 1, 0, 1
  54. };
  55. /*
  56.  * __lock_open --
  57.  * Internal version of lock_open: only called from DB_ENV->open.
  58.  *
  59.  * PUBLIC: int __lock_open __P((DB_ENV *));
  60.  */
  61. int
  62. __lock_open(dbenv)
  63. DB_ENV *dbenv;
  64. {
  65. DB_LOCKREGION *region;
  66. DB_LOCKTAB *lt;
  67. size_t size;
  68. int ret;
  69. /* Create the lock table structure. */
  70. if ((ret = __os_calloc(dbenv, 1, sizeof(DB_LOCKTAB), &lt)) != 0)
  71. return (ret);
  72. lt->dbenv = dbenv;
  73. /* Join/create the lock region. */
  74. lt->reginfo.type = REGION_TYPE_LOCK;
  75. lt->reginfo.id = INVALID_REGION_ID;
  76. lt->reginfo.mode = dbenv->db_mode;
  77. lt->reginfo.flags = REGION_JOIN_OK;
  78. if (F_ISSET(dbenv, DB_ENV_CREATE))
  79. F_SET(&lt->reginfo, REGION_CREATE_OK);
  80. size = __lock_region_size(dbenv);
  81. if ((ret = __db_r_attach(dbenv, &lt->reginfo, size)) != 0)
  82. goto err;
  83. /* If we created the region, initialize it. */
  84. if (F_ISSET(&lt->reginfo, REGION_CREATE))
  85. if ((ret = __lock_init(dbenv, lt)) != 0)
  86. goto err;
  87. /* Set the local addresses. */
  88. region = lt->reginfo.primary =
  89.     R_ADDR(&lt->reginfo, lt->reginfo.rp->primary);
  90. /* Check for incompatible automatic deadlock detection requests. */
  91. if (dbenv->lk_detect != DB_LOCK_NORUN) {
  92. if (region->detect != DB_LOCK_NORUN &&
  93.     dbenv->lk_detect != DB_LOCK_DEFAULT &&
  94.     region->detect != dbenv->lk_detect) {
  95. __db_err(dbenv,
  96.     "lock_open: incompatible deadlock detector mode");
  97. ret = EINVAL;
  98. goto err;
  99. }
  100. /*
  101.  * Upgrade if our caller wants automatic detection, and it
  102.  * was not currently being done, whether or not we created
  103.  * the region.
  104.  */
  105. if (region->detect == DB_LOCK_NORUN)
  106. region->detect = dbenv->lk_detect;
  107. }
  108. /*
  109.  * A process joining the region may have reset the lock and transaction
  110.  * timeouts.
  111.  */
  112.  if (dbenv->lk_timeout != 0)
  113. region->lk_timeout = dbenv->lk_timeout;
  114.  if (dbenv->tx_timeout != 0)
  115. region->tx_timeout = dbenv->tx_timeout;
  116. /* Set remaining pointers into region. */
  117. lt->conflicts = (u_int8_t *)R_ADDR(&lt->reginfo, region->conf_off);
  118. lt->obj_tab = (DB_HASHTAB *)R_ADDR(&lt->reginfo, region->obj_off);
  119. lt->locker_tab = (DB_HASHTAB *)R_ADDR(&lt->reginfo, region->locker_off);
  120. R_UNLOCK(dbenv, &lt->reginfo);
  121. dbenv->lk_handle = lt;
  122. return (0);
  123. err: if (lt->reginfo.addr != NULL) {
  124. if (F_ISSET(&lt->reginfo, REGION_CREATE))
  125. ret = __db_panic(dbenv, ret);
  126. R_UNLOCK(dbenv, &lt->reginfo);
  127. (void)__db_r_detach(dbenv, &lt->reginfo, 0);
  128. }
  129. __os_free(dbenv, lt);
  130. return (ret);
  131. }
  132. /*
  133.  * __lock_init --
  134.  * Initialize the lock region.
  135.  */
  136. static int
  137. __lock_init(dbenv, lt)
  138. DB_ENV *dbenv;
  139. DB_LOCKTAB *lt;
  140. {
  141. const u_int8_t *lk_conflicts;
  142. struct __db_lock *lp;
  143. DB_LOCKER *lidp;
  144. DB_LOCKOBJ *op;
  145. DB_LOCKREGION *region;
  146. #ifdef HAVE_MUTEX_SYSTEM_RESOURCES
  147. size_t maint_size;
  148. #endif
  149. u_int32_t i, lk_modes;
  150. u_int8_t *addr;
  151. int ret;
  152. if ((ret = __db_shalloc(lt->reginfo.addr,
  153.     sizeof(DB_LOCKREGION), 0, &lt->reginfo.primary)) != 0)
  154. goto mem_err;
  155. lt->reginfo.rp->primary = R_OFFSET(&lt->reginfo, lt->reginfo.primary);
  156. region = lt->reginfo.primary;
  157. memset(region, 0, sizeof(*region));
  158. /* Select a conflict matrix if none specified. */
  159. if (dbenv->lk_modes == 0)
  160. if (CDB_LOCKING(dbenv)) {
  161. lk_modes = DB_LOCK_CDB_N;
  162. lk_conflicts = db_cdb_conflicts;
  163. } else {
  164. lk_modes = DB_LOCK_RIW_N;
  165. lk_conflicts = db_riw_conflicts;
  166. }
  167. else {
  168. lk_modes = dbenv->lk_modes;
  169. lk_conflicts = dbenv->lk_conflicts;
  170. }
  171. region->need_dd = 0;
  172. region->detect = DB_LOCK_NORUN;
  173. region->lk_timeout = dbenv->lk_timeout;
  174. region->tx_timeout = dbenv->tx_timeout;
  175. region->locker_t_size = __db_tablesize(dbenv->lk_max_lockers);
  176. region->object_t_size = __db_tablesize(dbenv->lk_max_objects);
  177. memset(&region->stat, 0, sizeof(region->stat));
  178. region->stat.st_id = 0;
  179. region->stat.st_cur_maxid = DB_LOCK_MAXID;
  180. region->stat.st_maxlocks = dbenv->lk_max;
  181. region->stat.st_maxlockers = dbenv->lk_max_lockers;
  182. region->stat.st_maxobjects = dbenv->lk_max_objects;
  183. region->stat.st_nmodes = lk_modes;
  184. /* Allocate room for the conflict matrix and initialize it. */
  185. if ((ret =
  186.     __db_shalloc(lt->reginfo.addr, lk_modes * lk_modes, 0, &addr)) != 0)
  187. goto mem_err;
  188. memcpy(addr, lk_conflicts, lk_modes * lk_modes);
  189. region->conf_off = R_OFFSET(&lt->reginfo, addr);
  190. /* Allocate room for the object hash table and initialize it. */
  191. if ((ret = __db_shalloc(lt->reginfo.addr,
  192.     region->object_t_size * sizeof(DB_HASHTAB), 0, &addr)) != 0)
  193. goto mem_err;
  194. __db_hashinit(addr, region->object_t_size);
  195. region->obj_off = R_OFFSET(&lt->reginfo, addr);
  196. /* Allocate room for the locker hash table and initialize it. */
  197. if ((ret = __db_shalloc(lt->reginfo.addr,
  198.     region->locker_t_size * sizeof(DB_HASHTAB), 0, &addr)) != 0)
  199. goto mem_err;
  200. __db_hashinit(addr, region->locker_t_size);
  201. region->locker_off = R_OFFSET(&lt->reginfo, addr);
  202. #ifdef HAVE_MUTEX_SYSTEM_RESOURCES
  203. maint_size = __lock_region_maint(dbenv);
  204. /* Allocate room for the locker maintenance info and initialize it. */
  205. if ((ret = __db_shalloc(lt->reginfo.addr,
  206.     sizeof(REGMAINT) + maint_size, 0, &addr)) != 0)
  207. goto mem_err;
  208. __db_maintinit(&lt->reginfo, addr, maint_size);
  209. region->maint_off = R_OFFSET(&lt->reginfo, addr);
  210. #endif
  211. /*
  212.  * Initialize locks onto a free list. Initialize and lock the mutex
  213.  * so that when we need to block, all we need do is try to acquire
  214.  * the mutex.
  215.  */
  216. SH_TAILQ_INIT(&region->free_locks);
  217. for (i = 0; i < region->stat.st_maxlocks; ++i) {
  218. if ((ret = __db_shalloc(lt->reginfo.addr,
  219.     sizeof(struct __db_lock), MUTEX_ALIGN, &lp)) != 0)
  220. goto mem_err;
  221. lp->status = DB_LSTAT_FREE;
  222. lp->gen = 0;
  223. if ((ret = __db_mutex_setup(dbenv, &lt->reginfo, &lp->mutex,
  224.     MUTEX_NO_RLOCK | MUTEX_SELF_BLOCK)) != 0)
  225. return (ret);
  226. MUTEX_LOCK(dbenv, &lp->mutex);
  227. SH_TAILQ_INSERT_HEAD(&region->free_locks, lp, links, __db_lock);
  228. }
  229. /* Initialize objects onto a free list.  */
  230. SH_TAILQ_INIT(&region->dd_objs);
  231. SH_TAILQ_INIT(&region->free_objs);
  232. for (i = 0; i < region->stat.st_maxobjects; ++i) {
  233. if ((ret = __db_shalloc(lt->reginfo.addr,
  234.     sizeof(DB_LOCKOBJ), 0, &op)) != 0)
  235. goto mem_err;
  236. SH_TAILQ_INSERT_HEAD(
  237.     &region->free_objs, op, links, __db_lockobj);
  238. }
  239. /* Initialize lockers onto a free list.  */
  240. SH_TAILQ_INIT(&region->lockers);
  241. SH_TAILQ_INIT(&region->free_lockers);
  242. for (i = 0; i < region->stat.st_maxlockers; ++i) {
  243. if ((ret = __db_shalloc(lt->reginfo.addr,
  244.     sizeof(DB_LOCKER), 0, &lidp)) != 0) {
  245. mem_err: __db_err(dbenv,
  246.     "Unable to allocate memory for the lock table");
  247. return (ret);
  248. }
  249. SH_TAILQ_INSERT_HEAD(
  250.     &region->free_lockers, lidp, links, __db_locker);
  251. }
  252. return (0);
  253. }
  254. /*
  255.  * __lock_dbenv_refresh --
  256.  * Clean up after the lock system on a close or failed open.  Called
  257.  * only from __dbenv_refresh.  (Formerly called __lock_close.)
  258.  *
  259.  * PUBLIC: int __lock_dbenv_refresh __P((DB_ENV *));
  260.  */
  261. int
  262. __lock_dbenv_refresh(dbenv)
  263. DB_ENV *dbenv;
  264. {
  265. DB_LOCKTAB *lt;
  266. int ret;
  267. lt = dbenv->lk_handle;
  268. /* Detach from the region. */
  269. ret = __db_r_detach(dbenv, &lt->reginfo, 0);
  270. __os_free(dbenv, lt);
  271. dbenv->lk_handle = NULL;
  272. return (ret);
  273. }
  274. /*
  275.  * __lock_region_size --
  276.  * Return the region size.
  277.  */
  278. static size_t
  279. __lock_region_size(dbenv)
  280. DB_ENV *dbenv;
  281. {
  282. size_t retval;
  283. /*
  284.  * Figure out how much space we're going to need.  This list should
  285.  * map one-to-one with the __db_shalloc calls in __lock_init.
  286.  */
  287. retval = 0;
  288. retval += __db_shalloc_size(sizeof(DB_LOCKREGION), 1);
  289. retval += __db_shalloc_size(dbenv->lk_modes * dbenv->lk_modes, 1);
  290. retval += __db_shalloc_size(
  291.     __db_tablesize(dbenv->lk_max_lockers) * (sizeof(DB_HASHTAB)), 1);
  292. retval += __db_shalloc_size(
  293.     __db_tablesize(dbenv->lk_max_objects) * (sizeof(DB_HASHTAB)), 1);
  294. #ifdef HAVE_MUTEX_SYSTEM_RESOURCES
  295. retval +=
  296.     __db_shalloc_size(sizeof(REGMAINT) + __lock_region_maint(dbenv), 1);
  297. #endif
  298. retval += __db_shalloc_size(
  299.     sizeof(struct __db_lock), MUTEX_ALIGN) * dbenv->lk_max;
  300. retval += __db_shalloc_size(
  301.     sizeof(DB_LOCKOBJ), 1) * dbenv->lk_max_objects;
  302. retval += __db_shalloc_size(
  303.     sizeof(DB_LOCKER), 1) * dbenv->lk_max_lockers;
  304. /*
  305.  * Include 16 bytes of string space per lock.  DB doesn't use it
  306.  * because we pre-allocate lock space for DBTs in the structure.
  307.  */
  308. retval += __db_shalloc_size(dbenv->lk_max * 16, sizeof(size_t));
  309. /* And we keep getting this wrong, let's be generous. */
  310. retval += retval / 4;
  311. return (retval);
  312. }
  313. #ifdef HAVE_MUTEX_SYSTEM_RESOURCES
  314. /*
  315.  * __lock_region_maint --
  316.  * Return the amount of space needed for region maintenance info.
  317.  */
  318. static size_t
  319. __lock_region_maint(dbenv)
  320. DB_ENV *dbenv;
  321. {
  322. size_t s;
  323. s = sizeof(DB_MUTEX *) * dbenv->lk_max;
  324. return (s);
  325. }
  326. #endif
  327. /*
  328.  * __lock_region_destroy
  329.  * Destroy any region maintenance info.
  330.  *
  331.  * PUBLIC: void __lock_region_destroy __P((DB_ENV *, REGINFO *));
  332.  */
  333. void
  334. __lock_region_destroy(dbenv, infop)
  335. DB_ENV *dbenv;
  336. REGINFO *infop;
  337. {
  338. __db_shlocks_destroy(infop, (REGMAINT *)R_ADDR(infop,
  339.     ((DB_LOCKREGION *)R_ADDR(infop, infop->rp->primary))->maint_off));
  340. COMPQUIET(dbenv, NULL);
  341. COMPQUIET(infop, NULL);
  342. }
  343. #ifdef CONFIG_TEST
  344. /*
  345.  * __lock_id_set --
  346.  * Set the current locker ID and current maximum unused ID (for
  347.  * testing purposes only).
  348.  *
  349.  * PUBLIC: int __lock_id_set __P((DB_ENV *, u_int32_t, u_int32_t));
  350.  */
  351. int
  352. __lock_id_set(dbenv, cur_id, max_id)
  353. DB_ENV *dbenv;
  354. u_int32_t cur_id, max_id;
  355. {
  356. DB_LOCKTAB *lt;
  357. DB_LOCKREGION *region;
  358. ENV_REQUIRES_CONFIG(dbenv,
  359.     dbenv->lk_handle, "lock_id_set", DB_INIT_LOCK);
  360. lt = dbenv->lk_handle;
  361. region = lt->reginfo.primary;
  362. region->stat.st_id = cur_id;
  363. region->stat.st_cur_maxid = max_id;
  364. return (0);
  365. }
  366. #endif