r23828: Add entry and exit debug statments to tdb_validate
[Samba/gebeck_regimport.git] / source3 / lib / util_tdb.c
blob22831d97acefbf09fa50a21461b8159393f87b0a
1 /*
2 Unix SMB/CIFS implementation.
3 tdb utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Rafal Szczesniak 2002
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #undef malloc
23 #undef realloc
24 #undef calloc
25 #undef strdup
27 /* these are little tdb utility functions that are meant to make
28 dealing with a tdb database a little less cumbersome in Samba */
30 static SIG_ATOMIC_T gotalarm;
32 /***************************************************************
33 Signal function to tell us we timed out.
34 ****************************************************************/
36 static void gotalarm_sig(void)
38 gotalarm = 1;
41 /***************************************************************
42 Make a TDB_DATA and keep the const warning in one place
43 ****************************************************************/
45 TDB_DATA make_tdb_data(const uint8 *dptr, size_t dsize)
47 TDB_DATA ret;
48 ret.dptr = CONST_DISCARD(uint8 *, dptr);
49 ret.dsize = dsize;
50 return ret;
53 TDB_DATA string_tdb_data(const char *string)
55 return make_tdb_data((const uint8 *)string, string ? strlen(string) : 0 );
58 TDB_DATA string_term_tdb_data(const char *string)
60 return make_tdb_data((const uint8 *)string, string ? strlen(string) + 1 : 0);
63 /****************************************************************************
64 Lock a chain with timeout (in seconds).
65 ****************************************************************************/
67 static int tdb_chainlock_with_timeout_internal( TDB_CONTEXT *tdb, TDB_DATA key, unsigned int timeout, int rw_type)
69 /* Allow tdb_chainlock to be interrupted by an alarm. */
70 int ret;
71 gotalarm = 0;
73 if (timeout) {
74 CatchSignal(SIGALRM, SIGNAL_CAST gotalarm_sig);
75 alarm(timeout);
78 if (rw_type == F_RDLCK)
79 ret = tdb_chainlock_read(tdb, key);
80 else
81 ret = tdb_chainlock(tdb, key);
83 if (timeout) {
84 alarm(0);
85 CatchSignal(SIGALRM, SIGNAL_CAST SIG_IGN);
86 if (gotalarm) {
87 DEBUG(0,("tdb_chainlock_with_timeout_internal: alarm (%u) timed out for key %s in tdb %s\n",
88 timeout, key.dptr, tdb_name(tdb)));
89 /* TODO: If we time out waiting for a lock, it might
90 * be nice to use F_GETLK to get the pid of the
91 * process currently holding the lock and print that
92 * as part of the debugging message. -- mbp */
93 return -1;
97 return ret;
100 /****************************************************************************
101 Write lock a chain. Return -1 if timeout or lock failed.
102 ****************************************************************************/
104 int tdb_chainlock_with_timeout( TDB_CONTEXT *tdb, TDB_DATA key, unsigned int timeout)
106 return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_WRLCK);
109 /****************************************************************************
110 Lock a chain by string. Return -1 if timeout or lock failed.
111 ****************************************************************************/
113 int tdb_lock_bystring(TDB_CONTEXT *tdb, const char *keyval)
115 TDB_DATA key = string_term_tdb_data(keyval);
117 return tdb_chainlock(tdb, key);
120 int tdb_lock_bystring_with_timeout(TDB_CONTEXT *tdb, const char *keyval,
121 int timeout)
123 TDB_DATA key = string_term_tdb_data(keyval);
125 return tdb_chainlock_with_timeout(tdb, key, timeout);
128 /****************************************************************************
129 Unlock a chain by string.
130 ****************************************************************************/
132 void tdb_unlock_bystring(TDB_CONTEXT *tdb, const char *keyval)
134 TDB_DATA key = string_term_tdb_data(keyval);
136 tdb_chainunlock(tdb, key);
139 /****************************************************************************
140 Read lock a chain by string. Return -1 if timeout or lock failed.
141 ****************************************************************************/
143 int tdb_read_lock_bystring_with_timeout(TDB_CONTEXT *tdb, const char *keyval, unsigned int timeout)
145 TDB_DATA key = string_term_tdb_data(keyval);
147 return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_RDLCK);
150 /****************************************************************************
151 Read unlock a chain by string.
152 ****************************************************************************/
154 void tdb_read_unlock_bystring(TDB_CONTEXT *tdb, const char *keyval)
156 TDB_DATA key = string_term_tdb_data(keyval);
158 tdb_chainunlock_read(tdb, key);
162 /****************************************************************************
163 Fetch a int32 value by a arbitrary blob key, return -1 if not found.
164 Output is int32 in native byte order.
165 ****************************************************************************/
167 int32 tdb_fetch_int32_byblob(TDB_CONTEXT *tdb, TDB_DATA key)
169 TDB_DATA data;
170 int32 ret;
172 data = tdb_fetch(tdb, key);
173 if (!data.dptr || data.dsize != sizeof(int32)) {
174 SAFE_FREE(data.dptr);
175 return -1;
178 ret = IVAL(data.dptr,0);
179 SAFE_FREE(data.dptr);
180 return ret;
183 /****************************************************************************
184 Fetch a int32 value by string key, return -1 if not found.
185 Output is int32 in native byte order.
186 ****************************************************************************/
188 int32 tdb_fetch_int32(TDB_CONTEXT *tdb, const char *keystr)
190 TDB_DATA key = string_term_tdb_data(keystr);
192 return tdb_fetch_int32_byblob(tdb, key);
195 /****************************************************************************
196 Store a int32 value by an arbitary blob key, return 0 on success, -1 on failure.
197 Input is int32 in native byte order. Output in tdb is in little-endian.
198 ****************************************************************************/
200 int tdb_store_int32_byblob(TDB_CONTEXT *tdb, TDB_DATA key, int32 v)
202 TDB_DATA data;
203 int32 v_store;
205 SIVAL(&v_store,0,v);
206 data.dptr = (uint8 *)&v_store;
207 data.dsize = sizeof(int32);
209 return tdb_store(tdb, key, data, TDB_REPLACE);
212 /****************************************************************************
213 Store a int32 value by string key, return 0 on success, -1 on failure.
214 Input is int32 in native byte order. Output in tdb is in little-endian.
215 ****************************************************************************/
217 int tdb_store_int32(TDB_CONTEXT *tdb, const char *keystr, int32 v)
219 TDB_DATA key = string_term_tdb_data(keystr);
221 return tdb_store_int32_byblob(tdb, key, v);
224 /****************************************************************************
225 Fetch a uint32 value by a arbitrary blob key, return -1 if not found.
226 Output is uint32 in native byte order.
227 ****************************************************************************/
229 BOOL tdb_fetch_uint32_byblob(TDB_CONTEXT *tdb, TDB_DATA key, uint32 *value)
231 TDB_DATA data;
233 data = tdb_fetch(tdb, key);
234 if (!data.dptr || data.dsize != sizeof(uint32)) {
235 SAFE_FREE(data.dptr);
236 return False;
239 *value = IVAL(data.dptr,0);
240 SAFE_FREE(data.dptr);
241 return True;
244 /****************************************************************************
245 Fetch a uint32 value by string key, return -1 if not found.
246 Output is uint32 in native byte order.
247 ****************************************************************************/
249 BOOL tdb_fetch_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 *value)
251 TDB_DATA key = string_term_tdb_data(keystr);
253 return tdb_fetch_uint32_byblob(tdb, key, value);
256 /****************************************************************************
257 Store a uint32 value by an arbitary blob key, return 0 on success, -1 on failure.
258 Input is uint32 in native byte order. Output in tdb is in little-endian.
259 ****************************************************************************/
261 BOOL tdb_store_uint32_byblob(TDB_CONTEXT *tdb, TDB_DATA key, uint32 value)
263 TDB_DATA data;
264 uint32 v_store;
265 BOOL ret = True;
267 SIVAL(&v_store, 0, value);
268 data.dptr = (uint8 *)&v_store;
269 data.dsize = sizeof(uint32);
271 if (tdb_store(tdb, key, data, TDB_REPLACE) == -1)
272 ret = False;
274 return ret;
277 /****************************************************************************
278 Store a uint32 value by string key, return 0 on success, -1 on failure.
279 Input is uint32 in native byte order. Output in tdb is in little-endian.
280 ****************************************************************************/
282 BOOL tdb_store_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 value)
284 TDB_DATA key = string_term_tdb_data(keystr);
286 return tdb_store_uint32_byblob(tdb, key, value);
288 /****************************************************************************
289 Store a buffer by a null terminated string key. Return 0 on success, -1
290 on failure.
291 ****************************************************************************/
293 int tdb_store_bystring(TDB_CONTEXT *tdb, const char *keystr, TDB_DATA data, int flags)
295 TDB_DATA key = string_term_tdb_data(keystr);
297 return tdb_store(tdb, key, data, flags);
300 int tdb_trans_store_bystring(TDB_CONTEXT *tdb, const char *keystr,
301 TDB_DATA data, int flags)
303 TDB_DATA key = string_term_tdb_data(keystr);
305 return tdb_trans_store(tdb, key, data, flags);
308 /****************************************************************************
309 Fetch a buffer using a null terminated string key. Don't forget to call
310 free() on the result dptr.
311 ****************************************************************************/
313 TDB_DATA tdb_fetch_bystring(TDB_CONTEXT *tdb, const char *keystr)
315 TDB_DATA key = string_term_tdb_data(keystr);
317 return tdb_fetch(tdb, key);
320 /****************************************************************************
321 Delete an entry using a null terminated string key.
322 ****************************************************************************/
324 int tdb_delete_bystring(TDB_CONTEXT *tdb, const char *keystr)
326 TDB_DATA key = string_term_tdb_data(keystr);
328 return tdb_delete(tdb, key);
331 /****************************************************************************
332 Atomic integer change. Returns old value. To create, set initial value in *oldval.
333 ****************************************************************************/
335 int32 tdb_change_int32_atomic(TDB_CONTEXT *tdb, const char *keystr, int32 *oldval, int32 change_val)
337 int32 val;
338 int32 ret = -1;
340 if (tdb_lock_bystring(tdb, keystr) == -1)
341 return -1;
343 if ((val = tdb_fetch_int32(tdb, keystr)) == -1) {
344 /* The lookup failed */
345 if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
346 /* but not because it didn't exist */
347 goto err_out;
350 /* Start with 'old' value */
351 val = *oldval;
353 } else {
354 /* It worked, set return value (oldval) to tdb data */
355 *oldval = val;
358 /* Increment value for storage and return next time */
359 val += change_val;
361 if (tdb_store_int32(tdb, keystr, val) == -1)
362 goto err_out;
364 ret = 0;
366 err_out:
368 tdb_unlock_bystring(tdb, keystr);
369 return ret;
372 /****************************************************************************
373 Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval.
374 ****************************************************************************/
376 BOOL tdb_change_uint32_atomic(TDB_CONTEXT *tdb, const char *keystr, uint32 *oldval, uint32 change_val)
378 uint32 val;
379 BOOL ret = False;
381 if (tdb_lock_bystring(tdb, keystr) == -1)
382 return False;
384 if (!tdb_fetch_uint32(tdb, keystr, &val)) {
385 /* It failed */
386 if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
387 /* and not because it didn't exist */
388 goto err_out;
391 /* Start with 'old' value */
392 val = *oldval;
394 } else {
395 /* it worked, set return value (oldval) to tdb data */
396 *oldval = val;
400 /* get a new value to store */
401 val += change_val;
403 if (!tdb_store_uint32(tdb, keystr, val))
404 goto err_out;
406 ret = True;
408 err_out:
410 tdb_unlock_bystring(tdb, keystr);
411 return ret;
414 /****************************************************************************
415 Useful pair of routines for packing/unpacking data consisting of
416 integers and strings.
417 ****************************************************************************/
419 size_t tdb_pack_va(uint8 *buf, int bufsize, const char *fmt, va_list ap)
421 uint8 bt;
422 uint16 w;
423 uint32 d;
424 int i;
425 void *p;
426 int len;
427 char *s;
428 char c;
429 uint8 *buf0 = buf;
430 const char *fmt0 = fmt;
431 int bufsize0 = bufsize;
433 while (*fmt) {
434 switch ((c = *fmt++)) {
435 case 'b': /* unsigned 8-bit integer */
436 len = 1;
437 bt = (uint8)va_arg(ap, int);
438 if (bufsize && bufsize >= len)
439 SSVAL(buf, 0, bt);
440 break;
441 case 'w': /* unsigned 16-bit integer */
442 len = 2;
443 w = (uint16)va_arg(ap, int);
444 if (bufsize && bufsize >= len)
445 SSVAL(buf, 0, w);
446 break;
447 case 'd': /* signed 32-bit integer (standard int in most systems) */
448 len = 4;
449 d = va_arg(ap, uint32);
450 if (bufsize && bufsize >= len)
451 SIVAL(buf, 0, d);
452 break;
453 case 'p': /* pointer */
454 len = 4;
455 p = va_arg(ap, void *);
456 d = p?1:0;
457 if (bufsize && bufsize >= len)
458 SIVAL(buf, 0, d);
459 break;
460 case 'P': /* null-terminated string */
461 s = va_arg(ap,char *);
462 w = strlen(s);
463 len = w + 1;
464 if (bufsize && bufsize >= len)
465 memcpy(buf, s, len);
466 break;
467 case 'f': /* null-terminated string */
468 s = va_arg(ap,char *);
469 w = strlen(s);
470 len = w + 1;
471 if (bufsize && bufsize >= len)
472 memcpy(buf, s, len);
473 break;
474 case 'B': /* fixed-length string */
475 i = va_arg(ap, int);
476 s = va_arg(ap, char *);
477 len = 4+i;
478 if (bufsize && bufsize >= len) {
479 SIVAL(buf, 0, i);
480 memcpy(buf+4, s, i);
482 break;
483 default:
484 DEBUG(0,("Unknown tdb_pack format %c in %s\n",
485 c, fmt));
486 len = 0;
487 break;
490 buf += len;
491 if (bufsize)
492 bufsize -= len;
493 if (bufsize < 0)
494 bufsize = 0;
497 DEBUG(18,("tdb_pack_va(%s, %d) -> %d\n",
498 fmt0, bufsize0, (int)PTR_DIFF(buf, buf0)));
500 return PTR_DIFF(buf, buf0);
503 size_t tdb_pack(uint8 *buf, int bufsize, const char *fmt, ...)
505 va_list ap;
506 size_t result;
508 va_start(ap, fmt);
509 result = tdb_pack_va(buf, bufsize, fmt, ap);
510 va_end(ap);
511 return result;
514 BOOL tdb_pack_append(TALLOC_CTX *mem_ctx, uint8 **buf, size_t *len,
515 const char *fmt, ...)
517 va_list ap;
518 size_t len1, len2;
520 va_start(ap, fmt);
521 len1 = tdb_pack_va(NULL, 0, fmt, ap);
522 va_end(ap);
524 if (mem_ctx != NULL) {
525 *buf = TALLOC_REALLOC_ARRAY(mem_ctx, *buf, uint8,
526 (*len) + len1);
527 } else {
528 *buf = SMB_REALLOC_ARRAY(*buf, uint8, (*len) + len1);
531 if (*buf == NULL) {
532 return False;
535 va_start(ap, fmt);
536 len2 = tdb_pack_va((*buf)+(*len), len1, fmt, ap);
537 va_end(ap);
539 if (len1 != len2) {
540 return False;
543 *len += len2;
545 return True;
548 /****************************************************************************
549 Useful pair of routines for packing/unpacking data consisting of
550 integers and strings.
551 ****************************************************************************/
553 int tdb_unpack(const uint8 *buf, int bufsize, const char *fmt, ...)
555 va_list ap;
556 uint8 *bt;
557 uint16 *w;
558 uint32 *d;
559 int len;
560 int *i;
561 void **p;
562 char *s, **b;
563 char c;
564 const uint8 *buf0 = buf;
565 const char *fmt0 = fmt;
566 int bufsize0 = bufsize;
568 va_start(ap, fmt);
570 while (*fmt) {
571 switch ((c=*fmt++)) {
572 case 'b':
573 len = 1;
574 bt = va_arg(ap, uint8 *);
575 if (bufsize < len)
576 goto no_space;
577 *bt = SVAL(buf, 0);
578 break;
579 case 'w':
580 len = 2;
581 w = va_arg(ap, uint16 *);
582 if (bufsize < len)
583 goto no_space;
584 *w = SVAL(buf, 0);
585 break;
586 case 'd':
587 len = 4;
588 d = va_arg(ap, uint32 *);
589 if (bufsize < len)
590 goto no_space;
591 *d = IVAL(buf, 0);
592 break;
593 case 'p':
594 len = 4;
595 p = va_arg(ap, void **);
596 if (bufsize < len)
597 goto no_space;
599 * This isn't a real pointer - only a token (1 or 0)
600 * to mark the fact a pointer is present.
603 *p = (void *)(IVAL(buf, 0) ? (void *)1 : NULL);
604 break;
605 case 'P':
606 s = va_arg(ap,char *);
607 len = strlen((const char *)buf) + 1;
608 if (bufsize < len || len > sizeof(pstring))
609 goto no_space;
610 memcpy(s, buf, len);
611 break;
612 case 'f':
613 s = va_arg(ap,char *);
614 len = strlen((const char *)buf) + 1;
615 if (bufsize < len || len > sizeof(fstring))
616 goto no_space;
617 memcpy(s, buf, len);
618 break;
619 case 'B':
620 i = va_arg(ap, int *);
621 b = va_arg(ap, char **);
622 len = 4;
623 if (bufsize < len)
624 goto no_space;
625 *i = IVAL(buf, 0);
626 if (! *i) {
627 *b = NULL;
628 break;
630 len += *i;
631 if (bufsize < len)
632 goto no_space;
633 *b = (char *)SMB_MALLOC(*i);
634 if (! *b)
635 goto no_space;
636 memcpy(*b, buf+4, *i);
637 break;
638 default:
639 DEBUG(0,("Unknown tdb_unpack format %c in %s\n",
640 c, fmt));
642 len = 0;
643 break;
646 buf += len;
647 bufsize -= len;
650 va_end(ap);
652 DEBUG(18,("tdb_unpack(%s, %d) -> %d\n",
653 fmt0, bufsize0, (int)PTR_DIFF(buf, buf0)));
655 return PTR_DIFF(buf, buf0);
657 no_space:
658 return -1;
662 /****************************************************************************
663 Log tdb messages via DEBUG().
664 ****************************************************************************/
666 static void tdb_log(TDB_CONTEXT *tdb, enum tdb_debug_level level, const char *format, ...)
668 va_list ap;
669 char *ptr = NULL;
671 va_start(ap, format);
672 vasprintf(&ptr, format, ap);
673 va_end(ap);
675 if (!ptr || !*ptr)
676 return;
678 DEBUG((int)level, ("tdb(%s): %s", tdb_name(tdb) ? tdb_name(tdb) : "unnamed", ptr));
679 SAFE_FREE(ptr);
682 /****************************************************************************
683 Like tdb_open() but also setup a logging function that redirects to
684 the samba DEBUG() system.
685 ****************************************************************************/
687 TDB_CONTEXT *tdb_open_log(const char *name, int hash_size, int tdb_flags,
688 int open_flags, mode_t mode)
690 TDB_CONTEXT *tdb;
691 struct tdb_logging_context log_ctx;
693 if (!lp_use_mmap())
694 tdb_flags |= TDB_NOMMAP;
696 log_ctx.log_fn = tdb_log;
697 log_ctx.log_private = NULL;
699 tdb = tdb_open_ex(name, hash_size, tdb_flags,
700 open_flags, mode, &log_ctx, NULL);
701 if (!tdb)
702 return NULL;
704 return tdb;
707 /****************************************************************************
708 Allow tdb_delete to be used as a tdb_traversal_fn.
709 ****************************************************************************/
711 int tdb_traverse_delete_fn(TDB_CONTEXT *the_tdb, TDB_DATA key, TDB_DATA dbuf,
712 void *state)
714 return tdb_delete(the_tdb, key);
720 * Search across the whole tdb for keys that match the given pattern
721 * return the result as a list of keys
723 * @param tdb pointer to opened tdb file context
724 * @param pattern searching pattern used by fnmatch(3) functions
726 * @return list of keys found by looking up with given pattern
728 TDB_LIST_NODE *tdb_search_keys(TDB_CONTEXT *tdb, const char* pattern)
730 TDB_DATA key, next;
731 TDB_LIST_NODE *list = NULL;
732 TDB_LIST_NODE *rec = NULL;
734 for (key = tdb_firstkey(tdb); key.dptr; key = next) {
735 /* duplicate key string to ensure null-termination */
736 char *key_str = SMB_STRNDUP((const char *)key.dptr, key.dsize);
737 if (!key_str) {
738 DEBUG(0, ("tdb_search_keys: strndup() failed!\n"));
739 smb_panic("strndup failed!\n");
742 DEBUG(18, ("checking %s for match to pattern %s\n", key_str, pattern));
744 next = tdb_nextkey(tdb, key);
746 /* do the pattern checking */
747 if (fnmatch(pattern, key_str, 0) == 0) {
748 rec = SMB_MALLOC_P(TDB_LIST_NODE);
749 ZERO_STRUCTP(rec);
751 rec->node_key = key;
753 DLIST_ADD_END(list, rec, TDB_LIST_NODE *);
755 DEBUG(18, ("checking %s matched pattern %s\n", key_str, pattern));
756 } else {
757 free(key.dptr);
760 /* free duplicated key string */
761 free(key_str);
764 return list;
770 * Free the list returned by tdb_search_keys
772 * @param node list of results found by tdb_search_keys
774 void tdb_search_list_free(TDB_LIST_NODE* node)
776 TDB_LIST_NODE *next_node;
778 while (node) {
779 next_node = node->next;
780 SAFE_FREE(node->node_key.dptr);
781 SAFE_FREE(node);
782 node = next_node;
786 /****************************************************************************
787 tdb_store, wrapped in a transaction. This way we make sure that a process
788 that dies within writing does not leave a corrupt tdb behind.
789 ****************************************************************************/
791 int tdb_trans_store(struct tdb_context *tdb, TDB_DATA key, TDB_DATA dbuf,
792 int flag)
794 int res;
796 if ((res = tdb_transaction_start(tdb)) != 0) {
797 DEBUG(5, ("tdb_transaction_start failed\n"));
798 return res;
801 if ((res = tdb_store(tdb, key, dbuf, flag)) != 0) {
802 DEBUG(10, ("tdb_store failed\n"));
803 if (tdb_transaction_cancel(tdb) != 0) {
804 smb_panic("Cancelling transaction failed");
806 return res;
809 if ((res = tdb_transaction_commit(tdb)) != 0) {
810 DEBUG(5, ("tdb_transaction_commit failed\n"));
813 return res;
816 /****************************************************************************
817 tdb_delete, wrapped in a transaction. This way we make sure that a process
818 that dies within deleting does not leave a corrupt tdb behind.
819 ****************************************************************************/
821 int tdb_trans_delete(struct tdb_context *tdb, TDB_DATA key)
823 int res;
825 if ((res = tdb_transaction_start(tdb)) != 0) {
826 DEBUG(5, ("tdb_transaction_start failed\n"));
827 return res;
830 if ((res = tdb_delete(tdb, key)) != 0) {
831 DEBUG(10, ("tdb_delete failed\n"));
832 if (tdb_transaction_cancel(tdb) != 0) {
833 smb_panic("Cancelling transaction failed");
835 return res;
838 if ((res = tdb_transaction_commit(tdb)) != 0) {
839 DEBUG(5, ("tdb_transaction_commit failed\n"));
842 return res;
846 Log tdb messages via DEBUG().
848 static void tdb_wrap_log(TDB_CONTEXT *tdb, enum tdb_debug_level level,
849 const char *format, ...) PRINTF_ATTRIBUTE(3,4);
851 static void tdb_wrap_log(TDB_CONTEXT *tdb, enum tdb_debug_level level,
852 const char *format, ...)
854 va_list ap;
855 char *ptr = NULL;
856 int debuglevel = 0;
858 va_start(ap, format);
859 vasprintf(&ptr, format, ap);
860 va_end(ap);
862 switch (level) {
863 case TDB_DEBUG_FATAL:
864 debug_level = 0;
865 break;
866 case TDB_DEBUG_ERROR:
867 debuglevel = 1;
868 break;
869 case TDB_DEBUG_WARNING:
870 debuglevel = 2;
871 break;
872 case TDB_DEBUG_TRACE:
873 debuglevel = 5;
874 break;
875 default:
876 debuglevel = 0;
879 if (ptr != NULL) {
880 const char *name = tdb_name(tdb);
881 DEBUG(debuglevel, ("tdb(%s): %s", name ? name : "unnamed", ptr));
882 free(ptr);
886 static struct tdb_wrap *tdb_list;
888 /* destroy the last connection to a tdb */
889 static int tdb_wrap_destructor(struct tdb_wrap *w)
891 tdb_close(w->tdb);
892 DLIST_REMOVE(tdb_list, w);
893 return 0;
897 wrapped connection to a tdb database
898 to close just talloc_free() the tdb_wrap pointer
900 struct tdb_wrap *tdb_wrap_open(TALLOC_CTX *mem_ctx,
901 const char *name, int hash_size, int tdb_flags,
902 int open_flags, mode_t mode)
904 struct tdb_wrap *w;
905 struct tdb_logging_context log_ctx;
906 log_ctx.log_fn = tdb_wrap_log;
908 if (!lp_use_mmap())
909 tdb_flags |= TDB_NOMMAP;
911 for (w=tdb_list;w;w=w->next) {
912 if (strcmp(name, w->name) == 0) {
914 * Yes, talloc_reference is exactly what we want
915 * here. Otherwise we would have to implement our own
916 * reference counting.
918 return talloc_reference(mem_ctx, w);
922 w = talloc(mem_ctx, struct tdb_wrap);
923 if (w == NULL) {
924 return NULL;
927 if (!(w->name = talloc_strdup(w, name))) {
928 talloc_free(w);
929 return NULL;
932 w->tdb = tdb_open_ex(name, hash_size, tdb_flags,
933 open_flags, mode, &log_ctx, NULL);
934 if (w->tdb == NULL) {
935 talloc_free(w);
936 return NULL;
939 talloc_set_destructor(w, tdb_wrap_destructor);
941 DLIST_ADD(tdb_list, w);
943 return w;
946 NTSTATUS map_nt_error_from_tdb(enum TDB_ERROR err)
948 struct { enum TDB_ERROR err; NTSTATUS status; } map[] =
949 { { TDB_SUCCESS, NT_STATUS_OK },
950 { TDB_ERR_CORRUPT, NT_STATUS_INTERNAL_DB_CORRUPTION },
951 { TDB_ERR_IO, NT_STATUS_UNEXPECTED_IO_ERROR },
952 { TDB_ERR_OOM, NT_STATUS_NO_MEMORY },
953 { TDB_ERR_EXISTS, NT_STATUS_OBJECT_NAME_COLLISION },
956 * TDB_ERR_LOCK is very broad, we could for example
957 * distinguish between fcntl locks and invalid lock
958 * sequences. So NT_STATUS_FILE_LOCK_CONFLICT is a
959 * compromise.
961 { TDB_ERR_LOCK, NT_STATUS_FILE_LOCK_CONFLICT },
963 * The next two ones in the enum are not actually used
965 { TDB_ERR_NOLOCK, NT_STATUS_FILE_LOCK_CONFLICT },
966 { TDB_ERR_LOCK_TIMEOUT, NT_STATUS_FILE_LOCK_CONFLICT },
967 { TDB_ERR_NOEXIST, NT_STATUS_NOT_FOUND },
968 { TDB_ERR_EINVAL, NT_STATUS_INVALID_PARAMETER },
969 { TDB_ERR_RDONLY, NT_STATUS_ACCESS_DENIED }
972 int i;
974 for (i=0; i < sizeof(map) / sizeof(map[0]); i++) {
975 if (err == map[i].err) {
976 return map[i].status;
980 return NT_STATUS_INTERNAL_ERROR;
984 /*********************************************************************
985 * the following is a generic validation mechanism for tdbs.
986 *********************************************************************/
989 * internal validation function, executed by the child.
991 static int tdb_validate_child(const char *tdb_path,
992 tdb_validate_data_func validate_fn)
994 int ret = -1;
995 int num_entries = 0;
996 TDB_CONTEXT *tdb = NULL;
997 struct tdb_validation_status v_status;
999 v_status.tdb_error = False;
1000 v_status.bad_freelist = False;
1001 v_status.bad_entry = False;
1002 v_status.unknown_key = False;
1003 v_status.success = True;
1005 tdb = tdb_open_log(tdb_path, 0, TDB_DEFAULT, O_RDONLY, 0);
1006 if (!tdb) {
1007 v_status.tdb_error = True;
1008 v_status.success = False;
1009 goto out;
1012 /* Check if the tdb's freelist is good. */
1013 if (tdb_validate_freelist(tdb, &num_entries) == -1) {
1014 v_status.bad_freelist = True;
1015 v_status.success = False;
1016 goto out;
1019 DEBUG(10,("tdb_validate_child: tdb %s freelist has %d entries\n",
1020 tdb_path, num_entries));
1022 /* Now traverse the tdb to validate it. */
1023 num_entries = tdb_traverse(tdb, validate_fn, (void *)&v_status);
1024 if (num_entries == -1 || !(v_status.success)) {
1025 goto out;
1028 DEBUG(10,("tdb_validate_child: tdb %s is good with %d entries\n",
1029 tdb_path, num_entries));
1030 ret = 0; /* Cache is good. */
1032 out:
1033 if (tdb) {
1034 tdb_close(tdb);
1037 DEBUG(10, ("tdb_validate_child: summary of validation status:\n"));
1038 DEBUGADD(10,(" * tdb error: %s\n", v_status.tdb_error ? "yes" : "no"));
1039 DEBUGADD(10,(" * bad freelist: %s\n",v_status.bad_freelist?"yes":"no"));
1040 DEBUGADD(10,(" * bad entry: %s\n", v_status.bad_entry ? "yes" : "no"));
1041 DEBUGADD(10,(" * unknown key: %s\n", v_status.unknown_key?"yes":"no"));
1042 DEBUGADD(10,(" => overall success: %s\n", v_status.success?"yes":"no"));
1044 return ret;
1047 int tdb_validate(const char *tdb_path, tdb_validate_data_func validate_fn)
1049 pid_t child_pid = -1;
1050 int child_status = 0;
1051 int wait_pid = 0;
1052 int ret = -1;
1054 DEBUG(5, ("tdb_validate called for tdb '%s'\n", tdb_path));
1056 /* fork and let the child do the validation.
1057 * benefit: no need to twist signal handlers and panic functions.
1058 * just let the child panic. we catch the signal. */
1060 DEBUG(10, ("tdb_validate: forking to let child do validation.\n"));
1061 child_pid = sys_fork();
1062 if (child_pid == 0) {
1063 /* child code */
1064 DEBUG(10, ("tdb_validate (validation child): created\n"));
1065 DEBUG(10, ("tdb_validate (validation child): "
1066 "calling tdb_validate_child\n"));
1067 exit(tdb_validate_child(tdb_path, validate_fn));
1069 else if (child_pid < 0) {
1070 smb_panic("tdb_validate: fork for validation failed.");
1073 /* parent */
1075 DEBUG(10, ("tdb_validate: fork succeeded, child PID = %d\n",child_pid));
1077 DEBUG(10, ("tdb_validate: waiting for child to finish...\n"));
1078 while ((wait_pid = sys_waitpid(child_pid, &child_status, 0)) < 0) {
1079 if (errno == EINTR) {
1080 DEBUG(10, ("tdb_validate: got signal during waitpid, "
1081 "retrying\n"));
1082 errno = 0;
1083 continue;
1085 DEBUG(0, ("tdb_validate: waitpid failed with errno %s\n",
1086 strerror(errno)));
1087 smb_panic("tdb_validate: waitpid failed.");
1089 if (wait_pid != child_pid) {
1090 DEBUG(0, ("tdb_validate: waitpid returned pid %d, "
1091 "but %d was expected\n", wait_pid, child_pid));
1092 smb_panic("tdb_validate: waitpid returned unexpected PID.");
1095 DEBUG(10, ("tdb_validate: validating child returned.\n"));
1096 if (WIFEXITED(child_status)) {
1097 DEBUG(10, ("tdb_validate: child exited, code %d.\n",
1098 WEXITSTATUS(child_status)));
1099 ret = WEXITSTATUS(child_status);
1101 if (WIFSIGNALED(child_status)) {
1102 DEBUG(10, ("tdb_validate: child terminated by signal %d\n",
1103 WTERMSIG(child_status)));
1104 #ifdef WCOREDUMP
1105 if (WCOREDUMP(child_status)) {
1106 DEBUGADD(10, ("core dumped\n"));
1108 #endif
1109 ret = WTERMSIG(child_status);
1111 if (WIFSTOPPED(child_status)) {
1112 DEBUG(10, ("tdb_validate: child was stopped by signal %d\n",
1113 WSTOPSIG(child_status)));
1114 ret = WSTOPSIG(child_status);
1117 DEBUG(5, ("tdb_validate returning code '%d' for tdb '%s'\n", ret,
1118 tdb_path));
1120 return ret;