2 Unix SMB/CIFS implementation.
5 Copyright (C) Jelmer Vernooij 2004-2007
6 Copyright (C) Wilco Baan Hofman 2006-2008
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 /* FIXME Newer .REG files, created by Windows XP and above use unicode UCS-2 */
26 #include "lib/registry/registry.h"
27 #include "system/filesys.h"
31 * @brief Registry patch files
34 #define HEADER_STRING "REGEDIT4"
38 struct smb_iconv_convenience
*iconv_convenience
;
41 static WERROR
reg_dotreg_diff_add_key(void *_data
, const char *key_name
)
43 struct dotreg_data
*data
= (struct dotreg_data
*)_data
;
45 fdprintf(data
->fd
, "\n[%s]\n", key_name
);
50 static WERROR
reg_dotreg_diff_del_key(void *_data
, const char *key_name
)
52 struct dotreg_data
*data
= (struct dotreg_data
*)_data
;
54 fdprintf(data
->fd
, "\n[-%s]\n", key_name
);
59 static WERROR
reg_dotreg_diff_set_value(void *_data
, const char *path
,
60 const char *value_name
,
61 uint32_t value_type
, DATA_BLOB value
)
63 struct dotreg_data
*data
= (struct dotreg_data
*)_data
;
64 char *data_string
= reg_val_data_string(NULL
, data
->iconv_convenience
,
66 W_ERROR_HAVE_NO_MEMORY(data_string
);
67 fdprintf(data
->fd
, "\"%s\"=%s:%s\n",
68 value_name
, str_regtype(value_type
), data_string
);
69 talloc_free(data_string
);
74 static WERROR
reg_dotreg_diff_del_value(void *_data
, const char *path
,
75 const char *value_name
)
77 struct dotreg_data
*data
= (struct dotreg_data
*)_data
;
79 fdprintf(data
->fd
, "\"%s\"=-\n", value_name
);
84 static WERROR
reg_dotreg_diff_done(void *_data
)
86 struct dotreg_data
*data
= (struct dotreg_data
*)_data
;
94 static WERROR
reg_dotreg_diff_del_all_values(void *callback_data
,
97 return WERR_NOT_SUPPORTED
;
103 _PUBLIC_ WERROR
reg_dotreg_diff_save(TALLOC_CTX
*ctx
, const char *filename
,
104 struct smb_iconv_convenience
*iconv_convenience
,
105 struct reg_diff_callbacks
**callbacks
,
106 void **callback_data
)
108 struct dotreg_data
*data
;
110 data
= talloc_zero(ctx
, struct dotreg_data
);
111 *callback_data
= data
;
113 data
->iconv_convenience
= iconv_convenience
;
116 data
->fd
= open(filename
, O_CREAT
|O_WRONLY
, 0755);
118 DEBUG(0, ("Unable to open %s\n", filename
));
122 data
->fd
= STDOUT_FILENO
;
125 fdprintf(data
->fd
, "%s\n\n", HEADER_STRING
);
127 *callbacks
= talloc(ctx
, struct reg_diff_callbacks
);
129 (*callbacks
)->add_key
= reg_dotreg_diff_add_key
;
130 (*callbacks
)->del_key
= reg_dotreg_diff_del_key
;
131 (*callbacks
)->set_value
= reg_dotreg_diff_set_value
;
132 (*callbacks
)->del_value
= reg_dotreg_diff_del_value
;
133 (*callbacks
)->del_all_values
= reg_dotreg_diff_del_all_values
;
134 (*callbacks
)->done
= reg_dotreg_diff_done
;
142 _PUBLIC_ WERROR
reg_dotreg_diff_load(int fd
,
143 struct smb_iconv_convenience
*iconv_convenience
,
144 const struct reg_diff_callbacks
*callbacks
,
149 TALLOC_CTX
*mem_ctx
= talloc_init("reg_dotreg_diff_load");
154 line
= afdgets(fd
, mem_ctx
, 0);
156 DEBUG(0, ("Can't read from file.\n"));
157 talloc_free(mem_ctx
);
159 return WERR_GENERAL_FAILURE
;
162 while ((line
= afdgets(fd
, mem_ctx
, 0))) {
163 /* Ignore comments and empty lines */
164 if (strlen(line
) == 0 || line
[0] == ';') {
175 if (line
[0] == '[') {
176 p
= strchr_m(line
, ']');
177 if (p
[strlen(p
)-1] != ']') {
178 DEBUG(0, ("Missing ']'\n"));
179 return WERR_GENERAL_FAILURE
;
182 if (line
[1] == '-') {
183 curkey
= talloc_strndup(line
, line
+2, strlen(line
)-3);
184 W_ERROR_HAVE_NO_MEMORY(curkey
);
186 error
= callbacks
->del_key(callback_data
,
189 if (!W_ERROR_IS_OK(error
)) {
190 DEBUG(0,("Error deleting key %s\n",
192 talloc_free(mem_ctx
);
200 curkey
= talloc_strndup(mem_ctx
, line
+1, strlen(line
)-2);
201 W_ERROR_HAVE_NO_MEMORY(curkey
);
203 error
= callbacks
->add_key(callback_data
, curkey
);
204 if (!W_ERROR_IS_OK(error
)) {
205 DEBUG(0,("Error adding key %s\n", curkey
));
206 talloc_free(mem_ctx
);
214 /* Deleting/Changing value */
215 p
= strchr_m(line
, '=');
217 DEBUG(0, ("Malformed line\n"));
224 if (curkey
== NULL
) {
225 DEBUG(0, ("Value change without key\n"));
231 if (strcmp(p
, "-") == 0) {
232 error
= callbacks
->del_value(callback_data
,
234 if (!W_ERROR_IS_OK(error
)) {
235 DEBUG(0, ("Error deleting value %s in key %s\n",
237 talloc_free(mem_ctx
);
245 q
= strchr_m(p
, ':');
251 reg_string_to_val(line
, iconv_convenience
,
253 &value_type
, &value
);
255 error
= callbacks
->set_value(callback_data
, curkey
, line
,
257 if (!W_ERROR_IS_OK(error
)) {
258 DEBUG(0, ("Error setting value for %s in %s\n",
260 talloc_free(mem_ctx
);