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,
62 return talloc_strdup(mem_ctx, "");
67 convert_string_talloc_convenience(mem_ctx,
74 ret = talloc_realloc(mem_ctx, ret, char, ret_cnt + 1);
78 ret = data_blob_hex_string_upper(mem_ctx, &data);
81 if (*(int *)data.data == 0) {
82 ret = talloc_strdup(mem_ctx, "0");
84 ret = talloc_asprintf(mem_ctx, "0x%x",
98 /** Generate a string that describes a registry value */
99 _PUBLIC_ char *reg_val_description(TALLOC_CTX *mem_ctx,
100 struct smb_iconv_convenience *iconv_convenience,
103 const DATA_BLOB data)
105 return talloc_asprintf(mem_ctx, "%s = %s : %s", name?name:"<No Name>",
106 str_regtype(data_type),
107 reg_val_data_string(mem_ctx, iconv_convenience, data_type, data));
110 _PUBLIC_ bool reg_string_to_val(TALLOC_CTX *mem_ctx,
111 struct smb_iconv_convenience *iconv_convenience,
112 const char *type_str,
113 const char *data_str, uint32_t *type,
119 /* Find the correct type */
120 for (i = 0; reg_value_types[i].name; i++) {
121 if (!strcmp(reg_value_types[i].name, type_str)) {
122 *type = reg_value_types[i].id;
130 /* Convert data appropriately */
135 convert_string_talloc_convenience(mem_ctx,
140 (void **)&data->data,
141 &data->length, false);
146 uint32_t tmp = strtol(data_str, NULL, 0);
147 *data = data_blob_talloc(mem_ctx, &tmp, 4);
156 *data = strhex_to_data_blob(mem_ctx, data_str);
166 /** Open a key by name (including the predefined key name!) */
167 WERROR reg_open_key_abs(TALLOC_CTX *mem_ctx, struct registry_context *handle,
168 const char *name, struct registry_key **result)
170 struct registry_key *predef;
175 if (strchr(name, '\\') != NULL)
176 predeflength = strchr(name, '\\')-name;
178 predeflength = strlen(name);
180 predefname = talloc_strndup(mem_ctx, name, predeflength);
181 error = reg_get_predefined_key_by_name(handle, predefname, &predef);
182 talloc_free(predefname);
184 if (!W_ERROR_IS_OK(error)) {
188 if (strchr(name, '\\')) {
189 return reg_open_key(mem_ctx, predef, strchr(name, '\\')+1,
197 static WERROR get_abs_parent(TALLOC_CTX *mem_ctx, struct registry_context *ctx,
198 const char *path, struct registry_key **parent,
204 if (strchr(path, '\\') == NULL) {
208 parent_name = talloc_strndup(mem_ctx, path, strrchr(path, '\\')-path);
210 error = reg_open_key_abs(mem_ctx, ctx, parent_name, parent);
211 if (!W_ERROR_IS_OK(error)) {
215 *name = talloc_strdup(mem_ctx, strrchr(path, '\\')+1);
220 WERROR reg_key_del_abs(struct registry_context *ctx, const char *path)
222 struct registry_key *parent;
224 TALLOC_CTX *mem_ctx = talloc_init("reg_key_del_abs");
227 if (!strchr(path, '\\')) {
231 error = get_abs_parent(mem_ctx, ctx, path, &parent, &n);
232 if (W_ERROR_IS_OK(error)) {
233 error = reg_key_del(parent, n);
236 talloc_free(mem_ctx);
241 WERROR reg_key_add_abs(TALLOC_CTX *mem_ctx, struct registry_context *ctx,
242 const char *path, uint32_t access_mask,
243 struct security_descriptor *sec_desc,
244 struct registry_key **result)
246 struct registry_key *parent;
250 if (!strchr(path, '\\')) {
251 return WERR_ALREADY_EXISTS;
254 error = get_abs_parent(mem_ctx, ctx, path, &parent, &n);
255 if (!W_ERROR_IS_OK(error)) {
256 DEBUG(2, ("Opening parent of %s failed with %s\n", path,
261 error = reg_key_add_name(mem_ctx, parent, n, NULL, sec_desc, result);