r22775: For the cluster code I've developed a wrapper around tdb to put different
[samba.git] / source / lib / dbwrap_tdb.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Database interface wrapper around tdb
4    Copyright (C) Volker Lendecke 2005-2007
5    
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.
10    
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.
15    
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.
19 */
20
21 #include "includes.h"
22
23 struct db_tdb_ctx {
24         TDB_CONTEXT *tdb;
25 };
26
27 static NTSTATUS db_tdb_store(struct db_record *rec, TDB_DATA data, int flag);
28 static NTSTATUS db_tdb_delete(struct db_record *rec);
29
30 static int db_tdb_record_destr(struct db_record* data)
31 {
32         struct db_tdb_ctx *ctx =
33                 talloc_get_type_abort(data->private_data, struct db_tdb_ctx);
34
35         DEBUG(10, ("Unlocking key %s\n",
36                    hex_encode(data, (unsigned char *)data->key.dptr,
37                               data->key.dsize)));
38
39         if (tdb_chainunlock(ctx->tdb, data->key) != 0) {
40                 DEBUG(0, ("tdb_chainunlock failed\n"));
41                 return -1;
42         }
43         return 0;
44 }
45
46 static struct db_record *db_tdb_fetch_locked(struct db_context *db,
47                                      TALLOC_CTX *mem_ctx, TDB_DATA key)
48 {
49         struct db_tdb_ctx *ctx = talloc_get_type_abort(db->private_data,
50                                                        struct db_tdb_ctx);
51         struct db_record *result;
52         TDB_DATA value;
53
54         result = TALLOC_P(mem_ctx, struct db_record);
55         if (result == NULL) {
56                 DEBUG(0, ("talloc failed\n"));
57                 return NULL;
58         }
59
60         result->key.dsize = key.dsize;
61         result->key.dptr = (uint8 *)talloc_memdup(result, key.dptr, key.dsize);
62         if (result->key.dptr == NULL) {
63                 DEBUG(0, ("talloc failed\n"));
64                 TALLOC_FREE(result);
65                 return NULL;
66         }
67
68         result->value.dptr = NULL;
69         result->value.dsize = 0;
70         result->private_data = talloc_reference(result, ctx);
71         result->store = db_tdb_store;
72         result->delete_rec = db_tdb_delete;
73
74         {
75                 char *keystr = hex_encode(NULL, (unsigned char *)key.dptr,
76                                           key.dsize);
77                 DEBUG(10, ("Locking key %s\n", keystr));
78                 TALLOC_FREE(keystr);
79         }
80
81         if (tdb_chainlock(ctx->tdb, key) != 0) {
82                 DEBUG(3, ("tdb_chainlock failed\n"));
83                 TALLOC_FREE(result);
84                 return NULL;
85         }
86
87         talloc_set_destructor(result, db_tdb_record_destr);
88
89         value = tdb_fetch(ctx->tdb, key);
90
91         if (value.dptr == NULL) {
92                 return result;
93         }
94
95         result->value.dsize = value.dsize;
96         result->value.dptr = (uint8 *)talloc_memdup(result, value.dptr,
97                                                     value.dsize);
98         if (result->value.dptr == NULL) {
99                 DEBUG(3, ("talloc failed\n"));
100                 TALLOC_FREE(result);
101                 return NULL;
102         }
103
104         SAFE_FREE(value.dptr);
105
106         DEBUG(10, ("Allocated locked data 0x%p\n", result));
107
108         return result;
109 }
110
111 static NTSTATUS db_tdb_store(struct db_record *rec, TDB_DATA data, int flag)
112 {
113         struct db_tdb_ctx *ctx = talloc_get_type_abort(rec->private_data,
114                                                        struct db_tdb_ctx);
115
116         /*
117          * This has a bug: We need to replace rec->value for correct
118          * operation, but right now brlock and locking don't use the value
119          * anymore after it was stored.
120          */
121
122         return (tdb_store(ctx->tdb, rec->key, data, flag) == 0) ?
123                 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
124 }
125
126 static NTSTATUS db_tdb_delete(struct db_record *rec)
127 {
128         struct db_tdb_ctx *ctx = talloc_get_type_abort(rec->private_data,
129                                                        struct db_tdb_ctx);
130
131         return (tdb_delete(ctx->tdb, rec->key) == 0) ?
132                 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
133 }
134
135 struct db_tdb_traverse_ctx {
136         struct db_context *db;
137         int (*f)(struct db_record *rec, void *private_data);
138         void *private_data;
139 };
140
141 static int db_tdb_traverse_func(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
142                                 void *private_data)
143 {
144         struct db_tdb_traverse_ctx *ctx =
145                 (struct db_tdb_traverse_ctx *)private_data;
146         struct db_record rec;
147
148         rec.key = kbuf;
149         rec.value = dbuf;
150         rec.store = db_tdb_store;
151         rec.delete_rec = db_tdb_delete;
152         rec.private_data = ctx->db->private_data;
153
154         return ctx->f(&rec, ctx->private_data);
155 }
156
157 static int db_tdb_traverse(struct db_context *db,
158                            int (*f)(struct db_record *rec, void *private_data),
159                            void *private_data)
160 {
161         struct db_tdb_ctx *db_ctx =
162                 talloc_get_type_abort(db->private_data, struct db_tdb_ctx);
163         struct db_tdb_traverse_ctx ctx;
164
165         ctx.db = db;
166         ctx.f = f;
167         ctx.private_data = private_data;
168         return tdb_traverse(db_ctx->tdb, db_tdb_traverse_func, &ctx);
169 }
170
171 static int db_tdb_get_seqnum(struct db_context *db)
172
173 {
174         struct db_tdb_ctx *db_ctx =
175                 talloc_get_type_abort(db->private_data, struct db_tdb_ctx);
176         return tdb_get_seqnum(db_ctx->tdb);
177 }
178
179 static int db_tdb_ctx_destr(struct db_tdb_ctx *ctx)
180 {
181         if (tdb_close(ctx->tdb) != 0) {
182                 DEBUG(0, ("Failed to close tdb: %s\n", strerror(errno)));
183                 return -1;
184         }
185
186         return 0;
187 }
188
189 struct db_context *db_open_tdb(TALLOC_CTX *mem_ctx,
190                                const char *name,
191                                int hash_size, int tdb_flags,
192                                int open_flags, mode_t mode)
193 {
194         struct db_context *result = NULL;
195         struct db_tdb_ctx *db_tdb;
196
197         result = TALLOC_ZERO_P(mem_ctx, struct db_context);
198         if (result == NULL) {
199                 DEBUG(0, ("talloc failed\n"));
200                 goto fail;
201         }
202
203         result->private_data = db_tdb = TALLOC_P(result, struct db_tdb_ctx);
204         if (db_tdb == NULL) {
205                 DEBUG(0, ("talloc failed\n"));
206                 goto fail;
207         }
208
209         db_tdb->tdb = tdb_open_log(name, hash_size, tdb_flags,
210                                    open_flags, mode);
211         if (db_tdb->tdb == NULL) {
212                 DEBUG(3, ("Could not open tdb: %s\n", strerror(errno)));
213                 goto fail;
214         }
215
216         talloc_set_destructor(db_tdb, db_tdb_ctx_destr);
217         result->fetch_locked = db_tdb_fetch_locked;
218         result->traverse = db_tdb_traverse;
219         result->get_seqnum = db_tdb_get_seqnum;
220         return result;
221
222  fail:
223         if (result != NULL) {
224                 TALLOC_FREE(result);
225         }
226         return NULL;
227 }