2 Unix SMB/CIFS implementation.
3 Transparent registry backend handling
4 Copyright (C) Jelmer Vernooij 2003-2007.
5 Copyright (C) Wilco Baan Hofman 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/>.
22 #include "lib/registry/registry.h"
23 #include "librpc/gen_ndr/winreg.h"
24 #include "lib/util/data_blob.h"
26 _PUBLIC_
char *reg_val_data_string(TALLOC_CTX
*mem_ctx
, uint32_t type
,
29 size_t converted_size
= 0;
33 return talloc_strdup(mem_ctx
, "");
38 convert_string_talloc(mem_ctx
,
40 data
.data
, data
.length
,
41 (void **)&ret
, &converted_size
);
44 case REG_DWORD_BIG_ENDIAN
:
45 SMB_ASSERT(data
.length
== sizeof(uint32_t));
46 ret
= talloc_asprintf(mem_ctx
, "0x%8.8x",
50 SMB_ASSERT(data
.length
== sizeof(uint64_t));
51 ret
= talloc_asprintf(mem_ctx
, "0x%16.16llx",
52 (long long)BVAL(data
.data
, 0));
55 ret
= data_blob_hex_string_upper(mem_ctx
, &data
);
58 /* "NULL" is the right return value */
61 /* FIXME: We don't support this yet */
65 /* Other datatypes aren't supported -> return "NULL" */
72 /** Generate a string that describes a registry value */
73 _PUBLIC_
char *reg_val_description(TALLOC_CTX
*mem_ctx
,
78 return talloc_asprintf(mem_ctx
, "%s = %s : %s", name
?name
:"<No Name>",
79 str_regtype(data_type
),
80 reg_val_data_string(mem_ctx
, data_type
, data
));
84 * This implements reading hex bytes that include comma's.
85 * It was previously handled by strhex_to_data_blob, but that did not cover
86 * the format used by windows.
88 static DATA_BLOB
reg_strhex_to_data_blob(TALLOC_CTX
*mem_ctx
, const char *str
)
91 const char *HEXCHARS
= "0123456789ABCDEF";
95 ret
= data_blob_talloc_zero(mem_ctx
, (strlen(str
)+(strlen(str
) % 3))/3);
97 for (i
= 0; i
< strlen(str
); i
++) {
98 hi
= strchr(HEXCHARS
, toupper(str
[i
]));
103 lo
= strchr(HEXCHARS
, toupper(str
[i
]));
107 ret
.data
[j
] = PTR_DIFF(hi
, HEXCHARS
) << 4;
108 ret
.data
[j
] += PTR_DIFF(lo
, HEXCHARS
);
111 if (j
> ret
.length
) {
112 DEBUG(0, ("Trouble converting hex string to bin\n"));
120 _PUBLIC_
bool reg_string_to_val(TALLOC_CTX
*mem_ctx
, const char *type_str
,
121 const char *data_str
, uint32_t *type
, DATA_BLOB
*data
)
123 char *tmp_type_str
, *p
, *q
;
126 *type
= regtype_by_string(type_str
);
129 /* Normal windows format is hex, hex(type int as string),
130 dword or just a string. */
131 if (strncmp(type_str
, "hex(", 4) == 0) {
132 /* there is a hex string with the value type between
134 tmp_type_str
= talloc_strdup(mem_ctx
, type_str
);
135 q
= p
= tmp_type_str
+ strlen("hex(");
137 /* Go to the closing brace or end of the string */
138 while (*q
!= ')' && *q
!= '\0') q
++;
141 /* Convert hex string to int, store it in type */
142 result
= sscanf(p
, "%x", type
);
144 DEBUG(0, ("Could not convert hex to int\n"));
147 talloc_free(tmp_type_str
);
148 } else if (strcmp(type_str
, "hex") == 0) {
150 } else if (strcmp(type_str
, "dword") == 0) {
158 /* Convert data appropriately */
162 return convert_string_talloc(mem_ctx
,
164 data_str
, strlen(data_str
)+1,
165 (void **)&data
->data
,
171 *data
= reg_strhex_to_data_blob(mem_ctx
, data_str
);
174 case REG_DWORD_BIG_ENDIAN
: {
175 uint32_t tmp
= strtol(data_str
, NULL
, 16);
176 *data
= data_blob_talloc(mem_ctx
, NULL
, sizeof(uint32_t));
177 if (data
->data
== NULL
) return false;
178 SIVAL(data
->data
, 0, tmp
);
182 uint64_t tmp
= strtoll(data_str
, NULL
, 16);
183 *data
= data_blob_talloc(mem_ctx
, NULL
, sizeof(uint64_t));
184 if (data
->data
== NULL
) return false;
185 SBVAL(data
->data
, 0, tmp
);
193 /* Other datatypes aren't supported -> return no success */
199 /** Open a key by name (including the predefined key name!) */
200 WERROR
reg_open_key_abs(TALLOC_CTX
*mem_ctx
, struct registry_context
*handle
,
201 const char *name
, struct registry_key
**result
)
203 struct registry_key
*predef
;
208 if (strchr(name
, '\\') != NULL
)
209 predeflength
= strchr(name
, '\\')-name
;
211 predeflength
= strlen(name
);
213 predefname
= talloc_strndup(mem_ctx
, name
, predeflength
);
214 W_ERROR_HAVE_NO_MEMORY(predefname
);
215 error
= reg_get_predefined_key_by_name(handle
, predefname
, &predef
);
216 talloc_free(predefname
);
218 if (!W_ERROR_IS_OK(error
)) {
222 if (strchr(name
, '\\')) {
223 return reg_open_key(mem_ctx
, predef
, strchr(name
, '\\')+1,
231 static WERROR
get_abs_parent(TALLOC_CTX
*mem_ctx
, struct registry_context
*ctx
,
232 const char *path
, struct registry_key
**parent
,
238 if (strchr(path
, '\\') == NULL
) {
242 parent_name
= talloc_strndup(mem_ctx
, path
, strrchr(path
, '\\')-path
);
243 W_ERROR_HAVE_NO_MEMORY(parent_name
);
244 error
= reg_open_key_abs(mem_ctx
, ctx
, parent_name
, parent
);
245 talloc_free(parent_name
);
246 if (!W_ERROR_IS_OK(error
)) {
250 *name
= talloc_strdup(mem_ctx
, strrchr(path
, '\\')+1);
251 W_ERROR_HAVE_NO_MEMORY(*name
);
256 WERROR
reg_key_del_abs(struct registry_context
*ctx
, const char *path
)
258 struct registry_key
*parent
;
260 TALLOC_CTX
*mem_ctx
= talloc_init("reg_key_del_abs");
263 if (!strchr(path
, '\\')) {
267 error
= get_abs_parent(mem_ctx
, ctx
, path
, &parent
, &n
);
268 if (W_ERROR_IS_OK(error
)) {
269 error
= reg_key_del(mem_ctx
, parent
, n
);
272 talloc_free(mem_ctx
);
277 WERROR
reg_key_add_abs(TALLOC_CTX
*mem_ctx
, struct registry_context
*ctx
,
278 const char *path
, uint32_t access_mask
,
279 struct security_descriptor
*sec_desc
,
280 struct registry_key
**result
)
282 struct registry_key
*parent
;
288 if (!strchr(path
, '\\')) {
289 return WERR_ALREADY_EXISTS
;
292 error
= get_abs_parent(mem_ctx
, ctx
, path
, &parent
, &n
);
293 if (!W_ERROR_IS_OK(error
)) {
294 DEBUG(2, ("Opening parent of %s failed with %s\n", path
,
299 error
= reg_key_add_name(mem_ctx
, parent
, n
, NULL
, sec_desc
, result
);