dbwrap: Fix Coverity ID 242750 Incorrect sizeof expression
[Samba/gebeck_regimport.git] / lib / dbwrap / dbwrap_rbt.c
blobd468953a8a854699b25d5f52b3cce43e06c321cc
1 /*
2 Unix SMB/CIFS implementation.
3 Database interface wrapper around red-black trees
4 Copyright (C) Volker Lendecke 2007, 2008
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"
21 #include "dbwrap/dbwrap.h"
22 #include "dbwrap/dbwrap_private.h"
23 #include "dbwrap/dbwrap_rbt.h"
24 #include "../lib/util/rbtree.h"
26 #define DBWRAP_RBT_ALIGN(_size_) (((_size_)+15)&~15)
28 struct db_rbt_ctx {
29 struct rb_root tree;
32 struct db_rbt_rec {
33 struct db_rbt_ctx *db_ctx;
34 struct db_rbt_node *node;
37 /* The structure that ends up in the tree */
39 struct db_rbt_node {
40 struct rb_node rb_node;
41 size_t keysize, valuesize;
44 * key and value are appended implicitly, "data" is only here as a
45 * target for offsetof()
48 char data[1];
52 * Hide the ugly pointer calculations in a function
55 static struct db_rbt_node *db_rbt2node(struct rb_node *node)
57 return (struct db_rbt_node *)
58 ((char *)node - offsetof(struct db_rbt_node, rb_node));
62 * Compare two keys
65 static int db_rbt_compare(TDB_DATA a, TDB_DATA b)
67 int res;
69 res = memcmp(a.dptr, b.dptr, MIN(a.dsize, b.dsize));
71 if ((res < 0) || ((res == 0) && (a.dsize < b.dsize))) {
72 return -1;
74 if ((res > 0) || ((res == 0) && (a.dsize > b.dsize))) {
75 return 1;
77 return 0;
81 * dissect a db_rbt_node into its implicit key and value parts
84 static void db_rbt_parse_node(struct db_rbt_node *node,
85 TDB_DATA *key, TDB_DATA *value)
87 key->dptr = ((uint8_t *)node) + offsetof(struct db_rbt_node, data);
88 key->dsize = node->keysize;
89 value->dptr = key->dptr + node->keysize;
90 value->dsize = node->valuesize;
93 static NTSTATUS db_rbt_store(struct db_record *rec, TDB_DATA data, int flag)
95 struct db_rbt_rec *rec_priv = (struct db_rbt_rec *)rec->private_data;
96 struct db_rbt_node *node;
98 struct rb_node ** p;
99 struct rb_node * parent;
101 TDB_DATA this_key, this_val;
103 if (rec_priv->node != NULL) {
106 * The record was around previously
109 db_rbt_parse_node(rec_priv->node, &this_key, &this_val);
111 SMB_ASSERT(this_key.dsize == rec->key.dsize);
112 SMB_ASSERT(memcmp(this_key.dptr, rec->key.dptr,
113 this_key.dsize) == 0);
115 if (this_val.dsize >= data.dsize) {
117 * The new value fits into the old space
119 memcpy(this_val.dptr, data.dptr, data.dsize);
120 rec_priv->node->valuesize = data.dsize;
121 return NT_STATUS_OK;
125 * We need to delete the key from the tree and start fresh,
126 * there's not enough space in the existing record
129 rb_erase(&rec_priv->node->rb_node, &rec_priv->db_ctx->tree);
132 * Keep the existing node around for a while: If the record
133 * existed before, we reference the key data in there.
137 node = (struct db_rbt_node *)talloc_size(rec_priv->db_ctx,
138 offsetof(struct db_rbt_node, data) + rec->key.dsize
139 + data.dsize);
141 if (node == NULL) {
142 TALLOC_FREE(rec_priv->node);
143 return NT_STATUS_NO_MEMORY;
146 ZERO_STRUCT(node->rb_node);
148 node->keysize = rec->key.dsize;
149 node->valuesize = data.dsize;
151 db_rbt_parse_node(node, &this_key, &this_val);
153 memcpy(this_key.dptr, rec->key.dptr, node->keysize);
154 TALLOC_FREE(rec_priv->node);
156 memcpy(this_val.dptr, data.dptr, node->valuesize);
158 parent = NULL;
159 p = &rec_priv->db_ctx->tree.rb_node;
161 while (*p) {
162 struct db_rbt_node *r;
163 TDB_DATA search_key, search_val;
164 int res;
166 parent = (*p);
168 r = db_rbt2node(*p);
170 db_rbt_parse_node(r, &search_key, &search_val);
172 res = db_rbt_compare(this_key, search_key);
174 if (res == -1) {
175 p = &(*p)->rb_left;
177 else if (res == 1) {
178 p = &(*p)->rb_right;
180 else {
181 smb_panic("someone messed with the tree");
185 rb_link_node(&node->rb_node, parent, p);
186 rb_insert_color(&node->rb_node, &rec_priv->db_ctx->tree);
188 return NT_STATUS_OK;
191 static NTSTATUS db_rbt_delete(struct db_record *rec)
193 struct db_rbt_rec *rec_priv = (struct db_rbt_rec *)rec->private_data;
195 if (rec_priv->node == NULL) {
196 return NT_STATUS_OK;
199 rb_erase(&rec_priv->node->rb_node, &rec_priv->db_ctx->tree);
200 TALLOC_FREE(rec_priv->node);
202 return NT_STATUS_OK;
204 struct db_rbt_search_result {
205 TDB_DATA key;
206 TDB_DATA val;
207 struct db_rbt_node* node;
210 static bool db_rbt_search_internal(struct db_context *db, TDB_DATA key,
211 struct db_rbt_search_result *result)
213 struct db_rbt_ctx *ctx = talloc_get_type_abort(
214 db->private_data, struct db_rbt_ctx);
216 struct rb_node *n;
217 bool found = false;
218 struct db_rbt_node *r = NULL;
219 TDB_DATA search_key, search_val;
221 n = ctx->tree.rb_node;
223 while (n != NULL) {
224 int res;
226 r = db_rbt2node(n);
228 db_rbt_parse_node(r, &search_key, &search_val);
230 res = db_rbt_compare(key, search_key);
232 if (res == -1) {
233 n = n->rb_left;
235 else if (res == 1) {
236 n = n->rb_right;
238 else {
239 found = true;
240 break;
243 if (result != NULL) {
244 if (found) {
245 result->key = search_key;
246 result->val = search_val;
247 result->node = r;
248 } else {
249 ZERO_STRUCT(*result);
252 return found;
255 static struct db_record *db_rbt_fetch_locked(struct db_context *db_ctx,
256 TALLOC_CTX *mem_ctx,
257 TDB_DATA key)
259 struct db_rbt_ctx *ctx = talloc_get_type_abort(
260 db_ctx->private_data, struct db_rbt_ctx);
262 struct db_rbt_rec *rec_priv;
263 struct db_record *result;
264 size_t size;
265 bool found;
266 struct db_rbt_search_result res;
268 found = db_rbt_search_internal(db_ctx, key, &res);
271 * In this low-level routine, play tricks to reduce the number of
272 * tallocs to one. Not recommened for general use, but here it pays
273 * off.
276 size = DBWRAP_RBT_ALIGN(sizeof(struct db_record))
277 + sizeof(struct db_rbt_rec);
279 if (!found) {
281 * We need to keep the key around for later store
283 size += key.dsize;
286 result = (struct db_record *)talloc_size(mem_ctx, size);
287 if (result == NULL) {
288 return NULL;
291 rec_priv = (struct db_rbt_rec *)
292 ((char *)result + DBWRAP_RBT_ALIGN(sizeof(struct db_record)));
293 rec_priv->db_ctx = ctx;
295 result->store = db_rbt_store;
296 result->delete_rec = db_rbt_delete;
297 result->private_data = rec_priv;
299 rec_priv->node = res.node;
300 result->value = res.val;
302 if (found) {
303 result->key = res.key;
305 else {
306 result->key.dptr = (uint8_t *)
307 ((char *)rec_priv + sizeof(*rec_priv));
308 result->key.dsize = key.dsize;
309 memcpy(result->key.dptr, key.dptr, key.dsize);
312 return result;
315 static int db_rbt_exists(struct db_context *db, TDB_DATA key)
317 return db_rbt_search_internal(db, key, NULL);
320 static int db_rbt_wipe(struct db_context *db)
322 struct db_rbt_ctx *old_ctx = talloc_get_type_abort(
323 db->private_data, struct db_rbt_ctx);
324 struct db_rbt_ctx *new_ctx = talloc_zero(db, struct db_rbt_ctx);
325 if (new_ctx == NULL) {
326 return -1;
328 db->private_data = new_ctx;
329 talloc_free(old_ctx);
330 return 0;
333 static NTSTATUS db_rbt_parse_record(struct db_context *db, TDB_DATA key,
334 void (*parser)(TDB_DATA key, TDB_DATA data,
335 void *private_data),
336 void *private_data)
338 struct db_rbt_search_result res;
339 bool found = db_rbt_search_internal(db, key, &res);
341 if (!found) {
342 return NT_STATUS_NOT_FOUND;
344 parser(res.key, res.val, private_data);
345 return NT_STATUS_OK;
348 static int db_rbt_traverse_internal(struct rb_node *n,
349 int (*f)(struct db_record *db,
350 void *private_data),
351 void *private_data, uint32_t* count)
353 struct db_rbt_node *r;
354 struct db_record rec;
355 int ret;
357 if (n == NULL) {
358 return 0;
361 ret = db_rbt_traverse_internal(n->rb_left, f, private_data, count);
362 if (ret != 0) {
363 return ret;
366 r = db_rbt2node(n);
367 ZERO_STRUCT(rec);
368 db_rbt_parse_node(r, &rec.key, &rec.value);
370 ret = f(&rec, private_data);
371 (*count) ++;
372 if (ret != 0) {
373 return ret;
376 return db_rbt_traverse_internal(n->rb_right, f, private_data, count);
379 static int db_rbt_traverse(struct db_context *db,
380 int (*f)(struct db_record *db,
381 void *private_data),
382 void *private_data)
384 struct db_rbt_ctx *ctx = talloc_get_type_abort(
385 db->private_data, struct db_rbt_ctx);
386 uint32_t count = 0;
388 int ret = db_rbt_traverse_internal(ctx->tree.rb_node, f, private_data, &count);
389 if (ret != 0) {
390 return -1;
392 if (count > INT_MAX) {
393 return -1;
395 return count;
398 static int db_rbt_get_seqnum(struct db_context *db)
400 return 0;
403 static int db_rbt_trans_dummy(struct db_context *db)
406 * Transactions are pretty pointless in-memory, just return success.
408 return 0;
411 static void db_rbt_id(struct db_context *db, const uint8_t **id, size_t *idlen)
413 *id = (uint8_t *)db;
414 *idlen = sizeof(struct db_context *);
417 struct db_context *db_open_rbt(TALLOC_CTX *mem_ctx)
419 struct db_context *result;
421 result = talloc(mem_ctx, struct db_context);
423 if (result == NULL) {
424 return NULL;
427 result->private_data = talloc_zero(result, struct db_rbt_ctx);
429 if (result->private_data == NULL) {
430 TALLOC_FREE(result);
431 return NULL;
434 result->fetch_locked = db_rbt_fetch_locked;
435 result->try_fetch_locked = NULL;
436 result->traverse = db_rbt_traverse;
437 result->traverse_read = db_rbt_traverse;
438 result->get_seqnum = db_rbt_get_seqnum;
439 result->transaction_start = db_rbt_trans_dummy;
440 result->transaction_commit = db_rbt_trans_dummy;
441 result->transaction_cancel = db_rbt_trans_dummy;
442 result->exists = db_rbt_exists;
443 result->wipe = db_rbt_wipe;
444 result->parse_record = db_rbt_parse_record;
445 result->lock_order = 0;
446 result->id = db_rbt_id;
447 result->stored_callback = NULL;
449 return result;