s3:torture:delete: fix a comment
[Samba/gebeck_regimport.git] / source4 / lib / registry / ldb.c
blob0f0ddf915412897419e4935892259dc8078dbf43
1 /*
2 Unix SMB/CIFS implementation.
3 Registry interface
4 Copyright (C) 2004-2007, Jelmer Vernooij, jelmer@samba.org
5 Copyright (C) 2008-2010, Matthias Dieter Wallnöfer, mdw@samba.org
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/>.
21 #include "includes.h"
22 #include "registry.h"
23 #include <ldb.h>
24 #include <ldb_errors.h>
25 #include "ldb_wrap.h"
26 #include "librpc/gen_ndr/winreg.h"
27 #include "param/param.h"
29 static struct hive_operations reg_backend_ldb;
31 struct ldb_key_data
33 struct hive_key key;
34 struct ldb_context *ldb;
35 struct ldb_dn *dn;
36 struct ldb_message **subkeys, **values;
37 unsigned int subkey_count, value_count;
38 const char *classname;
41 static void reg_ldb_unpack_value(TALLOC_CTX *mem_ctx,
42 struct ldb_message *msg,
43 const char **name, uint32_t *type,
44 DATA_BLOB *data)
46 const struct ldb_val *val;
47 uint32_t value_type;
49 if (name != NULL) {
50 *name = talloc_strdup(mem_ctx,
51 ldb_msg_find_attr_as_string(msg, "value",
52 ""));
55 value_type = ldb_msg_find_attr_as_uint(msg, "type", 0);
56 *type = value_type;
58 val = ldb_msg_find_ldb_val(msg, "data");
60 switch (value_type)
62 case REG_SZ:
63 case REG_EXPAND_SZ:
64 if (val != NULL) {
65 /* The data should be provided as UTF16 string */
66 convert_string_talloc(mem_ctx, CH_UTF8, CH_UTF16,
67 val->data, val->length,
68 (void **)&data->data, &data->length);
69 } else {
70 data->data = NULL;
71 data->length = 0;
73 break;
75 case REG_DWORD:
76 case REG_DWORD_BIG_ENDIAN:
77 if (val != NULL) {
78 /* The data is a plain DWORD */
79 uint32_t tmp = strtoul((char *)val->data, NULL, 0);
80 data->data = talloc_size(mem_ctx, sizeof(uint32_t));
81 if (data->data != NULL) {
82 SIVAL(data->data, 0, tmp);
84 data->length = sizeof(uint32_t);
85 } else {
86 data->data = NULL;
87 data->length = 0;
89 break;
91 case REG_QWORD:
92 if (val != NULL) {
93 /* The data is a plain QWORD */
94 uint64_t tmp = strtoull((char *)val->data, NULL, 0);
95 data->data = talloc_size(mem_ctx, sizeof(uint64_t));
96 if (data->data != NULL) {
97 SBVAL(data->data, 0, tmp);
99 data->length = sizeof(uint64_t);
100 } else {
101 data->data = NULL;
102 data->length = 0;
104 break;
106 case REG_BINARY:
107 default:
108 if (val != NULL) {
109 data->data = talloc_memdup(mem_ctx, val->data,
110 val->length);
111 data->length = val->length;
112 } else {
113 data->data = NULL;
114 data->length = 0;
116 break;
120 static struct ldb_message *reg_ldb_pack_value(struct ldb_context *ctx,
121 TALLOC_CTX *mem_ctx,
122 const char *name,
123 uint32_t type, DATA_BLOB data)
125 struct ldb_message *msg;
126 char *name_dup, *type_str;
127 int ret;
129 msg = talloc_zero(mem_ctx, struct ldb_message);
130 if (msg == NULL) {
131 return NULL;
134 name_dup = talloc_strdup(msg, name);
135 if (name_dup == NULL) {
136 talloc_free(msg);
137 return NULL;
140 ret = ldb_msg_add_string(msg, "value", name_dup);
141 if (ret != LDB_SUCCESS) {
142 talloc_free(msg);
143 return NULL;
146 switch (type) {
147 case REG_SZ:
148 case REG_EXPAND_SZ:
149 if ((data.length > 0) && (data.data != NULL)) {
150 struct ldb_val *val;
151 bool ret2 = false;
153 val = talloc_zero(msg, struct ldb_val);
154 if (val == NULL) {
155 talloc_free(msg);
156 return NULL;
159 /* The data is provided as UTF16 string */
160 ret2 = convert_string_talloc(mem_ctx, CH_UTF16, CH_UTF8,
161 (void *)data.data, data.length,
162 (void **)&val->data, &val->length);
163 if (ret2) {
164 ret = ldb_msg_add_value(msg, "data", val, NULL);
165 } else {
166 /* workaround for non-standard data */
167 ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
169 } else {
170 ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
172 break;
174 case REG_DWORD:
175 case REG_DWORD_BIG_ENDIAN:
176 if ((data.length > 0) && (data.data != NULL)) {
177 if (data.length == sizeof(uint32_t)) {
178 char *conv_str;
180 conv_str = talloc_asprintf(msg, "0x%8.8x",
181 IVAL(data.data, 0));
182 if (conv_str == NULL) {
183 talloc_free(msg);
184 return NULL;
186 ret = ldb_msg_add_string(msg, "data", conv_str);
187 } else {
188 /* workaround for non-standard data */
189 talloc_free(msg);
190 return NULL;
192 } else {
193 ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
195 break;
197 case REG_QWORD:
198 if ((data.length > 0) && (data.data != NULL)) {
199 if (data.length == sizeof(uint64_t)) {
200 char *conv_str;
202 conv_str = talloc_asprintf(msg, "0x%16.16llx",
203 (unsigned long long)BVAL(data.data, 0));
204 if (conv_str == NULL) {
205 talloc_free(msg);
206 return NULL;
208 ret = ldb_msg_add_string(msg, "data", conv_str);
209 } else {
210 /* workaround for non-standard data */
211 talloc_free(msg);
212 return NULL;
215 } else {
216 ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
218 break;
220 case REG_BINARY:
221 default:
222 if ((data.length > 0) && (data.data != NULL)) {
223 ret = ldb_msg_add_value(msg, "data", &data, NULL);
224 } else {
225 ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
227 break;
230 if (ret != LDB_SUCCESS) {
231 talloc_free(msg);
232 return NULL;
235 type_str = talloc_asprintf(mem_ctx, "%u", type);
236 if (type_str == NULL) {
237 talloc_free(msg);
238 return NULL;
241 ret = ldb_msg_add_string(msg, "type", type_str);
242 if (ret != LDB_SUCCESS) {
243 talloc_free(msg);
244 return NULL;
247 return msg;
250 static char *reg_ldb_escape(TALLOC_CTX *mem_ctx, const char *value)
252 struct ldb_val val;
254 val.data = discard_const_p(uint8_t, value);
255 val.length = strlen(value);
257 return ldb_dn_escape_value(mem_ctx, val);
260 static int reg_close_ldb_key(struct ldb_key_data *key)
262 if (key->subkeys != NULL) {
263 talloc_free(key->subkeys);
264 key->subkeys = NULL;
267 if (key->values != NULL) {
268 talloc_free(key->values);
269 key->values = NULL;
271 return 0;
274 static struct ldb_dn *reg_path_to_ldb(TALLOC_CTX *mem_ctx,
275 const struct hive_key *from,
276 const char *path, const char *add)
278 struct ldb_dn *ret;
279 char *mypath;
280 char *begin;
281 struct ldb_key_data *kd = talloc_get_type(from, struct ldb_key_data);
282 struct ldb_context *ldb = kd->ldb;
284 mypath = talloc_strdup(mem_ctx, path);
285 if (mypath == NULL) {
286 return NULL;
289 ret = ldb_dn_new(mem_ctx, ldb, add);
290 if (!ldb_dn_validate(ret)) {
291 talloc_free(ret);
292 return NULL;
295 if (!ldb_dn_add_base(ret, kd->dn)) {
296 talloc_free(ret);
297 return NULL;
300 while (mypath[0] != '\0') {
301 begin = strchr(mypath, '\\');
302 if (begin != NULL) {
303 *begin = '\0';
306 if (!ldb_dn_add_child_fmt(ret, "key=%s",
307 reg_ldb_escape(mem_ctx, mypath))) {
308 talloc_free(ret);
309 return NULL;
312 if (begin != NULL) {
313 mypath = begin + 1;
314 } else {
315 break;
319 return ret;
322 static WERROR cache_subkeys(struct ldb_key_data *kd)
324 struct ldb_context *c = kd->ldb;
325 struct ldb_result *res;
326 int ret;
328 ret = ldb_search(c, c, &res, kd->dn, LDB_SCOPE_ONELEVEL,
329 NULL, "(key=*)");
330 if (ret != LDB_SUCCESS) {
331 DEBUG(0, ("Error getting subkeys for '%s': %s\n",
332 ldb_dn_get_linearized(kd->dn), ldb_errstring(c)));
333 return WERR_FOOBAR;
336 kd->subkey_count = res->count;
337 kd->subkeys = talloc_steal(kd, res->msgs);
338 talloc_free(res);
340 return WERR_OK;
343 static WERROR cache_values(struct ldb_key_data *kd)
345 struct ldb_context *c = kd->ldb;
346 struct ldb_result *res;
347 int ret;
349 ret = ldb_search(c, c, &res, kd->dn, LDB_SCOPE_ONELEVEL,
350 NULL, "(value=*)");
351 if (ret != LDB_SUCCESS) {
352 DEBUG(0, ("Error getting values for '%s': %s\n",
353 ldb_dn_get_linearized(kd->dn), ldb_errstring(c)));
354 return WERR_FOOBAR;
357 kd->value_count = res->count;
358 kd->values = talloc_steal(kd, res->msgs);
359 talloc_free(res);
361 return WERR_OK;
365 static WERROR ldb_get_subkey_by_id(TALLOC_CTX *mem_ctx,
366 const struct hive_key *k, uint32_t idx,
367 const char **name,
368 const char **classname,
369 NTTIME *last_mod_time)
371 struct ldb_key_data *kd = talloc_get_type(k, struct ldb_key_data);
373 /* Initialization */
374 if (name != NULL)
375 *name = NULL;
376 if (classname != NULL)
377 *classname = NULL;
378 if (last_mod_time != NULL)
379 *last_mod_time = 0; /* TODO: we need to add this to the
380 ldb backend properly */
382 /* Do a search if necessary */
383 if (kd->subkeys == NULL) {
384 W_ERROR_NOT_OK_RETURN(cache_subkeys(kd));
387 if (idx >= kd->subkey_count)
388 return WERR_NO_MORE_ITEMS;
390 if (name != NULL)
391 *name = talloc_strdup(mem_ctx,
392 ldb_msg_find_attr_as_string(kd->subkeys[idx], "key", NULL));
393 if (classname != NULL)
394 *classname = talloc_strdup(mem_ctx,
395 ldb_msg_find_attr_as_string(kd->subkeys[idx], "classname", NULL));
397 return WERR_OK;
400 static WERROR ldb_get_default_value(TALLOC_CTX *mem_ctx,
401 const struct hive_key *k,
402 const char **name, uint32_t *data_type,
403 DATA_BLOB *data)
405 struct ldb_key_data *kd = talloc_get_type(k, struct ldb_key_data);
406 struct ldb_context *c = kd->ldb;
407 const char* attrs[] = { "data", "type", NULL };
408 struct ldb_result *res;
409 int ret;
411 ret = ldb_search(c, mem_ctx, &res, kd->dn, LDB_SCOPE_BASE, attrs,
412 NULL);
414 if (ret != LDB_SUCCESS) {
415 DEBUG(0, ("Error getting default value for '%s': %s\n",
416 ldb_dn_get_linearized(kd->dn), ldb_errstring(c)));
417 return WERR_FOOBAR;
420 if (res->count == 0 || res->msgs[0]->num_elements == 0) {
421 talloc_free(res);
422 return WERR_BADFILE;
425 if ((data_type != NULL) && (data != NULL)) {
426 reg_ldb_unpack_value(mem_ctx, res->msgs[0], name, data_type,
427 data);
430 talloc_free(res);
432 return WERR_OK;
435 static WERROR ldb_get_value_by_id(TALLOC_CTX *mem_ctx, struct hive_key *k,
436 uint32_t idx, const char **name,
437 uint32_t *data_type, DATA_BLOB *data)
439 struct ldb_key_data *kd = talloc_get_type(k, struct ldb_key_data);
441 /* if the default value exists, give it back */
442 if (W_ERROR_IS_OK(ldb_get_default_value(mem_ctx, k, name, data_type,
443 data))) {
444 if (idx == 0)
445 return WERR_OK;
446 else
447 --idx;
450 /* Do the search if necessary */
451 if (kd->values == NULL) {
452 W_ERROR_NOT_OK_RETURN(cache_values(kd));
455 if (idx >= kd->value_count)
456 return WERR_NO_MORE_ITEMS;
458 reg_ldb_unpack_value(mem_ctx, kd->values[idx], name, data_type, data);
460 return WERR_OK;
463 static WERROR ldb_get_value(TALLOC_CTX *mem_ctx, struct hive_key *k,
464 const char *name, uint32_t *data_type,
465 DATA_BLOB *data)
467 struct ldb_key_data *kd = talloc_get_type(k, struct ldb_key_data);
468 const char *res_name;
469 uint32_t idx;
471 /* the default value was requested, give it back */
472 if (name[0] == '\0') {
473 return ldb_get_default_value(mem_ctx, k, NULL, data_type, data);
476 /* Do the search if necessary */
477 if (kd->values == NULL) {
478 W_ERROR_NOT_OK_RETURN(cache_values(kd));
481 for (idx = 0; idx < kd->value_count; idx++) {
482 res_name = ldb_msg_find_attr_as_string(kd->values[idx], "value",
483 "");
484 if (ldb_attr_cmp(name, res_name) == 0) {
485 reg_ldb_unpack_value(mem_ctx, kd->values[idx], NULL,
486 data_type, data);
487 return WERR_OK;
491 return WERR_BADFILE;
494 static WERROR ldb_open_key(TALLOC_CTX *mem_ctx, const struct hive_key *h,
495 const char *name, struct hive_key **key)
497 struct ldb_result *res;
498 struct ldb_dn *ldb_path;
499 int ret;
500 struct ldb_key_data *newkd;
501 struct ldb_key_data *kd = talloc_get_type(h, struct ldb_key_data);
502 struct ldb_context *c = kd->ldb;
504 ldb_path = reg_path_to_ldb(mem_ctx, h, name, NULL);
505 W_ERROR_HAVE_NO_MEMORY(ldb_path);
507 ret = ldb_search(c, mem_ctx, &res, ldb_path, LDB_SCOPE_BASE, NULL,
508 NULL);
510 if (ret != LDB_SUCCESS) {
511 DEBUG(3, ("Error opening key '%s': %s\n",
512 ldb_dn_get_linearized(ldb_path), ldb_errstring(c)));
513 return WERR_FOOBAR;
514 } else if (res->count == 0) {
515 DEBUG(3, ("Key '%s' not found\n",
516 ldb_dn_get_linearized(ldb_path)));
517 talloc_free(res);
518 return WERR_BADFILE;
521 newkd = talloc_zero(mem_ctx, struct ldb_key_data);
522 W_ERROR_HAVE_NO_MEMORY(newkd);
523 newkd->key.ops = &reg_backend_ldb;
524 newkd->ldb = talloc_reference(newkd, kd->ldb);
525 newkd->dn = ldb_dn_copy(newkd, res->msgs[0]->dn);
526 newkd->classname = talloc_steal(newkd,
527 ldb_msg_find_attr_as_string(res->msgs[0], "classname", NULL));
529 talloc_free(res);
531 *key = (struct hive_key *)newkd;
533 return WERR_OK;
536 WERROR reg_open_ldb_file(TALLOC_CTX *parent_ctx, const char *location,
537 struct auth_session_info *session_info,
538 struct cli_credentials *credentials,
539 struct tevent_context *ev_ctx,
540 struct loadparm_context *lp_ctx,
541 struct hive_key **k)
543 struct ldb_key_data *kd;
544 struct ldb_context *wrap;
545 struct ldb_message *attrs_msg;
547 if (location == NULL)
548 return WERR_INVALID_PARAM;
550 wrap = ldb_wrap_connect(parent_ctx, ev_ctx, lp_ctx,
551 location, session_info, credentials, 0);
553 if (wrap == NULL) {
554 DEBUG(1, (__FILE__": unable to connect\n"));
555 return WERR_FOOBAR;
558 attrs_msg = ldb_msg_new(wrap);
559 W_ERROR_HAVE_NO_MEMORY(attrs_msg);
560 attrs_msg->dn = ldb_dn_new(attrs_msg, wrap, "@ATTRIBUTES");
561 W_ERROR_HAVE_NO_MEMORY(attrs_msg->dn);
562 ldb_msg_add_string(attrs_msg, "key", "CASE_INSENSITIVE");
563 ldb_msg_add_string(attrs_msg, "value", "CASE_INSENSITIVE");
565 ldb_add(wrap, attrs_msg);
567 ldb_set_debug_stderr(wrap);
569 kd = talloc_zero(parent_ctx, struct ldb_key_data);
570 kd->key.ops = &reg_backend_ldb;
571 kd->ldb = talloc_reference(kd, wrap);
572 talloc_set_destructor (kd, reg_close_ldb_key);
573 kd->dn = ldb_dn_new(kd, wrap, "hive=NONE");
575 *k = (struct hive_key *)kd;
577 return WERR_OK;
580 static WERROR ldb_add_key(TALLOC_CTX *mem_ctx, const struct hive_key *parent,
581 const char *name, const char *classname,
582 struct security_descriptor *sd,
583 struct hive_key **newkey)
585 struct ldb_key_data *parentkd = discard_const_p(struct ldb_key_data, parent);
586 struct ldb_dn *ldb_path;
587 struct ldb_message *msg;
588 struct ldb_key_data *newkd;
589 int ret;
591 ldb_path = reg_path_to_ldb(mem_ctx, parent, name, NULL);
592 W_ERROR_HAVE_NO_MEMORY(ldb_path);
594 msg = ldb_msg_new(mem_ctx);
595 W_ERROR_HAVE_NO_MEMORY(msg);
597 msg->dn = ldb_path;
599 ldb_msg_add_string(msg, "key", name);
600 if (classname != NULL) {
601 ldb_msg_add_string(msg, "classname", classname);
604 ret = ldb_add(parentkd->ldb, msg);
606 talloc_free(msg);
608 if (ret == LDB_ERR_ENTRY_ALREADY_EXISTS) {
609 return WERR_ALREADY_EXISTS;
612 if (ret != LDB_SUCCESS) {
613 DEBUG(1, ("ldb_add: %s\n", ldb_errstring(parentkd->ldb)));
614 return WERR_FOOBAR;
617 DEBUG(2, ("key added: %s\n", ldb_dn_get_linearized(ldb_path)));
619 newkd = talloc_zero(mem_ctx, struct ldb_key_data);
620 W_ERROR_HAVE_NO_MEMORY(newkd);
621 newkd->ldb = talloc_reference(newkd, parentkd->ldb);
622 newkd->key.ops = &reg_backend_ldb;
623 newkd->dn = talloc_steal(newkd, ldb_path);
624 newkd->classname = talloc_steal(newkd, classname);
626 *newkey = (struct hive_key *)newkd;
628 /* reset cache */
629 talloc_free(parentkd->subkeys);
630 parentkd->subkeys = NULL;
632 return WERR_OK;
635 static WERROR ldb_del_value(TALLOC_CTX *mem_ctx, struct hive_key *key,
636 const char *child)
638 int ret;
639 struct ldb_key_data *kd = talloc_get_type(key, struct ldb_key_data);
640 struct ldb_message *msg;
641 struct ldb_dn *childdn;
643 if (child[0] == '\0') {
644 /* default value */
645 msg = talloc_zero(mem_ctx, struct ldb_message);
646 W_ERROR_HAVE_NO_MEMORY(msg);
647 msg->dn = ldb_dn_copy(msg, kd->dn);
648 W_ERROR_HAVE_NO_MEMORY(msg->dn);
649 ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
650 ldb_msg_add_empty(msg, "type", LDB_FLAG_MOD_DELETE, NULL);
652 ret = ldb_modify(kd->ldb, msg);
654 talloc_free(msg);
656 if (ret == LDB_ERR_NO_SUCH_ATTRIBUTE) {
657 return WERR_BADFILE;
658 } else if (ret != LDB_SUCCESS) {
659 DEBUG(1, ("ldb_del_value: %s\n", ldb_errstring(kd->ldb)));
660 return WERR_FOOBAR;
662 } else {
663 /* normal value */
664 childdn = ldb_dn_copy(kd->ldb, kd->dn);
665 if (!ldb_dn_add_child_fmt(childdn, "value=%s",
666 reg_ldb_escape(childdn, child)))
668 talloc_free(childdn);
669 return WERR_FOOBAR;
672 ret = ldb_delete(kd->ldb, childdn);
674 talloc_free(childdn);
676 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
677 return WERR_BADFILE;
678 } else if (ret != LDB_SUCCESS) {
679 DEBUG(1, ("ldb_del_value: %s\n", ldb_errstring(kd->ldb)));
680 return WERR_FOOBAR;
684 /* reset cache */
685 talloc_free(kd->values);
686 kd->values = NULL;
688 return WERR_OK;
691 static WERROR ldb_del_key(TALLOC_CTX *mem_ctx, const struct hive_key *key,
692 const char *name)
694 unsigned int i;
695 int ret;
696 struct ldb_key_data *parentkd = talloc_get_type(key, struct ldb_key_data);
697 struct ldb_dn *ldb_path;
698 struct ldb_context *c = parentkd->ldb;
699 struct ldb_result *res_keys;
700 struct ldb_result *res_vals;
701 WERROR werr;
702 struct hive_key *hk;
704 /* Verify key exists by opening it */
705 werr = ldb_open_key(mem_ctx, key, name, &hk);
706 if (!W_ERROR_IS_OK(werr)) {
707 return werr;
710 ldb_path = reg_path_to_ldb(mem_ctx, key, name, NULL);
711 W_ERROR_HAVE_NO_MEMORY(ldb_path);
713 /* Search for subkeys */
714 ret = ldb_search(c, mem_ctx, &res_keys, ldb_path, LDB_SCOPE_ONELEVEL,
715 NULL, "(key=*)");
717 if (ret != LDB_SUCCESS) {
718 DEBUG(0, ("Error getting subkeys for '%s': %s\n",
719 ldb_dn_get_linearized(ldb_path), ldb_errstring(c)));
720 return WERR_FOOBAR;
723 /* Search for values */
724 ret = ldb_search(c, mem_ctx, &res_vals, ldb_path, LDB_SCOPE_ONELEVEL,
725 NULL, "(value=*)");
727 if (ret != LDB_SUCCESS) {
728 DEBUG(0, ("Error getting values for '%s': %s\n",
729 ldb_dn_get_linearized(ldb_path), ldb_errstring(c)));
730 return WERR_FOOBAR;
733 /* Start an explicit transaction */
734 ret = ldb_transaction_start(c);
736 if (ret != LDB_SUCCESS) {
737 DEBUG(0, ("ldb_transaction_start: %s\n", ldb_errstring(c)));
738 return WERR_FOOBAR;
741 if (res_keys->count || res_vals->count)
743 /* Delete any subkeys */
744 for (i = 0; i < res_keys->count; i++)
746 werr = ldb_del_key(mem_ctx, hk,
747 ldb_msg_find_attr_as_string(
748 res_keys->msgs[i],
749 "key", NULL));
750 if (!W_ERROR_IS_OK(werr)) {
751 ret = ldb_transaction_cancel(c);
752 return werr;
756 /* Delete any values */
757 for (i = 0; i < res_vals->count; i++)
759 werr = ldb_del_value(mem_ctx, hk,
760 ldb_msg_find_attr_as_string(
761 res_vals->msgs[i],
762 "value", NULL));
763 if (!W_ERROR_IS_OK(werr)) {
764 ret = ldb_transaction_cancel(c);
765 return werr;
769 talloc_free(res_keys);
770 talloc_free(res_vals);
772 /* Delete the key itself */
773 ret = ldb_delete(c, ldb_path);
775 if (ret != LDB_SUCCESS)
777 DEBUG(1, ("ldb_del_key: %s\n", ldb_errstring(c)));
778 ret = ldb_transaction_cancel(c);
779 return WERR_FOOBAR;
782 /* Commit the transaction */
783 ret = ldb_transaction_commit(c);
785 if (ret != LDB_SUCCESS)
787 DEBUG(0, ("ldb_transaction_commit: %s\n", ldb_errstring(c)));
788 ret = ldb_transaction_cancel(c);
789 return WERR_FOOBAR;
792 /* reset cache */
793 talloc_free(parentkd->subkeys);
794 parentkd->subkeys = NULL;
796 return WERR_OK;
799 static WERROR ldb_set_value(struct hive_key *parent,
800 const char *name, uint32_t type,
801 const DATA_BLOB data)
803 struct ldb_message *msg;
804 struct ldb_key_data *kd = talloc_get_type(parent, struct ldb_key_data);
805 unsigned int i;
806 int ret;
807 TALLOC_CTX *mem_ctx = talloc_init("ldb_set_value");
809 msg = reg_ldb_pack_value(kd->ldb, mem_ctx, name, type, data);
810 W_ERROR_HAVE_NO_MEMORY(msg);
812 msg->dn = ldb_dn_copy(msg, kd->dn);
813 W_ERROR_HAVE_NO_MEMORY(msg->dn);
815 if (name[0] != '\0') {
816 /* For a default value, we add/overwrite the attributes to/of the hive.
817 For a normal value, we create a new child. */
818 if (!ldb_dn_add_child_fmt(msg->dn, "value=%s",
819 reg_ldb_escape(mem_ctx, name)))
821 talloc_free(mem_ctx);
822 return WERR_FOOBAR;
826 /* Try first a "modify" and if this doesn't work do try an "add" */
827 for (i = 0; i < msg->num_elements; i++) {
828 if (msg->elements[i].flags != LDB_FLAG_MOD_DELETE) {
829 msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
832 ret = ldb_modify(kd->ldb, msg);
833 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
834 i = 0;
835 while (i < msg->num_elements) {
836 if (LDB_FLAG_MOD_TYPE(msg->elements[i].flags) == LDB_FLAG_MOD_DELETE) {
837 ldb_msg_remove_element(msg, &msg->elements[i]);
838 } else {
839 ++i;
842 ret = ldb_add(kd->ldb, msg);
844 if (ret == LDB_ERR_NO_SUCH_ATTRIBUTE) {
845 /* ignore this -> the value didn't exist and also now doesn't */
846 ret = LDB_SUCCESS;
849 talloc_free(msg);
851 if (ret != LDB_SUCCESS) {
852 DEBUG(1, ("ldb_set_value: %s\n", ldb_errstring(kd->ldb)));
853 talloc_free(mem_ctx);
854 return WERR_FOOBAR;
857 /* reset cache */
858 talloc_free(kd->values);
859 kd->values = NULL;
861 talloc_free(mem_ctx);
862 return WERR_OK;
865 static WERROR ldb_get_key_info(TALLOC_CTX *mem_ctx,
866 const struct hive_key *key,
867 const char **classname,
868 uint32_t *num_subkeys,
869 uint32_t *num_values,
870 NTTIME *last_change_time,
871 uint32_t *max_subkeynamelen,
872 uint32_t *max_valnamelen,
873 uint32_t *max_valbufsize)
875 struct ldb_key_data *kd = talloc_get_type(key, struct ldb_key_data);
876 uint32_t default_value_type = REG_NONE;
877 DATA_BLOB default_value = { NULL, 0 };
878 WERROR werr;
880 /* Initialization */
881 if (classname != NULL)
882 *classname = NULL;
883 if (num_subkeys != NULL)
884 *num_subkeys = 0;
885 if (num_values != NULL)
886 *num_values = 0;
887 if (last_change_time != NULL)
888 *last_change_time = 0;
889 if (max_subkeynamelen != NULL)
890 *max_subkeynamelen = 0;
891 if (max_valnamelen != NULL)
892 *max_valnamelen = 0;
893 if (max_valbufsize != NULL)
894 *max_valbufsize = 0;
896 /* We need this to get the default value (if it exists) for counting
897 * the values under the key and for finding out the longest value buffer
898 * size. If no default value exists the DATA_BLOB "default_value" will
899 * remain { NULL, 0 }. */
900 werr = ldb_get_default_value(mem_ctx, key, NULL, &default_value_type,
901 &default_value);
902 if ((!W_ERROR_IS_OK(werr)) && (!W_ERROR_EQUAL(werr, WERR_BADFILE))) {
903 return werr;
906 if (kd->subkeys == NULL) {
907 W_ERROR_NOT_OK_RETURN(cache_subkeys(kd));
909 if (kd->values == NULL) {
910 W_ERROR_NOT_OK_RETURN(cache_values(kd));
913 if (classname != NULL) {
914 *classname = kd->classname;
917 if (num_subkeys != NULL) {
918 *num_subkeys = kd->subkey_count;
920 if (num_values != NULL) {
921 *num_values = kd->value_count;
922 /* also consider the default value if it exists */
923 if (default_value.data != NULL) {
924 ++(*num_values);
929 if (max_subkeynamelen != NULL) {
930 unsigned int i;
931 struct ldb_message_element *el;
933 for (i = 0; i < kd->subkey_count; i++) {
934 el = ldb_msg_find_element(kd->subkeys[i], "key");
935 *max_subkeynamelen = MAX(*max_subkeynamelen, el->values[0].length);
939 if (max_valnamelen != NULL || max_valbufsize != NULL) {
940 unsigned int i;
941 struct ldb_message_element *el;
942 W_ERROR_NOT_OK_RETURN(cache_values(kd));
944 /* also consider the default value if it exists */
945 if ((max_valbufsize != NULL) && (default_value.data != NULL)) {
946 *max_valbufsize = MAX(*max_valbufsize,
947 default_value.length);
950 for (i = 0; i < kd->value_count; i++) {
951 if (max_valnamelen != NULL) {
952 el = ldb_msg_find_element(kd->values[i], "value");
953 *max_valnamelen = MAX(*max_valnamelen, el->values[0].length);
956 if (max_valbufsize != NULL) {
957 uint32_t data_type;
958 DATA_BLOB data;
959 reg_ldb_unpack_value(mem_ctx,
960 kd->values[i], NULL,
961 &data_type, &data);
962 *max_valbufsize = MAX(*max_valbufsize, data.length);
963 talloc_free(data.data);
968 talloc_free(default_value.data);
970 return WERR_OK;
973 static struct hive_operations reg_backend_ldb = {
974 .name = "ldb",
975 .add_key = ldb_add_key,
976 .del_key = ldb_del_key,
977 .get_key_by_name = ldb_open_key,
978 .enum_value = ldb_get_value_by_id,
979 .enum_key = ldb_get_subkey_by_id,
980 .set_value = ldb_set_value,
981 .get_value_by_name = ldb_get_value,
982 .delete_value = ldb_del_value,
983 .get_key_info = ldb_get_key_info,