s3: Fix an uninitialized variable reference
[Samba.git] / source / lib / util_tdb.c
blobe8f6c67d08ce396f791e60b12acadb8ea594d1b5
1 /*
2 Unix SMB/CIFS implementation.
3 tdb utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Rafal Szczesniak 2002
6 Copyright (C) Michael Adam 2007
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #undef malloc
24 #undef realloc
25 #undef calloc
26 #undef strdup
28 /* these are little tdb utility functions that are meant to make
29 dealing with a tdb database a little less cumbersome in Samba */
31 static SIG_ATOMIC_T gotalarm;
33 /***************************************************************
34 Signal function to tell us we timed out.
35 ****************************************************************/
37 static void gotalarm_sig(void)
39 gotalarm = 1;
42 /***************************************************************
43 Make a TDB_DATA and keep the const warning in one place
44 ****************************************************************/
46 TDB_DATA make_tdb_data(const uint8 *dptr, size_t dsize)
48 TDB_DATA ret;
49 ret.dptr = CONST_DISCARD(uint8 *, dptr);
50 ret.dsize = dsize;
51 return ret;
54 TDB_DATA string_tdb_data(const char *string)
56 return make_tdb_data((const uint8 *)string, string ? strlen(string) : 0 );
59 TDB_DATA string_term_tdb_data(const char *string)
61 return make_tdb_data((const uint8 *)string, string ? strlen(string) + 1 : 0);
64 /****************************************************************************
65 Lock a chain with timeout (in seconds).
66 ****************************************************************************/
68 static int tdb_chainlock_with_timeout_internal( TDB_CONTEXT *tdb, TDB_DATA key, unsigned int timeout, int rw_type)
70 /* Allow tdb_chainlock to be interrupted by an alarm. */
71 int ret;
72 gotalarm = 0;
74 if (timeout) {
75 CatchSignal(SIGALRM, SIGNAL_CAST gotalarm_sig);
76 tdb_setalarm_sigptr(tdb, &gotalarm);
77 alarm(timeout);
80 if (rw_type == F_RDLCK)
81 ret = tdb_chainlock_read(tdb, key);
82 else
83 ret = tdb_chainlock(tdb, key);
85 if (timeout) {
86 alarm(0);
87 tdb_setalarm_sigptr(tdb, NULL);
88 CatchSignal(SIGALRM, SIGNAL_CAST SIG_IGN);
89 if (gotalarm && (ret == -1)) {
90 DEBUG(0,("tdb_chainlock_with_timeout_internal: alarm (%u) timed out for key %s in tdb %s\n",
91 timeout, key.dptr, tdb_name(tdb)));
92 /* TODO: If we time out waiting for a lock, it might
93 * be nice to use F_GETLK to get the pid of the
94 * process currently holding the lock and print that
95 * as part of the debugging message. -- mbp */
96 return -1;
100 return ret;
103 /****************************************************************************
104 Write lock a chain. Return -1 if timeout or lock failed.
105 ****************************************************************************/
107 int tdb_chainlock_with_timeout( TDB_CONTEXT *tdb, TDB_DATA key, unsigned int timeout)
109 return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_WRLCK);
112 /****************************************************************************
113 Lock a chain by string. Return -1 if timeout or lock failed.
114 ****************************************************************************/
116 int tdb_lock_bystring(TDB_CONTEXT *tdb, const char *keyval)
118 TDB_DATA key = string_term_tdb_data(keyval);
120 return tdb_chainlock(tdb, key);
123 int tdb_lock_bystring_with_timeout(TDB_CONTEXT *tdb, const char *keyval,
124 int timeout)
126 TDB_DATA key = string_term_tdb_data(keyval);
128 return tdb_chainlock_with_timeout(tdb, key, timeout);
131 /****************************************************************************
132 Unlock a chain by string.
133 ****************************************************************************/
135 void tdb_unlock_bystring(TDB_CONTEXT *tdb, const char *keyval)
137 TDB_DATA key = string_term_tdb_data(keyval);
139 tdb_chainunlock(tdb, key);
142 /****************************************************************************
143 Read lock a chain by string. Return -1 if timeout or lock failed.
144 ****************************************************************************/
146 int tdb_read_lock_bystring_with_timeout(TDB_CONTEXT *tdb, const char *keyval, unsigned int timeout)
148 TDB_DATA key = string_term_tdb_data(keyval);
150 return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_RDLCK);
153 /****************************************************************************
154 Read unlock a chain by string.
155 ****************************************************************************/
157 void tdb_read_unlock_bystring(TDB_CONTEXT *tdb, const char *keyval)
159 TDB_DATA key = string_term_tdb_data(keyval);
161 tdb_chainunlock_read(tdb, key);
165 /****************************************************************************
166 Fetch a int32 value by a arbitrary blob key, return -1 if not found.
167 Output is int32 in native byte order.
168 ****************************************************************************/
170 int32 tdb_fetch_int32_byblob(TDB_CONTEXT *tdb, TDB_DATA key)
172 TDB_DATA data;
173 int32 ret;
175 data = tdb_fetch(tdb, key);
176 if (!data.dptr || data.dsize != sizeof(int32)) {
177 SAFE_FREE(data.dptr);
178 return -1;
181 ret = IVAL(data.dptr,0);
182 SAFE_FREE(data.dptr);
183 return ret;
186 /****************************************************************************
187 Fetch a int32 value by string key, return -1 if not found.
188 Output is int32 in native byte order.
189 ****************************************************************************/
191 int32 tdb_fetch_int32(TDB_CONTEXT *tdb, const char *keystr)
193 TDB_DATA key = string_term_tdb_data(keystr);
195 return tdb_fetch_int32_byblob(tdb, key);
198 /****************************************************************************
199 Store a int32 value by an arbitary blob key, return 0 on success, -1 on failure.
200 Input is int32 in native byte order. Output in tdb is in little-endian.
201 ****************************************************************************/
203 int tdb_store_int32_byblob(TDB_CONTEXT *tdb, TDB_DATA key, int32 v)
205 TDB_DATA data;
206 int32 v_store;
208 SIVAL(&v_store,0,v);
209 data.dptr = (uint8 *)&v_store;
210 data.dsize = sizeof(int32);
212 return tdb_store(tdb, key, data, TDB_REPLACE);
215 /****************************************************************************
216 Store a int32 value by string key, return 0 on success, -1 on failure.
217 Input is int32 in native byte order. Output in tdb is in little-endian.
218 ****************************************************************************/
220 int tdb_store_int32(TDB_CONTEXT *tdb, const char *keystr, int32 v)
222 TDB_DATA key = string_term_tdb_data(keystr);
224 return tdb_store_int32_byblob(tdb, key, v);
227 /****************************************************************************
228 Fetch a uint32 value by a arbitrary blob key, return -1 if not found.
229 Output is uint32 in native byte order.
230 ****************************************************************************/
232 bool tdb_fetch_uint32_byblob(TDB_CONTEXT *tdb, TDB_DATA key, uint32 *value)
234 TDB_DATA data;
236 data = tdb_fetch(tdb, key);
237 if (!data.dptr || data.dsize != sizeof(uint32)) {
238 SAFE_FREE(data.dptr);
239 return False;
242 *value = IVAL(data.dptr,0);
243 SAFE_FREE(data.dptr);
244 return True;
247 /****************************************************************************
248 Fetch a uint32 value by string key, return -1 if not found.
249 Output is uint32 in native byte order.
250 ****************************************************************************/
252 bool tdb_fetch_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 *value)
254 TDB_DATA key = string_term_tdb_data(keystr);
256 return tdb_fetch_uint32_byblob(tdb, key, value);
259 /****************************************************************************
260 Store a uint32 value by an arbitary blob key, return 0 on success, -1 on failure.
261 Input is uint32 in native byte order. Output in tdb is in little-endian.
262 ****************************************************************************/
264 bool tdb_store_uint32_byblob(TDB_CONTEXT *tdb, TDB_DATA key, uint32 value)
266 TDB_DATA data;
267 uint32 v_store;
268 bool ret = True;
270 SIVAL(&v_store, 0, value);
271 data.dptr = (uint8 *)&v_store;
272 data.dsize = sizeof(uint32);
274 if (tdb_store(tdb, key, data, TDB_REPLACE) == -1)
275 ret = False;
277 return ret;
280 /****************************************************************************
281 Store a uint32 value by string key, return 0 on success, -1 on failure.
282 Input is uint32 in native byte order. Output in tdb is in little-endian.
283 ****************************************************************************/
285 bool tdb_store_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 value)
287 TDB_DATA key = string_term_tdb_data(keystr);
289 return tdb_store_uint32_byblob(tdb, key, value);
291 /****************************************************************************
292 Store a buffer by a null terminated string key. Return 0 on success, -1
293 on failure.
294 ****************************************************************************/
296 int tdb_store_bystring(TDB_CONTEXT *tdb, const char *keystr, TDB_DATA data, int flags)
298 TDB_DATA key = string_term_tdb_data(keystr);
300 return tdb_store(tdb, key, data, flags);
303 int tdb_trans_store_bystring(TDB_CONTEXT *tdb, const char *keystr,
304 TDB_DATA data, int flags)
306 TDB_DATA key = string_term_tdb_data(keystr);
308 return tdb_trans_store(tdb, key, data, flags);
311 /****************************************************************************
312 Fetch a buffer using a null terminated string key. Don't forget to call
313 free() on the result dptr.
314 ****************************************************************************/
316 TDB_DATA tdb_fetch_bystring(TDB_CONTEXT *tdb, const char *keystr)
318 TDB_DATA key = string_term_tdb_data(keystr);
320 return tdb_fetch(tdb, key);
323 /****************************************************************************
324 Delete an entry using a null terminated string key.
325 ****************************************************************************/
327 int tdb_delete_bystring(TDB_CONTEXT *tdb, const char *keystr)
329 TDB_DATA key = string_term_tdb_data(keystr);
331 return tdb_delete(tdb, key);
334 /****************************************************************************
335 Atomic integer change. Returns old value. To create, set initial value in *oldval.
336 ****************************************************************************/
338 int32 tdb_change_int32_atomic(TDB_CONTEXT *tdb, const char *keystr, int32 *oldval, int32 change_val)
340 int32 val;
341 int32 ret = -1;
343 if (tdb_lock_bystring(tdb, keystr) == -1)
344 return -1;
346 if ((val = tdb_fetch_int32(tdb, keystr)) == -1) {
347 /* The lookup failed */
348 if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
349 /* but not because it didn't exist */
350 goto err_out;
353 /* Start with 'old' value */
354 val = *oldval;
356 } else {
357 /* It worked, set return value (oldval) to tdb data */
358 *oldval = val;
361 /* Increment value for storage and return next time */
362 val += change_val;
364 if (tdb_store_int32(tdb, keystr, val) == -1)
365 goto err_out;
367 ret = 0;
369 err_out:
371 tdb_unlock_bystring(tdb, keystr);
372 return ret;
375 /****************************************************************************
376 Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval.
377 ****************************************************************************/
379 bool tdb_change_uint32_atomic(TDB_CONTEXT *tdb, const char *keystr, uint32 *oldval, uint32 change_val)
381 uint32 val;
382 bool ret = False;
384 if (tdb_lock_bystring(tdb, keystr) == -1)
385 return False;
387 if (!tdb_fetch_uint32(tdb, keystr, &val)) {
388 /* It failed */
389 if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
390 /* and not because it didn't exist */
391 goto err_out;
394 /* Start with 'old' value */
395 val = *oldval;
397 } else {
398 /* it worked, set return value (oldval) to tdb data */
399 *oldval = val;
403 /* get a new value to store */
404 val += change_val;
406 if (!tdb_store_uint32(tdb, keystr, val))
407 goto err_out;
409 ret = True;
411 err_out:
413 tdb_unlock_bystring(tdb, keystr);
414 return ret;
417 /****************************************************************************
418 Useful pair of routines for packing/unpacking data consisting of
419 integers and strings.
420 ****************************************************************************/
422 static size_t tdb_pack_va(uint8 *buf, int bufsize, const char *fmt, va_list ap)
424 uint8 bt;
425 uint16 w;
426 uint32 d;
427 int i;
428 void *p;
429 int len;
430 char *s;
431 char c;
432 uint8 *buf0 = buf;
433 const char *fmt0 = fmt;
434 int bufsize0 = bufsize;
436 while (*fmt) {
437 switch ((c = *fmt++)) {
438 case 'b': /* unsigned 8-bit integer */
439 len = 1;
440 bt = (uint8)va_arg(ap, int);
441 if (bufsize && bufsize >= len)
442 SSVAL(buf, 0, bt);
443 break;
444 case 'w': /* unsigned 16-bit integer */
445 len = 2;
446 w = (uint16)va_arg(ap, int);
447 if (bufsize && bufsize >= len)
448 SSVAL(buf, 0, w);
449 break;
450 case 'd': /* signed 32-bit integer (standard int in most systems) */
451 len = 4;
452 d = va_arg(ap, uint32);
453 if (bufsize && bufsize >= len)
454 SIVAL(buf, 0, d);
455 break;
456 case 'p': /* pointer */
457 len = 4;
458 p = va_arg(ap, void *);
459 d = p?1:0;
460 if (bufsize && bufsize >= len)
461 SIVAL(buf, 0, d);
462 break;
463 case 'P': /* null-terminated string */
464 s = va_arg(ap,char *);
465 w = strlen(s);
466 len = w + 1;
467 if (bufsize && bufsize >= len)
468 memcpy(buf, s, len);
469 break;
470 case 'f': /* null-terminated string */
471 s = va_arg(ap,char *);
472 w = strlen(s);
473 len = w + 1;
474 if (bufsize && bufsize >= len)
475 memcpy(buf, s, len);
476 break;
477 case 'B': /* fixed-length string */
478 i = va_arg(ap, int);
479 s = va_arg(ap, char *);
480 len = 4+i;
481 if (bufsize && bufsize >= len) {
482 SIVAL(buf, 0, i);
483 memcpy(buf+4, s, i);
485 break;
486 default:
487 DEBUG(0,("Unknown tdb_pack format %c in %s\n",
488 c, fmt));
489 len = 0;
490 break;
493 buf += len;
494 if (bufsize)
495 bufsize -= len;
496 if (bufsize < 0)
497 bufsize = 0;
500 DEBUG(18,("tdb_pack_va(%s, %d) -> %d\n",
501 fmt0, bufsize0, (int)PTR_DIFF(buf, buf0)));
503 return PTR_DIFF(buf, buf0);
506 size_t tdb_pack(uint8 *buf, int bufsize, const char *fmt, ...)
508 va_list ap;
509 size_t result;
511 va_start(ap, fmt);
512 result = tdb_pack_va(buf, bufsize, fmt, ap);
513 va_end(ap);
514 return result;
517 bool tdb_pack_append(TALLOC_CTX *mem_ctx, uint8 **buf, size_t *len,
518 const char *fmt, ...)
520 va_list ap;
521 size_t len1, len2;
523 va_start(ap, fmt);
524 len1 = tdb_pack_va(NULL, 0, fmt, ap);
525 va_end(ap);
527 if (mem_ctx != NULL) {
528 *buf = TALLOC_REALLOC_ARRAY(mem_ctx, *buf, uint8,
529 (*len) + len1);
530 } else {
531 *buf = SMB_REALLOC_ARRAY(*buf, uint8, (*len) + len1);
534 if (*buf == NULL) {
535 return False;
538 va_start(ap, fmt);
539 len2 = tdb_pack_va((*buf)+(*len), len1, fmt, ap);
540 va_end(ap);
542 if (len1 != len2) {
543 return False;
546 *len += len2;
548 return True;
551 /****************************************************************************
552 Useful pair of routines for packing/unpacking data consisting of
553 integers and strings.
554 ****************************************************************************/
556 int tdb_unpack(const uint8 *buf, int bufsize, const char *fmt, ...)
558 va_list ap;
559 uint8 *bt;
560 uint16 *w;
561 uint32 *d;
562 int len;
563 int *i;
564 void **p;
565 char *s, **b, **ps;
566 char c;
567 const uint8 *buf0 = buf;
568 const char *fmt0 = fmt;
569 int bufsize0 = bufsize;
571 va_start(ap, fmt);
573 while (*fmt) {
574 switch ((c=*fmt++)) {
575 case 'b':
576 len = 1;
577 bt = va_arg(ap, uint8 *);
578 if (bufsize < len)
579 goto no_space;
580 *bt = SVAL(buf, 0);
581 break;
582 case 'w':
583 len = 2;
584 w = va_arg(ap, uint16 *);
585 if (bufsize < len)
586 goto no_space;
587 *w = SVAL(buf, 0);
588 break;
589 case 'd':
590 len = 4;
591 d = va_arg(ap, uint32 *);
592 if (bufsize < len)
593 goto no_space;
594 *d = IVAL(buf, 0);
595 break;
596 case 'p':
597 len = 4;
598 p = va_arg(ap, void **);
599 if (bufsize < len)
600 goto no_space;
602 * This isn't a real pointer - only a token (1 or 0)
603 * to mark the fact a pointer is present.
606 *p = (void *)(IVAL(buf, 0) ? (void *)1 : NULL);
607 break;
608 case 'P':
609 /* Return malloc'ed string. */
610 ps = va_arg(ap,char **);
611 len = strlen((const char *)buf) + 1;
612 *ps = SMB_STRDUP((const char *)buf);
613 break;
614 case 'f':
615 s = va_arg(ap,char *);
616 len = strlen((const char *)buf) + 1;
617 if (bufsize < len || len > sizeof(fstring))
618 goto no_space;
619 memcpy(s, buf, len);
620 break;
621 case 'B':
622 i = va_arg(ap, int *);
623 b = va_arg(ap, char **);
624 len = 4;
625 if (bufsize < len)
626 goto no_space;
627 *i = IVAL(buf, 0);
628 if (! *i) {
629 *b = NULL;
630 break;
632 len += *i;
633 if (bufsize < len)
634 goto no_space;
635 *b = (char *)SMB_MALLOC(*i);
636 if (! *b)
637 goto no_space;
638 memcpy(*b, buf+4, *i);
639 break;
640 default:
641 DEBUG(0,("Unknown tdb_unpack format %c in %s\n",
642 c, fmt));
644 len = 0;
645 break;
648 buf += len;
649 bufsize -= len;
652 va_end(ap);
654 DEBUG(18,("tdb_unpack(%s, %d) -> %d\n",
655 fmt0, bufsize0, (int)PTR_DIFF(buf, buf0)));
657 return PTR_DIFF(buf, buf0);
659 no_space:
660 va_end(ap);
661 return -1;
665 /****************************************************************************
666 Log tdb messages via DEBUG().
667 ****************************************************************************/
669 static void tdb_log(TDB_CONTEXT *tdb, enum tdb_debug_level level, const char *format, ...)
671 va_list ap;
672 char *ptr = NULL;
673 int ret;
675 va_start(ap, format);
676 ret = vasprintf(&ptr, format, ap);
677 va_end(ap);
679 if ((ret == -1) || !*ptr)
680 return;
682 DEBUG((int)level, ("tdb(%s): %s", tdb_name(tdb) ? tdb_name(tdb) : "unnamed", ptr));
683 SAFE_FREE(ptr);
686 /****************************************************************************
687 Like tdb_open() but also setup a logging function that redirects to
688 the samba DEBUG() system.
689 ****************************************************************************/
691 TDB_CONTEXT *tdb_open_log(const char *name, int hash_size, int tdb_flags,
692 int open_flags, mode_t mode)
694 TDB_CONTEXT *tdb;
695 struct tdb_logging_context log_ctx;
697 if (!lp_use_mmap())
698 tdb_flags |= TDB_NOMMAP;
700 log_ctx.log_fn = tdb_log;
701 log_ctx.log_private = NULL;
703 if ((hash_size == 0) && (name != NULL)) {
704 const char *base = strrchr_m(name, '/');
705 if (base != NULL) {
706 base += 1;
708 else {
709 base = name;
711 hash_size = lp_parm_int(-1, "tdb_hashsize", base, 0);
714 tdb = tdb_open_ex(name, hash_size, tdb_flags,
715 open_flags, mode, &log_ctx, NULL);
716 if (!tdb)
717 return NULL;
719 return tdb;
724 * Search across the whole tdb for keys that match the given pattern
725 * return the result as a list of keys
727 * @param tdb pointer to opened tdb file context
728 * @param pattern searching pattern used by fnmatch(3) functions
730 * @return list of keys found by looking up with given pattern
732 TDB_LIST_NODE *tdb_search_keys(TDB_CONTEXT *tdb, const char* pattern)
734 TDB_DATA key, next;
735 TDB_LIST_NODE *list = NULL;
736 TDB_LIST_NODE *rec = NULL;
738 for (key = tdb_firstkey(tdb); key.dptr; key = next) {
739 /* duplicate key string to ensure null-termination */
740 char *key_str = SMB_STRNDUP((const char *)key.dptr, key.dsize);
741 if (!key_str) {
742 DEBUG(0, ("tdb_search_keys: strndup() failed!\n"));
743 smb_panic("strndup failed!\n");
746 DEBUG(18, ("checking %s for match to pattern %s\n", key_str, pattern));
748 next = tdb_nextkey(tdb, key);
750 /* do the pattern checking */
751 if (fnmatch(pattern, key_str, 0) == 0) {
752 rec = SMB_MALLOC_P(TDB_LIST_NODE);
753 ZERO_STRUCTP(rec);
755 rec->node_key = key;
757 DLIST_ADD_END(list, rec, TDB_LIST_NODE *);
759 DEBUG(18, ("checking %s matched pattern %s\n", key_str, pattern));
760 } else {
761 free(key.dptr);
764 /* free duplicated key string */
765 free(key_str);
768 return list;
774 * Free the list returned by tdb_search_keys
776 * @param node list of results found by tdb_search_keys
778 void tdb_search_list_free(TDB_LIST_NODE* node)
780 TDB_LIST_NODE *next_node;
782 while (node) {
783 next_node = node->next;
784 SAFE_FREE(node->node_key.dptr);
785 SAFE_FREE(node);
786 node = next_node;
790 /****************************************************************************
791 tdb_store, wrapped in a transaction. This way we make sure that a process
792 that dies within writing does not leave a corrupt tdb behind.
793 ****************************************************************************/
795 int tdb_trans_store(struct tdb_context *tdb, TDB_DATA key, TDB_DATA dbuf,
796 int flag)
798 int res;
800 if ((res = tdb_transaction_start(tdb)) != 0) {
801 DEBUG(5, ("tdb_transaction_start failed\n"));
802 return res;
805 if ((res = tdb_store(tdb, key, dbuf, flag)) != 0) {
806 DEBUG(10, ("tdb_store failed\n"));
807 if (tdb_transaction_cancel(tdb) != 0) {
808 smb_panic("Cancelling transaction failed");
810 return res;
813 if ((res = tdb_transaction_commit(tdb)) != 0) {
814 DEBUG(5, ("tdb_transaction_commit failed\n"));
817 return res;
820 /****************************************************************************
821 tdb_delete, wrapped in a transaction. This way we make sure that a process
822 that dies within deleting does not leave a corrupt tdb behind.
823 ****************************************************************************/
825 int tdb_trans_delete(struct tdb_context *tdb, TDB_DATA key)
827 int res;
829 if ((res = tdb_transaction_start(tdb)) != 0) {
830 DEBUG(5, ("tdb_transaction_start failed\n"));
831 return res;
834 if ((res = tdb_delete(tdb, key)) != 0) {
835 DEBUG(10, ("tdb_delete failed\n"));
836 if (tdb_transaction_cancel(tdb) != 0) {
837 smb_panic("Cancelling transaction failed");
839 return res;
842 if ((res = tdb_transaction_commit(tdb)) != 0) {
843 DEBUG(5, ("tdb_transaction_commit failed\n"));
846 return res;
850 Log tdb messages via DEBUG().
852 static void tdb_wrap_log(TDB_CONTEXT *tdb, enum tdb_debug_level level,
853 const char *format, ...) PRINTF_ATTRIBUTE(3,4);
855 static void tdb_wrap_log(TDB_CONTEXT *tdb, enum tdb_debug_level level,
856 const char *format, ...)
858 va_list ap;
859 char *ptr = NULL;
860 int debuglevel = 0;
861 int ret;
863 switch (level) {
864 case TDB_DEBUG_FATAL:
865 debuglevel = 0;
866 break;
867 case TDB_DEBUG_ERROR:
868 debuglevel = 1;
869 break;
870 case TDB_DEBUG_WARNING:
871 debuglevel = 2;
872 break;
873 case TDB_DEBUG_TRACE:
874 debuglevel = 5;
875 break;
876 default:
877 debuglevel = 0;
880 va_start(ap, format);
881 ret = vasprintf(&ptr, format, ap);
882 va_end(ap);
884 if (ret != -1) {
885 const char *name = tdb_name(tdb);
886 DEBUG(debuglevel, ("tdb(%s): %s", name ? name : "unnamed", ptr));
887 free(ptr);
891 static struct tdb_wrap *tdb_list;
893 /* destroy the last connection to a tdb */
894 static int tdb_wrap_destructor(struct tdb_wrap *w)
896 tdb_close(w->tdb);
897 DLIST_REMOVE(tdb_list, w);
898 return 0;
902 wrapped connection to a tdb database
903 to close just talloc_free() the tdb_wrap pointer
905 struct tdb_wrap *tdb_wrap_open(TALLOC_CTX *mem_ctx,
906 const char *name, int hash_size, int tdb_flags,
907 int open_flags, mode_t mode)
909 struct tdb_wrap *w;
910 struct tdb_logging_context log_ctx;
911 log_ctx.log_fn = tdb_wrap_log;
913 if (!lp_use_mmap())
914 tdb_flags |= TDB_NOMMAP;
916 for (w=tdb_list;w;w=w->next) {
917 if (strcmp(name, w->name) == 0) {
919 * Yes, talloc_reference is exactly what we want
920 * here. Otherwise we would have to implement our own
921 * reference counting.
923 return talloc_reference(mem_ctx, w);
927 w = talloc(mem_ctx, struct tdb_wrap);
928 if (w == NULL) {
929 return NULL;
932 if (!(w->name = talloc_strdup(w, name))) {
933 talloc_free(w);
934 return NULL;
937 if ((hash_size == 0) && (name != NULL)) {
938 const char *base = strrchr_m(name, '/');
939 if (base != NULL) {
940 base += 1;
942 else {
943 base = name;
945 hash_size = lp_parm_int(-1, "tdb_hashsize", base, 0);
948 w->tdb = tdb_open_ex(name, hash_size, tdb_flags,
949 open_flags, mode, &log_ctx, NULL);
950 if (w->tdb == NULL) {
951 talloc_free(w);
952 return NULL;
955 talloc_set_destructor(w, tdb_wrap_destructor);
957 DLIST_ADD(tdb_list, w);
959 return w;
962 NTSTATUS map_nt_error_from_tdb(enum TDB_ERROR err)
964 struct { enum TDB_ERROR err; NTSTATUS status; } map[] =
965 { { TDB_SUCCESS, NT_STATUS_OK },
966 { TDB_ERR_CORRUPT, NT_STATUS_INTERNAL_DB_CORRUPTION },
967 { TDB_ERR_IO, NT_STATUS_UNEXPECTED_IO_ERROR },
968 { TDB_ERR_OOM, NT_STATUS_NO_MEMORY },
969 { TDB_ERR_EXISTS, NT_STATUS_OBJECT_NAME_COLLISION },
972 * TDB_ERR_LOCK is very broad, we could for example
973 * distinguish between fcntl locks and invalid lock
974 * sequences. So NT_STATUS_FILE_LOCK_CONFLICT is a
975 * compromise.
977 { TDB_ERR_LOCK, NT_STATUS_FILE_LOCK_CONFLICT },
979 * The next two ones in the enum are not actually used
981 { TDB_ERR_NOLOCK, NT_STATUS_FILE_LOCK_CONFLICT },
982 { TDB_ERR_LOCK_TIMEOUT, NT_STATUS_FILE_LOCK_CONFLICT },
983 { TDB_ERR_NOEXIST, NT_STATUS_NOT_FOUND },
984 { TDB_ERR_EINVAL, NT_STATUS_INVALID_PARAMETER },
985 { TDB_ERR_RDONLY, NT_STATUS_ACCESS_DENIED }
988 int i;
990 for (i=0; i < sizeof(map) / sizeof(map[0]); i++) {
991 if (err == map[i].err) {
992 return map[i].status;
996 return NT_STATUS_INTERNAL_ERROR;
1000 /*********************************************************************
1001 * the following is a generic validation mechanism for tdbs.
1002 *********************************************************************/
1005 * internal validation function, executed by the child.
1007 static int tdb_validate_child(struct tdb_context *tdb,
1008 tdb_validate_data_func validate_fn)
1010 int ret = 1;
1011 int num_entries = 0;
1012 struct tdb_validation_status v_status;
1014 v_status.tdb_error = False;
1015 v_status.bad_freelist = False;
1016 v_status.bad_entry = False;
1017 v_status.unknown_key = False;
1018 v_status.success = True;
1020 if (!tdb) {
1021 v_status.tdb_error = True;
1022 v_status.success = False;
1023 goto out;
1026 /* Check if the tdb's freelist is good. */
1027 if (tdb_validate_freelist(tdb, &num_entries) == -1) {
1028 v_status.bad_freelist = True;
1029 v_status.success = False;
1030 goto out;
1033 DEBUG(10,("tdb_validate_child: tdb %s freelist has %d entries\n",
1034 tdb_name(tdb), num_entries));
1036 /* Now traverse the tdb to validate it. */
1037 num_entries = tdb_traverse(tdb, validate_fn, (void *)&v_status);
1038 if (!v_status.success) {
1039 goto out;
1040 } else if (num_entries == -1) {
1041 v_status.tdb_error = True;
1042 v_status.success = False;
1043 goto out;
1046 DEBUG(10,("tdb_validate_child: tdb %s is good with %d entries\n",
1047 tdb_name(tdb), num_entries));
1048 ret = 0; /* Cache is good. */
1050 out:
1051 DEBUG(10, ("tdb_validate_child: summary of validation status:\n"));
1052 DEBUGADD(10,(" * tdb error: %s\n", v_status.tdb_error ? "yes" : "no"));
1053 DEBUGADD(10,(" * bad freelist: %s\n",v_status.bad_freelist?"yes":"no"));
1054 DEBUGADD(10,(" * bad entry: %s\n", v_status.bad_entry ? "yes" : "no"));
1055 DEBUGADD(10,(" * unknown key: %s\n", v_status.unknown_key?"yes":"no"));
1056 DEBUGADD(10,(" => overall success: %s\n", v_status.success?"yes":"no"));
1058 return ret;
1062 * tdb validation function.
1063 * returns 0 if tdb is ok, != 0 if it isn't.
1064 * this function expects an opened tdb.
1066 int tdb_validate(struct tdb_context *tdb, tdb_validate_data_func validate_fn)
1068 pid_t child_pid = -1;
1069 int child_status = 0;
1070 int wait_pid = 0;
1071 int ret = 1;
1073 if (tdb == NULL) {
1074 DEBUG(1, ("Error: tdb_validate called with tdb == NULL\n"));
1075 return ret;
1078 DEBUG(5, ("tdb_validate called for tdb '%s'\n", tdb_name(tdb)));
1080 /* fork and let the child do the validation.
1081 * benefit: no need to twist signal handlers and panic functions.
1082 * just let the child panic. we catch the signal. */
1084 DEBUG(10, ("tdb_validate: forking to let child do validation.\n"));
1085 child_pid = sys_fork();
1086 if (child_pid == 0) {
1087 /* child code */
1088 DEBUG(10, ("tdb_validate (validation child): created\n"));
1089 DEBUG(10, ("tdb_validate (validation child): "
1090 "calling tdb_validate_child\n"));
1091 exit(tdb_validate_child(tdb, validate_fn));
1093 else if (child_pid < 0) {
1094 DEBUG(1, ("tdb_validate: fork for validation failed.\n"));
1095 goto done;
1098 /* parent */
1100 DEBUG(10, ("tdb_validate: fork succeeded, child PID = %u\n",
1101 (unsigned int)child_pid));
1103 DEBUG(10, ("tdb_validate: waiting for child to finish...\n"));
1104 while ((wait_pid = sys_waitpid(child_pid, &child_status, 0)) < 0) {
1105 if (errno == EINTR) {
1106 DEBUG(10, ("tdb_validate: got signal during waitpid, "
1107 "retrying\n"));
1108 errno = 0;
1109 continue;
1111 DEBUG(1, ("tdb_validate: waitpid failed with error '%s'.\n",
1112 strerror(errno)));
1113 goto done;
1115 if (wait_pid != child_pid) {
1116 DEBUG(1, ("tdb_validate: waitpid returned pid %d, "
1117 "but %u was expected\n", wait_pid,
1118 (unsigned int)child_pid));
1119 goto done;
1122 DEBUG(10, ("tdb_validate: validating child returned.\n"));
1123 if (WIFEXITED(child_status)) {
1124 DEBUG(10, ("tdb_validate: child exited, code %d.\n",
1125 WEXITSTATUS(child_status)));
1126 ret = WEXITSTATUS(child_status);
1128 if (WIFSIGNALED(child_status)) {
1129 DEBUG(10, ("tdb_validate: child terminated by signal %d\n",
1130 WTERMSIG(child_status)));
1131 #ifdef WCOREDUMP
1132 if (WCOREDUMP(child_status)) {
1133 DEBUGADD(10, ("core dumped\n"));
1135 #endif
1136 ret = WTERMSIG(child_status);
1138 if (WIFSTOPPED(child_status)) {
1139 DEBUG(10, ("tdb_validate: child was stopped by signal %d\n",
1140 WSTOPSIG(child_status)));
1141 ret = WSTOPSIG(child_status);
1144 done:
1145 DEBUG(5, ("tdb_validate returning code '%d' for tdb '%s'\n", ret,
1146 tdb_name(tdb)));
1148 return ret;
1152 * tdb validation function.
1153 * returns 0 if tdb is ok, != 0 if it isn't.
1154 * this is a wrapper around the actual validation function that opens and closes
1155 * the tdb.
1157 int tdb_validate_open(const char *tdb_path, tdb_validate_data_func validate_fn)
1159 TDB_CONTEXT *tdb = NULL;
1160 int ret = 1;
1162 DEBUG(5, ("tdb_validate_open called for tdb '%s'\n", tdb_path));
1164 tdb = tdb_open_log(tdb_path, 0, TDB_DEFAULT, O_RDONLY, 0);
1165 if (!tdb) {
1166 DEBUG(1, ("Error opening tdb %s\n", tdb_path));
1167 return ret;
1170 ret = tdb_validate(tdb, validate_fn);
1171 tdb_close(tdb);
1172 return ret;
1176 * tdb backup function and helpers for tdb_validate wrapper with backup
1177 * handling.
1180 /* this structure eliminates the need for a global overall status for
1181 * the traverse-copy */
1182 struct tdb_copy_data {
1183 struct tdb_context *dst;
1184 bool success;
1187 static int traverse_copy_fn(struct tdb_context *tdb, TDB_DATA key,
1188 TDB_DATA dbuf, void *private_data)
1190 struct tdb_copy_data *data = (struct tdb_copy_data *)private_data;
1192 if (tdb_store(data->dst, key, dbuf, TDB_INSERT) != 0) {
1193 DEBUG(4, ("Failed to insert into %s: %s\n", tdb_name(data->dst),
1194 strerror(errno)));
1195 data->success = False;
1196 return 1;
1198 return 0;
1201 static int tdb_copy(struct tdb_context *src, struct tdb_context *dst)
1203 struct tdb_copy_data data;
1204 int count;
1206 data.dst = dst;
1207 data.success = True;
1209 count = tdb_traverse(src, traverse_copy_fn, (void *)(&data));
1210 if ((count < 0) || (data.success == False)) {
1211 return -1;
1213 return count;
1216 static int tdb_verify_basic(struct tdb_context *tdb)
1218 return tdb_traverse(tdb, NULL, NULL);
1221 /* this backup function is essentially taken from lib/tdb/tools/tdbbackup.tdb
1223 static int tdb_backup(TALLOC_CTX *ctx, const char *src_path,
1224 const char *dst_path, int hash_size)
1226 struct tdb_context *src_tdb = NULL;
1227 struct tdb_context *dst_tdb = NULL;
1228 char *tmp_path = NULL;
1229 struct stat st;
1230 int count1, count2;
1231 int saved_errno = 0;
1232 int ret = -1;
1234 if (stat(src_path, &st) != 0) {
1235 DEBUG(3, ("Could not stat '%s': %s\n", src_path,
1236 strerror(errno)));
1237 goto done;
1240 /* open old tdb RDWR - so we can lock it */
1241 src_tdb = tdb_open_log(src_path, 0, TDB_DEFAULT, O_RDWR, 0);
1242 if (src_tdb == NULL) {
1243 DEBUG(3, ("Failed to open tdb '%s'\n", src_path));
1244 goto done;
1247 if (tdb_lockall(src_tdb) != 0) {
1248 DEBUG(3, ("Failed to lock tdb '%s'\n", src_path));
1249 goto done;
1252 tmp_path = talloc_asprintf(ctx, "%s%s", dst_path, ".tmp");
1253 unlink(tmp_path);
1254 dst_tdb = tdb_open_log(tmp_path,
1255 hash_size ? hash_size : tdb_hash_size(src_tdb),
1256 TDB_DEFAULT, O_RDWR | O_CREAT | O_EXCL,
1257 st.st_mode & 0777);
1258 if (dst_tdb == NULL) {
1259 DEBUG(3, ("Error creating tdb '%s': %s\n", tmp_path,
1260 strerror(errno)));
1261 saved_errno = errno;
1262 unlink(tmp_path);
1263 goto done;
1266 count1 = tdb_copy(src_tdb, dst_tdb);
1267 if (count1 < 0) {
1268 DEBUG(3, ("Failed to copy tdb '%s': %s\n", src_path,
1269 strerror(errno)));
1270 tdb_close(dst_tdb);
1271 goto done;
1274 /* reopen ro and do basic verification */
1275 tdb_close(dst_tdb);
1276 dst_tdb = tdb_open_log(tmp_path, 0, TDB_DEFAULT, O_RDONLY, 0);
1277 if (!dst_tdb) {
1278 DEBUG(3, ("Failed to reopen tdb '%s': %s\n", tmp_path,
1279 strerror(errno)));
1280 goto done;
1282 count2 = tdb_verify_basic(dst_tdb);
1283 if (count2 != count1) {
1284 DEBUG(3, ("Failed to verify result of copying tdb '%s'.\n",
1285 src_path));
1286 tdb_close(dst_tdb);
1287 goto done;
1290 DEBUG(10, ("tdb_backup: successfully copied %d entries\n", count1));
1292 /* make sure the new tdb has reached stable storage
1293 * then rename it to its destination */
1294 fsync(tdb_fd(dst_tdb));
1295 tdb_close(dst_tdb);
1296 unlink(dst_path);
1297 if (rename(tmp_path, dst_path) != 0) {
1298 DEBUG(3, ("Failed to rename '%s' to '%s': %s\n",
1299 tmp_path, dst_path, strerror(errno)));
1300 goto done;
1303 /* success */
1304 ret = 0;
1306 done:
1307 if (src_tdb != NULL) {
1308 tdb_close(src_tdb);
1310 if (tmp_path != NULL) {
1311 unlink(tmp_path);
1312 TALLOC_FREE(tmp_path);
1314 if (saved_errno != 0) {
1315 errno = saved_errno;
1317 return ret;
1320 static int rename_file_with_suffix(TALLOC_CTX *ctx, const char *path,
1321 const char *suffix)
1323 int ret = -1;
1324 char *dst_path;
1326 dst_path = talloc_asprintf(ctx, "%s%s", path, suffix);
1328 ret = (rename(path, dst_path) != 0);
1330 if (ret == 0) {
1331 DEBUG(5, ("moved '%s' to '%s'\n", path, dst_path));
1332 } else if (errno == ENOENT) {
1333 DEBUG(3, ("file '%s' does not exist - so not moved\n", path));
1334 ret = 0;
1335 } else {
1336 DEBUG(3, ("error renaming %s to %s: %s\n", path, dst_path,
1337 strerror(errno)));
1340 TALLOC_FREE(dst_path);
1341 return ret;
1345 * do a backup of a tdb, moving the destination out of the way first
1347 static int tdb_backup_with_rotate(TALLOC_CTX *ctx, const char *src_path,
1348 const char *dst_path, int hash_size,
1349 const char *rotate_suffix,
1350 bool retry_norotate_if_nospc,
1351 bool rename_as_last_resort_if_nospc)
1353 int ret;
1355 rename_file_with_suffix(ctx, dst_path, rotate_suffix);
1357 ret = tdb_backup(ctx, src_path, dst_path, hash_size);
1359 if (ret != 0) {
1360 DEBUG(10, ("backup of %s failed: %s\n", src_path, strerror(errno)));
1362 if ((ret != 0) && (errno == ENOSPC) && retry_norotate_if_nospc)
1364 char *rotate_path = talloc_asprintf(ctx, "%s%s", dst_path,
1365 rotate_suffix);
1366 DEBUG(10, ("backup of %s failed due to lack of space\n",
1367 src_path));
1368 DEBUGADD(10, ("trying to free some space by removing rotated "
1369 "dst %s\n", rotate_path));
1370 if (unlink(rotate_path) == -1) {
1371 DEBUG(10, ("unlink of %s failed: %s\n", rotate_path,
1372 strerror(errno)));
1373 } else {
1374 ret = tdb_backup(ctx, src_path, dst_path, hash_size);
1376 TALLOC_FREE(rotate_path);
1379 if ((ret != 0) && (errno == ENOSPC) && rename_as_last_resort_if_nospc)
1381 DEBUG(10, ("backup of %s failed due to lack of space\n",
1382 src_path));
1383 DEBUGADD(10, ("using 'rename' as a last resort\n"));
1384 ret = rename(src_path, dst_path);
1387 return ret;
1391 * validation function with backup handling:
1393 * - calls tdb_validate
1394 * - if the tdb is ok, create a backup "name.bak", possibly moving
1395 * existing backup to name.bak.old,
1396 * return 0 (success) even if the backup fails
1397 * - if the tdb is corrupt:
1398 * - move the tdb to "name.corrupt"
1399 * - check if there is valid backup.
1400 * if so, restore the backup.
1401 * if restore is successful, return 0 (success),
1402 * - otherwise return -1 (failure)
1404 int tdb_validate_and_backup(const char *tdb_path,
1405 tdb_validate_data_func validate_fn)
1407 int ret = -1;
1408 const char *backup_suffix = ".bak";
1409 const char *corrupt_suffix = ".corrupt";
1410 const char *rotate_suffix = ".old";
1411 char *tdb_path_backup;
1412 struct stat st;
1413 TALLOC_CTX *ctx = NULL;
1415 ctx = talloc_new(NULL);
1416 if (ctx == NULL) {
1417 DEBUG(0, ("tdb_validate_and_backup: out of memory\n"));
1418 goto done;
1421 tdb_path_backup = talloc_asprintf(ctx, "%s%s", tdb_path, backup_suffix);
1423 ret = tdb_validate_open(tdb_path, validate_fn);
1425 if (ret == 0) {
1426 DEBUG(1, ("tdb '%s' is valid\n", tdb_path));
1427 ret = tdb_backup_with_rotate(ctx, tdb_path, tdb_path_backup, 0,
1428 rotate_suffix, True, False);
1429 if (ret != 0) {
1430 DEBUG(1, ("Error creating backup of tdb '%s'\n",
1431 tdb_path));
1432 /* the actual validation was successful: */
1433 ret = 0;
1434 } else {
1435 DEBUG(1, ("Created backup '%s' of tdb '%s'\n",
1436 tdb_path_backup, tdb_path));
1438 } else {
1439 DEBUG(1, ("tdb '%s' is invalid\n", tdb_path));
1441 ret =stat(tdb_path_backup, &st);
1442 if (ret != 0) {
1443 DEBUG(5, ("Could not stat '%s': %s\n", tdb_path_backup,
1444 strerror(errno)));
1445 DEBUG(1, ("No backup found.\n"));
1446 } else {
1447 DEBUG(1, ("backup '%s' found.\n", tdb_path_backup));
1448 ret = tdb_validate_open(tdb_path_backup, validate_fn);
1449 if (ret != 0) {
1450 DEBUG(1, ("Backup '%s' is invalid.\n",
1451 tdb_path_backup));
1455 if (ret != 0) {
1456 int renamed = rename_file_with_suffix(ctx, tdb_path,
1457 corrupt_suffix);
1458 if (renamed != 0) {
1459 DEBUG(1, ("Error moving tdb to '%s%s'\n",
1460 tdb_path, corrupt_suffix));
1461 } else {
1462 DEBUG(1, ("Corrupt tdb stored as '%s%s'\n",
1463 tdb_path, corrupt_suffix));
1465 goto done;
1468 DEBUG(1, ("valid backup '%s' found\n", tdb_path_backup));
1469 ret = tdb_backup_with_rotate(ctx, tdb_path_backup, tdb_path, 0,
1470 corrupt_suffix, True, True);
1471 if (ret != 0) {
1472 DEBUG(1, ("Error restoring backup from '%s'\n",
1473 tdb_path_backup));
1474 } else {
1475 DEBUG(1, ("Restored tdb backup from '%s'\n",
1476 tdb_path_backup));
1480 done:
1481 TALLOC_FREE(ctx);
1482 return ret;