forgot the altered include file
[Samba.git] / source3 / tdb / tdbutil.c
blob0d8f6128cc5f8e7d0cec89d3b2822227026bdf7d
1 /*
2 Unix SMB/CIFS implementation.
3 tdb utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
22 #include <fnmatch.h>
24 /* these are little tdb utility functions that are meant to make
25 dealing with a tdb database a little less cumbersome in Samba */
27 static SIG_ATOMIC_T gotalarm;
29 /***************************************************************
30 Signal function to tell us we timed out.
31 ****************************************************************/
33 static void gotalarm_sig(void)
35 gotalarm = 1;
38 /***************************************************************
39 Make a TDB_DATA and keep the const warning in one place
40 ****************************************************************/
42 static TDB_DATA make_tdb_data(const char *dptr, size_t dsize)
44 TDB_DATA ret;
45 ret.dptr = dptr;
46 ret.dsize = dsize;
47 return ret;
50 /****************************************************************************
51 Lock a chain with timeout (in seconds).
52 ****************************************************************************/
54 static int tdb_chainlock_with_timeout_internal( TDB_CONTEXT *tdb, TDB_DATA key, unsigned int timeout, int rw_type)
56 /* Allow tdb_chainlock to be interrupted by an alarm. */
57 int ret;
58 gotalarm = 0;
59 tdb_set_lock_alarm(&gotalarm);
61 if (timeout) {
62 CatchSignal(SIGALRM, SIGNAL_CAST gotalarm_sig);
63 alarm(timeout);
66 if (rw_type == F_RDLCK)
67 ret = tdb_chainlock_read(tdb, key);
68 else
69 ret = tdb_chainlock(tdb, key);
71 if (timeout) {
72 alarm(0);
73 CatchSignal(SIGALRM, SIGNAL_CAST SIG_IGN);
74 if (gotalarm) {
75 DEBUG(0,("tdb_chainlock_with_timeout_internal: alarm (%u) timed out for key %s in tdb %s\n",
76 timeout, key.dptr, tdb->name ));
77 /* TODO: If we time out waiting for a lock, it might
78 * be nice to use F_GETLK to get the pid of the
79 * process currently holding the lock and print that
80 * as part of the debugging message. -- mbp */
81 return -1;
85 return ret;
88 /****************************************************************************
89 Write lock a chain. Return -1 if timeout or lock failed.
90 ****************************************************************************/
92 int tdb_chainlock_with_timeout( TDB_CONTEXT *tdb, TDB_DATA key, unsigned int timeout)
94 return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_WRLCK);
97 /****************************************************************************
98 Lock a chain by string. Return -1 if timeout or lock failed.
99 ****************************************************************************/
101 int tdb_lock_bystring(TDB_CONTEXT *tdb, const char *keyval, unsigned int timeout)
103 TDB_DATA key = make_tdb_data(keyval, strlen(keyval)+1);
105 return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_WRLCK);
108 /****************************************************************************
109 Unlock a chain by string.
110 ****************************************************************************/
112 void tdb_unlock_bystring(TDB_CONTEXT *tdb, const char *keyval)
114 TDB_DATA key = make_tdb_data(keyval, strlen(keyval)+1);
116 tdb_chainunlock(tdb, key);
119 /****************************************************************************
120 Read lock a chain by string. Return -1 if timeout or lock failed.
121 ****************************************************************************/
123 int tdb_read_lock_bystring(TDB_CONTEXT *tdb, const char *keyval, unsigned int timeout)
125 TDB_DATA key = make_tdb_data(keyval, strlen(keyval)+1);
127 return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_RDLCK);
130 /****************************************************************************
131 Read unlock a chain by string.
132 ****************************************************************************/
134 void tdb_read_unlock_bystring(TDB_CONTEXT *tdb, const char *keyval)
136 TDB_DATA key = make_tdb_data(keyval, strlen(keyval)+1);
138 tdb_chainunlock_read(tdb, key);
142 /****************************************************************************
143 Fetch a int32 value by a arbitrary blob key, return -1 if not found.
144 Output is int32 in native byte order.
145 ****************************************************************************/
147 int32 tdb_fetch_int32_byblob(TDB_CONTEXT *tdb, const char *keyval, size_t len)
149 TDB_DATA key = make_tdb_data(keyval, len);
150 TDB_DATA data;
151 int32 ret;
153 data = tdb_fetch(tdb, key);
154 if (!data.dptr || data.dsize != sizeof(int32)) {
155 SAFE_FREE(data.dptr);
156 return -1;
159 ret = IVAL(data.dptr,0);
160 SAFE_FREE(data.dptr);
161 return ret;
164 /****************************************************************************
165 Fetch a int32 value by string key, return -1 if not found.
166 Output is int32 in native byte order.
167 ****************************************************************************/
169 int32 tdb_fetch_int32(TDB_CONTEXT *tdb, const char *keystr)
171 return tdb_fetch_int32_byblob(tdb, keystr, strlen(keystr) + 1);
174 /****************************************************************************
175 Store a int32 value by an arbitary blob key, return 0 on success, -1 on failure.
176 Input is int32 in native byte order. Output in tdb is in little-endian.
177 ****************************************************************************/
179 int tdb_store_int32_byblob(TDB_CONTEXT *tdb, const char *keystr, size_t len, int32 v)
181 TDB_DATA key = make_tdb_data(keystr, len);
182 TDB_DATA data;
183 int32 v_store;
185 SIVAL(&v_store,0,v);
186 data.dptr = (void *)&v_store;
187 data.dsize = sizeof(int32);
189 return tdb_store(tdb, key, data, TDB_REPLACE);
192 /****************************************************************************
193 Store a int32 value by string key, return 0 on success, -1 on failure.
194 Input is int32 in native byte order. Output in tdb is in little-endian.
195 ****************************************************************************/
197 int tdb_store_int32(TDB_CONTEXT *tdb, const char *keystr, int32 v)
199 return tdb_store_int32_byblob(tdb, keystr, strlen(keystr) + 1, v);
202 /****************************************************************************
203 Fetch a uint32 value by a arbitrary blob key, return -1 if not found.
204 Output is uint32 in native byte order.
205 ****************************************************************************/
207 BOOL tdb_fetch_uint32_byblob(TDB_CONTEXT *tdb, const char *keyval, size_t len, uint32 *value)
209 TDB_DATA key = make_tdb_data(keyval, len);
210 TDB_DATA data;
212 data = tdb_fetch(tdb, key);
213 if (!data.dptr || data.dsize != sizeof(uint32)) {
214 SAFE_FREE(data.dptr);
215 return False;
218 *value = IVAL(data.dptr,0);
219 SAFE_FREE(data.dptr);
220 return True;
223 /****************************************************************************
224 Fetch a uint32 value by string key, return -1 if not found.
225 Output is uint32 in native byte order.
226 ****************************************************************************/
228 BOOL tdb_fetch_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 *value)
230 return tdb_fetch_uint32_byblob(tdb, keystr, strlen(keystr) + 1, value);
233 /****************************************************************************
234 Store a uint32 value by an arbitary blob key, return 0 on success, -1 on failure.
235 Input is uint32 in native byte order. Output in tdb is in little-endian.
236 ****************************************************************************/
238 BOOL tdb_store_uint32_byblob(TDB_CONTEXT *tdb, const char *keystr, size_t len, uint32 value)
240 TDB_DATA key = make_tdb_data(keystr, len);
241 TDB_DATA data;
242 uint32 v_store;
243 BOOL ret = True;
245 SIVAL(&v_store, 0, value);
246 data.dptr = (void *)&v_store;
247 data.dsize = sizeof(uint32);
249 if (tdb_store(tdb, key, data, TDB_REPLACE) == -1)
250 ret = False;
252 return ret;
255 /****************************************************************************
256 Store a uint32 value by string key, return 0 on success, -1 on failure.
257 Input is uint32 in native byte order. Output in tdb is in little-endian.
258 ****************************************************************************/
260 BOOL tdb_store_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 value)
262 return tdb_store_uint32_byblob(tdb, keystr, strlen(keystr) + 1, value);
264 /****************************************************************************
265 Store a buffer by a null terminated string key. Return 0 on success, -1
266 on failure.
267 ****************************************************************************/
269 int tdb_store_by_string(TDB_CONTEXT *tdb, const char *keystr, TDB_DATA data, int flags)
271 TDB_DATA key = make_tdb_data(keystr, strlen(keystr)+1);
273 return tdb_store(tdb, key, data, flags);
276 /****************************************************************************
277 Fetch a buffer using a null terminated string key. Don't forget to call
278 free() on the result dptr.
279 ****************************************************************************/
281 TDB_DATA tdb_fetch_by_string(TDB_CONTEXT *tdb, const char *keystr)
283 TDB_DATA key = make_tdb_data(keystr, strlen(keystr)+1);
285 return tdb_fetch(tdb, key);
288 /****************************************************************************
289 Delete an entry using a null terminated string key.
290 ****************************************************************************/
292 int tdb_delete_by_string(TDB_CONTEXT *tdb, const char *keystr)
294 TDB_DATA key = make_tdb_data(keystr, strlen(keystr)+1);
296 return tdb_delete(tdb, key);
299 /****************************************************************************
300 Atomic integer change. Returns old value. To create, set initial value in *oldval.
301 ****************************************************************************/
303 int32 tdb_change_int32_atomic(TDB_CONTEXT *tdb, const char *keystr, int32 *oldval, int32 change_val)
305 int32 val;
306 int32 ret = -1;
308 if (tdb_lock_bystring(tdb, keystr,0) == -1)
309 return -1;
311 if ((val = tdb_fetch_int32(tdb, keystr)) == -1) {
312 /* The lookup failed */
313 if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
314 /* but not becouse it didn't exist */
315 goto err_out;
318 /* Start with 'old' value */
319 val = *oldval;
321 } else {
322 /* It worked, set return value (oldval) to tdb data */
323 *oldval = val;
326 /* Increment value for storage and return next time */
327 val += change_val;
329 if (tdb_store_int32(tdb, keystr, val) == -1)
330 goto err_out;
332 ret = 0;
334 err_out:
336 tdb_unlock_bystring(tdb, keystr);
337 return ret;
340 /****************************************************************************
341 Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval.
342 ****************************************************************************/
344 BOOL tdb_change_uint32_atomic(TDB_CONTEXT *tdb, const char *keystr, uint32 *oldval, uint32 change_val)
346 uint32 val;
347 BOOL ret = False;
349 if (tdb_lock_bystring(tdb, keystr,0) == -1)
350 return False;
352 if (!tdb_fetch_uint32(tdb, keystr, &val)) {
353 /* It failed */
354 if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
355 /* and not becouse it didn't exist */
356 goto err_out;
359 /* Start with 'old' value */
360 val = *oldval;
362 } else {
363 /* it worked, set return value (oldval) to tdb data */
364 *oldval = val;
368 /* get a new value to store */
369 val += change_val;
371 if (!tdb_store_uint32(tdb, keystr, val))
372 goto err_out;
374 ret = True;
376 err_out:
378 tdb_unlock_bystring(tdb, keystr);
379 return ret;
382 /****************************************************************************
383 Useful pair of routines for packing/unpacking data consisting of
384 integers and strings.
385 ****************************************************************************/
387 size_t tdb_pack(char *buf, int bufsize, const char *fmt, ...)
389 va_list ap;
390 uint16 w;
391 uint32 d;
392 int i;
393 void *p;
394 int len;
395 char *s;
396 char c;
397 char *buf0 = buf;
398 const char *fmt0 = fmt;
399 int bufsize0 = bufsize;
401 va_start(ap, fmt);
403 while (*fmt) {
404 switch ((c = *fmt++)) {
405 case 'w':
406 len = 2;
407 w = (uint16)va_arg(ap, int);
408 if (bufsize >= len)
409 SSVAL(buf, 0, w);
410 break;
411 case 'd':
412 len = 4;
413 d = va_arg(ap, uint32);
414 if (bufsize >= len)
415 SIVAL(buf, 0, d);
416 break;
417 case 'p':
418 len = 4;
419 p = va_arg(ap, void *);
420 d = p?1:0;
421 if (bufsize >= len)
422 SIVAL(buf, 0, d);
423 break;
424 case 'P':
425 s = va_arg(ap,char *);
426 w = strlen(s);
427 len = w + 1;
428 if (bufsize >= len)
429 memcpy(buf, s, len);
430 break;
431 case 'f':
432 s = va_arg(ap,char *);
433 w = strlen(s);
434 len = w + 1;
435 if (bufsize >= len)
436 memcpy(buf, s, len);
437 break;
438 case 'B':
439 i = va_arg(ap, int);
440 s = va_arg(ap, char *);
441 len = 4+i;
442 if (bufsize >= len) {
443 SIVAL(buf, 0, i);
444 memcpy(buf+4, s, i);
446 break;
447 default:
448 DEBUG(0,("Unknown tdb_pack format %c in %s\n",
449 c, fmt));
450 len = 0;
451 break;
454 buf += len;
455 bufsize -= len;
458 va_end(ap);
460 DEBUG(18,("tdb_pack(%s, %d) -> %d\n",
461 fmt0, bufsize0, (int)PTR_DIFF(buf, buf0)));
463 return PTR_DIFF(buf, buf0);
466 /****************************************************************************
467 Useful pair of routines for packing/unpacking data consisting of
468 integers and strings.
469 ****************************************************************************/
471 int tdb_unpack(char *buf, int bufsize, const char *fmt, ...)
473 va_list ap;
474 uint16 *w;
475 uint32 *d;
476 int len;
477 int *i;
478 void **p;
479 char *s, **b;
480 char c;
481 char *buf0 = buf;
482 const char *fmt0 = fmt;
483 int bufsize0 = bufsize;
485 va_start(ap, fmt);
487 while (*fmt) {
488 switch ((c=*fmt++)) {
489 case 'w':
490 len = 2;
491 w = va_arg(ap, uint16 *);
492 if (bufsize < len)
493 goto no_space;
494 *w = SVAL(buf, 0);
495 break;
496 case 'd':
497 len = 4;
498 d = va_arg(ap, uint32 *);
499 if (bufsize < len)
500 goto no_space;
501 *d = IVAL(buf, 0);
502 break;
503 case 'p':
504 len = 4;
505 p = va_arg(ap, void **);
506 if (bufsize < len)
507 goto no_space;
508 *p = (void *)IVAL(buf, 0);
509 break;
510 case 'P':
511 s = va_arg(ap,char *);
512 len = strlen(buf) + 1;
513 if (bufsize < len || len > sizeof(pstring))
514 goto no_space;
515 memcpy(s, buf, len);
516 break;
517 case 'f':
518 s = va_arg(ap,char *);
519 len = strlen(buf) + 1;
520 if (bufsize < len || len > sizeof(fstring))
521 goto no_space;
522 memcpy(s, buf, len);
523 break;
524 case 'B':
525 i = va_arg(ap, int *);
526 b = va_arg(ap, char **);
527 len = 4;
528 if (bufsize < len)
529 goto no_space;
530 *i = IVAL(buf, 0);
531 if (! *i) {
532 *b = NULL;
533 break;
535 len += *i;
536 if (bufsize < len)
537 goto no_space;
538 *b = (char *)malloc(*i);
539 if (! *b)
540 goto no_space;
541 memcpy(*b, buf+4, *i);
542 break;
543 default:
544 DEBUG(0,("Unknown tdb_unpack format %c in %s\n",
545 c, fmt));
547 len = 0;
548 break;
551 buf += len;
552 bufsize -= len;
555 va_end(ap);
557 DEBUG(18,("tdb_unpack(%s, %d) -> %d\n",
558 fmt0, bufsize0, (int)PTR_DIFF(buf, buf0)));
560 return PTR_DIFF(buf, buf0);
562 no_space:
563 return -1;
566 /****************************************************************************
567 Log tdb messages via DEBUG().
568 ****************************************************************************/
570 static void tdb_log(TDB_CONTEXT *tdb, int level, const char *format, ...)
572 va_list ap;
573 char *ptr = NULL;
575 va_start(ap, format);
576 vasprintf(&ptr, format, ap);
577 va_end(ap);
579 if (!ptr || !*ptr)
580 return;
582 DEBUG(level, ("tdb(%s): %s", tdb->name ? tdb->name : "unnamed", ptr));
583 SAFE_FREE(ptr);
586 /****************************************************************************
587 Like tdb_open() but also setup a logging function that redirects to
588 the samba DEBUG() system.
589 ****************************************************************************/
591 TDB_CONTEXT *tdb_open_log(const char *name, int hash_size, int tdb_flags,
592 int open_flags, mode_t mode)
594 TDB_CONTEXT *tdb;
596 if (!lp_use_mmap())
597 tdb_flags |= TDB_NOMMAP;
599 tdb = tdb_open_ex(name, hash_size, tdb_flags,
600 open_flags, mode, tdb_log);
601 if (!tdb)
602 return NULL;
604 return tdb;
608 /****************************************************************************
609 Allow tdb_delete to be used as a tdb_traversal_fn.
610 ****************************************************************************/
612 int tdb_traverse_delete_fn(TDB_CONTEXT *the_tdb, TDB_DATA key, TDB_DATA dbuf,
613 void *state)
615 return tdb_delete(the_tdb, key);
621 * Search across the whole tdb for keys that match the given pattern
622 * return the result as a list of keys
624 * @param tdb pointer to opened tdb file context
625 * @param pattern searching pattern used by fnmatch(3) functions
627 * @return list of keys found by looking up with given pattern
629 TDB_LIST_NODE *tdb_search_keys(TDB_CONTEXT *tdb, const char* pattern)
631 TDB_DATA key, next;
632 TDB_LIST_NODE *list = NULL;
633 TDB_LIST_NODE *rec = NULL;
634 TDB_LIST_NODE *tmp = NULL;
636 for (key = tdb_firstkey(tdb); key.dptr; key = next) {
637 /* duplicate key string to ensure null-termination */
638 char *key_str = (char*) strndup(key.dptr, key.dsize);
639 if (!key_str) {
640 DEBUG(0, ("tdb_search_keys: strndup() failed!\n"));
641 smb_panic("strndup failed!\n");
644 DEBUG(18, ("checking %s for match to pattern %s\n", key_str, pattern));
646 next = tdb_nextkey(tdb, key);
648 /* do the pattern checking */
649 if (fnmatch(pattern, key_str, 0) == 0) {
650 rec = (TDB_LIST_NODE*) malloc(sizeof(*rec));
651 ZERO_STRUCTP(rec);
653 rec->node_key = key;
655 DLIST_ADD_END(list, rec, tmp);
657 DEBUG(18, ("checking %s matched pattern %s\n", key_str, pattern));
658 } else {
659 free(key.dptr);
662 /* free duplicated key string */
663 free(key_str);
666 return list;
672 * Free the list returned by tdb_search_keys
674 * @param node list of results found by tdb_search_keys
676 void tdb_search_list_free(TDB_LIST_NODE* node)
678 TDB_LIST_NODE *next_node;
680 while (node) {
681 next_node = node->next;
682 SAFE_FREE(node);
683 node = next_node;