include: Fix commdlg hook procedures return type.
[wine] / programs / reg / reg.c
1 /*
2  * Copyright 2008 Andrew Riedi
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include <windows.h>
20 #include <wine/unicode.h>
21 #include "reg.h"
22
23 static int reg_printfW(const WCHAR *msg, ...)
24 {
25     va_list va_args;
26     int wlen;
27     DWORD count, ret;
28     WCHAR msg_buffer[8192];
29
30     va_start(va_args, msg);
31     vsprintfW(msg_buffer, msg, va_args);
32     va_end(va_args);
33
34     wlen = lstrlenW(msg_buffer);
35     ret = WriteConsoleW(GetStdHandle(STD_OUTPUT_HANDLE), msg_buffer, wlen, &count, NULL);
36     if (!ret)
37     {
38         DWORD len;
39         char  *msgA;
40
41         len = WideCharToMultiByte(GetConsoleOutputCP(), 0, msg_buffer, wlen,
42             NULL, 0, NULL, NULL);
43         msgA = HeapAlloc(GetProcessHeap(), 0, len * sizeof(char));
44         if (!msgA)
45             return 0;
46
47         WideCharToMultiByte(GetConsoleOutputCP(), 0, msg_buffer, wlen, msgA, len,
48             NULL, NULL);
49         WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), msgA, len, &count, FALSE);
50         HeapFree(GetProcessHeap(), 0, msgA);
51     }
52
53     return count;
54 }
55
56 static int reg_message(int msg)
57 {
58     static const WCHAR formatW[] = {'%','s',0};
59     WCHAR msg_buffer[8192];
60
61     LoadStringW(GetModuleHandleW(NULL), msg, msg_buffer,
62         sizeof(msg_buffer)/sizeof(WCHAR));
63     return reg_printfW(formatW, msg_buffer);
64 }
65
66 static HKEY get_rootkey(LPWSTR key)
67 {
68     static const WCHAR szHKLM[] = {'H','K','L','M',0};
69     static const WCHAR szHKCU[] = {'H','K','C','U',0};
70     static const WCHAR szHKCR[] = {'H','K','C','R',0};
71     static const WCHAR szHKU[] = {'H','K','U',0};
72     static const WCHAR szHKCC[] = {'H','K','C','C',0};
73
74     if (CompareStringW(CP_ACP,NORM_IGNORECASE,key,4,szHKLM,4)==2)
75         return HKEY_LOCAL_MACHINE;
76     else if (CompareStringW(CP_ACP,NORM_IGNORECASE,key,4,szHKCU,4)==2)
77         return HKEY_CURRENT_USER;
78     else if (CompareStringW(CP_ACP,NORM_IGNORECASE,key,4,szHKCR,4)==2)
79         return HKEY_CLASSES_ROOT;
80     else if (CompareStringW(CP_ACP,NORM_IGNORECASE,key,3,szHKU,3)==2)
81         return HKEY_USERS;
82     else if (CompareStringW(CP_ACP,NORM_IGNORECASE,key,4,szHKCC,4)==2)
83         return HKEY_CURRENT_CONFIG;
84     else return NULL;
85 }
86
87 static DWORD get_regtype(LPWSTR type)
88 {
89     static const WCHAR szREG_SZ[] = {'R','E','G','_','S','Z',0};
90     static const WCHAR szREG_MULTI_SZ[] = {'R','E','G','_','M','U','L','T','I','_','S','Z',0};
91     static const WCHAR szREG_DWORD_BIG_ENDIAN[] = {'R','E','G','_','D','W','O','R','D','_','B','I','G','_','E','N','D','I','A','N',0};
92     static const WCHAR szREG_DWORD[] = {'R','E','G','_','D','W','O','R','D',0};
93     static const WCHAR szREG_BINARY[] = {'R','E','G','_','B','I','N','A','R','Y',0};
94     static const WCHAR szREG_DWORD_LITTLE_ENDIAN[] = {'R','E','G','_','D','W','O','R','D','_','L','I','T','T','L','E','_','E','N','D','I','A','N',0};
95     static const WCHAR szREG_NONE[] = {'R','E','G','_','N','O','N','E',0};
96     static const WCHAR szREG_EXPAND_SZ[] = {'R','E','G','_','E','X','P','A','N','D','_','S','Z',0};
97
98     if (!type)
99         return REG_SZ;
100
101     if (lstrcmpiW(type,szREG_SZ)==0) return REG_SZ;
102     if (lstrcmpiW(type,szREG_DWORD)==0) return REG_DWORD;
103     if (lstrcmpiW(type,szREG_MULTI_SZ)==0) return REG_MULTI_SZ;
104     if (lstrcmpiW(type,szREG_EXPAND_SZ)==0) return REG_EXPAND_SZ;
105     if (lstrcmpiW(type,szREG_DWORD_BIG_ENDIAN)==0) return REG_DWORD_BIG_ENDIAN;
106     if (lstrcmpiW(type,szREG_DWORD_LITTLE_ENDIAN)==0) return REG_DWORD_LITTLE_ENDIAN;
107     if (lstrcmpiW(type,szREG_BINARY)==0) return REG_BINARY;
108     if (lstrcmpiW(type,szREG_NONE)==0) return REG_NONE;
109
110     return -1;
111 }
112
113 static LPBYTE get_regdata(LPWSTR data, DWORD reg_type, WCHAR separator, DWORD *reg_count)
114 {
115     LPBYTE out_data = NULL;
116     *reg_count = 0;
117
118     switch (reg_type)
119     {
120         case REG_SZ:
121         {
122             *reg_count = (lstrlenW(data) + 1) * sizeof(WCHAR);
123             out_data = HeapAlloc(GetProcessHeap(),0,*reg_count);
124             lstrcpyW((LPWSTR)out_data,data);
125             break;
126         }
127         default:
128         {
129             static const WCHAR unhandled[] = {'U','n','h','a','n','d','l','e','d',' ','T','y','p','e',' ','0','x','%','x',' ',' ','d','a','t','a',' ','%','s','\n',0};
130             reg_printfW(unhandled, reg_type,data);
131         }
132     }
133
134     return out_data;
135 }
136
137 static int reg_add(WCHAR *key_name, WCHAR *value_name, BOOL value_empty,
138     WCHAR *type, WCHAR separator, WCHAR *data, BOOL force)
139 {
140     static const WCHAR stubW[] = {'A','D','D',' ','-',' ','%','s',
141         ' ','%','s',' ','%','d',' ','%','s',' ','%','s',' ','%','d','\n',0};
142     LPWSTR p;
143     HKEY root,subkey;
144
145     reg_printfW(stubW, key_name, value_name, value_empty, type, data, force);
146
147     if (key_name[0]=='\\' && key_name[1]=='\\')
148     {
149         reg_message(STRING_NO_REMOTE);
150         return 0;
151     }
152
153     p = strchrW(key_name,'\\');
154     if (!p)
155     {
156         reg_message(STRING_INVALID_KEY);
157         return 0;
158     }
159     p++;
160
161     root = get_rootkey(key_name);
162     if (!root)
163     {
164         reg_message(STRING_INVALID_KEY);
165         return 0;
166     }
167
168     if(RegCreateKeyW(root,p,&subkey)!=ERROR_SUCCESS)
169     {
170         reg_message(STRING_INVALID_KEY);
171         return 0;
172     }
173
174     if (value_name || data)
175     {
176         DWORD reg_type;
177         DWORD reg_count = 0;
178         BYTE* reg_data = NULL;
179
180         if (!force)
181         {
182             if (RegQueryValueW(subkey,value_name,NULL,NULL)==ERROR_SUCCESS)
183             {
184                 /* FIXME:  Prompt for overwrite */
185             }
186         }
187
188         reg_type = get_regtype(type);
189         if (reg_type == -1)
190         {
191             RegCloseKey(subkey);
192             reg_message(STRING_INVALID_CMDLINE);
193             return 0;
194         }
195
196         if (data)
197             reg_data = get_regdata(data,reg_type,separator,&reg_count);
198
199         RegSetValueExW(subkey,value_name,0,reg_type,reg_data,reg_count);
200         HeapFree(GetProcessHeap(),0,reg_data);
201     }
202
203     RegCloseKey(subkey);
204     reg_message(STRING_SUCCESS);
205
206     return 1;
207 }
208
209 static int reg_delete(WCHAR *key_name, WCHAR *value_name, BOOL value_empty,
210     BOOL value_all, BOOL force)
211 {
212     LPWSTR p;
213     HKEY root,subkey;
214
215     static const WCHAR stubW[] = {'D','E','L','E','T','E',
216         ' ','-',' ','%','s',' ','%','s',' ','%','d',' ','%','d',' ','%','d','\n'
217         ,0};
218     reg_printfW(stubW, key_name, value_name, value_empty, value_all, force);
219
220     if (key_name[0]=='\\' && key_name[1]=='\\')
221     {
222         reg_message(STRING_NO_REMOTE);
223         return 0;
224     }
225
226     p = strchrW(key_name,'\\');
227     if (!p)
228     {
229         reg_message(STRING_INVALID_KEY);
230         return 0;
231     }
232     p++;
233
234     root = get_rootkey(key_name);
235     if (!root)
236     {
237         reg_message(STRING_INVALID_KEY);
238         return 0;
239     }
240
241     if (value_name && value_empty)
242     {
243         reg_message(STRING_INVALID_CMDLINE);
244         return 0;
245     }
246
247     if (value_empty && value_all)
248     {
249         reg_message(STRING_INVALID_CMDLINE);
250         return 0;
251     }
252
253     if (!force)
254     {
255         /* FIXME:  Prompt for delete */
256     }
257
258     if (!value_name)
259     {
260         if (RegDeleteTreeW(root,p)!=ERROR_SUCCESS)
261         {
262             reg_message(STRING_CANNOT_FIND);
263             return 0;
264         }
265         reg_message(STRING_SUCCESS);
266         return 1;
267     }
268
269     if(RegOpenKeyW(root,p,&subkey)!=ERROR_SUCCESS)
270     {
271         reg_message(STRING_CANNOT_FIND);
272         return 0;
273     }
274
275     if (value_all)
276     {
277         LPWSTR szValue;
278         DWORD maxValue;
279         DWORD count;
280         LONG rc;
281
282         if (value_name)
283         {
284             RegCloseKey(subkey);
285             reg_message(STRING_INVALID_CMDLINE);
286             return 0;
287         }
288
289         rc = RegQueryInfoKeyW(subkey, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
290             &maxValue, NULL, NULL, NULL);
291         if (rc != ERROR_SUCCESS)
292         {
293             /* FIXME: failure */
294             RegCloseKey(subkey);
295             return 0;
296         }
297         maxValue++;
298         szValue = HeapAlloc(GetProcessHeap(),0,maxValue*sizeof(WCHAR));
299
300         while (1)
301         {
302             count = maxValue;
303             rc = RegEnumValueW(subkey, 0, value_name, &count, NULL, NULL, NULL, NULL);
304             if (rc == ERROR_SUCCESS)
305             {
306                 rc = RegDeleteValueW(subkey,value_name);
307                 if (rc != ERROR_SUCCESS)
308                     break;
309             }
310             else break;
311         }
312         if (rc != ERROR_SUCCESS)
313         {
314             /* FIXME  delete failed */
315         }
316     }
317     else if (value_name)
318     {
319         if (RegDeleteValueW(subkey,value_name) != ERROR_SUCCESS)
320         {
321             RegCloseKey(subkey);
322             reg_message(STRING_CANNOT_FIND);
323             return 0;
324         }
325     }
326     else if (value_empty)
327     {
328         RegSetValueExW(subkey,NULL,0,REG_SZ,NULL,0);
329     }
330
331     RegCloseKey(subkey);
332     reg_message(STRING_SUCCESS);
333     return 1;
334 }
335
336 static int reg_query(WCHAR *key_name, WCHAR *value_name, BOOL value_empty,
337     BOOL subkey)
338 {
339     static const WCHAR stubW[] = {'S','T','U','B',' ','Q','U','E','R','Y',' ',
340         '-',' ','%','s',' ','%','s',' ','%','d',' ','%','d','\n',0};
341     reg_printfW(stubW, key_name, value_name, value_empty, subkey);
342
343     return 1;
344 }
345
346 int wmain(int argc, WCHAR *argvW[])
347 {
348     int i;
349
350     static const WCHAR addW[] = {'a','d','d',0};
351     static const WCHAR deleteW[] = {'d','e','l','e','t','e',0};
352     static const WCHAR queryW[] = {'q','u','e','r','y',0};
353     static const WCHAR slashDW[] = {'/','d',0};
354     static const WCHAR slashFW[] = {'/','f',0};
355     static const WCHAR slashSW[] = {'/','s',0};
356     static const WCHAR slashTW[] = {'/','t',0};
357     static const WCHAR slashVW[] = {'/','v',0};
358     static const WCHAR slashVAW[] = {'/','v','a',0};
359     static const WCHAR slashVEW[] = {'/','v','e',0};
360
361     if (argc < 2)
362     {
363         reg_message(STRING_USAGE);
364         return 1;
365     }
366
367     if (!lstrcmpiW(argvW[1], addW))
368     {
369         WCHAR *key_name, *value_name = NULL, *type = NULL, separator = '\0', *data = NULL;
370         BOOL value_empty = FALSE, force = FALSE;
371
372         if (argc < 3)
373         {
374             reg_message(STRING_ADD_USAGE);
375             return 1;
376         }
377
378         key_name = argvW[2];
379         for (i = 1; i < argc; i++)
380         {
381             if (!lstrcmpiW(argvW[i], slashVW))
382                 value_name = argvW[++i];
383             else if (!lstrcmpiW(argvW[i], slashVEW))
384                 value_empty = TRUE;
385             else if (!lstrcmpiW(argvW[i], slashTW))
386                 type = argvW[++i];
387             else if (!lstrcmpiW(argvW[i], slashSW))
388                 separator = argvW[++i][0];
389             else if (!lstrcmpiW(argvW[i], slashDW))
390                 data = argvW[++i];
391             else if (!lstrcmpiW(argvW[i], slashFW))
392                 force = TRUE;
393         }
394         return reg_add(key_name, value_name, value_empty, type, separator,
395             data, force);
396     }
397     else if (!lstrcmpiW(argvW[1], deleteW))
398     {
399         WCHAR *key_name, *value_name = NULL;
400         BOOL value_empty = FALSE, value_all = FALSE, force = FALSE;
401
402         if (argc < 3)
403         {
404             reg_message(STRING_DELETE_USAGE);
405             return 1;
406         }
407
408         key_name = argvW[2];
409         for (i = 1; i < argc; i++)
410         {
411             if (!lstrcmpiW(argvW[i], slashVW))
412                 value_name = argvW[++i];
413             else if (!lstrcmpiW(argvW[i], slashVEW))
414                 value_empty = TRUE;
415             else if (!lstrcmpiW(argvW[i], slashVAW))
416                 value_all = TRUE;
417             else if (!lstrcmpiW(argvW[i], slashFW))
418                 force = TRUE;
419         }
420         return reg_delete(key_name, value_name, value_empty, value_all, force);
421     }
422     else if (!lstrcmpiW(argvW[1], queryW))
423     {
424         WCHAR *key_name, *value_name = NULL;
425         BOOL value_empty = FALSE, subkey = FALSE;
426
427         if (argc < 3)
428         {
429             reg_message(STRING_QUERY_USAGE);
430             return 1;
431         }
432
433         key_name = argvW[2];
434         for (i = 1; i < argc; i++)
435         {
436             if (!lstrcmpiW(argvW[i], slashVW))
437                 value_name = argvW[++i];
438             else if (!lstrcmpiW(argvW[i], slashVEW))
439                 value_empty = TRUE;
440             else if (!lstrcmpiW(argvW[i], slashSW))
441                 subkey = TRUE;
442         }
443         return reg_query(key_name, value_name, value_empty, subkey);
444     }
445
446     return 0;
447 }