2 Unix SMB/CIFS implementation.
3 Transparent registry backend handling
4 Copyright (C) Jelmer Vernooij 2003-2007.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "lib/registry/registry.h"
22 #include "librpc/gen_ndr/winreg.h"
26 * @brief Registry utility functions
32 } reg_value_types
[] = {
34 { REG_DWORD
, "REG_DWORD" },
35 { REG_BINARY
, "REG_BINARY" },
36 { REG_EXPAND_SZ
, "REG_EXPAND_SZ" },
37 { REG_NONE
, "REG_NONE" },
41 /** Return string description of registry value type */
42 _PUBLIC_
const char *str_regtype(int type
)
45 for (i
= 0; reg_value_types
[i
].name
; i
++) {
46 if (reg_value_types
[i
].id
== type
)
47 return reg_value_types
[i
].name
;
53 _PUBLIC_
char *reg_val_data_string(TALLOC_CTX
*mem_ctx
,
54 struct smb_iconv_convenience
*iconv_convenience
,
61 return talloc_strdup(mem_ctx
, "");
66 convert_string_talloc_convenience(mem_ctx
, iconv_convenience
, CH_UTF16
, CH_UNIX
,
67 data
.data
, data
.length
,
68 (void **)&ret
, false);
71 ret
= data_blob_hex_string(mem_ctx
, &data
);
74 if (*(int *)data
.data
== 0)
75 return talloc_strdup(mem_ctx
, "0");
76 return talloc_asprintf(mem_ctx
, "0x%x",
88 /** Generate a string that describes a registry value */
89 _PUBLIC_
char *reg_val_description(TALLOC_CTX
*mem_ctx
,
90 struct smb_iconv_convenience
*iconv_convenience
,
95 return talloc_asprintf(mem_ctx
, "%s = %s : %s", name
?name
:"<No Name>",
96 str_regtype(data_type
),
97 reg_val_data_string(mem_ctx
, iconv_convenience
, data_type
, data
));
100 _PUBLIC_
bool reg_string_to_val(TALLOC_CTX
*mem_ctx
,
101 struct smb_iconv_convenience
*iconv_convenience
,
102 const char *type_str
,
103 const char *data_str
, uint32_t *type
,
109 /* Find the correct type */
110 for (i
= 0; reg_value_types
[i
].name
; i
++) {
111 if (!strcmp(reg_value_types
[i
].name
, type_str
)) {
112 *type
= reg_value_types
[i
].id
;
120 /* Convert data appropriately */
126 data
->length
= convert_string_talloc_convenience(mem_ctx
, iconv_convenience
, CH_UNIX
, CH_UTF16
,
127 data_str
, strlen(data_str
),
128 (void **)&data
->data
, false);
132 uint32_t tmp
= strtol(data_str
, NULL
, 0);
133 *data
= data_blob_talloc(mem_ctx
, &tmp
, 4);
142 *data
= strhex_to_data_blob(mem_ctx
, data_str
);
152 /** Open a key by name (including the predefined key name!) */
153 WERROR
reg_open_key_abs(TALLOC_CTX
*mem_ctx
, struct registry_context
*handle
,
154 const char *name
, struct registry_key
**result
)
156 struct registry_key
*predef
;
161 if (strchr(name
, '\\') != NULL
)
162 predeflength
= strchr(name
, '\\')-name
;
164 predeflength
= strlen(name
);
166 predefname
= talloc_strndup(mem_ctx
, name
, predeflength
);
167 error
= reg_get_predefined_key_by_name(handle
, predefname
, &predef
);
168 talloc_free(predefname
);
170 if (!W_ERROR_IS_OK(error
)) {
174 if (strchr(name
, '\\')) {
175 return reg_open_key(mem_ctx
, predef
, strchr(name
, '\\')+1,
183 static WERROR
get_abs_parent(TALLOC_CTX
*mem_ctx
, struct registry_context
*ctx
,
184 const char *path
, struct registry_key
**parent
,
190 if (strchr(path
, '\\') == NULL
) {
194 parent_name
= talloc_strndup(mem_ctx
, path
, strrchr(path
, '\\')-path
);
196 error
= reg_open_key_abs(mem_ctx
, ctx
, parent_name
, parent
);
197 if (!W_ERROR_IS_OK(error
)) {
201 *name
= talloc_strdup(mem_ctx
, strrchr(path
, '\\')+1);
206 WERROR
reg_key_del_abs(struct registry_context
*ctx
, const char *path
)
208 struct registry_key
*parent
;
210 TALLOC_CTX
*mem_ctx
= talloc_init("reg_key_del_abs");
213 if (!strchr(path
, '\\')) {
217 error
= get_abs_parent(mem_ctx
, ctx
, path
, &parent
, &n
);
218 if (W_ERROR_IS_OK(error
)) {
219 error
= reg_key_del(parent
, n
);
222 talloc_free(mem_ctx
);
227 WERROR
reg_key_add_abs(TALLOC_CTX
*mem_ctx
, struct registry_context
*ctx
,
228 const char *path
, uint32_t access_mask
,
229 struct security_descriptor
*sec_desc
,
230 struct registry_key
**result
)
232 struct registry_key
*parent
;
236 if (!strchr(path
, '\\')) {
237 return WERR_ALREADY_EXISTS
;
240 error
= get_abs_parent(mem_ctx
, ctx
, path
, &parent
, &n
);
241 if (!W_ERROR_IS_OK(error
)) {
242 DEBUG(2, ("Opening parent of %s failed with %s\n", path
,
247 error
= reg_key_add_name(mem_ctx
, parent
, n
, NULL
, sec_desc
, result
);