server: Save and load the registry class names to/from disk files.
[wine] / server / registry.c
1 /*
2  * Server-side registry management
3  *
4  * Copyright (C) 1999 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 /* To do:
22  * - symbolic links
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
28 #include <assert.h>
29 #include <ctype.h>
30 #include <errno.h>
31 #include <fcntl.h>
32 #include <limits.h>
33 #include <stdio.h>
34 #include <stdarg.h>
35 #include <string.h>
36 #include <stdlib.h>
37 #include <sys/stat.h>
38 #include <unistd.h>
39
40 #include "ntstatus.h"
41 #define WIN32_NO_STATUS
42 #include "object.h"
43 #include "file.h"
44 #include "handle.h"
45 #include "request.h"
46 #include "unicode.h"
47 #include "security.h"
48
49 #include "winternl.h"
50 #include "wine/library.h"
51
52 struct notify
53 {
54     struct list       entry;    /* entry in list of notifications */
55     struct event     *event;    /* event to set when changing this key */
56     int               subtree;  /* true if subtree notification */
57     unsigned int      filter;   /* which events to notify on */
58     obj_handle_t      hkey;     /* hkey associated with this notification */
59     struct process   *process;  /* process in which the hkey is valid */
60 };
61
62 /* a registry key */
63 struct key
64 {
65     struct object     obj;         /* object header */
66     WCHAR            *name;        /* key name */
67     WCHAR            *class;       /* key class */
68     unsigned short    namelen;     /* length of key name */
69     unsigned short    classlen;    /* length of class name */
70     struct key       *parent;      /* parent key */
71     int               last_subkey; /* last in use subkey */
72     int               nb_subkeys;  /* count of allocated subkeys */
73     struct key      **subkeys;     /* subkeys array */
74     int               last_value;  /* last in use value */
75     int               nb_values;   /* count of allocated values in array */
76     struct key_value *values;      /* values array */
77     unsigned int      flags;       /* flags */
78     timeout_t         modif;       /* last modification time */
79     struct list       notify_list; /* list of notifications */
80 };
81
82 /* key flags */
83 #define KEY_VOLATILE 0x0001  /* key is volatile (not saved to disk) */
84 #define KEY_DELETED  0x0002  /* key has been deleted */
85 #define KEY_DIRTY    0x0004  /* key has been modified */
86 #define KEY_SYMLINK  0x0008  /* key is a symbolic link */
87
88 /* a key value */
89 struct key_value
90 {
91     WCHAR            *name;    /* value name */
92     unsigned short    namelen; /* length of value name */
93     unsigned short    type;    /* value type */
94     data_size_t       len;     /* value data length in bytes */
95     void             *data;    /* pointer to value data */
96 };
97
98 #define MIN_SUBKEYS  8   /* min. number of allocated subkeys per key */
99 #define MIN_VALUES   8   /* min. number of allocated values per key */
100
101 #define MAX_NAME_LEN  MAX_PATH  /* max. length of a key name */
102 #define MAX_VALUE_LEN MAX_PATH  /* max. length of a value name */
103
104 /* the root of the registry tree */
105 static struct key *root_key;
106
107 static const timeout_t ticks_1601_to_1970 = (timeout_t)86400 * (369 * 365 + 89) * TICKS_PER_SEC;
108 static const timeout_t save_period = 30 * -TICKS_PER_SEC;  /* delay between periodic saves */
109 static struct timeout_user *save_timeout_user;  /* saving timer */
110
111 static const WCHAR root_name[] = { '\\','R','e','g','i','s','t','r','y','\\' };
112 static const WCHAR symlink_value[] = {'S','y','m','b','o','l','i','c','L','i','n','k','V','a','l','u','e'};
113 static const struct unicode_str symlink_str = { symlink_value, sizeof(symlink_value) };
114
115 static void set_periodic_save_timer(void);
116 static struct key_value *find_value( const struct key *key, const struct unicode_str *name, int *index );
117
118 /* information about where to save a registry branch */
119 struct save_branch_info
120 {
121     struct key  *key;
122     const char  *path;
123 };
124
125 #define MAX_SAVE_BRANCH_INFO 3
126 static int save_branch_count;
127 static struct save_branch_info save_branch_info[MAX_SAVE_BRANCH_INFO];
128
129
130 /* information about a file being loaded */
131 struct file_load_info
132 {
133     const char *filename; /* input file name */
134     FILE       *file;     /* input file */
135     char       *buffer;   /* line buffer */
136     int         len;      /* buffer length */
137     int         line;     /* current input line */
138     WCHAR      *tmp;      /* temp buffer to use while parsing input */
139     size_t      tmplen;   /* length of temp buffer */
140 };
141
142
143 static void key_dump( struct object *obj, int verbose );
144 static unsigned int key_map_access( struct object *obj, unsigned int access );
145 static int key_close_handle( struct object *obj, struct process *process, obj_handle_t handle );
146 static void key_destroy( struct object *obj );
147
148 static const struct object_ops key_ops =
149 {
150     sizeof(struct key),      /* size */
151     key_dump,                /* dump */
152     no_get_type,             /* get_type */
153     no_add_queue,            /* add_queue */
154     NULL,                    /* remove_queue */
155     NULL,                    /* signaled */
156     NULL,                    /* satisfied */
157     no_signal,               /* signal */
158     no_get_fd,               /* get_fd */
159     key_map_access,          /* map_access */
160     default_get_sd,          /* get_sd */
161     default_set_sd,          /* set_sd */
162     no_lookup_name,          /* lookup_name */
163     no_open_file,            /* open_file */
164     key_close_handle,        /* close_handle */
165     key_destroy              /* destroy */
166 };
167
168
169 /*
170  * The registry text file format v2 used by this code is similar to the one
171  * used by REGEDIT import/export functionality, with the following differences:
172  * - strings and key names can contain \x escapes for Unicode
173  * - key names use escapes too in order to support Unicode
174  * - the modification time optionally follows the key name
175  * - REG_EXPAND_SZ and REG_MULTI_SZ are saved as strings instead of hex
176  */
177
178 /* dump the full path of a key */
179 static void dump_path( const struct key *key, const struct key *base, FILE *f )
180 {
181     if (key->parent && key->parent != base)
182     {
183         dump_path( key->parent, base, f );
184         fprintf( f, "\\\\" );
185     }
186     dump_strW( key->name, key->namelen / sizeof(WCHAR), f, "[]" );
187 }
188
189 /* dump a value to a text file */
190 static void dump_value( const struct key_value *value, FILE *f )
191 {
192     unsigned int i, dw;
193     int count;
194
195     if (value->namelen)
196     {
197         fputc( '\"', f );
198         count = 1 + dump_strW( value->name, value->namelen / sizeof(WCHAR), f, "\"\"" );
199         count += fprintf( f, "\"=" );
200     }
201     else count = fprintf( f, "@=" );
202
203     switch(value->type)
204     {
205     case REG_SZ:
206     case REG_EXPAND_SZ:
207     case REG_MULTI_SZ:
208         /* only output properly terminated strings in string format */
209         if (value->len < sizeof(WCHAR)) break;
210         if (value->len % sizeof(WCHAR)) break;
211         if (((WCHAR *)value->data)[value->len / sizeof(WCHAR) - 1]) break;
212         if (value->type != REG_SZ) fprintf( f, "str(%x):", value->type );
213         fputc( '\"', f );
214         dump_strW( (WCHAR *)value->data, value->len / sizeof(WCHAR), f, "\"\"" );
215         fprintf( f, "\"\n" );
216         return;
217
218     case REG_DWORD:
219         if (value->len != sizeof(dw)) break;
220         memcpy( &dw, value->data, sizeof(dw) );
221         fprintf( f, "dword:%08x\n", dw );
222         return;
223     }
224
225     if (value->type == REG_BINARY) count += fprintf( f, "hex:" );
226     else count += fprintf( f, "hex(%x):", value->type );
227     for (i = 0; i < value->len; i++)
228     {
229         count += fprintf( f, "%02x", *((unsigned char *)value->data + i) );
230         if (i < value->len-1)
231         {
232             fputc( ',', f );
233             if (++count > 76)
234             {
235                 fprintf( f, "\\\n  " );
236                 count = 2;
237             }
238         }
239     }
240     fputc( '\n', f );
241 }
242
243 /* save a registry and all its subkeys to a text file */
244 static void save_subkeys( const struct key *key, const struct key *base, FILE *f )
245 {
246     int i;
247
248     if (key->flags & KEY_VOLATILE) return;
249     /* save key if it has either some values or no subkeys, or needs special options */
250     /* keys with no values but subkeys are saved implicitly by saving the subkeys */
251     if ((key->last_value >= 0) || (key->last_subkey == -1) || key->class)
252     {
253         fprintf( f, "\n[" );
254         if (key != base) dump_path( key, base, f );
255         fprintf( f, "] %u\n", (unsigned int)((key->modif - ticks_1601_to_1970) / TICKS_PER_SEC) );
256         if (key->class)
257         {
258             fprintf( f, "#class=\"" );
259             dump_strW( key->class, key->classlen / sizeof(WCHAR), f, "\"\"" );
260             fprintf( f, "\"\n" );
261         }
262         for (i = 0; i <= key->last_value; i++) dump_value( &key->values[i], f );
263     }
264     for (i = 0; i <= key->last_subkey; i++) save_subkeys( key->subkeys[i], base, f );
265 }
266
267 static void dump_operation( const struct key *key, const struct key_value *value, const char *op )
268 {
269     fprintf( stderr, "%s key ", op );
270     if (key) dump_path( key, NULL, stderr );
271     else fprintf( stderr, "ERROR" );
272     if (value)
273     {
274         fprintf( stderr, " value ");
275         dump_value( value, stderr );
276     }
277     else fprintf( stderr, "\n" );
278 }
279
280 static void key_dump( struct object *obj, int verbose )
281 {
282     struct key *key = (struct key *)obj;
283     assert( obj->ops == &key_ops );
284     fprintf( stderr, "Key flags=%x ", key->flags );
285     dump_path( key, NULL, stderr );
286     fprintf( stderr, "\n" );
287 }
288
289 /* notify waiter and maybe delete the notification */
290 static void do_notification( struct key *key, struct notify *notify, int del )
291 {
292     if (notify->event)
293     {
294         set_event( notify->event );
295         release_object( notify->event );
296         notify->event = NULL;
297     }
298     if (del)
299     {
300         list_remove( &notify->entry );
301         free( notify );
302     }
303 }
304
305 static inline struct notify *find_notify( struct key *key, struct process *process, obj_handle_t hkey )
306 {
307     struct notify *notify;
308
309     LIST_FOR_EACH_ENTRY( notify, &key->notify_list, struct notify, entry )
310     {
311         if (notify->process == process && notify->hkey == hkey) return notify;
312     }
313     return NULL;
314 }
315
316 static unsigned int key_map_access( struct object *obj, unsigned int access )
317 {
318     if (access & GENERIC_READ)    access |= KEY_READ;
319     if (access & GENERIC_WRITE)   access |= KEY_WRITE;
320     if (access & GENERIC_EXECUTE) access |= KEY_EXECUTE;
321     if (access & GENERIC_ALL)     access |= KEY_ALL_ACCESS;
322     return access & ~(GENERIC_READ | GENERIC_WRITE | GENERIC_EXECUTE | GENERIC_ALL);
323 }
324
325 /* close the notification associated with a handle */
326 static int key_close_handle( struct object *obj, struct process *process, obj_handle_t handle )
327 {
328     struct key * key = (struct key *) obj;
329     struct notify *notify = find_notify( key, process, handle );
330     if (notify) do_notification( key, notify, 1 );
331     return 1;  /* ok to close */
332 }
333
334 static void key_destroy( struct object *obj )
335 {
336     int i;
337     struct list *ptr;
338     struct key *key = (struct key *)obj;
339     assert( obj->ops == &key_ops );
340
341     free( key->name );
342     free( key->class );
343     for (i = 0; i <= key->last_value; i++)
344     {
345         free( key->values[i].name );
346         free( key->values[i].data );
347     }
348     free( key->values );
349     for (i = 0; i <= key->last_subkey; i++)
350     {
351         key->subkeys[i]->parent = NULL;
352         release_object( key->subkeys[i] );
353     }
354     free( key->subkeys );
355     /* unconditionally notify everything waiting on this key */
356     while ((ptr = list_head( &key->notify_list )))
357     {
358         struct notify *notify = LIST_ENTRY( ptr, struct notify, entry );
359         do_notification( key, notify, 1 );
360     }
361 }
362
363 /* get the request vararg as registry path */
364 static inline void get_req_path( struct unicode_str *str, int skip_root )
365 {
366     str->str = get_req_data();
367     str->len = (get_req_data_size() / sizeof(WCHAR)) * sizeof(WCHAR);
368
369     if (skip_root && str->len >= sizeof(root_name) &&
370         !memicmpW( str->str, root_name, sizeof(root_name)/sizeof(WCHAR) ))
371     {
372         str->str += sizeof(root_name)/sizeof(WCHAR);
373         str->len -= sizeof(root_name);
374     }
375 }
376
377 /* return the next token in a given path */
378 /* token->str must point inside the path, or be NULL for the first call */
379 static struct unicode_str *get_path_token( const struct unicode_str *path, struct unicode_str *token )
380 {
381     data_size_t i = 0, len = path->len / sizeof(WCHAR);
382
383     if (!token->str)  /* first time */
384     {
385         /* path cannot start with a backslash */
386         if (len && path->str[0] == '\\')
387         {
388             set_error( STATUS_OBJECT_PATH_INVALID );
389             return NULL;
390         }
391     }
392     else
393     {
394         i = token->str - path->str;
395         i += token->len / sizeof(WCHAR);
396         while (i < len && path->str[i] == '\\') i++;
397     }
398     token->str = path->str + i;
399     while (i < len && path->str[i] != '\\') i++;
400     token->len = (path->str + i - token->str) * sizeof(WCHAR);
401     return token;
402 }
403
404 /* allocate a key object */
405 static struct key *alloc_key( const struct unicode_str *name, timeout_t modif )
406 {
407     struct key *key;
408     if ((key = alloc_object( &key_ops )))
409     {
410         key->name        = NULL;
411         key->class       = NULL;
412         key->namelen     = name->len;
413         key->classlen    = 0;
414         key->flags       = 0;
415         key->last_subkey = -1;
416         key->nb_subkeys  = 0;
417         key->subkeys     = NULL;
418         key->nb_values   = 0;
419         key->last_value  = -1;
420         key->values      = NULL;
421         key->modif       = modif;
422         key->parent      = NULL;
423         list_init( &key->notify_list );
424         if (name->len && !(key->name = memdup( name->str, name->len )))
425         {
426             release_object( key );
427             key = NULL;
428         }
429     }
430     return key;
431 }
432
433 /* mark a key and all its parents as dirty (modified) */
434 static void make_dirty( struct key *key )
435 {
436     while (key)
437     {
438         if (key->flags & (KEY_DIRTY|KEY_VOLATILE)) return;  /* nothing to do */
439         key->flags |= KEY_DIRTY;
440         key = key->parent;
441     }
442 }
443
444 /* mark a key and all its subkeys as clean (not modified) */
445 static void make_clean( struct key *key )
446 {
447     int i;
448
449     if (key->flags & KEY_VOLATILE) return;
450     if (!(key->flags & KEY_DIRTY)) return;
451     key->flags &= ~KEY_DIRTY;
452     for (i = 0; i <= key->last_subkey; i++) make_clean( key->subkeys[i] );
453 }
454
455 /* go through all the notifications and send them if necessary */
456 static void check_notify( struct key *key, unsigned int change, int not_subtree )
457 {
458     struct list *ptr, *next;
459
460     LIST_FOR_EACH_SAFE( ptr, next, &key->notify_list )
461     {
462         struct notify *n = LIST_ENTRY( ptr, struct notify, entry );
463         if ( ( not_subtree || n->subtree ) && ( change & n->filter ) )
464             do_notification( key, n, 0 );
465     }
466 }
467
468 /* update key modification time */
469 static void touch_key( struct key *key, unsigned int change )
470 {
471     struct key *k;
472
473     key->modif = current_time;
474     make_dirty( key );
475
476     /* do notifications */
477     check_notify( key, change, 1 );
478     for ( k = key->parent; k; k = k->parent )
479         check_notify( k, change & ~REG_NOTIFY_CHANGE_LAST_SET, 0 );
480 }
481
482 /* try to grow the array of subkeys; return 1 if OK, 0 on error */
483 static int grow_subkeys( struct key *key )
484 {
485     struct key **new_subkeys;
486     int nb_subkeys;
487
488     if (key->nb_subkeys)
489     {
490         nb_subkeys = key->nb_subkeys + (key->nb_subkeys / 2);  /* grow by 50% */
491         if (!(new_subkeys = realloc( key->subkeys, nb_subkeys * sizeof(*new_subkeys) )))
492         {
493             set_error( STATUS_NO_MEMORY );
494             return 0;
495         }
496     }
497     else
498     {
499         nb_subkeys = MIN_VALUES;
500         if (!(new_subkeys = mem_alloc( nb_subkeys * sizeof(*new_subkeys) ))) return 0;
501     }
502     key->subkeys    = new_subkeys;
503     key->nb_subkeys = nb_subkeys;
504     return 1;
505 }
506
507 /* allocate a subkey for a given key, and return its index */
508 static struct key *alloc_subkey( struct key *parent, const struct unicode_str *name,
509                                  int index, timeout_t modif )
510 {
511     struct key *key;
512     int i;
513
514     if (name->len > MAX_NAME_LEN * sizeof(WCHAR))
515     {
516         set_error( STATUS_NAME_TOO_LONG );
517         return NULL;
518     }
519     if (parent->last_subkey + 1 == parent->nb_subkeys)
520     {
521         /* need to grow the array */
522         if (!grow_subkeys( parent )) return NULL;
523     }
524     if ((key = alloc_key( name, modif )) != NULL)
525     {
526         key->parent = parent;
527         for (i = ++parent->last_subkey; i > index; i--)
528             parent->subkeys[i] = parent->subkeys[i-1];
529         parent->subkeys[index] = key;
530     }
531     return key;
532 }
533
534 /* free a subkey of a given key */
535 static void free_subkey( struct key *parent, int index )
536 {
537     struct key *key;
538     int i, nb_subkeys;
539
540     assert( index >= 0 );
541     assert( index <= parent->last_subkey );
542
543     key = parent->subkeys[index];
544     for (i = index; i < parent->last_subkey; i++) parent->subkeys[i] = parent->subkeys[i + 1];
545     parent->last_subkey--;
546     key->flags |= KEY_DELETED;
547     key->parent = NULL;
548     release_object( key );
549
550     /* try to shrink the array */
551     nb_subkeys = parent->nb_subkeys;
552     if (nb_subkeys > MIN_SUBKEYS && parent->last_subkey < nb_subkeys / 2)
553     {
554         struct key **new_subkeys;
555         nb_subkeys -= nb_subkeys / 3;  /* shrink by 33% */
556         if (nb_subkeys < MIN_SUBKEYS) nb_subkeys = MIN_SUBKEYS;
557         if (!(new_subkeys = realloc( parent->subkeys, nb_subkeys * sizeof(*new_subkeys) ))) return;
558         parent->subkeys = new_subkeys;
559         parent->nb_subkeys = nb_subkeys;
560     }
561 }
562
563 /* find the named child of a given key and return its index */
564 static struct key *find_subkey( const struct key *key, const struct unicode_str *name, int *index )
565 {
566     int i, min, max, res;
567     data_size_t len;
568
569     min = 0;
570     max = key->last_subkey;
571     while (min <= max)
572     {
573         i = (min + max) / 2;
574         len = min( key->subkeys[i]->namelen, name->len );
575         res = memicmpW( key->subkeys[i]->name, name->str, len / sizeof(WCHAR) );
576         if (!res) res = key->subkeys[i]->namelen - name->len;
577         if (!res)
578         {
579             *index = i;
580             return key->subkeys[i];
581         }
582         if (res > 0) max = i - 1;
583         else min = i + 1;
584     }
585     *index = min;  /* this is where we should insert it */
586     return NULL;
587 }
588
589 /* follow a symlink and return the resolved key */
590 static struct key *follow_symlink( struct key *key, int iteration )
591 {
592     struct unicode_str path, token;
593     struct key_value *value;
594     int index;
595
596     if (iteration > 16) return NULL;
597     if (!(key->flags & KEY_SYMLINK)) return key;
598     if (!(value = find_value( key, &symlink_str, &index ))) return NULL;
599
600     path.str = value->data;
601     path.len = (value->len / sizeof(WCHAR)) * sizeof(WCHAR);
602     if (path.len <= sizeof(root_name)) return NULL;
603     if (memicmpW( path.str, root_name, sizeof(root_name)/sizeof(WCHAR) )) return NULL;
604     path.str += sizeof(root_name) / sizeof(WCHAR);
605     path.len -= sizeof(root_name);
606
607     key = root_key;
608     token.str = NULL;
609     if (!get_path_token( &path, &token )) return NULL;
610     while (token.len)
611     {
612         if (!(key = find_subkey( key, &token, &index ))) break;
613         if (!(key = follow_symlink( key, iteration + 1 ))) break;
614         get_path_token( &path, &token );
615     }
616     return key;
617 }
618
619 /* open a subkey */
620 static struct key *open_key( struct key *key, const struct unicode_str *name, unsigned int attributes )
621 {
622     int index;
623     struct unicode_str token;
624
625     token.str = NULL;
626     if (!get_path_token( name, &token )) return NULL;
627     while (token.len)
628     {
629         if (!(key = find_subkey( key, &token, &index )))
630         {
631             set_error( STATUS_OBJECT_NAME_NOT_FOUND );
632             return NULL;
633         }
634         get_path_token( name, &token );
635         if (!token.len) break;
636         if (!(key = follow_symlink( key, 0 )))
637         {
638             set_error( STATUS_OBJECT_NAME_NOT_FOUND );
639             return NULL;
640         }
641     }
642
643     if (!(attributes & OBJ_OPENLINK) && !(key = follow_symlink( key, 0 )))
644     {
645         set_error( STATUS_OBJECT_NAME_NOT_FOUND );
646         return NULL;
647     }
648     if (debug_level > 1) dump_operation( key, NULL, "Open" );
649     grab_object( key );
650     return key;
651 }
652
653 /* create a subkey */
654 static struct key *create_key( struct key *key, const struct unicode_str *name,
655                                const struct unicode_str *class, int flags, unsigned int options,
656                                unsigned int attributes, timeout_t modif, int *created )
657 {
658     struct key *base;
659     int index;
660     struct unicode_str token;
661
662     if (key->flags & KEY_DELETED) /* we cannot create a subkey under a deleted key */
663     {
664         set_error( STATUS_KEY_DELETED );
665         return NULL;
666     }
667
668     token.str = NULL;
669     if (!get_path_token( name, &token )) return NULL;
670     *created = 0;
671     while (token.len)
672     {
673         struct key *subkey;
674         if (!(subkey = find_subkey( key, &token, &index ))) break;
675         key = subkey;
676         get_path_token( name, &token );
677         if (!token.len) break;
678         if (!(subkey = follow_symlink( subkey, 0 )))
679         {
680             set_error( STATUS_OBJECT_NAME_NOT_FOUND );
681             return NULL;
682         }
683     }
684
685     /* create the remaining part */
686
687     if (!token.len)
688     {
689         if (options & REG_OPTION_CREATE_LINK)
690         {
691             set_error( STATUS_OBJECT_NAME_COLLISION );
692             return NULL;
693         }
694         if (!(attributes & OBJ_OPENLINK) && !(key = follow_symlink( key, 0 )))
695         {
696             set_error( STATUS_OBJECT_NAME_NOT_FOUND );
697             return NULL;
698         }
699         goto done;
700     }
701     if (options & REG_OPTION_VOLATILE)
702     {
703         flags = (flags & ~KEY_DIRTY) | KEY_VOLATILE;
704     }
705     else if (key->flags & KEY_VOLATILE)
706     {
707         set_error( STATUS_CHILD_MUST_BE_VOLATILE );
708         return NULL;
709     }
710     *created = 1;
711     if (flags & KEY_DIRTY) make_dirty( key );
712     if (!(key = alloc_subkey( key, &token, index, modif ))) return NULL;
713     base = key;
714     for (;;)
715     {
716         key->flags |= flags;
717         get_path_token( name, &token );
718         if (!token.len) break;
719         /* we know the index is always 0 in a new key */
720         if (!(key = alloc_subkey( key, &token, 0, modif )))
721         {
722             free_subkey( base, index );
723             return NULL;
724         }
725     }
726     /* FIXME: no saving of symlinks yet */
727     if (options & REG_OPTION_CREATE_LINK) key->flags |= KEY_SYMLINK | KEY_VOLATILE;
728
729  done:
730     if (debug_level > 1) dump_operation( key, NULL, "Create" );
731     if (class && class->len)
732     {
733         key->classlen = class->len;
734         free(key->class);
735         if (!(key->class = memdup( class->str, key->classlen ))) key->classlen = 0;
736     }
737     grab_object( key );
738     return key;
739 }
740
741 /* query information about a key or a subkey */
742 static void enum_key( const struct key *key, int index, int info_class,
743                       struct enum_key_reply *reply )
744 {
745     int i;
746     data_size_t len, namelen, classlen;
747     data_size_t max_subkey = 0, max_class = 0;
748     data_size_t max_value = 0, max_data = 0;
749     char *data;
750
751     if (index != -1)  /* -1 means use the specified key directly */
752     {
753         if ((index < 0) || (index > key->last_subkey))
754         {
755             set_error( STATUS_NO_MORE_ENTRIES );
756             return;
757         }
758         key = key->subkeys[index];
759     }
760
761     namelen = key->namelen;
762     classlen = key->classlen;
763
764     switch(info_class)
765     {
766     case KeyBasicInformation:
767         classlen = 0; /* only return the name */
768         /* fall through */
769     case KeyNodeInformation:
770         reply->max_subkey = 0;
771         reply->max_class  = 0;
772         reply->max_value  = 0;
773         reply->max_data   = 0;
774         break;
775     case KeyFullInformation:
776         for (i = 0; i <= key->last_subkey; i++)
777         {
778             struct key *subkey = key->subkeys[i];
779             len = subkey->namelen / sizeof(WCHAR);
780             if (len > max_subkey) max_subkey = len;
781             len = subkey->classlen / sizeof(WCHAR);
782             if (len > max_class) max_class = len;
783         }
784         for (i = 0; i <= key->last_value; i++)
785         {
786             len = key->values[i].namelen / sizeof(WCHAR);
787             if (len > max_value) max_value = len;
788             len = key->values[i].len;
789             if (len > max_data) max_data = len;
790         }
791         reply->max_subkey = max_subkey;
792         reply->max_class  = max_class;
793         reply->max_value  = max_value;
794         reply->max_data   = max_data;
795         namelen = 0;  /* only return the class */
796         break;
797     default:
798         set_error( STATUS_INVALID_PARAMETER );
799         return;
800     }
801     reply->subkeys = key->last_subkey + 1;
802     reply->values  = key->last_value + 1;
803     reply->modif   = key->modif;
804     reply->total   = namelen + classlen;
805
806     len = min( reply->total, get_reply_max_size() );
807     if (len && (data = set_reply_data_size( len )))
808     {
809         if (len > namelen)
810         {
811             reply->namelen = namelen;
812             memcpy( data, key->name, namelen );
813             memcpy( data + namelen, key->class, len - namelen );
814         }
815         else
816         {
817             reply->namelen = len;
818             memcpy( data, key->name, len );
819         }
820     }
821     if (debug_level > 1) dump_operation( key, NULL, "Enum" );
822 }
823
824 /* delete a key and its values */
825 static int delete_key( struct key *key, int recurse )
826 {
827     int index;
828     struct key *parent;
829
830     /* must find parent and index */
831     if (key == root_key)
832     {
833         set_error( STATUS_ACCESS_DENIED );
834         return -1;
835     }
836     if (!(parent = key->parent) || (key->flags & KEY_DELETED))
837     {
838         set_error( STATUS_KEY_DELETED );
839         return -1;
840     }
841
842     while (recurse && (key->last_subkey>=0))
843         if (0 > delete_key(key->subkeys[key->last_subkey], 1))
844             return -1;
845
846     for (index = 0; index <= parent->last_subkey; index++)
847         if (parent->subkeys[index] == key) break;
848     assert( index <= parent->last_subkey );
849
850     /* we can only delete a key that has no subkeys */
851     if (key->last_subkey >= 0)
852     {
853         set_error( STATUS_ACCESS_DENIED );
854         return -1;
855     }
856
857     if (debug_level > 1) dump_operation( key, NULL, "Delete" );
858     free_subkey( parent, index );
859     touch_key( parent, REG_NOTIFY_CHANGE_NAME );
860     return 0;
861 }
862
863 /* try to grow the array of values; return 1 if OK, 0 on error */
864 static int grow_values( struct key *key )
865 {
866     struct key_value *new_val;
867     int nb_values;
868
869     if (key->nb_values)
870     {
871         nb_values = key->nb_values + (key->nb_values / 2);  /* grow by 50% */
872         if (!(new_val = realloc( key->values, nb_values * sizeof(*new_val) )))
873         {
874             set_error( STATUS_NO_MEMORY );
875             return 0;
876         }
877     }
878     else
879     {
880         nb_values = MIN_VALUES;
881         if (!(new_val = mem_alloc( nb_values * sizeof(*new_val) ))) return 0;
882     }
883     key->values = new_val;
884     key->nb_values = nb_values;
885     return 1;
886 }
887
888 /* find the named value of a given key and return its index in the array */
889 static struct key_value *find_value( const struct key *key, const struct unicode_str *name, int *index )
890 {
891     int i, min, max, res;
892     data_size_t len;
893
894     min = 0;
895     max = key->last_value;
896     while (min <= max)
897     {
898         i = (min + max) / 2;
899         len = min( key->values[i].namelen, name->len );
900         res = memicmpW( key->values[i].name, name->str, len / sizeof(WCHAR) );
901         if (!res) res = key->values[i].namelen - name->len;
902         if (!res)
903         {
904             *index = i;
905             return &key->values[i];
906         }
907         if (res > 0) max = i - 1;
908         else min = i + 1;
909     }
910     *index = min;  /* this is where we should insert it */
911     return NULL;
912 }
913
914 /* insert a new value; the index must have been returned by find_value */
915 static struct key_value *insert_value( struct key *key, const struct unicode_str *name, int index )
916 {
917     struct key_value *value;
918     WCHAR *new_name = NULL;
919     int i;
920
921     if (name->len > MAX_VALUE_LEN * sizeof(WCHAR))
922     {
923         set_error( STATUS_NAME_TOO_LONG );
924         return NULL;
925     }
926     if (key->last_value + 1 == key->nb_values)
927     {
928         if (!grow_values( key )) return NULL;
929     }
930     if (name->len && !(new_name = memdup( name->str, name->len ))) return NULL;
931     for (i = ++key->last_value; i > index; i--) key->values[i] = key->values[i - 1];
932     value = &key->values[index];
933     value->name    = new_name;
934     value->namelen = name->len;
935     value->len     = 0;
936     value->data    = NULL;
937     return value;
938 }
939
940 /* set a key value */
941 static void set_value( struct key *key, const struct unicode_str *name,
942                        int type, const void *data, data_size_t len )
943 {
944     struct key_value *value;
945     void *ptr = NULL;
946     int index;
947
948     if ((value = find_value( key, name, &index )))
949     {
950         /* check if the new value is identical to the existing one */
951         if (value->type == type && value->len == len &&
952             value->data && !memcmp( value->data, data, len ))
953         {
954             if (debug_level > 1) dump_operation( key, value, "Skip setting" );
955             return;
956         }
957     }
958
959     if (key->flags & KEY_SYMLINK)
960     {
961         if (type != REG_LINK || name->len != symlink_str.len ||
962             memicmpW( name->str, symlink_str.str, name->len / sizeof(WCHAR) ))
963         {
964             set_error( STATUS_ACCESS_DENIED );
965             return;
966         }
967     }
968
969     if (len && !(ptr = memdup( data, len ))) return;
970
971     if (!value)
972     {
973         if (!(value = insert_value( key, name, index )))
974         {
975             free( ptr );
976             return;
977         }
978     }
979     else free( value->data ); /* already existing, free previous data */
980
981     value->type  = type;
982     value->len   = len;
983     value->data  = ptr;
984     touch_key( key, REG_NOTIFY_CHANGE_LAST_SET );
985     if (debug_level > 1) dump_operation( key, value, "Set" );
986 }
987
988 /* get a key value */
989 static void get_value( struct key *key, const struct unicode_str *name, int *type, data_size_t *len )
990 {
991     struct key_value *value;
992     int index;
993
994     if ((value = find_value( key, name, &index )))
995     {
996         *type = value->type;
997         *len  = value->len;
998         if (value->data) set_reply_data( value->data, min( value->len, get_reply_max_size() ));
999         if (debug_level > 1) dump_operation( key, value, "Get" );
1000     }
1001     else
1002     {
1003         *type = -1;
1004         set_error( STATUS_OBJECT_NAME_NOT_FOUND );
1005     }
1006 }
1007
1008 /* enumerate a key value */
1009 static void enum_value( struct key *key, int i, int info_class, struct enum_key_value_reply *reply )
1010 {
1011     struct key_value *value;
1012
1013     if (i < 0 || i > key->last_value) set_error( STATUS_NO_MORE_ENTRIES );
1014     else
1015     {
1016         void *data;
1017         data_size_t namelen, maxlen;
1018
1019         value = &key->values[i];
1020         reply->type = value->type;
1021         namelen = value->namelen;
1022
1023         switch(info_class)
1024         {
1025         case KeyValueBasicInformation:
1026             reply->total = namelen;
1027             break;
1028         case KeyValueFullInformation:
1029             reply->total = namelen + value->len;
1030             break;
1031         case KeyValuePartialInformation:
1032             reply->total = value->len;
1033             namelen = 0;
1034             break;
1035         default:
1036             set_error( STATUS_INVALID_PARAMETER );
1037             return;
1038         }
1039
1040         maxlen = min( reply->total, get_reply_max_size() );
1041         if (maxlen && ((data = set_reply_data_size( maxlen ))))
1042         {
1043             if (maxlen > namelen)
1044             {
1045                 reply->namelen = namelen;
1046                 memcpy( data, value->name, namelen );
1047                 memcpy( (char *)data + namelen, value->data, maxlen - namelen );
1048             }
1049             else
1050             {
1051                 reply->namelen = maxlen;
1052                 memcpy( data, value->name, maxlen );
1053             }
1054         }
1055         if (debug_level > 1) dump_operation( key, value, "Enum" );
1056     }
1057 }
1058
1059 /* delete a value */
1060 static void delete_value( struct key *key, const struct unicode_str *name )
1061 {
1062     struct key_value *value;
1063     int i, index, nb_values;
1064
1065     if (!(value = find_value( key, name, &index )))
1066     {
1067         set_error( STATUS_OBJECT_NAME_NOT_FOUND );
1068         return;
1069     }
1070     if (debug_level > 1) dump_operation( key, value, "Delete" );
1071     free( value->name );
1072     free( value->data );
1073     for (i = index; i < key->last_value; i++) key->values[i] = key->values[i + 1];
1074     key->last_value--;
1075     touch_key( key, REG_NOTIFY_CHANGE_LAST_SET );
1076
1077     /* try to shrink the array */
1078     nb_values = key->nb_values;
1079     if (nb_values > MIN_VALUES && key->last_value < nb_values / 2)
1080     {
1081         struct key_value *new_val;
1082         nb_values -= nb_values / 3;  /* shrink by 33% */
1083         if (nb_values < MIN_VALUES) nb_values = MIN_VALUES;
1084         if (!(new_val = realloc( key->values, nb_values * sizeof(*new_val) ))) return;
1085         key->values = new_val;
1086         key->nb_values = nb_values;
1087     }
1088 }
1089
1090 /* get the registry key corresponding to an hkey handle */
1091 static inline struct key *get_hkey_obj( obj_handle_t hkey, unsigned int access )
1092 {
1093     return (struct key *)get_handle_obj( current->process, hkey, access, &key_ops );
1094 }
1095
1096 /* get the registry key corresponding to a parent key handle */
1097 static inline struct key *get_parent_hkey_obj( obj_handle_t hkey )
1098 {
1099     if (!hkey) return (struct key *)grab_object( root_key );
1100     return (struct key *)get_handle_obj( current->process, hkey, 0, &key_ops );
1101 }
1102
1103 /* read a line from the input file */
1104 static int read_next_line( struct file_load_info *info )
1105 {
1106     char *newbuf;
1107     int newlen, pos = 0;
1108
1109     info->line++;
1110     for (;;)
1111     {
1112         if (!fgets( info->buffer + pos, info->len - pos, info->file ))
1113             return (pos != 0);  /* EOF */
1114         pos = strlen(info->buffer);
1115         if (info->buffer[pos-1] == '\n')
1116         {
1117             /* got a full line */
1118             info->buffer[--pos] = 0;
1119             if (pos > 0 && info->buffer[pos-1] == '\r') info->buffer[pos-1] = 0;
1120             return 1;
1121         }
1122         if (pos < info->len - 1) return 1;  /* EOF but something was read */
1123
1124         /* need to enlarge the buffer */
1125         newlen = info->len + info->len / 2;
1126         if (!(newbuf = realloc( info->buffer, newlen )))
1127         {
1128             set_error( STATUS_NO_MEMORY );
1129             return -1;
1130         }
1131         info->buffer = newbuf;
1132         info->len = newlen;
1133     }
1134 }
1135
1136 /* make sure the temp buffer holds enough space */
1137 static int get_file_tmp_space( struct file_load_info *info, size_t size )
1138 {
1139     WCHAR *tmp;
1140     if (info->tmplen >= size) return 1;
1141     if (!(tmp = realloc( info->tmp, size )))
1142     {
1143         set_error( STATUS_NO_MEMORY );
1144         return 0;
1145     }
1146     info->tmp = tmp;
1147     info->tmplen = size;
1148     return 1;
1149 }
1150
1151 /* report an error while loading an input file */
1152 static void file_read_error( const char *err, struct file_load_info *info )
1153 {
1154     if (info->filename)
1155         fprintf( stderr, "%s:%d: %s '%s'\n", info->filename, info->line, err, info->buffer );
1156     else
1157         fprintf( stderr, "<fd>:%d: %s '%s'\n", info->line, err, info->buffer );
1158 }
1159
1160 /* convert a data type tag to a value type */
1161 static int get_data_type( const char *buffer, int *type, int *parse_type )
1162 {
1163     struct data_type { const char *tag; int len; int type; int parse_type; };
1164
1165     static const struct data_type data_types[] =
1166     {                   /* actual type */  /* type to assume for parsing */
1167         { "\"",        1,   REG_SZ,              REG_SZ },
1168         { "str:\"",    5,   REG_SZ,              REG_SZ },
1169         { "str(2):\"", 8,   REG_EXPAND_SZ,       REG_SZ },
1170         { "str(7):\"", 8,   REG_MULTI_SZ,        REG_SZ },
1171         { "hex:",      4,   REG_BINARY,          REG_BINARY },
1172         { "dword:",    6,   REG_DWORD,           REG_DWORD },
1173         { "hex(",      4,   -1,                  REG_BINARY },
1174         { NULL,        0,    0,                  0 }
1175     };
1176
1177     const struct data_type *ptr;
1178     char *end;
1179
1180     for (ptr = data_types; ptr->tag; ptr++)
1181     {
1182         if (strncmp( ptr->tag, buffer, ptr->len )) continue;
1183         *parse_type = ptr->parse_type;
1184         if ((*type = ptr->type) != -1) return ptr->len;
1185         /* "hex(xx):" is special */
1186         *type = (int)strtoul( buffer + 4, &end, 16 );
1187         if ((end <= buffer) || strncmp( end, "):", 2 )) return 0;
1188         return end + 2 - buffer;
1189     }
1190     return 0;
1191 }
1192
1193 /* load and create a key from the input file */
1194 static struct key *load_key( struct key *base, const char *buffer, int flags,
1195                              int prefix_len, struct file_load_info *info )
1196 {
1197     WCHAR *p;
1198     struct unicode_str name;
1199     int res;
1200     unsigned int mod;
1201     timeout_t modif = current_time;
1202     data_size_t len;
1203
1204     if (!get_file_tmp_space( info, strlen(buffer) * sizeof(WCHAR) )) return NULL;
1205
1206     len = info->tmplen;
1207     if ((res = parse_strW( info->tmp, &len, buffer, ']' )) == -1)
1208     {
1209         file_read_error( "Malformed key", info );
1210         return NULL;
1211     }
1212     if (sscanf( buffer + res, " %u", &mod ) == 1)
1213         modif = (timeout_t)mod * TICKS_PER_SEC + ticks_1601_to_1970;
1214
1215     p = info->tmp;
1216     while (prefix_len && *p) { if (*p++ == '\\') prefix_len--; }
1217
1218     if (!*p)
1219     {
1220         if (prefix_len > 1)
1221         {
1222             file_read_error( "Malformed key", info );
1223             return NULL;
1224         }
1225         /* empty key name, return base key */
1226         return (struct key *)grab_object( base );
1227     }
1228     name.str = p;
1229     name.len = len - (p - info->tmp + 1) * sizeof(WCHAR);
1230     return create_key( base, &name, NULL, flags, 0, 0, modif, &res );
1231 }
1232
1233 /* load a key option from the input file */
1234 static int load_key_option( struct key *key, const char *buffer, struct file_load_info *info )
1235 {
1236     const char *p;
1237     data_size_t len;
1238
1239     if (!strncmp( buffer, "#class=", 7 ))
1240     {
1241         p = buffer + 7;
1242         if (*p++ != '"') return 0;
1243         if (!get_file_tmp_space( info, strlen(p) * sizeof(WCHAR) )) return 0;
1244         len = info->tmplen;
1245         if (parse_strW( info->tmp, &len, p, '\"' ) == -1) return 0;
1246         free( key->class );
1247         if (!(key->class = memdup( info->tmp, len ))) len = 0;
1248         key->classlen = len;
1249     }
1250     /* ignore unknown options */
1251     return 1;
1252 }
1253
1254 /* parse a comma-separated list of hex digits */
1255 static int parse_hex( unsigned char *dest, data_size_t *len, const char *buffer )
1256 {
1257     const char *p = buffer;
1258     data_size_t count = 0;
1259     char *end;
1260
1261     while (isxdigit(*p))
1262     {
1263         unsigned int val = strtoul( p, &end, 16 );
1264         if (end == p || val > 0xff) return -1;
1265         if (count++ >= *len) return -1;  /* dest buffer overflow */
1266         *dest++ = val;
1267         p = end;
1268         while (isspace(*p)) p++;
1269         if (*p == ',') p++;
1270         while (isspace(*p)) p++;
1271     }
1272     *len = count;
1273     return p - buffer;
1274 }
1275
1276 /* parse a value name and create the corresponding value */
1277 static struct key_value *parse_value_name( struct key *key, const char *buffer, data_size_t *len,
1278                                            struct file_load_info *info )
1279 {
1280     struct key_value *value;
1281     struct unicode_str name;
1282     int index;
1283
1284     if (!get_file_tmp_space( info, strlen(buffer) * sizeof(WCHAR) )) return NULL;
1285     name.str = info->tmp;
1286     name.len = info->tmplen;
1287     if (buffer[0] == '@')
1288     {
1289         name.len = 0;
1290         *len = 1;
1291     }
1292     else
1293     {
1294         int r = parse_strW( info->tmp, &name.len, buffer + 1, '\"' );
1295         if (r == -1) goto error;
1296         *len = r + 1; /* for initial quote */
1297         name.len -= sizeof(WCHAR);  /* terminating null */
1298     }
1299     while (isspace(buffer[*len])) (*len)++;
1300     if (buffer[*len] != '=') goto error;
1301     (*len)++;
1302     while (isspace(buffer[*len])) (*len)++;
1303     if (!(value = find_value( key, &name, &index ))) value = insert_value( key, &name, index );
1304     return value;
1305
1306  error:
1307     file_read_error( "Malformed value name", info );
1308     return NULL;
1309 }
1310
1311 /* load a value from the input file */
1312 static int load_value( struct key *key, const char *buffer, struct file_load_info *info )
1313 {
1314     DWORD dw;
1315     void *ptr, *newptr;
1316     int res, type, parse_type;
1317     data_size_t maxlen, len;
1318     struct key_value *value;
1319
1320     if (!(value = parse_value_name( key, buffer, &len, info ))) return 0;
1321     if (!(res = get_data_type( buffer + len, &type, &parse_type ))) goto error;
1322     buffer += len + res;
1323
1324     switch(parse_type)
1325     {
1326     case REG_SZ:
1327         if (!get_file_tmp_space( info, strlen(buffer) * sizeof(WCHAR) )) return 0;
1328         len = info->tmplen;
1329         if ((res = parse_strW( info->tmp, &len, buffer, '\"' )) == -1) goto error;
1330         ptr = info->tmp;
1331         break;
1332     case REG_DWORD:
1333         dw = strtoul( buffer, NULL, 16 );
1334         ptr = &dw;
1335         len = sizeof(dw);
1336         break;
1337     case REG_BINARY:  /* hex digits */
1338         len = 0;
1339         for (;;)
1340         {
1341             maxlen = 1 + strlen(buffer) / 2;  /* at least 2 chars for one hex byte */
1342             if (!get_file_tmp_space( info, len + maxlen )) return 0;
1343             if ((res = parse_hex( (unsigned char *)info->tmp + len, &maxlen, buffer )) == -1) goto error;
1344             len += maxlen;
1345             buffer += res;
1346             while (isspace(*buffer)) buffer++;
1347             if (!*buffer) break;
1348             if (*buffer != '\\') goto error;
1349             if (read_next_line( info) != 1) goto error;
1350             buffer = info->buffer;
1351             while (isspace(*buffer)) buffer++;
1352         }
1353         ptr = info->tmp;
1354         break;
1355     default:
1356         assert(0);
1357         ptr = NULL;  /* keep compiler quiet */
1358         break;
1359     }
1360
1361     if (!len) newptr = NULL;
1362     else if (!(newptr = memdup( ptr, len ))) return 0;
1363
1364     free( value->data );
1365     value->data = newptr;
1366     value->len  = len;
1367     value->type = type;
1368     return 1;
1369
1370  error:
1371     file_read_error( "Malformed value", info );
1372     free( value->data );
1373     value->data = NULL;
1374     value->len  = 0;
1375     value->type = REG_NONE;
1376     return 0;
1377 }
1378
1379 /* return the length (in path elements) of name that is part of the key name */
1380 /* for instance if key is USER\foo\bar and name is foo\bar\baz, return 2 */
1381 static int get_prefix_len( struct key *key, const char *name, struct file_load_info *info )
1382 {
1383     WCHAR *p;
1384     int res;
1385     data_size_t len;
1386
1387     if (!get_file_tmp_space( info, strlen(name) * sizeof(WCHAR) )) return 0;
1388
1389     len = info->tmplen;
1390     if ((res = parse_strW( info->tmp, &len, name, ']' )) == -1)
1391     {
1392         file_read_error( "Malformed key", info );
1393         return 0;
1394     }
1395     for (p = info->tmp; *p; p++) if (*p == '\\') break;
1396     len = (p - info->tmp) * sizeof(WCHAR);
1397     for (res = 1; key != root_key; res++)
1398     {
1399         if (len == key->namelen && !memicmpW( info->tmp, key->name, len / sizeof(WCHAR) )) break;
1400         key = key->parent;
1401     }
1402     if (key == root_key) res = 0;  /* no matching name */
1403     return res;
1404 }
1405
1406 /* load all the keys from the input file */
1407 /* prefix_len is the number of key name prefixes to skip, or -1 for autodetection */
1408 static void load_keys( struct key *key, const char *filename, FILE *f, int prefix_len )
1409 {
1410     struct key *subkey = NULL;
1411     struct file_load_info info;
1412     char *p;
1413
1414     info.filename = filename;
1415     info.file   = f;
1416     info.len    = 4;
1417     info.tmplen = 4;
1418     info.line   = 0;
1419     if (!(info.buffer = mem_alloc( info.len ))) return;
1420     if (!(info.tmp = mem_alloc( info.tmplen )))
1421     {
1422         free( info.buffer );
1423         return;
1424     }
1425
1426     if ((read_next_line( &info ) != 1) ||
1427         strcmp( info.buffer, "WINE REGISTRY Version 2" ))
1428     {
1429         set_error( STATUS_NOT_REGISTRY_FILE );
1430         goto done;
1431     }
1432
1433     while (read_next_line( &info ) == 1)
1434     {
1435         p = info.buffer;
1436         while (*p && isspace(*p)) p++;
1437         switch(*p)
1438         {
1439         case '[':   /* new key */
1440             if (subkey) release_object( subkey );
1441             if (prefix_len == -1) prefix_len = get_prefix_len( key, p + 1, &info );
1442             if (!(subkey = load_key( key, p + 1, key->flags, prefix_len, &info )))
1443                 file_read_error( "Error creating key", &info );
1444             break;
1445         case '@':   /* default value */
1446         case '\"':  /* value */
1447             if (subkey) load_value( subkey, p, &info );
1448             else file_read_error( "Value without key", &info );
1449             break;
1450         case '#':   /* option */
1451             if (subkey) load_key_option( subkey, p, &info );
1452             break;
1453         case ';':   /* comment */
1454         case 0:     /* empty line */
1455             break;
1456         default:
1457             file_read_error( "Unrecognized input", &info );
1458             break;
1459         }
1460     }
1461
1462  done:
1463     if (subkey) release_object( subkey );
1464     free( info.buffer );
1465     free( info.tmp );
1466 }
1467
1468 /* load a part of the registry from a file */
1469 static void load_registry( struct key *key, obj_handle_t handle )
1470 {
1471     struct file *file;
1472     int fd;
1473
1474     if (!(file = get_file_obj( current->process, handle, FILE_READ_DATA ))) return;
1475     fd = dup( get_file_unix_fd( file ) );
1476     release_object( file );
1477     if (fd != -1)
1478     {
1479         FILE *f = fdopen( fd, "r" );
1480         if (f)
1481         {
1482             load_keys( key, NULL, f, -1 );
1483             fclose( f );
1484         }
1485         else file_set_error();
1486     }
1487 }
1488
1489 /* load one of the initial registry files */
1490 static void load_init_registry_from_file( const char *filename, struct key *key )
1491 {
1492     FILE *f;
1493
1494     if ((f = fopen( filename, "r" )))
1495     {
1496         load_keys( key, filename, f, 0 );
1497         fclose( f );
1498         if (get_error() == STATUS_NOT_REGISTRY_FILE)
1499         {
1500             fprintf( stderr, "%s is not a valid registry file\n", filename );
1501             return;
1502         }
1503     }
1504
1505     assert( save_branch_count < MAX_SAVE_BRANCH_INFO );
1506
1507     save_branch_info[save_branch_count].path = filename;
1508     save_branch_info[save_branch_count++].key = (struct key *)grab_object( key );
1509     make_object_static( &key->obj );
1510 }
1511
1512 static WCHAR *format_user_registry_path( const SID *sid, struct unicode_str *path )
1513 {
1514     static const WCHAR prefixW[] = {'U','s','e','r','\\','S',0};
1515     static const WCHAR formatW[] = {'-','%','u',0};
1516     WCHAR buffer[7 + 10 + 10 + 10 * SID_MAX_SUB_AUTHORITIES];
1517     WCHAR *p = buffer;
1518     unsigned int i;
1519
1520     strcpyW( p, prefixW );
1521     p += strlenW( prefixW );
1522     p += sprintfW( p, formatW, sid->Revision );
1523     p += sprintfW( p, formatW, MAKELONG( MAKEWORD( sid->IdentifierAuthority.Value[5],
1524                                                    sid->IdentifierAuthority.Value[4] ),
1525                                          MAKEWORD( sid->IdentifierAuthority.Value[3],
1526                                                    sid->IdentifierAuthority.Value[2] )));
1527     for (i = 0; i < sid->SubAuthorityCount; i++)
1528         p += sprintfW( p, formatW, sid->SubAuthority[i] );
1529
1530     path->len = (p - buffer) * sizeof(WCHAR);
1531     path->str = p = memdup( buffer, path->len );
1532     return p;
1533 }
1534
1535 /* registry initialisation */
1536 void init_registry(void)
1537 {
1538     static const WCHAR HKLM[] = { 'M','a','c','h','i','n','e' };
1539     static const WCHAR HKU_default[] = { 'U','s','e','r','\\','.','D','e','f','a','u','l','t' };
1540     static const struct unicode_str root_name = { NULL, 0 };
1541     static const struct unicode_str HKLM_name = { HKLM, sizeof(HKLM) };
1542     static const struct unicode_str HKU_name = { HKU_default, sizeof(HKU_default) };
1543
1544     WCHAR *current_user_path;
1545     struct unicode_str current_user_str;
1546
1547     struct key *key;
1548     int dummy;
1549
1550     /* switch to the config dir */
1551
1552     if (fchdir( config_dir_fd ) == -1) fatal_perror( "chdir to config dir" );
1553
1554     /* create the root key */
1555     root_key = alloc_key( &root_name, current_time );
1556     assert( root_key );
1557     make_object_static( &root_key->obj );
1558
1559     /* load system.reg into Registry\Machine */
1560
1561     if (!(key = create_key( root_key, &HKLM_name, NULL, 0, 0, 0, current_time, &dummy )))
1562         fatal_error( "could not create Machine registry key\n" );
1563
1564     load_init_registry_from_file( "system.reg", key );
1565     release_object( key );
1566
1567     /* load userdef.reg into Registry\User\.Default */
1568
1569     if (!(key = create_key( root_key, &HKU_name, NULL, 0, 0, 0, current_time, &dummy )))
1570         fatal_error( "could not create User\\.Default registry key\n" );
1571
1572     load_init_registry_from_file( "userdef.reg", key );
1573     release_object( key );
1574
1575     /* load user.reg into HKEY_CURRENT_USER */
1576
1577     /* FIXME: match default user in token.c. should get from process token instead */
1578     current_user_path = format_user_registry_path( security_interactive_sid, &current_user_str );
1579     if (!current_user_path ||
1580         !(key = create_key( root_key, &current_user_str, NULL, 0, 0, 0, current_time, &dummy )))
1581         fatal_error( "could not create HKEY_CURRENT_USER registry key\n" );
1582     free( current_user_path );
1583     load_init_registry_from_file( "user.reg", key );
1584     release_object( key );
1585
1586     /* start the periodic save timer */
1587     set_periodic_save_timer();
1588
1589     /* go back to the server dir */
1590     if (fchdir( server_dir_fd ) == -1) fatal_perror( "chdir to server dir" );
1591 }
1592
1593 /* save a registry branch to a file */
1594 static void save_all_subkeys( struct key *key, FILE *f )
1595 {
1596     fprintf( f, "WINE REGISTRY Version 2\n" );
1597     fprintf( f, ";; All keys relative to " );
1598     dump_path( key, NULL, f );
1599     fprintf( f, "\n" );
1600     save_subkeys( key, key, f );
1601 }
1602
1603 /* save a registry branch to a file handle */
1604 static void save_registry( struct key *key, obj_handle_t handle )
1605 {
1606     struct file *file;
1607     int fd;
1608
1609     if (key->flags & KEY_DELETED)
1610     {
1611         set_error( STATUS_KEY_DELETED );
1612         return;
1613     }
1614     if (!(file = get_file_obj( current->process, handle, FILE_WRITE_DATA ))) return;
1615     fd = dup( get_file_unix_fd( file ) );
1616     release_object( file );
1617     if (fd != -1)
1618     {
1619         FILE *f = fdopen( fd, "w" );
1620         if (f)
1621         {
1622             save_all_subkeys( key, f );
1623             if (fclose( f )) file_set_error();
1624         }
1625         else
1626         {
1627             file_set_error();
1628             close( fd );
1629         }
1630     }
1631 }
1632
1633 /* save a registry branch to a file */
1634 static int save_branch( struct key *key, const char *path )
1635 {
1636     struct stat st;
1637     char *p, *tmp = NULL;
1638     int fd, count = 0, ret = 0;
1639     FILE *f;
1640
1641     if (!(key->flags & KEY_DIRTY))
1642     {
1643         if (debug_level > 1) dump_operation( key, NULL, "Not saving clean" );
1644         return 1;
1645     }
1646
1647     /* test the file type */
1648
1649     if ((fd = open( path, O_WRONLY )) != -1)
1650     {
1651         /* if file is not a regular file or has multiple links or is accessed
1652          * via symbolic links, write directly into it; otherwise use a temp file */
1653         if (!lstat( path, &st ) && (!S_ISREG(st.st_mode) || st.st_nlink > 1))
1654         {
1655             ftruncate( fd, 0 );
1656             goto save;
1657         }
1658         close( fd );
1659     }
1660
1661     /* create a temp file in the same directory */
1662
1663     if (!(tmp = malloc( strlen(path) + 20 ))) goto done;
1664     strcpy( tmp, path );
1665     if ((p = strrchr( tmp, '/' ))) p++;
1666     else p = tmp;
1667     for (;;)
1668     {
1669         sprintf( p, "reg%lx%04x.tmp", (long) getpid(), count++ );
1670         if ((fd = open( tmp, O_CREAT | O_EXCL | O_WRONLY, 0666 )) != -1) break;
1671         if (errno != EEXIST) goto done;
1672         close( fd );
1673     }
1674
1675     /* now save to it */
1676
1677  save:
1678     if (!(f = fdopen( fd, "w" )))
1679     {
1680         if (tmp) unlink( tmp );
1681         close( fd );
1682         goto done;
1683     }
1684
1685     if (debug_level > 1)
1686     {
1687         fprintf( stderr, "%s: ", path );
1688         dump_operation( key, NULL, "saving" );
1689     }
1690
1691     save_all_subkeys( key, f );
1692     ret = !fclose(f);
1693
1694     if (tmp)
1695     {
1696         /* if successfully written, rename to final name */
1697         if (ret) ret = !rename( tmp, path );
1698         if (!ret) unlink( tmp );
1699     }
1700
1701 done:
1702     free( tmp );
1703     if (ret) make_clean( key );
1704     return ret;
1705 }
1706
1707 /* periodic saving of the registry */
1708 static void periodic_save( void *arg )
1709 {
1710     int i;
1711
1712     if (fchdir( config_dir_fd ) == -1) return;
1713     save_timeout_user = NULL;
1714     for (i = 0; i < save_branch_count; i++)
1715         save_branch( save_branch_info[i].key, save_branch_info[i].path );
1716     if (fchdir( server_dir_fd ) == -1) fatal_perror( "chdir to server dir" );
1717     set_periodic_save_timer();
1718 }
1719
1720 /* start the periodic save timer */
1721 static void set_periodic_save_timer(void)
1722 {
1723     if (save_timeout_user) remove_timeout_user( save_timeout_user );
1724     save_timeout_user = add_timeout_user( save_period, periodic_save, NULL );
1725 }
1726
1727 /* save the modified registry branches to disk */
1728 void flush_registry(void)
1729 {
1730     int i;
1731
1732     if (fchdir( config_dir_fd ) == -1) return;
1733     for (i = 0; i < save_branch_count; i++)
1734     {
1735         if (!save_branch( save_branch_info[i].key, save_branch_info[i].path ))
1736         {
1737             fprintf( stderr, "wineserver: could not save registry branch to %s",
1738                      save_branch_info[i].path );
1739             perror( " " );
1740         }
1741     }
1742     if (fchdir( server_dir_fd ) == -1) fatal_perror( "chdir to server dir" );
1743 }
1744
1745
1746 /* create a registry key */
1747 DECL_HANDLER(create_key)
1748 {
1749     struct key *key = NULL, *parent;
1750     struct unicode_str name, class;
1751     unsigned int access = req->access;
1752
1753     reply->hkey = 0;
1754
1755     if (req->namelen > get_req_data_size())
1756     {
1757         set_error( STATUS_INVALID_PARAMETER );
1758         return;
1759     }
1760     class.str = (const WCHAR *)get_req_data() + req->namelen / sizeof(WCHAR);
1761     class.len = ((get_req_data_size() - req->namelen) / sizeof(WCHAR)) * sizeof(WCHAR);
1762     get_req_path( &name, !req->parent );
1763     if (name.str > class.str)
1764     {
1765         set_error( STATUS_INVALID_PARAMETER );
1766         return;
1767     }
1768     name.len = (class.str - name.str) * sizeof(WCHAR);
1769
1770     /* NOTE: no access rights are required from the parent handle to create a key */
1771     if ((parent = get_parent_hkey_obj( req->parent )))
1772     {
1773         if ((key = create_key( parent, &name, &class, KEY_DIRTY, req->options,
1774                                req->attributes, current_time, &reply->created )))
1775         {
1776             reply->hkey = alloc_handle( current->process, key, access, req->attributes );
1777             release_object( key );
1778         }
1779         release_object( parent );
1780     }
1781 }
1782
1783 /* open a registry key */
1784 DECL_HANDLER(open_key)
1785 {
1786     struct key *key, *parent;
1787     struct unicode_str name;
1788     unsigned int access = req->access;
1789
1790     reply->hkey = 0;
1791     /* NOTE: no access rights are required to open the parent key, only the child key */
1792     if ((parent = get_parent_hkey_obj( req->parent )))
1793     {
1794         get_req_path( &name, !req->parent );
1795         if ((key = open_key( parent, &name, req->attributes )))
1796         {
1797             reply->hkey = alloc_handle( current->process, key, access, req->attributes );
1798             release_object( key );
1799         }
1800         release_object( parent );
1801     }
1802 }
1803
1804 /* delete a registry key */
1805 DECL_HANDLER(delete_key)
1806 {
1807     struct key *key;
1808
1809     if ((key = get_hkey_obj( req->hkey, DELETE )))
1810     {
1811         delete_key( key, 0);
1812         release_object( key );
1813     }
1814 }
1815
1816 /* flush a registry key */
1817 DECL_HANDLER(flush_key)
1818 {
1819     struct key *key = get_hkey_obj( req->hkey, 0 );
1820     if (key)
1821     {
1822         /* we don't need to do anything here with the current implementation */
1823         release_object( key );
1824     }
1825 }
1826
1827 /* enumerate registry subkeys */
1828 DECL_HANDLER(enum_key)
1829 {
1830     struct key *key;
1831
1832     if ((key = get_hkey_obj( req->hkey,
1833                              req->index == -1 ? KEY_QUERY_VALUE : KEY_ENUMERATE_SUB_KEYS )))
1834     {
1835         enum_key( key, req->index, req->info_class, reply );
1836         release_object( key );
1837     }
1838 }
1839
1840 /* set a value of a registry key */
1841 DECL_HANDLER(set_key_value)
1842 {
1843     struct key *key;
1844     struct unicode_str name;
1845
1846     if (req->namelen > get_req_data_size())
1847     {
1848         set_error( STATUS_INVALID_PARAMETER );
1849         return;
1850     }
1851     name.str = get_req_data();
1852     name.len = (req->namelen / sizeof(WCHAR)) * sizeof(WCHAR);
1853
1854     if ((key = get_hkey_obj( req->hkey, KEY_SET_VALUE )))
1855     {
1856         data_size_t datalen = get_req_data_size() - req->namelen;
1857         const char *data = (const char *)get_req_data() + req->namelen;
1858
1859         set_value( key, &name, req->type, data, datalen );
1860         release_object( key );
1861     }
1862 }
1863
1864 /* retrieve the value of a registry key */
1865 DECL_HANDLER(get_key_value)
1866 {
1867     struct key *key;
1868     struct unicode_str name;
1869
1870     reply->total = 0;
1871     if ((key = get_hkey_obj( req->hkey, KEY_QUERY_VALUE )))
1872     {
1873         get_req_unicode_str( &name );
1874         get_value( key, &name, &reply->type, &reply->total );
1875         release_object( key );
1876     }
1877 }
1878
1879 /* enumerate the value of a registry key */
1880 DECL_HANDLER(enum_key_value)
1881 {
1882     struct key *key;
1883
1884     if ((key = get_hkey_obj( req->hkey, KEY_QUERY_VALUE )))
1885     {
1886         enum_value( key, req->index, req->info_class, reply );
1887         release_object( key );
1888     }
1889 }
1890
1891 /* delete a value of a registry key */
1892 DECL_HANDLER(delete_key_value)
1893 {
1894     struct key *key;
1895     struct unicode_str name;
1896
1897     if ((key = get_hkey_obj( req->hkey, KEY_SET_VALUE )))
1898     {
1899         get_req_unicode_str( &name );
1900         delete_value( key, &name );
1901         release_object( key );
1902     }
1903 }
1904
1905 /* load a registry branch from a file */
1906 DECL_HANDLER(load_registry)
1907 {
1908     struct key *key, *parent;
1909     struct token *token = thread_get_impersonation_token( current );
1910     struct unicode_str name;
1911
1912     const LUID_AND_ATTRIBUTES privs[] =
1913     {
1914         { SeBackupPrivilege,  0 },
1915         { SeRestorePrivilege, 0 },
1916     };
1917
1918     if (!token || !token_check_privileges( token, TRUE, privs,
1919                                            sizeof(privs)/sizeof(privs[0]), NULL ))
1920     {
1921         set_error( STATUS_PRIVILEGE_NOT_HELD );
1922         return;
1923     }
1924
1925     if ((parent = get_parent_hkey_obj( req->hkey )))
1926     {
1927         int dummy;
1928         get_req_path( &name, !req->hkey );
1929         if ((key = create_key( parent, &name, NULL, KEY_DIRTY, 0, 0, current_time, &dummy )))
1930         {
1931             load_registry( key, req->file );
1932             release_object( key );
1933         }
1934         release_object( parent );
1935     }
1936 }
1937
1938 DECL_HANDLER(unload_registry)
1939 {
1940     struct key *key;
1941     struct token *token = thread_get_impersonation_token( current );
1942
1943     const LUID_AND_ATTRIBUTES privs[] =
1944     {
1945         { SeBackupPrivilege,  0 },
1946         { SeRestorePrivilege, 0 },
1947     };
1948
1949     if (!token || !token_check_privileges( token, TRUE, privs,
1950                                            sizeof(privs)/sizeof(privs[0]), NULL ))
1951     {
1952         set_error( STATUS_PRIVILEGE_NOT_HELD );
1953         return;
1954     }
1955
1956     if ((key = get_hkey_obj( req->hkey, 0 )))
1957     {
1958         delete_key( key, 1 );     /* FIXME */
1959         release_object( key );
1960     }
1961 }
1962
1963 /* save a registry branch to a file */
1964 DECL_HANDLER(save_registry)
1965 {
1966     struct key *key;
1967
1968     if (!thread_single_check_privilege( current, &SeBackupPrivilege ))
1969     {
1970         set_error( STATUS_PRIVILEGE_NOT_HELD );
1971         return;
1972     }
1973
1974     if ((key = get_hkey_obj( req->hkey, 0 )))
1975     {
1976         save_registry( key, req->file );
1977         release_object( key );
1978     }
1979 }
1980
1981 /* add a registry key change notification */
1982 DECL_HANDLER(set_registry_notification)
1983 {
1984     struct key *key;
1985     struct event *event;
1986     struct notify *notify;
1987
1988     key = get_hkey_obj( req->hkey, KEY_NOTIFY );
1989     if (key)
1990     {
1991         event = get_event_obj( current->process, req->event, SYNCHRONIZE );
1992         if (event)
1993         {
1994             notify = find_notify( key, current->process, req->hkey );
1995             if (notify)
1996             {
1997                 if (notify->event)
1998                     release_object( notify->event );
1999                 grab_object( event );
2000                 notify->event = event;
2001             }
2002             else
2003             {
2004                 notify = mem_alloc( sizeof(*notify) );
2005                 if (notify)
2006                 {
2007                     grab_object( event );
2008                     notify->event   = event;
2009                     notify->subtree = req->subtree;
2010                     notify->filter  = req->filter;
2011                     notify->hkey    = req->hkey;
2012                     notify->process = current->process;
2013                     list_add_head( &key->notify_list, &notify->entry );
2014                 }
2015             }
2016             release_object( event );
2017         }
2018         release_object( key );
2019     }
2020 }