examples/VFS: fix skel_transparent.c in reference to shadow_copy changes
[Samba/gebeck_regimport.git] / source3 / registry / reg_api.c
blob51bd98e9395becb5bd16804923e10031448356ee
1 /*
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
25 * provided here:
27 * 0x00 winreg_OpenHKCR
28 * 0x01 winreg_OpenHKCU
29 * 0x02 winreg_OpenHKLM
30 * 0x03 winreg_OpenHKPD
31 * 0x04 winreg_OpenHKU
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
40 * 0x0d winreg_LoadKey
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
65 #include "includes.h"
66 #include "registry.h"
67 #include "reg_api.h"
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"
74 #undef DBGC_CLASS
75 #define DBGC_CLASS DBGC_REGISTRY
78 /**********************************************************************
79 * Helper functions
80 **********************************************************************/
82 static WERROR fill_value_cache(struct registry_key *key)
84 WERROR werr;
86 if (key->values != NULL) {
87 if (!reg_values_need_update(key->key, key->values)) {
88 return WERR_OK;
92 werr = regval_ctr_init(key, &(key->values));
93 W_ERROR_NOT_OK_RETURN(werr);
95 if (fetch_reg_values(key->key, key->values) == -1) {
96 TALLOC_FREE(key->values);
97 return WERR_BADFILE;
100 return WERR_OK;
103 static WERROR fill_subkey_cache(struct registry_key *key)
105 WERROR werr;
107 if (key->subkeys != NULL) {
108 if (!reg_subkeys_need_update(key->key, key->subkeys)) {
109 return WERR_OK;
113 werr = regsubkey_ctr_init(key, &(key->subkeys));
114 W_ERROR_NOT_OK_RETURN(werr);
116 if (fetch_reg_keys(key->key, key->subkeys) == -1) {
117 TALLOC_FREE(key->subkeys);
118 return WERR_NO_MORE_ITEMS;
121 return WERR_OK;
124 static int regkey_destructor(struct registry_key_handle *key)
126 return regdb_close();
129 static WERROR regkey_open_onelevel(TALLOC_CTX *mem_ctx,
130 struct registry_key *parent,
131 const char *name,
132 const struct security_token *token,
133 uint32 access_desired,
134 struct registry_key **pregkey)
136 WERROR result = WERR_OK;
137 struct registry_key *regkey;
138 struct registry_key_handle *key;
139 struct regsubkey_ctr *subkeys = NULL;
141 DEBUG(7,("regkey_open_onelevel: name = [%s]\n", name));
143 SMB_ASSERT(strchr(name, '\\') == NULL);
145 if (!(regkey = talloc_zero(mem_ctx, struct registry_key)) ||
146 !(regkey->token = dup_nt_token(regkey, token)) ||
147 !(regkey->key = talloc_zero(regkey, struct registry_key_handle)))
149 result = WERR_NOMEM;
150 goto done;
153 if ( !(W_ERROR_IS_OK(result = regdb_open())) ) {
154 goto done;
157 key = regkey->key;
158 talloc_set_destructor(key, regkey_destructor);
160 /* initialization */
162 key->type = REG_KEY_GENERIC;
164 if (name[0] == '\0') {
166 * Open a copy of the parent key
168 if (!parent) {
169 result = WERR_BADFILE;
170 goto done;
172 key->name = talloc_strdup(key, parent->key->name);
174 else {
176 * Normal subkey open
178 key->name = talloc_asprintf(key, "%s%s%s",
179 parent ? parent->key->name : "",
180 parent ? "\\": "",
181 name);
184 if (key->name == NULL) {
185 result = WERR_NOMEM;
186 goto done;
189 /* Tag this as a Performance Counter Key */
191 if( strncasecmp_m(key->name, KEY_HKPD, strlen(KEY_HKPD)) == 0 )
192 key->type = REG_KEY_HKPD;
194 /* Look up the table of registry I/O operations */
196 if ( !(key->ops = reghook_cache_find( key->name )) ) {
197 DEBUG(0,("reg_open_onelevel: Failed to assign "
198 "registry_ops to [%s]\n", key->name ));
199 result = WERR_BADFILE;
200 goto done;
203 /* check if the path really exists; failed is indicated by -1 */
204 /* if the subkey count failed, bail out */
206 result = regsubkey_ctr_init(key, &subkeys);
207 if (!W_ERROR_IS_OK(result)) {
208 goto done;
211 if ( fetch_reg_keys( key, subkeys ) == -1 ) {
212 result = WERR_BADFILE;
213 goto done;
216 TALLOC_FREE( subkeys );
218 if ( !regkey_access_check( key, access_desired, &key->access_granted,
219 token ) ) {
220 result = WERR_ACCESS_DENIED;
221 goto done;
224 *pregkey = regkey;
225 result = WERR_OK;
227 done:
228 if ( !W_ERROR_IS_OK(result) ) {
229 TALLOC_FREE(regkey);
232 return result;
235 WERROR reg_openhive(TALLOC_CTX *mem_ctx, const char *hive,
236 uint32 desired_access,
237 const struct security_token *token,
238 struct registry_key **pkey)
240 SMB_ASSERT(hive != NULL);
241 SMB_ASSERT(hive[0] != '\0');
242 SMB_ASSERT(strchr(hive, '\\') == NULL);
244 return regkey_open_onelevel(mem_ctx, NULL, hive, token, desired_access,
245 pkey);
249 /**********************************************************************
250 * The API functions
251 **********************************************************************/
253 WERROR reg_openkey(TALLOC_CTX *mem_ctx, struct registry_key *parent,
254 const char *name, uint32 desired_access,
255 struct registry_key **pkey)
257 struct registry_key *direct_parent = parent;
258 WERROR err;
259 char *p, *path, *to_free;
260 size_t len;
262 if (!(path = SMB_STRDUP(name))) {
263 return WERR_NOMEM;
265 to_free = path;
267 len = strlen(path);
269 if ((len > 0) && (path[len-1] == '\\')) {
270 path[len-1] = '\0';
273 while ((p = strchr(path, '\\')) != NULL) {
274 char *name_component;
275 struct registry_key *tmp;
277 if (!(name_component = SMB_STRNDUP(path, (p - path)))) {
278 err = WERR_NOMEM;
279 goto error;
282 err = regkey_open_onelevel(mem_ctx, direct_parent,
283 name_component, parent->token,
284 KEY_ENUMERATE_SUB_KEYS, &tmp);
285 SAFE_FREE(name_component);
287 if (!W_ERROR_IS_OK(err)) {
288 goto error;
290 if (direct_parent != parent) {
291 TALLOC_FREE(direct_parent);
294 direct_parent = tmp;
295 path = p+1;
298 err = regkey_open_onelevel(mem_ctx, direct_parent, path, parent->token,
299 desired_access, pkey);
300 error:
301 if (direct_parent != parent) {
302 TALLOC_FREE(direct_parent);
304 SAFE_FREE(to_free);
305 return err;
308 WERROR reg_enumkey(TALLOC_CTX *mem_ctx, struct registry_key *key,
309 uint32 idx, char **name, NTTIME *last_write_time)
311 WERROR err;
313 if (!(key->key->access_granted & KEY_ENUMERATE_SUB_KEYS)) {
314 return WERR_ACCESS_DENIED;
317 if (!W_ERROR_IS_OK(err = fill_subkey_cache(key))) {
318 return err;
321 if (idx >= regsubkey_ctr_numkeys(key->subkeys)) {
322 return WERR_NO_MORE_ITEMS;
325 if (!(*name = talloc_strdup(mem_ctx,
326 regsubkey_ctr_specific_key(key->subkeys, idx))))
328 return WERR_NOMEM;
331 if (last_write_time) {
332 *last_write_time = 0;
335 return WERR_OK;
338 WERROR reg_enumvalue(TALLOC_CTX *mem_ctx, struct registry_key *key,
339 uint32 idx, char **pname, struct registry_value **pval)
341 struct registry_value *val;
342 struct regval_blob *blob;
343 WERROR err;
345 if (!(key->key->access_granted & KEY_QUERY_VALUE)) {
346 return WERR_ACCESS_DENIED;
349 if (!(W_ERROR_IS_OK(err = fill_value_cache(key)))) {
350 return err;
353 if (idx >= regval_ctr_numvals(key->values)) {
354 return WERR_NO_MORE_ITEMS;
357 blob = regval_ctr_specific_value(key->values, idx);
359 val = talloc_zero(mem_ctx, struct registry_value);
360 if (val == NULL) {
361 return WERR_NOMEM;
364 val->type = regval_type(blob);
365 val->data = data_blob_talloc(mem_ctx, regval_data_p(blob), regval_size(blob));
367 if (pname
368 && !(*pname = talloc_strdup(
369 mem_ctx, regval_name(blob)))) {
370 TALLOC_FREE(val);
371 return WERR_NOMEM;
374 *pval = val;
375 return WERR_OK;
378 WERROR reg_queryvalue(TALLOC_CTX *mem_ctx, struct registry_key *key,
379 const char *name, struct registry_value **pval)
381 WERROR err;
382 uint32 i;
384 if (!(key->key->access_granted & KEY_QUERY_VALUE)) {
385 return WERR_ACCESS_DENIED;
388 if (!(W_ERROR_IS_OK(err = fill_value_cache(key)))) {
389 return err;
392 for (i=0; i < regval_ctr_numvals(key->values); i++) {
393 struct regval_blob *blob;
394 blob = regval_ctr_specific_value(key->values, i);
395 if (strequal(regval_name(blob), name)) {
396 return reg_enumvalue(mem_ctx, key, i, NULL, pval);
400 return WERR_BADFILE;
403 WERROR reg_querymultiplevalues(TALLOC_CTX *mem_ctx,
404 struct registry_key *key,
405 uint32_t num_names,
406 const char **names,
407 uint32_t *pnum_vals,
408 struct registry_value **pvals)
410 WERROR err;
411 uint32_t i, n, found = 0;
412 struct registry_value *vals;
414 if (num_names == 0) {
415 return WERR_OK;
418 if (!(key->key->access_granted & KEY_QUERY_VALUE)) {
419 return WERR_ACCESS_DENIED;
422 if (!(W_ERROR_IS_OK(err = fill_value_cache(key)))) {
423 return err;
426 vals = talloc_zero_array(mem_ctx, struct registry_value, num_names);
427 if (vals == NULL) {
428 return WERR_NOMEM;
431 for (n=0; n < num_names; n++) {
432 for (i=0; i < regval_ctr_numvals(key->values); i++) {
433 struct regval_blob *blob;
434 blob = regval_ctr_specific_value(key->values, i);
435 if (strequal(regval_name(blob), names[n])) {
436 struct registry_value *v;
437 err = reg_enumvalue(mem_ctx, key, i, NULL, &v);
438 if (!W_ERROR_IS_OK(err)) {
439 return err;
441 vals[n] = *v;
442 found++;
447 *pvals = vals;
448 *pnum_vals = found;
450 return WERR_OK;
453 WERROR reg_queryinfokey(struct registry_key *key, uint32_t *num_subkeys,
454 uint32_t *max_subkeylen, uint32_t *max_subkeysize,
455 uint32_t *num_values, uint32_t *max_valnamelen,
456 uint32_t *max_valbufsize, uint32_t *secdescsize,
457 NTTIME *last_changed_time)
459 uint32 i, max_size;
460 size_t max_len;
461 TALLOC_CTX *mem_ctx;
462 WERROR err;
463 struct security_descriptor *secdesc;
465 if (!(key->key->access_granted & KEY_QUERY_VALUE)) {
466 return WERR_ACCESS_DENIED;
469 if (!W_ERROR_IS_OK(fill_subkey_cache(key)) ||
470 !W_ERROR_IS_OK(fill_value_cache(key))) {
471 return WERR_BADFILE;
474 max_len = 0;
475 for (i=0; i< regsubkey_ctr_numkeys(key->subkeys); i++) {
476 max_len = MAX(max_len,
477 strlen(regsubkey_ctr_specific_key(key->subkeys, i)));
480 *num_subkeys = regsubkey_ctr_numkeys(key->subkeys);
481 *max_subkeylen = max_len;
482 *max_subkeysize = 0; /* Class length? */
484 max_len = 0;
485 max_size = 0;
486 for (i=0; i < regval_ctr_numvals(key->values); i++) {
487 struct regval_blob *blob;
488 blob = regval_ctr_specific_value(key->values, i);
489 max_len = MAX(max_len, strlen(regval_name(blob)));
490 max_size = MAX(max_size, regval_size(blob));
493 *num_values = regval_ctr_numvals(key->values);
494 *max_valnamelen = max_len;
495 *max_valbufsize = max_size;
497 if (!(mem_ctx = talloc_new(key))) {
498 return WERR_NOMEM;
501 err = regkey_get_secdesc(mem_ctx, key->key, &secdesc);
502 if (!W_ERROR_IS_OK(err)) {
503 TALLOC_FREE(mem_ctx);
504 return err;
507 *secdescsize = ndr_size_security_descriptor(secdesc, 0);
508 TALLOC_FREE(mem_ctx);
510 *last_changed_time = 0;
512 return WERR_OK;
515 WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent,
516 const char *subkeypath, uint32 desired_access,
517 struct registry_key **pkey,
518 enum winreg_CreateAction *paction)
520 struct registry_key *key = parent;
521 struct registry_key *create_parent;
522 TALLOC_CTX *mem_ctx;
523 char *path, *end;
524 WERROR err;
526 if (!(mem_ctx = talloc_new(ctx))) return WERR_NOMEM;
528 if (!(path = talloc_strdup(mem_ctx, subkeypath))) {
529 err = WERR_NOMEM;
530 goto done;
533 while ((end = strchr(path, '\\')) != NULL) {
534 struct registry_key *tmp;
535 enum winreg_CreateAction action;
537 *end = '\0';
539 err = reg_createkey(mem_ctx, key, path,
540 KEY_ENUMERATE_SUB_KEYS, &tmp, &action);
541 if (!W_ERROR_IS_OK(err)) {
542 goto done;
545 if (key != parent) {
546 TALLOC_FREE(key);
549 key = tmp;
550 path = end+1;
554 * At this point, "path" contains the one-element subkey of "key". We
555 * can try to open it.
558 err = reg_openkey(ctx, key, path, desired_access, pkey);
559 if (W_ERROR_IS_OK(err)) {
560 if (paction != NULL) {
561 *paction = REG_OPENED_EXISTING_KEY;
563 goto done;
566 if (!W_ERROR_EQUAL(err, WERR_BADFILE)) {
568 * Something but "notfound" has happened, so bail out
570 goto done;
574 * We have to make a copy of the current key, as we opened it only
575 * with ENUM_SUBKEY access.
578 err = reg_openkey(mem_ctx, key, "", KEY_CREATE_SUB_KEY,
579 &create_parent);
580 if (!W_ERROR_IS_OK(err)) {
581 goto done;
585 * Actually create the subkey
588 err = fill_subkey_cache(create_parent);
589 if (!W_ERROR_IS_OK(err)) goto done;
591 err = create_reg_subkey(key->key, path);
592 W_ERROR_NOT_OK_GOTO_DONE(err);
595 * Now open the newly created key
598 err = reg_openkey(ctx, create_parent, path, desired_access, pkey);
599 if (W_ERROR_IS_OK(err) && (paction != NULL)) {
600 *paction = REG_CREATED_NEW_KEY;
603 done:
604 TALLOC_FREE(mem_ctx);
605 return err;
608 WERROR reg_deletekey(struct registry_key *parent, const char *path)
610 WERROR err;
611 char *name, *end;
612 struct registry_key *tmp_key, *key;
613 TALLOC_CTX *mem_ctx = talloc_stackframe();
615 name = talloc_strdup(mem_ctx, path);
616 if (name == NULL) {
617 err = WERR_NOMEM;
618 goto done;
621 /* check if the key has subkeys */
622 err = reg_openkey(mem_ctx, parent, name, REG_KEY_READ, &key);
623 W_ERROR_NOT_OK_GOTO_DONE(err);
625 err = fill_subkey_cache(key);
626 W_ERROR_NOT_OK_GOTO_DONE(err);
628 if (regsubkey_ctr_numkeys(key->subkeys) > 0) {
629 err = WERR_ACCESS_DENIED;
630 goto done;
633 /* no subkeys - proceed with delete */
634 end = strrchr(name, '\\');
635 if (end != NULL) {
636 *end = '\0';
638 err = reg_openkey(mem_ctx, parent, name,
639 KEY_CREATE_SUB_KEY, &tmp_key);
640 W_ERROR_NOT_OK_GOTO_DONE(err);
642 parent = tmp_key;
643 name = end+1;
646 if (name[0] == '\0') {
647 err = WERR_INVALID_PARAM;
648 goto done;
651 err = delete_reg_subkey(parent->key, name);
653 done:
654 TALLOC_FREE(mem_ctx);
655 return err;
658 WERROR reg_setvalue(struct registry_key *key, const char *name,
659 const struct registry_value *val)
661 struct regval_blob *existing;
662 WERROR err;
663 int res;
665 if (!(key->key->access_granted & KEY_SET_VALUE)) {
666 return WERR_ACCESS_DENIED;
669 if (!W_ERROR_IS_OK(err = fill_value_cache(key))) {
670 return err;
673 existing = regval_ctr_getvalue(key->values, name);
675 if ((existing != NULL) &&
676 (regval_size(existing) == val->data.length) &&
677 (memcmp(regval_data_p(existing), val->data.data,
678 val->data.length) == 0)) {
679 return WERR_OK;
682 res = regval_ctr_addvalue(key->values, name, val->type,
683 val->data.data, val->data.length);
685 if (res == 0) {
686 TALLOC_FREE(key->values);
687 return WERR_NOMEM;
690 if (!store_reg_values(key->key, key->values)) {
691 TALLOC_FREE(key->values);
692 return WERR_REG_IO_FAILURE;
695 return WERR_OK;
698 static WERROR reg_value_exists(struct registry_key *key, const char *name)
700 struct regval_blob *blob;
702 blob = regval_ctr_getvalue(key->values, name);
704 if (blob == NULL) {
705 return WERR_BADFILE;
706 } else {
707 return WERR_OK;
711 WERROR reg_deletevalue(struct registry_key *key, const char *name)
713 WERROR err;
715 if (!(key->key->access_granted & KEY_SET_VALUE)) {
716 return WERR_ACCESS_DENIED;
719 if (!W_ERROR_IS_OK(err = fill_value_cache(key))) {
720 return err;
723 err = reg_value_exists(key, name);
724 if (!W_ERROR_IS_OK(err)) {
725 return err;
728 regval_ctr_delvalue(key->values, name);
730 if (!store_reg_values(key->key, key->values)) {
731 TALLOC_FREE(key->values);
732 return WERR_REG_IO_FAILURE;
735 return WERR_OK;
738 WERROR reg_getkeysecurity(TALLOC_CTX *mem_ctx, struct registry_key *key,
739 struct security_descriptor **psecdesc)
741 return regkey_get_secdesc(mem_ctx, key->key, psecdesc);
744 WERROR reg_setkeysecurity(struct registry_key *key,
745 struct security_descriptor *psecdesc)
747 return regkey_set_secdesc(key->key, psecdesc);
750 WERROR reg_getversion(uint32_t *version)
752 if (version == NULL) {
753 return WERR_INVALID_PARAM;
756 *version = 0x00000005; /* Windows 2000 registry API version */
757 return WERR_OK;
760 /**********************************************************************
761 * Higher level utility functions
762 **********************************************************************/
764 WERROR reg_deleteallvalues(struct registry_key *key)
766 WERROR err;
767 int i;
769 if (!(key->key->access_granted & KEY_SET_VALUE)) {
770 return WERR_ACCESS_DENIED;
773 if (!W_ERROR_IS_OK(err = fill_value_cache(key))) {
774 return err;
777 for (i=0; i < regval_ctr_numvals(key->values); i++) {
778 struct regval_blob *blob;
779 blob = regval_ctr_specific_value(key->values, i);
780 regval_ctr_delvalue(key->values, regval_name(blob));
783 if (!store_reg_values(key->key, key->values)) {
784 TALLOC_FREE(key->values);
785 return WERR_REG_IO_FAILURE;
788 return WERR_OK;
792 * Utility function to delete a registry key with all its subkeys.
793 * Note that reg_deletekey returns ACCESS_DENIED when called on a
794 * key that has subkeys.
796 static WERROR reg_deletekey_recursive_internal(struct registry_key *parent,
797 const char *path,
798 bool del_key)
800 WERROR werr = WERR_OK;
801 struct registry_key *key;
802 char *subkey_name = NULL;
803 uint32 i;
804 TALLOC_CTX *mem_ctx = talloc_stackframe();
806 /* recurse through subkeys first */
807 werr = reg_openkey(mem_ctx, parent, path, REG_KEY_ALL, &key);
808 if (!W_ERROR_IS_OK(werr)) {
809 goto done;
812 werr = fill_subkey_cache(key);
813 W_ERROR_NOT_OK_GOTO_DONE(werr);
816 * loop from top to bottom for perfomance:
817 * this way, we need to rehash the regsubkey containers less
819 for (i = regsubkey_ctr_numkeys(key->subkeys) ; i > 0; i--) {
820 subkey_name = regsubkey_ctr_specific_key(key->subkeys, i-1);
821 werr = reg_deletekey_recursive_internal(key, subkey_name, true);
822 W_ERROR_NOT_OK_GOTO_DONE(werr);
825 if (del_key) {
826 /* now delete the actual key */
827 werr = reg_deletekey(parent, path);
830 done:
831 TALLOC_FREE(mem_ctx);
832 return werr;
835 static WERROR reg_deletekey_recursive_trans(struct registry_key *parent,
836 const char *path,
837 bool del_key)
839 WERROR werr;
841 werr = regdb_transaction_start();
842 if (!W_ERROR_IS_OK(werr)) {
843 DEBUG(0, ("reg_deletekey_recursive_trans: "
844 "error starting transaction: %s\n",
845 win_errstr(werr)));
846 return werr;
849 werr = reg_deletekey_recursive_internal(parent, path, del_key);
851 if (!W_ERROR_IS_OK(werr)) {
852 WERROR werr2;
854 DEBUG(1, (__location__ " failed to delete key '%s' from key "
855 "'%s': %s\n", path, parent->key->name,
856 win_errstr(werr)));
858 werr2 = regdb_transaction_cancel();
859 if (!W_ERROR_IS_OK(werr2)) {
860 DEBUG(0, ("reg_deletekey_recursive_trans: "
861 "error cancelling transaction: %s\n",
862 win_errstr(werr2)));
864 * return the original werr or the
865 * error from cancelling the transaction?
868 } else {
869 werr = regdb_transaction_commit();
870 if (!W_ERROR_IS_OK(werr)) {
871 DEBUG(0, ("reg_deletekey_recursive_trans: "
872 "error committing transaction: %s\n",
873 win_errstr(werr)));
877 return werr;
880 WERROR reg_deletekey_recursive(struct registry_key *parent,
881 const char *path)
883 return reg_deletekey_recursive_trans(parent, path, true);
886 WERROR reg_deletesubkeys_recursive(struct registry_key *parent,
887 const char *path)
889 return reg_deletekey_recursive_trans(parent, path, false);