2 * Unix SMB/CIFS implementation.
3 * Virtual Windows Registry Layer
4 * Copyright (C) Volker Lendecke 2006
5 * Copyright (C) Michael Adam 2007-2008
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
57 * 0x1e winreg_InitiateSystemShutdownEx
58 * 0x1f winreg_SaveKeyEx
59 * 0x20 winreg_OpenHKPT
60 * 0x21 winreg_OpenHKPN
61 * 0x22 winreg_QueryMultipleValues2
69 #define DBGC_CLASS DBGC_REGISTRY
72 /**********************************************************************
74 **********************************************************************/
76 static WERROR
fill_value_cache(struct registry_key
*key
)
78 if (key
->values
!= NULL
) {
79 if (!reg_values_need_update(key
->key
, key
->values
)) {
84 if (!(key
->values
= TALLOC_ZERO_P(key
, REGVAL_CTR
))) {
87 if (fetch_reg_values(key
->key
, key
->values
) == -1) {
88 TALLOC_FREE(key
->values
);
95 static WERROR
fill_subkey_cache(struct registry_key
*key
)
97 if (key
->subkeys
!= NULL
) {
98 if (!reg_subkeys_need_update(key
->key
, key
->subkeys
)) {
103 if (!(key
->subkeys
= TALLOC_ZERO_P(key
, REGSUBKEY_CTR
))) {
107 if (fetch_reg_keys(key
->key
, key
->subkeys
) == -1) {
108 TALLOC_FREE(key
->subkeys
);
109 return WERR_NO_MORE_ITEMS
;
115 static int regkey_destructor(REGISTRY_KEY
*key
)
117 return regdb_close();
120 static WERROR
regkey_open_onelevel(TALLOC_CTX
*mem_ctx
,
121 struct registry_key
*parent
,
123 const struct nt_user_token
*token
,
124 uint32 access_desired
,
125 struct registry_key
**pregkey
)
127 WERROR result
= WERR_OK
;
128 struct registry_key
*regkey
;
130 REGSUBKEY_CTR
*subkeys
= NULL
;
132 DEBUG(7,("regkey_open_onelevel: name = [%s]\n", name
));
134 SMB_ASSERT(strchr(name
, '\\') == NULL
);
136 if (!(regkey
= TALLOC_ZERO_P(mem_ctx
, struct registry_key
)) ||
137 !(regkey
->token
= dup_nt_token(regkey
, token
)) ||
138 !(regkey
->key
= TALLOC_ZERO_P(regkey
, REGISTRY_KEY
))) {
143 if ( !(W_ERROR_IS_OK(result
= regdb_open())) ) {
148 talloc_set_destructor(key
, regkey_destructor
);
152 key
->type
= REG_KEY_GENERIC
;
154 if (name
[0] == '\0') {
156 * Open a copy of the parent key
159 result
= WERR_BADFILE
;
162 key
->name
= talloc_strdup(key
, parent
->key
->name
);
168 key
->name
= talloc_asprintf(key
, "%s%s%s",
169 parent
? parent
->key
->name
: "",
174 if (key
->name
== NULL
) {
179 /* Tag this as a Performance Counter Key */
181 if( StrnCaseCmp(key
->name
, KEY_HKPD
, strlen(KEY_HKPD
)) == 0 )
182 key
->type
= REG_KEY_HKPD
;
184 /* Look up the table of registry I/O operations */
186 if ( !(key
->ops
= reghook_cache_find( key
->name
)) ) {
187 DEBUG(0,("reg_open_onelevel: Failed to assign "
188 "REGISTRY_OPS to [%s]\n", key
->name
));
189 result
= WERR_BADFILE
;
193 /* check if the path really exists; failed is indicated by -1 */
194 /* if the subkey count failed, bail out */
196 if ( !(subkeys
= TALLOC_ZERO_P( key
, REGSUBKEY_CTR
)) ) {
201 if ( fetch_reg_keys( key
, subkeys
) == -1 ) {
202 result
= WERR_BADFILE
;
206 TALLOC_FREE( subkeys
);
208 if ( !regkey_access_check( key
, access_desired
, &key
->access_granted
,
210 result
= WERR_ACCESS_DENIED
;
218 if ( !W_ERROR_IS_OK(result
) ) {
225 WERROR
reg_openhive(TALLOC_CTX
*mem_ctx
, const char *hive
,
226 uint32 desired_access
,
227 const struct nt_user_token
*token
,
228 struct registry_key
**pkey
)
230 SMB_ASSERT(hive
!= NULL
);
231 SMB_ASSERT(hive
[0] != '\0');
232 SMB_ASSERT(strchr(hive
, '\\') == NULL
);
234 return regkey_open_onelevel(mem_ctx
, NULL
, hive
, token
, desired_access
,
239 /**********************************************************************
241 **********************************************************************/
243 WERROR
reg_openkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*parent
,
244 const char *name
, uint32 desired_access
,
245 struct registry_key
**pkey
)
247 struct registry_key
*direct_parent
= parent
;
249 char *p
, *path
, *to_free
;
252 if (!(path
= SMB_STRDUP(name
))) {
259 if ((len
> 0) && (path
[len
-1] == '\\')) {
263 while ((p
= strchr(path
, '\\')) != NULL
) {
264 char *name_component
;
265 struct registry_key
*tmp
;
267 if (!(name_component
= SMB_STRNDUP(path
, (p
- path
)))) {
272 err
= regkey_open_onelevel(mem_ctx
, direct_parent
,
273 name_component
, parent
->token
,
274 SEC_RIGHTS_ENUM_SUBKEYS
, &tmp
);
275 SAFE_FREE(name_component
);
277 if (!W_ERROR_IS_OK(err
)) {
280 if (direct_parent
!= parent
) {
281 TALLOC_FREE(direct_parent
);
288 err
= regkey_open_onelevel(mem_ctx
, direct_parent
, path
, parent
->token
,
289 desired_access
, pkey
);
291 if (direct_parent
!= parent
) {
292 TALLOC_FREE(direct_parent
);
298 WERROR
reg_enumkey(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
299 uint32 idx
, char **name
, NTTIME
*last_write_time
)
303 if (!(key
->key
->access_granted
& SEC_RIGHTS_ENUM_SUBKEYS
)) {
304 return WERR_ACCESS_DENIED
;
307 if (!W_ERROR_IS_OK(err
= fill_subkey_cache(key
))) {
311 if (idx
>= key
->subkeys
->num_subkeys
) {
312 return WERR_NO_MORE_ITEMS
;
315 if (!(*name
= talloc_strdup(mem_ctx
, key
->subkeys
->subkeys
[idx
]))) {
319 if (last_write_time
) {
320 *last_write_time
= 0;
326 WERROR
reg_enumvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
327 uint32 idx
, char **pname
, struct registry_value
**pval
)
329 struct registry_value
*val
;
332 if (!(key
->key
->access_granted
& SEC_RIGHTS_QUERY_VALUE
)) {
333 return WERR_ACCESS_DENIED
;
336 if (!(W_ERROR_IS_OK(err
= fill_value_cache(key
)))) {
340 if (idx
>= key
->values
->num_values
) {
341 return WERR_NO_MORE_ITEMS
;
344 err
= registry_pull_value(mem_ctx
, &val
,
345 key
->values
->values
[idx
]->type
,
346 key
->values
->values
[idx
]->data_p
,
347 key
->values
->values
[idx
]->size
,
348 key
->values
->values
[idx
]->size
);
349 if (!W_ERROR_IS_OK(err
)) {
354 && !(*pname
= talloc_strdup(
355 mem_ctx
, key
->values
->values
[idx
]->valuename
))) {
364 WERROR
reg_queryvalue(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
365 const char *name
, struct registry_value
**pval
)
370 if (!(key
->key
->access_granted
& SEC_RIGHTS_QUERY_VALUE
)) {
371 return WERR_ACCESS_DENIED
;
374 if (!(W_ERROR_IS_OK(err
= fill_value_cache(key
)))) {
378 for (i
=0; i
<key
->values
->num_values
; i
++) {
379 if (strequal(key
->values
->values
[i
]->valuename
, name
)) {
380 return reg_enumvalue(mem_ctx
, key
, i
, NULL
, pval
);
387 WERROR
reg_queryinfokey(struct registry_key
*key
, uint32_t *num_subkeys
,
388 uint32_t *max_subkeylen
, uint32_t *max_subkeysize
,
389 uint32_t *num_values
, uint32_t *max_valnamelen
,
390 uint32_t *max_valbufsize
, uint32_t *secdescsize
,
391 NTTIME
*last_changed_time
)
397 struct security_descriptor
*secdesc
;
399 if (!(key
->key
->access_granted
& SEC_RIGHTS_QUERY_VALUE
)) {
400 return WERR_ACCESS_DENIED
;
403 if (!W_ERROR_IS_OK(fill_subkey_cache(key
)) ||
404 !W_ERROR_IS_OK(fill_value_cache(key
))) {
409 for (i
=0; i
<key
->subkeys
->num_subkeys
; i
++) {
410 max_len
= MAX(max_len
, strlen(key
->subkeys
->subkeys
[i
]));
413 *num_subkeys
= key
->subkeys
->num_subkeys
;
414 *max_subkeylen
= max_len
;
415 *max_subkeysize
= 0; /* Class length? */
419 for (i
=0; i
<key
->values
->num_values
; i
++) {
420 max_len
= MAX(max_len
,
421 strlen(key
->values
->values
[i
]->valuename
));
422 max_size
= MAX(max_size
, key
->values
->values
[i
]->size
);
425 *num_values
= key
->values
->num_values
;
426 *max_valnamelen
= max_len
;
427 *max_valbufsize
= max_size
;
429 if (!(mem_ctx
= talloc_new(key
))) {
433 err
= regkey_get_secdesc(mem_ctx
, key
->key
, &secdesc
);
434 if (!W_ERROR_IS_OK(err
)) {
435 TALLOC_FREE(mem_ctx
);
439 *secdescsize
= ndr_size_security_descriptor(secdesc
, 0);
440 TALLOC_FREE(mem_ctx
);
442 *last_changed_time
= 0;
447 WERROR
reg_createkey(TALLOC_CTX
*ctx
, struct registry_key
*parent
,
448 const char *subkeypath
, uint32 desired_access
,
449 struct registry_key
**pkey
,
450 enum winreg_CreateAction
*paction
)
452 struct registry_key
*key
= parent
;
453 struct registry_key
*create_parent
;
458 if (!(mem_ctx
= talloc_new(ctx
))) return WERR_NOMEM
;
460 if (!(path
= talloc_strdup(mem_ctx
, subkeypath
))) {
465 while ((end
= strchr(path
, '\\')) != NULL
) {
466 struct registry_key
*tmp
;
467 enum winreg_CreateAction action
;
471 err
= reg_createkey(mem_ctx
, key
, path
,
472 SEC_RIGHTS_ENUM_SUBKEYS
, &tmp
, &action
);
473 if (!W_ERROR_IS_OK(err
)) {
486 * At this point, "path" contains the one-element subkey of "key". We
487 * can try to open it.
490 err
= reg_openkey(ctx
, key
, path
, desired_access
, pkey
);
491 if (W_ERROR_IS_OK(err
)) {
492 if (paction
!= NULL
) {
493 *paction
= REG_OPENED_EXISTING_KEY
;
498 if (!W_ERROR_EQUAL(err
, WERR_BADFILE
)) {
500 * Something but "notfound" has happened, so bail out
506 * We have to make a copy of the current key, as we opened it only
507 * with ENUM_SUBKEY access.
510 err
= reg_openkey(mem_ctx
, key
, "", SEC_RIGHTS_CREATE_SUBKEY
,
512 if (!W_ERROR_IS_OK(err
)) {
517 * Actually create the subkey
520 err
= fill_subkey_cache(create_parent
);
521 if (!W_ERROR_IS_OK(err
)) goto done
;
523 err
= regsubkey_ctr_addkey(create_parent
->subkeys
, path
);
524 if (!W_ERROR_IS_OK(err
)) goto done
;
526 if (!store_reg_keys(create_parent
->key
, create_parent
->subkeys
)) {
527 TALLOC_FREE(create_parent
->subkeys
);
528 err
= WERR_REG_IO_FAILURE
;
533 * Now open the newly created key
536 err
= reg_openkey(ctx
, create_parent
, path
, desired_access
, pkey
);
537 if (W_ERROR_IS_OK(err
) && (paction
!= NULL
)) {
538 *paction
= REG_CREATED_NEW_KEY
;
542 TALLOC_FREE(mem_ctx
);
546 WERROR
reg_deletekey(struct registry_key
*parent
, const char *path
)
552 struct registry_key
*tmp_key
, *key
;
554 if (!(mem_ctx
= talloc_init("reg_createkey"))) return WERR_NOMEM
;
556 if (!(name
= talloc_strdup(mem_ctx
, path
))) {
561 /* check if the key has subkeys */
562 err
= reg_openkey(mem_ctx
, parent
, name
, REG_KEY_READ
, &key
);
563 if (!W_ERROR_IS_OK(err
)) {
566 if (!W_ERROR_IS_OK(err
= fill_subkey_cache(key
))) {
569 if (key
->subkeys
->num_subkeys
> 0) {
570 err
= WERR_ACCESS_DENIED
;
574 /* no subkeys - proceed with delete */
575 if ((end
= strrchr(name
, '\\')) != NULL
) {
578 err
= reg_openkey(mem_ctx
, parent
, name
,
579 SEC_RIGHTS_CREATE_SUBKEY
, &tmp_key
);
580 if (!W_ERROR_IS_OK(err
)) {
588 if (name
[0] == '\0') {
589 err
= WERR_INVALID_PARAM
;
593 if (!W_ERROR_IS_OK(err
= fill_subkey_cache(parent
))) {
597 num_subkeys
= parent
->subkeys
->num_subkeys
;
599 if (regsubkey_ctr_delkey(parent
->subkeys
, name
) == num_subkeys
) {
604 if (!store_reg_keys(parent
->key
, parent
->subkeys
)) {
605 TALLOC_FREE(parent
->subkeys
);
606 err
= WERR_REG_IO_FAILURE
;
610 regkey_set_secdesc(key
->key
, NULL
);
615 TALLOC_FREE(mem_ctx
);
619 WERROR
reg_setvalue(struct registry_key
*key
, const char *name
,
620 const struct registry_value
*val
)
623 DATA_BLOB value_data
;
626 if (!(key
->key
->access_granted
& SEC_RIGHTS_SET_VALUE
)) {
627 return WERR_ACCESS_DENIED
;
630 if (!W_ERROR_IS_OK(err
= fill_value_cache(key
))) {
634 err
= registry_push_value(key
, val
, &value_data
);
635 if (!W_ERROR_IS_OK(err
)) {
639 res
= regval_ctr_addvalue(key
->values
, name
, val
->type
,
640 (char *)value_data
.data
, value_data
.length
);
641 TALLOC_FREE(value_data
.data
);
644 TALLOC_FREE(key
->values
);
648 if (!store_reg_values(key
->key
, key
->values
)) {
649 TALLOC_FREE(key
->values
);
650 return WERR_REG_IO_FAILURE
;
656 static WERROR
reg_value_exists(struct registry_key
*key
, const char *name
)
660 for (i
=0; i
<key
->values
->num_values
; i
++) {
661 if (strequal(key
->values
->values
[i
]->valuename
, name
)) {
669 WERROR
reg_deletevalue(struct registry_key
*key
, const char *name
)
673 if (!(key
->key
->access_granted
& SEC_RIGHTS_SET_VALUE
)) {
674 return WERR_ACCESS_DENIED
;
677 if (!W_ERROR_IS_OK(err
= fill_value_cache(key
))) {
681 err
= reg_value_exists(key
, name
);
682 if (!W_ERROR_IS_OK(err
)) {
686 regval_ctr_delvalue(key
->values
, name
);
688 if (!store_reg_values(key
->key
, key
->values
)) {
689 TALLOC_FREE(key
->values
);
690 return WERR_REG_IO_FAILURE
;
696 WERROR
reg_getkeysecurity(TALLOC_CTX
*mem_ctx
, struct registry_key
*key
,
697 struct security_descriptor
**psecdesc
)
699 return regkey_get_secdesc(mem_ctx
, key
->key
, psecdesc
);
702 WERROR
reg_setkeysecurity(struct registry_key
*key
,
703 struct security_descriptor
*psecdesc
)
705 return regkey_set_secdesc(key
->key
, psecdesc
);
708 WERROR
reg_getversion(uint32_t *version
)
710 if (version
== NULL
) {
711 return WERR_INVALID_PARAM
;
714 *version
= 0x00000005; /* Windows 2000 registry API version */
718 /*******************************************************************
719 Note: topkeypat is the *full* path that this *key will be
720 loaded into (including the name of the key)
721 ********************************************************************/
723 static WERROR
reg_load_tree(REGF_FILE
*regfile
, const char *topkeypath
,
727 REGISTRY_KEY registry_key
;
729 REGSUBKEY_CTR
*subkeys
;
732 WERROR result
= WERR_OK
;
734 /* initialize the REGISTRY_KEY structure */
736 registry_key
.ops
= reghook_cache_find(topkeypath
);
737 if (!registry_key
.ops
) {
738 DEBUG(0, ("reg_load_tree: Failed to assign REGISTRY_OPS "
739 "to [%s]\n", topkeypath
));
743 registry_key
.name
= talloc_strdup(regfile
->mem_ctx
, topkeypath
);
744 if (!registry_key
.name
) {
745 DEBUG(0, ("reg_load_tree: Talloc failed for reg_key.name!\n"));
749 /* now start parsing the values and subkeys */
751 subkeys
= TALLOC_ZERO_P(regfile
->mem_ctx
, REGSUBKEY_CTR
);
752 if (subkeys
== NULL
) {
756 values
= TALLOC_ZERO_P(subkeys
, REGVAL_CTR
);
757 if (values
== NULL
) {
761 /* copy values into the REGVAL_CTR */
763 for (i
=0; i
<key
->num_values
; i
++) {
764 regval_ctr_addvalue(values
, key
->values
[i
].valuename
,
766 (char*)key
->values
[i
].data
,
767 (key
->values
[i
].data_size
& ~VK_DATA_IN_OFFSET
));
770 /* copy subkeys into the REGSUBKEY_CTR */
772 key
->subkey_index
= 0;
773 while ((subkey
= regfio_fetch_subkey( regfile
, key
))) {
774 result
= regsubkey_ctr_addkey(subkeys
, subkey
->keyname
);
775 if (!W_ERROR_IS_OK(result
)) {
776 TALLOC_FREE(subkeys
);
781 /* write this key and values out */
783 if (!store_reg_values(®istry_key
, values
)
784 || !store_reg_keys(®istry_key
, subkeys
))
786 DEBUG(0,("reg_load_tree: Failed to load %s!\n", topkeypath
));
787 result
= WERR_REG_IO_FAILURE
;
790 TALLOC_FREE(subkeys
);
792 if (!W_ERROR_IS_OK(result
)) {
796 /* now continue to load each subkey registry tree */
798 key
->subkey_index
= 0;
799 while ((subkey
= regfio_fetch_subkey(regfile
, key
))) {
800 path
= talloc_asprintf(regfile
->mem_ctx
,
807 result
= reg_load_tree(regfile
, path
, subkey
);
808 if (!W_ERROR_IS_OK(result
)) {
816 /*******************************************************************
817 ********************************************************************/
819 static WERROR
restore_registry_key(REGISTRY_KEY
*krecord
, const char *fname
)
822 REGF_NK_REC
*rootkey
;
825 /* open the registry file....fail if the file already exists */
827 regfile
= regfio_open(fname
, (O_RDONLY
), 0);
828 if (regfile
== NULL
) {
829 DEBUG(0, ("restore_registry_key: failed to open \"%s\" (%s)\n",
830 fname
, strerror(errno
)));
831 return ntstatus_to_werror(map_nt_error_from_unix(errno
));
834 /* get the rootkey from the regf file and then load the tree
835 via recursive calls */
837 if (!(rootkey
= regfio_rootkey(regfile
))) {
838 regfio_close(regfile
);
839 return WERR_REG_FILE_INVALID
;
842 result
= reg_load_tree(regfile
, krecord
->name
, rootkey
);
846 regfio_close(regfile
);
851 WERROR
reg_restorekey(struct registry_key
*key
, const char *fname
)
853 return restore_registry_key(key
->key
, fname
);
856 /********************************************************************
857 ********************************************************************/
859 static WERROR
reg_write_tree(REGF_FILE
*regfile
, const char *keypath
,
864 REGSUBKEY_CTR
*subkeys
;
866 char *key_tmp
= NULL
;
867 char *keyname
, *parentpath
;
868 char *subkeypath
= NULL
;
870 REGISTRY_KEY registry_key
;
871 WERROR result
= WERR_OK
;
872 SEC_DESC
*sec_desc
= NULL
;
875 return WERR_GENERAL_FAILURE
;
879 return WERR_OBJECT_PATH_INVALID
;
882 /* split up the registry key path */
884 key_tmp
= talloc_strdup(regfile
->mem_ctx
, keypath
);
888 if (!reg_split_key(key_tmp
, &parentpath
, &keyname
)) {
889 return WERR_OBJECT_PATH_INVALID
;
893 keyname
= parentpath
;
896 /* we need a REGISTRY_KEY object here to enumerate subkeys and values */
898 ZERO_STRUCT(registry_key
);
900 registry_key
.name
= talloc_strdup(regfile
->mem_ctx
, keypath
);
901 if (registry_key
.name
== NULL
) {
905 registry_key
.ops
= reghook_cache_find(registry_key
.name
);
906 if (registry_key
.ops
== NULL
) {
910 /* lookup the values and subkeys */
912 subkeys
= TALLOC_ZERO_P(regfile
->mem_ctx
, REGSUBKEY_CTR
);
913 if (subkeys
== NULL
) {
917 values
= TALLOC_ZERO_P(subkeys
, REGVAL_CTR
);
918 if (values
== NULL
) {
922 fetch_reg_keys(®istry_key
, subkeys
);
923 fetch_reg_values(®istry_key
, values
);
925 result
= regkey_get_secdesc(regfile
->mem_ctx
, ®istry_key
, &sec_desc
);
926 if (!W_ERROR_IS_OK(result
)) {
930 /* write out this key */
932 key
= regfio_write_key(regfile
, keyname
, values
, subkeys
, sec_desc
,
935 result
= WERR_CAN_NOT_COMPLETE
;
939 /* write each one of the subkeys out */
941 num_subkeys
= regsubkey_ctr_numkeys(subkeys
);
942 for (i
=0; i
<num_subkeys
; i
++) {
943 subkeyname
= regsubkey_ctr_specific_key(subkeys
, i
);
944 subkeypath
= talloc_asprintf(regfile
->mem_ctx
, "%s\\%s",
945 keypath
, subkeyname
);
946 if (subkeypath
== NULL
) {
950 result
= reg_write_tree(regfile
, subkeypath
, key
);
951 if (!W_ERROR_IS_OK(result
))
955 DEBUG(6, ("reg_write_tree: wrote key [%s]\n", keypath
));
958 TALLOC_FREE(subkeys
);
959 TALLOC_FREE(registry_key
.name
);
964 static WERROR
backup_registry_key(REGISTRY_KEY
*krecord
, const char *fname
)
969 /* open the registry file....fail if the file already exists */
971 regfile
= regfio_open(fname
, (O_RDWR
|O_CREAT
|O_EXCL
),
973 if (regfile
== NULL
) {
974 DEBUG(0,("backup_registry_key: failed to open \"%s\" (%s)\n",
975 fname
, strerror(errno
) ));
976 return ntstatus_to_werror(map_nt_error_from_unix(errno
));
979 /* write the registry tree to the file */
981 result
= reg_write_tree(regfile
, krecord
->name
, NULL
);
985 regfio_close(regfile
);
990 WERROR
reg_savekey(struct registry_key
*key
, const char *fname
)
992 return backup_registry_key(key
->key
, fname
);
995 /**********************************************************************
996 * Higher level utility functions
997 **********************************************************************/
999 WERROR
reg_deleteallvalues(struct registry_key
*key
)
1004 if (!(key
->key
->access_granted
& SEC_RIGHTS_SET_VALUE
)) {
1005 return WERR_ACCESS_DENIED
;
1008 if (!W_ERROR_IS_OK(err
= fill_value_cache(key
))) {
1012 for (i
=0; i
<key
->values
->num_values
; i
++) {
1013 regval_ctr_delvalue(key
->values
, key
->values
->values
[i
]->valuename
);
1016 if (!store_reg_values(key
->key
, key
->values
)) {
1017 TALLOC_FREE(key
->values
);
1018 return WERR_REG_IO_FAILURE
;
1025 * Utility function to open a complete registry path including the hive prefix.
1028 WERROR
reg_open_path(TALLOC_CTX
*mem_ctx
, const char *orig_path
,
1029 uint32 desired_access
, const struct nt_user_token
*token
,
1030 struct registry_key
**pkey
)
1032 struct registry_key
*hive
, *key
;
1036 if (!(path
= SMB_STRDUP(orig_path
))) {
1040 p
= strchr(path
, '\\');
1042 if ((p
== NULL
) || (p
[1] == '\0')) {
1044 * No key behind the hive, just return the hive
1047 err
= reg_openhive(mem_ctx
, path
, desired_access
, token
,
1049 if (!W_ERROR_IS_OK(err
)) {
1060 err
= reg_openhive(mem_ctx
, path
, SEC_RIGHTS_ENUM_SUBKEYS
, token
,
1062 if (!W_ERROR_IS_OK(err
)) {
1067 err
= reg_openkey(mem_ctx
, hive
, p
+1, desired_access
, &key
);
1072 if (!W_ERROR_IS_OK(err
)) {
1081 * Utility function to delete a registry key with all its subkeys.
1082 * Note that reg_deletekey returns ACCESS_DENIED when called on a
1083 * key that has subkeys.
1085 static WERROR
reg_deletekey_recursive_internal(TALLOC_CTX
*ctx
,
1086 struct registry_key
*parent
,
1090 TALLOC_CTX
*mem_ctx
= NULL
;
1091 WERROR werr
= WERR_OK
;
1092 struct registry_key
*key
;
1093 char *subkey_name
= NULL
;
1095 mem_ctx
= talloc_new(ctx
);
1096 if (mem_ctx
== NULL
) {
1101 /* recurse through subkeys first */
1102 werr
= reg_openkey(mem_ctx
, parent
, path
, REG_KEY_ALL
, &key
);
1103 if (!W_ERROR_IS_OK(werr
)) {
1107 while (W_ERROR_IS_OK(werr
= reg_enumkey(mem_ctx
, key
, 0,
1108 &subkey_name
, NULL
)))
1110 werr
= reg_deletekey_recursive_internal(mem_ctx
, key
,
1113 if (!W_ERROR_IS_OK(werr
)) {
1117 if (!W_ERROR_EQUAL(WERR_NO_MORE_ITEMS
, werr
)) {
1118 DEBUG(1, ("reg_deletekey_recursive_internal: "
1119 "Error enumerating subkeys: %s\n",
1127 /* now delete the actual key */
1128 werr
= reg_deletekey(parent
, path
);
1132 TALLOC_FREE(mem_ctx
);
1136 WERROR
reg_deletekey_recursive(TALLOC_CTX
*ctx
,
1137 struct registry_key
*parent
,
1140 return reg_deletekey_recursive_internal(ctx
, parent
, path
, true);
1143 WERROR
reg_deletesubkeys_recursive(TALLOC_CTX
*ctx
,
1144 struct registry_key
*parent
,
1147 return reg_deletekey_recursive_internal(ctx
, parent
, path
, false);
1151 /* these two functions are unused. */
1154 * Utility function to create a registry key without opening the hive
1155 * before. Assumes the hive already exists.
1158 WERROR
reg_create_path(TALLOC_CTX
*mem_ctx
, const char *orig_path
,
1159 uint32 desired_access
,
1160 const struct nt_user_token
*token
,
1161 enum winreg_CreateAction
*paction
,
1162 struct registry_key
**pkey
)
1164 struct registry_key
*hive
;
1168 if (!(path
= SMB_STRDUP(orig_path
))) {
1172 p
= strchr(path
, '\\');
1174 if ((p
== NULL
) || (p
[1] == '\0')) {
1176 * No key behind the hive, just return the hive
1179 err
= reg_openhive(mem_ctx
, path
, desired_access
, token
,
1181 if (!W_ERROR_IS_OK(err
)) {
1187 *paction
= REG_OPENED_EXISTING_KEY
;
1193 err
= reg_openhive(mem_ctx
, path
,
1194 (strchr(p
+1, '\\') != NULL
) ?
1195 SEC_RIGHTS_ENUM_SUBKEYS
: SEC_RIGHTS_CREATE_SUBKEY
,
1197 if (!W_ERROR_IS_OK(err
)) {
1202 err
= reg_createkey(mem_ctx
, hive
, p
+1, desired_access
, pkey
, paction
);
1209 * Utility function to create a registry key without opening the hive
1210 * before. Will not delete a hive.
1213 WERROR
reg_delete_path(const struct nt_user_token
*token
,
1214 const char *orig_path
)
1216 struct registry_key
*hive
;
1220 if (!(path
= SMB_STRDUP(orig_path
))) {
1224 p
= strchr(path
, '\\');
1226 if ((p
== NULL
) || (p
[1] == '\0')) {
1228 return WERR_INVALID_PARAM
;
1233 err
= reg_openhive(NULL
, path
,
1234 (strchr(p
+1, '\\') != NULL
) ?
1235 SEC_RIGHTS_ENUM_SUBKEYS
: SEC_RIGHTS_CREATE_SUBKEY
,
1237 if (!W_ERROR_IS_OK(err
)) {
1242 err
= reg_deletekey(hive
, p
+1);