2 * Unix SMB/CIFS implementation.
3 * Virtual Windows Registry Layer
4 * Copyright (C) Volker Lendecke 2006
5 * Copyright (C) Michael Adam 2007-2010
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 /* Attempt to wrap the existing API in a more winreg.idl-like way */
24 * Here is a list of winreg.idl functions and corresponding implementations
27 * 0x00 winreg_OpenHKCR
28 * 0x01 winreg_OpenHKCU
29 * 0x02 winreg_OpenHKLM
30 * 0x03 winreg_OpenHKPD
32 * 0x05 winreg_CloseKey
33 * 0x06 winreg_CreateKey reg_createkey
34 * 0x07 winreg_DeleteKey reg_deletekey
35 * 0x08 winreg_DeleteValue reg_deletevalue
36 * 0x09 winreg_EnumKey reg_enumkey
37 * 0x0a winreg_EnumValue reg_enumvalue
38 * 0x0b winreg_FlushKey
39 * 0x0c winreg_GetKeySecurity reg_getkeysecurity
41 * 0x0e winreg_NotifyChangeKeyValue
42 * 0x0f winreg_OpenKey reg_openkey
43 * 0x10 winreg_QueryInfoKey reg_queryinfokey
44 * 0x11 winreg_QueryValue reg_queryvalue
45 * 0x12 winreg_ReplaceKey
46 * 0x13 winreg_RestoreKey reg_restorekey
47 * 0x14 winreg_SaveKey reg_savekey
48 * 0x15 winreg_SetKeySecurity reg_setkeysecurity
49 * 0x16 winreg_SetValue reg_setvalue
50 * 0x17 winreg_UnLoadKey
51 * 0x18 winreg_InitiateSystemShutdown
52 * 0x19 winreg_AbortSystemShutdown
53 * 0x1a winreg_GetVersion reg_getversion
54 * 0x1b winreg_OpenHKCC
55 * 0x1c winreg_OpenHKDD
56 * 0x1d winreg_QueryMultipleValues reg_querymultiplevalues
57 * 0x1e winreg_InitiateSystemShutdownEx
58 * 0x1f winreg_SaveKeyEx
59 * 0x20 winreg_OpenHKPT
60 * 0x21 winreg_OpenHKPN
61 * 0x22 winreg_QueryMultipleValues2 reg_querymultiplevalues
68 #include "reg_cachehook.h"
69 #include "reg_backend_db.h"
70 #include "reg_dispatcher.h"
71 #include "reg_objects.h"
72 #include "../librpc/gen_ndr/ndr_security.h"
75 #define DBGC_CLASS DBGC_REGISTRY
78 /**********************************************************************
80 **********************************************************************/
82 static WERROR
fill_value_cache(struct registry_key
*key
)
86 if (key
->values
!= NULL
) {
87 if (!reg_values_need_update(key
->key
, key
->values
)) {
92 TALLOC_FREE(key
->values
);
93 werr
= regval_ctr_init(key
, &(key
->values
));
94 W_ERROR_NOT_OK_RETURN(werr
);
96 if (fetch_reg_values(key
->key
, key
->values
) == -1) {
97 TALLOC_FREE(key
->values
);
104 static WERROR
fill_subkey_cache(struct registry_key
*key
)
108 if (key
->subkeys
!= NULL
) {
109 if (!reg_subkeys_need_update(key
->key
, key
->subkeys
)) {
114 werr
= regsubkey_ctr_init(key
, &(key
->subkeys
));
115 W_ERROR_NOT_OK_RETURN(werr
);
117 if (fetch_reg_keys(key
->key
, key
->subkeys
) == -1) {
118 TALLOC_FREE(key
->subkeys
);
125 static int regkey_destructor(struct registry_key_handle
*key
)
127 return regdb_close();
130 static WERROR
regkey_open_onelevel(TALLOC_CTX
*mem_ctx
,
131 struct registry_key
*parent
,
133 const struct security_token
*token
,
134 uint32 access_desired
,
135 struct registry_key
**pregkey
)
137 WERROR result
= WERR_OK
;
138 struct registry_key
*regkey
;
139 struct registry_key_handle
*key
;
141 DEBUG(7,("regkey_open_onelevel: name = [%s]\n", name
));
143 SMB_ASSERT(strchr(name
, '\\') == NULL
);
145 if (!(regkey
= TALLOC_ZERO_P(mem_ctx
, struct registry_key
)) ||
146 !(regkey
->token
= dup_nt_token(regkey
, token
)) ||
147 !(regkey
->key
= TALLOC_ZERO_P(regkey
, struct registry_key_handle
)))
153 result
= regdb_open();
154 if (!(W_ERROR_IS_OK(result
))) {
159 talloc_set_destructor(key
, regkey_destructor
);
163 key
->type
= REG_KEY_GENERIC
;
165 if (name
[0] == '\0') {
167 * Open a copy of the parent key
170 result
= WERR_BADFILE
;
173 key
->name
= talloc_strdup(key
, parent
->key
->name
);
179 key
->name
= talloc_asprintf(key
, "%s%s%s",
180 parent
? parent
->key
->name
: "",
185 if (key
->name
== NULL
) {
190 /* Tag this as a Performance Counter Key */
192 if( StrnCaseCmp(key
->name
, KEY_HKPD
, strlen(KEY_HKPD
)) == 0 )
193 key
->type
= REG_KEY_HKPD
;
195 /* Look up the table of registry I/O operations */
197 key
->ops
= reghook_cache_find( key
->name
);
198 if (key
->ops
== NULL
) {
199 DEBUG(0,("reg_open_onelevel: Failed to assign "
200 "registry_ops to [%s]\n", key
->name
));
201 result
= WERR_BADFILE
;
205 /* FIXME: Existence is currently checked by fetching the subkeys */
207 result
= fill_subkey_cache(regkey
);
208 if (!W_ERROR_IS_OK(result
)) {
212 if ( !regkey_access_check( key
, access_desired
, &key
->access_granted
,
214 result
= WERR_ACCESS_DENIED
;
222 if ( !W_ERROR_IS_OK(result
) ) {
229 WERROR
reg_openhive(TALLOC_CTX
*mem_ctx
, const char *hive
,
230 uint32 desired_access
,
231 const struct security_token
*token
,
232 struct registry_key
**pkey
)
234 SMB_ASSERT(hive
!= NULL
);
235 SMB_ASSERT(hive
[0] != '\0');
236 SMB_ASSERT(strchr(hive
, '\\') == NULL
);
238 return regkey_open_onelevel(mem_ctx
, NULL
, hive
, token
, desired_access
,
243 /**********************************************************************
245 **********************************************************************/
247 WERROR
reg_openkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*parent
,
248 const char *name
, uint32 desired_access
,
249 struct registry_key
**pkey
)
251 struct registry_key
*direct_parent
= parent
;
255 TALLOC_CTX
*frame
= talloc_stackframe();
257 path
= talloc_strdup(frame
, name
);
265 if ((len
> 0) && (path
[len
-1] == '\\')) {
269 while ((p
= strchr(path
, '\\')) != NULL
) {
270 char *name_component
;
271 struct registry_key
*tmp
;
273 name_component
= talloc_strndup(frame
, path
, (p
- path
));
274 if (name_component
== NULL
) {
279 err
= regkey_open_onelevel(frame
, direct_parent
,
280 name_component
, parent
->token
,
281 KEY_ENUMERATE_SUB_KEYS
, &tmp
);
283 if (!W_ERROR_IS_OK(err
)) {
291 err
= regkey_open_onelevel(mem_ctx
, direct_parent
, path
, parent
->token
,
292 desired_access
, pkey
);
299 WERROR
reg_enumkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
300 uint32 idx
, char **name
, NTTIME
*last_write_time
)
304 if (!(key
->key
->access_granted
& KEY_ENUMERATE_SUB_KEYS
)) {
305 return WERR_ACCESS_DENIED
;
308 if (!W_ERROR_IS_OK(err
= fill_subkey_cache(key
))) {
312 if (idx
>= regsubkey_ctr_numkeys(key
->subkeys
)) {
313 return WERR_NO_MORE_ITEMS
;
316 if (!(*name
= talloc_strdup(mem_ctx
,
317 regsubkey_ctr_specific_key(key
->subkeys
, idx
))))
322 if (last_write_time
) {
323 *last_write_time
= 0;
329 WERROR
reg_enumvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
330 uint32 idx
, char **pname
, struct registry_value
**pval
)
332 struct registry_value
*val
;
333 struct regval_blob
*blob
;
336 if (!(key
->key
->access_granted
& KEY_QUERY_VALUE
)) {
337 return WERR_ACCESS_DENIED
;
340 if (!(W_ERROR_IS_OK(err
= fill_value_cache(key
)))) {
344 if (idx
>= regval_ctr_numvals(key
->values
)) {
345 return WERR_NO_MORE_ITEMS
;
348 blob
= regval_ctr_specific_value(key
->values
, idx
);
350 val
= talloc_zero(mem_ctx
, struct registry_value
);
355 val
->type
= regval_type(blob
);
356 val
->data
= data_blob_talloc(mem_ctx
, regval_data_p(blob
), regval_size(blob
));
359 && !(*pname
= talloc_strdup(
360 mem_ctx
, regval_name(blob
)))) {
369 static WERROR
reg_enumvalue_nocachefill(TALLOC_CTX
*mem_ctx
,
370 struct registry_key
*key
,
371 uint32 idx
, char **pname
,
372 struct registry_value
**pval
)
374 struct registry_value
*val
;
375 struct regval_blob
*blob
;
377 if (!(key
->key
->access_granted
& KEY_QUERY_VALUE
)) {
378 return WERR_ACCESS_DENIED
;
381 if (idx
>= regval_ctr_numvals(key
->values
)) {
382 return WERR_NO_MORE_ITEMS
;
385 blob
= regval_ctr_specific_value(key
->values
, idx
);
387 val
= talloc_zero(mem_ctx
, struct registry_value
);
392 val
->type
= regval_type(blob
);
393 val
->data
= data_blob_talloc(mem_ctx
, regval_data_p(blob
), regval_size(blob
));
396 && !(*pname
= talloc_strdup(
397 mem_ctx
, regval_name(blob
)))) {
406 WERROR
reg_queryvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
407 const char *name
, struct registry_value
**pval
)
412 if (!(key
->key
->access_granted
& KEY_QUERY_VALUE
)) {
413 return WERR_ACCESS_DENIED
;
416 if (!(W_ERROR_IS_OK(err
= fill_value_cache(key
)))) {
420 for (i
=0; i
< regval_ctr_numvals(key
->values
); i
++) {
421 struct regval_blob
*blob
;
422 blob
= regval_ctr_specific_value(key
->values
, i
);
423 if (strequal(regval_name(blob
), name
)) {
425 * don't use reg_enumvalue here:
426 * re-reading the values from the disk
427 * would change the indexing and break
430 return reg_enumvalue_nocachefill(mem_ctx
, key
, i
,
438 WERROR
reg_querymultiplevalues(TALLOC_CTX
*mem_ctx
,
439 struct registry_key
*key
,
443 struct registry_value
**pvals
)
446 uint32_t i
, n
, found
= 0;
447 struct registry_value
*vals
;
449 if (num_names
== 0) {
453 if (!(key
->key
->access_granted
& KEY_QUERY_VALUE
)) {
454 return WERR_ACCESS_DENIED
;
457 if (!(W_ERROR_IS_OK(err
= fill_value_cache(key
)))) {
461 vals
= talloc_zero_array(mem_ctx
, struct registry_value
, num_names
);
466 for (n
=0; n
< num_names
; n
++) {
467 for (i
=0; i
< regval_ctr_numvals(key
->values
); i
++) {
468 struct regval_blob
*blob
;
469 blob
= regval_ctr_specific_value(key
->values
, i
);
470 if (strequal(regval_name(blob
), names
[n
])) {
471 struct registry_value
*v
;
472 err
= reg_enumvalue(mem_ctx
, key
, i
, NULL
, &v
);
473 if (!W_ERROR_IS_OK(err
)) {
488 WERROR
reg_queryinfokey(struct registry_key
*key
, uint32_t *num_subkeys
,
489 uint32_t *max_subkeylen
, uint32_t *max_subkeysize
,
490 uint32_t *num_values
, uint32_t *max_valnamelen
,
491 uint32_t *max_valbufsize
, uint32_t *secdescsize
,
492 NTTIME
*last_changed_time
)
498 struct security_descriptor
*secdesc
;
500 if (!(key
->key
->access_granted
& KEY_QUERY_VALUE
)) {
501 return WERR_ACCESS_DENIED
;
504 if (!W_ERROR_IS_OK(fill_subkey_cache(key
)) ||
505 !W_ERROR_IS_OK(fill_value_cache(key
))) {
510 for (i
=0; i
< regsubkey_ctr_numkeys(key
->subkeys
); i
++) {
511 max_len
= MAX(max_len
,
512 strlen(regsubkey_ctr_specific_key(key
->subkeys
, i
)));
515 *num_subkeys
= regsubkey_ctr_numkeys(key
->subkeys
);
516 *max_subkeylen
= max_len
;
517 *max_subkeysize
= 0; /* Class length? */
521 for (i
=0; i
< regval_ctr_numvals(key
->values
); i
++) {
522 struct regval_blob
*blob
;
523 blob
= regval_ctr_specific_value(key
->values
, i
);
524 max_len
= MAX(max_len
, strlen(regval_name(blob
)));
525 max_size
= MAX(max_size
, regval_size(blob
));
528 *num_values
= regval_ctr_numvals(key
->values
);
529 *max_valnamelen
= max_len
;
530 *max_valbufsize
= max_size
;
532 if (!(mem_ctx
= talloc_new(key
))) {
536 err
= regkey_get_secdesc(mem_ctx
, key
->key
, &secdesc
);
537 if (!W_ERROR_IS_OK(err
)) {
538 TALLOC_FREE(mem_ctx
);
542 *secdescsize
= ndr_size_security_descriptor(secdesc
, 0);
543 TALLOC_FREE(mem_ctx
);
545 *last_changed_time
= 0;
550 WERROR
reg_createkey(TALLOC_CTX
*ctx
, struct registry_key
*parent
,
551 const char *subkeypath
, uint32 desired_access
,
552 struct registry_key
**pkey
,
553 enum winreg_CreateAction
*paction
)
555 struct registry_key
*key
= parent
;
556 struct registry_key
*create_parent
;
560 uint32_t access_granted
;
562 mem_ctx
= talloc_new(ctx
);
563 if (mem_ctx
== NULL
) {
567 path
= talloc_strdup(mem_ctx
, subkeypath
);
573 err
= regdb_transaction_start();
574 if (!W_ERROR_IS_OK(err
)) {
575 DEBUG(0, ("reg_createkey: failed to start transaction: %s\n",
580 while ((end
= strchr(path
, '\\')) != NULL
) {
581 struct registry_key
*tmp
;
582 enum winreg_CreateAction action
;
586 err
= reg_createkey(mem_ctx
, key
, path
,
587 KEY_ENUMERATE_SUB_KEYS
, &tmp
, &action
);
588 if (!W_ERROR_IS_OK(err
)) {
601 * At this point, "path" contains the one-element subkey of "key". We
602 * can try to open it.
605 err
= reg_openkey(ctx
, key
, path
, desired_access
, pkey
);
606 if (W_ERROR_IS_OK(err
)) {
607 if (paction
!= NULL
) {
608 *paction
= REG_OPENED_EXISTING_KEY
;
613 if (!W_ERROR_EQUAL(err
, WERR_BADFILE
)) {
615 * Something but "notfound" has happened, so bail out
621 * We may (e.g. in the iteration) have opened the key with ENUM_SUBKEY.
622 * Instead of re-opening the key with CREATE_SUB_KEY, we simply
623 * duplicate the access check here and skip the expensive full open.
625 if (!regkey_access_check(key
->key
, KEY_CREATE_SUB_KEY
, &access_granted
,
628 err
= WERR_ACCESS_DENIED
;
633 * Actually create the subkey
636 err
= create_reg_subkey(key
->key
, path
);
637 if (!W_ERROR_IS_OK(err
)) {
642 * Now open the newly created key
645 err
= reg_openkey(ctx
, key
, path
, desired_access
, pkey
);
646 if (W_ERROR_IS_OK(err
) && (paction
!= NULL
)) {
647 *paction
= REG_CREATED_NEW_KEY
;
651 if (W_ERROR_IS_OK(err
)) {
652 err
= regdb_transaction_commit();
653 if (!W_ERROR_IS_OK(err
)) {
654 DEBUG(0, ("reg_createkey: Error committing transaction: %s\n", win_errstr(err
)));
657 WERROR err1
= regdb_transaction_cancel();
658 if (!W_ERROR_IS_OK(err1
)) {
659 DEBUG(0, ("reg_createkey: Error cancelling transaction: %s\n", win_errstr(err1
)));
664 TALLOC_FREE(mem_ctx
);
668 WERROR
reg_deletekey(struct registry_key
*parent
, const char *path
)
672 struct registry_key
*tmp_key
, *key
;
673 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
675 name
= talloc_strdup(mem_ctx
, path
);
681 /* check if the key has subkeys */
682 err
= reg_openkey(mem_ctx
, parent
, name
, REG_KEY_READ
, &key
);
683 W_ERROR_NOT_OK_GOTO_DONE(err
);
685 err
= regdb_transaction_start();
686 if (!W_ERROR_IS_OK(err
)) {
687 DEBUG(0, ("reg_deletekey: Error starting transaction: %s\n",
692 err
= fill_subkey_cache(key
);
693 W_ERROR_NOT_OK_GOTO(err
, trans_done
);
695 if (regsubkey_ctr_numkeys(key
->subkeys
) > 0) {
696 err
= WERR_ACCESS_DENIED
;
700 /* no subkeys - proceed with delete */
701 end
= strrchr(name
, '\\');
705 err
= reg_openkey(mem_ctx
, parent
, name
,
706 KEY_CREATE_SUB_KEY
, &tmp_key
);
707 W_ERROR_NOT_OK_GOTO(err
, trans_done
);
713 if (name
[0] == '\0') {
714 err
= WERR_INVALID_PARAM
;
718 err
= delete_reg_subkey(parent
->key
, name
);
721 if (W_ERROR_IS_OK(err
)) {
722 err
= regdb_transaction_commit();
723 if (!W_ERROR_IS_OK(err
)) {
724 DEBUG(0, ("reg_deletekey: Error committing transaction: %s\n", win_errstr(err
)));
727 WERROR err1
= regdb_transaction_cancel();
728 if (!W_ERROR_IS_OK(err1
)) {
729 DEBUG(0, ("reg_deletekey: Error cancelling transaction: %s\n", win_errstr(err1
)));
734 TALLOC_FREE(mem_ctx
);
738 WERROR
reg_setvalue(struct registry_key
*key
, const char *name
,
739 const struct registry_value
*val
)
741 struct regval_blob
*existing
;
745 if (!(key
->key
->access_granted
& KEY_SET_VALUE
)) {
746 return WERR_ACCESS_DENIED
;
749 err
= regdb_transaction_start();
750 if (!W_ERROR_IS_OK(err
)) {
751 DEBUG(0, ("reg_setvalue: Failed to start transaction: %s\n",
756 err
= fill_value_cache(key
);
757 if (!W_ERROR_IS_OK(err
)) {
758 DEBUG(0, ("reg_setvalue: Error filling value cache: %s\n", win_errstr(err
)));
762 existing
= regval_ctr_getvalue(key
->values
, name
);
764 if ((existing
!= NULL
) &&
765 (regval_size(existing
) == val
->data
.length
) &&
766 (memcmp(regval_data_p(existing
), val
->data
.data
,
767 val
->data
.length
) == 0))
773 res
= regval_ctr_addvalue(key
->values
, name
, val
->type
,
774 val
->data
.data
, val
->data
.length
);
777 TALLOC_FREE(key
->values
);
782 if (!store_reg_values(key
->key
, key
->values
)) {
783 TALLOC_FREE(key
->values
);
784 DEBUG(0, ("reg_setvalue: store_reg_values failed\n"));
785 err
= WERR_REG_IO_FAILURE
;
792 if (W_ERROR_IS_OK(err
)) {
793 err
= regdb_transaction_commit();
794 if (!W_ERROR_IS_OK(err
)) {
795 DEBUG(0, ("reg_setvalue: Error committing transaction: %s\n", win_errstr(err
)));
798 WERROR err1
= regdb_transaction_cancel();
799 if (!W_ERROR_IS_OK(err1
)) {
800 DEBUG(0, ("reg_setvalue: Error cancelling transaction: %s\n", win_errstr(err1
)));
807 static WERROR
reg_value_exists(struct registry_key
*key
, const char *name
)
809 struct regval_blob
*blob
;
811 blob
= regval_ctr_getvalue(key
->values
, name
);
820 WERROR
reg_deletevalue(struct registry_key
*key
, const char *name
)
824 if (!(key
->key
->access_granted
& KEY_SET_VALUE
)) {
825 return WERR_ACCESS_DENIED
;
828 err
= regdb_transaction_start();
829 if (!W_ERROR_IS_OK(err
)) {
830 DEBUG(0, ("reg_deletevalue: Failed to start transaction: %s\n",
835 err
= fill_value_cache(key
);
836 if (!W_ERROR_IS_OK(err
)) {
837 DEBUG(0, ("reg_deletevalue; Error filling value cache: %s\n",
842 err
= reg_value_exists(key
, name
);
843 if (!W_ERROR_IS_OK(err
)) {
847 regval_ctr_delvalue(key
->values
, name
);
849 if (!store_reg_values(key
->key
, key
->values
)) {
850 TALLOC_FREE(key
->values
);
851 err
= WERR_REG_IO_FAILURE
;
852 DEBUG(0, ("reg_deletevalue: store_reg_values failed\n"));
859 if (W_ERROR_IS_OK(err
)) {
860 err
= regdb_transaction_commit();
861 if (!W_ERROR_IS_OK(err
)) {
862 DEBUG(0, ("reg_deletevalue: Error committing transaction: %s\n", win_errstr(err
)));
865 WERROR err1
= regdb_transaction_cancel();
866 if (!W_ERROR_IS_OK(err1
)) {
867 DEBUG(0, ("reg_deletevalue: Error cancelling transaction: %s\n", win_errstr(err1
)));
874 WERROR
reg_getkeysecurity(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
875 struct security_descriptor
**psecdesc
)
877 return regkey_get_secdesc(mem_ctx
, key
->key
, psecdesc
);
880 WERROR
reg_setkeysecurity(struct registry_key
*key
,
881 struct security_descriptor
*psecdesc
)
883 return regkey_set_secdesc(key
->key
, psecdesc
);
886 WERROR
reg_getversion(uint32_t *version
)
888 if (version
== NULL
) {
889 return WERR_INVALID_PARAM
;
892 *version
= 0x00000005; /* Windows 2000 registry API version */
896 /**********************************************************************
897 * Higher level utility functions
898 **********************************************************************/
900 WERROR
reg_deleteallvalues(struct registry_key
*key
)
905 if (!(key
->key
->access_granted
& KEY_SET_VALUE
)) {
906 return WERR_ACCESS_DENIED
;
909 if (!W_ERROR_IS_OK(err
= fill_value_cache(key
))) {
913 for (i
=0; i
< regval_ctr_numvals(key
->values
); i
++) {
914 struct regval_blob
*blob
;
915 blob
= regval_ctr_specific_value(key
->values
, i
);
916 regval_ctr_delvalue(key
->values
, regval_name(blob
));
919 if (!store_reg_values(key
->key
, key
->values
)) {
920 TALLOC_FREE(key
->values
);
921 return WERR_REG_IO_FAILURE
;
928 * Utility function to delete a registry key with all its subkeys.
929 * Note that reg_deletekey returns ACCESS_DENIED when called on a
930 * key that has subkeys.
932 static WERROR
reg_deletekey_recursive_internal(struct registry_key
*parent
,
936 WERROR werr
= WERR_OK
;
937 struct registry_key
*key
;
938 char *subkey_name
= NULL
;
940 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
942 /* recurse through subkeys first */
943 werr
= reg_openkey(mem_ctx
, parent
, path
, REG_KEY_ALL
, &key
);
944 if (!W_ERROR_IS_OK(werr
)) {
948 werr
= fill_subkey_cache(key
);
949 W_ERROR_NOT_OK_GOTO_DONE(werr
);
952 * loop from top to bottom for perfomance:
953 * this way, we need to rehash the regsubkey containers less
955 for (i
= regsubkey_ctr_numkeys(key
->subkeys
) ; i
> 0; i
--) {
956 subkey_name
= regsubkey_ctr_specific_key(key
->subkeys
, i
-1);
957 werr
= reg_deletekey_recursive_internal(key
, subkey_name
, true);
958 W_ERROR_NOT_OK_GOTO_DONE(werr
);
962 /* now delete the actual key */
963 werr
= reg_deletekey(parent
, path
);
967 TALLOC_FREE(mem_ctx
);
971 static WERROR
reg_deletekey_recursive_trans(struct registry_key
*parent
,
977 werr
= regdb_transaction_start();
978 if (!W_ERROR_IS_OK(werr
)) {
979 DEBUG(0, ("reg_deletekey_recursive_trans: "
980 "error starting transaction: %s\n",
985 werr
= reg_deletekey_recursive_internal(parent
, path
, del_key
);
987 if (!W_ERROR_IS_OK(werr
)) {
990 DEBUG(1, (__location__
" failed to delete key '%s' from key "
991 "'%s': %s\n", path
, parent
->key
->name
,
994 werr2
= regdb_transaction_cancel();
995 if (!W_ERROR_IS_OK(werr2
)) {
996 DEBUG(0, ("reg_deletekey_recursive_trans: "
997 "error cancelling transaction: %s\n",
1000 * return the original werr or the
1001 * error from cancelling the transaction?
1005 werr
= regdb_transaction_commit();
1006 if (!W_ERROR_IS_OK(werr
)) {
1007 DEBUG(0, ("reg_deletekey_recursive_trans: "
1008 "error committing transaction: %s\n",
1016 WERROR
reg_deletekey_recursive(struct registry_key
*parent
,
1019 return reg_deletekey_recursive_trans(parent
, path
, true);
1022 WERROR
reg_deletesubkeys_recursive(struct registry_key
*parent
,
1025 return reg_deletekey_recursive_trans(parent
, path
, false);