wintest: add option to select the dns backend
[Samba/gebeck_regimport.git] / lib / tdb / common / open.c
blob8836f8442ee72c0c61bd971639e7a00396145a1c
1 /*
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
12 ** under the LGPL
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 3 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, see <http://www.gnu.org/licenses/>.
28 #include "tdb_private.h"
30 /* all contexts, to ensure no double-opens (fcntl locks don't nest!) */
31 static struct tdb_context *tdbs = NULL;
33 /* We use two hashes to double-check they're using the right hash function. */
34 void tdb_header_hash(struct tdb_context *tdb,
35 uint32_t *magic1_hash, uint32_t *magic2_hash)
37 TDB_DATA hash_key;
38 uint32_t tdb_magic = TDB_MAGIC;
40 hash_key.dptr = discard_const_p(unsigned char, TDB_MAGIC_FOOD);
41 hash_key.dsize = sizeof(TDB_MAGIC_FOOD);
42 *magic1_hash = tdb->hash_fn(&hash_key);
44 hash_key.dptr = (unsigned char *)CONVERT(tdb_magic);
45 hash_key.dsize = sizeof(tdb_magic);
46 *magic2_hash = tdb->hash_fn(&hash_key);
48 /* Make sure at least one hash is non-zero! */
49 if (*magic1_hash == 0 && *magic2_hash == 0)
50 *magic1_hash = 1;
53 /* initialise a new database with a specified hash size */
54 static int tdb_new_database(struct tdb_context *tdb, int hash_size)
56 struct tdb_header *newdb;
57 size_t size;
58 int ret = -1;
60 /* We make it up in memory, then write it out if not internal */
61 size = sizeof(struct tdb_header) + (hash_size+1)*sizeof(tdb_off_t);
62 if (!(newdb = (struct tdb_header *)calloc(size, 1))) {
63 tdb->ecode = TDB_ERR_OOM;
64 return -1;
67 /* Fill in the header */
68 newdb->version = TDB_VERSION;
69 newdb->hash_size = hash_size;
71 tdb_header_hash(tdb, &newdb->magic1_hash, &newdb->magic2_hash);
73 /* Make sure older tdbs (which don't check the magic hash fields)
74 * will refuse to open this TDB. */
75 if (tdb->flags & TDB_INCOMPATIBLE_HASH)
76 newdb->rwlocks = TDB_HASH_RWLOCK_MAGIC;
78 if (tdb->flags & TDB_INTERNAL) {
79 tdb->map_size = size;
80 tdb->map_ptr = (char *)newdb;
81 memcpy(&tdb->header, newdb, sizeof(tdb->header));
82 /* Convert the `ondisk' version if asked. */
83 CONVERT(*newdb);
84 return 0;
86 if (lseek(tdb->fd, 0, SEEK_SET) == -1)
87 goto fail;
89 if (ftruncate(tdb->fd, 0) == -1)
90 goto fail;
92 /* This creates an endian-converted header, as if read from disk */
93 CONVERT(*newdb);
94 memcpy(&tdb->header, newdb, sizeof(tdb->header));
95 /* Don't endian-convert the magic food! */
96 memcpy(newdb->magic_food, TDB_MAGIC_FOOD, strlen(TDB_MAGIC_FOOD)+1);
97 /* we still have "ret == -1" here */
98 if (tdb_write_all(tdb->fd, newdb, size))
99 ret = 0;
101 fail:
102 SAFE_FREE(newdb);
103 return ret;
108 static int tdb_already_open(dev_t device,
109 ino_t ino)
111 struct tdb_context *i;
113 for (i = tdbs; i; i = i->next) {
114 if (i->device == device && i->inode == ino) {
115 return 1;
119 return 0;
122 /* open the database, creating it if necessary
124 The open_flags and mode are passed straight to the open call on the
125 database file. A flags value of O_WRONLY is invalid. The hash size
126 is advisory, use zero for a default value.
128 Return is NULL on error, in which case errno is also set. Don't
129 try to call tdb_error or tdb_errname, just do strerror(errno).
131 @param name may be NULL for internal databases. */
132 _PUBLIC_ struct tdb_context *tdb_open(const char *name, int hash_size, int tdb_flags,
133 int open_flags, mode_t mode)
135 return tdb_open_ex(name, hash_size, tdb_flags, open_flags, mode, NULL, NULL);
138 /* a default logging function */
139 static void null_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
140 static void null_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...)
144 static bool check_header_hash(struct tdb_context *tdb,
145 bool default_hash, uint32_t *m1, uint32_t *m2)
147 tdb_header_hash(tdb, m1, m2);
148 if (tdb->header.magic1_hash == *m1 &&
149 tdb->header.magic2_hash == *m2) {
150 return true;
153 /* If they explicitly set a hash, always respect it. */
154 if (!default_hash)
155 return false;
157 /* Otherwise, try the other inbuilt hash. */
158 if (tdb->hash_fn == tdb_old_hash)
159 tdb->hash_fn = tdb_jenkins_hash;
160 else
161 tdb->hash_fn = tdb_old_hash;
162 return check_header_hash(tdb, false, m1, m2);
165 _PUBLIC_ struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
166 int open_flags, mode_t mode,
167 const struct tdb_logging_context *log_ctx,
168 tdb_hash_func hash_fn)
170 struct tdb_context *tdb;
171 struct stat st;
172 int rev = 0, locked = 0;
173 unsigned char *vp;
174 uint32_t vertest;
175 unsigned v;
176 const char *hash_alg;
177 uint32_t magic1, magic2;
179 if (!(tdb = (struct tdb_context *)calloc(1, sizeof *tdb))) {
180 /* Can't log this */
181 errno = ENOMEM;
182 goto fail;
184 tdb_io_init(tdb);
185 tdb->fd = -1;
186 #ifdef TDB_TRACE
187 tdb->tracefd = -1;
188 #endif
189 tdb->name = NULL;
190 tdb->map_ptr = NULL;
191 tdb->flags = tdb_flags;
192 tdb->open_flags = open_flags;
193 if (log_ctx) {
194 tdb->log = *log_ctx;
195 } else {
196 tdb->log.log_fn = null_log_fn;
197 tdb->log.log_private = NULL;
200 if (name == NULL && (tdb_flags & TDB_INTERNAL)) {
201 name = "__TDB_INTERNAL__";
204 if (name == NULL) {
205 tdb->name = discard_const_p(char, "__NULL__");
206 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: called with name == NULL\n"));
207 tdb->name = NULL;
208 errno = EINVAL;
209 goto fail;
212 /* now make a copy of the name, as the caller memory might went away */
213 if (!(tdb->name = (char *)strdup(name))) {
215 * set the name as the given string, so that tdb_name() will
216 * work in case of an error.
218 tdb->name = discard_const_p(char, name);
219 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't strdup(%s)\n",
220 name));
221 tdb->name = NULL;
222 errno = ENOMEM;
223 goto fail;
226 if (hash_fn) {
227 tdb->hash_fn = hash_fn;
228 hash_alg = "the user defined";
229 } else {
230 /* This controls what we use when creating a tdb. */
231 if (tdb->flags & TDB_INCOMPATIBLE_HASH) {
232 tdb->hash_fn = tdb_jenkins_hash;
233 } else {
234 tdb->hash_fn = tdb_old_hash;
236 hash_alg = "either default";
239 /* cache the page size */
240 tdb->page_size = getpagesize();
241 if (tdb->page_size <= 0) {
242 tdb->page_size = 0x2000;
245 tdb->max_dead_records = (tdb_flags & TDB_VOLATILE) ? 5 : 0;
247 if ((open_flags & O_ACCMODE) == O_WRONLY) {
248 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't open tdb %s write-only\n",
249 name));
250 errno = EINVAL;
251 goto fail;
254 if (hash_size == 0)
255 hash_size = DEFAULT_HASH_SIZE;
256 if ((open_flags & O_ACCMODE) == O_RDONLY) {
257 tdb->read_only = 1;
258 /* read only databases don't do locking or clear if first */
259 tdb->flags |= TDB_NOLOCK;
260 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
263 if ((tdb->flags & TDB_ALLOW_NESTING) &&
264 (tdb->flags & TDB_DISALLOW_NESTING)) {
265 tdb->ecode = TDB_ERR_NESTING;
266 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
267 "allow_nesting and disallow_nesting are not allowed together!"));
268 errno = EINVAL;
269 goto fail;
272 if (getenv("TDB_NO_FSYNC")) {
273 tdb->flags |= TDB_NOSYNC;
277 * TDB_ALLOW_NESTING is the default behavior.
278 * Note: this may change in future versions!
280 if (!(tdb->flags & TDB_DISALLOW_NESTING)) {
281 tdb->flags |= TDB_ALLOW_NESTING;
284 /* internal databases don't mmap or lock, and start off cleared */
285 if (tdb->flags & TDB_INTERNAL) {
286 tdb->flags |= (TDB_NOLOCK | TDB_NOMMAP);
287 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
288 if (tdb_new_database(tdb, hash_size) != 0) {
289 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: tdb_new_database failed!"));
290 goto fail;
292 goto internal;
295 if ((tdb->fd = open(name, open_flags, mode)) == -1) {
296 TDB_LOG((tdb, TDB_DEBUG_WARNING, "tdb_open_ex: could not open file %s: %s\n",
297 name, strerror(errno)));
298 goto fail; /* errno set by open(2) */
301 /* on exec, don't inherit the fd */
302 v = fcntl(tdb->fd, F_GETFD, 0);
303 fcntl(tdb->fd, F_SETFD, v | FD_CLOEXEC);
305 /* ensure there is only one process initialising at once */
306 if (tdb_nest_lock(tdb, OPEN_LOCK, F_WRLCK, TDB_LOCK_WAIT) == -1) {
307 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to get open lock on %s: %s\n",
308 name, strerror(errno)));
309 goto fail; /* errno set by tdb_brlock */
312 /* we need to zero database if we are the only one with it open */
313 if ((tdb_flags & TDB_CLEAR_IF_FIRST) &&
314 (!tdb->read_only) &&
315 (locked = (tdb_nest_lock(tdb, ACTIVE_LOCK, F_WRLCK, TDB_LOCK_NOWAIT|TDB_LOCK_PROBE) == 0))) {
316 open_flags |= O_CREAT;
317 if (ftruncate(tdb->fd, 0) == -1) {
318 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
319 "failed to truncate %s: %s\n",
320 name, strerror(errno)));
321 goto fail; /* errno set by ftruncate */
325 errno = 0;
326 if (read(tdb->fd, &tdb->header, sizeof(tdb->header)) != sizeof(tdb->header)
327 || strcmp(tdb->header.magic_food, TDB_MAGIC_FOOD) != 0) {
328 if (!(open_flags & O_CREAT) || tdb_new_database(tdb, hash_size) == -1) {
329 if (errno == 0) {
330 errno = EIO; /* ie bad format or something */
332 goto fail;
334 rev = (tdb->flags & TDB_CONVERT);
335 } else if (tdb->header.version != TDB_VERSION
336 && !(rev = (tdb->header.version==TDB_BYTEREV(TDB_VERSION)))) {
337 /* wrong version */
338 errno = EIO;
339 goto fail;
341 vp = (unsigned char *)&tdb->header.version;
342 vertest = (((uint32_t)vp[0]) << 24) | (((uint32_t)vp[1]) << 16) |
343 (((uint32_t)vp[2]) << 8) | (uint32_t)vp[3];
344 tdb->flags |= (vertest==TDB_VERSION) ? TDB_BIGENDIAN : 0;
345 if (!rev)
346 tdb->flags &= ~TDB_CONVERT;
347 else {
348 tdb->flags |= TDB_CONVERT;
349 tdb_convert(&tdb->header, sizeof(tdb->header));
351 if (fstat(tdb->fd, &st) == -1)
352 goto fail;
354 if (tdb->header.rwlocks != 0 &&
355 tdb->header.rwlocks != TDB_HASH_RWLOCK_MAGIC) {
356 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: spinlocks no longer supported\n"));
357 goto fail;
360 if ((tdb->header.magic1_hash == 0) && (tdb->header.magic2_hash == 0)) {
361 /* older TDB without magic hash references */
362 tdb->hash_fn = tdb_old_hash;
363 } else if (!check_header_hash(tdb, !hash_fn, &magic1, &magic2)) {
364 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
365 "%s was not created with %s hash function we are using\n"
366 "magic1_hash[0x%08X %s 0x%08X] "
367 "magic2_hash[0x%08X %s 0x%08X]\n",
368 name, hash_alg,
369 tdb->header.magic1_hash,
370 (tdb->header.magic1_hash == magic1) ? "==" : "!=",
371 magic1,
372 tdb->header.magic2_hash,
373 (tdb->header.magic2_hash == magic2) ? "==" : "!=",
374 magic2));
375 errno = EINVAL;
376 goto fail;
379 /* Is it already in the open list? If so, fail. */
380 if (tdb_already_open(st.st_dev, st.st_ino)) {
381 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
382 "%s (%d,%d) is already open in this process\n",
383 name, (int)st.st_dev, (int)st.st_ino));
384 errno = EBUSY;
385 goto fail;
388 /* Beware truncation! */
389 tdb->map_size = st.st_size;
390 if (tdb->map_size != st.st_size) {
391 /* Ensure ecode is set for log fn. */
392 tdb->ecode = TDB_ERR_IO;
393 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
394 "len %llu too large!\n", (long long)st.st_size));
395 errno = EIO;
396 goto fail;
399 tdb->device = st.st_dev;
400 tdb->inode = st.st_ino;
401 tdb_mmap(tdb);
402 if (locked) {
403 if (tdb_nest_unlock(tdb, ACTIVE_LOCK, F_WRLCK, false) == -1) {
404 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
405 "failed to release ACTIVE_LOCK on %s: %s\n",
406 name, strerror(errno)));
407 goto fail;
412 /* We always need to do this if the CLEAR_IF_FIRST flag is set, even if
413 we didn't get the initial exclusive lock as we need to let all other
414 users know we're using it. */
416 if (tdb_flags & TDB_CLEAR_IF_FIRST) {
417 /* leave this lock in place to indicate it's in use */
418 if (tdb_nest_lock(tdb, ACTIVE_LOCK, F_RDLCK, TDB_LOCK_WAIT) == -1) {
419 goto fail;
423 /* if needed, run recovery */
424 if (tdb_transaction_recover(tdb) == -1) {
425 goto fail;
428 #ifdef TDB_TRACE
430 char tracefile[strlen(name) + 32];
432 snprintf(tracefile, sizeof(tracefile),
433 "%s.trace.%li", name, (long)getpid());
434 tdb->tracefd = open(tracefile, O_WRONLY|O_CREAT|O_EXCL, 0600);
435 if (tdb->tracefd >= 0) {
436 tdb_enable_seqnum(tdb);
437 tdb_trace_open(tdb, "tdb_open", hash_size, tdb_flags,
438 open_flags);
439 } else
440 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to open trace file %s!\n", tracefile));
442 #endif
444 internal:
445 /* Internal (memory-only) databases skip all the code above to
446 * do with disk files, and resume here by releasing their
447 * open lock and hooking into the active list. */
448 if (tdb_nest_unlock(tdb, OPEN_LOCK, F_WRLCK, false) == -1) {
449 goto fail;
451 tdb->next = tdbs;
452 tdbs = tdb;
453 return tdb;
455 fail:
456 { int save_errno = errno;
458 if (!tdb)
459 return NULL;
461 #ifdef TDB_TRACE
462 close(tdb->tracefd);
463 #endif
464 if (tdb->map_ptr) {
465 if (tdb->flags & TDB_INTERNAL)
466 SAFE_FREE(tdb->map_ptr);
467 else
468 tdb_munmap(tdb);
470 if (tdb->fd != -1)
471 if (close(tdb->fd) != 0)
472 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to close tdb->fd on error!\n"));
473 SAFE_FREE(tdb->lockrecs);
474 SAFE_FREE(tdb->name);
475 SAFE_FREE(tdb);
476 errno = save_errno;
477 return NULL;
482 * Set the maximum number of dead records per hash chain
485 _PUBLIC_ void tdb_set_max_dead(struct tdb_context *tdb, int max_dead)
487 tdb->max_dead_records = max_dead;
491 * Close a database.
493 * @returns -1 for error; 0 for success.
495 _PUBLIC_ int tdb_close(struct tdb_context *tdb)
497 struct tdb_context **i;
498 int ret = 0;
500 if (tdb->transaction) {
501 tdb_transaction_cancel(tdb);
503 tdb_trace(tdb, "tdb_close");
505 if (tdb->map_ptr) {
506 if (tdb->flags & TDB_INTERNAL)
507 SAFE_FREE(tdb->map_ptr);
508 else
509 tdb_munmap(tdb);
511 SAFE_FREE(tdb->name);
512 if (tdb->fd != -1) {
513 ret = close(tdb->fd);
514 tdb->fd = -1;
516 SAFE_FREE(tdb->lockrecs);
518 /* Remove from contexts list */
519 for (i = &tdbs; *i; i = &(*i)->next) {
520 if (*i == tdb) {
521 *i = tdb->next;
522 break;
526 #ifdef TDB_TRACE
527 close(tdb->tracefd);
528 #endif
529 memset(tdb, 0, sizeof(*tdb));
530 SAFE_FREE(tdb);
532 return ret;
535 /* register a loging function */
536 _PUBLIC_ void tdb_set_logging_function(struct tdb_context *tdb,
537 const struct tdb_logging_context *log_ctx)
539 tdb->log = *log_ctx;
542 _PUBLIC_ void *tdb_get_logging_private(struct tdb_context *tdb)
544 return tdb->log.log_private;
547 static int tdb_reopen_internal(struct tdb_context *tdb, bool active_lock)
549 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
550 !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
551 struct stat st;
552 #endif
554 if (tdb->flags & TDB_INTERNAL) {
555 return 0; /* Nothing to do. */
558 if (tdb_have_extra_locks(tdb)) {
559 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed with locks held\n"));
560 goto fail;
563 if (tdb->transaction != 0) {
564 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed inside a transaction\n"));
565 goto fail;
568 /* If we have real pread & pwrite, we can skip reopen. */
569 #if !defined(LIBREPLACE_PREAD_NOT_REPLACED) || \
570 !defined(LIBREPLACE_PWRITE_NOT_REPLACED)
571 if (tdb_munmap(tdb) != 0) {
572 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: munmap failed (%s)\n", strerror(errno)));
573 goto fail;
575 if (close(tdb->fd) != 0)
576 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
577 tdb->fd = open(tdb->name, tdb->open_flags & ~(O_CREAT|O_TRUNC), 0);
578 if (tdb->fd == -1) {
579 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: open failed (%s)\n", strerror(errno)));
580 goto fail;
582 if (fstat(tdb->fd, &st) != 0) {
583 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: fstat failed (%s)\n", strerror(errno)));
584 goto fail;
586 if (st.st_ino != tdb->inode || st.st_dev != tdb->device) {
587 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: file dev/inode has changed!\n"));
588 goto fail;
590 if (tdb_mmap(tdb) != 0) {
591 goto fail;
593 #endif /* fake pread or pwrite */
595 /* We may still think we hold the active lock. */
596 tdb->num_lockrecs = 0;
597 SAFE_FREE(tdb->lockrecs);
599 if (active_lock && tdb_nest_lock(tdb, ACTIVE_LOCK, F_RDLCK, TDB_LOCK_WAIT) == -1) {
600 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: failed to obtain active lock\n"));
601 goto fail;
604 return 0;
606 fail:
607 tdb_close(tdb);
608 return -1;
611 /* reopen a tdb - this can be used after a fork to ensure that we have an independent
612 seek pointer from our parent and to re-establish locks */
613 _PUBLIC_ int tdb_reopen(struct tdb_context *tdb)
615 return tdb_reopen_internal(tdb, tdb->flags & TDB_CLEAR_IF_FIRST);
618 /* reopen all tdb's */
619 _PUBLIC_ int tdb_reopen_all(int parent_longlived)
621 struct tdb_context *tdb;
623 for (tdb=tdbs; tdb; tdb = tdb->next) {
624 bool active_lock = (tdb->flags & TDB_CLEAR_IF_FIRST);
627 * If the parent is longlived (ie. a
628 * parent daemon architecture), we know
629 * it will keep it's active lock on a
630 * tdb opened with CLEAR_IF_FIRST. Thus
631 * for child processes we don't have to
632 * add an active lock. This is essential
633 * to improve performance on systems that
634 * keep POSIX locks as a non-scalable data
635 * structure in the kernel.
637 if (parent_longlived) {
638 /* Ensure no clear-if-first. */
639 active_lock = false;
642 if (tdb_reopen_internal(tdb, active_lock) != 0)
643 return -1;
646 return 0;