blob: 2dc640e37cb224d700570245a6b77eff379325e5 [file] [log] [blame]
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001/*
2 * Server-side registry management
3 *
4 * Copyright (C) 1999 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000019 */
20
21/* To do:
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000022 * - symbolic links
23 */
24
Alexandre Julliard5769d1d2002-04-26 19:05:15 +000025#include "config.h"
26#include "wine/port.h"
27
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000028#include <assert.h>
Alexandre Julliard7e495e12000-07-25 21:01:59 +000029#include <ctype.h>
Alexandre Julliardc9709042000-04-16 17:21:13 +000030#include <errno.h>
31#include <fcntl.h>
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000032#include <limits.h>
33#include <stdio.h>
Alexandre Julliard62986a02003-09-07 05:08:14 +000034#include <stdarg.h>
Alexandre Julliardc9709042000-04-16 17:21:13 +000035#include <string.h>
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000036#include <stdlib.h>
Alexandre Julliardc9709042000-04-16 17:21:13 +000037#include <sys/stat.h>
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000038#include <unistd.h>
Alexandre Julliard863637b2003-01-30 00:26:44 +000039
Ge van Geldorp1a1583a2005-11-28 17:32:54 +010040#include "ntstatus.h"
41#define WIN32_NO_STATUS
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000042#include "object.h"
Alexandre Julliard863637b2003-01-30 00:26:44 +000043#include "file.h"
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000044#include "handle.h"
45#include "request.h"
46#include "unicode.h"
Robert Shearmanb3957e32005-05-05 16:57:55 +000047#include "security.h"
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000048
Patrik Stridvall9c1de6d2002-09-12 22:07:02 +000049#include "winternl.h"
Alexandre Julliard88e42612002-06-20 23:18:56 +000050#include "wine/library.h"
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000051
Mike McCormack11f4b442002-11-25 02:47:32 +000052struct notify
53{
Alexandre Julliard68abbc82005-02-24 19:43:53 +000054 struct list entry; /* entry in list of notifications */
Mike McCormack11f4b442002-11-25 02:47:32 +000055 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 */
Alexandre Julliard9b3b7ca2005-06-09 20:36:08 +000059 struct process *process; /* process in which the hkey is valid */
Mike McCormack11f4b442002-11-25 02:47:32 +000060};
61
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000062/* a registry key */
63struct key
64{
65 struct object obj; /* object header */
66 WCHAR *name; /* key name */
67 WCHAR *class; /* key class */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +000068 unsigned short namelen; /* length of key name */
69 unsigned short classlen; /* length of class name */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000070 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 */
Alexandre Julliarddcab7062005-03-14 11:00:43 +000077 unsigned int flags; /* flags */
Alexandre Julliard3343c402008-12-06 17:29:01 +010078 timeout_t modif; /* last modification time */
Alexandre Julliard68abbc82005-02-24 19:43:53 +000079 struct list notify_list; /* list of notifications */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000080};
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 */
Alexandre Julliard88e42612002-06-20 23:18:56 +000085#define KEY_DIRTY 0x0004 /* key has been modified */
Alexandre Julliardb139b932010-02-15 21:04:26 +010086#define KEY_SYMLINK 0x0008 /* key is a symbolic link */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000087
88/* a key value */
89struct key_value
90{
91 WCHAR *name; /* value name */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +000092 unsigned short namelen; /* length of value name */
93 unsigned short type; /* value type */
Alexandre Julliard0f273c12006-07-26 10:43:25 +020094 data_size_t len; /* value data length in bytes */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +000095 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
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000101#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 */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000103
Alexandre Julliard7e9757c2004-05-06 23:42:04 +0000104/* the root of the registry tree */
Alexandre Julliard6c8d9172000-08-26 04:40:07 +0000105static struct key *root_key;
106
Alexandre Julliard3343c402008-12-06 17:29:01 +0100107static const timeout_t ticks_1601_to_1970 = (timeout_t)86400 * (369 * 365 + 89) * TICKS_PER_SEC;
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200108static const timeout_t save_period = 30 * -TICKS_PER_SEC; /* delay between periodic saves */
Alexandre Julliardc9709042000-04-16 17:21:13 +0000109static struct timeout_user *save_timeout_user; /* saving timer */
110
Alexandre Julliardb139b932010-02-15 21:04:26 +0100111static const WCHAR root_name[] = { '\\','R','e','g','i','s','t','r','y','\\' };
112static const WCHAR symlink_value[] = {'S','y','m','b','o','l','i','c','L','i','n','k','V','a','l','u','e'};
113static const struct unicode_str symlink_str = { symlink_value, sizeof(symlink_value) };
114
Alexandre Julliarddcab7062005-03-14 11:00:43 +0000115static void set_periodic_save_timer(void);
Alexandre Julliardb139b932010-02-15 21:04:26 +0100116static struct key_value *find_value( const struct key *key, const struct unicode_str *name, int *index );
Alexandre Julliarddcab7062005-03-14 11:00:43 +0000117
Alexandre Julliardc9709042000-04-16 17:21:13 +0000118/* information about where to save a registry branch */
119struct save_branch_info
120{
121 struct key *key;
Alexandre Julliard161160f2008-04-17 12:41:34 +0200122 const char *path;
Alexandre Julliardc9709042000-04-16 17:21:13 +0000123};
124
Alexandre Julliardc07ce052004-05-07 04:13:21 +0000125#define MAX_SAVE_BRANCH_INFO 3
Alexandre Julliardc9709042000-04-16 17:21:13 +0000126static int save_branch_count;
127static struct save_branch_info save_branch_info[MAX_SAVE_BRANCH_INFO];
128
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000129
Alexandre Julliard53f3a831999-11-24 04:19:43 +0000130/* information about a file being loaded */
131struct file_load_info
132{
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000133 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 */
Alexandre Julliard53f3a831999-11-24 04:19:43 +0000140};
141
142
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000143static void key_dump( struct object *obj, int verbose );
Alexandre Julliard32a93962005-12-12 15:02:26 +0100144static unsigned int key_map_access( struct object *obj, unsigned int access );
Alexandre Julliardb9b1ea92005-06-09 15:39:52 +0000145static int key_close_handle( struct object *obj, struct process *process, obj_handle_t handle );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000146static void key_destroy( struct object *obj );
147
148static const struct object_ops key_ops =
149{
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000150 sizeof(struct key), /* size */
151 key_dump, /* dump */
Alexandre Julliard8382eb02007-12-05 18:16:42 +0100152 no_get_type, /* get_type */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000153 no_add_queue, /* add_queue */
154 NULL, /* remove_queue */
155 NULL, /* signaled */
156 NULL, /* satisfied */
Mike McCormackf92fff62005-04-24 17:35:52 +0000157 no_signal, /* signal */
Alexandre Julliard1ab243b2000-12-19 02:12:45 +0000158 no_get_fd, /* get_fd */
Alexandre Julliard32a93962005-12-12 15:02:26 +0100159 key_map_access, /* map_access */
Rob Shearmanc1707d82007-10-03 13:10:37 +0100160 default_get_sd, /* get_sd */
161 default_set_sd, /* set_sd */
Vitaliy Margolenbaffcb92005-11-22 14:55:42 +0000162 no_lookup_name, /* lookup_name */
Alexandre Julliard7e71c1d2007-03-22 11:44:29 +0100163 no_open_file, /* open_file */
Alexandre Julliardb9b1ea92005-06-09 15:39:52 +0000164 key_close_handle, /* close_handle */
Alexandre Julliard1dca5e22000-01-01 00:56:27 +0000165 key_destroy /* destroy */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000166};
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
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000178/* dump the full path of a key */
Alexandre Julliard88e42612002-06-20 23:18:56 +0000179static void dump_path( const struct key *key, const struct key *base, FILE *f )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000180{
Alexandre Julliard6c8d9172000-08-26 04:40:07 +0000181 if (key->parent && key->parent != base)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000182 {
Juergen Schmied5d0ae2d2000-01-09 21:07:01 +0000183 dump_path( key->parent, base, f );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000184 fprintf( f, "\\\\" );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000185 }
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000186 dump_strW( key->name, key->namelen / sizeof(WCHAR), f, "[]" );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000187}
188
189/* dump a value to a text file */
Alexandre Julliard88e42612002-06-20 23:18:56 +0000190static void dump_value( const struct key_value *value, FILE *f )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000191{
Alexandre Julliardb647ded2008-01-07 21:06:49 +0100192 unsigned int i, dw;
Hans Leidekker719a7892004-09-22 02:46:38 +0000193 int count;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000194
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000195 if (value->namelen)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000196 {
197 fputc( '\"', f );
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000198 count = 1 + dump_strW( value->name, value->namelen / sizeof(WCHAR), f, "\"\"" );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000199 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:
Alexandre Julliardb647ded2008-01-07 21:06:49 +0100208 /* 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 );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000213 fputc( '\"', f );
Marcus Meissner368d9352008-01-09 22:56:06 +0100214 dump_strW( (WCHAR *)value->data, value->len / sizeof(WCHAR), f, "\"\"" );
Alexandre Julliardb647ded2008-01-07 21:06:49 +0100215 fprintf( f, "\"\n" );
216 return;
217
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000218 case REG_DWORD:
Alexandre Julliardb647ded2008-01-07 21:06:49 +0100219 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)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000231 {
Alexandre Julliardb647ded2008-01-07 21:06:49 +0100232 fputc( ',', f );
233 if (++count > 76)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000234 {
Alexandre Julliardb647ded2008-01-07 21:06:49 +0100235 fprintf( f, "\\\n " );
236 count = 2;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000237 }
238 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000239 }
240 fputc( '\n', f );
241}
242
243/* save a registry and all its subkeys to a text file */
Alexandre Julliard88e42612002-06-20 23:18:56 +0000244static void save_subkeys( const struct key *key, const struct key *base, FILE *f )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000245{
246 int i;
247
248 if (key->flags & KEY_VOLATILE) return;
Alexandre Julliard2a378672010-02-16 12:26:15 +0100249 /* save key if it has either some values or no subkeys, or needs special options */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000250 /* keys with no values but subkeys are saved implicitly by saving the subkeys */
Alexandre Julliard2a378672010-02-16 12:26:15 +0100251 if ((key->last_value >= 0) || (key->last_subkey == -1) || key->class)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000252 {
253 fprintf( f, "\n[" );
Alexandre Julliard6c8d9172000-08-26 04:40:07 +0000254 if (key != base) dump_path( key, base, f );
Alexandre Julliard3343c402008-12-06 17:29:01 +0100255 fprintf( f, "] %u\n", (unsigned int)((key->modif - ticks_1601_to_1970) / TICKS_PER_SEC) );
Alexandre Julliard2a378672010-02-16 12:26:15 +0100256 if (key->class)
257 {
258 fprintf( f, "#class=\"" );
259 dump_strW( key->class, key->classlen / sizeof(WCHAR), f, "\"\"" );
260 fprintf( f, "\"\n" );
261 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000262 for (i = 0; i <= key->last_value; i++) dump_value( &key->values[i], f );
263 }
Juergen Schmied5d0ae2d2000-01-09 21:07:01 +0000264 for (i = 0; i <= key->last_subkey; i++) save_subkeys( key->subkeys[i], base, f );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000265}
266
Alexandre Julliard88e42612002-06-20 23:18:56 +0000267static void dump_operation( const struct key *key, const struct key_value *value, const char *op )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000268{
269 fprintf( stderr, "%s key ", op );
Juergen Schmied5d0ae2d2000-01-09 21:07:01 +0000270 if (key) dump_path( key, NULL, stderr );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000271 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
280static 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 );
Juergen Schmied5d0ae2d2000-01-09 21:07:01 +0000285 dump_path( key, NULL, stderr );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000286 fprintf( stderr, "\n" );
287}
288
Mike McCormack11f4b442002-11-25 02:47:32 +0000289/* notify waiter and maybe delete the notification */
290static void do_notification( struct key *key, struct notify *notify, int del )
291{
Robert Shearman37957092005-06-10 19:54:46 +0000292 if (notify->event)
Mike McCormack11f4b442002-11-25 02:47:32 +0000293 {
294 set_event( notify->event );
295 release_object( notify->event );
296 notify->event = NULL;
297 }
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000298 if (del)
299 {
300 list_remove( &notify->entry );
301 free( notify );
302 }
Mike McCormack11f4b442002-11-25 02:47:32 +0000303}
304
Alexandre Julliard9b3b7ca2005-06-09 20:36:08 +0000305static inline struct notify *find_notify( struct key *key, struct process *process, obj_handle_t hkey )
Mike McCormack11f4b442002-11-25 02:47:32 +0000306{
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000307 struct notify *notify;
Mike McCormack11f4b442002-11-25 02:47:32 +0000308
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000309 LIST_FOR_EACH_ENTRY( notify, &key->notify_list, struct notify, entry )
310 {
Alexandre Julliard9b3b7ca2005-06-09 20:36:08 +0000311 if (notify->process == process && notify->hkey == hkey) return notify;
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000312 }
313 return NULL;
Mike McCormack11f4b442002-11-25 02:47:32 +0000314}
315
Alexandre Julliard32a93962005-12-12 15:02:26 +0100316static 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
Mike McCormack11f4b442002-11-25 02:47:32 +0000325/* close the notification associated with a handle */
Alexandre Julliardb9b1ea92005-06-09 15:39:52 +0000326static int key_close_handle( struct object *obj, struct process *process, obj_handle_t handle )
Mike McCormack11f4b442002-11-25 02:47:32 +0000327{
328 struct key * key = (struct key *) obj;
Alexandre Julliard9b3b7ca2005-06-09 20:36:08 +0000329 struct notify *notify = find_notify( key, process, handle );
Alexandre Julliardb9b1ea92005-06-09 15:39:52 +0000330 if (notify) do_notification( key, notify, 1 );
331 return 1; /* ok to close */
Mike McCormack11f4b442002-11-25 02:47:32 +0000332}
333
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000334static void key_destroy( struct object *obj )
335{
336 int i;
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000337 struct list *ptr;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000338 struct key *key = (struct key *)obj;
339 assert( obj->ops == &key_ops );
340
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200341 free( key->name );
342 free( key->class );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000343 for (i = 0; i <= key->last_value; i++)
344 {
Lionel Debrouxe122f812007-10-20 09:37:43 +0200345 free( key->values[i].name );
346 free( key->values[i].data );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000347 }
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200348 free( key->values );
Alexandre Julliard53f3a831999-11-24 04:19:43 +0000349 for (i = 0; i <= key->last_subkey; i++)
350 {
351 key->subkeys[i]->parent = NULL;
352 release_object( key->subkeys[i] );
353 }
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200354 free( key->subkeys );
Mike McCormack11f4b442002-11-25 02:47:32 +0000355 /* unconditionally notify everything waiting on this key */
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000356 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 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000361}
362
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000363/* get the request vararg as registry path */
Andrew Talbotb1788c82007-03-17 10:52:14 +0000364static inline void get_req_path( struct unicode_str *str, int skip_root )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000365{
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000366 str->str = get_req_data();
367 str->len = (get_req_data_size() / sizeof(WCHAR)) * sizeof(WCHAR);
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000368
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000369 if (skip_root && str->len >= sizeof(root_name) &&
370 !memicmpW( str->str, root_name, sizeof(root_name)/sizeof(WCHAR) ))
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000371 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000372 str->str += sizeof(root_name)/sizeof(WCHAR);
373 str->len -= sizeof(root_name);
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000374 }
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000375}
376
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000377/* return the next token in a given path */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000378/* token->str must point inside the path, or be NULL for the first call */
379static struct unicode_str *get_path_token( const struct unicode_str *path, struct unicode_str *token )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000380{
Alexandre Julliard0f273c12006-07-26 10:43:25 +0200381 data_size_t i = 0, len = path->len / sizeof(WCHAR);
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000382
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000383 if (!token->str) /* first time */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000384 {
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000385 /* path cannot start with a backslash */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000386 if (len && path->str[0] == '\\')
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000387 {
388 set_error( STATUS_OBJECT_PATH_INVALID );
389 return NULL;
390 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000391 }
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000392 else
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000393 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000394 i = token->str - path->str;
395 i += token->len / sizeof(WCHAR);
396 while (i < len && path->str[i] == '\\') i++;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000397 }
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000398 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;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000402}
403
404/* allocate a key object */
Alexandre Julliard3343c402008-12-06 17:29:01 +0100405static struct key *alloc_key( const struct unicode_str *name, timeout_t modif )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000406{
407 struct key *key;
Alexandre Julliarde66207e2003-02-19 00:33:32 +0000408 if ((key = alloc_object( &key_ops )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000409 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000410 key->name = NULL;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000411 key->class = NULL;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000412 key->namelen = name->len;
413 key->classlen = 0;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000414 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;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000421 key->modif = modif;
422 key->parent = NULL;
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000423 list_init( &key->notify_list );
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000424 if (name->len && !(key->name = memdup( name->str, name->len )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000425 {
426 release_object( key );
427 key = NULL;
428 }
429 }
430 return key;
431}
432
Alexandre Julliard88e42612002-06-20 23:18:56 +0000433/* mark a key and all its parents as dirty (modified) */
434static 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) */
445static 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
Mike McCormack11f4b442002-11-25 02:47:32 +0000455/* go through all the notifications and send them if necessary */
Robert Shearmanc5165712005-05-25 18:41:09 +0000456static void check_notify( struct key *key, unsigned int change, int not_subtree )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000457{
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000458 struct list *ptr, *next;
459
460 LIST_FOR_EACH_SAFE( ptr, next, &key->notify_list )
Mike McCormack11f4b442002-11-25 02:47:32 +0000461 {
Alexandre Julliard68abbc82005-02-24 19:43:53 +0000462 struct notify *n = LIST_ENTRY( ptr, struct notify, entry );
Mike McCormack11f4b442002-11-25 02:47:32 +0000463 if ( ( not_subtree || n->subtree ) && ( change & n->filter ) )
464 do_notification( key, n, 0 );
Mike McCormack11f4b442002-11-25 02:47:32 +0000465 }
466}
467
468/* update key modification time */
469static void touch_key( struct key *key, unsigned int change )
470{
471 struct key *k;
472
Alexandre Julliard3343c402008-12-06 17:29:01 +0100473 key->modif = current_time;
Alexandre Julliard88e42612002-06-20 23:18:56 +0000474 make_dirty( key );
Mike McCormack11f4b442002-11-25 02:47:32 +0000475
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 );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000480}
481
482/* try to grow the array of subkeys; return 1 if OK, 0 on error */
483static 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 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000493 set_error( STATUS_NO_MEMORY );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000494 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 */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000508static struct key *alloc_subkey( struct key *parent, const struct unicode_str *name,
Alexandre Julliard3343c402008-12-06 17:29:01 +0100509 int index, timeout_t modif )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000510{
511 struct key *key;
512 int i;
513
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000514 if (name->len > MAX_NAME_LEN * sizeof(WCHAR))
515 {
516 set_error( STATUS_NAME_TOO_LONG );
517 return NULL;
518 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000519 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 */
535static 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 );
Vincent Béron9a624912002-05-31 23:06:46 +0000549
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000550 /* try to shrink the array */
Alexandre Julliard88e42612002-06-20 23:18:56 +0000551 nb_subkeys = parent->nb_subkeys;
552 if (nb_subkeys > MIN_SUBKEYS && parent->last_subkey < nb_subkeys / 2)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000553 {
554 struct key **new_subkeys;
555 nb_subkeys -= nb_subkeys / 3; /* shrink by 33% */
556 if (nb_subkeys < MIN_SUBKEYS) nb_subkeys = MIN_SUBKEYS;
Alexandre Julliard88e42612002-06-20 23:18:56 +0000557 if (!(new_subkeys = realloc( parent->subkeys, nb_subkeys * sizeof(*new_subkeys) ))) return;
558 parent->subkeys = new_subkeys;
559 parent->nb_subkeys = nb_subkeys;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000560 }
561}
562
563/* find the named child of a given key and return its index */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000564static struct key *find_subkey( const struct key *key, const struct unicode_str *name, int *index )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000565{
566 int i, min, max, res;
Alexandre Julliard0f273c12006-07-26 10:43:25 +0200567 data_size_t len;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000568
569 min = 0;
570 max = key->last_subkey;
571 while (min <= max)
572 {
573 i = (min + max) / 2;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000574 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)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000578 {
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
Alexandre Julliardb139b932010-02-15 21:04:26 +0100589/* follow a symlink and return the resolved key */
590static 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
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000619/* open a subkey */
Alexandre Julliardb139b932010-02-15 21:04:26 +0100620static struct key *open_key( struct key *key, const struct unicode_str *name, unsigned int attributes )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000621{
622 int index;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000623 struct unicode_str token;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000624
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000625 token.str = NULL;
626 if (!get_path_token( name, &token )) return NULL;
627 while (token.len)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000628 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000629 if (!(key = find_subkey( key, &token, &index )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000630 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000631 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
Alexandre Julliardb139b932010-02-15 21:04:26 +0100632 return NULL;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000633 }
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000634 get_path_token( name, &token );
Alexandre Julliardb139b932010-02-15 21:04:26 +0100635 if (!token.len) break;
636 if (!(key = follow_symlink( key, 0 )))
637 {
638 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
639 return NULL;
640 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000641 }
642
Alexandre Julliardb139b932010-02-15 21:04:26 +0100643 if (!(attributes & OBJ_OPENLINK) && !(key = follow_symlink( key, 0 )))
644 {
645 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
646 return NULL;
647 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000648 if (debug_level > 1) dump_operation( key, NULL, "Open" );
Alexandre Julliardb139b932010-02-15 21:04:26 +0100649 grab_object( key );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000650 return key;
651}
652
653/* create a subkey */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000654static struct key *create_key( struct key *key, const struct unicode_str *name,
Alexandre Julliardb139b932010-02-15 21:04:26 +0100655 const struct unicode_str *class, int flags, unsigned int options,
656 unsigned int attributes, timeout_t modif, int *created )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000657{
658 struct key *base;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000659 int index;
660 struct unicode_str token;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000661
662 if (key->flags & KEY_DELETED) /* we cannot create a subkey under a deleted key */
663 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000664 set_error( STATUS_KEY_DELETED );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000665 return NULL;
666 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000667
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000668 token.str = NULL;
669 if (!get_path_token( name, &token )) return NULL;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000670 *created = 0;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000671 while (token.len)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000672 {
673 struct key *subkey;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000674 if (!(subkey = find_subkey( key, &token, &index ))) break;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000675 key = subkey;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000676 get_path_token( name, &token );
Alexandre Julliardb139b932010-02-15 21:04:26 +0100677 if (!token.len) break;
678 if (!(subkey = follow_symlink( subkey, 0 )))
679 {
680 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
681 return NULL;
682 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000683 }
684
685 /* create the remaining part */
686
Alexandre Julliardb139b932010-02-15 21:04:26 +0100687 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)
Alexandre Julliard72ba00f2009-11-20 11:39:55 +0100706 {
707 set_error( STATUS_CHILD_MUST_BE_VOLATILE );
708 return NULL;
709 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000710 *created = 1;
Alexandre Julliard88e42612002-06-20 23:18:56 +0000711 if (flags & KEY_DIRTY) make_dirty( key );
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000712 if (!(key = alloc_subkey( key, &token, index, modif ))) return NULL;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000713 base = key;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000714 for (;;)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000715 {
716 key->flags |= flags;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000717 get_path_token( name, &token );
718 if (!token.len) break;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000719 /* we know the index is always 0 in a new key */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000720 if (!(key = alloc_subkey( key, &token, 0, modif )))
721 {
722 free_subkey( base, index );
723 return NULL;
724 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000725 }
Alexandre Julliardb139b932010-02-15 21:04:26 +0100726 /* FIXME: no saving of symlinks yet */
727 if (options & REG_OPTION_CREATE_LINK) key->flags |= KEY_SYMLINK | KEY_VOLATILE;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000728
729 done:
730 if (debug_level > 1) dump_operation( key, NULL, "Create" );
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000731 if (class && class->len)
732 {
733 key->classlen = class->len;
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200734 free(key->class);
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000735 if (!(key->class = memdup( class->str, key->classlen ))) key->classlen = 0;
736 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000737 grab_object( key );
738 return key;
739}
740
Alexandre Julliard454355e2000-10-02 03:46:58 +0000741/* query information about a key or a subkey */
Alexandre Julliard88e42612002-06-20 23:18:56 +0000742static void enum_key( const struct key *key, int index, int info_class,
743 struct enum_key_reply *reply )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000744{
Alexandre Julliard454355e2000-10-02 03:46:58 +0000745 int i;
Alexandre Julliard0f273c12006-07-26 10:43:25 +0200746 data_size_t len, namelen, classlen;
Michael Stefaniuca6249772006-07-25 10:30:04 +0200747 data_size_t max_subkey = 0, max_class = 0;
748 data_size_t max_value = 0, max_data = 0;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000749 char *data;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000750
Alexandre Julliard454355e2000-10-02 03:46:58 +0000751 if (index != -1) /* -1 means use the specified key directly */
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000752 {
Alexandre Julliard454355e2000-10-02 03:46:58 +0000753 if ((index < 0) || (index > key->last_subkey))
754 {
755 set_error( STATUS_NO_MORE_ENTRIES );
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000756 return;
Alexandre Julliard454355e2000-10-02 03:46:58 +0000757 }
758 key = key->subkeys[index];
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000759 }
Alexandre Julliard454355e2000-10-02 03:46:58 +0000760
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000761 namelen = key->namelen;
762 classlen = key->classlen;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000763
764 switch(info_class)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000765 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000766 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:
Alexandre Julliard454355e2000-10-02 03:46:58 +0000776 for (i = 0; i <= key->last_subkey; i++)
777 {
778 struct key *subkey = key->subkeys[i];
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000779 len = subkey->namelen / sizeof(WCHAR);
Alexandre Julliard454355e2000-10-02 03:46:58 +0000780 if (len > max_subkey) max_subkey = len;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000781 len = subkey->classlen / sizeof(WCHAR);
Alexandre Julliard454355e2000-10-02 03:46:58 +0000782 if (len > max_class) max_class = len;
783 }
784 for (i = 0; i <= key->last_value; i++)
785 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000786 len = key->values[i].namelen / sizeof(WCHAR);
Alexandre Julliard454355e2000-10-02 03:46:58 +0000787 if (len > max_value) max_value = len;
788 len = key->values[i].len;
789 if (len > max_data) max_data = len;
790 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000791 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;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000800 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000801 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 )))
Alexandre Julliard454355e2000-10-02 03:46:58 +0000808 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000809 if (len > namelen)
810 {
811 reply->namelen = namelen;
812 memcpy( data, key->name, namelen );
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000813 memcpy( data + namelen, key->class, len - namelen );
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000814 }
815 else
816 {
817 reply->namelen = len;
818 memcpy( data, key->name, len );
819 }
Alexandre Julliard454355e2000-10-02 03:46:58 +0000820 }
Alexandre Julliard454355e2000-10-02 03:46:58 +0000821 if (debug_level > 1) dump_operation( key, NULL, "Enum" );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000822}
823
824/* delete a key and its values */
Mike McCormack5ac945c2003-08-19 03:08:17 +0000825static int delete_key( struct key *key, int recurse )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000826{
827 int index;
828 struct key *parent;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000829
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000830 /* must find parent and index */
Alexandre Julliard7e9757c2004-05-06 23:42:04 +0000831 if (key == root_key)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000832 {
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000833 set_error( STATUS_ACCESS_DENIED );
Mike McCormack5ac945c2003-08-19 03:08:17 +0000834 return -1;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000835 }
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000836 if (!(parent = key->parent) || (key->flags & KEY_DELETED))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000837 {
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000838 set_error( STATUS_KEY_DELETED );
Mike McCormack5ac945c2003-08-19 03:08:17 +0000839 return -1;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000840 }
Mike McCormack5ac945c2003-08-19 03:08:17 +0000841
842 while (recurse && (key->last_subkey>=0))
Robert Shearman37957092005-06-10 19:54:46 +0000843 if (0 > delete_key(key->subkeys[key->last_subkey], 1))
Mike McCormack5ac945c2003-08-19 03:08:17 +0000844 return -1;
845
Alexandre Julliardbcf393a2000-10-01 01:44:50 +0000846 for (index = 0; index <= parent->last_subkey; index++)
847 if (parent->subkeys[index] == key) break;
848 assert( index <= parent->last_subkey );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000849
Alexandre Julliard7e9757c2004-05-06 23:42:04 +0000850 /* we can only delete a key that has no subkeys */
851 if (key->last_subkey >= 0)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000852 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000853 set_error( STATUS_ACCESS_DENIED );
Mike McCormack5ac945c2003-08-19 03:08:17 +0000854 return -1;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000855 }
Mike McCormack5ac945c2003-08-19 03:08:17 +0000856
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000857 if (debug_level > 1) dump_operation( key, NULL, "Delete" );
858 free_subkey( parent, index );
Mike McCormack11f4b442002-11-25 02:47:32 +0000859 touch_key( parent, REG_NOTIFY_CHANGE_NAME );
Mike McCormack5ac945c2003-08-19 03:08:17 +0000860 return 0;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000861}
862
863/* try to grow the array of values; return 1 if OK, 0 on error */
864static 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 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +0000874 set_error( STATUS_NO_MEMORY );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000875 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 */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000889static struct key_value *find_value( const struct key *key, const struct unicode_str *name, int *index )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000890{
891 int i, min, max, res;
Alexandre Julliard0f273c12006-07-26 10:43:25 +0200892 data_size_t len;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000893
894 min = 0;
895 max = key->last_value;
896 while (min <= max)
897 {
898 i = (min + max) / 2;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000899 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)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000903 {
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
Alexandre Julliard88e42612002-06-20 23:18:56 +0000914/* insert a new value; the index must have been returned by find_value */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000915static struct key_value *insert_value( struct key *key, const struct unicode_str *name, int index )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000916{
917 struct key_value *value;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000918 WCHAR *new_name = NULL;
Alexandre Julliard88e42612002-06-20 23:18:56 +0000919 int i;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000920
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000921 if (name->len > MAX_VALUE_LEN * sizeof(WCHAR))
922 {
923 set_error( STATUS_NAME_TOO_LONG );
924 return NULL;
925 }
Alexandre Julliard88e42612002-06-20 23:18:56 +0000926 if (key->last_value + 1 == key->nb_values)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000927 {
Alexandre Julliard88e42612002-06-20 23:18:56 +0000928 if (!grow_values( key )) return NULL;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000929 }
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000930 if (name->len && !(new_name = memdup( name->str, name->len ))) return NULL;
Alexandre Julliard88e42612002-06-20 23:18:56 +0000931 for (i = ++key->last_value; i > index; i--) key->values[i] = key->values[i - 1];
932 value = &key->values[index];
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000933 value->name = new_name;
934 value->namelen = name->len;
935 value->len = 0;
936 value->data = NULL;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000937 return value;
938}
939
940/* set a key value */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +0000941static void set_value( struct key *key, const struct unicode_str *name,
Alexandre Julliard0f273c12006-07-26 10:43:25 +0200942 int type, const void *data, data_size_t len )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000943{
944 struct key_value *value;
945 void *ptr = NULL;
Alexandre Julliard88e42612002-06-20 23:18:56 +0000946 int index;
Alexandre Julliarda01004d2000-05-14 22:57:57 +0000947
Alexandre Julliard88e42612002-06-20 23:18:56 +0000948 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
Alexandre Julliardb139b932010-02-15 21:04:26 +0100959 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
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000969 if (len && !(ptr = memdup( data, len ))) return;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000970
Alexandre Julliard88e42612002-06-20 23:18:56 +0000971 if (!value)
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000972 {
Alexandre Julliard88e42612002-06-20 23:18:56 +0000973 if (!(value = insert_value( key, name, index )))
974 {
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200975 free( ptr );
Alexandre Julliard88e42612002-06-20 23:18:56 +0000976 return;
977 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000978 }
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +0200979 else free( value->data ); /* already existing, free previous data */
Alexandre Julliard88e42612002-06-20 23:18:56 +0000980
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000981 value->type = type;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000982 value->len = len;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000983 value->data = ptr;
Mike McCormack11f4b442002-11-25 02:47:32 +0000984 touch_key( key, REG_NOTIFY_CHANGE_LAST_SET );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000985 if (debug_level > 1) dump_operation( key, value, "Set" );
986}
987
988/* get a key value */
Alexandre Julliard0f273c12006-07-26 10:43:25 +0200989static void get_value( struct key *key, const struct unicode_str *name, int *type, data_size_t *len )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000990{
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;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000998 if (value->data) set_reply_data( value->data, min( value->len, get_reply_max_size() ));
Alexandre Julliardd7e85d61999-11-23 19:39:11 +0000999 if (debug_level > 1) dump_operation( key, value, "Get" );
1000 }
1001 else
1002 {
1003 *type = -1;
Alexandre Julliardcb1fc732000-01-24 21:58:06 +00001004 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001005 }
1006}
1007
1008/* enumerate a key value */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001009static void enum_value( struct key *key, int i, int info_class, struct enum_key_value_reply *reply )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001010{
1011 struct key_value *value;
1012
Alexandre Julliardef886372000-04-04 19:33:27 +00001013 if (i < 0 || i > key->last_value) set_error( STATUS_NO_MORE_ENTRIES );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001014 else
1015 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001016 void *data;
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001017 data_size_t namelen, maxlen;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001018
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001019 value = &key->values[i];
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001020 reply->type = value->type;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001021 namelen = value->namelen;
Alexandre Julliard0b6a79c2000-12-15 20:57:00 +00001022
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001023 switch(info_class)
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001024 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001025 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 }
Alexandre Julliard0b6a79c2000-12-15 20:57:00 +00001039
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001040 maxlen = min( reply->total, get_reply_max_size() );
1041 if (maxlen && ((data = set_reply_data_size( maxlen ))))
1042 {
1043 if (maxlen > namelen)
Alexandre Julliard0b6a79c2000-12-15 20:57:00 +00001044 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001045 reply->namelen = namelen;
1046 memcpy( data, value->name, namelen );
1047 memcpy( (char *)data + namelen, value->data, maxlen - namelen );
Alexandre Julliard0b6a79c2000-12-15 20:57:00 +00001048 }
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001049 else
Alexandre Julliard0b6a79c2000-12-15 20:57:00 +00001050 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001051 reply->namelen = maxlen;
1052 memcpy( data, value->name, maxlen );
Alexandre Julliard0b6a79c2000-12-15 20:57:00 +00001053 }
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001054 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001055 if (debug_level > 1) dump_operation( key, value, "Enum" );
1056 }
1057}
1058
1059/* delete a value */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001060static void delete_value( struct key *key, const struct unicode_str *name )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001061{
1062 struct key_value *value;
1063 int i, index, nb_values;
1064
1065 if (!(value = find_value( key, name, &index )))
1066 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +00001067 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001068 return;
1069 }
1070 if (debug_level > 1) dump_operation( key, value, "Delete" );
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +02001071 free( value->name );
1072 free( value->data );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001073 for (i = index; i < key->last_value; i++) key->values[i] = key->values[i + 1];
1074 key->last_value--;
Mike McCormack11f4b442002-11-25 02:47:32 +00001075 touch_key( key, REG_NOTIFY_CHANGE_LAST_SET );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001076
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 }
Alexandre Julliard6c8d9172000-08-26 04:40:07 +00001088}
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001089
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001090/* get the registry key corresponding to an hkey handle */
Alexandre Julliarddd77d1a2006-07-10 11:53:23 +02001091static 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 */
1097static inline struct key *get_parent_hkey_obj( obj_handle_t hkey )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001098{
Alexandre Julliard6c8d9172000-08-26 04:40:07 +00001099 if (!hkey) return (struct key *)grab_object( root_key );
Alexandre Julliarddd77d1a2006-07-10 11:53:23 +02001100 return (struct key *)get_handle_obj( current->process, hkey, 0, &key_ops );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001101}
1102
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001103/* read a line from the input file */
1104static 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 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +00001128 set_error( STATUS_NO_MEMORY );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001129 return -1;
1130 }
1131 info->buffer = newbuf;
1132 info->len = newlen;
1133 }
1134}
1135
1136/* make sure the temp buffer holds enough space */
Alexandre Julliardb0e091a2005-08-09 10:36:45 +00001137static int get_file_tmp_space( struct file_load_info *info, size_t size )
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001138{
Alexandre Julliardb0e091a2005-08-09 10:36:45 +00001139 WCHAR *tmp;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001140 if (info->tmplen >= size) return 1;
1141 if (!(tmp = realloc( info->tmp, size )))
1142 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +00001143 set_error( STATUS_NO_MEMORY );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001144 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 */
1152static void file_read_error( const char *err, struct file_load_info *info )
1153{
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001154 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 );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001158}
1159
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001160/* convert a data type tag to a value type */
1161static 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
Vincent Béron9a624912002-05-31 23:06:46 +00001165 static const struct data_type data_types[] =
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001166 { /* 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 },
Joerg Mayer959d73e2000-10-22 23:56:32 +00001174 { NULL, 0, 0, 0 }
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001175 };
1176
1177 const struct data_type *ptr;
1178 char *end;
1179
1180 for (ptr = data_types; ptr->tag; ptr++)
1181 {
Alexandre Julliardfb9955d2008-01-07 21:06:01 +01001182 if (strncmp( ptr->tag, buffer, ptr->len )) continue;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001183 *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 );
Alexandre Julliardfb9955d2008-01-07 21:06:01 +01001187 if ((end <= buffer) || strncmp( end, "):", 2 )) return 0;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001188 return end + 2 - buffer;
1189 }
1190 return 0;
1191}
1192
1193/* load and create a key from the input file */
Alexandre Julliard88e42612002-06-20 23:18:56 +00001194static struct key *load_key( struct key *base, const char *buffer, int flags,
Alexandre Julliard3343c402008-12-06 17:29:01 +01001195 int prefix_len, struct file_load_info *info )
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001196{
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001197 WCHAR *p;
1198 struct unicode_str name;
Alexandre Julliard3343c402008-12-06 17:29:01 +01001199 int res;
1200 unsigned int mod;
1201 timeout_t modif = current_time;
Alexandre Julliard12717392008-01-07 20:17:24 +01001202 data_size_t len;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001203
Alexandre Julliard12717392008-01-07 20:17:24 +01001204 if (!get_file_tmp_space( info, strlen(buffer) * sizeof(WCHAR) )) return NULL;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001205
Alexandre Julliard12717392008-01-07 20:17:24 +01001206 len = info->tmplen;
Alexandre Julliardb0e091a2005-08-09 10:36:45 +00001207 if ((res = parse_strW( info->tmp, &len, buffer, ']' )) == -1)
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001208 {
1209 file_read_error( "Malformed key", info );
1210 return NULL;
1211 }
Alexandre Julliard3343c402008-12-06 17:29:01 +01001212 if (sscanf( buffer + res, " %u", &mod ) == 1)
1213 modif = (timeout_t)mod * TICKS_PER_SEC + ticks_1601_to_1970;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001214
Alexandre Julliardb0e091a2005-08-09 10:36:45 +00001215 p = info->tmp;
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001216 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 }
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001228 name.str = p;
1229 name.len = len - (p - info->tmp + 1) * sizeof(WCHAR);
Alexandre Julliardb139b932010-02-15 21:04:26 +01001230 return create_key( base, &name, NULL, flags, 0, 0, modif, &res );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001231}
1232
Alexandre Julliard2a378672010-02-16 12:26:15 +01001233/* load a key option from the input file */
1234static 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
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001254/* parse a comma-separated list of hex digits */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001255static int parse_hex( unsigned char *dest, data_size_t *len, const char *buffer )
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001256{
1257 const char *p = buffer;
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001258 data_size_t count = 0;
Alexandre Julliardfb9955d2008-01-07 21:06:01 +01001259 char *end;
1260
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001261 while (isxdigit(*p))
1262 {
Alexandre Julliardfb9955d2008-01-07 21:06:01 +01001263 unsigned int val = strtoul( p, &end, 16 );
1264 if (end == p || val > 0xff) return -1;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001265 if (count++ >= *len) return -1; /* dest buffer overflow */
Alexandre Julliardfb9955d2008-01-07 21:06:01 +01001266 *dest++ = val;
1267 p = end;
1268 while (isspace(*p)) p++;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001269 if (*p == ',') p++;
Alexandre Julliardfb9955d2008-01-07 21:06:01 +01001270 while (isspace(*p)) p++;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001271 }
1272 *len = count;
1273 return p - buffer;
1274}
1275
1276/* parse a value name and create the corresponding value */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001277static struct key_value *parse_value_name( struct key *key, const char *buffer, data_size_t *len,
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001278 struct file_load_info *info )
1279{
Alexandre Julliard88e42612002-06-20 23:18:56 +00001280 struct key_value *value;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001281 struct unicode_str name;
1282 int index;
Alexandre Julliard88e42612002-06-20 23:18:56 +00001283
Alexandre Julliard12717392008-01-07 20:17:24 +01001284 if (!get_file_tmp_space( info, strlen(buffer) * sizeof(WCHAR) )) return NULL;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001285 name.str = info->tmp;
Alexandre Julliard12717392008-01-07 20:17:24 +01001286 name.len = info->tmplen;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001287 if (buffer[0] == '@')
1288 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001289 name.len = 0;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001290 *len = 1;
1291 }
1292 else
1293 {
Alexandre Julliard12717392008-01-07 20:17:24 +01001294 int r = parse_strW( info->tmp, &name.len, buffer + 1, '\"' );
Mike McCormack14278b42006-04-07 15:06:15 +09001295 if (r == -1) goto error;
1296 *len = r + 1; /* for initial quote */
Alexandre Julliard12717392008-01-07 20:17:24 +01001297 name.len -= sizeof(WCHAR); /* terminating null */
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001298 }
Alexandre Julliard6c8d9172000-08-26 04:40:07 +00001299 while (isspace(buffer[*len])) (*len)++;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001300 if (buffer[*len] != '=') goto error;
1301 (*len)++;
Alexandre Julliard6c8d9172000-08-26 04:40:07 +00001302 while (isspace(buffer[*len])) (*len)++;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001303 if (!(value = find_value( key, &name, &index ))) value = insert_value( key, &name, index );
Alexandre Julliard88e42612002-06-20 23:18:56 +00001304 return value;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001305
1306 error:
1307 file_read_error( "Malformed value name", info );
1308 return NULL;
1309}
1310
1311/* load a value from the input file */
1312static int load_value( struct key *key, const char *buffer, struct file_load_info *info )
1313{
1314 DWORD dw;
1315 void *ptr, *newptr;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001316 int res, type, parse_type;
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001317 data_size_t maxlen, len;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001318 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:
Alexandre Julliard12717392008-01-07 20:17:24 +01001327 if (!get_file_tmp_space( info, strlen(buffer) * sizeof(WCHAR) )) return 0;
1328 len = info->tmplen;
Alexandre Julliardb0e091a2005-08-09 10:36:45 +00001329 if ((res = parse_strW( info->tmp, &len, buffer, '\"' )) == -1) goto error;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001330 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 {
Alexandre Julliardfb9955d2008-01-07 21:06:01 +01001341 maxlen = 1 + strlen(buffer) / 2; /* at least 2 chars for one hex byte */
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001342 if (!get_file_tmp_space( info, len + maxlen )) return 0;
Alexandre Julliardb0e091a2005-08-09 10:36:45 +00001343 if ((res = parse_hex( (unsigned char *)info->tmp + len, &maxlen, buffer )) == -1) goto error;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001344 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
Michael Stefaniuc5ceccec2006-10-09 23:34:36 +02001364 free( value->data );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001365 value->data = newptr;
1366 value->len = len;
1367 value->type = type;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001368 return 1;
1369
1370 error:
1371 file_read_error( "Malformed value", info );
Alexandre Julliardfb9955d2008-01-07 21:06:01 +01001372 free( value->data );
1373 value->data = NULL;
1374 value->len = 0;
1375 value->type = REG_NONE;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001376 return 0;
1377}
1378
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001379/* 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 */
1381static int get_prefix_len( struct key *key, const char *name, struct file_load_info *info )
1382{
1383 WCHAR *p;
1384 int res;
Alexandre Julliard12717392008-01-07 20:17:24 +01001385 data_size_t len;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001386
Alexandre Julliard12717392008-01-07 20:17:24 +01001387 if (!get_file_tmp_space( info, strlen(name) * sizeof(WCHAR) )) return 0;
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001388
Alexandre Julliard12717392008-01-07 20:17:24 +01001389 len = info->tmplen;
Alexandre Julliardb0e091a2005-08-09 10:36:45 +00001390 if ((res = parse_strW( info->tmp, &len, name, ']' )) == -1)
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001391 {
1392 file_read_error( "Malformed key", info );
Patrik Stridvall17d1e9e2000-05-23 23:38:32 +00001393 return 0;
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001394 }
Alexandre Julliardb0e091a2005-08-09 10:36:45 +00001395 for (p = info->tmp; *p; p++) if (*p == '\\') break;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001396 len = (p - info->tmp) * sizeof(WCHAR);
Alexandre Julliard6c8d9172000-08-26 04:40:07 +00001397 for (res = 1; key != root_key; res++)
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001398 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001399 if (len == key->namelen && !memicmpW( info->tmp, key->name, len / sizeof(WCHAR) )) break;
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001400 key = key->parent;
1401 }
Alexandre Julliard6c8d9172000-08-26 04:40:07 +00001402 if (key == root_key) res = 0; /* no matching name */
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001403 return res;
1404}
1405
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001406/* load all the keys from the input file */
Alexandre Julliard58447bc2004-04-30 18:35:13 +00001407/* prefix_len is the number of key name prefixes to skip, or -1 for autodetection */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001408static void load_keys( struct key *key, const char *filename, FILE *f, int prefix_len )
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001409{
1410 struct key *subkey = NULL;
1411 struct file_load_info info;
1412 char *p;
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001413
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001414 info.filename = filename;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001415 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 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +00001429 set_error( STATUS_NOT_REGISTRY_FILE );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001430 goto done;
1431 }
1432
1433 while (read_next_line( &info ) == 1)
1434 {
Alexandre Julliard566a52a2001-03-05 19:34:17 +00001435 p = info.buffer;
1436 while (*p && isspace(*p)) p++;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001437 switch(*p)
1438 {
1439 case '[': /* new key */
1440 if (subkey) release_object( subkey );
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001441 if (prefix_len == -1) prefix_len = get_prefix_len( key, p + 1, &info );
Paul Chitescu51000c12009-11-24 15:12:56 +02001442 if (!(subkey = load_key( key, p + 1, key->flags, prefix_len, &info )))
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001443 file_read_error( "Error creating key", &info );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001444 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;
Alexandre Julliard2a378672010-02-16 12:26:15 +01001450 case '#': /* option */
1451 if (subkey) load_key_option( subkey, p, &info );
1452 break;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001453 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 */
Alexandre Julliard51885742002-05-30 20:12:58 +00001469static void load_registry( struct key *key, obj_handle_t handle )
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001470{
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +00001471 struct file *file;
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001472 int fd;
1473
Alexandre Julliarda510a7e2005-12-12 16:46:17 +01001474 if (!(file = get_file_obj( current->process, handle, FILE_READ_DATA ))) return;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +00001475 fd = dup( get_file_unix_fd( file ) );
1476 release_object( file );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001477 if (fd != -1)
1478 {
1479 FILE *f = fdopen( fd, "r" );
1480 if (f)
1481 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001482 load_keys( key, NULL, f, -1 );
Alexandre Julliard53f3a831999-11-24 04:19:43 +00001483 fclose( f );
1484 }
1485 else file_set_error();
1486 }
1487}
1488
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001489/* load one of the initial registry files */
1490static void load_init_registry_from_file( const char *filename, struct key *key )
1491{
1492 FILE *f;
1493
Alexandre Julliard5b23efc2004-05-14 00:45:11 +00001494 if ((f = fopen( filename, "r" )))
1495 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001496 load_keys( key, filename, f, 0 );
Alexandre Julliard5b23efc2004-05-14 00:45:11 +00001497 fclose( f );
1498 if (get_error() == STATUS_NOT_REGISTRY_FILE)
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001499 {
1500 fprintf( stderr, "%s is not a valid registry file\n", filename );
1501 return;
1502 }
Alexandre Julliard5b23efc2004-05-14 00:45:11 +00001503 }
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001504
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001505 assert( save_branch_count < MAX_SAVE_BRANCH_INFO );
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001506
Alexandre Julliard161160f2008-04-17 12:41:34 +02001507 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 );
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001510}
1511
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001512static WCHAR *format_user_registry_path( const SID *sid, struct unicode_str *path )
Robert Shearman91eaea52005-07-18 13:22:55 +00001513{
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
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001530 path->len = (p - buffer) * sizeof(WCHAR);
1531 path->str = p = memdup( buffer, path->len );
1532 return p;
Robert Shearman91eaea52005-07-18 13:22:55 +00001533}
1534
Alexandre Julliard27f0f802005-04-20 12:57:53 +00001535/* registry initialisation */
1536void init_registry(void)
1537{
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001538 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' };
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001540 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
Robert Shearman91eaea52005-07-18 13:22:55 +00001544 WCHAR *current_user_path;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001545 struct unicode_str current_user_str;
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001546
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001547 struct key *key;
1548 int dummy;
1549
Alexandre Julliard161160f2008-04-17 12:41:34 +02001550 /* switch to the config dir */
1551
1552 if (fchdir( config_dir_fd ) == -1) fatal_perror( "chdir to config dir" );
1553
Alexandre Julliard27f0f802005-04-20 12:57:53 +00001554 /* create the root key */
Alexandre Julliard3343c402008-12-06 17:29:01 +01001555 root_key = alloc_key( &root_name, current_time );
Alexandre Julliard27f0f802005-04-20 12:57:53 +00001556 assert( root_key );
Alexandre Julliardb00fb172006-03-22 20:32:04 +01001557 make_object_static( &root_key->obj );
Alexandre Julliard27f0f802005-04-20 12:57:53 +00001558
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001559 /* load system.reg into Registry\Machine */
1560
Alexandre Julliardb139b932010-02-15 21:04:26 +01001561 if (!(key = create_key( root_key, &HKLM_name, NULL, 0, 0, 0, current_time, &dummy )))
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001562 fatal_error( "could not create Machine registry key\n" );
1563
Alexandre Julliard161160f2008-04-17 12:41:34 +02001564 load_init_registry_from_file( "system.reg", key );
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001565 release_object( key );
1566
1567 /* load userdef.reg into Registry\User\.Default */
1568
Alexandre Julliardb139b932010-02-15 21:04:26 +01001569 if (!(key = create_key( root_key, &HKU_name, NULL, 0, 0, 0, current_time, &dummy )))
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001570 fatal_error( "could not create User\\.Default registry key\n" );
1571
Alexandre Julliard161160f2008-04-17 12:41:34 +02001572 load_init_registry_from_file( "userdef.reg", key );
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001573 release_object( key );
1574
Alexandre Julliard6aa0cc52005-07-11 20:44:59 +00001575 /* load user.reg into HKEY_CURRENT_USER */
1576
Robert Shearman91eaea52005-07-18 13:22:55 +00001577 /* FIXME: match default user in token.c. should get from process token instead */
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001578 current_user_path = format_user_registry_path( security_interactive_sid, &current_user_str );
Robert Shearman91eaea52005-07-18 13:22:55 +00001579 if (!current_user_path ||
Alexandre Julliardb139b932010-02-15 21:04:26 +01001580 !(key = create_key( root_key, &current_user_str, NULL, 0, 0, 0, current_time, &dummy )))
Alexandre Julliard6aa0cc52005-07-11 20:44:59 +00001581 fatal_error( "could not create HKEY_CURRENT_USER registry key\n" );
Robert Shearman91eaea52005-07-18 13:22:55 +00001582 free( current_user_path );
Alexandre Julliard161160f2008-04-17 12:41:34 +02001583 load_init_registry_from_file( "user.reg", key );
Alexandre Julliard6aa0cc52005-07-11 20:44:59 +00001584 release_object( key );
1585
Alexandre Julliard6aa0cc52005-07-11 20:44:59 +00001586 /* start the periodic save timer */
1587 set_periodic_save_timer();
Alexandre Julliard161160f2008-04-17 12:41:34 +02001588
1589 /* go back to the server dir */
1590 if (fchdir( server_dir_fd ) == -1) fatal_perror( "chdir to server dir" );
Alexandre Julliard6c8d9172000-08-26 04:40:07 +00001591}
1592
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001593/* save a registry branch to a file */
1594static void save_all_subkeys( struct key *key, FILE *f )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001595{
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001596 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 );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001601}
1602
1603/* save a registry branch to a file handle */
Alexandre Julliard51885742002-05-30 20:12:58 +00001604static void save_registry( struct key *key, obj_handle_t handle )
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001605{
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +00001606 struct file *file;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001607 int fd;
1608
1609 if (key->flags & KEY_DELETED)
1610 {
Alexandre Julliardcb1fc732000-01-24 21:58:06 +00001611 set_error( STATUS_KEY_DELETED );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001612 return;
1613 }
Alexandre Julliarda510a7e2005-12-12 16:46:17 +01001614 if (!(file = get_file_obj( current->process, handle, FILE_WRITE_DATA ))) return;
Alexandre Julliardcf27a7f2003-02-14 20:27:09 +00001615 fd = dup( get_file_unix_fd( file ) );
1616 release_object( file );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001617 if (fd != -1)
1618 {
1619 FILE *f = fdopen( fd, "w" );
1620 if (f)
1621 {
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001622 save_all_subkeys( key, f );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001623 if (fclose( f )) file_set_error();
1624 }
1625 else
1626 {
1627 file_set_error();
1628 close( fd );
1629 }
1630 }
1631}
1632
Alexandre Julliardc9709042000-04-16 17:21:13 +00001633/* save a registry branch to a file */
1634static int save_branch( struct key *key, const char *path )
1635{
Bill Medland309566d2002-12-18 05:03:51 +00001636 struct stat st;
Alexandre Julliard161160f2008-04-17 12:41:34 +02001637 char *p, *tmp = NULL;
1638 int fd, count = 0, ret = 0;
Alexandre Julliardc9709042000-04-16 17:21:13 +00001639 FILE *f;
1640
Alexandre Julliard88e42612002-06-20 23:18:56 +00001641 if (!(key->flags & KEY_DIRTY))
1642 {
1643 if (debug_level > 1) dump_operation( key, NULL, "Not saving clean" );
1644 return 1;
1645 }
1646
Alexandre Julliardc9709042000-04-16 17:21:13 +00001647 /* test the file type */
1648
1649 if ((fd = open( path, O_WRONLY )) != -1)
1650 {
Bill Medland309566d2002-12-18 05:03:51 +00001651 /* 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 */
Alexandre Julliard161160f2008-04-17 12:41:34 +02001653 if (!lstat( path, &st ) && (!S_ISREG(st.st_mode) || st.st_nlink > 1))
Alexandre Julliardc9709042000-04-16 17:21:13 +00001654 {
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 {
Patrik Stridvalle29dbc52000-04-24 18:04:24 +00001669 sprintf( p, "reg%lx%04x.tmp", (long) getpid(), count++ );
Alexandre Julliardc9709042000-04-16 17:21:13 +00001670 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
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001691 save_all_subkeys( key, f );
Alexandre Julliardc9709042000-04-16 17:21:13 +00001692 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 );
Alexandre Julliardc9709042000-04-16 17:21:13 +00001699 }
1700
1701done:
Peter Berg Larsen514f4322005-03-10 11:18:31 +00001702 free( tmp );
Alexandre Julliard88e42612002-06-20 23:18:56 +00001703 if (ret) make_clean( key );
Alexandre Julliardc9709042000-04-16 17:21:13 +00001704 return ret;
1705}
1706
1707/* periodic saving of the registry */
1708static void periodic_save( void *arg )
1709{
1710 int i;
Alexandre Julliarddcab7062005-03-14 11:00:43 +00001711
Alexandre Julliard161160f2008-04-17 12:41:34 +02001712 if (fchdir( config_dir_fd ) == -1) return;
Alexandre Julliarddcab7062005-03-14 11:00:43 +00001713 save_timeout_user = NULL;
Alexandre Julliardc9709042000-04-16 17:21:13 +00001714 for (i = 0; i < save_branch_count; i++)
1715 save_branch( save_branch_info[i].key, save_branch_info[i].path );
Alexandre Julliard161160f2008-04-17 12:41:34 +02001716 if (fchdir( server_dir_fd ) == -1) fatal_perror( "chdir to server dir" );
Alexandre Julliarddcab7062005-03-14 11:00:43 +00001717 set_periodic_save_timer();
1718}
1719
1720/* start the periodic save timer */
1721static void set_periodic_save_timer(void)
1722{
Alexandre Julliarddcab7062005-03-14 11:00:43 +00001723 if (save_timeout_user) remove_timeout_user( save_timeout_user );
Alexandre Julliardaaf477f2007-04-17 20:08:59 +02001724 save_timeout_user = add_timeout_user( save_period, periodic_save, NULL );
Alexandre Julliardc9709042000-04-16 17:21:13 +00001725}
1726
Alexandre Julliard88e42612002-06-20 23:18:56 +00001727/* save the modified registry branches to disk */
1728void flush_registry(void)
Alexandre Julliardc9709042000-04-16 17:21:13 +00001729{
1730 int i;
1731
Alexandre Julliard161160f2008-04-17 12:41:34 +02001732 if (fchdir( config_dir_fd ) == -1) return;
Alexandre Julliardc9709042000-04-16 17:21:13 +00001733 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 }
Alexandre Julliardc9709042000-04-16 17:21:13 +00001741 }
Alexandre Julliard161160f2008-04-17 12:41:34 +02001742 if (fchdir( server_dir_fd ) == -1) fatal_perror( "chdir to server dir" );
Alexandre Julliard88e42612002-06-20 23:18:56 +00001743}
1744
Alexandre Julliardc9709042000-04-16 17:21:13 +00001745
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001746/* create a registry key */
1747DECL_HANDLER(create_key)
1748{
Alexandre Julliardbcf393a2000-10-01 01:44:50 +00001749 struct key *key = NULL, *parent;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001750 struct unicode_str name, class;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001751 unsigned int access = req->access;
1752
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001753 reply->hkey = 0;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001754
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
Robert Shearman8cb3f922005-06-16 20:34:34 +00001770 /* NOTE: no access rights are required from the parent handle to create a key */
Alexandre Julliarddd77d1a2006-07-10 11:53:23 +02001771 if ((parent = get_parent_hkey_obj( req->parent )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001772 {
Alexandre Julliardb139b932010-02-15 21:04:26 +01001773 if ((key = create_key( parent, &name, &class, KEY_DIRTY, req->options,
1774 req->attributes, current_time, &reply->created )))
Alexandre Julliard454355e2000-10-02 03:46:58 +00001775 {
Alexandre Julliard03b040c2005-12-09 14:52:04 +01001776 reply->hkey = alloc_handle( current->process, key, access, req->attributes );
Alexandre Julliard454355e2000-10-02 03:46:58 +00001777 release_object( key );
1778 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001779 release_object( parent );
1780 }
1781}
1782
1783/* open a registry key */
1784DECL_HANDLER(open_key)
1785{
1786 struct key *key, *parent;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001787 struct unicode_str name;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001788 unsigned int access = req->access;
1789
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001790 reply->hkey = 0;
Robert Shearmanb3957e32005-05-05 16:57:55 +00001791 /* NOTE: no access rights are required to open the parent key, only the child key */
Alexandre Julliarddd77d1a2006-07-10 11:53:23 +02001792 if ((parent = get_parent_hkey_obj( req->parent )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001793 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001794 get_req_path( &name, !req->parent );
Alexandre Julliardb139b932010-02-15 21:04:26 +01001795 if ((key = open_key( parent, &name, req->attributes )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001796 {
Alexandre Julliard03b040c2005-12-09 14:52:04 +01001797 reply->hkey = alloc_handle( current->process, key, access, req->attributes );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001798 release_object( key );
1799 }
1800 release_object( parent );
1801 }
1802}
1803
1804/* delete a registry key */
1805DECL_HANDLER(delete_key)
1806{
1807 struct key *key;
1808
Robert Shearmanb3957e32005-05-05 16:57:55 +00001809 if ((key = get_hkey_obj( req->hkey, DELETE )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001810 {
Mike McCormack5ac945c2003-08-19 03:08:17 +00001811 delete_key( key, 0);
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001812 release_object( key );
1813 }
1814}
1815
Mike Hearn43cb03b2004-01-03 00:38:30 +00001816/* flush a registry key */
1817DECL_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
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001827/* enumerate registry subkeys */
1828DECL_HANDLER(enum_key)
1829{
1830 struct key *key;
1831
Alexandre Julliard454355e2000-10-02 03:46:58 +00001832 if ((key = get_hkey_obj( req->hkey,
1833 req->index == -1 ? KEY_QUERY_VALUE : KEY_ENUMERATE_SUB_KEYS )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001834 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001835 enum_key( key, req->index, req->info_class, reply );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001836 release_object( key );
1837 }
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001838}
1839
1840/* set a value of a registry key */
1841DECL_HANDLER(set_key_value)
1842{
1843 struct key *key;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001844 struct unicode_str name;
Alexandre Julliarda01004d2000-05-14 22:57:57 +00001845
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001846 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
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001854 if ((key = get_hkey_obj( req->hkey, KEY_SET_VALUE )))
1855 {
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001856 data_size_t datalen = get_req_data_size() - req->namelen;
Eric Pouech0a258962004-11-30 21:38:57 +00001857 const char *data = (const char *)get_req_data() + req->namelen;
Alexandre Julliardbcf393a2000-10-01 01:44:50 +00001858
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001859 set_value( key, &name, req->type, data, datalen );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001860 release_object( key );
1861 }
1862}
1863
1864/* retrieve the value of a registry key */
1865DECL_HANDLER(get_key_value)
1866{
1867 struct key *key;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001868 struct unicode_str name;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001869
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001870 reply->total = 0;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001871 if ((key = get_hkey_obj( req->hkey, KEY_QUERY_VALUE )))
1872 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001873 get_req_unicode_str( &name );
1874 get_value( key, &name, &reply->type, &reply->total );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001875 release_object( key );
1876 }
1877}
1878
1879/* enumerate the value of a registry key */
1880DECL_HANDLER(enum_key_value)
1881{
1882 struct key *key;
1883
1884 if ((key = get_hkey_obj( req->hkey, KEY_QUERY_VALUE )))
1885 {
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001886 enum_value( key, req->index, req->info_class, reply );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001887 release_object( key );
1888 }
1889}
1890
1891/* delete a value of a registry key */
1892DECL_HANDLER(delete_key_value)
1893{
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001894 struct key *key;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001895 struct unicode_str name;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001896
1897 if ((key = get_hkey_obj( req->hkey, KEY_SET_VALUE )))
1898 {
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001899 get_req_unicode_str( &name );
1900 delete_value( key, &name );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001901 release_object( key );
1902 }
1903}
1904
1905/* load a registry branch from a file */
1906DECL_HANDLER(load_registry)
1907{
James Hawkins580ded62005-03-29 11:38:58 +00001908 struct key *key, *parent;
Robert Shearmanb3957e32005-05-05 16:57:55 +00001909 struct token *token = thread_get_impersonation_token( current );
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001910 struct unicode_str name;
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001911
Robert Shearmanb3957e32005-05-05 16:57:55 +00001912 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
Alexandre Julliarddd77d1a2006-07-10 11:53:23 +02001925 if ((parent = get_parent_hkey_obj( req->hkey )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001926 {
James Hawkins580ded62005-03-29 11:38:58 +00001927 int dummy;
Alexandre Julliard7f9e2812005-11-22 12:05:36 +00001928 get_req_path( &name, !req->hkey );
Alexandre Julliardb139b932010-02-15 21:04:26 +01001929 if ((key = create_key( parent, &name, NULL, KEY_DIRTY, 0, 0, current_time, &dummy )))
James Hawkins580ded62005-03-29 11:38:58 +00001930 {
1931 load_registry( key, req->file );
1932 release_object( key );
1933 }
1934 release_object( parent );
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001935 }
1936}
1937
Mike McCormack5ac945c2003-08-19 03:08:17 +00001938DECL_HANDLER(unload_registry)
1939{
1940 struct key *key;
Robert Shearmanb3957e32005-05-05 16:57:55 +00001941 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 }
Mike McCormack5ac945c2003-08-19 03:08:17 +00001955
1956 if ((key = get_hkey_obj( req->hkey, 0 )))
1957 {
1958 delete_key( key, 1 ); /* FIXME */
1959 release_object( key );
1960 }
1961}
1962
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001963/* save a registry branch to a file */
1964DECL_HANDLER(save_registry)
1965{
1966 struct key *key;
1967
Robert Shearmanb3957e32005-05-05 16:57:55 +00001968 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 )))
Alexandre Julliardd7e85d61999-11-23 19:39:11 +00001975 {
1976 save_registry( key, req->file );
1977 release_object( key );
1978 }
1979}
1980
Mike McCormack11f4b442002-11-25 02:47:32 +00001981/* add a registry key change notification */
1982DECL_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 );
Robert Shearman37957092005-06-10 19:54:46 +00001989 if (key)
Mike McCormack11f4b442002-11-25 02:47:32 +00001990 {
1991 event = get_event_obj( current->process, req->event, SYNCHRONIZE );
Robert Shearman37957092005-06-10 19:54:46 +00001992 if (event)
Mike McCormack11f4b442002-11-25 02:47:32 +00001993 {
Alexandre Julliard9b3b7ca2005-06-09 20:36:08 +00001994 notify = find_notify( key, current->process, req->hkey );
Robert Shearman37957092005-06-10 19:54:46 +00001995 if (notify)
Mike McCormack11f4b442002-11-25 02:47:32 +00001996 {
Mike McCormack5fb6e0e2006-05-14 17:11:54 +09001997 if (notify->event)
1998 release_object( notify->event );
Mike McCormack11f4b442002-11-25 02:47:32 +00001999 grab_object( event );
2000 notify->event = event;
2001 }
2002 else
2003 {
Alexandre Julliard68abbc82005-02-24 19:43:53 +00002004 notify = mem_alloc( sizeof(*notify) );
Robert Shearman37957092005-06-10 19:54:46 +00002005 if (notify)
Mike McCormack11f4b442002-11-25 02:47:32 +00002006 {
2007 grab_object( event );
2008 notify->event = event;
2009 notify->subtree = req->subtree;
2010 notify->filter = req->filter;
2011 notify->hkey = req->hkey;
Alexandre Julliard9b3b7ca2005-06-09 20:36:08 +00002012 notify->process = current->process;
Alexandre Julliard68abbc82005-02-24 19:43:53 +00002013 list_add_head( &key->notify_list, &notify->entry );
Mike McCormack11f4b442002-11-25 02:47:32 +00002014 }
Mike McCormack11f4b442002-11-25 02:47:32 +00002015 }
2016 release_object( event );
2017 }
2018 release_object( key );
2019 }
2020}