Allow to set correct info level log prefix in duplicates of copy_id21_to_sam_passwd.
[Samba.git] / source / lib / dbwrap_tdb.c
blobda55049e52f9e09e7f0ae58e293dd74544d99b37
1 /*
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/>.
20 #include "includes.h"
22 struct db_tdb_ctx {
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,
42 data->key.dsize)));
44 if (tdb_chainunlock(ctx->wtdb->tdb, data->key) != 0) {
45 DEBUG(0, ("tdb_chainunlock failed\n"));
46 return -1;
48 return 0;
51 struct tdb_fetch_locked_state {
52 TALLOC_CTX *mem_ctx;
53 struct db_record *result;
56 static int db_tdb_fetchlock_parse(TDB_DATA key, TDB_DATA data,
57 void *private_data)
59 struct tdb_fetch_locked_state *state =
60 (struct tdb_fetch_locked_state *)private_data;
62 state->result = (struct db_record *)talloc_size(
63 state->mem_ctx,
64 sizeof(struct db_record) + key.dsize + data.dsize);
66 if (state->result == NULL) {
67 return 0;
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;
77 if (data.dsize > 0) {
78 state->result->value.dptr = state->result->key.dptr+key.dsize;
79 memcpy(state->result->value.dptr, data.dptr, data.dsize);
81 else {
82 state->result->value.dptr = NULL;
85 return 0;
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,
92 struct db_tdb_ctx);
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",
100 keystr));
101 TALLOC_FREE(keystr);
104 if (tdb_chainlock(ctx->wtdb->tdb, key) != 0) {
105 DEBUG(3, ("tdb_chainlock failed\n"));
106 return NULL;
109 state.mem_ctx = mem_ctx;
110 state.result = NULL;
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);
120 return NULL;
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));
131 return state.result;
134 struct tdb_fetch_state {
135 TALLOC_CTX *mem_ctx;
136 int result;
137 TDB_DATA data;
140 static int db_tdb_fetch_parse(TDB_DATA key, TDB_DATA data,
141 void *private_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,
147 data.dsize);
148 if (state->data.dptr == NULL) {
149 state->result = -1;
150 return 0;
153 state->data.dsize = data.dsize;
154 return 0;
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;
166 state.result = 0;
167 state.data = tdb_null;
169 tdb_parse_record(ctx->wtdb->tdb, key, db_tdb_fetch_parse, &state);
171 if (state.result == -1) {
172 return -1;
175 *pdata = state.data;
176 return 0;
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,
182 struct db_tdb_ctx);
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,
197 struct db_tdb_ctx);
199 if (tdb_delete(ctx->wtdb->tdb, rec->key) == 0) {
200 return NT_STATUS_OK;
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);
213 void *private_data;
216 static int db_tdb_traverse_func(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
217 void *private_data)
219 struct db_tdb_traverse_ctx *ctx =
220 (struct db_tdb_traverse_ctx *)private_data;
221 struct db_record rec;
223 rec.key = kbuf;
224 rec.value = dbuf;
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),
234 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;
240 ctx.db = db;
241 ctx.f = f;
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,
257 void *private_data)
259 struct db_tdb_traverse_ctx *ctx =
260 (struct db_tdb_traverse_ctx *)private_data;
261 struct db_record rec;
263 rec.key = kbuf;
264 rec.value = dbuf;
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),
274 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;
280 ctx.db = db;
281 ctx.f = f;
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 struct db_context *db_open_tdb(TALLOC_CTX *mem_ctx,
295 const char *name,
296 int hash_size, int tdb_flags,
297 int open_flags, mode_t mode)
299 struct db_context *result = NULL;
300 struct db_tdb_ctx *db_tdb;
302 result = TALLOC_ZERO_P(mem_ctx, struct db_context);
303 if (result == NULL) {
304 DEBUG(0, ("talloc failed\n"));
305 goto fail;
308 result->private_data = db_tdb = TALLOC_P(result, struct db_tdb_ctx);
309 if (db_tdb == NULL) {
310 DEBUG(0, ("talloc failed\n"));
311 goto fail;
314 db_tdb->wtdb = tdb_wrap_open(db_tdb, name, hash_size, tdb_flags,
315 open_flags, mode);
316 if (db_tdb->wtdb == NULL) {
317 DEBUG(3, ("Could not open tdb: %s\n", strerror(errno)));
318 goto fail;
321 result->fetch_locked = db_tdb_fetch_locked;
322 result->fetch = db_tdb_fetch;
323 result->traverse = db_tdb_traverse;
324 result->traverse_read = db_tdb_traverse_read;
325 result->get_seqnum = db_tdb_get_seqnum;
326 result->persistent = ((tdb_flags & TDB_CLEAR_IF_FIRST) == 0);
327 return result;
329 fail:
330 if (result != NULL) {
331 TALLOC_FREE(result);
333 return NULL;