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
[] = {
33 { REG_NONE
, "REG_NONE" },
35 { REG_EXPAND_SZ
, "REG_EXPAND_SZ" },
36 { REG_BINARY
, "REG_BINARY" },
37 { REG_DWORD
, "REG_DWORD" },
38 { REG_DWORD_BIG_ENDIAN
, "REG_DWORD_BIG_ENDIAN" },
39 { REG_LINK
, "REG_LINK" },
40 { REG_MULTI_SZ
, "REG_MULTI_SZ" },
41 { REG_RESOURCE_LIST
, "REG_RESOURCE_LIST" },
42 { REG_FULL_RESOURCE_DESCRIPTOR
, "REG_FULL_RESOURCE_DESCRIPTOR" },
43 { REG_RESOURCE_REQUIREMENTS_LIST
, "REG_RESOURCE_REQUIREMENTS_LIST" },
44 { REG_QWORD
, "REG_QWORD" },
49 /** Return string description of registry value type */
50 _PUBLIC_
const char *str_regtype(int type
)
53 for (i
= 0; reg_value_types
[i
].name
; i
++) {
54 if (reg_value_types
[i
].id
== type
)
55 return reg_value_types
[i
].name
;
61 _PUBLIC_
char *reg_val_data_string(TALLOC_CTX
*mem_ctx
,
62 struct smb_iconv_convenience
*iconv_convenience
,
69 return talloc_strdup(mem_ctx
, "");
74 if (data
.length
% 2 == 0) {
75 convert_string_talloc_convenience(mem_ctx
,
85 ret
= data_blob_hex_string_upper(mem_ctx
, &data
);
88 if (data
.length
== sizeof(uint32_t)) {
89 if (IVAL(data
.data
, 0) == 0) {
90 ret
= talloc_strdup(mem_ctx
, "0");
92 ret
= talloc_asprintf(mem_ctx
, "0x%x",
98 if (data
.length
== sizeof(uint64_t)) {
99 if (BVAL(data
.data
, 0) == 0) {
100 ret
= talloc_strdup(mem_ctx
, "0");
102 ret
= talloc_asprintf(mem_ctx
, "0x%llx",
108 /* "NULL" is the right return value */
111 /* FIXME: We don't support this yet */
115 /* Other datatypes aren't supported -> return "NULL" */
122 /** Generate a string that describes a registry value */
123 _PUBLIC_
char *reg_val_description(TALLOC_CTX
*mem_ctx
,
124 struct smb_iconv_convenience
*iconv_convenience
,
127 const DATA_BLOB data
)
129 return talloc_asprintf(mem_ctx
, "%s = %s : %s", name
?name
:"<No Name>",
130 str_regtype(data_type
),
131 reg_val_data_string(mem_ctx
, iconv_convenience
, data_type
, data
));
134 _PUBLIC_
bool reg_string_to_val(TALLOC_CTX
*mem_ctx
,
135 struct smb_iconv_convenience
*iconv_convenience
,
136 const char *type_str
,
137 const char *data_str
, uint32_t *type
,
143 /* Find the correct type */
144 for (i
= 0; reg_value_types
[i
].name
; i
++) {
145 if (!strcmp(reg_value_types
[i
].name
, type_str
)) {
146 *type
= reg_value_types
[i
].id
;
154 /* Convert data appropriately */
159 convert_string_talloc_convenience(mem_ctx
,
164 (void **)&data
->data
,
165 &data
->length
, false);
168 *data
= strhex_to_data_blob(mem_ctx
, data_str
);
171 uint32_t tmp
= strtol(data_str
, NULL
, 0);
172 *data
= data_blob_talloc(mem_ctx
, NULL
, sizeof(uint32_t));
173 SIVAL(data
->data
, 0, tmp
);
177 uint64_t tmp
= strtoll(data_str
, NULL
, 0);
178 *data
= data_blob_talloc(mem_ctx
, NULL
, sizeof(uint64_t));
179 SBVAL(data
->data
, 0, tmp
);
186 /* FIXME: We don't support this yet */
190 /* Other datatypes aren't supported -> return no success */
196 /** Open a key by name (including the predefined key name!) */
197 WERROR
reg_open_key_abs(TALLOC_CTX
*mem_ctx
, struct registry_context
*handle
,
198 const char *name
, struct registry_key
**result
)
200 struct registry_key
*predef
;
205 if (strchr(name
, '\\') != NULL
)
206 predeflength
= strchr(name
, '\\')-name
;
208 predeflength
= strlen(name
);
210 predefname
= talloc_strndup(mem_ctx
, name
, predeflength
);
211 error
= reg_get_predefined_key_by_name(handle
, predefname
, &predef
);
212 talloc_free(predefname
);
214 if (!W_ERROR_IS_OK(error
)) {
218 if (strchr(name
, '\\')) {
219 return reg_open_key(mem_ctx
, predef
, strchr(name
, '\\')+1,
227 static WERROR
get_abs_parent(TALLOC_CTX
*mem_ctx
, struct registry_context
*ctx
,
228 const char *path
, struct registry_key
**parent
,
234 if (strchr(path
, '\\') == NULL
) {
238 parent_name
= talloc_strndup(mem_ctx
, path
, strrchr(path
, '\\')-path
);
240 error
= reg_open_key_abs(mem_ctx
, ctx
, parent_name
, parent
);
241 if (!W_ERROR_IS_OK(error
)) {
245 *name
= talloc_strdup(mem_ctx
, strrchr(path
, '\\')+1);
250 WERROR
reg_key_del_abs(struct registry_context
*ctx
, const char *path
)
252 struct registry_key
*parent
;
254 TALLOC_CTX
*mem_ctx
= talloc_init("reg_key_del_abs");
257 if (!strchr(path
, '\\')) {
261 error
= get_abs_parent(mem_ctx
, ctx
, path
, &parent
, &n
);
262 if (W_ERROR_IS_OK(error
)) {
263 error
= reg_key_del(parent
, n
);
266 talloc_free(mem_ctx
);
271 WERROR
reg_key_add_abs(TALLOC_CTX
*mem_ctx
, struct registry_context
*ctx
,
272 const char *path
, uint32_t access_mask
,
273 struct security_descriptor
*sec_desc
,
274 struct registry_key
**result
)
276 struct registry_key
*parent
;
280 if (!strchr(path
, '\\')) {
281 return WERR_ALREADY_EXISTS
;
284 error
= get_abs_parent(mem_ctx
, ctx
, path
, &parent
, &n
);
285 if (!W_ERROR_IS_OK(error
)) {
286 DEBUG(2, ("Opening parent of %s failed with %s\n", path
,
291 error
= reg_key_add_name(mem_ctx
, parent
, n
, NULL
, sec_desc
, result
);