2 * Server-side registry management
4 * Copyright (C) 1999 Alexandre Julliard
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.
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.
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
26 #include "wine/port.h"
41 #define WIN32_NO_STATUS
50 #include "wine/library.h"
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 */
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 time_t modif
; /* last modification time */
79 struct list notify_list
; /* list of notifications */
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 */
90 WCHAR
*name
; /* value name */
91 unsigned short namelen
; /* length of value name */
92 unsigned short type
; /* value type */
93 data_size_t len
; /* value data length in bytes */
94 void *data
; /* pointer to value data */
97 #define MIN_SUBKEYS 8 /* min. number of allocated subkeys per key */
98 #define MIN_VALUES 8 /* min. number of allocated values per key */
100 #define MAX_NAME_LEN MAX_PATH /* max. length of a key name */
101 #define MAX_VALUE_LEN MAX_PATH /* max. length of a value name */
103 /* the root of the registry tree */
104 static struct key
*root_key
;
106 static const timeout_t save_period
= 30 * -TICKS_PER_SEC
; /* delay between periodic saves */
107 static struct timeout_user
*save_timeout_user
; /* saving timer */
109 static void set_periodic_save_timer(void);
111 /* information about where to save a registry branch */
112 struct save_branch_info
118 #define MAX_SAVE_BRANCH_INFO 3
119 static int save_branch_count
;
120 static struct save_branch_info save_branch_info
[MAX_SAVE_BRANCH_INFO
];
123 /* information about a file being loaded */
124 struct file_load_info
126 const char *filename
; /* input file name */
127 FILE *file
; /* input file */
128 char *buffer
; /* line buffer */
129 int len
; /* buffer length */
130 int line
; /* current input line */
131 WCHAR
*tmp
; /* temp buffer to use while parsing input */
132 size_t tmplen
; /* length of temp buffer */
136 static void key_dump( struct object
*obj
, int verbose
);
137 static unsigned int key_map_access( struct object
*obj
, unsigned int access
);
138 static int key_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
);
139 static void key_destroy( struct object
*obj
);
141 static const struct object_ops key_ops
=
143 sizeof(struct key
), /* size */
145 no_add_queue
, /* add_queue */
146 NULL
, /* remove_queue */
148 NULL
, /* satisfied */
149 no_signal
, /* signal */
150 no_get_fd
, /* get_fd */
151 key_map_access
, /* map_access */
152 no_lookup_name
, /* lookup_name */
153 no_open_file
, /* open_file */
154 key_close_handle
, /* close_handle */
155 key_destroy
/* destroy */
160 * The registry text file format v2 used by this code is similar to the one
161 * used by REGEDIT import/export functionality, with the following differences:
162 * - strings and key names can contain \x escapes for Unicode
163 * - key names use escapes too in order to support Unicode
164 * - the modification time optionally follows the key name
165 * - REG_EXPAND_SZ and REG_MULTI_SZ are saved as strings instead of hex
168 static inline char to_hex( char ch
)
170 if (isdigit(ch
)) return ch
- '0';
171 return tolower(ch
) - 'a' + 10;
174 /* dump the full path of a key */
175 static void dump_path( const struct key
*key
, const struct key
*base
, FILE *f
)
177 if (key
->parent
&& key
->parent
!= base
)
179 dump_path( key
->parent
, base
, f
);
180 fprintf( f
, "\\\\" );
182 dump_strW( key
->name
, key
->namelen
/ sizeof(WCHAR
), f
, "[]" );
185 /* dump a value to a text file */
186 static void dump_value( const struct key_value
*value
, FILE *f
)
194 count
= 1 + dump_strW( value
->name
, value
->namelen
/ sizeof(WCHAR
), f
, "\"\"" );
195 count
+= fprintf( f
, "\"=" );
197 else count
= fprintf( f
, "@=" );
204 if (value
->type
!= REG_SZ
) fprintf( f
, "str(%d):", value
->type
);
206 if (value
->data
) dump_strW( (WCHAR
*)value
->data
, value
->len
/ sizeof(WCHAR
), f
, "\"\"" );
210 if (value
->len
== sizeof(DWORD
))
213 memcpy( &dw
, value
->data
, sizeof(DWORD
) );
214 fprintf( f
, "dword:%08x", dw
);
217 /* else fall through */
219 if (value
->type
== REG_BINARY
) count
+= fprintf( f
, "hex:" );
220 else count
+= fprintf( f
, "hex(%x):", value
->type
);
221 for (i
= 0; i
< value
->len
; i
++)
223 count
+= fprintf( f
, "%02x", *((unsigned char *)value
->data
+ i
) );
224 if (i
< value
->len
-1)
229 fprintf( f
, "\\\n " );
239 /* save a registry and all its subkeys to a text file */
240 static void save_subkeys( const struct key
*key
, const struct key
*base
, FILE *f
)
244 if (key
->flags
& KEY_VOLATILE
) return;
245 /* save key if it has either some values or no subkeys */
246 /* keys with no values but subkeys are saved implicitly by saving the subkeys */
247 if ((key
->last_value
>= 0) || (key
->last_subkey
== -1))
250 if (key
!= base
) dump_path( key
, base
, f
);
251 fprintf( f
, "] %ld\n", (long)key
->modif
);
252 for (i
= 0; i
<= key
->last_value
; i
++) dump_value( &key
->values
[i
], f
);
254 for (i
= 0; i
<= key
->last_subkey
; i
++) save_subkeys( key
->subkeys
[i
], base
, f
);
257 static void dump_operation( const struct key
*key
, const struct key_value
*value
, const char *op
)
259 fprintf( stderr
, "%s key ", op
);
260 if (key
) dump_path( key
, NULL
, stderr
);
261 else fprintf( stderr
, "ERROR" );
264 fprintf( stderr
, " value ");
265 dump_value( value
, stderr
);
267 else fprintf( stderr
, "\n" );
270 static void key_dump( struct object
*obj
, int verbose
)
272 struct key
*key
= (struct key
*)obj
;
273 assert( obj
->ops
== &key_ops
);
274 fprintf( stderr
, "Key flags=%x ", key
->flags
);
275 dump_path( key
, NULL
, stderr
);
276 fprintf( stderr
, "\n" );
279 /* notify waiter and maybe delete the notification */
280 static void do_notification( struct key
*key
, struct notify
*notify
, int del
)
284 set_event( notify
->event
);
285 release_object( notify
->event
);
286 notify
->event
= NULL
;
290 list_remove( ¬ify
->entry
);
295 static inline struct notify
*find_notify( struct key
*key
, struct process
*process
, obj_handle_t hkey
)
297 struct notify
*notify
;
299 LIST_FOR_EACH_ENTRY( notify
, &key
->notify_list
, struct notify
, entry
)
301 if (notify
->process
== process
&& notify
->hkey
== hkey
) return notify
;
306 static unsigned int key_map_access( struct object
*obj
, unsigned int access
)
308 if (access
& GENERIC_READ
) access
|= KEY_READ
;
309 if (access
& GENERIC_WRITE
) access
|= KEY_WRITE
;
310 if (access
& GENERIC_EXECUTE
) access
|= KEY_EXECUTE
;
311 if (access
& GENERIC_ALL
) access
|= KEY_ALL_ACCESS
;
312 return access
& ~(GENERIC_READ
| GENERIC_WRITE
| GENERIC_EXECUTE
| GENERIC_ALL
);
315 /* close the notification associated with a handle */
316 static int key_close_handle( struct object
*obj
, struct process
*process
, obj_handle_t handle
)
318 struct key
* key
= (struct key
*) obj
;
319 struct notify
*notify
= find_notify( key
, process
, handle
);
320 if (notify
) do_notification( key
, notify
, 1 );
321 return 1; /* ok to close */
324 static void key_destroy( struct object
*obj
)
328 struct key
*key
= (struct key
*)obj
;
329 assert( obj
->ops
== &key_ops
);
333 for (i
= 0; i
<= key
->last_value
; i
++)
335 if (key
->values
[i
].name
) free( key
->values
[i
].name
);
336 if (key
->values
[i
].data
) free( key
->values
[i
].data
);
339 for (i
= 0; i
<= key
->last_subkey
; i
++)
341 key
->subkeys
[i
]->parent
= NULL
;
342 release_object( key
->subkeys
[i
] );
344 free( key
->subkeys
);
345 /* unconditionally notify everything waiting on this key */
346 while ((ptr
= list_head( &key
->notify_list
)))
348 struct notify
*notify
= LIST_ENTRY( ptr
, struct notify
, entry
);
349 do_notification( key
, notify
, 1 );
353 /* get the request vararg as registry path */
354 static inline void get_req_path( struct unicode_str
*str
, int skip_root
)
356 static const WCHAR root_name
[] = { '\\','R','e','g','i','s','t','r','y','\\' };
358 str
->str
= get_req_data();
359 str
->len
= (get_req_data_size() / sizeof(WCHAR
)) * sizeof(WCHAR
);
361 if (skip_root
&& str
->len
>= sizeof(root_name
) &&
362 !memicmpW( str
->str
, root_name
, sizeof(root_name
)/sizeof(WCHAR
) ))
364 str
->str
+= sizeof(root_name
)/sizeof(WCHAR
);
365 str
->len
-= sizeof(root_name
);
369 /* return the next token in a given path */
370 /* token->str must point inside the path, or be NULL for the first call */
371 static struct unicode_str
*get_path_token( const struct unicode_str
*path
, struct unicode_str
*token
)
373 data_size_t i
= 0, len
= path
->len
/ sizeof(WCHAR
);
375 if (!token
->str
) /* first time */
377 /* path cannot start with a backslash */
378 if (len
&& path
->str
[0] == '\\')
380 set_error( STATUS_OBJECT_PATH_INVALID
);
386 i
= token
->str
- path
->str
;
387 i
+= token
->len
/ sizeof(WCHAR
);
388 while (i
< len
&& path
->str
[i
] == '\\') i
++;
390 token
->str
= path
->str
+ i
;
391 while (i
< len
&& path
->str
[i
] != '\\') i
++;
392 token
->len
= (path
->str
+ i
- token
->str
) * sizeof(WCHAR
);
396 /* allocate a key object */
397 static struct key
*alloc_key( const struct unicode_str
*name
, time_t modif
)
400 if ((key
= alloc_object( &key_ops
)))
404 key
->namelen
= name
->len
;
407 key
->last_subkey
= -1;
411 key
->last_value
= -1;
415 list_init( &key
->notify_list
);
416 if (name
->len
&& !(key
->name
= memdup( name
->str
, name
->len
)))
418 release_object( key
);
425 /* mark a key and all its parents as dirty (modified) */
426 static void make_dirty( struct key
*key
)
430 if (key
->flags
& (KEY_DIRTY
|KEY_VOLATILE
)) return; /* nothing to do */
431 key
->flags
|= KEY_DIRTY
;
436 /* mark a key and all its subkeys as clean (not modified) */
437 static void make_clean( struct key
*key
)
441 if (key
->flags
& KEY_VOLATILE
) return;
442 if (!(key
->flags
& KEY_DIRTY
)) return;
443 key
->flags
&= ~KEY_DIRTY
;
444 for (i
= 0; i
<= key
->last_subkey
; i
++) make_clean( key
->subkeys
[i
] );
447 /* go through all the notifications and send them if necessary */
448 static void check_notify( struct key
*key
, unsigned int change
, int not_subtree
)
450 struct list
*ptr
, *next
;
452 LIST_FOR_EACH_SAFE( ptr
, next
, &key
->notify_list
)
454 struct notify
*n
= LIST_ENTRY( ptr
, struct notify
, entry
);
455 if ( ( not_subtree
|| n
->subtree
) && ( change
& n
->filter
) )
456 do_notification( key
, n
, 0 );
460 /* update key modification time */
461 static void touch_key( struct key
*key
, unsigned int change
)
465 key
->modif
= time(NULL
);
468 /* do notifications */
469 check_notify( key
, change
, 1 );
470 for ( k
= key
->parent
; k
; k
= k
->parent
)
471 check_notify( k
, change
& ~REG_NOTIFY_CHANGE_LAST_SET
, 0 );
474 /* try to grow the array of subkeys; return 1 if OK, 0 on error */
475 static int grow_subkeys( struct key
*key
)
477 struct key
**new_subkeys
;
482 nb_subkeys
= key
->nb_subkeys
+ (key
->nb_subkeys
/ 2); /* grow by 50% */
483 if (!(new_subkeys
= realloc( key
->subkeys
, nb_subkeys
* sizeof(*new_subkeys
) )))
485 set_error( STATUS_NO_MEMORY
);
491 nb_subkeys
= MIN_VALUES
;
492 if (!(new_subkeys
= mem_alloc( nb_subkeys
* sizeof(*new_subkeys
) ))) return 0;
494 key
->subkeys
= new_subkeys
;
495 key
->nb_subkeys
= nb_subkeys
;
499 /* allocate a subkey for a given key, and return its index */
500 static struct key
*alloc_subkey( struct key
*parent
, const struct unicode_str
*name
,
501 int index
, time_t modif
)
506 if (name
->len
> MAX_NAME_LEN
* sizeof(WCHAR
))
508 set_error( STATUS_NAME_TOO_LONG
);
511 if (parent
->last_subkey
+ 1 == parent
->nb_subkeys
)
513 /* need to grow the array */
514 if (!grow_subkeys( parent
)) return NULL
;
516 if ((key
= alloc_key( name
, modif
)) != NULL
)
518 key
->parent
= parent
;
519 for (i
= ++parent
->last_subkey
; i
> index
; i
--)
520 parent
->subkeys
[i
] = parent
->subkeys
[i
-1];
521 parent
->subkeys
[index
] = key
;
526 /* free a subkey of a given key */
527 static void free_subkey( struct key
*parent
, int index
)
532 assert( index
>= 0 );
533 assert( index
<= parent
->last_subkey
);
535 key
= parent
->subkeys
[index
];
536 for (i
= index
; i
< parent
->last_subkey
; i
++) parent
->subkeys
[i
] = parent
->subkeys
[i
+ 1];
537 parent
->last_subkey
--;
538 key
->flags
|= KEY_DELETED
;
540 release_object( key
);
542 /* try to shrink the array */
543 nb_subkeys
= parent
->nb_subkeys
;
544 if (nb_subkeys
> MIN_SUBKEYS
&& parent
->last_subkey
< nb_subkeys
/ 2)
546 struct key
**new_subkeys
;
547 nb_subkeys
-= nb_subkeys
/ 3; /* shrink by 33% */
548 if (nb_subkeys
< MIN_SUBKEYS
) nb_subkeys
= MIN_SUBKEYS
;
549 if (!(new_subkeys
= realloc( parent
->subkeys
, nb_subkeys
* sizeof(*new_subkeys
) ))) return;
550 parent
->subkeys
= new_subkeys
;
551 parent
->nb_subkeys
= nb_subkeys
;
555 /* find the named child of a given key and return its index */
556 static struct key
*find_subkey( const struct key
*key
, const struct unicode_str
*name
, int *index
)
558 int i
, min
, max
, res
;
562 max
= key
->last_subkey
;
566 len
= min( key
->subkeys
[i
]->namelen
, name
->len
);
567 res
= memicmpW( key
->subkeys
[i
]->name
, name
->str
, len
/ sizeof(WCHAR
) );
568 if (!res
) res
= key
->subkeys
[i
]->namelen
- name
->len
;
572 return key
->subkeys
[i
];
574 if (res
> 0) max
= i
- 1;
577 *index
= min
; /* this is where we should insert it */
582 static struct key
*open_key( struct key
*key
, const struct unicode_str
*name
)
585 struct unicode_str token
;
588 if (!get_path_token( name
, &token
)) return NULL
;
591 if (!(key
= find_subkey( key
, &token
, &index
)))
593 set_error( STATUS_OBJECT_NAME_NOT_FOUND
);
596 get_path_token( name
, &token
);
599 if (debug_level
> 1) dump_operation( key
, NULL
, "Open" );
600 if (key
) grab_object( key
);
604 /* create a subkey */
605 static struct key
*create_key( struct key
*key
, const struct unicode_str
*name
,
606 const struct unicode_str
*class, int flags
, time_t modif
, int *created
)
610 struct unicode_str token
;
612 if (key
->flags
& KEY_DELETED
) /* we cannot create a subkey under a deleted key */
614 set_error( STATUS_KEY_DELETED
);
617 if (!(flags
& KEY_VOLATILE
) && (key
->flags
& KEY_VOLATILE
))
619 set_error( STATUS_CHILD_MUST_BE_VOLATILE
);
622 if (!modif
) modif
= time(NULL
);
625 if (!get_path_token( name
, &token
)) return NULL
;
630 if (!(subkey
= find_subkey( key
, &token
, &index
))) break;
632 get_path_token( name
, &token
);
635 /* create the remaining part */
637 if (!token
.len
) goto done
;
639 if (flags
& KEY_DIRTY
) make_dirty( key
);
640 if (!(key
= alloc_subkey( key
, &token
, index
, modif
))) return NULL
;
645 get_path_token( name
, &token
);
646 if (!token
.len
) break;
647 /* we know the index is always 0 in a new key */
648 if (!(key
= alloc_subkey( key
, &token
, 0, modif
)))
650 free_subkey( base
, index
);
656 if (debug_level
> 1) dump_operation( key
, NULL
, "Create" );
657 if (class && class->len
)
659 key
->classlen
= class->len
;
661 if (!(key
->class = memdup( class->str
, key
->classlen
))) key
->classlen
= 0;
667 /* query information about a key or a subkey */
668 static void enum_key( const struct key
*key
, int index
, int info_class
,
669 struct enum_key_reply
*reply
)
672 data_size_t len
, namelen
, classlen
;
673 data_size_t max_subkey
= 0, max_class
= 0;
674 data_size_t max_value
= 0, max_data
= 0;
677 if (index
!= -1) /* -1 means use the specified key directly */
679 if ((index
< 0) || (index
> key
->last_subkey
))
681 set_error( STATUS_NO_MORE_ENTRIES
);
684 key
= key
->subkeys
[index
];
687 namelen
= key
->namelen
;
688 classlen
= key
->classlen
;
692 case KeyBasicInformation
:
693 classlen
= 0; /* only return the name */
695 case KeyNodeInformation
:
696 reply
->max_subkey
= 0;
697 reply
->max_class
= 0;
698 reply
->max_value
= 0;
701 case KeyFullInformation
:
702 for (i
= 0; i
<= key
->last_subkey
; i
++)
704 struct key
*subkey
= key
->subkeys
[i
];
705 len
= subkey
->namelen
/ sizeof(WCHAR
);
706 if (len
> max_subkey
) max_subkey
= len
;
707 len
= subkey
->classlen
/ sizeof(WCHAR
);
708 if (len
> max_class
) max_class
= len
;
710 for (i
= 0; i
<= key
->last_value
; i
++)
712 len
= key
->values
[i
].namelen
/ sizeof(WCHAR
);
713 if (len
> max_value
) max_value
= len
;
714 len
= key
->values
[i
].len
;
715 if (len
> max_data
) max_data
= len
;
717 reply
->max_subkey
= max_subkey
;
718 reply
->max_class
= max_class
;
719 reply
->max_value
= max_value
;
720 reply
->max_data
= max_data
;
721 namelen
= 0; /* only return the class */
724 set_error( STATUS_INVALID_PARAMETER
);
727 reply
->subkeys
= key
->last_subkey
+ 1;
728 reply
->values
= key
->last_value
+ 1;
729 reply
->modif
= key
->modif
;
730 reply
->total
= namelen
+ classlen
;
732 len
= min( reply
->total
, get_reply_max_size() );
733 if (len
&& (data
= set_reply_data_size( len
)))
737 reply
->namelen
= namelen
;
738 memcpy( data
, key
->name
, namelen
);
739 memcpy( data
+ namelen
, key
->class, len
- namelen
);
743 reply
->namelen
= len
;
744 memcpy( data
, key
->name
, len
);
747 if (debug_level
> 1) dump_operation( key
, NULL
, "Enum" );
750 /* delete a key and its values */
751 static int delete_key( struct key
*key
, int recurse
)
756 /* must find parent and index */
759 set_error( STATUS_ACCESS_DENIED
);
762 if (!(parent
= key
->parent
) || (key
->flags
& KEY_DELETED
))
764 set_error( STATUS_KEY_DELETED
);
768 while (recurse
&& (key
->last_subkey
>=0))
769 if (0 > delete_key(key
->subkeys
[key
->last_subkey
], 1))
772 for (index
= 0; index
<= parent
->last_subkey
; index
++)
773 if (parent
->subkeys
[index
] == key
) break;
774 assert( index
<= parent
->last_subkey
);
776 /* we can only delete a key that has no subkeys */
777 if (key
->last_subkey
>= 0)
779 set_error( STATUS_ACCESS_DENIED
);
783 if (debug_level
> 1) dump_operation( key
, NULL
, "Delete" );
784 free_subkey( parent
, index
);
785 touch_key( parent
, REG_NOTIFY_CHANGE_NAME
);
789 /* try to grow the array of values; return 1 if OK, 0 on error */
790 static int grow_values( struct key
*key
)
792 struct key_value
*new_val
;
797 nb_values
= key
->nb_values
+ (key
->nb_values
/ 2); /* grow by 50% */
798 if (!(new_val
= realloc( key
->values
, nb_values
* sizeof(*new_val
) )))
800 set_error( STATUS_NO_MEMORY
);
806 nb_values
= MIN_VALUES
;
807 if (!(new_val
= mem_alloc( nb_values
* sizeof(*new_val
) ))) return 0;
809 key
->values
= new_val
;
810 key
->nb_values
= nb_values
;
814 /* find the named value of a given key and return its index in the array */
815 static struct key_value
*find_value( const struct key
*key
, const struct unicode_str
*name
, int *index
)
817 int i
, min
, max
, res
;
821 max
= key
->last_value
;
825 len
= min( key
->values
[i
].namelen
, name
->len
);
826 res
= memicmpW( key
->values
[i
].name
, name
->str
, len
/ sizeof(WCHAR
) );
827 if (!res
) res
= key
->values
[i
].namelen
- name
->len
;
831 return &key
->values
[i
];
833 if (res
> 0) max
= i
- 1;
836 *index
= min
; /* this is where we should insert it */
840 /* insert a new value; the index must have been returned by find_value */
841 static struct key_value
*insert_value( struct key
*key
, const struct unicode_str
*name
, int index
)
843 struct key_value
*value
;
844 WCHAR
*new_name
= NULL
;
847 if (name
->len
> MAX_VALUE_LEN
* sizeof(WCHAR
))
849 set_error( STATUS_NAME_TOO_LONG
);
852 if (key
->last_value
+ 1 == key
->nb_values
)
854 if (!grow_values( key
)) return NULL
;
856 if (name
->len
&& !(new_name
= memdup( name
->str
, name
->len
))) return NULL
;
857 for (i
= ++key
->last_value
; i
> index
; i
--) key
->values
[i
] = key
->values
[i
- 1];
858 value
= &key
->values
[index
];
859 value
->name
= new_name
;
860 value
->namelen
= name
->len
;
866 /* set a key value */
867 static void set_value( struct key
*key
, const struct unicode_str
*name
,
868 int type
, const void *data
, data_size_t len
)
870 struct key_value
*value
;
874 if ((value
= find_value( key
, name
, &index
)))
876 /* check if the new value is identical to the existing one */
877 if (value
->type
== type
&& value
->len
== len
&&
878 value
->data
&& !memcmp( value
->data
, data
, len
))
880 if (debug_level
> 1) dump_operation( key
, value
, "Skip setting" );
885 if (len
&& !(ptr
= memdup( data
, len
))) return;
889 if (!(value
= insert_value( key
, name
, index
)))
895 else free( value
->data
); /* already existing, free previous data */
900 touch_key( key
, REG_NOTIFY_CHANGE_LAST_SET
);
901 if (debug_level
> 1) dump_operation( key
, value
, "Set" );
904 /* get a key value */
905 static void get_value( struct key
*key
, const struct unicode_str
*name
, int *type
, data_size_t
*len
)
907 struct key_value
*value
;
910 if ((value
= find_value( key
, name
, &index
)))
914 if (value
->data
) set_reply_data( value
->data
, min( value
->len
, get_reply_max_size() ));
915 if (debug_level
> 1) dump_operation( key
, value
, "Get" );
920 set_error( STATUS_OBJECT_NAME_NOT_FOUND
);
924 /* enumerate a key value */
925 static void enum_value( struct key
*key
, int i
, int info_class
, struct enum_key_value_reply
*reply
)
927 struct key_value
*value
;
929 if (i
< 0 || i
> key
->last_value
) set_error( STATUS_NO_MORE_ENTRIES
);
933 data_size_t namelen
, maxlen
;
935 value
= &key
->values
[i
];
936 reply
->type
= value
->type
;
937 namelen
= value
->namelen
;
941 case KeyValueBasicInformation
:
942 reply
->total
= namelen
;
944 case KeyValueFullInformation
:
945 reply
->total
= namelen
+ value
->len
;
947 case KeyValuePartialInformation
:
948 reply
->total
= value
->len
;
952 set_error( STATUS_INVALID_PARAMETER
);
956 maxlen
= min( reply
->total
, get_reply_max_size() );
957 if (maxlen
&& ((data
= set_reply_data_size( maxlen
))))
959 if (maxlen
> namelen
)
961 reply
->namelen
= namelen
;
962 memcpy( data
, value
->name
, namelen
);
963 memcpy( (char *)data
+ namelen
, value
->data
, maxlen
- namelen
);
967 reply
->namelen
= maxlen
;
968 memcpy( data
, value
->name
, maxlen
);
971 if (debug_level
> 1) dump_operation( key
, value
, "Enum" );
976 static void delete_value( struct key
*key
, const struct unicode_str
*name
)
978 struct key_value
*value
;
979 int i
, index
, nb_values
;
981 if (!(value
= find_value( key
, name
, &index
)))
983 set_error( STATUS_OBJECT_NAME_NOT_FOUND
);
986 if (debug_level
> 1) dump_operation( key
, value
, "Delete" );
989 for (i
= index
; i
< key
->last_value
; i
++) key
->values
[i
] = key
->values
[i
+ 1];
991 touch_key( key
, REG_NOTIFY_CHANGE_LAST_SET
);
993 /* try to shrink the array */
994 nb_values
= key
->nb_values
;
995 if (nb_values
> MIN_VALUES
&& key
->last_value
< nb_values
/ 2)
997 struct key_value
*new_val
;
998 nb_values
-= nb_values
/ 3; /* shrink by 33% */
999 if (nb_values
< MIN_VALUES
) nb_values
= MIN_VALUES
;
1000 if (!(new_val
= realloc( key
->values
, nb_values
* sizeof(*new_val
) ))) return;
1001 key
->values
= new_val
;
1002 key
->nb_values
= nb_values
;
1006 /* get the registry key corresponding to an hkey handle */
1007 static inline struct key
*get_hkey_obj( obj_handle_t hkey
, unsigned int access
)
1009 return (struct key
*)get_handle_obj( current
->process
, hkey
, access
, &key_ops
);
1012 /* get the registry key corresponding to a parent key handle */
1013 static inline struct key
*get_parent_hkey_obj( obj_handle_t hkey
)
1015 if (!hkey
) return (struct key
*)grab_object( root_key
);
1016 return (struct key
*)get_handle_obj( current
->process
, hkey
, 0, &key_ops
);
1019 /* read a line from the input file */
1020 static int read_next_line( struct file_load_info
*info
)
1023 int newlen
, pos
= 0;
1028 if (!fgets( info
->buffer
+ pos
, info
->len
- pos
, info
->file
))
1029 return (pos
!= 0); /* EOF */
1030 pos
= strlen(info
->buffer
);
1031 if (info
->buffer
[pos
-1] == '\n')
1033 /* got a full line */
1034 info
->buffer
[--pos
] = 0;
1035 if (pos
> 0 && info
->buffer
[pos
-1] == '\r') info
->buffer
[pos
-1] = 0;
1038 if (pos
< info
->len
- 1) return 1; /* EOF but something was read */
1040 /* need to enlarge the buffer */
1041 newlen
= info
->len
+ info
->len
/ 2;
1042 if (!(newbuf
= realloc( info
->buffer
, newlen
)))
1044 set_error( STATUS_NO_MEMORY
);
1047 info
->buffer
= newbuf
;
1052 /* make sure the temp buffer holds enough space */
1053 static int get_file_tmp_space( struct file_load_info
*info
, size_t size
)
1056 if (info
->tmplen
>= size
) return 1;
1057 if (!(tmp
= realloc( info
->tmp
, size
)))
1059 set_error( STATUS_NO_MEMORY
);
1063 info
->tmplen
= size
;
1067 /* report an error while loading an input file */
1068 static void file_read_error( const char *err
, struct file_load_info
*info
)
1071 fprintf( stderr
, "%s:%d: %s '%s'\n", info
->filename
, info
->line
, err
, info
->buffer
);
1073 fprintf( stderr
, "<fd>:%d: %s '%s'\n", info
->line
, err
, info
->buffer
);
1076 /* parse an escaped string back into Unicode */
1077 /* return the number of chars read from the input, or -1 on output overflow */
1078 static int parse_strW( WCHAR
*dest
, data_size_t
*len
, const char *src
, char endchar
)
1080 data_size_t count
= sizeof(WCHAR
); /* for terminating null */
1081 const char *p
= src
;
1082 while (*p
&& *p
!= endchar
)
1084 if (*p
!= '\\') *dest
= (WCHAR
)*p
++;
1090 case 'a': *dest
= '\a'; p
++; break;
1091 case 'b': *dest
= '\b'; p
++; break;
1092 case 'e': *dest
= '\e'; p
++; break;
1093 case 'f': *dest
= '\f'; p
++; break;
1094 case 'n': *dest
= '\n'; p
++; break;
1095 case 'r': *dest
= '\r'; p
++; break;
1096 case 't': *dest
= '\t'; p
++; break;
1097 case 'v': *dest
= '\v'; p
++; break;
1098 case 'x': /* hex escape */
1100 if (!isxdigit(*p
)) *dest
= 'x';
1103 *dest
= to_hex(*p
++);
1104 if (isxdigit(*p
)) *dest
= (*dest
* 16) + to_hex(*p
++);
1105 if (isxdigit(*p
)) *dest
= (*dest
* 16) + to_hex(*p
++);
1106 if (isxdigit(*p
)) *dest
= (*dest
* 16) + to_hex(*p
++);
1116 case '7': /* octal escape */
1118 if (*p
>= '0' && *p
<= '7') *dest
= (*dest
* 8) + (*p
++ - '0');
1119 if (*p
>= '0' && *p
<= '7') *dest
= (*dest
* 8) + (*p
++ - '0');
1122 *dest
= (WCHAR
)*p
++;
1126 if ((count
+= sizeof(WCHAR
)) > *len
) return -1; /* dest buffer overflow */
1130 if (!*p
) return -1; /* delimiter not found */
1135 /* convert a data type tag to a value type */
1136 static int get_data_type( const char *buffer
, int *type
, int *parse_type
)
1138 struct data_type
{ const char *tag
; int len
; int type
; int parse_type
; };
1140 static const struct data_type data_types
[] =
1141 { /* actual type */ /* type to assume for parsing */
1142 { "\"", 1, REG_SZ
, REG_SZ
},
1143 { "str:\"", 5, REG_SZ
, REG_SZ
},
1144 { "str(2):\"", 8, REG_EXPAND_SZ
, REG_SZ
},
1145 { "str(7):\"", 8, REG_MULTI_SZ
, REG_SZ
},
1146 { "hex:", 4, REG_BINARY
, REG_BINARY
},
1147 { "dword:", 6, REG_DWORD
, REG_DWORD
},
1148 { "hex(", 4, -1, REG_BINARY
},
1152 const struct data_type
*ptr
;
1155 for (ptr
= data_types
; ptr
->tag
; ptr
++)
1157 if (memcmp( ptr
->tag
, buffer
, ptr
->len
)) continue;
1158 *parse_type
= ptr
->parse_type
;
1159 if ((*type
= ptr
->type
) != -1) return ptr
->len
;
1160 /* "hex(xx):" is special */
1161 *type
= (int)strtoul( buffer
+ 4, &end
, 16 );
1162 if ((end
<= buffer
) || memcmp( end
, "):", 2 )) return 0;
1163 return end
+ 2 - buffer
;
1168 /* load and create a key from the input file */
1169 static struct key
*load_key( struct key
*base
, const char *buffer
, int flags
,
1170 int prefix_len
, struct file_load_info
*info
,
1174 struct unicode_str name
;
1176 data_size_t len
= strlen(buffer
) * sizeof(WCHAR
);
1178 if (!get_file_tmp_space( info
, len
)) return NULL
;
1180 if ((res
= parse_strW( info
->tmp
, &len
, buffer
, ']' )) == -1)
1182 file_read_error( "Malformed key", info
);
1185 if (sscanf( buffer
+ res
, " %d", &modif
) != 1) modif
= default_modif
;
1188 while (prefix_len
&& *p
) { if (*p
++ == '\\') prefix_len
--; }
1194 file_read_error( "Malformed key", info
);
1197 /* empty key name, return base key */
1198 return (struct key
*)grab_object( base
);
1201 name
.len
= len
- (p
- info
->tmp
+ 1) * sizeof(WCHAR
);
1202 return create_key( base
, &name
, NULL
, flags
, modif
, &res
);
1205 /* parse a comma-separated list of hex digits */
1206 static int parse_hex( unsigned char *dest
, data_size_t
*len
, const char *buffer
)
1208 const char *p
= buffer
;
1209 data_size_t count
= 0;
1210 while (isxdigit(*p
))
1214 memcpy( buf
, p
, 2 );
1216 sscanf( buf
, "%x", &val
);
1217 if (count
++ >= *len
) return -1; /* dest buffer overflow */
1218 *dest
++ = (unsigned char )val
;
1226 /* parse a value name and create the corresponding value */
1227 static struct key_value
*parse_value_name( struct key
*key
, const char *buffer
, data_size_t
*len
,
1228 struct file_load_info
*info
)
1230 struct key_value
*value
;
1231 struct unicode_str name
;
1233 data_size_t maxlen
= strlen(buffer
) * sizeof(WCHAR
);
1235 if (!get_file_tmp_space( info
, maxlen
)) return NULL
;
1236 name
.str
= info
->tmp
;
1237 if (buffer
[0] == '@')
1244 int r
= parse_strW( info
->tmp
, &maxlen
, buffer
+ 1, '\"' );
1245 if (r
== -1) goto error
;
1246 *len
= r
+ 1; /* for initial quote */
1247 name
.len
= maxlen
- sizeof(WCHAR
);
1249 while (isspace(buffer
[*len
])) (*len
)++;
1250 if (buffer
[*len
] != '=') goto error
;
1252 while (isspace(buffer
[*len
])) (*len
)++;
1253 if (!(value
= find_value( key
, &name
, &index
))) value
= insert_value( key
, &name
, index
);
1257 file_read_error( "Malformed value name", info
);
1261 /* load a value from the input file */
1262 static int load_value( struct key
*key
, const char *buffer
, struct file_load_info
*info
)
1266 int res
, type
, parse_type
;
1267 data_size_t maxlen
, len
;
1268 struct key_value
*value
;
1270 if (!(value
= parse_value_name( key
, buffer
, &len
, info
))) return 0;
1271 if (!(res
= get_data_type( buffer
+ len
, &type
, &parse_type
))) goto error
;
1272 buffer
+= len
+ res
;
1277 len
= strlen(buffer
) * sizeof(WCHAR
);
1278 if (!get_file_tmp_space( info
, len
)) return 0;
1279 if ((res
= parse_strW( info
->tmp
, &len
, buffer
, '\"' )) == -1) goto error
;
1283 dw
= strtoul( buffer
, NULL
, 16 );
1287 case REG_BINARY
: /* hex digits */
1291 maxlen
= 1 + strlen(buffer
)/3; /* 3 chars for one hex byte */
1292 if (!get_file_tmp_space( info
, len
+ maxlen
)) return 0;
1293 if ((res
= parse_hex( (unsigned char *)info
->tmp
+ len
, &maxlen
, buffer
)) == -1) goto error
;
1296 while (isspace(*buffer
)) buffer
++;
1297 if (!*buffer
) break;
1298 if (*buffer
!= '\\') goto error
;
1299 if (read_next_line( info
) != 1) goto error
;
1300 buffer
= info
->buffer
;
1301 while (isspace(*buffer
)) buffer
++;
1307 ptr
= NULL
; /* keep compiler quiet */
1311 if (!len
) newptr
= NULL
;
1312 else if (!(newptr
= memdup( ptr
, len
))) return 0;
1314 free( value
->data
);
1315 value
->data
= newptr
;
1322 file_read_error( "Malformed value", info
);
1326 /* return the length (in path elements) of name that is part of the key name */
1327 /* for instance if key is USER\foo\bar and name is foo\bar\baz, return 2 */
1328 static int get_prefix_len( struct key
*key
, const char *name
, struct file_load_info
*info
)
1332 data_size_t len
= strlen(name
) * sizeof(WCHAR
);
1334 if (!get_file_tmp_space( info
, len
)) return 0;
1336 if ((res
= parse_strW( info
->tmp
, &len
, name
, ']' )) == -1)
1338 file_read_error( "Malformed key", info
);
1341 for (p
= info
->tmp
; *p
; p
++) if (*p
== '\\') break;
1342 len
= (p
- info
->tmp
) * sizeof(WCHAR
);
1343 for (res
= 1; key
!= root_key
; res
++)
1345 if (len
== key
->namelen
&& !memicmpW( info
->tmp
, key
->name
, len
/ sizeof(WCHAR
) )) break;
1348 if (key
== root_key
) res
= 0; /* no matching name */
1352 /* load all the keys from the input file */
1353 /* prefix_len is the number of key name prefixes to skip, or -1 for autodetection */
1354 static void load_keys( struct key
*key
, const char *filename
, FILE *f
, int prefix_len
)
1356 struct key
*subkey
= NULL
;
1357 struct file_load_info info
;
1359 int default_modif
= time(NULL
);
1360 int flags
= (key
->flags
& KEY_VOLATILE
) ? KEY_VOLATILE
: KEY_DIRTY
;
1362 info
.filename
= filename
;
1367 if (!(info
.buffer
= mem_alloc( info
.len
))) return;
1368 if (!(info
.tmp
= mem_alloc( info
.tmplen
)))
1370 free( info
.buffer
);
1374 if ((read_next_line( &info
) != 1) ||
1375 strcmp( info
.buffer
, "WINE REGISTRY Version 2" ))
1377 set_error( STATUS_NOT_REGISTRY_FILE
);
1381 while (read_next_line( &info
) == 1)
1384 while (*p
&& isspace(*p
)) p
++;
1387 case '[': /* new key */
1388 if (subkey
) release_object( subkey
);
1389 if (prefix_len
== -1) prefix_len
= get_prefix_len( key
, p
+ 1, &info
);
1390 if (!(subkey
= load_key( key
, p
+ 1, flags
, prefix_len
, &info
, default_modif
)))
1391 file_read_error( "Error creating key", &info
);
1393 case '@': /* default value */
1394 case '\"': /* value */
1395 if (subkey
) load_value( subkey
, p
, &info
);
1396 else file_read_error( "Value without key", &info
);
1398 case '#': /* comment */
1399 case ';': /* comment */
1400 case 0: /* empty line */
1403 file_read_error( "Unrecognized input", &info
);
1409 if (subkey
) release_object( subkey
);
1410 free( info
.buffer
);
1414 /* load a part of the registry from a file */
1415 static void load_registry( struct key
*key
, obj_handle_t handle
)
1420 if (!(file
= get_file_obj( current
->process
, handle
, FILE_READ_DATA
))) return;
1421 fd
= dup( get_file_unix_fd( file
) );
1422 release_object( file
);
1425 FILE *f
= fdopen( fd
, "r" );
1428 load_keys( key
, NULL
, f
, -1 );
1431 else file_set_error();
1435 /* load one of the initial registry files */
1436 static void load_init_registry_from_file( const char *filename
, struct key
*key
)
1440 if ((f
= fopen( filename
, "r" )))
1442 load_keys( key
, filename
, f
, 0 );
1444 if (get_error() == STATUS_NOT_REGISTRY_FILE
)
1446 fprintf( stderr
, "%s is not a valid registry file\n", filename
);
1451 assert( save_branch_count
< MAX_SAVE_BRANCH_INFO
);
1453 if ((save_branch_info
[save_branch_count
].path
= strdup( filename
)))
1455 save_branch_info
[save_branch_count
++].key
= (struct key
*)grab_object( key
);
1456 make_object_static( &key
->obj
);
1460 static WCHAR
*format_user_registry_path( const SID
*sid
, struct unicode_str
*path
)
1462 static const WCHAR prefixW
[] = {'U','s','e','r','\\','S',0};
1463 static const WCHAR formatW
[] = {'-','%','u',0};
1464 WCHAR buffer
[7 + 10 + 10 + 10 * SID_MAX_SUB_AUTHORITIES
];
1468 strcpyW( p
, prefixW
);
1469 p
+= strlenW( prefixW
);
1470 p
+= sprintfW( p
, formatW
, sid
->Revision
);
1471 p
+= sprintfW( p
, formatW
, MAKELONG( MAKEWORD( sid
->IdentifierAuthority
.Value
[5],
1472 sid
->IdentifierAuthority
.Value
[4] ),
1473 MAKEWORD( sid
->IdentifierAuthority
.Value
[3],
1474 sid
->IdentifierAuthority
.Value
[2] )));
1475 for (i
= 0; i
< sid
->SubAuthorityCount
; i
++)
1476 p
+= sprintfW( p
, formatW
, sid
->SubAuthority
[i
] );
1478 path
->len
= (p
- buffer
) * sizeof(WCHAR
);
1479 path
->str
= p
= memdup( buffer
, path
->len
);
1483 /* registry initialisation */
1484 void init_registry(void)
1486 static const WCHAR HKLM
[] = { 'M','a','c','h','i','n','e' };
1487 static const WCHAR HKU_default
[] = { 'U','s','e','r','\\','.','D','e','f','a','u','l','t' };
1488 static const struct unicode_str root_name
= { NULL
, 0 };
1489 static const struct unicode_str HKLM_name
= { HKLM
, sizeof(HKLM
) };
1490 static const struct unicode_str HKU_name
= { HKU_default
, sizeof(HKU_default
) };
1492 WCHAR
*current_user_path
;
1493 struct unicode_str current_user_str
;
1495 const char *config
= wine_get_config_dir();
1500 /* create the root key */
1501 root_key
= alloc_key( &root_name
, time(NULL
) );
1503 make_object_static( &root_key
->obj
);
1505 if (!(filename
= malloc( strlen(config
) + 16 ))) fatal_error( "out of memory\n" );
1506 strcpy( filename
, config
);
1507 p
= filename
+ strlen(filename
);
1509 /* load system.reg into Registry\Machine */
1511 if (!(key
= create_key( root_key
, &HKLM_name
, NULL
, 0, time(NULL
), &dummy
)))
1512 fatal_error( "could not create Machine registry key\n" );
1514 strcpy( p
, "/system.reg" );
1515 load_init_registry_from_file( filename
, key
);
1516 release_object( key
);
1518 /* load userdef.reg into Registry\User\.Default */
1520 if (!(key
= create_key( root_key
, &HKU_name
, NULL
, 0, time(NULL
), &dummy
)))
1521 fatal_error( "could not create User\\.Default registry key\n" );
1523 strcpy( p
, "/userdef.reg" );
1524 load_init_registry_from_file( filename
, key
);
1525 release_object( key
);
1527 /* load user.reg into HKEY_CURRENT_USER */
1529 /* FIXME: match default user in token.c. should get from process token instead */
1530 current_user_path
= format_user_registry_path( security_interactive_sid
, ¤t_user_str
);
1531 if (!current_user_path
||
1532 !(key
= create_key( root_key
, ¤t_user_str
, NULL
, 0, time(NULL
), &dummy
)))
1533 fatal_error( "could not create HKEY_CURRENT_USER registry key\n" );
1534 free( current_user_path
);
1535 strcpy( p
, "/user.reg" );
1536 load_init_registry_from_file( filename
, key
);
1537 release_object( key
);
1541 /* start the periodic save timer */
1542 set_periodic_save_timer();
1545 /* save a registry branch to a file */
1546 static void save_all_subkeys( struct key
*key
, FILE *f
)
1548 fprintf( f
, "WINE REGISTRY Version 2\n" );
1549 fprintf( f
, ";; All keys relative to " );
1550 dump_path( key
, NULL
, f
);
1552 save_subkeys( key
, key
, f
);
1555 /* save a registry branch to a file handle */
1556 static void save_registry( struct key
*key
, obj_handle_t handle
)
1561 if (key
->flags
& KEY_DELETED
)
1563 set_error( STATUS_KEY_DELETED
);
1566 if (!(file
= get_file_obj( current
->process
, handle
, FILE_WRITE_DATA
))) return;
1567 fd
= dup( get_file_unix_fd( file
) );
1568 release_object( file
);
1571 FILE *f
= fdopen( fd
, "w" );
1574 save_all_subkeys( key
, f
);
1575 if (fclose( f
)) file_set_error();
1585 /* save a registry branch to a file */
1586 static int save_branch( struct key
*key
, const char *path
)
1589 char *p
, *real
, *tmp
= NULL
;
1590 int fd
, count
= 0, ret
= 0, by_symlink
;
1593 if (!(key
->flags
& KEY_DIRTY
))
1595 if (debug_level
> 1) dump_operation( key
, NULL
, "Not saving clean" );
1599 /* get the real path */
1601 by_symlink
= (!lstat(path
, &st
) && S_ISLNK (st
.st_mode
));
1602 if (!(real
= malloc( PATH_MAX
))) return 0;
1603 if (!realpath( path
, real
))
1610 /* test the file type */
1612 if ((fd
= open( path
, O_WRONLY
)) != -1)
1614 /* if file is not a regular file or has multiple links or is accessed
1615 * via symbolic links, write directly into it; otherwise use a temp file */
1617 (!fstat( fd
, &st
) && (!S_ISREG(st
.st_mode
) || st
.st_nlink
> 1)))
1625 /* create a temp file in the same directory */
1627 if (!(tmp
= malloc( strlen(path
) + 20 ))) goto done
;
1628 strcpy( tmp
, path
);
1629 if ((p
= strrchr( tmp
, '/' ))) p
++;
1633 sprintf( p
, "reg%lx%04x.tmp", (long) getpid(), count
++ );
1634 if ((fd
= open( tmp
, O_CREAT
| O_EXCL
| O_WRONLY
, 0666 )) != -1) break;
1635 if (errno
!= EEXIST
) goto done
;
1639 /* now save to it */
1642 if (!(f
= fdopen( fd
, "w" )))
1644 if (tmp
) unlink( tmp
);
1649 if (debug_level
> 1)
1651 fprintf( stderr
, "%s: ", path
);
1652 dump_operation( key
, NULL
, "saving" );
1655 save_all_subkeys( key
, f
);
1660 /* if successfully written, rename to final name */
1661 if (ret
) ret
= !rename( tmp
, path
);
1662 if (!ret
) unlink( tmp
);
1668 if (ret
) make_clean( key
);
1672 /* periodic saving of the registry */
1673 static void periodic_save( void *arg
)
1677 save_timeout_user
= NULL
;
1678 for (i
= 0; i
< save_branch_count
; i
++)
1679 save_branch( save_branch_info
[i
].key
, save_branch_info
[i
].path
);
1680 set_periodic_save_timer();
1683 /* start the periodic save timer */
1684 static void set_periodic_save_timer(void)
1686 if (save_timeout_user
) remove_timeout_user( save_timeout_user
);
1687 save_timeout_user
= add_timeout_user( save_period
, periodic_save
, NULL
);
1690 /* save the modified registry branches to disk */
1691 void flush_registry(void)
1695 for (i
= 0; i
< save_branch_count
; i
++)
1697 if (!save_branch( save_branch_info
[i
].key
, save_branch_info
[i
].path
))
1699 fprintf( stderr
, "wineserver: could not save registry branch to %s",
1700 save_branch_info
[i
].path
);
1707 /* create a registry key */
1708 DECL_HANDLER(create_key
)
1710 struct key
*key
= NULL
, *parent
;
1711 struct unicode_str name
, class;
1712 unsigned int access
= req
->access
;
1716 if (req
->namelen
> get_req_data_size())
1718 set_error( STATUS_INVALID_PARAMETER
);
1721 class.str
= (const WCHAR
*)get_req_data() + req
->namelen
/ sizeof(WCHAR
);
1722 class.len
= ((get_req_data_size() - req
->namelen
) / sizeof(WCHAR
)) * sizeof(WCHAR
);
1723 get_req_path( &name
, !req
->parent
);
1724 if (name
.str
> class.str
)
1726 set_error( STATUS_INVALID_PARAMETER
);
1729 name
.len
= (class.str
- name
.str
) * sizeof(WCHAR
);
1731 /* NOTE: no access rights are required from the parent handle to create a key */
1732 if ((parent
= get_parent_hkey_obj( req
->parent
)))
1734 int flags
= (req
->options
& REG_OPTION_VOLATILE
) ? KEY_VOLATILE
: KEY_DIRTY
;
1736 if ((key
= create_key( parent
, &name
, &class, flags
, req
->modif
, &reply
->created
)))
1738 reply
->hkey
= alloc_handle( current
->process
, key
, access
, req
->attributes
);
1739 release_object( key
);
1741 release_object( parent
);
1745 /* open a registry key */
1746 DECL_HANDLER(open_key
)
1748 struct key
*key
, *parent
;
1749 struct unicode_str name
;
1750 unsigned int access
= req
->access
;
1753 /* NOTE: no access rights are required to open the parent key, only the child key */
1754 if ((parent
= get_parent_hkey_obj( req
->parent
)))
1756 get_req_path( &name
, !req
->parent
);
1757 if ((key
= open_key( parent
, &name
)))
1759 reply
->hkey
= alloc_handle( current
->process
, key
, access
, req
->attributes
);
1760 release_object( key
);
1762 release_object( parent
);
1766 /* delete a registry key */
1767 DECL_HANDLER(delete_key
)
1771 if ((key
= get_hkey_obj( req
->hkey
, DELETE
)))
1773 delete_key( key
, 0);
1774 release_object( key
);
1778 /* flush a registry key */
1779 DECL_HANDLER(flush_key
)
1781 struct key
*key
= get_hkey_obj( req
->hkey
, 0 );
1784 /* we don't need to do anything here with the current implementation */
1785 release_object( key
);
1789 /* enumerate registry subkeys */
1790 DECL_HANDLER(enum_key
)
1794 if ((key
= get_hkey_obj( req
->hkey
,
1795 req
->index
== -1 ? KEY_QUERY_VALUE
: KEY_ENUMERATE_SUB_KEYS
)))
1797 enum_key( key
, req
->index
, req
->info_class
, reply
);
1798 release_object( key
);
1802 /* set a value of a registry key */
1803 DECL_HANDLER(set_key_value
)
1806 struct unicode_str name
;
1808 if (req
->namelen
> get_req_data_size())
1810 set_error( STATUS_INVALID_PARAMETER
);
1813 name
.str
= get_req_data();
1814 name
.len
= (req
->namelen
/ sizeof(WCHAR
)) * sizeof(WCHAR
);
1816 if ((key
= get_hkey_obj( req
->hkey
, KEY_SET_VALUE
)))
1818 data_size_t datalen
= get_req_data_size() - req
->namelen
;
1819 const char *data
= (const char *)get_req_data() + req
->namelen
;
1821 set_value( key
, &name
, req
->type
, data
, datalen
);
1822 release_object( key
);
1826 /* retrieve the value of a registry key */
1827 DECL_HANDLER(get_key_value
)
1830 struct unicode_str name
;
1833 if ((key
= get_hkey_obj( req
->hkey
, KEY_QUERY_VALUE
)))
1835 get_req_unicode_str( &name
);
1836 get_value( key
, &name
, &reply
->type
, &reply
->total
);
1837 release_object( key
);
1841 /* enumerate the value of a registry key */
1842 DECL_HANDLER(enum_key_value
)
1846 if ((key
= get_hkey_obj( req
->hkey
, KEY_QUERY_VALUE
)))
1848 enum_value( key
, req
->index
, req
->info_class
, reply
);
1849 release_object( key
);
1853 /* delete a value of a registry key */
1854 DECL_HANDLER(delete_key_value
)
1857 struct unicode_str name
;
1859 if ((key
= get_hkey_obj( req
->hkey
, KEY_SET_VALUE
)))
1861 get_req_unicode_str( &name
);
1862 delete_value( key
, &name
);
1863 release_object( key
);
1867 /* load a registry branch from a file */
1868 DECL_HANDLER(load_registry
)
1870 struct key
*key
, *parent
;
1871 struct token
*token
= thread_get_impersonation_token( current
);
1872 struct unicode_str name
;
1874 const LUID_AND_ATTRIBUTES privs
[] =
1876 { SeBackupPrivilege
, 0 },
1877 { SeRestorePrivilege
, 0 },
1880 if (!token
|| !token_check_privileges( token
, TRUE
, privs
,
1881 sizeof(privs
)/sizeof(privs
[0]), NULL
))
1883 set_error( STATUS_PRIVILEGE_NOT_HELD
);
1887 if ((parent
= get_parent_hkey_obj( req
->hkey
)))
1890 get_req_path( &name
, !req
->hkey
);
1891 if ((key
= create_key( parent
, &name
, NULL
, KEY_DIRTY
, time(NULL
), &dummy
)))
1893 load_registry( key
, req
->file
);
1894 release_object( key
);
1896 release_object( parent
);
1900 DECL_HANDLER(unload_registry
)
1903 struct token
*token
= thread_get_impersonation_token( current
);
1905 const LUID_AND_ATTRIBUTES privs
[] =
1907 { SeBackupPrivilege
, 0 },
1908 { SeRestorePrivilege
, 0 },
1911 if (!token
|| !token_check_privileges( token
, TRUE
, privs
,
1912 sizeof(privs
)/sizeof(privs
[0]), NULL
))
1914 set_error( STATUS_PRIVILEGE_NOT_HELD
);
1918 if ((key
= get_hkey_obj( req
->hkey
, 0 )))
1920 delete_key( key
, 1 ); /* FIXME */
1921 release_object( key
);
1925 /* save a registry branch to a file */
1926 DECL_HANDLER(save_registry
)
1930 if (!thread_single_check_privilege( current
, &SeBackupPrivilege
))
1932 set_error( STATUS_PRIVILEGE_NOT_HELD
);
1936 if ((key
= get_hkey_obj( req
->hkey
, 0 )))
1938 save_registry( key
, req
->file
);
1939 release_object( key
);
1943 /* add a registry key change notification */
1944 DECL_HANDLER(set_registry_notification
)
1947 struct event
*event
;
1948 struct notify
*notify
;
1950 key
= get_hkey_obj( req
->hkey
, KEY_NOTIFY
);
1953 event
= get_event_obj( current
->process
, req
->event
, SYNCHRONIZE
);
1956 notify
= find_notify( key
, current
->process
, req
->hkey
);
1960 release_object( notify
->event
);
1961 grab_object( event
);
1962 notify
->event
= event
;
1966 notify
= mem_alloc( sizeof(*notify
) );
1969 grab_object( event
);
1970 notify
->event
= event
;
1971 notify
->subtree
= req
->subtree
;
1972 notify
->filter
= req
->filter
;
1973 notify
->hkey
= req
->hkey
;
1974 notify
->process
= current
->process
;
1975 list_add_head( &key
->notify_list
, ¬ify
->entry
);
1978 release_object( event
);
1980 release_object( key
);