2 Unix SMB/CIFS implementation.
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/>.
24 #include <ldb_errors.h>
26 #include "librpc/gen_ndr/winreg.h"
27 #include "param/param.h"
29 static struct hive_operations reg_backend_ldb
;
34 struct ldb_context
*ldb
;
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
,
46 const struct ldb_val
*val
;
50 *name
= talloc_strdup(mem_ctx
,
51 ldb_msg_find_attr_as_string(msg
, "value",
55 value_type
= ldb_msg_find_attr_as_uint(msg
, "type", 0);
58 val
= ldb_msg_find_ldb_val(msg
, "data");
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
);
76 case REG_DWORD_BIG_ENDIAN
:
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);
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);
109 data
->data
= talloc_memdup(mem_ctx
, val
->data
,
111 data
->length
= val
->length
;
120 static struct ldb_message
*reg_ldb_pack_value(struct ldb_context
*ctx
,
123 uint32_t type
, DATA_BLOB data
)
125 struct ldb_message
*msg
;
126 char *name_dup
, *type_str
;
129 msg
= talloc_zero(mem_ctx
, struct ldb_message
);
134 name_dup
= talloc_strdup(msg
, name
);
135 if (name_dup
== NULL
) {
140 ret
= ldb_msg_add_string(msg
, "value", name_dup
);
141 if (ret
!= LDB_SUCCESS
) {
149 if ((data
.length
> 0) && (data
.data
!= NULL
)) {
153 val
= talloc_zero(msg
, struct ldb_val
);
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
);
164 ret
= ldb_msg_add_value(msg
, "data", val
, NULL
);
166 /* workaround for non-standard data */
167 ret
= ldb_msg_add_empty(msg
, "data", LDB_FLAG_MOD_DELETE
, NULL
);
170 ret
= ldb_msg_add_empty(msg
, "data", LDB_FLAG_MOD_DELETE
, NULL
);
175 case REG_DWORD_BIG_ENDIAN
:
176 if ((data
.length
> 0) && (data
.data
!= NULL
)) {
177 if (data
.length
== sizeof(uint32_t)) {
180 conv_str
= talloc_asprintf(msg
, "0x%8.8x",
182 if (conv_str
== NULL
) {
186 ret
= ldb_msg_add_string(msg
, "data", conv_str
);
188 /* workaround for non-standard data */
193 ret
= ldb_msg_add_empty(msg
, "data", LDB_FLAG_MOD_DELETE
, NULL
);
198 if ((data
.length
> 0) && (data
.data
!= NULL
)) {
199 if (data
.length
== sizeof(uint64_t)) {
202 conv_str
= talloc_asprintf(msg
, "0x%16.16llx",
203 (unsigned long long)BVAL(data
.data
, 0));
204 if (conv_str
== NULL
) {
208 ret
= ldb_msg_add_string(msg
, "data", conv_str
);
210 /* workaround for non-standard data */
216 ret
= ldb_msg_add_empty(msg
, "data", LDB_FLAG_MOD_DELETE
, NULL
);
222 if ((data
.length
> 0) && (data
.data
!= NULL
)) {
223 ret
= ldb_msg_add_value(msg
, "data", &data
, NULL
);
225 ret
= ldb_msg_add_empty(msg
, "data", LDB_FLAG_MOD_DELETE
, NULL
);
230 if (ret
!= LDB_SUCCESS
) {
235 type_str
= talloc_asprintf(mem_ctx
, "%u", type
);
236 if (type_str
== NULL
) {
241 ret
= ldb_msg_add_string(msg
, "type", type_str
);
242 if (ret
!= LDB_SUCCESS
) {
250 static char *reg_ldb_escape(TALLOC_CTX
*mem_ctx
, const char *value
)
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
);
267 if (key
->values
!= NULL
) {
268 talloc_free(key
->values
);
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
)
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
) {
289 ret
= ldb_dn_new(mem_ctx
, ldb
, add
);
290 if (!ldb_dn_validate(ret
)) {
295 if (!ldb_dn_add_base(ret
, kd
->dn
)) {
300 while (mypath
[0] != '\0') {
301 begin
= strchr(mypath
, '\\');
306 if (!ldb_dn_add_child_fmt(ret
, "key=%s",
307 reg_ldb_escape(mem_ctx
, mypath
))) {
322 static WERROR
cache_subkeys(struct ldb_key_data
*kd
)
324 struct ldb_context
*c
= kd
->ldb
;
325 struct ldb_result
*res
;
328 ret
= ldb_search(c
, c
, &res
, kd
->dn
, LDB_SCOPE_ONELEVEL
,
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
)));
336 kd
->subkey_count
= res
->count
;
337 kd
->subkeys
= talloc_steal(kd
, res
->msgs
);
343 static WERROR
cache_values(struct ldb_key_data
*kd
)
345 struct ldb_context
*c
= kd
->ldb
;
346 struct ldb_result
*res
;
349 ret
= ldb_search(c
, c
, &res
, kd
->dn
, LDB_SCOPE_ONELEVEL
,
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
)));
357 kd
->value_count
= res
->count
;
358 kd
->values
= talloc_steal(kd
, res
->msgs
);
365 static WERROR
ldb_get_subkey_by_id(TALLOC_CTX
*mem_ctx
,
366 const struct hive_key
*k
, uint32_t idx
,
368 const char **classname
,
369 NTTIME
*last_mod_time
)
371 struct ldb_key_data
*kd
= talloc_get_type(k
, struct ldb_key_data
);
376 if (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
;
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
));
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
,
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
;
411 ret
= ldb_search(c
, mem_ctx
, &res
, kd
->dn
, LDB_SCOPE_BASE
, attrs
,
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
)));
420 if (res
->count
== 0 || res
->msgs
[0]->num_elements
== 0) {
425 if ((data_type
!= NULL
) && (data
!= NULL
)) {
426 reg_ldb_unpack_value(mem_ctx
, res
->msgs
[0], name
, data_type
,
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
,
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
);
463 static WERROR
ldb_get_value(TALLOC_CTX
*mem_ctx
, struct hive_key
*k
,
464 const char *name
, uint32_t *data_type
,
467 struct ldb_key_data
*kd
= talloc_get_type(k
, struct ldb_key_data
);
468 const char *res_name
;
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",
484 if (ldb_attr_cmp(name
, res_name
) == 0) {
485 reg_ldb_unpack_value(mem_ctx
, kd
->values
[idx
], NULL
,
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
;
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
,
510 if (ret
!= LDB_SUCCESS
) {
511 DEBUG(3, ("Error opening key '%s': %s\n",
512 ldb_dn_get_linearized(ldb_path
), ldb_errstring(c
)));
514 } else if (res
->count
== 0) {
515 DEBUG(3, ("Key '%s' not found\n",
516 ldb_dn_get_linearized(ldb_path
)));
521 newkd
= talloc_zero(mem_ctx
, struct ldb_key_data
);
522 W_ERROR_HAVE_NO_MEMORY(newkd
);
523 newkd
->key
.ops
= ®_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
));
531 *key
= (struct hive_key
*)newkd
;
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
,
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);
554 DEBUG(1, (__FILE__
": unable to connect\n"));
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
= ®_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
;
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
;
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
);
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
);
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
)));
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
= ®_backend_ldb
;
623 newkd
->dn
= talloc_steal(newkd
, ldb_path
);
624 newkd
->classname
= talloc_steal(newkd
, classname
);
626 *newkey
= (struct hive_key
*)newkd
;
629 talloc_free(parentkd
->subkeys
);
630 parentkd
->subkeys
= NULL
;
635 static WERROR
ldb_del_value(TALLOC_CTX
*mem_ctx
, struct hive_key
*key
,
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') {
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 ret
= ldb_msg_add_empty(msg
, "data", LDB_FLAG_MOD_DELETE
, NULL
);
650 if (ret
!= LDB_SUCCESS
) {
653 ldb_msg_add_empty(msg
, "type", LDB_FLAG_MOD_DELETE
, NULL
);
654 if (ret
!= LDB_SUCCESS
) {
658 ret
= ldb_modify(kd
->ldb
, msg
);
662 if (ret
== LDB_ERR_NO_SUCH_ATTRIBUTE
) {
664 } else if (ret
!= LDB_SUCCESS
) {
665 DEBUG(1, ("ldb_del_value: %s\n", ldb_errstring(kd
->ldb
)));
670 childdn
= ldb_dn_copy(kd
->ldb
, kd
->dn
);
671 if (!ldb_dn_add_child_fmt(childdn
, "value=%s",
672 reg_ldb_escape(childdn
, child
)))
674 talloc_free(childdn
);
678 ret
= ldb_delete(kd
->ldb
, childdn
);
680 talloc_free(childdn
);
682 if (ret
== LDB_ERR_NO_SUCH_OBJECT
) {
684 } else if (ret
!= LDB_SUCCESS
) {
685 DEBUG(1, ("ldb_del_value: %s\n", ldb_errstring(kd
->ldb
)));
691 talloc_free(kd
->values
);
697 static WERROR
ldb_del_key(TALLOC_CTX
*mem_ctx
, const struct hive_key
*key
,
702 struct ldb_key_data
*parentkd
= talloc_get_type(key
, struct ldb_key_data
);
703 struct ldb_dn
*ldb_path
;
704 struct ldb_context
*c
= parentkd
->ldb
;
705 struct ldb_result
*res_keys
;
706 struct ldb_result
*res_vals
;
710 /* Verify key exists by opening it */
711 werr
= ldb_open_key(mem_ctx
, key
, name
, &hk
);
712 if (!W_ERROR_IS_OK(werr
)) {
716 ldb_path
= reg_path_to_ldb(mem_ctx
, key
, name
, NULL
);
717 W_ERROR_HAVE_NO_MEMORY(ldb_path
);
719 /* Search for subkeys */
720 ret
= ldb_search(c
, mem_ctx
, &res_keys
, ldb_path
, LDB_SCOPE_ONELEVEL
,
723 if (ret
!= LDB_SUCCESS
) {
724 DEBUG(0, ("Error getting subkeys for '%s': %s\n",
725 ldb_dn_get_linearized(ldb_path
), ldb_errstring(c
)));
729 /* Search for values */
730 ret
= ldb_search(c
, mem_ctx
, &res_vals
, ldb_path
, LDB_SCOPE_ONELEVEL
,
733 if (ret
!= LDB_SUCCESS
) {
734 DEBUG(0, ("Error getting values for '%s': %s\n",
735 ldb_dn_get_linearized(ldb_path
), ldb_errstring(c
)));
739 /* Start an explicit transaction */
740 ret
= ldb_transaction_start(c
);
742 if (ret
!= LDB_SUCCESS
) {
743 DEBUG(0, ("ldb_transaction_start: %s\n", ldb_errstring(c
)));
747 if (res_keys
->count
|| res_vals
->count
)
749 /* Delete any subkeys */
750 for (i
= 0; i
< res_keys
->count
; i
++)
752 werr
= ldb_del_key(mem_ctx
, hk
,
753 ldb_msg_find_attr_as_string(
756 if (!W_ERROR_IS_OK(werr
)) {
757 ret
= ldb_transaction_cancel(c
);
762 /* Delete any values */
763 for (i
= 0; i
< res_vals
->count
; i
++)
765 werr
= ldb_del_value(mem_ctx
, hk
,
766 ldb_msg_find_attr_as_string(
769 if (!W_ERROR_IS_OK(werr
)) {
770 ret
= ldb_transaction_cancel(c
);
775 talloc_free(res_keys
);
776 talloc_free(res_vals
);
778 /* Delete the key itself */
779 ret
= ldb_delete(c
, ldb_path
);
781 if (ret
!= LDB_SUCCESS
)
783 DEBUG(1, ("ldb_del_key: %s\n", ldb_errstring(c
)));
784 ret
= ldb_transaction_cancel(c
);
788 /* Commit the transaction */
789 ret
= ldb_transaction_commit(c
);
791 if (ret
!= LDB_SUCCESS
)
793 DEBUG(0, ("ldb_transaction_commit: %s\n", ldb_errstring(c
)));
794 ret
= ldb_transaction_cancel(c
);
799 talloc_free(parentkd
->subkeys
);
800 parentkd
->subkeys
= NULL
;
805 static WERROR
ldb_set_value(struct hive_key
*parent
,
806 const char *name
, uint32_t type
,
807 const DATA_BLOB data
)
809 struct ldb_message
*msg
;
810 struct ldb_key_data
*kd
= talloc_get_type(parent
, struct ldb_key_data
);
813 TALLOC_CTX
*mem_ctx
= talloc_init("ldb_set_value");
815 msg
= reg_ldb_pack_value(kd
->ldb
, mem_ctx
, name
, type
, data
);
816 W_ERROR_HAVE_NO_MEMORY(msg
);
818 msg
->dn
= ldb_dn_copy(msg
, kd
->dn
);
819 W_ERROR_HAVE_NO_MEMORY(msg
->dn
);
821 if (name
[0] != '\0') {
822 /* For a default value, we add/overwrite the attributes to/of the hive.
823 For a normal value, we create a new child. */
824 if (!ldb_dn_add_child_fmt(msg
->dn
, "value=%s",
825 reg_ldb_escape(mem_ctx
, name
)))
827 talloc_free(mem_ctx
);
832 /* Try first a "modify" and if this doesn't work do try an "add" */
833 for (i
= 0; i
< msg
->num_elements
; i
++) {
834 if (msg
->elements
[i
].flags
!= LDB_FLAG_MOD_DELETE
) {
835 msg
->elements
[i
].flags
= LDB_FLAG_MOD_REPLACE
;
838 ret
= ldb_modify(kd
->ldb
, msg
);
839 if (ret
== LDB_ERR_NO_SUCH_OBJECT
) {
841 while (i
< msg
->num_elements
) {
842 if (LDB_FLAG_MOD_TYPE(msg
->elements
[i
].flags
) == LDB_FLAG_MOD_DELETE
) {
843 ldb_msg_remove_element(msg
, &msg
->elements
[i
]);
848 ret
= ldb_add(kd
->ldb
, msg
);
850 if (ret
== LDB_ERR_NO_SUCH_ATTRIBUTE
) {
851 /* ignore this -> the value didn't exist and also now doesn't */
857 if (ret
!= LDB_SUCCESS
) {
858 DEBUG(1, ("ldb_set_value: %s\n", ldb_errstring(kd
->ldb
)));
859 talloc_free(mem_ctx
);
864 talloc_free(kd
->values
);
867 talloc_free(mem_ctx
);
871 static WERROR
ldb_get_key_info(TALLOC_CTX
*mem_ctx
,
872 const struct hive_key
*key
,
873 const char **classname
,
874 uint32_t *num_subkeys
,
875 uint32_t *num_values
,
876 NTTIME
*last_change_time
,
877 uint32_t *max_subkeynamelen
,
878 uint32_t *max_valnamelen
,
879 uint32_t *max_valbufsize
)
881 struct ldb_key_data
*kd
= talloc_get_type(key
, struct ldb_key_data
);
882 uint32_t default_value_type
= REG_NONE
;
883 DATA_BLOB default_value
= { NULL
, 0 };
887 if (classname
!= NULL
)
889 if (num_subkeys
!= NULL
)
891 if (num_values
!= NULL
)
893 if (last_change_time
!= NULL
)
894 *last_change_time
= 0;
895 if (max_subkeynamelen
!= NULL
)
896 *max_subkeynamelen
= 0;
897 if (max_valnamelen
!= NULL
)
899 if (max_valbufsize
!= NULL
)
902 /* We need this to get the default value (if it exists) for counting
903 * the values under the key and for finding out the longest value buffer
904 * size. If no default value exists the DATA_BLOB "default_value" will
905 * remain { NULL, 0 }. */
906 werr
= ldb_get_default_value(mem_ctx
, key
, NULL
, &default_value_type
,
908 if ((!W_ERROR_IS_OK(werr
)) && (!W_ERROR_EQUAL(werr
, WERR_BADFILE
))) {
912 if (kd
->subkeys
== NULL
) {
913 W_ERROR_NOT_OK_RETURN(cache_subkeys(kd
));
915 if (kd
->values
== NULL
) {
916 W_ERROR_NOT_OK_RETURN(cache_values(kd
));
919 if (classname
!= NULL
) {
920 *classname
= kd
->classname
;
923 if (num_subkeys
!= NULL
) {
924 *num_subkeys
= kd
->subkey_count
;
926 if (num_values
!= NULL
) {
927 *num_values
= kd
->value_count
;
928 /* also consider the default value if it exists */
929 if (default_value
.data
!= NULL
) {
935 if (max_subkeynamelen
!= NULL
) {
937 struct ldb_message_element
*el
;
939 for (i
= 0; i
< kd
->subkey_count
; i
++) {
940 el
= ldb_msg_find_element(kd
->subkeys
[i
], "key");
941 *max_subkeynamelen
= MAX(*max_subkeynamelen
, el
->values
[0].length
);
945 if (max_valnamelen
!= NULL
|| max_valbufsize
!= NULL
) {
947 struct ldb_message_element
*el
;
948 W_ERROR_NOT_OK_RETURN(cache_values(kd
));
950 /* also consider the default value if it exists */
951 if ((max_valbufsize
!= NULL
) && (default_value
.data
!= NULL
)) {
952 *max_valbufsize
= MAX(*max_valbufsize
,
953 default_value
.length
);
956 for (i
= 0; i
< kd
->value_count
; i
++) {
957 if (max_valnamelen
!= NULL
) {
958 el
= ldb_msg_find_element(kd
->values
[i
], "value");
959 *max_valnamelen
= MAX(*max_valnamelen
, el
->values
[0].length
);
962 if (max_valbufsize
!= NULL
) {
965 reg_ldb_unpack_value(mem_ctx
,
968 *max_valbufsize
= MAX(*max_valbufsize
, data
.length
);
969 talloc_free(data
.data
);
974 talloc_free(default_value
.data
);
979 static struct hive_operations reg_backend_ldb
= {
981 .add_key
= ldb_add_key
,
982 .del_key
= ldb_del_key
,
983 .get_key_by_name
= ldb_open_key
,
984 .enum_value
= ldb_get_value_by_id
,
985 .enum_key
= ldb_get_subkey_by_id
,
986 .set_value
= ldb_set_value
,
987 .get_value_by_name
= ldb_get_value
,
988 .delete_value
= ldb_del_value
,
989 .get_key_info
= ldb_get_key_info
,