2 Unix SMB/CIFS implementation.
3 Database interface wrapper around tdb
4 Copyright (C) Volker Lendecke 2005-2007
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 3 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, see <http://www.gnu.org/licenses/>.
23 struct tdb_wrap
*wtdb
;
26 static NTSTATUS
db_tdb_store(struct db_record
*rec
, TDB_DATA data
, int flag
);
27 static NTSTATUS
db_tdb_delete(struct db_record
*rec
);
29 static int db_tdb_record_destr(struct db_record
* data
)
31 struct db_tdb_ctx
*ctx
=
32 talloc_get_type_abort(data
->private_data
, struct db_tdb_ctx
);
34 /* This hex_encode() call allocates memory on data context. By way how current
35 __talloc_free() code works, it is OK to allocate in the destructor as
36 the children of data will be freed after call to the destructor and this
37 new 'child' will be caught and freed correctly.
39 DEBUG(10, (DEBUGLEVEL
> 10
40 ? "Unlocking key %s\n" : "Unlocking key %.20s\n",
41 hex_encode(data
, (unsigned char *)data
->key
.dptr
,
44 if (tdb_chainunlock(ctx
->wtdb
->tdb
, data
->key
) != 0) {
45 DEBUG(0, ("tdb_chainunlock failed\n"));
51 struct tdb_fetch_locked_state
{
53 struct db_record
*result
;
56 static int db_tdb_fetchlock_parse(TDB_DATA key
, TDB_DATA data
,
59 struct tdb_fetch_locked_state
*state
=
60 (struct tdb_fetch_locked_state
*)private_data
;
62 state
->result
= (struct db_record
*)talloc_size(
64 sizeof(struct db_record
) + key
.dsize
+ data
.dsize
);
66 if (state
->result
== NULL
) {
70 state
->result
->key
.dsize
= key
.dsize
;
71 state
->result
->key
.dptr
= ((uint8
*)state
->result
)
72 + sizeof(struct db_record
);
73 memcpy(state
->result
->key
.dptr
, key
.dptr
, key
.dsize
);
75 state
->result
->value
.dsize
= data
.dsize
;
78 state
->result
->value
.dptr
= state
->result
->key
.dptr
+key
.dsize
;
79 memcpy(state
->result
->value
.dptr
, data
.dptr
, data
.dsize
);
82 state
->result
->value
.dptr
= NULL
;
88 static struct db_record
*db_tdb_fetch_locked(struct db_context
*db
,
89 TALLOC_CTX
*mem_ctx
, TDB_DATA key
)
91 struct db_tdb_ctx
*ctx
= talloc_get_type_abort(db
->private_data
,
93 struct tdb_fetch_locked_state state
;
95 /* Do not accidently allocate/deallocate w/o need when debug level is lower than needed */
96 if(DEBUGLEVEL
>= 10) {
97 char *keystr
= hex_encode(NULL
, (unsigned char*)key
.dptr
, key
.dsize
);
98 DEBUG(10, (DEBUGLEVEL
> 10
99 ? "Locking key %s\n" : "Locking key %.20s\n",
104 if (tdb_chainlock(ctx
->wtdb
->tdb
, key
) != 0) {
105 DEBUG(3, ("tdb_chainlock failed\n"));
109 state
.mem_ctx
= mem_ctx
;
112 tdb_parse_record(ctx
->wtdb
->tdb
, key
, db_tdb_fetchlock_parse
, &state
);
114 if (state
.result
== NULL
) {
115 db_tdb_fetchlock_parse(key
, tdb_null
, &state
);
118 if (state
.result
== NULL
) {
119 tdb_chainunlock(ctx
->wtdb
->tdb
, key
);
123 talloc_set_destructor(state
.result
, db_tdb_record_destr
);
125 state
.result
->private_data
= talloc_reference(state
.result
, ctx
);
126 state
.result
->store
= db_tdb_store
;
127 state
.result
->delete_rec
= db_tdb_delete
;
129 DEBUG(10, ("Allocated locked data 0x%p\n", state
.result
));
134 struct tdb_fetch_state
{
140 static int db_tdb_fetch_parse(TDB_DATA key
, TDB_DATA data
,
143 struct tdb_fetch_state
*state
=
144 (struct tdb_fetch_state
*)private_data
;
146 state
->data
.dptr
= (uint8
*)talloc_memdup(state
->mem_ctx
, data
.dptr
,
148 if (state
->data
.dptr
== NULL
) {
153 state
->data
.dsize
= data
.dsize
;
157 static int db_tdb_fetch(struct db_context
*db
, TALLOC_CTX
*mem_ctx
,
158 TDB_DATA key
, TDB_DATA
*pdata
)
160 struct db_tdb_ctx
*ctx
= talloc_get_type_abort(
161 db
->private_data
, struct db_tdb_ctx
);
163 struct tdb_fetch_state state
;
165 state
.mem_ctx
= mem_ctx
;
167 state
.data
= tdb_null
;
169 tdb_parse_record(ctx
->wtdb
->tdb
, key
, db_tdb_fetch_parse
, &state
);
171 if (state
.result
== -1) {
179 static NTSTATUS
db_tdb_store(struct db_record
*rec
, TDB_DATA data
, int flag
)
181 struct db_tdb_ctx
*ctx
= talloc_get_type_abort(rec
->private_data
,
185 * This has a bug: We need to replace rec->value for correct
186 * operation, but right now brlock and locking don't use the value
187 * anymore after it was stored.
190 return (tdb_store(ctx
->wtdb
->tdb
, rec
->key
, data
, flag
) == 0) ?
191 NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
194 static NTSTATUS
db_tdb_delete(struct db_record
*rec
)
196 struct db_tdb_ctx
*ctx
= talloc_get_type_abort(rec
->private_data
,
199 if (tdb_delete(ctx
->wtdb
->tdb
, rec
->key
) == 0) {
203 if (tdb_error(ctx
->wtdb
->tdb
) == TDB_ERR_NOEXIST
) {
204 return NT_STATUS_NOT_FOUND
;
207 return NT_STATUS_UNSUCCESSFUL
;
210 struct db_tdb_traverse_ctx
{
211 struct db_context
*db
;
212 int (*f
)(struct db_record
*rec
, void *private_data
);
216 static int db_tdb_traverse_func(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, TDB_DATA dbuf
,
219 struct db_tdb_traverse_ctx
*ctx
=
220 (struct db_tdb_traverse_ctx
*)private_data
;
221 struct db_record rec
;
225 rec
.store
= db_tdb_store
;
226 rec
.delete_rec
= db_tdb_delete
;
227 rec
.private_data
= ctx
->db
->private_data
;
229 return ctx
->f(&rec
, ctx
->private_data
);
232 static int db_tdb_traverse(struct db_context
*db
,
233 int (*f
)(struct db_record
*rec
, void *private_data
),
236 struct db_tdb_ctx
*db_ctx
=
237 talloc_get_type_abort(db
->private_data
, struct db_tdb_ctx
);
238 struct db_tdb_traverse_ctx ctx
;
242 ctx
.private_data
= private_data
;
243 return tdb_traverse(db_ctx
->wtdb
->tdb
, db_tdb_traverse_func
, &ctx
);
246 static NTSTATUS
db_tdb_store_deny(struct db_record
*rec
, TDB_DATA data
, int flag
)
248 return NT_STATUS_MEDIA_WRITE_PROTECTED
;
251 static NTSTATUS
db_tdb_delete_deny(struct db_record
*rec
)
253 return NT_STATUS_MEDIA_WRITE_PROTECTED
;
256 static int db_tdb_traverse_read_func(TDB_CONTEXT
*tdb
, TDB_DATA kbuf
, TDB_DATA dbuf
,
259 struct db_tdb_traverse_ctx
*ctx
=
260 (struct db_tdb_traverse_ctx
*)private_data
;
261 struct db_record rec
;
265 rec
.store
= db_tdb_store_deny
;
266 rec
.delete_rec
= db_tdb_delete_deny
;
267 rec
.private_data
= ctx
->db
->private_data
;
269 return ctx
->f(&rec
, ctx
->private_data
);
272 static int db_tdb_traverse_read(struct db_context
*db
,
273 int (*f
)(struct db_record
*rec
, void *private_data
),
276 struct db_tdb_ctx
*db_ctx
=
277 talloc_get_type_abort(db
->private_data
, struct db_tdb_ctx
);
278 struct db_tdb_traverse_ctx ctx
;
282 ctx
.private_data
= private_data
;
283 return tdb_traverse_read(db_ctx
->wtdb
->tdb
, db_tdb_traverse_read_func
, &ctx
);
286 static int db_tdb_get_seqnum(struct db_context
*db
)
289 struct db_tdb_ctx
*db_ctx
=
290 talloc_get_type_abort(db
->private_data
, struct db_tdb_ctx
);
291 return tdb_get_seqnum(db_ctx
->wtdb
->tdb
);
294 static int db_tdb_transaction_start(struct db_context
*db
)
296 struct db_tdb_ctx
*db_ctx
=
297 talloc_get_type_abort(db
->private_data
, struct db_tdb_ctx
);
298 return tdb_transaction_start(db_ctx
->wtdb
->tdb
);
301 static int db_tdb_transaction_commit(struct db_context
*db
)
303 struct db_tdb_ctx
*db_ctx
=
304 talloc_get_type_abort(db
->private_data
, struct db_tdb_ctx
);
305 return tdb_transaction_commit(db_ctx
->wtdb
->tdb
);
308 static int db_tdb_transaction_cancel(struct db_context
*db
)
310 struct db_tdb_ctx
*db_ctx
=
311 talloc_get_type_abort(db
->private_data
, struct db_tdb_ctx
);
312 return tdb_transaction_cancel(db_ctx
->wtdb
->tdb
);
315 struct db_context
*db_open_tdb(TALLOC_CTX
*mem_ctx
,
317 int hash_size
, int tdb_flags
,
318 int open_flags
, mode_t mode
)
320 struct db_context
*result
= NULL
;
321 struct db_tdb_ctx
*db_tdb
;
323 result
= TALLOC_ZERO_P(mem_ctx
, struct db_context
);
324 if (result
== NULL
) {
325 DEBUG(0, ("talloc failed\n"));
329 result
->private_data
= db_tdb
= TALLOC_P(result
, struct db_tdb_ctx
);
330 if (db_tdb
== NULL
) {
331 DEBUG(0, ("talloc failed\n"));
335 db_tdb
->wtdb
= tdb_wrap_open(db_tdb
, name
, hash_size
, tdb_flags
,
337 if (db_tdb
->wtdb
== NULL
) {
338 DEBUG(3, ("Could not open tdb: %s\n", strerror(errno
)));
342 result
->fetch_locked
= db_tdb_fetch_locked
;
343 result
->fetch
= db_tdb_fetch
;
344 result
->traverse
= db_tdb_traverse
;
345 result
->traverse_read
= db_tdb_traverse_read
;
346 result
->get_seqnum
= db_tdb_get_seqnum
;
347 result
->persistent
= ((tdb_flags
& TDB_CLEAR_IF_FIRST
) == 0);
348 result
->transaction_start
= db_tdb_transaction_start
;
349 result
->transaction_commit
= db_tdb_transaction_commit
;
350 result
->transaction_cancel
= db_tdb_transaction_cancel
;
354 if (result
!= NULL
) {