2 Unix SMB/CIFS implementation.
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/>.
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)
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
)
48 ret
.dptr
= CONST_DISCARD(uint8
*, dptr
);
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. */
74 CatchSignal(SIGALRM
, SIGNAL_CAST gotalarm_sig
);
75 tdb_setalarm_sigptr(tdb
, &gotalarm
);
79 if (rw_type
== F_RDLCK
)
80 ret
= tdb_chainlock_read(tdb
, key
);
82 ret
= tdb_chainlock(tdb
, key
);
86 tdb_setalarm_sigptr(tdb
, NULL
);
87 CatchSignal(SIGALRM
, SIGNAL_CAST SIG_IGN
);
89 DEBUG(0,("tdb_chainlock_with_timeout_internal: alarm (%u) timed out for key %s in tdb %s\n",
90 timeout
, key
.dptr
, tdb_name(tdb
)));
91 /* TODO: If we time out waiting for a lock, it might
92 * be nice to use F_GETLK to get the pid of the
93 * process currently holding the lock and print that
94 * as part of the debugging message. -- mbp */
102 /****************************************************************************
103 Write lock a chain. Return -1 if timeout or lock failed.
104 ****************************************************************************/
106 int tdb_chainlock_with_timeout( TDB_CONTEXT
*tdb
, TDB_DATA key
, unsigned int timeout
)
108 return tdb_chainlock_with_timeout_internal(tdb
, key
, timeout
, F_WRLCK
);
111 /****************************************************************************
112 Lock a chain by string. Return -1 if timeout or lock failed.
113 ****************************************************************************/
115 int tdb_lock_bystring(TDB_CONTEXT
*tdb
, const char *keyval
)
117 TDB_DATA key
= string_term_tdb_data(keyval
);
119 return tdb_chainlock(tdb
, key
);
122 int tdb_lock_bystring_with_timeout(TDB_CONTEXT
*tdb
, const char *keyval
,
125 TDB_DATA key
= string_term_tdb_data(keyval
);
127 return tdb_chainlock_with_timeout(tdb
, key
, timeout
);
130 /****************************************************************************
131 Unlock a chain by string.
132 ****************************************************************************/
134 void tdb_unlock_bystring(TDB_CONTEXT
*tdb
, const char *keyval
)
136 TDB_DATA key
= string_term_tdb_data(keyval
);
138 tdb_chainunlock(tdb
, key
);
141 /****************************************************************************
142 Read lock a chain by string. Return -1 if timeout or lock failed.
143 ****************************************************************************/
145 int tdb_read_lock_bystring_with_timeout(TDB_CONTEXT
*tdb
, const char *keyval
, unsigned int timeout
)
147 TDB_DATA key
= string_term_tdb_data(keyval
);
149 return tdb_chainlock_with_timeout_internal(tdb
, key
, timeout
, F_RDLCK
);
152 /****************************************************************************
153 Read unlock a chain by string.
154 ****************************************************************************/
156 void tdb_read_unlock_bystring(TDB_CONTEXT
*tdb
, const char *keyval
)
158 TDB_DATA key
= string_term_tdb_data(keyval
);
160 tdb_chainunlock_read(tdb
, key
);
164 /****************************************************************************
165 Fetch a int32 value by a arbitrary blob key, return -1 if not found.
166 Output is int32 in native byte order.
167 ****************************************************************************/
169 int32
tdb_fetch_int32_byblob(TDB_CONTEXT
*tdb
, TDB_DATA key
)
174 data
= tdb_fetch(tdb
, key
);
175 if (!data
.dptr
|| data
.dsize
!= sizeof(int32
)) {
176 SAFE_FREE(data
.dptr
);
180 ret
= IVAL(data
.dptr
,0);
181 SAFE_FREE(data
.dptr
);
185 /****************************************************************************
186 Fetch a int32 value by string key, return -1 if not found.
187 Output is int32 in native byte order.
188 ****************************************************************************/
190 int32
tdb_fetch_int32(TDB_CONTEXT
*tdb
, const char *keystr
)
192 TDB_DATA key
= string_term_tdb_data(keystr
);
194 return tdb_fetch_int32_byblob(tdb
, key
);
197 /****************************************************************************
198 Store a int32 value by an arbitary blob key, return 0 on success, -1 on failure.
199 Input is int32 in native byte order. Output in tdb is in little-endian.
200 ****************************************************************************/
202 int tdb_store_int32_byblob(TDB_CONTEXT
*tdb
, TDB_DATA key
, int32 v
)
208 data
.dptr
= (uint8
*)&v_store
;
209 data
.dsize
= sizeof(int32
);
211 return tdb_store(tdb
, key
, data
, TDB_REPLACE
);
214 /****************************************************************************
215 Store a int32 value by string key, return 0 on success, -1 on failure.
216 Input is int32 in native byte order. Output in tdb is in little-endian.
217 ****************************************************************************/
219 int tdb_store_int32(TDB_CONTEXT
*tdb
, const char *keystr
, int32 v
)
221 TDB_DATA key
= string_term_tdb_data(keystr
);
223 return tdb_store_int32_byblob(tdb
, key
, v
);
226 /****************************************************************************
227 Fetch a uint32 value by a arbitrary blob key, return -1 if not found.
228 Output is uint32 in native byte order.
229 ****************************************************************************/
231 bool tdb_fetch_uint32_byblob(TDB_CONTEXT
*tdb
, TDB_DATA key
, uint32
*value
)
235 data
= tdb_fetch(tdb
, key
);
236 if (!data
.dptr
|| data
.dsize
!= sizeof(uint32
)) {
237 SAFE_FREE(data
.dptr
);
241 *value
= IVAL(data
.dptr
,0);
242 SAFE_FREE(data
.dptr
);
246 /****************************************************************************
247 Fetch a uint32 value by string key, return -1 if not found.
248 Output is uint32 in native byte order.
249 ****************************************************************************/
251 bool tdb_fetch_uint32(TDB_CONTEXT
*tdb
, const char *keystr
, uint32
*value
)
253 TDB_DATA key
= string_term_tdb_data(keystr
);
255 return tdb_fetch_uint32_byblob(tdb
, key
, value
);
258 /****************************************************************************
259 Store a uint32 value by an arbitary blob key, return 0 on success, -1 on failure.
260 Input is uint32 in native byte order. Output in tdb is in little-endian.
261 ****************************************************************************/
263 bool tdb_store_uint32_byblob(TDB_CONTEXT
*tdb
, TDB_DATA key
, uint32 value
)
269 SIVAL(&v_store
, 0, value
);
270 data
.dptr
= (uint8
*)&v_store
;
271 data
.dsize
= sizeof(uint32
);
273 if (tdb_store(tdb
, key
, data
, TDB_REPLACE
) == -1)
279 /****************************************************************************
280 Store a uint32 value by string key, return 0 on success, -1 on failure.
281 Input is uint32 in native byte order. Output in tdb is in little-endian.
282 ****************************************************************************/
284 bool tdb_store_uint32(TDB_CONTEXT
*tdb
, const char *keystr
, uint32 value
)
286 TDB_DATA key
= string_term_tdb_data(keystr
);
288 return tdb_store_uint32_byblob(tdb
, key
, value
);
290 /****************************************************************************
291 Store a buffer by a null terminated string key. Return 0 on success, -1
293 ****************************************************************************/
295 int tdb_store_bystring(TDB_CONTEXT
*tdb
, const char *keystr
, TDB_DATA data
, int flags
)
297 TDB_DATA key
= string_term_tdb_data(keystr
);
299 return tdb_store(tdb
, key
, data
, flags
);
302 int tdb_trans_store_bystring(TDB_CONTEXT
*tdb
, const char *keystr
,
303 TDB_DATA data
, int flags
)
305 TDB_DATA key
= string_term_tdb_data(keystr
);
307 return tdb_trans_store(tdb
, key
, data
, flags
);
310 /****************************************************************************
311 Fetch a buffer using a null terminated string key. Don't forget to call
312 free() on the result dptr.
313 ****************************************************************************/
315 TDB_DATA
tdb_fetch_bystring(TDB_CONTEXT
*tdb
, const char *keystr
)
317 TDB_DATA key
= string_term_tdb_data(keystr
);
319 return tdb_fetch(tdb
, key
);
322 /****************************************************************************
323 Delete an entry using a null terminated string key.
324 ****************************************************************************/
326 int tdb_delete_bystring(TDB_CONTEXT
*tdb
, const char *keystr
)
328 TDB_DATA key
= string_term_tdb_data(keystr
);
330 return tdb_delete(tdb
, key
);
333 /****************************************************************************
334 Atomic integer change. Returns old value. To create, set initial value in *oldval.
335 ****************************************************************************/
337 int32
tdb_change_int32_atomic(TDB_CONTEXT
*tdb
, const char *keystr
, int32
*oldval
, int32 change_val
)
342 if (tdb_lock_bystring(tdb
, keystr
) == -1)
345 if ((val
= tdb_fetch_int32(tdb
, keystr
)) == -1) {
346 /* The lookup failed */
347 if (tdb_error(tdb
) != TDB_ERR_NOEXIST
) {
348 /* but not because it didn't exist */
352 /* Start with 'old' value */
356 /* It worked, set return value (oldval) to tdb data */
360 /* Increment value for storage and return next time */
363 if (tdb_store_int32(tdb
, keystr
, val
) == -1)
370 tdb_unlock_bystring(tdb
, keystr
);
374 /****************************************************************************
375 Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval.
376 ****************************************************************************/
378 bool tdb_change_uint32_atomic(TDB_CONTEXT
*tdb
, const char *keystr
, uint32
*oldval
, uint32 change_val
)
383 if (tdb_lock_bystring(tdb
, keystr
) == -1)
386 if (!tdb_fetch_uint32(tdb
, keystr
, &val
)) {
388 if (tdb_error(tdb
) != TDB_ERR_NOEXIST
) {
389 /* and not because it didn't exist */
393 /* Start with 'old' value */
397 /* it worked, set return value (oldval) to tdb data */
402 /* get a new value to store */
405 if (!tdb_store_uint32(tdb
, keystr
, val
))
412 tdb_unlock_bystring(tdb
, keystr
);
416 /****************************************************************************
417 Useful pair of routines for packing/unpacking data consisting of
418 integers and strings.
419 ****************************************************************************/
421 size_t tdb_pack_va(uint8
*buf
, int bufsize
, const char *fmt
, va_list ap
)
432 const char *fmt0
= fmt
;
433 int bufsize0
= bufsize
;
436 switch ((c
= *fmt
++)) {
437 case 'b': /* unsigned 8-bit integer */
439 bt
= (uint8
)va_arg(ap
, int);
440 if (bufsize
&& bufsize
>= len
)
443 case 'w': /* unsigned 16-bit integer */
445 w
= (uint16
)va_arg(ap
, int);
446 if (bufsize
&& bufsize
>= len
)
449 case 'd': /* signed 32-bit integer (standard int in most systems) */
451 d
= va_arg(ap
, uint32
);
452 if (bufsize
&& bufsize
>= len
)
455 case 'p': /* pointer */
457 p
= va_arg(ap
, void *);
459 if (bufsize
&& bufsize
>= len
)
462 case 'P': /* null-terminated string */
463 s
= va_arg(ap
,char *);
466 if (bufsize
&& bufsize
>= len
)
469 case 'f': /* null-terminated string */
470 s
= va_arg(ap
,char *);
473 if (bufsize
&& bufsize
>= len
)
476 case 'B': /* fixed-length string */
478 s
= va_arg(ap
, char *);
480 if (bufsize
&& bufsize
>= len
) {
486 DEBUG(0,("Unknown tdb_pack format %c in %s\n",
499 DEBUG(18,("tdb_pack_va(%s, %d) -> %d\n",
500 fmt0
, bufsize0
, (int)PTR_DIFF(buf
, buf0
)));
502 return PTR_DIFF(buf
, buf0
);
505 size_t tdb_pack(uint8
*buf
, int bufsize
, const char *fmt
, ...)
511 result
= tdb_pack_va(buf
, bufsize
, fmt
, ap
);
516 bool tdb_pack_append(TALLOC_CTX
*mem_ctx
, uint8
**buf
, size_t *len
,
517 const char *fmt
, ...)
523 len1
= tdb_pack_va(NULL
, 0, fmt
, ap
);
526 if (mem_ctx
!= NULL
) {
527 *buf
= TALLOC_REALLOC_ARRAY(mem_ctx
, *buf
, uint8
,
530 *buf
= SMB_REALLOC_ARRAY(*buf
, uint8
, (*len
) + len1
);
538 len2
= tdb_pack_va((*buf
)+(*len
), len1
, fmt
, ap
);
550 /****************************************************************************
551 Useful pair of routines for packing/unpacking data consisting of
552 integers and strings.
553 ****************************************************************************/
555 int tdb_unpack(const uint8
*buf
, int bufsize
, const char *fmt
, ...)
566 const uint8
*buf0
= buf
;
567 const char *fmt0
= fmt
;
568 int bufsize0
= bufsize
;
573 switch ((c
=*fmt
++)) {
576 bt
= va_arg(ap
, uint8
*);
583 w
= va_arg(ap
, uint16
*);
590 d
= va_arg(ap
, uint32
*);
597 p
= va_arg(ap
, void **);
601 * This isn't a real pointer - only a token (1 or 0)
602 * to mark the fact a pointer is present.
605 *p
= (void *)(IVAL(buf
, 0) ? (void *)1 : NULL
);
608 /* Return malloc'ed string. */
609 ps
= va_arg(ap
,char **);
610 len
= strlen((const char *)buf
) + 1;
611 *ps
= SMB_STRDUP((const char *)buf
);
614 s
= va_arg(ap
,char *);
615 len
= strlen((const char *)buf
) + 1;
616 if (bufsize
< len
|| len
> sizeof(fstring
))
621 i
= va_arg(ap
, int *);
622 b
= va_arg(ap
, char **);
634 *b
= (char *)SMB_MALLOC(*i
);
637 memcpy(*b
, buf
+4, *i
);
640 DEBUG(0,("Unknown tdb_unpack format %c in %s\n",
653 DEBUG(18,("tdb_unpack(%s, %d) -> %d\n",
654 fmt0
, bufsize0
, (int)PTR_DIFF(buf
, buf0
)));
656 return PTR_DIFF(buf
, buf0
);
664 /****************************************************************************
665 Log tdb messages via DEBUG().
666 ****************************************************************************/
668 static void tdb_log(TDB_CONTEXT
*tdb
, enum tdb_debug_level level
, const char *format
, ...)
674 va_start(ap
, format
);
675 ret
= vasprintf(&ptr
, format
, ap
);
678 if ((ret
== -1) || !*ptr
)
681 DEBUG((int)level
, ("tdb(%s): %s", tdb_name(tdb
) ? tdb_name(tdb
) : "unnamed", ptr
));
685 /****************************************************************************
686 Like tdb_open() but also setup a logging function that redirects to
687 the samba DEBUG() system.
688 ****************************************************************************/
690 TDB_CONTEXT
*tdb_open_log(const char *name
, int hash_size
, int tdb_flags
,
691 int open_flags
, mode_t mode
)
694 struct tdb_logging_context log_ctx
;
697 tdb_flags
|= TDB_NOMMAP
;
699 log_ctx
.log_fn
= tdb_log
;
700 log_ctx
.log_private
= NULL
;
702 if ((hash_size
== 0) && (name
!= NULL
)) {
703 const char *base
= strrchr_m(name
, '/');
710 hash_size
= lp_parm_int(-1, "tdb_hashsize", base
, 0);
713 tdb
= tdb_open_ex(name
, hash_size
, tdb_flags
,
714 open_flags
, mode
, &log_ctx
, NULL
);
721 /****************************************************************************
722 Allow tdb_delete to be used as a tdb_traversal_fn.
723 ****************************************************************************/
725 int tdb_traverse_delete_fn(TDB_CONTEXT
*the_tdb
, TDB_DATA key
, TDB_DATA dbuf
,
728 return tdb_delete(the_tdb
, key
);
734 * Search across the whole tdb for keys that match the given pattern
735 * return the result as a list of keys
737 * @param tdb pointer to opened tdb file context
738 * @param pattern searching pattern used by fnmatch(3) functions
740 * @return list of keys found by looking up with given pattern
742 TDB_LIST_NODE
*tdb_search_keys(TDB_CONTEXT
*tdb
, const char* pattern
)
745 TDB_LIST_NODE
*list
= NULL
;
746 TDB_LIST_NODE
*rec
= NULL
;
748 for (key
= tdb_firstkey(tdb
); key
.dptr
; key
= next
) {
749 /* duplicate key string to ensure null-termination */
750 char *key_str
= SMB_STRNDUP((const char *)key
.dptr
, key
.dsize
);
752 DEBUG(0, ("tdb_search_keys: strndup() failed!\n"));
753 smb_panic("strndup failed!\n");
756 DEBUG(18, ("checking %s for match to pattern %s\n", key_str
, pattern
));
758 next
= tdb_nextkey(tdb
, key
);
760 /* do the pattern checking */
761 if (fnmatch(pattern
, key_str
, 0) == 0) {
762 rec
= SMB_MALLOC_P(TDB_LIST_NODE
);
767 DLIST_ADD_END(list
, rec
, TDB_LIST_NODE
*);
769 DEBUG(18, ("checking %s matched pattern %s\n", key_str
, pattern
));
774 /* free duplicated key string */
784 * Free the list returned by tdb_search_keys
786 * @param node list of results found by tdb_search_keys
788 void tdb_search_list_free(TDB_LIST_NODE
* node
)
790 TDB_LIST_NODE
*next_node
;
793 next_node
= node
->next
;
794 SAFE_FREE(node
->node_key
.dptr
);
800 /****************************************************************************
801 tdb_store, wrapped in a transaction. This way we make sure that a process
802 that dies within writing does not leave a corrupt tdb behind.
803 ****************************************************************************/
805 int tdb_trans_store(struct tdb_context
*tdb
, TDB_DATA key
, TDB_DATA dbuf
,
810 if ((res
= tdb_transaction_start(tdb
)) != 0) {
811 DEBUG(5, ("tdb_transaction_start failed\n"));
815 if ((res
= tdb_store(tdb
, key
, dbuf
, flag
)) != 0) {
816 DEBUG(10, ("tdb_store failed\n"));
817 if (tdb_transaction_cancel(tdb
) != 0) {
818 smb_panic("Cancelling transaction failed");
823 if ((res
= tdb_transaction_commit(tdb
)) != 0) {
824 DEBUG(5, ("tdb_transaction_commit failed\n"));
830 /****************************************************************************
831 tdb_delete, wrapped in a transaction. This way we make sure that a process
832 that dies within deleting does not leave a corrupt tdb behind.
833 ****************************************************************************/
835 int tdb_trans_delete(struct tdb_context
*tdb
, TDB_DATA key
)
839 if ((res
= tdb_transaction_start(tdb
)) != 0) {
840 DEBUG(5, ("tdb_transaction_start failed\n"));
844 if ((res
= tdb_delete(tdb
, key
)) != 0) {
845 DEBUG(10, ("tdb_delete failed\n"));
846 if (tdb_transaction_cancel(tdb
) != 0) {
847 smb_panic("Cancelling transaction failed");
852 if ((res
= tdb_transaction_commit(tdb
)) != 0) {
853 DEBUG(5, ("tdb_transaction_commit failed\n"));
860 Log tdb messages via DEBUG().
862 static void tdb_wrap_log(TDB_CONTEXT
*tdb
, enum tdb_debug_level level
,
863 const char *format
, ...) PRINTF_ATTRIBUTE(3,4);
865 static void tdb_wrap_log(TDB_CONTEXT
*tdb
, enum tdb_debug_level level
,
866 const char *format
, ...)
874 case TDB_DEBUG_FATAL
:
877 case TDB_DEBUG_ERROR
:
880 case TDB_DEBUG_WARNING
:
883 case TDB_DEBUG_TRACE
:
890 va_start(ap
, format
);
891 ret
= vasprintf(&ptr
, format
, ap
);
895 const char *name
= tdb_name(tdb
);
896 DEBUG(debuglevel
, ("tdb(%s): %s", name
? name
: "unnamed", ptr
));
901 static struct tdb_wrap
*tdb_list
;
903 /* destroy the last connection to a tdb */
904 static int tdb_wrap_destructor(struct tdb_wrap
*w
)
907 DLIST_REMOVE(tdb_list
, w
);
912 wrapped connection to a tdb database
913 to close just talloc_free() the tdb_wrap pointer
915 struct tdb_wrap
*tdb_wrap_open(TALLOC_CTX
*mem_ctx
,
916 const char *name
, int hash_size
, int tdb_flags
,
917 int open_flags
, mode_t mode
)
920 struct tdb_logging_context log_ctx
;
921 log_ctx
.log_fn
= tdb_wrap_log
;
924 tdb_flags
|= TDB_NOMMAP
;
926 for (w
=tdb_list
;w
;w
=w
->next
) {
927 if (strcmp(name
, w
->name
) == 0) {
929 * Yes, talloc_reference is exactly what we want
930 * here. Otherwise we would have to implement our own
931 * reference counting.
933 return talloc_reference(mem_ctx
, w
);
937 w
= talloc(mem_ctx
, struct tdb_wrap
);
942 if (!(w
->name
= talloc_strdup(w
, name
))) {
947 if ((hash_size
== 0) && (name
!= NULL
)) {
948 const char *base
= strrchr_m(name
, '/');
955 hash_size
= lp_parm_int(-1, "tdb_hashsize", base
, 0);
958 w
->tdb
= tdb_open_ex(name
, hash_size
, tdb_flags
,
959 open_flags
, mode
, &log_ctx
, NULL
);
960 if (w
->tdb
== NULL
) {
965 talloc_set_destructor(w
, tdb_wrap_destructor
);
967 DLIST_ADD(tdb_list
, w
);
972 NTSTATUS
map_nt_error_from_tdb(enum TDB_ERROR err
)
974 struct { enum TDB_ERROR err
; NTSTATUS status
; } map
[] =
975 { { TDB_SUCCESS
, NT_STATUS_OK
},
976 { TDB_ERR_CORRUPT
, NT_STATUS_INTERNAL_DB_CORRUPTION
},
977 { TDB_ERR_IO
, NT_STATUS_UNEXPECTED_IO_ERROR
},
978 { TDB_ERR_OOM
, NT_STATUS_NO_MEMORY
},
979 { TDB_ERR_EXISTS
, NT_STATUS_OBJECT_NAME_COLLISION
},
982 * TDB_ERR_LOCK is very broad, we could for example
983 * distinguish between fcntl locks and invalid lock
984 * sequences. So NT_STATUS_FILE_LOCK_CONFLICT is a
987 { TDB_ERR_LOCK
, NT_STATUS_FILE_LOCK_CONFLICT
},
989 * The next two ones in the enum are not actually used
991 { TDB_ERR_NOLOCK
, NT_STATUS_FILE_LOCK_CONFLICT
},
992 { TDB_ERR_LOCK_TIMEOUT
, NT_STATUS_FILE_LOCK_CONFLICT
},
993 { TDB_ERR_NOEXIST
, NT_STATUS_NOT_FOUND
},
994 { TDB_ERR_EINVAL
, NT_STATUS_INVALID_PARAMETER
},
995 { TDB_ERR_RDONLY
, NT_STATUS_ACCESS_DENIED
}
1000 for (i
=0; i
< sizeof(map
) / sizeof(map
[0]); i
++) {
1001 if (err
== map
[i
].err
) {
1002 return map
[i
].status
;
1006 return NT_STATUS_INTERNAL_ERROR
;
1010 /*********************************************************************
1011 * the following is a generic validation mechanism for tdbs.
1012 *********************************************************************/
1015 * internal validation function, executed by the child.
1017 static int tdb_validate_child(struct tdb_context
*tdb
,
1018 tdb_validate_data_func validate_fn
)
1021 int num_entries
= 0;
1022 struct tdb_validation_status v_status
;
1024 v_status
.tdb_error
= False
;
1025 v_status
.bad_freelist
= False
;
1026 v_status
.bad_entry
= False
;
1027 v_status
.unknown_key
= False
;
1028 v_status
.success
= True
;
1031 v_status
.tdb_error
= True
;
1032 v_status
.success
= False
;
1036 /* Check if the tdb's freelist is good. */
1037 if (tdb_validate_freelist(tdb
, &num_entries
) == -1) {
1038 v_status
.bad_freelist
= True
;
1039 v_status
.success
= False
;
1043 DEBUG(10,("tdb_validate_child: tdb %s freelist has %d entries\n",
1044 tdb_name(tdb
), num_entries
));
1046 /* Now traverse the tdb to validate it. */
1047 num_entries
= tdb_traverse(tdb
, validate_fn
, (void *)&v_status
);
1048 if (!v_status
.success
) {
1050 } else if (num_entries
== -1) {
1051 v_status
.tdb_error
= True
;
1052 v_status
.success
= False
;
1056 DEBUG(10,("tdb_validate_child: tdb %s is good with %d entries\n",
1057 tdb_name(tdb
), num_entries
));
1058 ret
= 0; /* Cache is good. */
1061 DEBUG(10, ("tdb_validate_child: summary of validation status:\n"));
1062 DEBUGADD(10,(" * tdb error: %s\n", v_status
.tdb_error
? "yes" : "no"));
1063 DEBUGADD(10,(" * bad freelist: %s\n",v_status
.bad_freelist
?"yes":"no"));
1064 DEBUGADD(10,(" * bad entry: %s\n", v_status
.bad_entry
? "yes" : "no"));
1065 DEBUGADD(10,(" * unknown key: %s\n", v_status
.unknown_key
?"yes":"no"));
1066 DEBUGADD(10,(" => overall success: %s\n", v_status
.success
?"yes":"no"));
1072 * tdb validation function.
1073 * returns 0 if tdb is ok, != 0 if it isn't.
1074 * this function expects an opened tdb.
1076 int tdb_validate(struct tdb_context
*tdb
, tdb_validate_data_func validate_fn
)
1078 pid_t child_pid
= -1;
1079 int child_status
= 0;
1084 DEBUG(1, ("Error: tdb_validate called with tdb == NULL\n"));
1088 DEBUG(5, ("tdb_validate called for tdb '%s'\n", tdb_name(tdb
)));
1090 /* fork and let the child do the validation.
1091 * benefit: no need to twist signal handlers and panic functions.
1092 * just let the child panic. we catch the signal. */
1094 DEBUG(10, ("tdb_validate: forking to let child do validation.\n"));
1095 child_pid
= sys_fork();
1096 if (child_pid
== 0) {
1098 DEBUG(10, ("tdb_validate (validation child): created\n"));
1099 DEBUG(10, ("tdb_validate (validation child): "
1100 "calling tdb_validate_child\n"));
1101 exit(tdb_validate_child(tdb
, validate_fn
));
1103 else if (child_pid
< 0) {
1104 DEBUG(1, ("tdb_validate: fork for validation failed.\n"));
1110 DEBUG(10, ("tdb_validate: fork succeeded, child PID = %d\n",child_pid
));
1112 DEBUG(10, ("tdb_validate: waiting for child to finish...\n"));
1113 while ((wait_pid
= sys_waitpid(child_pid
, &child_status
, 0)) < 0) {
1114 if (errno
== EINTR
) {
1115 DEBUG(10, ("tdb_validate: got signal during waitpid, "
1120 DEBUG(1, ("tdb_validate: waitpid failed with error '%s'.\n",
1124 if (wait_pid
!= child_pid
) {
1125 DEBUG(1, ("tdb_validate: waitpid returned pid %d, "
1126 "but %d was expected\n", wait_pid
, child_pid
));
1130 DEBUG(10, ("tdb_validate: validating child returned.\n"));
1131 if (WIFEXITED(child_status
)) {
1132 DEBUG(10, ("tdb_validate: child exited, code %d.\n",
1133 WEXITSTATUS(child_status
)));
1134 ret
= WEXITSTATUS(child_status
);
1136 if (WIFSIGNALED(child_status
)) {
1137 DEBUG(10, ("tdb_validate: child terminated by signal %d\n",
1138 WTERMSIG(child_status
)));
1140 if (WCOREDUMP(child_status
)) {
1141 DEBUGADD(10, ("core dumped\n"));
1144 ret
= WTERMSIG(child_status
);
1146 if (WIFSTOPPED(child_status
)) {
1147 DEBUG(10, ("tdb_validate: child was stopped by signal %d\n",
1148 WSTOPSIG(child_status
)));
1149 ret
= WSTOPSIG(child_status
);
1153 DEBUG(5, ("tdb_validate returning code '%d' for tdb '%s'\n", ret
,
1160 * tdb validation function.
1161 * returns 0 if tdb is ok, != 0 if it isn't.
1162 * this is a wrapper around the actual validation function that opens and closes
1165 int tdb_validate_open(const char *tdb_path
, tdb_validate_data_func validate_fn
)
1167 TDB_CONTEXT
*tdb
= NULL
;
1170 DEBUG(5, ("tdb_validate_open called for tdb '%s'\n", tdb_path
));
1172 tdb
= tdb_open_log(tdb_path
, 0, TDB_DEFAULT
, O_RDONLY
, 0);
1174 DEBUG(1, ("Error opening tdb %s\n", tdb_path
));
1178 ret
= tdb_validate(tdb
, validate_fn
);
1184 * tdb backup function and helpers for tdb_validate wrapper with backup
1188 /* this structure eliminates the need for a global overall status for
1189 * the traverse-copy */
1190 struct tdb_copy_data
{
1191 struct tdb_context
*dst
;
1195 static int traverse_copy_fn(struct tdb_context
*tdb
, TDB_DATA key
,
1196 TDB_DATA dbuf
, void *private_data
)
1198 struct tdb_copy_data
*data
= (struct tdb_copy_data
*)private_data
;
1200 if (tdb_store(data
->dst
, key
, dbuf
, TDB_INSERT
) != 0) {
1201 DEBUG(4, ("Failed to insert into %s: %s\n", tdb_name(data
->dst
),
1203 data
->success
= False
;
1209 static int tdb_copy(struct tdb_context
*src
, struct tdb_context
*dst
)
1211 struct tdb_copy_data data
;
1215 data
.success
= True
;
1217 count
= tdb_traverse(src
, traverse_copy_fn
, (void *)(&data
));
1218 if ((count
< 0) || (data
.success
== False
)) {
1224 static int tdb_verify_basic(struct tdb_context
*tdb
)
1226 return tdb_traverse(tdb
, NULL
, NULL
);
1229 /* this backup function is essentially taken from lib/tdb/tools/tdbbackup.tdb
1231 static int tdb_backup(TALLOC_CTX
*ctx
, const char *src_path
,
1232 const char *dst_path
, int hash_size
)
1234 struct tdb_context
*src_tdb
= NULL
;
1235 struct tdb_context
*dst_tdb
= NULL
;
1236 char *tmp_path
= NULL
;
1239 int saved_errno
= 0;
1242 if (stat(src_path
, &st
) != 0) {
1243 DEBUG(3, ("Could not stat '%s': %s\n", src_path
,
1248 /* open old tdb RDWR - so we can lock it */
1249 src_tdb
= tdb_open_log(src_path
, 0, TDB_DEFAULT
, O_RDWR
, 0);
1250 if (src_tdb
== NULL
) {
1251 DEBUG(3, ("Failed to open tdb '%s'\n", src_path
));
1255 if (tdb_lockall(src_tdb
) != 0) {
1256 DEBUG(3, ("Failed to lock tdb '%s'\n", src_path
));
1260 tmp_path
= talloc_asprintf(ctx
, "%s%s", dst_path
, ".tmp");
1262 dst_tdb
= tdb_open_log(tmp_path
,
1263 hash_size
? hash_size
: tdb_hash_size(src_tdb
),
1264 TDB_DEFAULT
, O_RDWR
| O_CREAT
| O_EXCL
,
1266 if (dst_tdb
== NULL
) {
1267 DEBUG(3, ("Error creating tdb '%s': %s\n", tmp_path
,
1269 saved_errno
= errno
;
1274 count1
= tdb_copy(src_tdb
, dst_tdb
);
1276 DEBUG(3, ("Failed to copy tdb '%s': %s\n", src_path
,
1282 /* reopen ro and do basic verification */
1284 dst_tdb
= tdb_open_log(tmp_path
, 0, TDB_DEFAULT
, O_RDONLY
, 0);
1286 DEBUG(3, ("Failed to reopen tdb '%s': %s\n", tmp_path
,
1290 count2
= tdb_verify_basic(dst_tdb
);
1291 if (count2
!= count1
) {
1292 DEBUG(3, ("Failed to verify result of copying tdb '%s'.\n",
1298 DEBUG(10, ("tdb_backup: successfully copied %d entries\n", count1
));
1300 /* make sure the new tdb has reached stable storage
1301 * then rename it to its destination */
1302 fsync(tdb_fd(dst_tdb
));
1305 if (rename(tmp_path
, dst_path
) != 0) {
1306 DEBUG(3, ("Failed to rename '%s' to '%s': %s\n",
1307 tmp_path
, dst_path
, strerror(errno
)));
1315 if (src_tdb
!= NULL
) {
1318 if (tmp_path
!= NULL
) {
1320 TALLOC_FREE(tmp_path
);
1322 if (saved_errno
!= 0) {
1323 errno
= saved_errno
;
1328 static int rename_file_with_suffix(TALLOC_CTX
*ctx
, const char *path
,
1334 dst_path
= talloc_asprintf(ctx
, "%s%s", path
, suffix
);
1336 ret
= (rename(path
, dst_path
) != 0);
1339 DEBUG(5, ("moved '%s' to '%s'\n", path
, dst_path
));
1340 } else if (errno
== ENOENT
) {
1341 DEBUG(3, ("file '%s' does not exist - so not moved\n", path
));
1344 DEBUG(3, ("error renaming %s to %s: %s\n", path
, dst_path
,
1348 TALLOC_FREE(dst_path
);
1353 * do a backup of a tdb, moving the destination out of the way first
1355 static int tdb_backup_with_rotate(TALLOC_CTX
*ctx
, const char *src_path
,
1356 const char *dst_path
, int hash_size
,
1357 const char *rotate_suffix
,
1358 bool retry_norotate_if_nospc
,
1359 bool rename_as_last_resort_if_nospc
)
1363 rename_file_with_suffix(ctx
, dst_path
, rotate_suffix
);
1365 ret
= tdb_backup(ctx
, src_path
, dst_path
, hash_size
);
1368 DEBUG(10, ("backup of %s failed: %s\n", src_path
, strerror(errno
)));
1370 if ((ret
!= 0) && (errno
== ENOSPC
) && retry_norotate_if_nospc
)
1372 char *rotate_path
= talloc_asprintf(ctx
, "%s%s", dst_path
,
1374 DEBUG(10, ("backup of %s failed due to lack of space\n",
1376 DEBUGADD(10, ("trying to free some space by removing rotated "
1377 "dst %s\n", rotate_path
));
1378 if (unlink(rotate_path
) == -1) {
1379 DEBUG(10, ("unlink of %s failed: %s\n", rotate_path
,
1382 ret
= tdb_backup(ctx
, src_path
, dst_path
, hash_size
);
1384 TALLOC_FREE(rotate_path
);
1387 if ((ret
!= 0) && (errno
== ENOSPC
) && rename_as_last_resort_if_nospc
)
1389 DEBUG(10, ("backup of %s failed due to lack of space\n",
1391 DEBUGADD(10, ("using 'rename' as a last resort\n"));
1392 ret
= rename(src_path
, dst_path
);
1399 * validation function with backup handling:
1401 * - calls tdb_validate
1402 * - if the tdb is ok, create a backup "name.bak", possibly moving
1403 * existing backup to name.bak.old,
1404 * return 0 (success) even if the backup fails
1405 * - if the tdb is corrupt:
1406 * - move the tdb to "name.corrupt"
1407 * - check if there is valid backup.
1408 * if so, restore the backup.
1409 * if restore is successful, return 0 (success),
1410 * - otherwise return -1 (failure)
1412 int tdb_validate_and_backup(const char *tdb_path
,
1413 tdb_validate_data_func validate_fn
)
1416 const char *backup_suffix
= ".bak";
1417 const char *corrupt_suffix
= ".corrupt";
1418 const char *rotate_suffix
= ".old";
1419 char *tdb_path_backup
;
1421 TALLOC_CTX
*ctx
= NULL
;
1423 ctx
= talloc_new(NULL
);
1425 DEBUG(0, ("tdb_validate_and_backup: out of memory\n"));
1429 tdb_path_backup
= talloc_asprintf(ctx
, "%s%s", tdb_path
, backup_suffix
);
1431 ret
= tdb_validate_open(tdb_path
, validate_fn
);
1434 DEBUG(1, ("tdb '%s' is valid\n", tdb_path
));
1435 ret
= tdb_backup_with_rotate(ctx
, tdb_path
, tdb_path_backup
, 0,
1436 rotate_suffix
, True
, False
);
1438 DEBUG(1, ("Error creating backup of tdb '%s'\n",
1440 /* the actual validation was successful: */
1443 DEBUG(1, ("Created backup '%s' of tdb '%s'\n",
1444 tdb_path_backup
, tdb_path
));
1447 DEBUG(1, ("tdb '%s' is invalid\n", tdb_path
));
1449 ret
=stat(tdb_path_backup
, &st
);
1451 DEBUG(5, ("Could not stat '%s': %s\n", tdb_path_backup
,
1453 DEBUG(1, ("No backup found.\n"));
1455 DEBUG(1, ("backup '%s' found.\n", tdb_path_backup
));
1456 ret
= tdb_validate_open(tdb_path_backup
, validate_fn
);
1458 DEBUG(1, ("Backup '%s' is invalid.\n",
1464 int renamed
= rename_file_with_suffix(ctx
, tdb_path
,
1467 DEBUG(1, ("Error moving tdb to '%s%s'\n",
1468 tdb_path
, corrupt_suffix
));
1470 DEBUG(1, ("Corrupt tdb stored as '%s%s'\n",
1471 tdb_path
, corrupt_suffix
));
1476 DEBUG(1, ("valid backup '%s' found\n", tdb_path_backup
));
1477 ret
= tdb_backup_with_rotate(ctx
, tdb_path_backup
, tdb_path
, 0,
1478 corrupt_suffix
, True
, True
);
1480 DEBUG(1, ("Error restoring backup from '%s'\n",
1483 DEBUG(1, ("Restored tdb backup from '%s'\n",