2 Unix SMB/CIFS implementation.
4 trivial database library
6 Copyright (C) Andrew Tridgell 1999-2005
7 Copyright (C) Paul `Rusty' Russell 2000
8 Copyright (C) Jeremy Allison 2000-2003
10 ** NOTE! The following LGPL license applies to the tdb
11 ** library. This does NOT imply that all of Samba is released
14 This library is free software; you can redistribute it and/or
15 modify it under the terms of the GNU Lesser General Public
16 License as published by the Free Software Foundation; either
17 version 2 of the License, or (at your option) any later version.
19 This library is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 Lesser General Public License for more details.
24 You should have received a copy of the GNU Lesser General Public
25 License along with this library; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include "tdb_private.h"
31 /* a byte range locking function - return 0 on success
32 this functions locks/unlocks 1 byte at the specified offset.
34 On error, errno is also set so that errors are passed back properly
37 note that a len of zero means lock to end of file
39 int tdb_brlock_len(struct tdb_context *tdb, tdb_off_t offset,
40 int rw_type, int lck_type, int probe, size_t len)
45 if (tdb->flags & TDB_NOLOCK)
47 if ((rw_type == F_WRLCK) && (tdb->read_only)) {
53 fl.l_whence = SEEK_SET;
59 ret = fcntl(tdb->fd,lck_type,&fl);
60 } while (ret == -1 && errno == EINTR);
63 /* Generic lock error. errno set by fcntl.
64 * EAGAIN is an expected return from non-blocking
66 if (errno != EAGAIN) {
67 TDB_LOG((tdb, 5, "tdb_brlock failed (fd=%d) at offset %d rw_type=%d lck_type=%d: %s\n",
68 tdb->fd, offset, rw_type, lck_type,
70 } else if (!probe && lck_type != F_SETLK) {
71 /* Ensure error code is set for log fun to examine. */
72 tdb->ecode = TDB_ERR_LOCK;
73 TDB_LOG((tdb, 5,"tdb_brlock failed (fd=%d) at offset %d rw_type=%d lck_type=%d\n",
74 tdb->fd, offset, rw_type, lck_type));
76 return TDB_ERRCODE(TDB_ERR_LOCK, -1);
82 /* a byte range locking function - return 0 on success
83 this functions locks/unlocks 1 byte at the specified offset.
85 On error, errno is also set so that errors are passed back properly
86 through tdb_open(). */
87 int tdb_brlock(struct tdb_context *tdb, tdb_off_t offset,
88 int rw_type, int lck_type, int probe)
90 return tdb_brlock_len(tdb, offset, rw_type, lck_type, probe, 1);
93 /* lock a list in the database. list -1 is the alloc list */
94 int tdb_lock(struct tdb_context *tdb, int list, int ltype)
96 if (list < -1 || list >= (int)tdb->header.hash_size) {
97 TDB_LOG((tdb, 0,"tdb_lock: invalid list %d for ltype=%d\n",
101 if (tdb->flags & TDB_NOLOCK)
104 /* Since fcntl locks don't nest, we do a lock for the first one,
105 and simply bump the count for future ones */
106 if (tdb->locked[list+1].count == 0) {
107 if (tdb->methods->tdb_brlock(tdb,FREELIST_TOP+4*list,ltype,F_SETLKW, 0)) {
108 TDB_LOG((tdb, 0,"tdb_lock failed on list %d ltype=%d (%s)\n",
109 list, ltype, strerror(errno)));
112 tdb->locked[list+1].ltype = ltype;
115 tdb->locked[list+1].count++;
119 /* unlock the database: returns void because it's too late for errors. */
120 /* changed to return int it may be interesting to know there
121 has been an error --simo */
122 int tdb_unlock(struct tdb_context *tdb, int list, int ltype)
126 if (tdb->flags & TDB_NOLOCK)
130 if (list < -1 || list >= (int)tdb->header.hash_size) {
131 TDB_LOG((tdb, 0, "tdb_unlock: list %d invalid (%d)\n", list, tdb->header.hash_size));
135 if (tdb->locked[list+1].count==0) {
136 TDB_LOG((tdb, 0, "tdb_unlock: count is 0\n"));
140 if (tdb->locked[list+1].count == 1) {
141 /* Down to last nested lock: unlock underneath */
142 ret = tdb->methods->tdb_brlock(tdb, FREELIST_TOP+4*list, F_UNLCK, F_SETLKW, 0);
147 tdb->locked[list+1].count--;
150 TDB_LOG((tdb, 0,"tdb_unlock: An error occurred unlocking!\n"));
156 /* lock/unlock entire database */
157 int tdb_lockall(struct tdb_context *tdb)
161 /* There are no locks on read-only dbs */
163 return TDB_ERRCODE(TDB_ERR_LOCK, -1);
164 for (i = 0; i < tdb->header.hash_size; i++)
165 if (tdb_lock(tdb, i, F_WRLCK))
168 /* If error, release locks we have... */
169 if (i < tdb->header.hash_size) {
172 for ( j = 0; j < i; j++)
173 tdb_unlock(tdb, j, F_WRLCK);
174 return TDB_ERRCODE(TDB_ERR_NOLOCK, -1);
179 void tdb_unlockall(struct tdb_context *tdb)
182 for (i=0; i < tdb->header.hash_size; i++)
183 tdb_unlock(tdb, i, F_WRLCK);
186 /* lock/unlock one hash chain. This is meant to be used to reduce
187 contention - it cannot guarantee how many records will be locked */
188 int tdb_chainlock(struct tdb_context *tdb, TDB_DATA key)
190 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
193 int tdb_chainunlock(struct tdb_context *tdb, TDB_DATA key)
195 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
198 int tdb_chainlock_read(struct tdb_context *tdb, TDB_DATA key)
200 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
203 int tdb_chainunlock_read(struct tdb_context *tdb, TDB_DATA key)
205 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
210 /* record lock stops delete underneath */
211 int tdb_lock_record(struct tdb_context *tdb, tdb_off_t off)
213 return off ? tdb->methods->tdb_brlock(tdb, off, F_RDLCK, F_SETLKW, 0) : 0;
217 Write locks override our own fcntl readlocks, so check it here.
218 Note this is meant to be F_SETLK, *not* F_SETLKW, as it's not
219 an error to fail to get the lock here.
221 int tdb_write_lock_record(struct tdb_context *tdb, tdb_off_t off)
223 struct tdb_traverse_lock *i;
224 for (i = &tdb->travlocks; i; i = i->next)
227 return tdb->methods->tdb_brlock(tdb, off, F_WRLCK, F_SETLK, 1);
231 Note this is meant to be F_SETLK, *not* F_SETLKW, as it's not
232 an error to fail to get the lock here.
234 int tdb_write_unlock_record(struct tdb_context *tdb, tdb_off_t off)
236 return tdb->methods->tdb_brlock(tdb, off, F_UNLCK, F_SETLK, 0);
239 /* fcntl locks don't stack: avoid unlocking someone else's */
240 int tdb_unlock_record(struct tdb_context *tdb, tdb_off_t off)
242 struct tdb_traverse_lock *i;
247 for (i = &tdb->travlocks; i; i = i->next)
250 return (count == 1 ? tdb->methods->tdb_brlock(tdb, off, F_UNLCK, F_SETLKW, 0) : 0);