WHATSNEW: Add release notes for Samba 3.6.23.
[Samba.git] / source3 / registry / reg_api.c
blob55e364feae99b869a3becee0898406d1b49c69dc
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 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);
98 return WERR_BADFILE;
101 return WERR_OK;
104 static WERROR fill_subkey_cache(struct registry_key *key)
106 WERROR werr;
108 if (key->subkeys != NULL) {
109 if (!reg_subkeys_need_update(key->key, key->subkeys)) {
110 return WERR_OK;
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);
119 return WERR_BADFILE;
122 return WERR_OK;
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,
132 const char *name,
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)))
149 result = WERR_NOMEM;
150 goto done;
153 result = regdb_open();
154 if (!(W_ERROR_IS_OK(result))) {
155 goto done;
158 key = regkey->key;
159 talloc_set_destructor(key, regkey_destructor);
161 /* initialization */
163 key->type = REG_KEY_GENERIC;
165 if (name[0] == '\0') {
167 * Open a copy of the parent key
169 if (!parent) {
170 result = WERR_BADFILE;
171 goto done;
173 key->name = talloc_strdup(key, parent->key->name);
175 else {
177 * Normal subkey open
179 key->name = talloc_asprintf(key, "%s%s%s",
180 parent ? parent->key->name : "",
181 parent ? "\\": "",
182 name);
185 if (key->name == NULL) {
186 result = WERR_NOMEM;
187 goto done;
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;
202 goto done;
205 /* FIXME: Existence is currently checked by fetching the subkeys */
207 result = fill_subkey_cache(regkey);
208 if (!W_ERROR_IS_OK(result)) {
209 goto done;
212 if ( !regkey_access_check( key, access_desired, &key->access_granted,
213 token ) ) {
214 result = WERR_ACCESS_DENIED;
215 goto done;
218 *pregkey = regkey;
219 result = WERR_OK;
221 done:
222 if ( !W_ERROR_IS_OK(result) ) {
223 TALLOC_FREE(regkey);
226 return 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,
239 pkey);
243 /**********************************************************************
244 * The API functions
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;
252 WERROR err;
253 char *p, *path;
254 size_t len;
255 TALLOC_CTX *frame = talloc_stackframe();
257 path = talloc_strdup(frame, name);
258 if (path == NULL) {
259 err = WERR_NOMEM;
260 goto error;
263 len = strlen(path);
265 if ((len > 0) && (path[len-1] == '\\')) {
266 path[len-1] = '\0';
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) {
275 err = WERR_NOMEM;
276 goto error;
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)) {
284 goto error;
287 direct_parent = tmp;
288 path = p+1;
291 err = regkey_open_onelevel(mem_ctx, direct_parent, path, parent->token,
292 desired_access, pkey);
294 error:
295 talloc_free(frame);
296 return err;
299 WERROR reg_enumkey(TALLOC_CTX *mem_ctx, struct registry_key *key,
300 uint32 idx, char **name, NTTIME *last_write_time)
302 WERROR err;
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))) {
309 return err;
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))))
319 return WERR_NOMEM;
322 if (last_write_time) {
323 *last_write_time = 0;
326 return WERR_OK;
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;
334 WERROR err;
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)))) {
341 return err;
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);
351 if (val == NULL) {
352 return WERR_NOMEM;
355 val->type = regval_type(blob);
356 val->data = data_blob_talloc(mem_ctx, regval_data_p(blob), regval_size(blob));
358 if (pname
359 && !(*pname = talloc_strdup(
360 mem_ctx, regval_name(blob)))) {
361 TALLOC_FREE(val);
362 return WERR_NOMEM;
365 *pval = val;
366 return WERR_OK;
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);
388 if (val == NULL) {
389 return WERR_NOMEM;
392 val->type = regval_type(blob);
393 val->data = data_blob_talloc(mem_ctx, regval_data_p(blob), regval_size(blob));
395 if (pname
396 && !(*pname = talloc_strdup(
397 mem_ctx, regval_name(blob)))) {
398 TALLOC_FREE(val);
399 return WERR_NOMEM;
402 *pval = val;
403 return WERR_OK;
406 WERROR reg_queryvalue(TALLOC_CTX *mem_ctx, struct registry_key *key,
407 const char *name, struct registry_value **pval)
409 WERROR err;
410 uint32 i;
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)))) {
417 return err;
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
428 * this function.
430 return reg_enumvalue_nocachefill(mem_ctx, key, i,
431 NULL, pval);
435 return WERR_BADFILE;
438 WERROR reg_querymultiplevalues(TALLOC_CTX *mem_ctx,
439 struct registry_key *key,
440 uint32_t num_names,
441 const char **names,
442 uint32_t *pnum_vals,
443 struct registry_value **pvals)
445 WERROR err;
446 uint32_t i, n, found = 0;
447 struct registry_value *vals;
449 if (num_names == 0) {
450 return WERR_OK;
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)))) {
458 return err;
461 vals = talloc_zero_array(mem_ctx, struct registry_value, num_names);
462 if (vals == NULL) {
463 return WERR_NOMEM;
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)) {
474 return err;
476 vals[n] = *v;
477 found++;
482 *pvals = vals;
483 *pnum_vals = found;
485 return WERR_OK;
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)
494 uint32 i, max_size;
495 size_t max_len;
496 TALLOC_CTX *mem_ctx;
497 WERROR err;
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))) {
506 return WERR_BADFILE;
509 max_len = 0;
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? */
519 max_len = 0;
520 max_size = 0;
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))) {
533 return WERR_NOMEM;
536 err = regkey_get_secdesc(mem_ctx, key->key, &secdesc);
537 if (!W_ERROR_IS_OK(err)) {
538 TALLOC_FREE(mem_ctx);
539 return err;
542 *secdescsize = ndr_size_security_descriptor(secdesc, 0);
543 TALLOC_FREE(mem_ctx);
545 *last_changed_time = 0;
547 return WERR_OK;
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;
557 TALLOC_CTX *mem_ctx;
558 char *path, *end;
559 WERROR err;
560 uint32_t access_granted;
562 mem_ctx = talloc_new(ctx);
563 if (mem_ctx == NULL) {
564 return WERR_NOMEM;
567 path = talloc_strdup(mem_ctx, subkeypath);
568 if (path == NULL) {
569 err = WERR_NOMEM;
570 goto done;
573 err = regdb_transaction_start();
574 if (!W_ERROR_IS_OK(err)) {
575 DEBUG(0, ("reg_createkey: failed to start transaction: %s\n",
576 win_errstr(err)));
577 goto done;
580 while ((end = strchr(path, '\\')) != NULL) {
581 struct registry_key *tmp;
582 enum winreg_CreateAction action;
584 *end = '\0';
586 err = reg_createkey(mem_ctx, key, path,
587 KEY_ENUMERATE_SUB_KEYS, &tmp, &action);
588 if (!W_ERROR_IS_OK(err)) {
589 goto trans_done;
592 if (key != parent) {
593 TALLOC_FREE(key);
596 key = tmp;
597 path = end+1;
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;
610 goto trans_done;
613 if (!W_ERROR_EQUAL(err, WERR_BADFILE)) {
615 * Something but "notfound" has happened, so bail out
617 goto trans_done;
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,
626 key->token))
628 err = WERR_ACCESS_DENIED;
629 goto done;
633 * Actually create the subkey
636 err = create_reg_subkey(key->key, path);
637 if (!W_ERROR_IS_OK(err)) {
638 goto trans_done;
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;
650 trans_done:
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)));
656 } else {
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)));
663 done:
664 TALLOC_FREE(mem_ctx);
665 return err;
668 WERROR reg_deletekey(struct registry_key *parent, const char *path)
670 WERROR err;
671 char *name, *end;
672 struct registry_key *tmp_key, *key;
673 TALLOC_CTX *mem_ctx = talloc_stackframe();
675 name = talloc_strdup(mem_ctx, path);
676 if (name == NULL) {
677 err = WERR_NOMEM;
678 goto done;
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",
688 win_errstr(err)));
689 goto done;
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;
697 goto trans_done;
700 /* no subkeys - proceed with delete */
701 end = strrchr(name, '\\');
702 if (end != NULL) {
703 *end = '\0';
705 err = reg_openkey(mem_ctx, parent, name,
706 KEY_CREATE_SUB_KEY, &tmp_key);
707 W_ERROR_NOT_OK_GOTO(err, trans_done);
709 parent = tmp_key;
710 name = end+1;
713 if (name[0] == '\0') {
714 err = WERR_INVALID_PARAM;
715 goto trans_done;
718 err = delete_reg_subkey(parent->key, name);
720 trans_done:
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)));
726 } else {
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)));
733 done:
734 TALLOC_FREE(mem_ctx);
735 return err;
738 WERROR reg_setvalue(struct registry_key *key, const char *name,
739 const struct registry_value *val)
741 struct regval_blob *existing;
742 WERROR err;
743 int res;
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",
752 win_errstr(err)));
753 return err;
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)));
759 goto done;
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))
769 err = WERR_OK;
770 goto done;
773 res = regval_ctr_addvalue(key->values, name, val->type,
774 val->data.data, val->data.length);
776 if (res == 0) {
777 TALLOC_FREE(key->values);
778 err = WERR_NOMEM;
779 goto done;
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;
786 goto done;
789 err = WERR_OK;
791 done:
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)));
797 } else {
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)));
804 return err;
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);
813 if (blob == NULL) {
814 return WERR_BADFILE;
815 } else {
816 return WERR_OK;
820 WERROR reg_deletevalue(struct registry_key *key, const char *name)
822 WERROR err;
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",
831 win_errstr(err)));
832 return err;
835 err = fill_value_cache(key);
836 if (!W_ERROR_IS_OK(err)) {
837 DEBUG(0, ("reg_deletevalue; Error filling value cache: %s\n",
838 win_errstr(err)));
839 goto done;
842 err = reg_value_exists(key, name);
843 if (!W_ERROR_IS_OK(err)) {
844 goto done;
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"));
853 goto done;
856 err = WERR_OK;
858 done:
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)));
864 } else {
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)));
871 return err;
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 */
893 return WERR_OK;
896 /**********************************************************************
897 * Higher level utility functions
898 **********************************************************************/
900 WERROR reg_deleteallvalues(struct registry_key *key)
902 WERROR err;
903 int i;
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))) {
910 return err;
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;
924 return WERR_OK;
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,
933 const char *path,
934 bool del_key)
936 WERROR werr = WERR_OK;
937 struct registry_key *key;
938 char *subkey_name = NULL;
939 uint32 i;
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)) {
945 goto done;
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);
961 if (del_key) {
962 /* now delete the actual key */
963 werr = reg_deletekey(parent, path);
966 done:
967 TALLOC_FREE(mem_ctx);
968 return werr;
971 static WERROR reg_deletekey_recursive_trans(struct registry_key *parent,
972 const char *path,
973 bool del_key)
975 WERROR werr;
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",
981 win_errstr(werr)));
982 return werr;
985 werr = reg_deletekey_recursive_internal(parent, path, del_key);
987 if (!W_ERROR_IS_OK(werr)) {
988 WERROR werr2;
990 DEBUG(1, (__location__ " failed to delete key '%s' from key "
991 "'%s': %s\n", path, parent->key->name,
992 win_errstr(werr)));
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",
998 win_errstr(werr2)));
1000 * return the original werr or the
1001 * error from cancelling the transaction?
1004 } else {
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",
1009 win_errstr(werr)));
1013 return werr;
1016 WERROR reg_deletekey_recursive(struct registry_key *parent,
1017 const char *path)
1019 return reg_deletekey_recursive_trans(parent, path, true);
1022 WERROR reg_deletesubkeys_recursive(struct registry_key *parent,
1023 const char *path)
1025 return reg_deletekey_recursive_trans(parent, path, false);