r7139: trying to reduce the number of diffs between trunk and 3.0; changing version...
[jerry/samba.git] / source / tdb / tdbutil.c
1 /* 
2    Unix SMB/CIFS implementation.
3    tdb utility functions
4    Copyright (C) Andrew Tridgell   1992-1998
5    Copyright (C) Rafal Szczesniak  2002
6    
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 2 of the License, or
10    (at your option) any later version.
11    
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.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include <fnmatch.h>
24
25 /* these are little tdb utility functions that are meant to make
26    dealing with a tdb database a little less cumbersome in Samba */
27
28 static SIG_ATOMIC_T gotalarm;
29
30 /***************************************************************
31  Signal function to tell us we timed out.
32 ****************************************************************/
33
34 static void gotalarm_sig(void)
35 {
36         gotalarm = 1;
37 }
38
39 /***************************************************************
40  Make a TDB_DATA and keep the const warning in one place
41 ****************************************************************/
42
43 TDB_DATA make_tdb_data(const char *dptr, size_t dsize)
44 {
45         TDB_DATA ret;
46         ret.dptr = CONST_DISCARD(char *, dptr);
47         ret.dsize = dsize;
48         return ret;
49 }
50
51 TDB_DATA string_tdb_data(const char *string)
52 {
53         return make_tdb_data(string, strlen(string));
54 }
55
56 /****************************************************************************
57  Lock a chain with timeout (in seconds).
58 ****************************************************************************/
59
60 static int tdb_chainlock_with_timeout_internal( TDB_CONTEXT *tdb, TDB_DATA key, unsigned int timeout, int rw_type)
61 {
62         /* Allow tdb_chainlock to be interrupted by an alarm. */
63         int ret;
64         gotalarm = 0;
65         tdb_set_lock_alarm(CONST_DISCARD(sig_atomic_t *, &gotalarm));
66
67         if (timeout) {
68                 CatchSignal(SIGALRM, SIGNAL_CAST gotalarm_sig);
69                 alarm(timeout);
70         }
71
72         if (rw_type == F_RDLCK)
73                 ret = tdb_chainlock_read(tdb, key);
74         else
75                 ret = tdb_chainlock(tdb, key);
76
77         if (timeout) {
78                 alarm(0);
79                 CatchSignal(SIGALRM, SIGNAL_CAST SIG_IGN);
80                 if (gotalarm) {
81                         DEBUG(0,("tdb_chainlock_with_timeout_internal: alarm (%u) timed out for key %s in tdb %s\n",
82                                 timeout, key.dptr, tdb->name ));
83                         /* TODO: If we time out waiting for a lock, it might
84                          * be nice to use F_GETLK to get the pid of the
85                          * process currently holding the lock and print that
86                          * as part of the debugging message. -- mbp */
87                         return -1;
88                 }
89         }
90
91         return ret;
92 }
93
94 /****************************************************************************
95  Write lock a chain. Return -1 if timeout or lock failed.
96 ****************************************************************************/
97
98 int tdb_chainlock_with_timeout( TDB_CONTEXT *tdb, TDB_DATA key, unsigned int timeout)
99 {
100         return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_WRLCK);
101 }
102
103 /****************************************************************************
104  Lock a chain by string. Return -1 if timeout or lock failed.
105 ****************************************************************************/
106
107 int tdb_lock_bystring(TDB_CONTEXT *tdb, const char *keyval, unsigned int timeout)
108 {
109         TDB_DATA key = make_tdb_data(keyval, strlen(keyval)+1);
110         
111         return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_WRLCK);
112 }
113
114 /****************************************************************************
115  Unlock a chain by string.
116 ****************************************************************************/
117
118 void tdb_unlock_bystring(TDB_CONTEXT *tdb, const char *keyval)
119 {
120         TDB_DATA key = make_tdb_data(keyval, strlen(keyval)+1);
121
122         tdb_chainunlock(tdb, key);
123 }
124
125 /****************************************************************************
126  Read lock a chain by string. Return -1 if timeout or lock failed.
127 ****************************************************************************/
128
129 int tdb_read_lock_bystring(TDB_CONTEXT *tdb, const char *keyval, unsigned int timeout)
130 {
131         TDB_DATA key = make_tdb_data(keyval, strlen(keyval)+1);
132         
133         return tdb_chainlock_with_timeout_internal(tdb, key, timeout, F_RDLCK);
134 }
135
136 /****************************************************************************
137  Read unlock a chain by string.
138 ****************************************************************************/
139
140 void tdb_read_unlock_bystring(TDB_CONTEXT *tdb, const char *keyval)
141 {
142         TDB_DATA key = make_tdb_data(keyval, strlen(keyval)+1);
143         
144         tdb_chainunlock_read(tdb, key);
145 }
146
147
148 /****************************************************************************
149  Fetch a int32 value by a arbitrary blob key, return -1 if not found.
150  Output is int32 in native byte order.
151 ****************************************************************************/
152
153 int32 tdb_fetch_int32_byblob(TDB_CONTEXT *tdb, const char *keyval, size_t len)
154 {
155         TDB_DATA key = make_tdb_data(keyval, len);
156         TDB_DATA data;
157         int32 ret;
158
159         data = tdb_fetch(tdb, key);
160         if (!data.dptr || data.dsize != sizeof(int32)) {
161                 SAFE_FREE(data.dptr);
162                 return -1;
163         }
164
165         ret = IVAL(data.dptr,0);
166         SAFE_FREE(data.dptr);
167         return ret;
168 }
169
170 /****************************************************************************
171  Fetch a int32 value by string key, return -1 if not found.
172  Output is int32 in native byte order.
173 ****************************************************************************/
174
175 int32 tdb_fetch_int32(TDB_CONTEXT *tdb, const char *keystr)
176 {
177         return tdb_fetch_int32_byblob(tdb, keystr, strlen(keystr) + 1);
178 }
179
180 /****************************************************************************
181  Store a int32 value by an arbitary blob key, return 0 on success, -1 on failure.
182  Input is int32 in native byte order. Output in tdb is in little-endian.
183 ****************************************************************************/
184
185 int tdb_store_int32_byblob(TDB_CONTEXT *tdb, const char *keystr, size_t len, int32 v)
186 {
187         TDB_DATA key = make_tdb_data(keystr, len);
188         TDB_DATA data;
189         int32 v_store;
190
191         SIVAL(&v_store,0,v);
192         data.dptr = (void *)&v_store;
193         data.dsize = sizeof(int32);
194
195         return tdb_store(tdb, key, data, TDB_REPLACE);
196 }
197
198 /****************************************************************************
199  Store a int32 value by string key, return 0 on success, -1 on failure.
200  Input is int32 in native byte order. Output in tdb is in little-endian.
201 ****************************************************************************/
202
203 int tdb_store_int32(TDB_CONTEXT *tdb, const char *keystr, int32 v)
204 {
205         return tdb_store_int32_byblob(tdb, keystr, strlen(keystr) + 1, v);
206 }
207
208 /****************************************************************************
209  Fetch a uint32 value by a arbitrary blob key, return -1 if not found.
210  Output is uint32 in native byte order.
211 ****************************************************************************/
212
213 BOOL tdb_fetch_uint32_byblob(TDB_CONTEXT *tdb, const char *keyval, size_t len, uint32 *value)
214 {
215         TDB_DATA key = make_tdb_data(keyval, len);
216         TDB_DATA data;
217
218         data = tdb_fetch(tdb, key);
219         if (!data.dptr || data.dsize != sizeof(uint32)) {
220                 SAFE_FREE(data.dptr);
221                 return False;
222         }
223
224         *value = IVAL(data.dptr,0);
225         SAFE_FREE(data.dptr);
226         return True;
227 }
228
229 /****************************************************************************
230  Fetch a uint32 value by string key, return -1 if not found.
231  Output is uint32 in native byte order.
232 ****************************************************************************/
233
234 BOOL tdb_fetch_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 *value)
235 {
236         return tdb_fetch_uint32_byblob(tdb, keystr, strlen(keystr) + 1, value);
237 }
238
239 /****************************************************************************
240  Store a uint32 value by an arbitary blob key, return 0 on success, -1 on failure.
241  Input is uint32 in native byte order. Output in tdb is in little-endian.
242 ****************************************************************************/
243
244 BOOL tdb_store_uint32_byblob(TDB_CONTEXT *tdb, const char *keystr, size_t len, uint32 value)
245 {
246         TDB_DATA key = make_tdb_data(keystr, len);
247         TDB_DATA data;
248         uint32 v_store;
249         BOOL ret = True;
250
251         SIVAL(&v_store, 0, value);
252         data.dptr = (void *)&v_store;
253         data.dsize = sizeof(uint32);
254
255         if (tdb_store(tdb, key, data, TDB_REPLACE) == -1)
256                 ret = False;
257
258         return ret;
259 }
260
261 /****************************************************************************
262  Store a uint32 value by string key, return 0 on success, -1 on failure.
263  Input is uint32 in native byte order. Output in tdb is in little-endian.
264 ****************************************************************************/
265
266 BOOL tdb_store_uint32(TDB_CONTEXT *tdb, const char *keystr, uint32 value)
267 {
268         return tdb_store_uint32_byblob(tdb, keystr, strlen(keystr) + 1, value);
269 }
270 /****************************************************************************
271  Store a buffer by a null terminated string key.  Return 0 on success, -1
272  on failure.
273 ****************************************************************************/
274
275 int tdb_store_bystring(TDB_CONTEXT *tdb, const char *keystr, TDB_DATA data, int flags)
276 {
277         TDB_DATA key = make_tdb_data(keystr, strlen(keystr)+1);
278         
279         return tdb_store(tdb, key, data, flags);
280 }
281
282 /****************************************************************************
283  Fetch a buffer using a null terminated string key.  Don't forget to call
284  free() on the result dptr.
285 ****************************************************************************/
286
287 TDB_DATA tdb_fetch_bystring(TDB_CONTEXT *tdb, const char *keystr)
288 {
289         TDB_DATA key = make_tdb_data(keystr, strlen(keystr)+1);
290
291         return tdb_fetch(tdb, key);
292 }
293
294 /****************************************************************************
295  Delete an entry using a null terminated string key. 
296 ****************************************************************************/
297
298 int tdb_delete_bystring(TDB_CONTEXT *tdb, const char *keystr)
299 {
300         TDB_DATA key = make_tdb_data(keystr, strlen(keystr)+1);
301
302         return tdb_delete(tdb, key);
303 }
304
305 /****************************************************************************
306  Atomic integer change. Returns old value. To create, set initial value in *oldval. 
307 ****************************************************************************/
308
309 int32 tdb_change_int32_atomic(TDB_CONTEXT *tdb, const char *keystr, int32 *oldval, int32 change_val)
310 {
311         int32 val;
312         int32 ret = -1;
313
314         if (tdb_lock_bystring(tdb, keystr,0) == -1)
315                 return -1;
316
317         if ((val = tdb_fetch_int32(tdb, keystr)) == -1) {
318                 /* The lookup failed */
319                 if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
320                         /* but not because it didn't exist */
321                         goto err_out;
322                 }
323                 
324                 /* Start with 'old' value */
325                 val = *oldval;
326
327         } else {
328                 /* It worked, set return value (oldval) to tdb data */
329                 *oldval = val;
330         }
331
332         /* Increment value for storage and return next time */
333         val += change_val;
334                 
335         if (tdb_store_int32(tdb, keystr, val) == -1)
336                 goto err_out;
337
338         ret = 0;
339
340   err_out:
341
342         tdb_unlock_bystring(tdb, keystr);
343         return ret;
344 }
345
346 /****************************************************************************
347  Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval. 
348 ****************************************************************************/
349
350 BOOL tdb_change_uint32_atomic(TDB_CONTEXT *tdb, const char *keystr, uint32 *oldval, uint32 change_val)
351 {
352         uint32 val;
353         BOOL ret = False;
354
355         if (tdb_lock_bystring(tdb, keystr,0) == -1)
356                 return False;
357
358         if (!tdb_fetch_uint32(tdb, keystr, &val)) {
359                 /* It failed */
360                 if (tdb_error(tdb) != TDB_ERR_NOEXIST) { 
361                         /* and not because it didn't exist */
362                         goto err_out;
363                 }
364
365                 /* Start with 'old' value */
366                 val = *oldval;
367
368         } else {
369                 /* it worked, set return value (oldval) to tdb data */
370                 *oldval = val;
371
372         }
373
374         /* get a new value to store */
375         val += change_val;
376                 
377         if (!tdb_store_uint32(tdb, keystr, val))
378                 goto err_out;
379
380         ret = True;
381
382   err_out:
383
384         tdb_unlock_bystring(tdb, keystr);
385         return ret;
386 }
387
388 /****************************************************************************
389  Useful pair of routines for packing/unpacking data consisting of
390  integers and strings.
391 ****************************************************************************/
392
393 size_t tdb_pack_va(char *buf, int bufsize, const char *fmt, va_list ap)
394 {
395         uint8 bt;
396         uint16 w;
397         uint32 d;
398         int i;
399         void *p;
400         int len;
401         char *s;
402         char c;
403         char *buf0 = buf;
404         const char *fmt0 = fmt;
405         int bufsize0 = bufsize;
406
407         while (*fmt) {
408                 switch ((c = *fmt++)) {
409                 case 'b': /* unsigned 8-bit integer */
410                         len = 1;
411                         bt = (uint8)va_arg(ap, int);
412                         if (bufsize && bufsize >= len)
413                                 SSVAL(buf, 0, bt);
414                         break;
415                 case 'w': /* unsigned 16-bit integer */
416                         len = 2;
417                         w = (uint16)va_arg(ap, int);
418                         if (bufsize && bufsize >= len)
419                                 SSVAL(buf, 0, w);
420                         break;
421                 case 'd': /* signed 32-bit integer (standard int in most systems) */
422                         len = 4;
423                         d = va_arg(ap, uint32);
424                         if (bufsize && bufsize >= len)
425                                 SIVAL(buf, 0, d);
426                         break;
427                 case 'p': /* pointer */
428                         len = 4;
429                         p = va_arg(ap, void *);
430                         d = p?1:0;
431                         if (bufsize && bufsize >= len)
432                                 SIVAL(buf, 0, d);
433                         break;
434                 case 'P': /* null-terminated string */
435                         s = va_arg(ap,char *);
436                         w = strlen(s);
437                         len = w + 1;
438                         if (bufsize && bufsize >= len)
439                                 memcpy(buf, s, len);
440                         break;
441                 case 'f': /* null-terminated string */
442                         s = va_arg(ap,char *);
443                         w = strlen(s);
444                         len = w + 1;
445                         if (bufsize && bufsize >= len)
446                                 memcpy(buf, s, len);
447                         break;
448                 case 'B': /* fixed-length string */
449                         i = va_arg(ap, int);
450                         s = va_arg(ap, char *);
451                         len = 4+i;
452                         if (bufsize && bufsize >= len) {
453                                 SIVAL(buf, 0, i);
454                                 memcpy(buf+4, s, i);
455                         }
456                         break;
457                 default:
458                         DEBUG(0,("Unknown tdb_pack format %c in %s\n", 
459                                  c, fmt));
460                         len = 0;
461                         break;
462                 }
463
464                 buf += len;
465                 if (bufsize)
466                         bufsize -= len;
467                 if (bufsize < 0)
468                         bufsize = 0;
469         }
470
471         DEBUG(18,("tdb_pack_va(%s, %d) -> %d\n", 
472                  fmt0, bufsize0, (int)PTR_DIFF(buf, buf0)));
473         
474         return PTR_DIFF(buf, buf0);
475 }
476
477 size_t tdb_pack(char *buf, int bufsize, const char *fmt, ...)
478 {
479         va_list ap;
480         size_t result;
481
482         va_start(ap, fmt);
483         result = tdb_pack_va(buf, bufsize, fmt, ap);
484         va_end(ap);
485         return result;
486 }
487
488 BOOL tdb_pack_append(TALLOC_CTX *mem_ctx, uint8_t **buf, size_t *len,
489                      const char *fmt, ...)
490 {
491         va_list ap;
492         size_t len1, len2;
493
494         va_start(ap, fmt);
495         len1 = tdb_pack_va(NULL, 0, fmt, ap);
496         va_end(ap);
497
498         if (mem_ctx != NULL)
499                 *buf = TALLOC_REALLOC_ARRAY(mem_ctx, *buf, uint8_t,
500                                             (*len) + len1);
501         else
502                 *buf = SMB_REALLOC_ARRAY(*buf, uint8_t, (*len) + len1);
503
504         if (*buf == NULL)
505                 return False;
506
507         va_start(ap, fmt);
508         len2 = tdb_pack_va((*buf)+(*len), len1, fmt, ap);
509         va_end(ap);
510
511         if (len1 != len2)
512                 return False;
513
514         *len += len2;
515
516         return True;
517 }
518
519 /****************************************************************************
520  Useful pair of routines for packing/unpacking data consisting of
521  integers and strings.
522 ****************************************************************************/
523
524 int tdb_unpack(char *buf, int bufsize, const char *fmt, ...)
525 {
526         va_list ap;
527         uint8 *bt;
528         uint16 *w;
529         uint32 *d;
530         int len;
531         int *i;
532         void **p;
533         char *s, **b;
534         char c;
535         char *buf0 = buf;
536         const char *fmt0 = fmt;
537         int bufsize0 = bufsize;
538
539         va_start(ap, fmt);
540         
541         while (*fmt) {
542                 switch ((c=*fmt++)) {
543                 case 'b':
544                         len = 1;
545                         bt = va_arg(ap, uint8 *);
546                         if (bufsize < len)
547                                 goto no_space;
548                         *bt = SVAL(buf, 0);
549                         break;
550                 case 'w':
551                         len = 2;
552                         w = va_arg(ap, uint16 *);
553                         if (bufsize < len)
554                                 goto no_space;
555                         *w = SVAL(buf, 0);
556                         break;
557                 case 'd':
558                         len = 4;
559                         d = va_arg(ap, uint32 *);
560                         if (bufsize < len)
561                                 goto no_space;
562                         *d = IVAL(buf, 0);
563                         break;
564                 case 'p':
565                         len = 4;
566                         p = va_arg(ap, void **);
567                         if (bufsize < len)
568                                 goto no_space;
569                         *p = (void *)IVAL(buf, 0);
570                         break;
571                 case 'P':
572                         s = va_arg(ap,char *);
573                         len = strlen(buf) + 1;
574                         if (bufsize < len || len > sizeof(pstring))
575                                 goto no_space;
576                         memcpy(s, buf, len);
577                         break;
578                 case 'f':
579                         s = va_arg(ap,char *);
580                         len = strlen(buf) + 1;
581                         if (bufsize < len || len > sizeof(fstring))
582                                 goto no_space;
583                         memcpy(s, buf, len);
584                         break;
585                 case 'B':
586                         i = va_arg(ap, int *);
587                         b = va_arg(ap, char **);
588                         len = 4;
589                         if (bufsize < len)
590                                 goto no_space;
591                         *i = IVAL(buf, 0);
592                         if (! *i) {
593                                 *b = NULL;
594                                 break;
595                         }
596                         len += *i;
597                         if (bufsize < len)
598                                 goto no_space;
599                         *b = (char *)SMB_MALLOC(*i);
600                         if (! *b)
601                                 goto no_space;
602                         memcpy(*b, buf+4, *i);
603                         break;
604                 default:
605                         DEBUG(0,("Unknown tdb_unpack format %c in %s\n", 
606                                  c, fmt));
607
608                         len = 0;
609                         break;
610                 }
611
612                 buf += len;
613                 bufsize -= len;
614         }
615
616         va_end(ap);
617
618         DEBUG(18,("tdb_unpack(%s, %d) -> %d\n", 
619                  fmt0, bufsize0, (int)PTR_DIFF(buf, buf0)));
620
621         return PTR_DIFF(buf, buf0);
622
623  no_space:
624         return -1;
625 }
626
627
628 /**
629  * Pack SID passed by pointer
630  *
631  * @param pack_buf pointer to buffer which is to be filled with packed data
632  * @param bufsize size of packing buffer
633  * @param sid pointer to sid to be packed
634  *
635  * @return length of the packed representation of the whole structure
636  **/
637 size_t tdb_sid_pack(char* pack_buf, int bufsize, DOM_SID* sid)
638 {
639         int idx;
640         size_t len = 0;
641         
642         if (!sid || !pack_buf) return -1;
643         
644         len += tdb_pack(pack_buf + len, bufsize - len, "bb", sid->sid_rev_num,
645                         sid->num_auths);
646         
647         for (idx = 0; idx < 6; idx++) {
648                 len += tdb_pack(pack_buf + len, bufsize - len, "b", sid->id_auth[idx]);
649         }
650         
651         for (idx = 0; idx < MAXSUBAUTHS; idx++) {
652                 len += tdb_pack(pack_buf + len, bufsize - len, "d", sid->sub_auths[idx]);
653         }
654         
655         return len;
656 }
657
658
659 /**
660  * Unpack SID into a pointer
661  *
662  * @param pack_buf pointer to buffer with packed representation
663  * @param bufsize size of the buffer
664  * @param sid pointer to sid structure to be filled with unpacked data
665  *
666  * @return size of structure unpacked from buffer
667  **/
668 size_t tdb_sid_unpack(char* pack_buf, int bufsize, DOM_SID* sid)
669 {
670         int idx, len = 0;
671         
672         if (!sid || !pack_buf) return -1;
673
674         len += tdb_unpack(pack_buf + len, bufsize - len, "bb",
675                           &sid->sid_rev_num, &sid->num_auths);
676                           
677         for (idx = 0; idx < 6; idx++) {
678                 len += tdb_unpack(pack_buf + len, bufsize - len, "b", &sid->id_auth[idx]);
679         }
680         
681         for (idx = 0; idx < MAXSUBAUTHS; idx++) {
682                 len += tdb_unpack(pack_buf + len, bufsize - len, "d", &sid->sub_auths[idx]);
683         }
684         
685         return len;
686 }
687
688
689 /**
690  * Pack TRUSTED_DOM_PASS passed by pointer
691  *
692  * @param pack_buf pointer to buffer which is to be filled with packed data
693  * @param bufsize size of the buffer
694  * @param pass pointer to trusted domain password to be packed
695  *
696  * @return length of the packed representation of the whole structure
697  **/
698 size_t tdb_trusted_dom_pass_pack(char* pack_buf, int bufsize, TRUSTED_DOM_PASS* pass)
699 {
700         int idx, len = 0;
701         
702         if (!pack_buf || !pass) return -1;
703         
704         /* packing unicode domain name and password */
705         len += tdb_pack(pack_buf + len, bufsize - len, "d", pass->uni_name_len);
706         
707         for (idx = 0; idx < 32; idx++)
708                 len +=  tdb_pack(pack_buf + len, bufsize - len, "w", pass->uni_name[idx]);
709         
710         len += tdb_pack(pack_buf + len, bufsize - len, "dPd", pass->pass_len,
711                              pass->pass, pass->mod_time);
712
713         /* packing SID structure */
714         len += tdb_sid_pack(pack_buf + len, bufsize - len, &pass->domain_sid);
715
716         return len;
717 }
718
719
720 /**
721  * Unpack TRUSTED_DOM_PASS passed by pointer
722  *
723  * @param pack_buf pointer to buffer with packed representation
724  * @param bufsize size of the buffer
725  * @param pass pointer to trusted domain password to be filled with unpacked data
726  *
727  * @return size of structure unpacked from buffer
728  **/
729 size_t tdb_trusted_dom_pass_unpack(char* pack_buf, int bufsize, TRUSTED_DOM_PASS* pass)
730 {
731         int idx, len = 0;
732         
733         if (!pack_buf || !pass) return -1;
734
735         /* unpack unicode domain name and plaintext password */
736         len += tdb_unpack(pack_buf, bufsize - len, "d", &pass->uni_name_len);
737         
738         for (idx = 0; idx < 32; idx++)
739                 len +=  tdb_unpack(pack_buf + len, bufsize - len, "w", &pass->uni_name[idx]);
740
741         len += tdb_unpack(pack_buf + len, bufsize - len, "dPd", &pass->pass_len, &pass->pass,
742                           &pass->mod_time);
743         
744         /* unpack domain sid */
745         len += tdb_sid_unpack(pack_buf + len, bufsize - len, &pass->domain_sid);
746         
747         return len;     
748 }
749
750
751 /****************************************************************************
752  Log tdb messages via DEBUG().
753 ****************************************************************************/
754
755 static void tdb_log(TDB_CONTEXT *tdb, int level, const char *format, ...)
756 {
757         va_list ap;
758         char *ptr = NULL;
759
760         va_start(ap, format);
761         vasprintf(&ptr, format, ap);
762         va_end(ap);
763         
764         if (!ptr || !*ptr)
765                 return;
766
767         DEBUG(level, ("tdb(%s): %s", tdb->name ? tdb->name : "unnamed", ptr));
768         SAFE_FREE(ptr);
769 }
770
771 /****************************************************************************
772  Like tdb_open() but also setup a logging function that redirects to
773  the samba DEBUG() system.
774 ****************************************************************************/
775
776 TDB_CONTEXT *tdb_open_log(const char *name, int hash_size, int tdb_flags,
777                           int open_flags, mode_t mode)
778 {
779         TDB_CONTEXT *tdb;
780
781         if (!lp_use_mmap())
782                 tdb_flags |= TDB_NOMMAP;
783
784         tdb = tdb_open_ex(name, hash_size, tdb_flags, 
785                                     open_flags, mode, tdb_log, NULL);
786         if (!tdb)
787                 return NULL;
788
789         return tdb;
790 }
791
792
793 /****************************************************************************
794  Allow tdb_delete to be used as a tdb_traversal_fn.
795 ****************************************************************************/
796
797 int tdb_traverse_delete_fn(TDB_CONTEXT *the_tdb, TDB_DATA key, TDB_DATA dbuf,
798                      void *state)
799 {
800     return tdb_delete(the_tdb, key);
801 }
802
803
804
805 /**
806  * Search across the whole tdb for keys that match the given pattern
807  * return the result as a list of keys
808  *
809  * @param tdb pointer to opened tdb file context
810  * @param pattern searching pattern used by fnmatch(3) functions
811  *
812  * @return list of keys found by looking up with given pattern
813  **/
814 TDB_LIST_NODE *tdb_search_keys(TDB_CONTEXT *tdb, const char* pattern)
815 {
816         TDB_DATA key, next;
817         TDB_LIST_NODE *list = NULL;
818         TDB_LIST_NODE *rec = NULL;
819         TDB_LIST_NODE *tmp = NULL;
820         
821         for (key = tdb_firstkey(tdb); key.dptr; key = next) {
822                 /* duplicate key string to ensure null-termination */
823                 char *key_str = (char*) SMB_STRNDUP(key.dptr, key.dsize);
824                 if (!key_str) {
825                         DEBUG(0, ("tdb_search_keys: strndup() failed!\n"));
826                         smb_panic("strndup failed!\n");
827                 }
828                 
829                 DEBUG(18, ("checking %s for match to pattern %s\n", key_str, pattern));
830                 
831                 next = tdb_nextkey(tdb, key);
832
833                 /* do the pattern checking */
834                 if (fnmatch(pattern, key_str, 0) == 0) {
835                         rec = SMB_MALLOC_P(TDB_LIST_NODE);
836                         ZERO_STRUCTP(rec);
837
838                         rec->node_key = key;
839         
840                         DLIST_ADD_END(list, rec, tmp);
841                 
842                         DEBUG(18, ("checking %s matched pattern %s\n", key_str, pattern));
843                 } else {
844                         free(key.dptr);
845                 }
846                 
847                 /* free duplicated key string */
848                 free(key_str);
849         }
850         
851         return list;
852
853 }
854
855
856 /**
857  * Free the list returned by tdb_search_keys
858  *
859  * @param node list of results found by tdb_search_keys
860  **/
861 void tdb_search_list_free(TDB_LIST_NODE* node)
862 {
863         TDB_LIST_NODE *next_node;
864         
865         while (node) {
866                 next_node = node->next;
867                 SAFE_FREE(node->node_key.dptr);
868                 SAFE_FREE(node);
869                 node = next_node;
870         };
871 }