2 * Server-side registry management
4 * Copyright (C) 1999 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * - behavior with deleted keys
23 * - values larger than request buffer
28 #include "wine/port.h"
50 #include "wine/library.h"
54 struct event *event; /* event to set when changing this key */
55 int subtree; /* true if subtree notification */
56 unsigned int filter; /* which events to notify on */
57 obj_handle_t hkey; /* hkey associated with this notification */
58 struct notify *next; /* list of notifications */
59 struct notify *prev; /* list of notifications */
65 struct object obj; /* object header */
66 WCHAR *name; /* key name */
67 WCHAR *class; /* key class */
68 struct key *parent; /* parent key */
69 int last_subkey; /* last in use subkey */
70 int nb_subkeys; /* count of allocated subkeys */
71 struct key **subkeys; /* subkeys array */
72 int last_value; /* last in use value */
73 int nb_values; /* count of allocated values in array */
74 struct key_value *values; /* values array */
75 short flags; /* flags */
76 short level; /* saving level */
77 time_t modif; /* last modification time */
78 struct notify *first_notify; /* list of notifications */
79 struct notify *last_notify; /* list of notifications */
83 #define KEY_VOLATILE 0x0001 /* key is volatile (not saved to disk) */
84 #define KEY_DELETED 0x0002 /* key has been deleted */
85 #define KEY_DIRTY 0x0004 /* key has been modified */
86 #define KEY_ROOT 0x0008 /* key is a root key */
91 WCHAR *name; /* value name */
92 int type; /* value type */
93 size_t len; /* value data length in bytes */
94 void *data; /* pointer to value data */
97 #define MIN_SUBKEYS 8 /* min. number of allocated subkeys per key */
98 #define MIN_VALUES 8 /* min. number of allocated values per key */
101 /* the special root keys */
102 #define HKEY_SPECIAL_ROOT_FIRST ((unsigned int)HKEY_CLASSES_ROOT)
103 #define HKEY_SPECIAL_ROOT_LAST ((unsigned int)HKEY_DYN_DATA)
104 #define NB_SPECIAL_ROOT_KEYS (HKEY_SPECIAL_ROOT_LAST - HKEY_SPECIAL_ROOT_FIRST + 1)
105 #define IS_SPECIAL_ROOT_HKEY(h) (((unsigned int)(h) >= HKEY_SPECIAL_ROOT_FIRST) && \
106 ((unsigned int)(h) <= HKEY_SPECIAL_ROOT_LAST))
108 static struct key *special_root_keys[NB_SPECIAL_ROOT_KEYS];
110 /* the real root key */
111 static struct key *root_key;
113 /* the special root key names */
114 static const char * const special_root_names[NB_SPECIAL_ROOT_KEYS] =
116 "Machine\\Software\\Classes", /* HKEY_CLASSES_ROOT */
117 "User\\", /* we append the user name dynamically */ /* HKEY_CURRENT_USER */
118 "Machine", /* HKEY_LOCAL_MACHINE */
119 "User", /* HKEY_USERS */
120 "PerfData", /* HKEY_PERFORMANCE_DATA */
121 "Machine\\System\\CurrentControlSet\\HardwareProfiles\\Current", /* HKEY_CURRENT_CONFIG */
122 "DynData" /* HKEY_DYN_DATA */
126 /* keys saving level */
127 /* current_level is the level that is put into all newly created or modified keys */
128 /* saving_level is the minimum level that a key needs in order to get saved */
129 static int current_level;
130 static int saving_level;
132 static struct timeval next_save_time; /* absolute time of next periodic save */
133 static int save_period; /* delay between periodic saves (ms) */
134 static struct timeout_user *save_timeout_user; /* saving timer */
136 /* information about where to save a registry branch */
137 struct save_branch_info
143 #define MAX_SAVE_BRANCH_INFO 8
144 static int save_branch_count;
145 static struct save_branch_info save_branch_info[MAX_SAVE_BRANCH_INFO];
148 /* information about a file being loaded */
149 struct file_load_info
151 FILE *file; /* input file */
152 char *buffer; /* line buffer */
153 int len; /* buffer length */
154 int line; /* current input line */
155 char *tmp; /* temp buffer to use while parsing input */
156 int tmplen; /* length of temp buffer */
160 static void key_dump( struct object *obj, int verbose );
161 static void key_destroy( struct object *obj );
163 static const struct object_ops key_ops =
165 sizeof(struct key), /* size */
167 no_add_queue, /* add_queue */
168 NULL, /* remove_queue */
170 NULL, /* satisfied */
171 no_get_fd, /* get_fd */
172 key_destroy /* destroy */
177 * The registry text file format v2 used by this code is similar to the one
178 * used by REGEDIT import/export functionality, with the following differences:
179 * - strings and key names can contain \x escapes for Unicode
180 * - key names use escapes too in order to support Unicode
181 * - the modification time optionally follows the key name
182 * - REG_EXPAND_SZ and REG_MULTI_SZ are saved as strings instead of hex
185 static inline char to_hex( char ch )
187 if (isdigit(ch)) return ch - '0';
188 return tolower(ch) - 'a' + 10;
191 /* dump the full path of a key */
192 static void dump_path( const struct key *key, const struct key *base, FILE *f )
194 if (key->parent && key->parent != base)
196 dump_path( key->parent, base, f );
197 fprintf( f, "\\\\" );
199 dump_strW( key->name, strlenW(key->name), f, "[]" );
202 /* dump a value to a text file */
203 static void dump_value( const struct key_value *value, FILE *f )
210 count = 1 + dump_strW( value->name, strlenW(value->name), f, "\"\"" );
211 count += fprintf( f, "\"=" );
213 else count = fprintf( f, "@=" );
220 if (value->type != REG_SZ) fprintf( f, "str(%d):", value->type );
222 if (value->data) dump_strW( (WCHAR *)value->data, value->len / sizeof(WCHAR), f, "\"\"" );
226 if (value->len == sizeof(DWORD))
229 memcpy( &dw, value->data, sizeof(DWORD) );
230 fprintf( f, "dword:%08lx", dw );
233 /* else fall through */
235 if (value->type == REG_BINARY) count += fprintf( f, "hex:" );
236 else count += fprintf( f, "hex(%x):", value->type );
237 for (i = 0; i < value->len; i++)
239 count += fprintf( f, "%02x", *((unsigned char *)value->data + i) );
240 if (i < value->len-1)
245 fprintf( f, "\\\n " );
255 /* save a registry and all its subkeys to a text file */
256 static void save_subkeys( const struct key *key, const struct key *base, FILE *f )
260 if (key->flags & KEY_VOLATILE) return;
261 /* save key if it has the proper level, and has either some values or no subkeys */
262 /* keys with no values but subkeys are saved implicitly by saving the subkeys */
263 if ((key->level >= saving_level) && ((key->last_value >= 0) || (key->last_subkey == -1)))
266 if (key != base) dump_path( key, base, f );
267 fprintf( f, "] %ld\n", key->modif );
268 for (i = 0; i <= key->last_value; i++) dump_value( &key->values[i], f );
270 for (i = 0; i <= key->last_subkey; i++) save_subkeys( key->subkeys[i], base, f );
273 static void dump_operation( const struct key *key, const struct key_value *value, const char *op )
275 fprintf( stderr, "%s key ", op );
276 if (key) dump_path( key, NULL, stderr );
277 else fprintf( stderr, "ERROR" );
280 fprintf( stderr, " value ");
281 dump_value( value, stderr );
283 else fprintf( stderr, "\n" );
286 static void key_dump( struct object *obj, int verbose )
288 struct key *key = (struct key *)obj;
289 assert( obj->ops == &key_ops );
290 fprintf( stderr, "Key flags=%x ", key->flags );
291 dump_path( key, NULL, stderr );
292 fprintf( stderr, "\n" );
295 /* notify waiter and maybe delete the notification */
296 static void do_notification( struct key *key, struct notify *notify, int del )
300 set_event( notify->event );
301 release_object( notify->event );
302 notify->event = NULL;
308 notify->next->prev = notify->prev;
310 key->last_notify = notify->prev;
312 notify->prev->next = notify->next;
314 key->first_notify = notify->next;
318 static struct notify *find_notify( struct key *key, obj_handle_t hkey)
322 for( n=key->first_notify; n; n = n->next)
323 if( n->hkey == hkey )
328 /* close the notification associated with a handle */
329 void registry_close_handle( struct object *obj, obj_handle_t hkey )
331 struct key * key = (struct key *) obj;
332 struct notify *notify;
334 if( obj->ops != &key_ops )
336 notify = find_notify( key, hkey );
339 do_notification( key, notify, 1 );
342 static void key_destroy( struct object *obj )
345 struct key *key = (struct key *)obj;
346 assert( obj->ops == &key_ops );
348 if (key->name) free( key->name );
349 if (key->class) free( key->class );
350 for (i = 0; i <= key->last_value; i++)
352 free( key->values[i].name );
353 if (key->values[i].data) free( key->values[i].data );
355 for (i = 0; i <= key->last_subkey; i++)
357 key->subkeys[i]->parent = NULL;
358 release_object( key->subkeys[i] );
360 /* unconditionally notify everything waiting on this key */
361 while ( key->first_notify )
362 do_notification( key, key->first_notify, 1 );
365 /* duplicate a key path */
366 /* returns a pointer to a static buffer, so only useable once per request */
367 static WCHAR *copy_path( const WCHAR *path, size_t len, int skip_root )
369 static WCHAR buffer[MAX_PATH+1];
370 static const WCHAR root_name[] = { '\\','R','e','g','i','s','t','r','y','\\',0 };
372 if (len > sizeof(buffer)-sizeof(buffer[0]))
374 set_error( STATUS_BUFFER_OVERFLOW );
377 memcpy( buffer, path, len );
378 buffer[len / sizeof(WCHAR)] = 0;
379 if (skip_root && !strncmpiW( buffer, root_name, 10 )) return buffer + 10;
383 /* copy a path from the request buffer */
384 static WCHAR *copy_req_path( size_t len, int skip_root )
386 const WCHAR *name_ptr = get_req_data();
387 if (len > get_req_data_size())
389 fatal_protocol_error( current, "copy_req_path: invalid length %d/%d\n",
390 len, get_req_data_size() );
393 return copy_path( name_ptr, len, skip_root );
396 /* return the next token in a given path */
397 /* returns a pointer to a static buffer, so only useable once per request */
398 static WCHAR *get_path_token( WCHAR *initpath )
405 /* path cannot start with a backslash */
406 if (*initpath == '\\')
408 set_error( STATUS_OBJECT_PATH_INVALID );
413 else while (*path == '\\') path++;
416 while (*path && *path != '\\') path++;
417 if (*path) *path++ = 0;
421 /* duplicate a Unicode string from the request buffer */
422 static WCHAR *req_strdupW( const void *req, const WCHAR *str, size_t len )
425 if ((name = mem_alloc( len + sizeof(WCHAR) )) != NULL)
427 memcpy( name, str, len );
428 name[len / sizeof(WCHAR)] = 0;
433 /* allocate a key object */
434 static struct key *alloc_key( const WCHAR *name, time_t modif )
437 if ((key = alloc_object( &key_ops )))
441 key->last_subkey = -1;
445 key->last_value = -1;
447 key->level = current_level;
450 key->first_notify = NULL;
451 key->last_notify = NULL;
452 if (!(key->name = strdupW( name )))
454 release_object( key );
461 /* mark a key and all its parents as dirty (modified) */
462 static void make_dirty( struct key *key )
466 if (key->flags & (KEY_DIRTY|KEY_VOLATILE)) return; /* nothing to do */
467 key->flags |= KEY_DIRTY;
472 /* mark a key and all its subkeys as clean (not modified) */
473 static void make_clean( struct key *key )
477 if (key->flags & KEY_VOLATILE) return;
478 if (!(key->flags & KEY_DIRTY)) return;
479 key->flags &= ~KEY_DIRTY;
480 for (i = 0; i <= key->last_subkey; i++) make_clean( key->subkeys[i] );
483 /* go through all the notifications and send them if necessary */
484 void check_notify( struct key *key, unsigned int change, int not_subtree )
486 struct notify *n = key->first_notify;
489 struct notify *next = n->next;
490 if ( ( not_subtree || n->subtree ) && ( change & n->filter ) )
491 do_notification( key, n, 0 );
496 /* update key modification time */
497 static void touch_key( struct key *key, unsigned int change )
501 key->modif = time(NULL);
502 key->level = max( key->level, current_level );
505 /* do notifications */
506 check_notify( key, change, 1 );
507 for ( k = key->parent; k; k = k->parent )
508 check_notify( k, change & ~REG_NOTIFY_CHANGE_LAST_SET, 0 );
511 /* try to grow the array of subkeys; return 1 if OK, 0 on error */
512 static int grow_subkeys( struct key *key )
514 struct key **new_subkeys;
519 nb_subkeys = key->nb_subkeys + (key->nb_subkeys / 2); /* grow by 50% */
520 if (!(new_subkeys = realloc( key->subkeys, nb_subkeys * sizeof(*new_subkeys) )))
522 set_error( STATUS_NO_MEMORY );
528 nb_subkeys = MIN_VALUES;
529 if (!(new_subkeys = mem_alloc( nb_subkeys * sizeof(*new_subkeys) ))) return 0;
531 key->subkeys = new_subkeys;
532 key->nb_subkeys = nb_subkeys;
536 /* allocate a subkey for a given key, and return its index */
537 static struct key *alloc_subkey( struct key *parent, const WCHAR *name, int index, time_t modif )
542 if (parent->last_subkey + 1 == parent->nb_subkeys)
544 /* need to grow the array */
545 if (!grow_subkeys( parent )) return NULL;
547 if ((key = alloc_key( name, modif )) != NULL)
549 key->parent = parent;
550 for (i = ++parent->last_subkey; i > index; i--)
551 parent->subkeys[i] = parent->subkeys[i-1];
552 parent->subkeys[index] = key;
557 /* free a subkey of a given key */
558 static void free_subkey( struct key *parent, int index )
563 assert( index >= 0 );
564 assert( index <= parent->last_subkey );
566 key = parent->subkeys[index];
567 for (i = index; i < parent->last_subkey; i++) parent->subkeys[i] = parent->subkeys[i + 1];
568 parent->last_subkey--;
569 key->flags |= KEY_DELETED;
571 release_object( key );
573 /* try to shrink the array */
574 nb_subkeys = parent->nb_subkeys;
575 if (nb_subkeys > MIN_SUBKEYS && parent->last_subkey < nb_subkeys / 2)
577 struct key **new_subkeys;
578 nb_subkeys -= nb_subkeys / 3; /* shrink by 33% */
579 if (nb_subkeys < MIN_SUBKEYS) nb_subkeys = MIN_SUBKEYS;
580 if (!(new_subkeys = realloc( parent->subkeys, nb_subkeys * sizeof(*new_subkeys) ))) return;
581 parent->subkeys = new_subkeys;
582 parent->nb_subkeys = nb_subkeys;
586 /* find the named child of a given key and return its index */
587 static struct key *find_subkey( const struct key *key, const WCHAR *name, int *index )
589 int i, min, max, res;
592 max = key->last_subkey;
596 if (!(res = strcmpiW( key->subkeys[i]->name, name )))
599 return key->subkeys[i];
601 if (res > 0) max = i - 1;
604 *index = min; /* this is where we should insert it */
609 /* warning: the key name must be writeable (use copy_path) */
610 static struct key *open_key( struct key *key, WCHAR *name )
615 if (!(path = get_path_token( name ))) return NULL;
618 if (!(key = find_subkey( key, path, &index )))
620 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
623 path = get_path_token( NULL );
626 if (debug_level > 1) dump_operation( key, NULL, "Open" );
627 if (key) grab_object( key );
631 /* create a subkey */
632 /* warning: the key name must be writeable (use copy_path) */
633 static struct key *create_key( struct key *key, WCHAR *name, WCHAR *class,
634 int flags, time_t modif, int *created )
640 if (key->flags & KEY_DELETED) /* we cannot create a subkey under a deleted key */
642 set_error( STATUS_KEY_DELETED );
645 if (!(flags & KEY_VOLATILE) && (key->flags & KEY_VOLATILE))
647 set_error( STATUS_CHILD_MUST_BE_VOLATILE );
650 if (!modif) modif = time(NULL);
652 if (!(path = get_path_token( name ))) return NULL;
657 if (!(subkey = find_subkey( key, path, &index ))) break;
659 path = get_path_token( NULL );
662 /* create the remaining part */
664 if (!*path) goto done;
666 if (flags & KEY_DIRTY) make_dirty( key );
669 key = alloc_subkey( key, path, index, modif );
673 path = get_path_token( NULL );
674 if (!*path) goto done;
675 /* we know the index is always 0 in a new key */
676 key = alloc_subkey( key, path, 0, modif );
678 if (base_idx != -1) free_subkey( base, base_idx );
682 if (debug_level > 1) dump_operation( key, NULL, "Create" );
683 if (class) key->class = strdupW(class);
688 /* query information about a key or a subkey */
689 static void enum_key( const struct key *key, int index, int info_class,
690 struct enum_key_reply *reply )
693 size_t len, namelen, classlen;
694 int max_subkey = 0, max_class = 0;
695 int max_value = 0, max_data = 0;
698 if (index != -1) /* -1 means use the specified key directly */
700 if ((index < 0) || (index > key->last_subkey))
702 set_error( STATUS_NO_MORE_ENTRIES );
705 key = key->subkeys[index];
708 namelen = strlenW(key->name) * sizeof(WCHAR);
709 classlen = key->class ? strlenW(key->class) * sizeof(WCHAR) : 0;
713 case KeyBasicInformation:
714 classlen = 0; /* only return the name */
716 case KeyNodeInformation:
717 reply->max_subkey = 0;
718 reply->max_class = 0;
719 reply->max_value = 0;
722 case KeyFullInformation:
723 for (i = 0; i <= key->last_subkey; i++)
725 struct key *subkey = key->subkeys[i];
726 len = strlenW( subkey->name );
727 if (len > max_subkey) max_subkey = len;
728 if (!subkey->class) continue;
729 len = strlenW( subkey->class );
730 if (len > max_class) max_class = len;
732 for (i = 0; i <= key->last_value; i++)
734 len = strlenW( key->values[i].name );
735 if (len > max_value) max_value = len;
736 len = key->values[i].len;
737 if (len > max_data) max_data = len;
739 reply->max_subkey = max_subkey;
740 reply->max_class = max_class;
741 reply->max_value = max_value;
742 reply->max_data = max_data;
743 namelen = 0; /* only return the class */
746 set_error( STATUS_INVALID_PARAMETER );
749 reply->subkeys = key->last_subkey + 1;
750 reply->values = key->last_value + 1;
751 reply->modif = key->modif;
752 reply->total = namelen + classlen;
754 len = min( reply->total, get_reply_max_size() );
755 if (len && (data = set_reply_data_size( len )))
759 reply->namelen = namelen;
760 memcpy( data, key->name, namelen );
761 memcpy( (char *)data + namelen, key->class, len - namelen );
765 reply->namelen = len;
766 memcpy( data, key->name, len );
769 if (debug_level > 1) dump_operation( key, NULL, "Enum" );
772 /* delete a key and its values */
773 static int delete_key( struct key *key, int recurse )
778 /* must find parent and index */
779 if (key->flags & KEY_ROOT)
781 set_error( STATUS_ACCESS_DENIED );
784 if (!(parent = key->parent) || (key->flags & KEY_DELETED))
786 set_error( STATUS_KEY_DELETED );
790 while (recurse && (key->last_subkey>=0))
791 if(0>delete_key(key->subkeys[key->last_subkey], 1))
794 for (index = 0; index <= parent->last_subkey; index++)
795 if (parent->subkeys[index] == key) break;
796 assert( index <= parent->last_subkey );
798 /* we can only delete a key that has no subkeys (FIXME) */
799 if ((key->flags & KEY_ROOT) || (key->last_subkey >= 0))
801 set_error( STATUS_ACCESS_DENIED );
805 if (debug_level > 1) dump_operation( key, NULL, "Delete" );
806 free_subkey( parent, index );
807 touch_key( parent, REG_NOTIFY_CHANGE_NAME );
811 /* try to grow the array of values; return 1 if OK, 0 on error */
812 static int grow_values( struct key *key )
814 struct key_value *new_val;
819 nb_values = key->nb_values + (key->nb_values / 2); /* grow by 50% */
820 if (!(new_val = realloc( key->values, nb_values * sizeof(*new_val) )))
822 set_error( STATUS_NO_MEMORY );
828 nb_values = MIN_VALUES;
829 if (!(new_val = mem_alloc( nb_values * sizeof(*new_val) ))) return 0;
831 key->values = new_val;
832 key->nb_values = nb_values;
836 /* find the named value of a given key and return its index in the array */
837 static struct key_value *find_value( const struct key *key, const WCHAR *name, int *index )
839 int i, min, max, res;
842 max = key->last_value;
846 if (!(res = strcmpiW( key->values[i].name, name )))
849 return &key->values[i];
851 if (res > 0) max = i - 1;
854 *index = min; /* this is where we should insert it */
858 /* insert a new value; the index must have been returned by find_value */
859 static struct key_value *insert_value( struct key *key, const WCHAR *name, int index )
861 struct key_value *value;
865 if (key->last_value + 1 == key->nb_values)
867 if (!grow_values( key )) return NULL;
869 if (!(new_name = strdupW(name))) return NULL;
870 for (i = ++key->last_value; i > index; i--) key->values[i] = key->values[i - 1];
871 value = &key->values[index];
872 value->name = new_name;
878 /* set a key value */
879 static void set_value( struct key *key, WCHAR *name, int type, const void *data, size_t len )
881 struct key_value *value;
885 if ((value = find_value( key, name, &index )))
887 /* check if the new value is identical to the existing one */
888 if (value->type == type && value->len == len &&
889 value->data && !memcmp( value->data, data, len ))
891 if (debug_level > 1) dump_operation( key, value, "Skip setting" );
896 if (len && !(ptr = memdup( data, len ))) return;
900 if (!(value = insert_value( key, name, index )))
902 if (ptr) free( ptr );
906 else if (value->data) free( value->data ); /* already existing, free previous data */
911 touch_key( key, REG_NOTIFY_CHANGE_LAST_SET );
912 if (debug_level > 1) dump_operation( key, value, "Set" );
915 /* get a key value */
916 static void get_value( struct key *key, const WCHAR *name, int *type, int *len )
918 struct key_value *value;
921 if ((value = find_value( key, name, &index )))
925 if (value->data) set_reply_data( value->data, min( value->len, get_reply_max_size() ));
926 if (debug_level > 1) dump_operation( key, value, "Get" );
931 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
935 /* enumerate a key value */
936 static void enum_value( struct key *key, int i, int info_class, struct enum_key_value_reply *reply )
938 struct key_value *value;
940 if (i < 0 || i > key->last_value) set_error( STATUS_NO_MORE_ENTRIES );
944 size_t namelen, maxlen;
946 value = &key->values[i];
947 reply->type = value->type;
948 namelen = strlenW( value->name ) * sizeof(WCHAR);
952 case KeyValueBasicInformation:
953 reply->total = namelen;
955 case KeyValueFullInformation:
956 reply->total = namelen + value->len;
958 case KeyValuePartialInformation:
959 reply->total = value->len;
963 set_error( STATUS_INVALID_PARAMETER );
967 maxlen = min( reply->total, get_reply_max_size() );
968 if (maxlen && ((data = set_reply_data_size( maxlen ))))
970 if (maxlen > namelen)
972 reply->namelen = namelen;
973 memcpy( data, value->name, namelen );
974 memcpy( (char *)data + namelen, value->data, maxlen - namelen );
978 reply->namelen = maxlen;
979 memcpy( data, value->name, maxlen );
982 if (debug_level > 1) dump_operation( key, value, "Enum" );
987 static void delete_value( struct key *key, const WCHAR *name )
989 struct key_value *value;
990 int i, index, nb_values;
992 if (!(value = find_value( key, name, &index )))
994 set_error( STATUS_OBJECT_NAME_NOT_FOUND );
997 if (debug_level > 1) dump_operation( key, value, "Delete" );
999 if (value->data) free( value->data );
1000 for (i = index; i < key->last_value; i++) key->values[i] = key->values[i + 1];
1002 touch_key( key, REG_NOTIFY_CHANGE_LAST_SET );
1004 /* try to shrink the array */
1005 nb_values = key->nb_values;
1006 if (nb_values > MIN_VALUES && key->last_value < nb_values / 2)
1008 struct key_value *new_val;
1009 nb_values -= nb_values / 3; /* shrink by 33% */
1010 if (nb_values < MIN_VALUES) nb_values = MIN_VALUES;
1011 if (!(new_val = realloc( key->values, nb_values * sizeof(*new_val) ))) return;
1012 key->values = new_val;
1013 key->nb_values = nb_values;
1017 static struct key *create_root_key( obj_handle_t hkey )
1024 p = special_root_names[(unsigned int)hkey - HKEY_SPECIAL_ROOT_FIRST];
1026 while (*p) keyname[i++] = *p++;
1028 if (hkey == (obj_handle_t)HKEY_CURRENT_USER) /* this one is special */
1030 /* get the current user name */
1031 p = wine_get_user_name();
1032 while (*p && i < sizeof(keyname)/sizeof(WCHAR)-1) keyname[i++] = *p++;
1036 if ((key = create_key( root_key, keyname, NULL, 0, time(NULL), &dummy )))
1038 special_root_keys[(unsigned int)hkey - HKEY_SPECIAL_ROOT_FIRST] = key;
1039 key->flags |= KEY_ROOT;
1044 /* get the registry key corresponding to an hkey handle */
1045 static struct key *get_hkey_obj( obj_handle_t hkey, unsigned int access )
1049 if (!hkey) return (struct key *)grab_object( root_key );
1050 if (IS_SPECIAL_ROOT_HKEY(hkey))
1052 if (!(key = special_root_keys[(unsigned int)hkey - HKEY_SPECIAL_ROOT_FIRST]))
1053 key = create_root_key( hkey );
1058 key = (struct key *)get_handle_obj( current->process, hkey, access, &key_ops );
1062 /* read a line from the input file */
1063 static int read_next_line( struct file_load_info *info )
1066 int newlen, pos = 0;
1071 if (!fgets( info->buffer + pos, info->len - pos, info->file ))
1072 return (pos != 0); /* EOF */
1073 pos = strlen(info->buffer);
1074 if (info->buffer[pos-1] == '\n')
1076 /* got a full line */
1077 info->buffer[--pos] = 0;
1078 if (pos > 0 && info->buffer[pos-1] == '\r') info->buffer[pos-1] = 0;
1081 if (pos < info->len - 1) return 1; /* EOF but something was read */
1083 /* need to enlarge the buffer */
1084 newlen = info->len + info->len / 2;
1085 if (!(newbuf = realloc( info->buffer, newlen )))
1087 set_error( STATUS_NO_MEMORY );
1090 info->buffer = newbuf;
1095 /* make sure the temp buffer holds enough space */
1096 static int get_file_tmp_space( struct file_load_info *info, int size )
1099 if (info->tmplen >= size) return 1;
1100 if (!(tmp = realloc( info->tmp, size )))
1102 set_error( STATUS_NO_MEMORY );
1106 info->tmplen = size;
1110 /* report an error while loading an input file */
1111 static void file_read_error( const char *err, struct file_load_info *info )
1113 fprintf( stderr, "Line %d: %s '%s'\n", info->line, err, info->buffer );
1116 /* parse an escaped string back into Unicode */
1117 /* return the number of chars read from the input, or -1 on output overflow */
1118 static int parse_strW( WCHAR *dest, int *len, const char *src, char endchar )
1120 int count = sizeof(WCHAR); /* for terminating null */
1121 const char *p = src;
1122 while (*p && *p != endchar)
1124 if (*p != '\\') *dest = (WCHAR)*p++;
1130 case 'a': *dest = '\a'; p++; break;
1131 case 'b': *dest = '\b'; p++; break;
1132 case 'e': *dest = '\e'; p++; break;
1133 case 'f': *dest = '\f'; p++; break;
1134 case 'n': *dest = '\n'; p++; break;
1135 case 'r': *dest = '\r'; p++; break;
1136 case 't': *dest = '\t'; p++; break;
1137 case 'v': *dest = '\v'; p++; break;
1138 case 'x': /* hex escape */
1140 if (!isxdigit(*p)) *dest = 'x';
1143 *dest = to_hex(*p++);
1144 if (isxdigit(*p)) *dest = (*dest * 16) + to_hex(*p++);
1145 if (isxdigit(*p)) *dest = (*dest * 16) + to_hex(*p++);
1146 if (isxdigit(*p)) *dest = (*dest * 16) + to_hex(*p++);
1156 case '7': /* octal escape */
1158 if (*p >= '0' && *p <= '7') *dest = (*dest * 8) + (*p++ - '0');
1159 if (*p >= '0' && *p <= '7') *dest = (*dest * 8) + (*p++ - '0');
1162 *dest = (WCHAR)*p++;
1166 if ((count += sizeof(WCHAR)) > *len) return -1; /* dest buffer overflow */
1170 if (!*p) return -1; /* delimiter not found */
1175 /* convert a data type tag to a value type */
1176 static int get_data_type( const char *buffer, int *type, int *parse_type )
1178 struct data_type { const char *tag; int len; int type; int parse_type; };
1180 static const struct data_type data_types[] =
1181 { /* actual type */ /* type to assume for parsing */
1182 { "\"", 1, REG_SZ, REG_SZ },
1183 { "str:\"", 5, REG_SZ, REG_SZ },
1184 { "str(2):\"", 8, REG_EXPAND_SZ, REG_SZ },
1185 { "str(7):\"", 8, REG_MULTI_SZ, REG_SZ },
1186 { "hex:", 4, REG_BINARY, REG_BINARY },
1187 { "dword:", 6, REG_DWORD, REG_DWORD },
1188 { "hex(", 4, -1, REG_BINARY },
1192 const struct data_type *ptr;
1195 for (ptr = data_types; ptr->tag; ptr++)
1197 if (memcmp( ptr->tag, buffer, ptr->len )) continue;
1198 *parse_type = ptr->parse_type;
1199 if ((*type = ptr->type) != -1) return ptr->len;
1200 /* "hex(xx):" is special */
1201 *type = (int)strtoul( buffer + 4, &end, 16 );
1202 if ((end <= buffer) || memcmp( end, "):", 2 )) return 0;
1203 return end + 2 - buffer;
1208 /* load and create a key from the input file */
1209 static struct key *load_key( struct key *base, const char *buffer, int flags,
1210 int prefix_len, struct file_load_info *info,
1214 int res, len, modif;
1216 len = strlen(buffer) * sizeof(WCHAR);
1217 if (!get_file_tmp_space( info, len )) return NULL;
1219 if ((res = parse_strW( (WCHAR *)info->tmp, &len, buffer, ']' )) == -1)
1221 file_read_error( "Malformed key", info );
1224 if (sscanf( buffer + res, " %d", &modif ) != 1) modif = default_modif;
1226 p = (WCHAR *)info->tmp;
1227 while (prefix_len && *p) { if (*p++ == '\\') prefix_len--; }
1233 file_read_error( "Malformed key", info );
1236 /* empty key name, return base key */
1237 return (struct key *)grab_object( base );
1239 if (!(name = copy_path( p, len - ((char *)p - info->tmp), 0 )))
1241 file_read_error( "Key is too long", info );
1244 return create_key( base, name, NULL, flags, modif, &res );
1247 /* parse a comma-separated list of hex digits */
1248 static int parse_hex( unsigned char *dest, int *len, const char *buffer )
1250 const char *p = buffer;
1252 while (isxdigit(*p))
1256 memcpy( buf, p, 2 );
1258 sscanf( buf, "%x", &val );
1259 if (count++ >= *len) return -1; /* dest buffer overflow */
1260 *dest++ = (unsigned char )val;
1268 /* parse a value name and create the corresponding value */
1269 static struct key_value *parse_value_name( struct key *key, const char *buffer, int *len,
1270 struct file_load_info *info )
1272 struct key_value *value;
1275 maxlen = strlen(buffer) * sizeof(WCHAR);
1276 if (!get_file_tmp_space( info, maxlen )) return NULL;
1277 if (buffer[0] == '@')
1279 info->tmp[0] = info->tmp[1] = 0;
1284 if ((*len = parse_strW( (WCHAR *)info->tmp, &maxlen, buffer + 1, '\"' )) == -1) goto error;
1285 (*len)++; /* for initial quote */
1287 while (isspace(buffer[*len])) (*len)++;
1288 if (buffer[*len] != '=') goto error;
1290 while (isspace(buffer[*len])) (*len)++;
1291 if (!(value = find_value( key, (WCHAR *)info->tmp, &index )))
1292 value = insert_value( key, (WCHAR *)info->tmp, index );
1296 file_read_error( "Malformed value name", info );
1300 /* load a value from the input file */
1301 static int load_value( struct key *key, const char *buffer, struct file_load_info *info )
1305 int maxlen, len, res;
1306 int type, parse_type;
1307 struct key_value *value;
1309 if (!(value = parse_value_name( key, buffer, &len, info ))) return 0;
1310 if (!(res = get_data_type( buffer + len, &type, &parse_type ))) goto error;
1311 buffer += len + res;
1316 len = strlen(buffer) * sizeof(WCHAR);
1317 if (!get_file_tmp_space( info, len )) return 0;
1318 if ((res = parse_strW( (WCHAR *)info->tmp, &len, buffer, '\"' )) == -1) goto error;
1322 dw = strtoul( buffer, NULL, 16 );
1326 case REG_BINARY: /* hex digits */
1330 maxlen = 1 + strlen(buffer)/3; /* 3 chars for one hex byte */
1331 if (!get_file_tmp_space( info, len + maxlen )) return 0;
1332 if ((res = parse_hex( info->tmp + len, &maxlen, buffer )) == -1) goto error;
1335 while (isspace(*buffer)) buffer++;
1336 if (!*buffer) break;
1337 if (*buffer != '\\') goto error;
1338 if (read_next_line( info) != 1) goto error;
1339 buffer = info->buffer;
1340 while (isspace(*buffer)) buffer++;
1346 ptr = NULL; /* keep compiler quiet */
1350 if (!len) newptr = NULL;
1351 else if (!(newptr = memdup( ptr, len ))) return 0;
1353 if (value->data) free( value->data );
1354 value->data = newptr;
1357 /* update the key level but not the modification time */
1358 key->level = max( key->level, current_level );
1363 file_read_error( "Malformed value", info );
1367 /* return the length (in path elements) of name that is part of the key name */
1368 /* for instance if key is USER\foo\bar and name is foo\bar\baz, return 2 */
1369 static int get_prefix_len( struct key *key, const char *name, struct file_load_info *info )
1373 int len = strlen(name) * sizeof(WCHAR);
1374 if (!get_file_tmp_space( info, len )) return 0;
1376 if ((res = parse_strW( (WCHAR *)info->tmp, &len, name, ']' )) == -1)
1378 file_read_error( "Malformed key", info );
1381 for (p = (WCHAR *)info->tmp; *p; p++) if (*p == '\\') break;
1383 for (res = 1; key != root_key; res++)
1385 if (!strcmpiW( (WCHAR *)info->tmp, key->name )) break;
1388 if (key == root_key) res = 0; /* no matching name */
1392 /* load all the keys from the input file */
1393 static void load_keys( struct key *key, FILE *f )
1395 struct key *subkey = NULL;
1396 struct file_load_info info;
1398 int default_modif = time(NULL);
1399 int flags = (key->flags & KEY_VOLATILE) ? KEY_VOLATILE : KEY_DIRTY;
1400 int prefix_len = -1; /* number of key name prefixes to skip */
1406 if (!(info.buffer = mem_alloc( info.len ))) return;
1407 if (!(info.tmp = mem_alloc( info.tmplen )))
1409 free( info.buffer );
1413 if ((read_next_line( &info ) != 1) ||
1414 strcmp( info.buffer, "WINE REGISTRY Version 2" ))
1416 set_error( STATUS_NOT_REGISTRY_FILE );
1420 while (read_next_line( &info ) == 1)
1423 while (*p && isspace(*p)) p++;
1426 case '[': /* new key */
1427 if (subkey) release_object( subkey );
1428 if (prefix_len == -1) prefix_len = get_prefix_len( key, p + 1, &info );
1429 if (!(subkey = load_key( key, p + 1, flags, prefix_len, &info, default_modif )))
1430 file_read_error( "Error creating key", &info );
1432 case '@': /* default value */
1433 case '\"': /* value */
1434 if (subkey) load_value( subkey, p, &info );
1435 else file_read_error( "Value without key", &info );
1437 case '#': /* comment */
1438 case ';': /* comment */
1439 case 0: /* empty line */
1442 file_read_error( "Unrecognized input", &info );
1448 if (subkey) release_object( subkey );
1449 free( info.buffer );
1453 /* load a part of the registry from a file */
1454 static void load_registry( struct key *key, obj_handle_t handle )
1459 if (!(file = get_file_obj( current->process, handle, GENERIC_READ ))) return;
1460 fd = dup( get_file_unix_fd( file ) );
1461 release_object( file );
1464 FILE *f = fdopen( fd, "r" );
1467 load_keys( key, f );
1470 else file_set_error();
1474 /* registry initialisation */
1475 void init_registry(void)
1477 static const WCHAR root_name[] = { 0 };
1478 static const WCHAR config_name[] =
1479 { 'M','a','c','h','i','n','e','\\','S','o','f','t','w','a','r','e','\\',
1480 'W','i','n','e','\\','W','i','n','e','\\','C','o','n','f','i','g',0 };
1486 /* create the root key */
1487 root_key = alloc_key( root_name, time(NULL) );
1489 root_key->flags |= KEY_ROOT;
1491 /* load the config file */
1492 config = wine_get_config_dir();
1493 if (!(filename = malloc( strlen(config) + 8 ))) fatal_error( "out of memory\n" );
1494 strcpy( filename, config );
1495 strcat( filename, "/config" );
1496 if ((f = fopen( filename, "r" )))
1501 /* create the config key */
1502 if (!(key = create_key( root_key, copy_path( config_name, sizeof(config_name), 0 ),
1503 NULL, 0, time(NULL), &dummy )))
1504 fatal_error( "could not create config key\n" );
1505 key->flags |= KEY_VOLATILE;
1507 load_keys( key, f );
1509 if (get_error() == STATUS_NOT_REGISTRY_FILE)
1510 fatal_error( "%s is not a valid registry file\n", filename );
1512 fatal_error( "loading %s failed with error %x\n", filename, get_error() );
1514 release_object( key );
1519 /* update the level of the parents of a key (only needed for the old format) */
1520 static int update_level( struct key *key )
1523 int max = key->level;
1524 for (i = 0; i <= key->last_subkey; i++)
1526 int sub = update_level( key->subkeys[i] );
1527 if (sub > max) max = sub;
1533 /* save a registry branch to a file */
1534 static void save_all_subkeys( struct key *key, FILE *f )
1536 fprintf( f, "WINE REGISTRY Version 2\n" );
1537 fprintf( f, ";; All keys relative to " );
1538 dump_path( key, NULL, f );
1540 save_subkeys( key, key, f );
1543 /* save a registry branch to a file handle */
1544 static void save_registry( struct key *key, obj_handle_t handle )
1549 if (key->flags & KEY_DELETED)
1551 set_error( STATUS_KEY_DELETED );
1554 if (!(file = get_file_obj( current->process, handle, GENERIC_WRITE ))) return;
1555 fd = dup( get_file_unix_fd( file ) );
1556 release_object( file );
1559 FILE *f = fdopen( fd, "w" );
1562 save_all_subkeys( key, f );
1563 if (fclose( f )) file_set_error();
1573 /* register a key branch for being saved on exit */
1574 static void register_branch_for_saving( struct key *key, const char *path, size_t len )
1576 if (save_branch_count >= MAX_SAVE_BRANCH_INFO)
1578 set_error( STATUS_NO_MORE_ENTRIES );
1581 if (!len || !(save_branch_info[save_branch_count].path = memdup( path, len ))) return;
1582 save_branch_info[save_branch_count].path[len - 1] = 0;
1583 save_branch_info[save_branch_count].key = (struct key *)grab_object( key );
1584 save_branch_count++;
1587 /* save a registry branch to a file */
1588 static int save_branch( struct key *key, const char *path )
1591 char *p, *real, *tmp = NULL;
1592 int fd, count = 0, ret = 0, by_symlink;
1595 if (!(key->flags & KEY_DIRTY))
1597 if (debug_level > 1) dump_operation( key, NULL, "Not saving clean" );
1601 /* get the real path */
1603 by_symlink = (!lstat(path, &st) && S_ISLNK (st.st_mode));
1604 if (!(real = malloc( PATH_MAX ))) return 0;
1605 if (!realpath( path, real ))
1612 /* test the file type */
1614 if ((fd = open( path, O_WRONLY )) != -1)
1616 /* if file is not a regular file or has multiple links or is accessed
1617 * via symbolic links, write directly into it; otherwise use a temp file */
1619 (!fstat( fd, &st ) && (!S_ISREG(st.st_mode) || st.st_nlink > 1)))
1627 /* create a temp file in the same directory */
1629 if (!(tmp = malloc( strlen(path) + 20 ))) goto done;
1630 strcpy( tmp, path );
1631 if ((p = strrchr( tmp, '/' ))) p++;
1635 sprintf( p, "reg%lx%04x.tmp", (long) getpid(), count++ );
1636 if ((fd = open( tmp, O_CREAT | O_EXCL | O_WRONLY, 0666 )) != -1) break;
1637 if (errno != EEXIST) goto done;
1641 /* now save to it */
1644 if (!(f = fdopen( fd, "w" )))
1646 if (tmp) unlink( tmp );
1651 if (debug_level > 1)
1653 fprintf( stderr, "%s: ", path );
1654 dump_operation( key, NULL, "saving" );
1657 save_all_subkeys( key, f );
1662 /* if successfully written, rename to final name */
1663 if (ret) ret = !rename( tmp, path );
1664 if (!ret) unlink( tmp );
1669 if (real) free( real );
1670 if (ret) make_clean( key );
1674 /* periodic saving of the registry */
1675 static void periodic_save( void *arg )
1678 for (i = 0; i < save_branch_count; i++)
1679 save_branch( save_branch_info[i].key, save_branch_info[i].path );
1680 add_timeout( &next_save_time, save_period );
1681 save_timeout_user = add_timeout_user( &next_save_time, periodic_save, 0 );
1684 /* save the modified registry branches to disk */
1685 void flush_registry(void)
1689 for (i = 0; i < save_branch_count; i++)
1691 if (!save_branch( save_branch_info[i].key, save_branch_info[i].path ))
1693 fprintf( stderr, "wineserver: could not save registry branch to %s",
1694 save_branch_info[i].path );
1700 /* close the top-level keys; used on server exit */
1701 void close_registry(void)
1705 for (i = 0; i < save_branch_count; i++) release_object( save_branch_info[i].key );
1706 release_object( root_key );
1710 /* create a registry key */
1711 DECL_HANDLER(create_key)
1713 struct key *key = NULL, *parent;
1714 unsigned int access = req->access;
1715 WCHAR *name, *class;
1717 if (access & MAXIMUM_ALLOWED) access = KEY_ALL_ACCESS; /* FIXME: needs general solution */
1719 if (!(name = copy_req_path( req->namelen, !req->parent ))) return;
1720 if ((parent = get_hkey_obj( req->parent, 0 /*FIXME*/ )))
1722 int flags = (req->options & REG_OPTION_VOLATILE) ? KEY_VOLATILE : KEY_DIRTY;
1724 if (req->namelen == get_req_data_size()) /* no class specified */
1726 key = create_key( parent, name, NULL, flags, req->modif, &reply->created );
1730 const WCHAR *class_ptr = (WCHAR *)((char *)get_req_data() + req->namelen);
1732 if ((class = req_strdupW( req, class_ptr, get_req_data_size() - req->namelen )))
1734 key = create_key( parent, name, class, flags, req->modif, &reply->created );
1740 reply->hkey = alloc_handle( current->process, key, access, 0 );
1741 release_object( key );
1743 release_object( parent );
1747 /* open a registry key */
1748 DECL_HANDLER(open_key)
1750 struct key *key, *parent;
1751 unsigned int access = req->access;
1753 if (access & MAXIMUM_ALLOWED) access = KEY_ALL_ACCESS; /* FIXME: needs general solution */
1755 if ((parent = get_hkey_obj( req->parent, 0 /*FIXME*/ )))
1757 WCHAR *name = copy_path( get_req_data(), get_req_data_size(), !req->parent );
1758 if (name && (key = open_key( parent, name )))
1760 reply->hkey = alloc_handle( current->process, key, access, 0 );
1761 release_object( key );
1763 release_object( parent );
1767 /* delete a registry key */
1768 DECL_HANDLER(delete_key)
1772 if ((key = get_hkey_obj( req->hkey, 0 /*FIXME*/ )))
1774 delete_key( key, 0);
1775 release_object( key );
1779 /* enumerate registry subkeys */
1780 DECL_HANDLER(enum_key)
1784 if ((key = get_hkey_obj( req->hkey,
1785 req->index == -1 ? KEY_QUERY_VALUE : KEY_ENUMERATE_SUB_KEYS )))
1787 enum_key( key, req->index, req->info_class, reply );
1788 release_object( key );
1792 /* set a value of a registry key */
1793 DECL_HANDLER(set_key_value)
1798 if (!(name = copy_req_path( req->namelen, 0 ))) return;
1799 if ((key = get_hkey_obj( req->hkey, KEY_SET_VALUE )))
1801 size_t datalen = get_req_data_size() - req->namelen;
1802 const char *data = (char *)get_req_data() + req->namelen;
1804 set_value( key, name, req->type, data, datalen );
1805 release_object( key );
1809 /* retrieve the value of a registry key */
1810 DECL_HANDLER(get_key_value)
1816 if (!(name = copy_path( get_req_data(), get_req_data_size(), 0 ))) return;
1817 if ((key = get_hkey_obj( req->hkey, KEY_QUERY_VALUE )))
1819 get_value( key, name, &reply->type, &reply->total );
1820 release_object( key );
1824 /* enumerate the value of a registry key */
1825 DECL_HANDLER(enum_key_value)
1829 if ((key = get_hkey_obj( req->hkey, KEY_QUERY_VALUE )))
1831 enum_value( key, req->index, req->info_class, reply );
1832 release_object( key );
1836 /* delete a value of a registry key */
1837 DECL_HANDLER(delete_key_value)
1842 if ((key = get_hkey_obj( req->hkey, KEY_SET_VALUE )))
1844 if ((name = req_strdupW( req, get_req_data(), get_req_data_size() )))
1846 delete_value( key, name );
1849 release_object( key );
1853 /* load a registry branch from a file */
1854 DECL_HANDLER(load_registry)
1858 if ((key = get_hkey_obj( req->hkey, KEY_SET_VALUE | KEY_CREATE_SUB_KEY )))
1860 /* FIXME: use subkey name */
1861 load_registry( key, req->file );
1862 release_object( key );
1866 DECL_HANDLER(unload_registry)
1870 if ((key = get_hkey_obj( req->hkey, 0 )))
1872 delete_key( key, 1 ); /* FIXME */
1873 release_object( key );
1877 /* save a registry branch to a file */
1878 DECL_HANDLER(save_registry)
1882 if ((key = get_hkey_obj( req->hkey, KEY_QUERY_VALUE | KEY_ENUMERATE_SUB_KEYS )))
1884 save_registry( key, req->file );
1885 release_object( key );
1889 /* set the current and saving level for the registry */
1890 DECL_HANDLER(set_registry_levels)
1892 current_level = req->current;
1893 saving_level = req->saving;
1895 /* set periodic save timer */
1897 if (save_timeout_user)
1899 remove_timeout_user( save_timeout_user );
1900 save_timeout_user = NULL;
1902 if ((save_period = req->period))
1904 if (save_period < 10000) save_period = 10000; /* limit rate */
1905 gettimeofday( &next_save_time, 0 );
1906 add_timeout( &next_save_time, save_period );
1907 save_timeout_user = add_timeout_user( &next_save_time, periodic_save, 0 );
1911 /* save a registry branch at server exit */
1912 DECL_HANDLER(save_registry_atexit)
1916 if ((key = get_hkey_obj( req->hkey, KEY_QUERY_VALUE | KEY_ENUMERATE_SUB_KEYS )))
1918 register_branch_for_saving( key, get_req_data(), get_req_data_size() );
1919 release_object( key );
1923 /* add a registry key change notification */
1924 DECL_HANDLER(set_registry_notification)
1927 struct event *event;
1928 struct notify *notify;
1930 key = get_hkey_obj( req->hkey, KEY_NOTIFY );
1933 event = get_event_obj( current->process, req->event, SYNCHRONIZE );
1936 notify = find_notify( key, req->hkey );
1939 release_object( notify->event );
1940 grab_object( event );
1941 notify->event = event;
1945 notify = (struct notify *) malloc (sizeof(*notify));
1948 grab_object( event );
1949 notify->event = event;
1950 notify->subtree = req->subtree;
1951 notify->filter = req->filter;
1952 notify->hkey = req->hkey;
1954 /* add to linked list */
1955 notify->prev = NULL;
1956 notify->next = key->first_notify;
1958 notify->next->prev = notify;
1960 key->last_notify = notify;
1961 key->first_notify = notify;
1964 set_error( STATUS_NO_MEMORY );
1966 release_object( event );
1968 release_object( key );