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