regedit: Updated Korean resource.
[wine] / programs / regedit / regproc.c
1 /*
2  * Registry processing routines. Routines, common for registry
3  * processing frontends.
4  *
5  * Copyright 1999 Sylvain St-Germain
6  * Copyright 2002 Andriy Palamarchuk
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library 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 GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include <limits.h>
24 #include <stdio.h>
25 #include <windows.h>
26 #include <winnt.h>
27 #include <winreg.h>
28 #include <assert.h>
29 #include "regproc.h"
30
31 #define REG_VAL_BUF_SIZE        4096
32
33 /* Delimiters used to parse the "value" to query queryValue*/
34 #define QUERY_VALUE_MAX_ARGS  1
35
36 /* maximal number of characters in hexadecimal data line,
37    not including '\' character */
38 #define REG_FILE_HEX_LINE_LEN   76
39
40 /* Globals used by the api setValue, queryValue */
41 static LPSTR currentKeyName   = NULL;
42 static HKEY  currentKeyClass  = 0;
43 static HKEY  currentKeyHandle = 0;
44 static BOOL  bTheKeyIsOpen    = FALSE;
45
46 static const CHAR *app_name = "UNKNOWN";
47
48 static const CHAR *reg_class_names[] = {
49                                      "HKEY_LOCAL_MACHINE", "HKEY_USERS", "HKEY_CLASSES_ROOT",
50                                      "HKEY_CURRENT_CONFIG", "HKEY_CURRENT_USER", "HKEY_DYN_DATA"
51                                  };
52
53 #define REG_CLASS_NUMBER (sizeof(reg_class_names) / sizeof(reg_class_names[0]))
54
55 static HKEY reg_class_keys[REG_CLASS_NUMBER] = {
56             HKEY_LOCAL_MACHINE, HKEY_USERS, HKEY_CLASSES_ROOT,
57             HKEY_CURRENT_CONFIG, HKEY_CURRENT_USER, HKEY_DYN_DATA
58         };
59
60 /* return values */
61 #define NOT_ENOUGH_MEMORY     1
62 #define IO_ERROR              2
63
64 /* processing macros */
65
66 /* common check of memory allocation results */
67 #define CHECK_ENOUGH_MEMORY(p) \
68 if (!(p)) \
69 { \
70     fprintf(stderr,"%s: file %s, line %d: Not enough memory", \
71             getAppName(), __FILE__, __LINE__); \
72     exit(NOT_ENOUGH_MEMORY); \
73 }
74
75 /******************************************************************************
76  * This is a replacement for strsep which is not portable (missing on Solaris).
77  */
78 #if 0
79 /* DISABLED */
80 char* getToken(char** str, const char* delims)
81 {
82     char* token;
83
84     if (*str==NULL) {
85         /* No more tokens */
86         return NULL;
87     }
88
89     token=*str;
90     while (**str!='\0') {
91         if (strchr(delims,**str)!=NULL) {
92             **str='\0';
93             (*str)++;
94             return token;
95         }
96         (*str)++;
97     }
98     /* There is no other token */
99     *str=NULL;
100     return token;
101 }
102 #endif
103
104 /******************************************************************************
105  * Copies file name from command line string to the buffer.
106  * Rewinds the command line string pointer to the next non-space character
107  * after the file name.
108  * Buffer contains an empty string if no filename was found;
109  *
110  * params:
111  * command_line - command line current position pointer
112  *      where *s[0] is the first symbol of the file name.
113  * file_name - buffer to write the file name to.
114  */
115 void get_file_name(CHAR **command_line, CHAR *file_name)
116 {
117     CHAR *s = *command_line;
118     int pos = 0;                /* position of pointer "s" in *command_line */
119     file_name[0] = 0;
120
121     if (!s[0]) {
122         return;
123     }
124
125     if (s[0] == '"') {
126         s++;
127         (*command_line)++;
128         while(s[0] != '"') {
129             if (!s[0]) {
130                 fprintf(stderr,"%s: Unexpected end of file name!\n",
131                         getAppName());
132                 exit(1);
133             }
134             s++;
135             pos++;
136         }
137     } else {
138         while(s[0] && !isspace(s[0])) {
139             s++;
140             pos++;
141         }
142     }
143     memcpy(file_name, *command_line, pos * sizeof((*command_line)[0]));
144     /* remove the last backslash */
145     if (file_name[pos - 1] == '\\') {
146         file_name[pos - 1] = '\0';
147     } else {
148         file_name[pos] = '\0';
149     }
150
151     if (s[0]) {
152         s++;
153         pos++;
154     }
155     while(s[0] && isspace(s[0])) {
156         s++;
157         pos++;
158     }
159     (*command_line) += pos;
160 }
161
162
163 /******************************************************************************
164  * Converts a hex representation of a DWORD into a DWORD.
165  */
166 DWORD convertHexToDWord(char *str, BYTE *buf)
167 {
168     DWORD dw;
169     char xbuf[9];
170
171     memcpy(xbuf,str,8);
172     xbuf[8]='\0';
173     sscanf(xbuf,"%08lx",&dw);
174     memcpy(buf,&dw,sizeof(DWORD));
175     return sizeof(DWORD);
176 }
177
178 /******************************************************************************
179  * Converts a hex buffer into a hex comma separated values
180  */
181 char* convertHexToHexCSV(BYTE *buf, ULONG bufLen)
182 {
183     char* str;
184     char* ptrStr;
185     BYTE* ptrBuf;
186
187     ULONG current = 0;
188
189     str    = HeapAlloc(GetProcessHeap(), 0, (bufLen+1)*2);
190     memset(str, 0, (bufLen+1)*2);
191     ptrStr = str;  /* Pointer to result  */
192     ptrBuf = buf;  /* Pointer to current */
193
194     while (current < bufLen) {
195         BYTE bCur = ptrBuf[current++];
196         char res[3];
197
198         sprintf(res, "%02x", (unsigned int)*&bCur);
199         strcat(str, res);
200         strcat(str, ",");
201     }
202
203     /* Get rid of the last comma */
204     str[strlen(str)-1] = '\0';
205     return str;
206 }
207
208 /******************************************************************************
209  * Converts a hex buffer into a DWORD string
210  */
211 char* convertHexToDWORDStr(BYTE *buf, ULONG bufLen)
212 {
213     char* str;
214     DWORD dw;
215
216     if ( bufLen != sizeof(DWORD) ) return NULL;
217
218     str = HeapAlloc(GetProcessHeap(), 0, (bufLen*2)+1);
219
220     memcpy(&dw,buf,sizeof(DWORD));
221     sprintf(str, "%08lx", dw);
222
223     /* Get rid of the last comma */
224     return str;
225 }
226
227 /******************************************************************************
228  * Converts a hex comma separated values list into a hex list.
229  * The Hex input string must be in exactly the correct form.
230  */
231 DWORD convertHexCSVToHex(char *str, BYTE *buf, ULONG bufLen)
232 {
233     char *s = str;  /* Pointer to current */
234     char *b = (char*) buf;  /* Pointer to result  */
235
236     ULONG strLen    = strlen(str);
237     ULONG strPos    = 0;
238     DWORD byteCount = 0;
239
240     memset(buf, 0, bufLen);
241
242     /*
243      * warn the user if we are here with a string longer than 2 bytes that does
244      * not contains ",".  It is more likely because the data is invalid.
245      */
246     if ( ( strLen > 2) && ( strchr(str, ',') == NULL) )
247         fprintf(stderr,"%s: WARNING converting CSV hex stream with no comma, "
248                 "input data seems invalid.\n", getAppName());
249     if (strLen > 3*bufLen)
250         fprintf(stderr,"%s: ERROR converting CSV hex stream.  Too long\n",
251                 getAppName());
252
253     while (strPos < strLen) {
254         char xbuf[3];
255         UINT wc;
256
257         memcpy(xbuf,s,2); xbuf[2]='\0';
258         sscanf(xbuf,"%02x",&wc);
259         if (byteCount < bufLen)
260             *b++ =(unsigned char)wc;
261
262         s+=3;
263         strPos+=3;
264         byteCount++;
265     }
266
267     return byteCount;
268 }
269
270 /******************************************************************************
271  * This function returns the HKEY associated with the data type encoded in the
272  * value.  It modifies the input parameter (key value) in order to skip this
273  * "now useless" data type information.
274  *
275  * Note: Updated based on the algorithm used in 'server/registry.c'
276  */
277 DWORD getDataType(LPSTR *lpValue, DWORD* parse_type)
278 {
279     struct data_type { const char *tag; int len; int type; int parse_type; };
280
281     static const struct data_type data_types[] = {                   /* actual type */  /* type to assume for parsing */
282                 { "\"",        1,   REG_SZ,              REG_SZ },
283                 { "str:\"",    5,   REG_SZ,              REG_SZ },
284                 { "str(2):\"", 8,   REG_EXPAND_SZ,       REG_SZ },
285                 { "hex:",      4,   REG_BINARY,          REG_BINARY },
286                 { "dword:",    6,   REG_DWORD,           REG_DWORD },
287                 { "hex(",      4,   -1,                  REG_BINARY },
288                 { NULL,        0,    0,                  0 }
289             };
290
291     const struct data_type *ptr;
292     int type;
293
294     for (ptr = data_types; ptr->tag; ptr++) {
295         if (memcmp( ptr->tag, *lpValue, ptr->len ))
296             continue;
297
298         /* Found! */
299         *parse_type = ptr->parse_type;
300         type=ptr->type;
301         *lpValue+=ptr->len;
302         if (type == -1) {
303             char* end;
304             /* "hex(xx):" is special */
305             type = (int)strtoul( *lpValue , &end, 16 );
306             if (**lpValue=='\0' || *end!=')' || *(end+1)!=':') {
307                 type=REG_NONE;
308             } else {
309                 *lpValue=end+2;
310             }
311         }
312         return type;
313     }
314     return (**lpValue=='\0'?REG_SZ:REG_NONE);
315 }
316
317 /******************************************************************************
318  * Returns an allocated buffer with a cleaned copy (removed the surrounding
319  * dbl quotes) of the passed value.
320  */
321 LPSTR getArg( LPSTR arg)
322 {
323     LPSTR tmp = NULL;
324     ULONG len;
325
326     if (arg == NULL)
327         return NULL;
328
329     /*
330      * Get rid of surrounding quotes
331      */
332     len = strlen(arg);
333
334     if( arg[len-1] == '\"' ) arg[len-1] = '\0';
335     if( arg[0]     == '\"' ) arg++;
336
337     tmp = HeapAlloc(GetProcessHeap(), 0, strlen(arg)+1);
338     strcpy(tmp, arg);
339
340     return tmp;
341 }
342
343 /******************************************************************************
344  * Replaces escape sequences with the characters.
345  */
346 static void REGPROC_unescape_string(LPSTR str)
347 {
348     int str_idx = 0;            /* current character under analysis */
349     int val_idx = 0;            /* the last character of the unescaped string */
350     int len = strlen(str);
351     for (str_idx = 0; str_idx < len; str_idx++, val_idx++) {
352         if (str[str_idx] == '\\') {
353             str_idx++;
354             switch (str[str_idx]) {
355             case 'n':
356                 str[val_idx] = '\n';
357                 break;
358             case '\\':
359             case '"':
360                 str[val_idx] = str[str_idx];
361                 break;
362             default:
363                 fprintf(stderr,"Warning! Unrecognized escape sequence: \\%c'\n",
364                         str[str_idx]);
365                 str[val_idx] = str[str_idx];
366                 break;
367             }
368         } else {
369             str[val_idx] = str[str_idx];
370         }
371     }
372     str[val_idx] = '\0';
373 }
374
375 /******************************************************************************
376  * Sets the value with name val_name to the data in val_data for the currently
377  * opened key.
378  *
379  * Parameters:
380  * val_name - name of the registry value
381  * val_data - registry value data
382  */
383 HRESULT setValue(LPSTR val_name, LPSTR val_data)
384 {
385     HRESULT hRes;
386     DWORD   dwDataType, dwParseType;
387     LPBYTE lpbData;
388     BYTE   convert[KEY_MAX_LEN];
389     BYTE *bBigBuffer = 0;
390     DWORD  dwLen;
391
392     if ( (val_name == NULL) || (val_data == NULL) )
393         return ERROR_INVALID_PARAMETER;
394
395     if (val_data[0] == '-')
396         return RegDeleteValue(currentKeyHandle,val_name);
397
398     /* Get the data type stored into the value field */
399     dwDataType = getDataType(&val_data, &dwParseType);
400
401     if ( dwParseType == REG_SZ)        /* no conversion for string */
402     {
403         REGPROC_unescape_string(val_data);
404         /* Compute dwLen after REGPROC_unescape_string because it may
405          * have changed the string length and we don't want to store
406          * the extra garbage in the registry.
407          */
408         dwLen = strlen(val_data);
409         if (dwLen>0 && val_data[dwLen-1]=='"')
410         {
411             dwLen--;
412             val_data[dwLen]='\0';
413         }
414         lpbData = (BYTE*) val_data;
415     } else if (dwParseType == REG_DWORD)  /* Convert the dword types */
416     {
417         dwLen   = convertHexToDWord(val_data, convert);
418         lpbData = convert;
419     } else                               /* Convert the hexadecimal types */
420     {
421         int b_len = strlen (val_data)+2/3;
422         if (b_len > KEY_MAX_LEN) {
423             bBigBuffer = HeapAlloc (GetProcessHeap(), 0, b_len);
424             CHECK_ENOUGH_MEMORY(bBigBuffer);
425             dwLen = convertHexCSVToHex(val_data, bBigBuffer, b_len);
426             lpbData = bBigBuffer;
427         } else {
428             dwLen   = convertHexCSVToHex(val_data, convert, KEY_MAX_LEN);
429             lpbData = convert;
430         }
431     }
432
433     hRes = RegSetValueEx(
434                currentKeyHandle,
435                val_name,
436                0,                  /* Reserved */
437                dwDataType,
438                lpbData,
439                dwLen);
440
441     HeapFree (GetProcessHeap(), 0, bBigBuffer);
442     return hRes;
443 }
444
445
446 /******************************************************************************
447  * Open the key
448  */
449 HRESULT openKey( LPSTR stdInput)
450 {
451     DWORD   dwDisp;
452     HRESULT hRes;
453
454     /* Sanity checks */
455     if (stdInput == NULL)
456         return ERROR_INVALID_PARAMETER;
457
458     /* Get the registry class */
459     currentKeyClass = getRegClass(stdInput); /* Sets global variable */
460     if (currentKeyClass == (HKEY)ERROR_INVALID_PARAMETER)
461         return (HRESULT)ERROR_INVALID_PARAMETER;
462
463     /* Get the key name */
464     currentKeyName = getRegKeyName(stdInput); /* Sets global variable */
465     if (currentKeyName == NULL)
466         return ERROR_INVALID_PARAMETER;
467
468     hRes = RegCreateKeyEx(
469                currentKeyClass,          /* Class     */
470                currentKeyName,           /* Sub Key   */
471                0,                        /* MUST BE 0 */
472                NULL,                     /* object type */
473                REG_OPTION_NON_VOLATILE,  /* option, REG_OPTION_NON_VOLATILE ... */
474                KEY_ALL_ACCESS,           /* access mask, KEY_ALL_ACCESS */
475                NULL,                     /* security attribute */
476                &currentKeyHandle,        /* result */
477                &dwDisp);                 /* disposition, REG_CREATED_NEW_KEY or
478                                                         REG_OPENED_EXISTING_KEY */
479
480     if (hRes == ERROR_SUCCESS)
481         bTheKeyIsOpen = TRUE;
482
483     return hRes;
484
485 }
486
487 /******************************************************************************
488  * Extracts from [HKEY\some\key\path] or HKEY\some\key\path types of line
489  * the key name (what starts after the first '\')
490  */
491 LPSTR getRegKeyName(LPSTR lpLine)
492 {
493     LPSTR keyNameBeg;
494     char  lpLineCopy[KEY_MAX_LEN];
495
496     if (lpLine == NULL)
497         return NULL;
498
499     strcpy(lpLineCopy, lpLine);
500
501     keyNameBeg = strchr(lpLineCopy, '\\');    /* The key name start by '\' */
502     if (keyNameBeg) {
503         LPSTR keyNameEnd;
504
505         keyNameBeg++;                             /* is not part of the name */
506         keyNameEnd = strchr(lpLineCopy, ']');
507         if (keyNameEnd) {
508             *keyNameEnd = '\0';               /* remove ']' from the key name */
509         }
510     } else {
511         keyNameBeg = lpLineCopy + strlen(lpLineCopy); /* branch - empty string */
512     }
513     currentKeyName = HeapAlloc(GetProcessHeap(), 0, strlen(keyNameBeg) + 1);
514     CHECK_ENOUGH_MEMORY(currentKeyName);
515     strcpy(currentKeyName, keyNameBeg);
516     return currentKeyName;
517 }
518
519 /******************************************************************************
520  * Extracts from [HKEY\some\key\path] or HKEY\some\key\path types of line
521  * the key class (what ends before the first '\')
522  */
523 HKEY getRegClass(LPSTR lpClass)
524 {
525     LPSTR classNameEnd;
526     LPSTR classNameBeg;
527     unsigned int i;
528
529     char  lpClassCopy[KEY_MAX_LEN];
530
531     if (lpClass == NULL)
532         return (HKEY)ERROR_INVALID_PARAMETER;
533
534     lstrcpynA(lpClassCopy, lpClass, KEY_MAX_LEN);
535
536     classNameEnd  = strchr(lpClassCopy, '\\');    /* The class name ends by '\' */
537     if (!classNameEnd)                            /* or the whole string */
538     {
539         classNameEnd = lpClassCopy + strlen(lpClassCopy);
540         if (classNameEnd[-1] == ']')
541         {
542             classNameEnd--;
543         }
544     }
545     *classNameEnd = '\0';                       /* Isolate the class name */
546     if (lpClassCopy[0] == '[') {
547         classNameBeg = lpClassCopy + 1;
548     } else {
549         classNameBeg = lpClassCopy;
550     }
551
552     for (i = 0; i < REG_CLASS_NUMBER; i++) {
553         if (!strcmp(classNameBeg, reg_class_names[i])) {
554             return reg_class_keys[i];
555         }
556     }
557     return (HKEY)ERROR_INVALID_PARAMETER;
558 }
559
560 /******************************************************************************
561  * Close the currently opened key.
562  */
563 void closeKey(void)
564 {
565     RegCloseKey(currentKeyHandle);
566
567     HeapFree(GetProcessHeap(), 0, currentKeyName); /* Allocated by getKeyName */
568
569     bTheKeyIsOpen    = FALSE;
570
571     currentKeyName   = NULL;
572     currentKeyClass  = 0;
573     currentKeyHandle = 0;
574 }
575
576 /******************************************************************************
577  * This function is the main entry point to the setValue type of action.  It
578  * receives the currently read line and dispatch the work depending on the
579  * context.
580  */
581 void doSetValue(LPSTR stdInput)
582 {
583     /*
584      * We encountered the end of the file, make sure we
585      * close the opened key and exit
586      */
587     if (stdInput == NULL) {
588         if (bTheKeyIsOpen != FALSE)
589             closeKey();
590
591         return;
592     }
593
594     if      ( stdInput[0] == '[')      /* We are reading a new key */
595     {
596         if ( bTheKeyIsOpen != FALSE )
597             closeKey();                    /* Close the previous key before */
598
599         if ( openKey(stdInput) != ERROR_SUCCESS )
600             fprintf(stderr,"%s: setValue failed to open key %s\n",
601                     getAppName(), stdInput);
602     } else if( ( bTheKeyIsOpen ) &&
603                (( stdInput[0] == '@') || /* reading a default @=data pair */
604                 ( stdInput[0] == '\"'))) /* reading a new value=data pair */
605     {
606         processSetValue(stdInput);
607     } else                               /* since we are assuming that the */
608     {                                  /* file format is valid we must   */
609         if ( bTheKeyIsOpen )             /* be reading a blank line which  */
610             closeKey();                    /* indicate end of this key processing */
611     }
612 }
613
614 /******************************************************************************
615  * This function is the main entry point to the queryValue type of action.  It
616  * receives the currently read line and dispatch the work depending on the
617  * context.
618  */
619 void doQueryValue(LPSTR stdInput)
620 {
621     /*
622      * We encountered the end of the file, make sure we
623      * close the opened key and exit
624      */
625     if (stdInput == NULL) {
626         if (bTheKeyIsOpen != FALSE)
627             closeKey();
628
629         return;
630     }
631
632     if      ( stdInput[0] == '[')      /* We are reading a new key */
633     {
634         if ( bTheKeyIsOpen != FALSE )
635             closeKey();                    /* Close the previous key before */
636
637         if ( openKey(stdInput) != ERROR_SUCCESS )
638             fprintf(stderr,"%s: queryValue failed to open key %s\n",
639                     getAppName(), stdInput);
640     } else if( ( bTheKeyIsOpen ) &&
641                (( stdInput[0] == '@') || /* reading a default @=data pair */
642                 ( stdInput[0] == '\"'))) /* reading a new value=data pair */
643     {
644         processQueryValue(stdInput);
645     } else                               /* since we are assuming that the */
646     {                                  /* file format is valid we must   */
647         if ( bTheKeyIsOpen )             /* be reading a blank line which  */
648             closeKey();                    /* indicate end of this key processing */
649     }
650 }
651
652 /******************************************************************************
653  * This function is the main entry point to the deleteValue type of action.  It
654  * receives the currently read line and dispatch the work depending on the
655  * context.
656  */
657 void doDeleteValue(LPSTR line)
658 {
659     fprintf(stderr,"%s: deleteValue not yet implemented\n", getAppName());
660 }
661
662 /******************************************************************************
663  * This function is the main entry point to the deleteKey type of action.  It
664  * receives the currently read line and dispatch the work depending on the
665  * context.
666  */
667 void doDeleteKey(LPSTR line)
668 {
669     fprintf(stderr,"%s: deleteKey not yet implemented\n", getAppName());
670 }
671
672 /******************************************************************************
673  * This function is the main entry point to the createKey type of action.  It
674  * receives the currently read line and dispatch the work depending on the
675  * context.
676  */
677 void doCreateKey(LPSTR line)
678 {
679     fprintf(stderr,"%s: createKey not yet implemented\n", getAppName());
680 }
681
682 /******************************************************************************
683  * This function is a wrapper for the setValue function.  It prepares the
684  * land and clean the area once completed.
685  * Note: this function modifies the line parameter.
686  *
687  * line - registry file unwrapped line. Should have the registry value name and
688  *      complete registry value data.
689  */
690 void processSetValue(LPSTR line)
691 {
692     LPSTR val_name;                   /* registry value name   */
693     LPSTR val_data;                   /* registry value data   */
694
695     int line_idx = 0;                 /* current character under analysis */
696     HRESULT hRes = 0;
697
698     /* get value name */
699     if (line[line_idx] == '@' && line[line_idx + 1] == '=') {
700         line[line_idx] = '\0';
701         val_name = line;
702         line_idx++;
703     } else if (line[line_idx] == '\"') {
704         line_idx++;
705         val_name = line + line_idx;
706         while (TRUE) {
707             if (line[line_idx] == '\\')   /* skip escaped character */
708             {
709                 line_idx += 2;
710             } else {
711                 if (line[line_idx] == '\"') {
712                     line[line_idx] = '\0';
713                     line_idx++;
714                     break;
715                 } else {
716                     line_idx++;
717                 }
718             }
719         }
720         if (line[line_idx] != '=') {
721             line[line_idx] = '\"';
722             fprintf(stderr,"Warning! unrecognized line:\n%s\n", line);
723             return;
724         }
725
726     } else {
727         fprintf(stderr,"Warning! unrecognized line:\n%s\n", line);
728         return;
729     }
730     line_idx++;                   /* skip the '=' character */
731     val_data = line + line_idx;
732
733     REGPROC_unescape_string(val_name);
734     hRes = setValue(val_name, val_data);
735     if ( hRes != ERROR_SUCCESS )
736         fprintf(stderr,"%s: ERROR Key %s not created. Value: %s, Data: %s\n",
737                 getAppName(),
738                 currentKeyName,
739                 val_name,
740                 val_data);
741 }
742
743 /******************************************************************************
744  * This function is a wrapper for the queryValue function.  It prepares the
745  * land and clean the area once completed.
746  */
747 void processQueryValue(LPSTR cmdline)
748 {
749     fprintf(stderr,"ERROR!!! - temporary disabled");
750     exit(1);
751 #if 0
752     LPSTR   argv[QUERY_VALUE_MAX_ARGS];/* args storage    */
753     LPSTR   token      = NULL;         /* current token analyzed */
754     ULONG   argCounter = 0;            /* counter of args */
755     INT     counter;
756     HRESULT hRes       = 0;
757     LPSTR   keyValue   = NULL;
758     LPSTR   lpsRes     = NULL;
759
760     /*
761      * Init storage and parse the line
762      */
763     for (counter=0; counter<QUERY_VALUE_MAX_ARGS; counter++)
764         argv[counter]=NULL;
765
766     while( (token = getToken(&cmdline, queryValueDelim[argCounter])) != NULL ) {
767         argv[argCounter++] = getArg(token);
768
769         if (argCounter == QUERY_VALUE_MAX_ARGS)
770             break;  /* Stop processing args no matter what */
771     }
772
773     /* The value we look for is the first token on the line */
774     if ( argv[0] == NULL )
775         return; /* SHOULD NOT HAPPEN */
776     else
777         keyValue = argv[0];
778
779     if( (keyValue[0] == '@') && (strlen(keyValue) == 1) ) {
780         LONG  lLen  = KEY_MAX_LEN;
781         CHAR*  lpsData=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,KEY_MAX_LEN);
782         /*
783          * We need to query the key default value
784          */
785         hRes = RegQueryValue(
786                    currentKeyHandle,
787                    currentKeyName,
788                    (LPBYTE)lpsData,
789                    &lLen);
790
791         if (hRes==ERROR_MORE_DATA) {
792             lpsData=HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,lpsData,lLen);
793             hRes = RegQueryValue(currentKeyHandle,currentKeyName,(LPBYTE)lpsData,&lLen);
794         }
795
796         if (hRes == ERROR_SUCCESS) {
797             lpsRes = HeapAlloc( GetProcessHeap(), 0, lLen);
798             lstrcpynA(lpsRes, lpsData, lLen);
799         }
800     } else {
801         DWORD  dwLen  = KEY_MAX_LEN;
802         BYTE*  lpbData=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,KEY_MAX_LEN);
803         DWORD  dwType;
804         /*
805          * We need to query a specific value for the key
806          */
807         hRes = RegQueryValueEx(
808                    currentKeyHandle,
809                    keyValue,
810                    0,
811                    &dwType,
812                    (LPBYTE)lpbData,
813                    &dwLen);
814
815         if (hRes==ERROR_MORE_DATA) {
816             lpbData=HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,lpbData,dwLen);
817             hRes = RegQueryValueEx(currentKeyHandle,keyValue,NULL,&dwType,(LPBYTE)lpbData,&dwLen);
818         }
819
820         if (hRes == ERROR_SUCCESS) {
821             /*
822              * Convert the returned data to a displayable format
823              */
824             switch ( dwType ) {
825             case REG_SZ:
826             case REG_EXPAND_SZ: {
827                     lpsRes = HeapAlloc( GetProcessHeap(), 0, dwLen);
828                     lstrcpynA(lpsRes, lpbData, dwLen);
829                     break;
830                 }
831             case REG_DWORD: {
832                     lpsRes = convertHexToDWORDStr(lpbData, dwLen);
833                     break;
834                 }
835             default: {
836                     lpsRes = convertHexToHexCSV(lpbData, dwLen);
837                     break;
838                 }
839             }
840         }
841
842         HeapFree(GetProcessHeap(), 0, lpbData);
843     }
844
845
846     if ( hRes == ERROR_SUCCESS )
847         fprintf(stderr,
848                 "%s: Value \"%s\" = \"%s\" in key [%s]\n",
849                 getAppName(),
850                 keyValue,
851                 lpsRes,
852                 currentKeyName);
853
854     else
855         fprintf(stderr,"%s: ERROR Value \"%s\" not found for key \"%s\".\n",
856                 getAppName(),
857                 keyValue,
858                 currentKeyName);
859
860     /*
861      * Do some cleanup
862      */
863     for (counter=0; counter<argCounter; counter++)
864         if (argv[counter] != NULL)
865             HeapFree(GetProcessHeap(), 0, argv[counter]);
866
867     if (lpsRes != NULL)
868         HeapFree(GetProcessHeap(), 0, lpsRes);
869 #endif
870 }
871
872 /******************************************************************************
873  * Calls command for each line of a registry file.
874  * Correctly processes comments (in # form), line continuation.
875  *
876  * Parameters:
877  *   in - input stream to read from
878  *   command - command to be called for each line
879  */
880 void processRegLines(FILE *in, CommandAPI command)
881 {
882     LPSTR line           = NULL;  /* line read from input stream */
883     ULONG lineSize       = REG_VAL_BUF_SIZE;
884
885     line = HeapAlloc(GetProcessHeap(), 0, lineSize);
886     CHECK_ENOUGH_MEMORY(line);
887
888     while (!feof(in)) {
889         LPSTR s; /* The pointer into line for where the current fgets should read */
890         s = line;
891         for (;;) {
892             size_t size_remaining;
893             int size_to_get;
894             char *s_eol; /* various local uses */
895
896             /* Do we need to expand the buffer ? */
897             assert (s >= line && s <= line + lineSize);
898             size_remaining = lineSize - (s-line);
899             if (size_remaining < 2) /* room for 1 character and the \0 */
900             {
901                 char *new_buffer;
902                 size_t new_size = lineSize + REG_VAL_BUF_SIZE;
903                 if (new_size > lineSize) /* no arithmetic overflow */
904                     new_buffer = HeapReAlloc (GetProcessHeap(), 0, line, new_size);
905                 else
906                     new_buffer = NULL;
907                 CHECK_ENOUGH_MEMORY(new_buffer);
908                 line = new_buffer;
909                 s = line + lineSize - size_remaining;
910                 lineSize = new_size;
911                 size_remaining = lineSize - (s-line);
912             }
913
914             /* Get as much as possible into the buffer, terminated either by
915              * eof, error, eol or getting the maximum amount.  Abort on error.
916              */
917             size_to_get = (size_remaining > INT_MAX ? INT_MAX : size_remaining);
918             if (NULL == fgets (s, size_to_get, in)) {
919                 if (ferror(in)) {
920                     perror ("While reading input");
921                     exit (IO_ERROR);
922                 } else {
923                     assert (feof(in));
924                     *s = '\0';
925                     /* It is not clear to me from the definition that the
926                      * contents of the buffer are well defined on detecting
927                      * an eof without managing to read anything.
928                      */
929                 }
930             }
931
932             /* If we didn't read the eol nor the eof go around for the rest */
933             s_eol = strchr (s, '\n');
934             if (!feof (in) && !s_eol) {
935                 s = strchr (s, '\0');
936                 /* It should be s + size_to_get - 1 but this is safer */
937                 continue;
938             }
939
940             /* If it is a comment line then discard it and go around again */
941             if (line [0] == '#') {
942                 s = line;
943                 continue;
944             }
945
946             /* Remove any line feed.  Leave s_eol on the \0 */
947             if (s_eol) {
948                 *s_eol = '\0';
949                 if (s_eol > line && *(s_eol-1) == '\r')
950                     *--s_eol = '\0';
951             } else
952                 s_eol = strchr (s, '\0');
953
954             /* If there is a concatenating \\ then go around again */
955             if (s_eol > line && *(s_eol-1) == '\\') {
956                 int c;
957                 s = s_eol-1;
958                 /* The following error protection could be made more self-
959                  * correcting but I thought it not worth trying.
960                  */
961                 if ((c = fgetc (in)) == EOF || c != ' ' ||
962                         (c = fgetc (in)) == EOF || c != ' ')
963                     fprintf(stderr,"%s: ERROR - invalid continuation.\n",
964                             getAppName());
965                 continue;
966             }
967
968             break; /* That is the full virtual line */
969         }
970
971         command(line);
972     }
973     command(NULL);
974
975     HeapFree(GetProcessHeap(), 0, line);
976 }
977
978 /******************************************************************************
979  * This function is the main entry point to the registerDLL action.  It
980  * receives the currently read line, then loads and registers the requested DLLs
981  */
982 void doRegisterDLL(LPSTR stdInput)
983 {
984     HMODULE theLib = 0;
985     UINT retVal = 0;
986
987     /* Check for valid input */
988     if (stdInput == NULL)
989         return;
990
991     /* Load and register the library, then free it */
992     theLib = LoadLibrary(stdInput);
993     if (theLib) {
994         FARPROC lpfnDLLRegProc = GetProcAddress(theLib, "DllRegisterServer");
995         if (lpfnDLLRegProc)
996             retVal = (*lpfnDLLRegProc)();
997         else
998             fprintf(stderr,"%s: Couldn't find DllRegisterServer proc in '%s'.\n",
999                     getAppName(), stdInput);
1000
1001         if (retVal != S_OK)
1002             fprintf(stderr,"%s: DLLRegisterServer error 0x%x in '%s'.\n",
1003                     getAppName(), retVal, stdInput);
1004
1005         FreeLibrary(theLib);
1006     } else {
1007         fprintf(stderr,"%s: Could not load DLL '%s'.\n", getAppName(), stdInput);
1008     }
1009 }
1010
1011 /******************************************************************************
1012  * This function is the main entry point to the unregisterDLL action.  It
1013  * receives the currently read line, then loads and unregisters the requested DLLs
1014  */
1015 void doUnregisterDLL(LPSTR stdInput)
1016 {
1017     HMODULE theLib = 0;
1018     UINT retVal = 0;
1019
1020     /* Check for valid input */
1021     if (stdInput == NULL)
1022         return;
1023
1024     /* Load and unregister the library, then free it */
1025     theLib = LoadLibrary(stdInput);
1026     if (theLib) {
1027         FARPROC lpfnDLLRegProc = GetProcAddress(theLib, "DllUnregisterServer");
1028         if (lpfnDLLRegProc)
1029             retVal = (*lpfnDLLRegProc)();
1030         else
1031             fprintf(stderr,"%s: Couldn't find DllUnregisterServer proc in '%s'.\n",
1032                     getAppName(), stdInput);
1033
1034         if (retVal != S_OK)
1035             fprintf(stderr,"%s: DLLUnregisterServer error 0x%x in '%s'.\n",
1036                     getAppName(), retVal, stdInput);
1037
1038         FreeLibrary(theLib);
1039     } else {
1040         fprintf(stderr,"%s: Could not load DLL '%s'.\n", getAppName(), stdInput);
1041     }
1042 }
1043
1044 /****************************************************************************
1045  * REGPROC_print_error
1046  *
1047  * Print the message for GetLastError
1048  */
1049
1050 static void REGPROC_print_error(void)
1051 {
1052     LPVOID lpMsgBuf;
1053     DWORD error_code;
1054     int status;
1055
1056     error_code = GetLastError ();
1057     status = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
1058                            NULL, error_code, 0, (LPTSTR) &lpMsgBuf, 0, NULL);
1059     if (!status) {
1060         fprintf(stderr,"%s: Cannot display message for error %ld, status %ld\n",
1061                 getAppName(), error_code, GetLastError());
1062         exit(1);
1063     }
1064     puts(lpMsgBuf);
1065     LocalFree((HLOCAL)lpMsgBuf);
1066     exit(1);
1067 }
1068
1069 /******************************************************************************
1070  * Checks whether the buffer has enough room for the string or required size.
1071  * Resizes the buffer if necessary.
1072  *
1073  * Parameters:
1074  * buffer - pointer to a buffer for string
1075  * len - current length of the buffer in characters.
1076  * required_len - length of the string to place to the buffer in characters.
1077  *   The length does not include the terminating null character.
1078  */
1079 static void REGPROC_resize_char_buffer(CHAR **buffer, DWORD *len, DWORD required_len)
1080 {
1081     required_len++;
1082     if (required_len > *len) {
1083         *len = required_len;
1084         if (!*buffer)
1085             *buffer = HeapAlloc(GetProcessHeap(), 0, *len * sizeof(**buffer));
1086         else
1087             *buffer = HeapReAlloc(GetProcessHeap(), 0, *buffer, *len * sizeof(**buffer));
1088         CHECK_ENOUGH_MEMORY(*buffer);
1089     }
1090 }
1091
1092 /******************************************************************************
1093  * Prints string str to file
1094  */
1095 static void REGPROC_export_string(FILE *file, CHAR *str)
1096 {
1097     size_t len = strlen(str);
1098     size_t i;
1099
1100     /* escaping characters */
1101     for (i = 0; i < len; i++) {
1102         CHAR c = str[i];
1103         switch (c) {
1104         case '\\':
1105             fputs("\\\\", file);
1106             break;
1107         case '\"':
1108             fputs("\\\"", file);
1109             break;
1110         case '\n':
1111             fputs("\\\n", file);
1112             break;
1113         default:
1114             fputc(c, file);
1115             break;
1116         }
1117     }
1118 }
1119
1120 /******************************************************************************
1121  * Writes contents of the registry key to the specified file stream.
1122  *
1123  * Parameters:
1124  * file - writable file stream to export registry branch to.
1125  * key - registry branch to export.
1126  * reg_key_name_buf - name of the key with registry class.
1127  *      Is resized if necessary.
1128  * reg_key_name_len - length of the buffer for the registry class in characters.
1129  * val_name_buf - buffer for storing value name.
1130  *      Is resized if necessary.
1131  * val_name_len - length of the buffer for storing value names in characters.
1132  * val_buf - buffer for storing values while extracting.
1133  *      Is resized if necessary.
1134  * val_size - size of the buffer for storing values in bytes.
1135  */
1136 static void export_hkey(FILE *file, HKEY key,
1137                  CHAR **reg_key_name_buf, DWORD *reg_key_name_len,
1138                  CHAR **val_name_buf, DWORD *val_name_len,
1139                  BYTE **val_buf, DWORD *val_size)
1140 {
1141     DWORD max_sub_key_len;
1142     DWORD max_val_name_len;
1143     DWORD max_val_size;
1144     DWORD curr_len;
1145     DWORD i;
1146     BOOL more_data;
1147     LONG ret;
1148
1149     /* get size information and resize the buffers if necessary */
1150     if (RegQueryInfoKey(key, NULL, NULL, NULL, NULL,
1151                         &max_sub_key_len, NULL,
1152                         NULL, &max_val_name_len, &max_val_size, NULL, NULL
1153                        ) != ERROR_SUCCESS) {
1154         REGPROC_print_error();
1155     }
1156     curr_len = strlen(*reg_key_name_buf);
1157     REGPROC_resize_char_buffer(reg_key_name_buf, reg_key_name_len,
1158                                max_sub_key_len + curr_len + 1);
1159     REGPROC_resize_char_buffer(val_name_buf, val_name_len,
1160                                max_val_name_len);
1161     if (max_val_size > *val_size) {
1162         *val_size = max_val_size;
1163         if (!*val_buf) *val_buf = HeapAlloc(GetProcessHeap(), 0, *val_size);
1164         else *val_buf = HeapReAlloc(GetProcessHeap(), 0, *val_buf, *val_size);
1165         CHECK_ENOUGH_MEMORY(val_buf);
1166     }
1167
1168     /* output data for the current key */
1169     fputs("\n[", file);
1170     fputs(*reg_key_name_buf, file);
1171     fputs("]\n", file);
1172     /* print all the values */
1173     i = 0;
1174     more_data = TRUE;
1175     while(more_data) {
1176         DWORD value_type;
1177         DWORD val_name_len1 = *val_name_len;
1178         DWORD val_size1 = *val_size;
1179         ret = RegEnumValue(key, i, *val_name_buf, &val_name_len1, NULL,
1180                            &value_type, *val_buf, &val_size1);
1181         if (ret != ERROR_SUCCESS) {
1182             more_data = FALSE;
1183             if (ret != ERROR_NO_MORE_ITEMS) {
1184                 REGPROC_print_error();
1185             }
1186         } else {
1187             i++;
1188
1189             if ((*val_name_buf)[0]) {
1190                 fputs("\"", file);
1191                 REGPROC_export_string(file, *val_name_buf);
1192                 fputs("\"=", file);
1193             } else {
1194                 fputs("@=", file);
1195             }
1196
1197             switch (value_type) {
1198             case REG_SZ:
1199             case REG_EXPAND_SZ:
1200                 fputs("\"", file);
1201                 REGPROC_export_string(file, (char*) *val_buf);
1202                 fputs("\"\n", file);
1203                 break;
1204
1205             case REG_DWORD:
1206                 fprintf(file, "dword:%08lx\n", *((DWORD *)*val_buf));
1207                 break;
1208
1209             default:
1210                 fprintf(stderr,"%s: warning - unsupported registry format '%ld', "
1211                         "treat as binary\n",
1212                         getAppName(), value_type);
1213                 fprintf(stderr,"key name: \"%s\"\n", *reg_key_name_buf);
1214                 fprintf(stderr,"value name:\"%s\"\n\n", *val_name_buf);
1215                 /* falls through */
1216             case REG_MULTI_SZ:
1217                 /* falls through */
1218             case REG_BINARY: {
1219                     DWORD i1;
1220                     const CHAR *hex_prefix;
1221                     CHAR buf[20];
1222                     int cur_pos;
1223
1224                     if (value_type == REG_BINARY) {
1225                         hex_prefix = "hex:";
1226                     } else {
1227                         hex_prefix = buf;
1228                         sprintf(buf, "hex(%ld):", value_type);
1229                     }
1230
1231                     /* position of where the next character will be printed */
1232                     /* NOTE: yes, strlen("hex:") is used even for hex(x): */
1233                     cur_pos = strlen("\"\"=") + strlen("hex:") +
1234                               strlen(*val_name_buf);
1235
1236                     fputs(hex_prefix, file);
1237                     for (i1 = 0; i1 < val_size1; i1++) {
1238                         fprintf(file, "%02x", (unsigned int)(*val_buf)[i1]);
1239                         if (i1 + 1 < val_size1) {
1240                             fputs(",", file);
1241                         }
1242                         cur_pos += 3;
1243
1244                         /* wrap the line */
1245                         if (cur_pos > REG_FILE_HEX_LINE_LEN) {
1246                             fputs("\\\n  ", file);
1247                             cur_pos = 2;
1248                         }
1249                     }
1250                     fputs("\n", file);
1251                     break;
1252                 }
1253             }
1254         }
1255     }
1256
1257     i = 0;
1258     more_data = TRUE;
1259     (*reg_key_name_buf)[curr_len] = '\\';
1260     while(more_data) {
1261         DWORD buf_len = *reg_key_name_len - curr_len;
1262
1263         ret = RegEnumKeyEx(key, i, *reg_key_name_buf + curr_len + 1, &buf_len,
1264                            NULL, NULL, NULL, NULL);
1265         if (ret != ERROR_SUCCESS && ret != ERROR_MORE_DATA) {
1266             more_data = FALSE;
1267             if (ret != ERROR_NO_MORE_ITEMS) {
1268                 REGPROC_print_error();
1269             }
1270         } else {
1271             HKEY subkey;
1272
1273             i++;
1274             if (RegOpenKey(key, *reg_key_name_buf + curr_len + 1,
1275                            &subkey) == ERROR_SUCCESS) {
1276                 export_hkey(file, subkey, reg_key_name_buf, reg_key_name_len,
1277                             val_name_buf, val_name_len, val_buf, val_size);
1278                 RegCloseKey(subkey);
1279             } else {
1280                 REGPROC_print_error();
1281             }
1282         }
1283     }
1284     (*reg_key_name_buf)[curr_len] = '\0';
1285 }
1286
1287 /******************************************************************************
1288  * Open file for export.
1289  */
1290 static FILE *REGPROC_open_export_file(CHAR *file_name)
1291 {
1292     FILE *file = fopen(file_name, "w");
1293     if (!file) {
1294         perror("");
1295         fprintf(stderr,"%s: Can't open file \"%s\"\n", getAppName(), file_name);
1296         exit(1);
1297     }
1298     fputs("REGEDIT4\n", file);
1299     return file;
1300 }
1301
1302 /******************************************************************************
1303  * Writes contents of the registry key to the specified file stream.
1304  *
1305  * Parameters:
1306  * file_name - name of a file to export registry branch to.
1307  * reg_key_name - registry branch to export. The whole registry is exported if
1308  *      reg_key_name is NULL or contains an empty string.
1309  */
1310 BOOL export_registry_key(CHAR *file_name, CHAR *reg_key_name)
1311 {
1312     HKEY reg_key_class;
1313
1314     CHAR *reg_key_name_buf;
1315     CHAR *val_name_buf;
1316     BYTE *val_buf;
1317     DWORD reg_key_name_len = KEY_MAX_LEN;
1318     DWORD val_name_len = KEY_MAX_LEN;
1319     DWORD val_size = REG_VAL_BUF_SIZE;
1320     FILE *file = NULL;
1321
1322     reg_key_name_buf = HeapAlloc(GetProcessHeap(), 0,
1323                                  reg_key_name_len  * sizeof(*reg_key_name_buf));
1324     val_name_buf = HeapAlloc(GetProcessHeap(), 0,
1325                              val_name_len * sizeof(*val_name_buf));
1326     val_buf = HeapAlloc(GetProcessHeap(), 0, val_size);
1327     CHECK_ENOUGH_MEMORY(reg_key_name_buf && val_name_buf && val_buf);
1328
1329     if (reg_key_name && reg_key_name[0]) {
1330         CHAR *branch_name;
1331         HKEY key;
1332
1333         REGPROC_resize_char_buffer(&reg_key_name_buf, &reg_key_name_len,
1334                                    strlen(reg_key_name));
1335         strcpy(reg_key_name_buf, reg_key_name);
1336
1337         /* open the specified key */
1338         reg_key_class = getRegClass(reg_key_name);
1339         if (reg_key_class == (HKEY)ERROR_INVALID_PARAMETER) {
1340             fprintf(stderr,"%s: Incorrect registry class specification in '%s'\n",
1341                     getAppName(), reg_key_name);
1342             exit(1);
1343         }
1344         branch_name = getRegKeyName(reg_key_name);
1345         CHECK_ENOUGH_MEMORY(branch_name);
1346         if (!branch_name[0]) {
1347             /* no branch - registry class is specified */
1348             file = REGPROC_open_export_file(file_name);
1349             export_hkey(file, reg_key_class,
1350                         &reg_key_name_buf, &reg_key_name_len,
1351                         &val_name_buf, &val_name_len,
1352                         &val_buf, &val_size);
1353         } else if (RegOpenKey(reg_key_class, branch_name, &key) == ERROR_SUCCESS) {
1354             file = REGPROC_open_export_file(file_name);
1355             export_hkey(file, key,
1356                         &reg_key_name_buf, &reg_key_name_len,
1357                         &val_name_buf, &val_name_len,
1358                         &val_buf, &val_size);
1359             RegCloseKey(key);
1360         } else {
1361             fprintf(stderr,"%s: Can't export. Registry key '%s' does not exist!\n",
1362                     getAppName(), reg_key_name);
1363             REGPROC_print_error();
1364         }
1365         HeapFree(GetProcessHeap(), 0, branch_name);
1366     } else {
1367         unsigned int i;
1368
1369         /* export all registry classes */
1370         file = REGPROC_open_export_file(file_name);
1371         for (i = 0; i < REG_CLASS_NUMBER; i++) {
1372             /* do not export HKEY_CLASSES_ROOT */
1373             if (reg_class_keys[i] != HKEY_CLASSES_ROOT &&
1374                     reg_class_keys[i] != HKEY_CURRENT_USER &&
1375                     reg_class_keys[i] != HKEY_CURRENT_CONFIG &&
1376                     reg_class_keys[i] != HKEY_DYN_DATA) {
1377                 strcpy(reg_key_name_buf, reg_class_names[i]);
1378                 export_hkey(file, reg_class_keys[i],
1379                             &reg_key_name_buf, &reg_key_name_len,
1380                             &val_name_buf, &val_name_len,
1381                             &val_buf, &val_size);
1382             }
1383         }
1384     }
1385
1386     if (file) {
1387         fclose(file);
1388     }
1389     HeapFree(GetProcessHeap(), 0, reg_key_name);
1390     HeapFree(GetProcessHeap(), 0, val_buf);
1391     return TRUE;
1392 }
1393
1394 /******************************************************************************
1395  * Reads contents of the specified file into the registry.
1396  */
1397 BOOL import_registry_file(LPTSTR filename)
1398 {
1399     FILE* reg_file = fopen(filename, "r");
1400
1401     if (reg_file) {
1402         processRegLines(reg_file, doSetValue);
1403         return TRUE;
1404     }
1405     return FALSE;
1406 }
1407
1408 /******************************************************************************
1409  * Recursive function which removes the registry key with all subkeys.
1410  */
1411 static void delete_branch(HKEY key,
1412                    CHAR **reg_key_name_buf, DWORD *reg_key_name_len)
1413 {
1414     HKEY branch_key;
1415     DWORD max_sub_key_len;
1416     DWORD subkeys;
1417     DWORD curr_len;
1418     LONG ret;
1419     long int i;
1420
1421     if (RegOpenKey(key, *reg_key_name_buf, &branch_key) != ERROR_SUCCESS) {
1422         REGPROC_print_error();
1423     }
1424
1425     /* get size information and resize the buffers if necessary */
1426     if (RegQueryInfoKey(branch_key, NULL, NULL, NULL,
1427                         &subkeys, &max_sub_key_len,
1428                         NULL, NULL, NULL, NULL, NULL, NULL
1429                        ) != ERROR_SUCCESS) {
1430         REGPROC_print_error();
1431     }
1432     curr_len = strlen(*reg_key_name_buf);
1433     REGPROC_resize_char_buffer(reg_key_name_buf, reg_key_name_len,
1434                                max_sub_key_len + curr_len + 1);
1435
1436     (*reg_key_name_buf)[curr_len] = '\\';
1437     for (i = subkeys - 1; i >= 0; i--) {
1438         DWORD buf_len = *reg_key_name_len - curr_len;
1439
1440         ret = RegEnumKeyEx(branch_key, i, *reg_key_name_buf + curr_len + 1,
1441                            &buf_len, NULL, NULL, NULL, NULL);
1442         if (ret != ERROR_SUCCESS &&
1443                 ret != ERROR_MORE_DATA &&
1444                 ret != ERROR_NO_MORE_ITEMS) {
1445             REGPROC_print_error();
1446         } else {
1447             delete_branch(key, reg_key_name_buf, reg_key_name_len);
1448         }
1449     }
1450     (*reg_key_name_buf)[curr_len] = '\0';
1451     RegCloseKey(branch_key);
1452     RegDeleteKey(key, *reg_key_name_buf);
1453 }
1454
1455 /******************************************************************************
1456  * Removes the registry key with all subkeys. Parses full key name.
1457  *
1458  * Parameters:
1459  * reg_key_name - full name of registry branch to delete. Ignored if is NULL,
1460  *      empty, points to register key class, does not exist.
1461  */
1462 void delete_registry_key(CHAR *reg_key_name)
1463 {
1464     CHAR *branch_name;
1465     DWORD branch_name_len;
1466     HKEY reg_key_class;
1467     HKEY branch_key;
1468
1469     if (!reg_key_name || !reg_key_name[0])
1470         return;
1471     /* open the specified key */
1472     reg_key_class = getRegClass(reg_key_name);
1473     if (reg_key_class == (HKEY)ERROR_INVALID_PARAMETER) {
1474         fprintf(stderr,"%s: Incorrect registry class specification in '%s'\n",
1475                 getAppName(), reg_key_name);
1476         exit(1);
1477     }
1478     branch_name = getRegKeyName(reg_key_name);
1479     CHECK_ENOUGH_MEMORY(branch_name);
1480     branch_name_len = strlen(branch_name);
1481     if (!branch_name[0]) {
1482         fprintf(stderr,"%s: Can't delete registry class '%s'\n",
1483                 getAppName(), reg_key_name);
1484         exit(1);
1485     }
1486     if (RegOpenKey(reg_key_class, branch_name, &branch_key) == ERROR_SUCCESS) {
1487         /* check whether the key exists */
1488         RegCloseKey(branch_key);
1489         delete_branch(reg_key_class, &branch_name, &branch_name_len);
1490     }
1491     HeapFree(GetProcessHeap(), 0, branch_name);
1492 }
1493
1494 /******************************************************************************
1495  * Sets the application name. Then application name is used in the error
1496  * reporting.
1497  */
1498 void setAppName(const CHAR *name)
1499 {
1500     app_name = name;
1501 }
1502
1503 const CHAR *getAppName(void)
1504 {
1505     return app_name;
1506 }