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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1999-2002
* Sleepycat Software. All rights reserved.
*/
#include "db_config.h"
#ifndef lint
static const char revid[] = "$Id: mutex.c,v 11.37 2002/05/31 19:37:46 bostic Exp $";
#endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
#include <string.h>
#endif
#include "db_int.h"
#if defined(MUTEX_NO_MALLOC_LOCKS) || defined(HAVE_MUTEX_SYSTEM_RESOURCES)
#include "dbinc/db_shash.h"
#include "dbinc/lock.h"
#include "dbinc/log.h"
#include "dbinc/mp.h"
#include "dbinc/txn.h"
#endif
static int __db_mutex_alloc_int __P((DB_ENV *, REGINFO *, DB_MUTEX **));
#ifdef HAVE_MUTEX_SYSTEM_RESOURCES
static REGMAINT * __db_mutex_maint __P((DB_ENV *, REGINFO *));
#endif
/*
* __db_mutex_setup --
* External interface to allocate, and/or initialize, record
* mutexes.
*
* PUBLIC: int __db_mutex_setup __P((DB_ENV *, REGINFO *, void *, u_int32_t));
*/
int
__db_mutex_setup(dbenv, infop, ptr, flags)
DB_ENV *dbenv;
REGINFO *infop;
void *ptr;
u_int32_t flags;
{
DB_MUTEX *mutex;
REGMAINT *maint;
u_int32_t iflags, offset;
int ret;
ret = 0;
/*
* If they indicated the region is not locked, then lock it.
* This is only needed when we have unusual mutex resources.
* (I.e. MUTEX_NO_MALLOC_LOCKS or HAVE_MUTEX_SYSTEM_RESOURCES)
*/
#if defined(MUTEX_NO_MALLOC_LOCKS) || defined(HAVE_MUTEX_SYSTEM_RESOURCES)
if (!LF_ISSET(MUTEX_NO_RLOCK))
R_LOCK(dbenv, infop);
#endif
/*
* Allocate the mutex if they asked us to.
*/
mutex = NULL;
if (LF_ISSET(MUTEX_ALLOC)) {
if ((ret = __db_mutex_alloc_int(dbenv, infop, ptr)) != 0)
goto err;
mutex = *(DB_MUTEX **)ptr;
} else
mutex = (DB_MUTEX *)ptr;
/*
* Set up to initialize the mutex.
*/
iflags = LF_ISSET(MUTEX_THREAD | MUTEX_SELF_BLOCK);
switch (infop->type) {
case REGION_TYPE_LOCK:
offset = P_TO_UINT32(mutex) + DB_FCNTL_OFF_LOCK;
break;
case REGION_TYPE_MPOOL:
offset = P_TO_UINT32(mutex) + DB_FCNTL_OFF_MPOOL;
break;
default:
offset = P_TO_UINT32(mutex) + DB_FCNTL_OFF_GEN;
break;
}
maint = NULL;
#ifdef HAVE_MUTEX_SYSTEM_RESOURCES
if (!LF_ISSET(MUTEX_NO_RECORD))
maint = (REGMAINT *)__db_mutex_maint(dbenv, infop);
#endif
ret = __db_mutex_init(dbenv, mutex, offset, iflags, infop, maint);
err:
#if defined(MUTEX_NO_MALLOC_LOCKS) || defined(HAVE_MUTEX_SYSTEM_RESOURCES)
if (!LF_ISSET(MUTEX_NO_RLOCK))
R_UNLOCK(dbenv, infop);
#endif
/*
* If we allocated the mutex but had an error on init'ing,
* then we must free it before returning.
* !!!
* Free must be done after releasing region lock.
*/
if (ret != 0 && LF_ISSET(MUTEX_ALLOC) && mutex != NULL) {
__db_mutex_free(dbenv, infop, mutex);
*(DB_MUTEX **)ptr = NULL;
}
return (ret);
}
/*
* __db_mutex_alloc_int --
* Allocate and initialize a mutex.
*/
static int
__db_mutex_alloc_int(dbenv, infop, storep)
DB_ENV *dbenv;
REGINFO *infop;
DB_MUTEX **storep;
{
int ret;
/*
* If the architecture supports mutexes in heap memory, use heap memory.
* If it doesn't, we have to allocate space in a region. If allocation
* in the region fails, fallback to allocating from the mpool region,
* because it's big, it almost always exists and if it's entirely dirty,
* we can free buffers until memory is available.
*/
#if defined(MUTEX_NO_MALLOC_LOCKS) || defined(HAVE_MUTEX_SYSTEM_RESOURCES)
ret = __db_shalloc(infop->addr, sizeof(DB_MUTEX), MUTEX_ALIGN, storep);
if (ret == ENOMEM && MPOOL_ON(dbenv)) {
DB_MPOOL *dbmp;
dbmp = dbenv->mp_handle;
if ((ret = __memp_alloc(dbmp,
dbmp->reginfo, NULL, sizeof(DB_MUTEX), NULL, storep)) == 0)
(*storep)->flags = MUTEX_MPOOL;
} else
(*storep)->flags = 0;
#else
COMPQUIET(dbenv, NULL);
COMPQUIET(infop, NULL);
ret = __os_calloc(dbenv, 1, sizeof(DB_MUTEX), storep);
#endif
if (ret != 0)
__db_err(dbenv, "Unable to allocate memory for mutex");
return (ret);
}
/*
* __db_mutex_free --
* Free a mutex.
*
* PUBLIC: void __db_mutex_free __P((DB_ENV *, REGINFO *, DB_MUTEX *));
*/
void
__db_mutex_free(dbenv, infop, mutexp)
DB_ENV *dbenv;
REGINFO *infop;
DB_MUTEX *mutexp;
{
#if defined(MUTEX_NO_MALLOC_LOCKS) || defined(HAVE_MUTEX_SYSTEM_RESOURCES)
R_LOCK(dbenv, infop);
#if defined(HAVE_MUTEX_SYSTEM_RESOURCES)
if (F_ISSET(mutexp, MUTEX_INITED))
__db_shlocks_clear(mutexp, infop, NULL);
#endif
if (F_ISSET(mutexp, MUTEX_MPOOL)) {
DB_MPOOL *dbmp;
dbmp = dbenv->mp_handle;
R_LOCK(dbenv, dbmp->reginfo);
__db_shalloc_free(dbmp->reginfo[0].addr, mutexp);
R_UNLOCK(dbenv, dbmp->reginfo);
} else
__db_shalloc_free(infop->addr, mutexp);
R_UNLOCK(dbenv, infop);
#else
COMPQUIET(dbenv, NULL);
COMPQUIET(infop, NULL);
__os_free(dbenv, mutexp);
#endif
}
#ifdef HAVE_MUTEX_SYSTEM_RESOURCES
/*
* __db_shreg_locks_record --
* Record an entry in the shared locks area.
* Region lock must be held in caller.
*/
static int
__db_shreg_locks_record(dbenv, mutexp, infop, rp)
DB_ENV *dbenv;
DB_MUTEX *mutexp;
REGINFO *infop;
REGMAINT *rp;
{
u_int i;
if (!F_ISSET(mutexp, MUTEX_INITED))
return (0);
DB_ASSERT(mutexp->reg_off == INVALID_ROFF);
rp->stat.st_records++;
i = (roff_t *)R_ADDR(infop, rp->regmutex_hint) - &rp->regmutexes[0];
if (rp->regmutexes[i] != INVALID_ROFF) {
/*
* Our hint failed, search for an open slot.
*/
rp->stat.st_hint_miss++;
for (i = 0; i < rp->reglocks; i++)
if (rp->regmutexes[i] == INVALID_ROFF)
break;
if (i == rp->reglocks) {
rp->stat.st_max_locks++;
__db_err(dbenv,
"Region mutexes: Exceeded maximum lock slots %lu",
(u_long)rp->reglocks);
return (ENOMEM);
}
} else
rp->stat.st_hint_hit++;
/*
* When we get here, i is an empty slot. Record this
* mutex, set hint to point to the next slot and we are done.
*/
rp->regmutexes[i] = R_OFFSET(infop, mutexp);
mutexp->reg_off = R_OFFSET(infop, &rp->regmutexes[i]);
rp->regmutex_hint = (i < rp->reglocks - 1) ?
R_OFFSET(infop, &rp->regmutexes[i+1]) :
R_OFFSET(infop, &rp->regmutexes[0]);
return (0);
}
/*
* __db_shreg_locks_clear --
* Erase an entry in the shared locks area.
*
* PUBLIC: void __db_shreg_locks_clear __P((DB_MUTEX *, REGINFO *, REGMAINT *));
*/
void
__db_shreg_locks_clear(mutexp, infop, rp)
DB_MUTEX *mutexp;
REGINFO *infop;
REGMAINT *rp;
{
/*
* !!!
* Assumes the caller's region lock is held.
*/
if (!F_ISSET(mutexp, MUTEX_INITED))
return;
/*
* This function is generally only called on a forcible remove of an
* environment. We recorded our index in the mutex, find and clear it.
*/
DB_ASSERT(mutexp->reg_off != INVALID_ROFF);
DB_ASSERT(*(roff_t *)R_ADDR(infop, mutexp->reg_off) == \
R_OFFSET(infop, mutexp));
*(roff_t *)R_ADDR(infop, mutexp->reg_off) = 0;
if (rp != NULL) {
rp->regmutex_hint = mutexp->reg_off;
rp->stat.st_clears++;
}
mutexp->reg_off = INVALID_ROFF;
__db_mutex_destroy(mutexp);
}
/*
* __db_shreg_locks_destroy --
* Destroy all mutexes in a region's range.
*
* PUBLIC: void __db_shreg_locks_destroy __P((REGINFO *, REGMAINT *));
*/
void
__db_shreg_locks_destroy(infop, rp)
REGINFO *infop;
REGMAINT *rp;
{
u_int32_t i;
/*
* Go through the list of all mutexes and destroy them.
*/
for (i = 0; i < rp->reglocks; i++)
if (rp->regmutexes[i] != 0) {
rp->stat.st_destroys++;
__db_mutex_destroy((DB_MUTEX *)R_ADDR(infop,
rp->regmutexes[i]));
}
}
/*
* __db_shreg_mutex_init --
* Initialize a shared memory mutex.
*
* PUBLIC: int __db_shreg_mutex_init __P((DB_ENV *, DB_MUTEX *, u_int32_t,
* PUBLIC: u_int32_t, REGINFO *, REGMAINT *));
*/
int
__db_shreg_mutex_init(dbenv, mutexp, offset, flags, infop, rp)
DB_ENV *dbenv;
DB_MUTEX *mutexp;
u_int32_t offset;
u_int32_t flags;
REGINFO *infop;
REGMAINT *rp;
{
int ret;
if ((ret = __db_mutex_init_int(dbenv, mutexp, offset, flags)) != 0)
return (ret);
/*
* Some mutexes cannot be recorded, but we want one interface.
* So, if we have no REGMAINT, then just return.
*/
if (rp == NULL)
return (ret);
/*
* !!!
* Since __db_mutex_init_int is a macro, we may not be
* using the 'offset' as it is only used for one type
* of mutex. We COMPQUIET it here, after the call above.
*/
COMPQUIET(offset, 0);
ret = __db_shreg_locks_record(dbenv, mutexp, infop, rp);
/*
* If we couldn't record it and we are returning an error,
* we need to destroy the mutex we just created.
*/
if (ret)
__db_mutex_destroy(mutexp);
return (ret);
}
/*
* __db_shreg_maintinit --
* Initialize a region's maintenance information.
*
* PUBLIC: void __db_shreg_maintinit __P((REGINFO *, void *addr, size_t));
*/
void
__db_shreg_maintinit(infop, addr, size)
REGINFO *infop;
void *addr;
size_t size;
{
REGMAINT *rp;
u_int32_t i;
rp = (REGMAINT *)addr;
memset(addr, 0, sizeof(REGMAINT));
rp->reglocks = size / sizeof(roff_t);
rp->regmutex_hint = R_OFFSET(infop, &rp->regmutexes[0]);
for (i = 0; i < rp->reglocks; i++)
rp->regmutexes[i] = INVALID_ROFF;
}
static REGMAINT *
__db_mutex_maint(dbenv, infop)
DB_ENV *dbenv;
REGINFO *infop;
{
roff_t moff;
switch (infop->type) {
case REGION_TYPE_LOCK:
moff = ((DB_LOCKREGION *)R_ADDR(infop,
infop->rp->primary))->maint_off;
break;
case REGION_TYPE_LOG:
moff = ((LOG *)R_ADDR(infop, infop->rp->primary))->maint_off;
break;
case REGION_TYPE_MPOOL:
moff = ((MPOOL *)R_ADDR(infop, infop->rp->primary))->maint_off;
break;
case REGION_TYPE_TXN:
moff = ((DB_TXNREGION *)R_ADDR(infop,
infop->rp->primary))->maint_off;
break;
default:
__db_err(dbenv,
"Attempting to record mutex in a region not set up to do so");
return (NULL);
}
return ((REGMAINT *)R_ADDR(infop, moff));
}
#endif /* HAVE_MUTEX_SYSTEM_RESOURCES */
|