4 * Copyright 1996 Marcus Meissner
5 * Copyright 1998 Matthew Becker
6 * Copyright 1999 Sylvain St-Germain
8 * December 21, 1997 - Kevin Cozens
9 * Fixed bugs in the _w95_loadreg() function. Added extra information
10 * regarding the format of the Windows '95 registry files.
13 * When changing this file, please re-run the regtest program to ensure
14 * the conditions are handled properly.
19 * Time for RegEnumKey*, RegQueryInfoKey*
31 #ifdef HAVE_SYS_ERRNO_H
32 #include <sys/errno.h>
34 #include <sys/types.h>
36 #include <sys/fcntl.h>
42 #include "wine/winbase16.h"
46 #include "debugtools.h"
52 DEFAULT_DEBUG_CHANNEL(reg
);
54 static void REGISTRY_Init(void);
55 /* FIXME: following defines should be configured global ... */
57 #define SAVE_USERS_DEFAULT ETCDIR"/wine.userreg"
58 #define SAVE_LOCAL_MACHINE_DEFAULT ETCDIR"/wine.systemreg"
60 /* relative in ~user/.wine/ : */
61 #define SAVE_CURRENT_USER "user.reg"
62 #define SAVE_DEFAULT_USER "userdef.reg"
63 #define SAVE_LOCAL_USERS_DEFAULT "wine.userreg"
64 #define SAVE_LOCAL_MACHINE "system.reg"
67 static void *xmalloc( size_t size
)
71 res
= malloc (size
? size
: 1);
73 WARN("Virtual memory exhausted.\n");
80 /******************************************************************************
81 * REGISTRY_Init [Internal]
82 * Registry initialisation, allocates some default keys.
84 static void REGISTRY_Init(void) {
90 RegCreateKeyA(HKEY_DYN_DATA
,"PerfStats\\StatData",&hkey
);
93 /* This was an Open, but since it is called before the real registries
94 are loaded, it was changed to a Create - MTB 980507*/
95 RegCreateKeyA(HKEY_LOCAL_MACHINE
,"HARDWARE\\DESCRIPTION\\System",&hkey
);
96 RegSetValueExA(hkey
,"Identifier",0,REG_SZ
,"SystemType WINE",strlen("SystemType WINE"));
99 /* \\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion
103 * string RegisteredOwner
104 * string RegisteredOrganization
107 /* System\\CurrentControlSet\\Services\\SNMP\\Parameters\\RFC1156Agent
112 if (-1!=gethostname(buf
,200)) {
113 RegCreateKeyA(HKEY_LOCAL_MACHINE
,"System\\CurrentControlSet\\Control\\ComputerName\\ComputerName",&hkey
);
114 RegSetValueExA(hkey
,"ComputerName",0,REG_SZ
,buf
,strlen(buf
)+1);
120 /************************ LOAD Registry Function ****************************/
124 /******************************************************************************
125 * _find_or_add_key [Internal]
127 static inline HKEY
_find_or_add_key( HKEY hkey
, LPWSTR keyname
)
130 if (RegCreateKeyW( hkey
, keyname
, &subkey
) != ERROR_SUCCESS
) subkey
= 0;
131 if (keyname
) free( keyname
);
135 /******************************************************************************
136 * _find_or_add_value [Internal]
138 static void _find_or_add_value( HKEY hkey
, LPWSTR name
, DWORD type
, LPBYTE data
, DWORD len
)
140 RegSetValueExW( hkey
, name
, 0, type
, data
, len
);
141 if (name
) free( name
);
142 if (data
) free( data
);
146 /******************************************************************************
147 * _wine_read_line [Internal]
149 * reads a line including dynamically enlarging the readbuffer and throwing
152 static int _wine_read_line( FILE *F
, char **buf
, int *len
)
162 s
=fgets(curread
,mylen
,F
);
165 if (NULL
==(s
=strchr(curread
,'\n'))) {
166 /* buffer wasn't large enough */
167 curoff
= strlen(*buf
);
168 curread
= realloc(*buf
,*len
*2);
169 if(curread
== NULL
) {
170 WARN("Out of memory");
175 mylen
= *len
; /* we filled up the buffer and
176 * got new '*len' bytes to fill
184 /* throw away comments */
185 if (**buf
=='#' || **buf
==';') {
190 if (s
) /* got end of line */
197 /******************************************************************************
198 * _wine_read_USTRING [Internal]
200 * converts a char* into a UNICODE string (up to a special char)
201 * and returns the position exactly after that string
203 static char* _wine_read_USTRING( char *buf
, LPWSTR
*str
)
208 /* read up to "=" or "\0" or "\n" */
210 *str
= (LPWSTR
)xmalloc(2*strlen(buf
)+2);
212 while (*s
&& (*s
!='\n') && (*s
!='=')) {
214 *ws
++=*((unsigned char*)s
++);
218 /* Dangling \ ... may only happen if a registry
219 * write was short. FIXME: What to do?
229 WARN("Non unicode escape sequence \\%c found in |%s|\n",*s
,buf
);
237 memcpy(xbuf
,s
,4);xbuf
[4]='\0';
238 if (!sscanf(xbuf
,"%x",&wc
))
239 WARN("Strange escape sequence %s found in |%s|\n",xbuf
,buf
);
241 *ws
++ =(unsigned short)wc
;
250 /******************************************************************************
251 * _wine_loadsubkey [Internal]
254 * It seems like this is returning a boolean. Should it?
260 static int _wine_loadsubkey( FILE *F
, HKEY hkey
, int level
, char **buf
, int *buflen
)
267 TRACE("(%p,%x,%d,%s,%d)\n", F
, hkey
, level
, debugstr_a(*buf
), *buflen
);
269 /* Good. We already got a line here ... so parse it */
279 WARN("Got a subhierarchy without resp. key?\n");
282 if (!_wine_loadsubkey(F
,subkey
,level
+1,buf
,buflen
))
283 if (!_wine_read_line(F
,buf
,buflen
))
288 /* let the caller handle this line */
289 if (i
<level
|| **buf
=='\0')
292 /* it can be: a value or a keyname. Parse the name first */
293 s
=_wine_read_USTRING(s
,&name
);
295 /* switch() default: hack to avoid gotos */
299 if (subkey
) RegCloseKey( subkey
);
300 subkey
=_find_or_add_key(hkey
,name
);
303 int len
,lastmodified
,type
;
306 WARN("Unexpected character: %c\n",*s
);
310 if (2!=sscanf(s
,"%d,%d,",&type
,&lastmodified
)) {
311 WARN("Haven't understood possible value in |%s|, skipping.\n",*buf
);
318 WARN("Haven't understood possible value in |%s|, skipping.\n",*buf
);
321 if (type
== REG_SZ
|| type
== REG_EXPAND_SZ
) {
322 s
=_wine_read_USTRING(s
,(LPWSTR
*)&data
);
323 len
= lstrlenW((LPWSTR
)data
)*2+2;
326 data
= (LPBYTE
)xmalloc(len
+1);
327 for (i
=0;i
<len
;i
++) {
329 if (*s
>='0' && *s
<='9')
331 if (*s
>='a' && *s
<='f')
332 data
[i
]=(*s
-'a'+'\xa')<<4;
333 if (*s
>='A' && *s
<='F')
334 data
[i
]=(*s
-'A'+'\xa')<<4;
336 if (*s
>='0' && *s
<='9')
338 if (*s
>='a' && *s
<='f')
339 data
[i
]|=*s
-'a'+'\xa';
340 if (*s
>='A' && *s
<='F')
341 data
[i
]|=*s
-'A'+'\xa';
345 _find_or_add_value(hkey
,name
,type
,data
,len
);
348 /* read the next line */
349 if (!_wine_read_line(F
,buf
,buflen
))
353 if (subkey
) RegCloseKey( subkey
);
358 /******************************************************************************
359 * _wine_loadsubreg [Internal]
361 static int _wine_loadsubreg( FILE *F
, HKEY hkey
, const char *fn
)
367 buf
=xmalloc(10);buflen
=10;
368 if (!_wine_read_line(F
,&buf
,&buflen
)) {
372 if (!sscanf(buf
,"WINE REGISTRY Version %d",&ver
)) {
377 if (ver
== 2) /* new version */
380 if ((file
= FILE_CreateFile( fn
, GENERIC_READ
, 0, NULL
, OPEN_EXISTING
,
381 FILE_ATTRIBUTE_NORMAL
, -1, TRUE
)) != INVALID_HANDLE_VALUE
)
383 struct load_registry_request
*req
= get_req_buffer();
387 server_call( REQ_LOAD_REGISTRY
);
395 TRACE("Old format (%d) registry found, ignoring it. (buf was %s).\n",ver
,buf
);
400 if (!_wine_read_line(F
,&buf
,&buflen
)) {
404 if (!_wine_loadsubkey(F
,hkey
,0,&buf
,&buflen
)) {
413 /******************************************************************************
414 * _wine_loadreg [Internal]
416 static int _wine_loadreg( HKEY hkey
, char *fn
)
420 TRACE("(%x,%s)\n",hkey
,debugstr_a(fn
));
424 WARN("Couldn't open %s for reading: %s\n",fn
,strerror(errno
) );
427 _wine_loadsubreg(F
,hkey
,fn
);
432 /* NT REGISTRY LOADER */
434 #ifdef HAVE_SYS_MMAN_H
435 # include <sys/mman.h>
439 #define MAP_FAILED ((LPVOID)-1)
442 #define NT_REG_BLOCK_SIZE 0x1000
444 #define NT_REG_HEADER_BLOCK_ID 0x66676572 /* regf */
445 #define NT_REG_POOL_BLOCK_ID 0x6E696268 /* hbin */
446 #define NT_REG_KEY_BLOCK_ID 0x6b6e /* nk */
447 #define NT_REG_VALUE_BLOCK_ID 0x6b76 /* vk */
449 /* subblocks of nk */
450 #define NT_REG_HASH_BLOCK_ID 0x666c /* lf */
451 #define NT_REG_NOHASH_BLOCK_ID 0x696c /* li */
452 #define NT_REG_RI_BLOCK_ID 0x6972 /* ri */
454 #define NT_REG_KEY_BLOCK_TYPE 0x20
455 #define NT_REG_ROOT_KEY_BLOCK_TYPE 0x2c
459 DWORD id
; /* 0x66676572 'regf'*/
460 DWORD uk1
; /* 0x04 */
461 DWORD uk2
; /* 0x08 */
462 FILETIME DateModified
; /* 0x0c */
463 DWORD uk3
; /* 0x14 */
464 DWORD uk4
; /* 0x18 */
465 DWORD uk5
; /* 0x1c */
466 DWORD uk6
; /* 0x20 */
467 DWORD RootKeyBlock
; /* 0x24 */
468 DWORD BlockSize
; /* 0x28 */
470 DWORD Checksum
; /* at offset 0x1FC */
481 DWORD id
; /* 0x6E696268 'hbin' */
485 DWORD uk2
; /* 0x10 */
486 DWORD uk3
; /* 0x14 */
487 DWORD uk4
; /* 0x18 */
488 DWORD size
; /* 0x1C */
489 nt_hbin_sub hbin_sub
; /* 0x20 */
493 * the value_list consists of offsets to the values (vk)
497 WORD SubBlockId
; /* 0x00 0x6B6E */
498 WORD Type
; /* 0x02 for the root-key: 0x2C, otherwise 0x20*/
499 FILETIME writetime
; /* 0x04 */
500 DWORD uk1
; /* 0x0C */
501 DWORD parent_off
; /* 0x10 Offset of Owner/Parent key */
502 DWORD nr_subkeys
; /* 0x14 number of sub-Keys */
503 DWORD uk8
; /* 0x18 */
504 DWORD lf_off
; /* 0x1C Offset of the sub-key lf-Records */
505 DWORD uk2
; /* 0x20 */
506 DWORD nr_values
; /* 0x24 number of values */
507 DWORD valuelist_off
; /* 0x28 Offset of the Value-List */
508 DWORD off_sk
; /* 0x2c Offset of the sk-Record */
509 DWORD off_class
; /* 0x30 Offset of the Class-Name */
510 DWORD uk3
; /* 0x34 */
511 DWORD uk4
; /* 0x38 */
512 DWORD uk5
; /* 0x3c */
513 DWORD uk6
; /* 0x40 */
514 DWORD uk7
; /* 0x44 */
515 WORD name_len
; /* 0x48 name-length */
516 WORD class_len
; /* 0x4a class-name length */
517 char name
[1]; /* 0x4c key-name */
522 DWORD off_nk
; /* 0x00 */
523 DWORD name
; /* 0x04 */
528 WORD id
; /* 0x00 0x666c */
529 WORD nr_keys
; /* 0x06 */
530 hash_rec hash_rec
[1];
534 list of subkeys without hash
542 WORD id
; /* 0x00 0x696c */
548 this is a intermediate node
560 WORD id
; /* 0x00 0x6972 */
561 WORD nr_li
; /* 0x02 number off offsets */
562 DWORD off_li
[1]; /* 0x04 points to li */
567 WORD id
; /* 0x00 'vk' */
577 LPSTR
_strdupnA( LPCSTR str
, int len
)
581 if (!str
) return NULL
;
582 ret
= xmalloc( len
+ 1 );
583 memcpy( ret
, str
, len
);
588 static int _nt_parse_nk(HKEY hkey
, char * base
, nt_nk
* nk
, int level
);
589 static int _nt_parse_vk(HKEY hkey
, char * base
, nt_vk
* vk
);
590 static int _nt_parse_lf(HKEY hkey
, char * base
, int subkeys
, nt_lf
* lf
, int level
);
597 * 0 value is a default value
598 * 1 the value has a name
601 * len of the whole data block
603 * bytes including the terminating \0 = 2*(number_of_chars+1)
604 * - reg_dword, reg_binary:
605 * if highest bit of data_len is set data_off contains the value
607 static int _nt_parse_vk(HKEY hkey
, char * base
, nt_vk
* vk
)
611 BYTE
* pdata
= (BYTE
*)(base
+vk
->data_off
+4); /* start of data */
613 if(vk
->id
!= NT_REG_VALUE_BLOCK_ID
) goto error
;
615 if (!(len
= MultiByteToWideChar( CP_ACP
, 0, vk
->name
, vk
->nam_len
, name
, 256 )) && vk
->nam_len
)
617 ERR("name too large '%.*s' (%d)\n", vk
->nam_len
, vk
->name
, vk
->nam_len
);
622 ret
= RegSetValueExW( hkey
, (vk
->flag
& 0x00000001) ? name
: NULL
, 0, vk
->type
,
623 (vk
->data_len
& 0x80000000) ? (LPBYTE
)&(vk
->data_off
): pdata
,
624 (vk
->data_len
& 0x7fffffff) );
625 if (ret
) ERR("RegSetValueEx failed (0x%08lx)\n", ret
);
628 ERR("unknown block found (0x%04x), please report!\n", vk
->id
);
635 * this structure contains the hash of a keyname and points to all
638 * exception: if the id is 'il' there are no hash values and every
641 static int _nt_parse_lf(HKEY hkey
, char * base
, int subkeys
, nt_lf
* lf
, int level
)
645 if (lf
->id
== NT_REG_HASH_BLOCK_ID
)
647 if (subkeys
!= lf
->nr_keys
) goto error1
;
649 for (i
=0; i
<lf
->nr_keys
; i
++)
651 if (!_nt_parse_nk(hkey
, base
, (nt_nk
*)(base
+lf
->hash_rec
[i
].off_nk
+4), level
)) goto error
;
654 else if (lf
->id
== NT_REG_NOHASH_BLOCK_ID
)
656 nt_li
* li
= (nt_li
*)lf
;
657 if (subkeys
!= li
->nr_keys
) goto error1
;
659 for (i
=0; i
<li
->nr_keys
; i
++)
661 if (!_nt_parse_nk(hkey
, base
, (nt_nk
*)(base
+li
->off_nk
[i
]+4), level
)) goto error
;
664 else if (lf
->id
== NT_REG_RI_BLOCK_ID
) /* ri */
666 nt_ri
* ri
= (nt_ri
*)lf
;
669 /* count all subkeys */
670 for (i
=0; i
<ri
->nr_li
; i
++)
672 nt_li
* li
= (nt_li
*)(base
+ri
->off_li
[i
]+4);
673 if(li
->id
!= NT_REG_NOHASH_BLOCK_ID
) goto error2
;
674 li_subkeys
+= li
->nr_keys
;
678 if (subkeys
!= li_subkeys
) goto error1
;
680 /* loop through the keys */
681 for (i
=0; i
<ri
->nr_li
; i
++)
683 nt_li
* li
= (nt_li
*)(base
+ri
->off_li
[i
]+4);
684 if (!_nt_parse_lf(hkey
, base
, li
->nr_keys
, (nt_lf
*)li
, level
)) goto error
;
693 error2
: ERR("unknown node id 0x%04x, please report!\n", lf
->id
);
696 error1
: ERR("registry file corrupt! (inconsistent number of subkeys)\n");
699 error
: ERR("error reading lf block\n");
703 static int _nt_parse_nk(HKEY hkey
, char * base
, nt_nk
* nk
, int level
)
710 if(nk
->SubBlockId
!= NT_REG_KEY_BLOCK_ID
)
712 ERR("unknown node id 0x%04x, please report!\n", nk
->SubBlockId
);
716 if((nk
->Type
!=NT_REG_ROOT_KEY_BLOCK_TYPE
) &&
717 (((nt_nk
*)(base
+nk
->parent_off
+4))->SubBlockId
!= NT_REG_KEY_BLOCK_ID
))
719 ERR("registry file corrupt!\n");
723 /* create the new key */
726 name
= _strdupnA( nk
->name
, nk
->name_len
);
727 if(RegCreateKeyA( hkey
, name
, &subkey
)) { free(name
); goto error
; }
731 /* loop through the subkeys */
734 nt_lf
* lf
= (nt_lf
*)(base
+nk
->lf_off
+4);
735 if (!_nt_parse_lf(subkey
, base
, nk
->nr_subkeys
, lf
, level
-1)) goto error1
;
738 /* loop trough the value list */
739 vl
= (DWORD
*)(base
+nk
->valuelist_off
+4);
740 for (i
=0; i
<nk
->nr_values
; i
++)
742 nt_vk
* vk
= (nt_vk
*)(base
+vl
[i
]+4);
743 if (!_nt_parse_vk(subkey
, base
, vk
)) goto error1
;
749 error1
: RegCloseKey(subkey
);
755 /* windows 95 registry loader */
757 /* SECTION 1: main header
761 #define W95_REG_CREG_ID 0x47455243
765 DWORD id
; /* "CREG" = W95_REG_CREG_ID */
766 DWORD version
; /* ???? 0x00010000 */
767 DWORD rgdb_off
; /* 0x08 Offset of 1st RGDB-block */
768 DWORD uk2
; /* 0x0c */
769 WORD rgdb_num
; /* 0x10 # of RGDB-blocks */
775 /* SECTION 2: Directory information (tree structure)
777 * once on offset 0x20
779 * structure: [rgkn][dke]* (repeat till rgkn->size is reached)
781 #define W95_REG_RGKN_ID 0x4e4b4752
785 DWORD id
; /*"RGKN" = W95_REG_RGKN_ID */
786 DWORD size
; /* Size of the RGKN-block */
787 DWORD root_off
; /* Rel. Offset of the root-record */
791 /* Disk Key Entry Structure
793 * the 1st entry in a "usual" registry file is a nul-entry with subkeys: the
794 * hive itself. It looks the same like other keys. Even the ID-number can
797 * The "hash"-value is a value representing the key's name. Windows will not
798 * search for the name, but for a matching hash-value. if it finds one, it
799 * will compare the actual string info, otherwise continue with the next key.
800 * To calculate the hash initialize a D-Word with 0 and add all ASCII-values
801 * of the string which are smaller than 0x80 (128) to this D-Word.
803 * If you want to modify key names, also modify the hash-values, since they
804 * cannot be found again (although they would be displayed in REGEDIT)
805 * End of list-pointers are filled with 0xFFFFFFFF
807 * Disk keys are layed out flat ... But, sometimes, nrLS and nrHS are both
808 * 0xFFFF, which means skipping over nextkeyoffset bytes (including this
809 * structure) and reading another RGDB_section.
811 * there is a one to one relationship between dke and dkh
813 /* key struct, once per key */
816 DWORD x1
; /* Free entry indicator(?) */
817 DWORD hash
; /* sum of bytes of keyname */
818 DWORD x3
; /* Root key indicator? usually 0xFFFFFFFF */
819 DWORD prevlvl
; /* offset of previous key */
820 DWORD nextsub
; /* offset of child key */
821 DWORD next
; /* offset of sibling key */
822 WORD nrLS
; /* id inside the rgdb block */
823 WORD nrMS
; /* number of the rgdb block */
826 /* SECTION 3: key information, values and data
829 * section: [blocks]* (repeat creg->rgdb_num times)
830 * blocks: [rgdb] [subblocks]* (repeat till block size reached )
831 * subblocks: [dkh] [dkv]* (repeat dkh->values times )
833 * An interesting relationship exists in RGDB_section. The value at offset
834 * 10 equals the value at offset 4 minus the value at offset 8. I have no
835 * idea at the moment what this means. (Kevin Cozens)
838 /* block header, once per block */
839 #define W95_REG_RGDB_ID 0x42444752
843 DWORD id
; /* 0x00 'rgdb' = W95_REG_RGDB_ID */
844 DWORD size
; /* 0x04 */
845 DWORD uk1
; /* 0x08 */
846 DWORD uk2
; /* 0x0c */
847 DWORD uk3
; /* 0x10 */
848 DWORD uk4
; /* 0x14 */
849 DWORD uk5
; /* 0x18 */
850 DWORD uk6
; /* 0x1c */
854 /* Disk Key Header structure (RGDB part), once per key */
857 DWORD nextkeyoff
; /* 0x00 offset to next dkh*/
858 WORD nrLS
; /* 0x04 id inside the rgdb block */
859 WORD nrMS
; /* 0x06 number of the rgdb block */
860 DWORD bytesused
; /* 0x08 */
861 WORD keynamelen
; /* 0x0c len of name */
862 WORD values
; /* 0x0e number of values */
863 DWORD xx1
; /* 0x10 */
864 char name
[1]; /* 0x14 */
865 /* dkv */ /* 0x14 + keynamelen */
868 /* Disk Key Value structure, once per value */
871 DWORD type
; /* 0x00 */
873 WORD valnamelen
; /* 0x08 length of name, 0 is default key */
874 WORD valdatalen
; /* 0x0A length of data */
875 char name
[1]; /* 0x0c */
876 /* raw data */ /* 0x0c + valnamelen */
879 /******************************************************************************
880 * _w95_lookup_dkh [Internal]
882 * seeks the dkh belonging to a dke
884 static _w95dkh
* _w95_lookup_dkh (_w95creg
*creg
, int nrLS
, int nrMS
)
890 /* get the beginning of the rgdb datastore */
891 rgdb
= (_w95rgdb
*)((char*)creg
+creg
->rgdb_off
);
893 /* check: requested block < last_block) */
894 if (creg
->rgdb_num
<= nrMS
)
896 ERR("registry file corrupt! requested block no. beyond end.\n");
900 /* find the right block */
901 for(i
=0; i
<nrMS
;i
++)
903 if(rgdb
->id
!= W95_REG_RGDB_ID
) /* check the magic */
905 ERR("registry file corrupt! bad magic 0x%08lx\n", rgdb
->id
);
908 rgdb
= (_w95rgdb
*) ((char*)rgdb
+rgdb
->size
); /* find next block */
911 dkh
= (_w95dkh
*)(rgdb
+ 1); /* first sub block within the rgdb */
915 if(nrLS
==dkh
->nrLS
) return dkh
;
916 dkh
= (_w95dkh
*)((char*)dkh
+ dkh
->nextkeyoff
); /* find next subblock */
917 } while ((char *)dkh
< ((char*)rgdb
+rgdb
->size
));
922 /******************************************************************************
923 * _w95_parse_dkv [Internal]
925 static int _w95_parse_dkv (
936 /* first value block */
937 dkv
= (_w95dkv
*)((char*)dkh
+dkh
->keynamelen
+0x14);
939 /* loop trought the values */
940 for (i
=0; i
< dkh
->values
; i
++)
942 name
= _strdupnA(dkv
->name
, dkv
->valnamelen
);
943 ret
= RegSetValueExA(hkey
, name
, 0, dkv
->type
, &(dkv
->name
[dkv
->valnamelen
]),dkv
->valdatalen
);
944 if (ret
) FIXME("RegSetValueEx returned: 0x%08lx\n", ret
);
948 dkv
= (_w95dkv
*)((char*)dkv
+dkv
->valnamelen
+dkv
->valdatalen
+0x0c);
953 /******************************************************************************
954 * _w95_parse_dke [Internal]
956 static int _w95_parse_dke(
968 /* get start address of root key block */
969 if (!dke
) dke
= (_w95dke
*)((char*)rgkn
+ rgkn
->root_off
);
971 /* special root key */
972 if (dke
->nrLS
== 0xffff || dke
->nrMS
==0xffff) /* eg. the root key has no name */
974 /* parse the one subkey*/
975 if (dke
->nextsub
!= 0xffffffff)
977 return _w95_parse_dke(hsubkey
, creg
, rgkn
, (_w95dke
*)((char*)rgkn
+dke
->nextsub
), level
);
979 /* has no sibling keys */
983 /* search subblock */
984 if (!(dkh
= _w95_lookup_dkh(creg
, dke
->nrLS
, dke
->nrMS
)))
986 fprintf(stderr
, "dke pointing to missing dkh !\n");
992 /* walk sibling keys */
993 if (dke
->next
!= 0xffffffff )
995 if (!_w95_parse_dke(hkey
, creg
, rgkn
, (_w95dke
*)((char*)rgkn
+dke
->next
), level
)) goto error
;
998 /* create subkey and insert values */
999 name
= _strdupnA( dkh
->name
, dkh
->keynamelen
);
1000 if (RegCreateKeyA(hkey
, name
, &hsubkey
)) { free(name
); goto error
; }
1002 if (!_w95_parse_dkv(hsubkey
, dkh
, dke
->nrLS
, dke
->nrMS
)) goto error1
;
1006 if (dke
->nextsub
!= 0xffffffff)
1008 if (!_w95_parse_dke(hsubkey
, creg
, rgkn
, (_w95dke
*)((char*)rgkn
+dke
->nextsub
), level
-1)) goto error1
;
1012 error1
: if (hsubkey
!= hkey
) RegCloseKey(hsubkey
);
1015 /* end windows 95 loader */
1017 /******************************************************************************
1018 * NativeRegLoadKey [Internal]
1020 * Loads a native registry file (win95/nt)
1023 * level number of levels to cut away (eg. ".Default" in user.dat)
1025 * this function intentionally uses unix file functions to make it possible
1026 * to move it to a seperate registry helper programm
1028 static int NativeRegLoadKey( HKEY hkey
, char* fn
, int level
)
1032 DOS_FULL_NAME full_name
;
1036 if (!DOSFS_GetFullName( fn
, 0, &full_name
)) return FALSE
;
1038 /* map the registry into the memory */
1039 if ((fd
= open(full_name
.long_name
, O_RDONLY
| O_NONBLOCK
)) == -1) return FALSE
;
1040 if ((fstat(fd
, &st
) == -1)) goto error
;
1041 if (!st
.st_size
) goto error
;
1042 if ((base
= mmap(NULL
, st
.st_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0)) == MAP_FAILED
) goto error
;
1044 switch (*(LPDWORD
)base
)
1046 /* windows 95 'creg' */
1047 case W95_REG_CREG_ID
:
1052 TRACE("Loading win95 registry '%s' '%s'\n",fn
, full_name
.long_name
);
1054 /* load the header (rgkn) */
1055 rgkn
= (_w95rgkn
*)(creg
+ 1);
1056 if (rgkn
->id
!= W95_REG_RGKN_ID
)
1058 ERR("second IFF header not RGKN, but %lx\n", rgkn
->id
);
1062 ret
= _w95_parse_dke(hkey
, creg
, rgkn
, NULL
, level
);
1066 case NT_REG_HEADER_BLOCK_ID
:
1070 nt_hbin_sub
* hbin_sub
;
1073 TRACE("Loading nt registry '%s' '%s'\n",fn
, full_name
.long_name
);
1079 hbin
= (nt_hbin
*)((char*) base
+ 0x1000);
1080 if (hbin
->id
!= NT_REG_POOL_BLOCK_ID
)
1082 ERR( "%s hbin block invalid\n", fn
);
1086 /* hbin_sub block */
1087 hbin_sub
= (nt_hbin_sub
*)&(hbin
->hbin_sub
);
1088 if ((hbin_sub
->data
[0] != 'n') || (hbin_sub
->data
[1] != 'k'))
1090 ERR( "%s hbin_sub block invalid\n", fn
);
1095 nk
= (nt_nk
*)&(hbin_sub
->data
[0]);
1096 if (nk
->Type
!= NT_REG_ROOT_KEY_BLOCK_TYPE
)
1098 ERR( "%s special nk block not found\n", fn
);
1102 ret
= _nt_parse_nk (hkey
, (char *) base
+ 0x1000, nk
, level
);
1107 ERR("unknown signature in registry file %s.\n",fn
);
1111 if(!ret
) ERR("error loading registry file %s\n", fn
);
1112 error1
: munmap(base
, st
.st_size
);
1117 /* WINDOWS 31 REGISTRY LOADER, supplied by Tor Sjøwall, tor@sn.no */
1119 reghack - windows 3.11 registry data format demo program.
1121 The reg.dat file has 3 parts, a header, a table of 8-byte entries that is
1122 a combined hash table and tree description, and finally a text table.
1124 The header is obvious from the struct header. The taboff1 and taboff2
1125 fields are always 0x20, and their usage is unknown.
1127 The 8-byte entry table has various entry types.
1129 tabent[0] is a root index. The second word has the index of the root of
1131 tabent[1..hashsize] is a hash table. The first word in the hash entry is
1132 the index of the key/value that has that hash. Data with the same
1133 hash value are on a circular list. The other three words in the
1134 hash entry are always zero.
1135 tabent[hashsize..tabcnt] is the tree structure. There are two kinds of
1136 entry: dirent and keyent/valent. They are identified by context.
1137 tabent[freeidx] is the first free entry. The first word in a free entry
1138 is the index of the next free entry. The last has 0 as a link.
1139 The other three words in the free list are probably irrelevant.
1141 Entries in text table are preceeded by a word at offset-2. This word
1142 has the value (2*index)+1, where index is the referring keyent/valent
1143 entry in the table. I have no suggestion for the 2* and the +1.
1144 Following the word, there are N bytes of data, as per the keyent/valent
1145 entry length. The offset of the keyent/valent entry is from the start
1146 of the text table to the first data byte.
1148 This information is not available from Microsoft. The data format is
1149 deduced from the reg.dat file by me. Mistakes may
1150 have been made. I claim no rights and give no guarantees for this program.
1152 Tor Sjøwall, tor@sn.no
1155 /* reg.dat header format */
1156 struct _w31_header
{
1157 char cookie
[8]; /* 'SHCC3.10' */
1158 unsigned long taboff1
; /* offset of hash table (??) = 0x20 */
1159 unsigned long taboff2
; /* offset of index table (??) = 0x20 */
1160 unsigned long tabcnt
; /* number of entries in index table */
1161 unsigned long textoff
; /* offset of text part */
1162 unsigned long textsize
; /* byte size of text part */
1163 unsigned short hashsize
; /* hash size */
1164 unsigned short freeidx
; /* free index */
1167 /* generic format of table entries */
1168 struct _w31_tabent
{
1169 unsigned short w0
, w1
, w2
, w3
;
1172 /* directory tabent: */
1173 struct _w31_dirent
{
1174 unsigned short sibling_idx
; /* table index of sibling dirent */
1175 unsigned short child_idx
; /* table index of child dirent */
1176 unsigned short key_idx
; /* table index of key keyent */
1177 unsigned short value_idx
; /* table index of value valent */
1181 struct _w31_keyent
{
1182 unsigned short hash_idx
; /* hash chain index for string */
1183 unsigned short refcnt
; /* reference count */
1184 unsigned short length
; /* length of string */
1185 unsigned short string_off
; /* offset of string in text table */
1189 struct _w31_valent
{
1190 unsigned short hash_idx
; /* hash chain index for string */
1191 unsigned short refcnt
; /* reference count */
1192 unsigned short length
; /* length of string */
1193 unsigned short string_off
; /* offset of string in text table */
1196 /* recursive helper function to display a directory tree */
1198 __w31_dumptree( unsigned short idx
,
1200 struct _w31_tabent
*tab
,
1201 struct _w31_header
*head
,
1203 time_t lastmodified
,
1206 struct _w31_dirent
*dir
;
1207 struct _w31_keyent
*key
;
1208 struct _w31_valent
*val
;
1210 static char tail
[400];
1213 dir
=(struct _w31_dirent
*)&tab
[idx
];
1216 key
= (struct _w31_keyent
*)&tab
[dir
->key_idx
];
1218 memcpy(tail
,&txt
[key
->string_off
],key
->length
);
1219 tail
[key
->length
]='\0';
1220 /* all toplevel entries AND the entries in the
1221 * toplevel subdirectory belong to \SOFTWARE\Classes
1223 if (!level
&& !strcmp(tail
,".classes")) {
1224 __w31_dumptree(dir
->child_idx
,txt
,tab
,head
,hkey
,lastmodified
,level
+1);
1225 idx
=dir
->sibling_idx
;
1228 if (subkey
) RegCloseKey( subkey
);
1229 if (RegCreateKeyA( hkey
, tail
, &subkey
) != ERROR_SUCCESS
) subkey
= 0;
1230 /* only add if leaf node or valued node */
1231 if (dir
->value_idx
!=0||dir
->child_idx
==0) {
1232 if (dir
->value_idx
) {
1233 val
=(struct _w31_valent
*)&tab
[dir
->value_idx
];
1234 memcpy(tail
,&txt
[val
->string_off
],val
->length
);
1235 tail
[val
->length
]='\0';
1236 RegSetValueA( subkey
, NULL
, REG_SZ
, tail
, 0 );
1240 TRACE("strange: no directory key name, idx=%04x\n", idx
);
1242 __w31_dumptree(dir
->child_idx
,txt
,tab
,head
,subkey
,lastmodified
,level
+1);
1243 idx
=dir
->sibling_idx
;
1245 if (subkey
) RegCloseKey( subkey
);
1249 /******************************************************************************
1250 * _w31_loadreg [Internal]
1252 void _w31_loadreg(void) {
1254 struct _w31_header head
;
1255 struct _w31_tabent
*tab
;
1259 BY_HANDLE_FILE_INFORMATION hfinfo
;
1260 time_t lastmodified
;
1264 hf
= OpenFile("reg.dat",&ofs
,OF_READ
);
1265 if (hf
==HFILE_ERROR
)
1268 /* read & dump header */
1269 if (sizeof(head
)!=_lread(hf
,&head
,sizeof(head
))) {
1270 ERR("reg.dat is too short.\n");
1274 if (memcmp(head
.cookie
, "SHCC3.10", sizeof(head
.cookie
))!=0) {
1275 ERR("reg.dat has bad signature.\n");
1280 len
= head
.tabcnt
* sizeof(struct _w31_tabent
);
1281 /* read and dump index table */
1283 if (len
!=_lread(hf
,tab
,len
)) {
1284 ERR("couldn't read %d bytes.\n",len
);
1291 txt
= xmalloc(head
.textsize
);
1292 if (-1==_llseek(hf
,head
.textoff
,SEEK_SET
)) {
1293 ERR("couldn't seek to textblock.\n");
1299 if (head
.textsize
!=_lread(hf
,txt
,head
.textsize
)) {
1300 ERR("textblock too short (%d instead of %ld).\n",len
,head
.textsize
);
1307 if (!GetFileInformationByHandle(hf
,&hfinfo
)) {
1308 ERR("GetFileInformationByHandle failed?.\n");
1314 lastmodified
= DOSFS_FileTimeToUnixTime(&hfinfo
.ftLastWriteTime
,NULL
);
1315 __w31_dumptree(tab
[0].w1
,txt
,tab
,&head
,HKEY_CLASSES_ROOT
,lastmodified
,0);
1323 /* configure save files and start the periodic saving timer */
1324 static void SHELL_InitRegistrySaving( HKEY hkey_users_default
)
1326 struct set_registry_levels_request
*req
= get_req_buffer();
1328 int all
= PROFILE_GetWineIniBool( "registry", "SaveOnlyUpdatedKeys", 1 );
1329 int period
= PROFILE_GetWineIniInt( "registry", "PeriodicSave", 0 );
1331 /* set saving level (0 for saving everything, 1 for saving only modified keys) */
1334 req
->period
= period
* 1000;
1335 server_call( REQ_SET_REGISTRY_LEVELS
);
1337 if (PROFILE_GetWineIniBool("registry","WritetoHomeRegistries",1))
1339 struct save_registry_atexit_request
*req
= get_req_buffer();
1340 const char *confdir
= get_config_dir();
1341 char *str
= req
->file
+ strlen(confdir
);
1343 if (str
+ 20 > req
->file
+ server_remaining(req
->file
))
1345 ERR("config dir '%s' too long\n", confdir
);
1349 strcpy( req
->file
, confdir
);
1350 strcpy( str
, "/" SAVE_CURRENT_USER
);
1351 req
->hkey
= HKEY_CURRENT_USER
;
1352 server_call( REQ_SAVE_REGISTRY_ATEXIT
);
1354 strcpy( req
->file
, confdir
);
1355 strcpy( str
, "/" SAVE_LOCAL_MACHINE
);
1356 req
->hkey
= HKEY_LOCAL_MACHINE
;
1357 server_call( REQ_SAVE_REGISTRY_ATEXIT
);
1359 strcpy( req
->file
, confdir
);
1360 strcpy( str
, "/" SAVE_DEFAULT_USER
);
1361 req
->hkey
= hkey_users_default
;
1362 server_call( REQ_SAVE_REGISTRY_ATEXIT
);
1364 strcpy( req
->file
, confdir
);
1365 strcpy( str
, "/" SAVE_LOCAL_USERS_DEFAULT
);
1366 req
->hkey
= HKEY_USERS
;
1367 server_call( REQ_SAVE_REGISTRY_ATEXIT
);
1372 /**********************************************************************************
1373 * SetLoadLevel [Internal]
1375 * set level to 0 for loading system files
1376 * set level to 1 for loading user files
1378 static void SetLoadLevel(int level
)
1380 struct set_registry_levels_request
*req
= get_req_buffer();
1382 req
->current
= level
;
1385 server_call( REQ_SET_REGISTRY_LEVELS
);
1388 /**********************************************************************************
1389 * SHELL_LoadRegistry [Internal]
1391 #define REG_DONTLOAD -1
1396 void SHELL_LoadRegistry( void )
1399 char windir
[MAX_PATHNAME_LEN
];
1400 char path
[MAX_PATHNAME_LEN
];
1401 int systemtype
= REG_WIN31
;
1402 HKEY hkey_users_default
;
1406 if (!CLIENT_IsBootThread()) return; /* already loaded */
1411 if (RegCreateKeyA(HKEY_USERS
, ".Default", &hkey_users_default
))
1412 hkey_users_default
= 0;
1414 GetWindowsDirectoryA( windir
, MAX_PATHNAME_LEN
);
1416 if (PROFILE_GetWineIniBool( "Registry", "LoadWindowsRegistryFiles", 1))
1418 /* test %windir%/system32/config/system --> winnt */
1419 strcpy(path
, windir
);
1420 strncat(path
, "\\system32\\config\\system", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1421 if(GetFileAttributesA(path
) != -1)
1423 systemtype
= REG_WINNT
;
1427 /* test %windir%/system.dat --> win95 */
1428 strcpy(path
, windir
);
1429 strncat(path
, "\\system.dat", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1430 if(GetFileAttributesA(path
) != -1)
1432 systemtype
= REG_WIN95
;
1436 if ((systemtype
==REG_WINNT
)
1437 && (! PROFILE_GetWineIniString( "Wine", "Profile", "", path
, MAX_PATHNAME_LEN
)))
1439 MESSAGE("When you are running with a native NT directory specify\n");
1440 MESSAGE("'Profile=<profiledirectory>' or disable loading of Windows\n");
1441 MESSAGE("registry (LoadWindowsRegistryFiles=N)\n");
1442 systemtype
= REG_DONTLOAD
;
1447 /* only wine registry */
1448 systemtype
= REG_DONTLOAD
;
1458 /* Load windows 95 entries */
1459 NativeRegLoadKey(HKEY_LOCAL_MACHINE
, "C:\\system.1st", 0);
1461 strcpy(path
, windir
);
1462 strncat(path
, "\\system.dat", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1463 NativeRegLoadKey(HKEY_LOCAL_MACHINE
, path
, 0);
1465 if (PROFILE_GetWineIniString( "Wine", "Profile", "", path
, MAX_PATHNAME_LEN
))
1467 /* user specific user.dat */
1468 strncat(path
, "\\user.dat", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1469 if (!NativeRegLoadKey( HKEY_CURRENT_USER
, path
, 1 ))
1471 MESSAGE("can't load win95 user-registry %s\n", path
);
1472 MESSAGE("check wine.conf, section [Wine], value 'Profile'\n");
1474 /* default user.dat */
1475 if (hkey_users_default
)
1477 strcpy(path
, windir
);
1478 strncat(path
, "\\user.dat", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1479 NativeRegLoadKey(hkey_users_default
, path
, 1);
1484 /* global user.dat */
1485 strcpy(path
, windir
);
1486 strncat(path
, "\\user.dat", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1487 NativeRegLoadKey(HKEY_CURRENT_USER
, path
, 1);
1492 /* default user.dat */
1493 if (PROFILE_GetWineIniString( "Wine", "Profile", "", path
, MAX_PATHNAME_LEN
))
1495 strncat(path
, "\\ntuser.dat", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1496 if(!NativeRegLoadKey( HKEY_CURRENT_USER
, path
, 1 ))
1498 MESSAGE("can't load NT user-registry %s\n", path
);
1499 MESSAGE("check wine.conf, section [Wine], value 'Profile'\n");
1503 /* default user.dat */
1504 if (hkey_users_default
)
1506 strcpy(path
, windir
);
1507 strncat(path
, "\\system32\\config\\default", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1508 NativeRegLoadKey(hkey_users_default
, path
, 1);
1513 * map HLM\System\ControlSet001 to HLM\System\CurrentControlSet
1516 if (!RegCreateKeyA(HKEY_LOCAL_MACHINE
, "SYSTEM", &hkey
))
1518 strcpy(path
, windir
);
1519 strncat(path
, "\\system32\\config\\system", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1520 NativeRegLoadKey(hkey
, path
, 1);
1524 if (!RegCreateKeyA(HKEY_LOCAL_MACHINE
, "SOFTWARE", &hkey
))
1526 strcpy(path
, windir
);
1527 strncat(path
, "\\system32\\config\\software", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1528 NativeRegLoadKey(hkey
, path
, 1);
1532 strcpy(path
, windir
);
1533 strncat(path
, "\\system32\\config\\sam", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1534 NativeRegLoadKey(HKEY_LOCAL_MACHINE
, path
, 0);
1536 strcpy(path
, windir
);
1537 strncat(path
, "\\system32\\config\\security", MAX_PATHNAME_LEN
- strlen(path
) - 1);
1538 NativeRegLoadKey(HKEY_LOCAL_MACHINE
, path
, 0);
1540 /* this key is generated when the nt-core booted successfully */
1541 if (!RegCreateKeyA(HKEY_LOCAL_MACHINE
,"System\\Clone",&hkey
))
1546 if (PROFILE_GetWineIniBool ("registry","LoadGlobalRegistryFiles", 1))
1549 * Load the global HKU hive directly from sysconfdir
1551 _wine_loadreg( HKEY_USERS
, SAVE_USERS_DEFAULT
);
1554 * Load the global machine defaults directly from sysconfdir
1556 _wine_loadreg( HKEY_LOCAL_MACHINE
, SAVE_LOCAL_MACHINE_DEFAULT
);
1562 * Load the user saved registries
1564 if (PROFILE_GetWineIniBool("registry", "LoadHomeRegistryFiles", 1))
1566 const char *confdir
= get_config_dir();
1567 int len
= strlen(confdir
) + 20;
1570 if (len
> sizeof(path
)) fn
= HeapAlloc( GetProcessHeap(), 0, len
);
1572 * Load user's personal versions of global HKU/.Default keys
1577 strcpy( fn
, confdir
);
1578 str
= fn
+ strlen(fn
);
1581 /* try to load HKU\.Default key only */
1582 strcpy( str
, SAVE_DEFAULT_USER
);
1583 if (_wine_loadreg( hkey_users_default
, fn
))
1585 /* if not found load old file containing both HKU\.Default and HKU\user */
1586 strcpy( str
, SAVE_LOCAL_USERS_DEFAULT
);
1587 _wine_loadreg( HKEY_USERS
, fn
);
1590 strcpy( str
, SAVE_CURRENT_USER
);
1591 _wine_loadreg( HKEY_CURRENT_USER
, fn
);
1593 strcpy( str
, SAVE_LOCAL_MACHINE
);
1594 _wine_loadreg( HKEY_LOCAL_MACHINE
, fn
);
1596 if (fn
!= path
) HeapFree( GetProcessHeap(), 0, fn
);
1599 SHELL_InitRegistrySaving( hkey_users_default
);
1600 RegCloseKey( hkey_users_default
);
1603 /********************* API FUNCTIONS ***************************************/
1608 /******************************************************************************
1609 * RegFlushKey [KERNEL.227] [ADVAPI32.143]
1610 * Immediately writes key to registry.
1611 * Only returns after data has been written to disk.
1613 * FIXME: does it really wait until data is written ?
1616 * hkey [I] Handle of key to write
1619 * Success: ERROR_SUCCESS
1620 * Failure: Error code
1622 DWORD WINAPI
RegFlushKey( HKEY hkey
)
1624 FIXME( "(%x): stub\n", hkey
);
1625 return ERROR_SUCCESS
;
1628 /******************************************************************************
1629 * RegConnectRegistryW [ADVAPI32.128]
1632 * lpMachineName [I] Address of name of remote computer
1633 * hHey [I] Predefined registry handle
1634 * phkResult [I] Address of buffer for remote registry handle
1636 LONG WINAPI
RegConnectRegistryW( LPCWSTR lpMachineName
, HKEY hKey
,
1639 TRACE("(%s,%x,%p): stub\n",debugstr_w(lpMachineName
),hKey
,phkResult
);
1641 if (!lpMachineName
|| !*lpMachineName
) {
1642 /* Use the local machine name */
1643 return RegOpenKey16( hKey
, "", phkResult
);
1646 FIXME("Cannot connect to %s\n",debugstr_w(lpMachineName
));
1647 return ERROR_BAD_NETPATH
;
1651 /******************************************************************************
1652 * RegConnectRegistryA [ADVAPI32.127]
1654 LONG WINAPI
RegConnectRegistryA( LPCSTR machine
, HKEY hkey
, LPHKEY reskey
)
1656 LPWSTR machineW
= HEAP_strdupAtoW( GetProcessHeap(), 0, machine
);
1657 DWORD ret
= RegConnectRegistryW( machineW
, hkey
, reskey
);
1658 HeapFree( GetProcessHeap(), 0, machineW
);
1663 /******************************************************************************
1664 * RegGetKeySecurity [ADVAPI32.144]
1665 * Retrieves a copy of security descriptor protecting the registry key
1668 * hkey [I] Open handle of key to set
1669 * SecurityInformation [I] Descriptor contents
1670 * pSecurityDescriptor [O] Address of descriptor for key
1671 * lpcbSecurityDescriptor [I/O] Address of size of buffer and description
1674 * Success: ERROR_SUCCESS
1675 * Failure: Error code
1677 LONG WINAPI
RegGetKeySecurity( HKEY hkey
,
1678 SECURITY_INFORMATION SecurityInformation
,
1679 PSECURITY_DESCRIPTOR pSecurityDescriptor
,
1680 LPDWORD lpcbSecurityDescriptor
)
1682 TRACE("(%x,%ld,%p,%ld)\n",hkey
,SecurityInformation
,pSecurityDescriptor
,
1683 lpcbSecurityDescriptor
?*lpcbSecurityDescriptor
:0);
1685 /* FIXME: Check for valid SecurityInformation values */
1687 if (*lpcbSecurityDescriptor
< sizeof(SECURITY_DESCRIPTOR
))
1688 return ERROR_INSUFFICIENT_BUFFER
;
1690 FIXME("(%x,%ld,%p,%ld): stub\n",hkey
,SecurityInformation
,
1691 pSecurityDescriptor
,lpcbSecurityDescriptor
?*lpcbSecurityDescriptor
:0);
1693 return ERROR_SUCCESS
;
1697 /******************************************************************************
1698 * RegNotifyChangeKeyValue [ADVAPI32.???]
1701 * hkey [I] Handle of key to watch
1702 * fWatchSubTree [I] Flag for subkey notification
1703 * fdwNotifyFilter [I] Changes to be reported
1704 * hEvent [I] Handle of signaled event
1705 * fAsync [I] Flag for asynchronous reporting
1707 LONG WINAPI
RegNotifyChangeKeyValue( HKEY hkey
, BOOL fWatchSubTree
,
1708 DWORD fdwNotifyFilter
, HANDLE hEvent
,
1711 FIXME("(%x,%i,%ld,%x,%i): stub\n",hkey
,fWatchSubTree
,fdwNotifyFilter
,
1713 return ERROR_SUCCESS
;
1717 /******************************************************************************
1718 * RegUnLoadKeyW [ADVAPI32.173]
1721 * hkey [I] Handle of open key
1722 * lpSubKey [I] Address of name of subkey to unload
1724 LONG WINAPI
RegUnLoadKeyW( HKEY hkey
, LPCWSTR lpSubKey
)
1726 FIXME("(%x,%s): stub\n",hkey
, debugstr_w(lpSubKey
));
1727 return ERROR_SUCCESS
;
1731 /******************************************************************************
1732 * RegUnLoadKeyA [ADVAPI32.172]
1734 LONG WINAPI
RegUnLoadKeyA( HKEY hkey
, LPCSTR lpSubKey
)
1736 LPWSTR lpSubKeyW
= HEAP_strdupAtoW( GetProcessHeap(), 0, lpSubKey
);
1737 LONG ret
= RegUnLoadKeyW( hkey
, lpSubKeyW
);
1738 if(lpSubKeyW
) HeapFree( GetProcessHeap(), 0, lpSubKeyW
);
1743 /******************************************************************************
1744 * RegSetKeySecurity [ADVAPI32.167]
1747 * hkey [I] Open handle of key to set
1748 * SecurityInfo [I] Descriptor contents
1749 * pSecurityDesc [I] Address of descriptor for key
1751 LONG WINAPI
RegSetKeySecurity( HKEY hkey
, SECURITY_INFORMATION SecurityInfo
,
1752 PSECURITY_DESCRIPTOR pSecurityDesc
)
1754 TRACE("(%x,%ld,%p)\n",hkey
,SecurityInfo
,pSecurityDesc
);
1756 /* It seems to perform this check before the hkey check */
1757 if ((SecurityInfo
& OWNER_SECURITY_INFORMATION
) ||
1758 (SecurityInfo
& GROUP_SECURITY_INFORMATION
) ||
1759 (SecurityInfo
& DACL_SECURITY_INFORMATION
) ||
1760 (SecurityInfo
& SACL_SECURITY_INFORMATION
)) {
1763 return ERROR_INVALID_PARAMETER
;
1766 return ERROR_INVALID_PARAMETER
;
1768 FIXME(":(%x,%ld,%p): stub\n",hkey
,SecurityInfo
,pSecurityDesc
);
1770 return ERROR_SUCCESS
;
1774 /******************************************************************************
1775 * RegRestoreKeyW [ADVAPI32.164]
1778 * hkey [I] Handle of key where restore begins
1779 * lpFile [I] Address of filename containing saved tree
1780 * dwFlags [I] Optional flags
1782 LONG WINAPI
RegRestoreKeyW( HKEY hkey
, LPCWSTR lpFile
, DWORD dwFlags
)
1784 TRACE("(%x,%s,%ld)\n",hkey
,debugstr_w(lpFile
),dwFlags
);
1786 /* It seems to do this check before the hkey check */
1787 if (!lpFile
|| !*lpFile
)
1788 return ERROR_INVALID_PARAMETER
;
1790 FIXME("(%x,%s,%ld): stub\n",hkey
,debugstr_w(lpFile
),dwFlags
);
1792 /* Check for file existence */
1794 return ERROR_SUCCESS
;
1798 /******************************************************************************
1799 * RegRestoreKeyA [ADVAPI32.163]
1801 LONG WINAPI
RegRestoreKeyA( HKEY hkey
, LPCSTR lpFile
, DWORD dwFlags
)
1803 LPWSTR lpFileW
= HEAP_strdupAtoW( GetProcessHeap(), 0, lpFile
);
1804 LONG ret
= RegRestoreKeyW( hkey
, lpFileW
, dwFlags
);
1805 HeapFree( GetProcessHeap(), 0, lpFileW
);
1810 /******************************************************************************
1811 * RegReplaceKeyW [ADVAPI32.162]
1814 * hkey [I] Handle of open key
1815 * lpSubKey [I] Address of name of subkey
1816 * lpNewFile [I] Address of filename for file with new data
1817 * lpOldFile [I] Address of filename for backup file
1819 LONG WINAPI
RegReplaceKeyW( HKEY hkey
, LPCWSTR lpSubKey
, LPCWSTR lpNewFile
,
1822 FIXME("(%x,%s,%s,%s): stub\n", hkey
, debugstr_w(lpSubKey
),
1823 debugstr_w(lpNewFile
),debugstr_w(lpOldFile
));
1824 return ERROR_SUCCESS
;
1828 /******************************************************************************
1829 * RegReplaceKeyA [ADVAPI32.161]
1831 LONG WINAPI
RegReplaceKeyA( HKEY hkey
, LPCSTR lpSubKey
, LPCSTR lpNewFile
,
1834 LPWSTR lpSubKeyW
= HEAP_strdupAtoW( GetProcessHeap(), 0, lpSubKey
);
1835 LPWSTR lpNewFileW
= HEAP_strdupAtoW( GetProcessHeap(), 0, lpNewFile
);
1836 LPWSTR lpOldFileW
= HEAP_strdupAtoW( GetProcessHeap(), 0, lpOldFile
);
1837 LONG ret
= RegReplaceKeyW( hkey
, lpSubKeyW
, lpNewFileW
, lpOldFileW
);
1838 HeapFree( GetProcessHeap(), 0, lpOldFileW
);
1839 HeapFree( GetProcessHeap(), 0, lpNewFileW
);
1840 HeapFree( GetProcessHeap(), 0, lpSubKeyW
);
1849 /* 16-bit functions */
1851 /* 0 and 1 are valid rootkeys in win16 shell.dll and are used by
1852 * some programs. Do not remove those cases. -MM
1854 static inline void fix_win16_hkey( HKEY
*hkey
)
1856 if (*hkey
== 0 || *hkey
== 1) *hkey
= HKEY_CLASSES_ROOT
;
1859 /******************************************************************************
1860 * RegEnumKey16 [KERNEL.216] [SHELL.7]
1862 DWORD WINAPI
RegEnumKey16( HKEY hkey
, DWORD index
, LPSTR name
, DWORD name_len
)
1864 fix_win16_hkey( &hkey
);
1865 return RegEnumKeyA( hkey
, index
, name
, name_len
);
1868 /******************************************************************************
1869 * RegOpenKey16 [KERNEL.217] [SHELL.1]
1871 DWORD WINAPI
RegOpenKey16( HKEY hkey
, LPCSTR name
, LPHKEY retkey
)
1873 fix_win16_hkey( &hkey
);
1874 return RegOpenKeyA( hkey
, name
, retkey
);
1877 /******************************************************************************
1878 * RegCreateKey16 [KERNEL.218] [SHELL.2]
1880 DWORD WINAPI
RegCreateKey16( HKEY hkey
, LPCSTR name
, LPHKEY retkey
)
1882 fix_win16_hkey( &hkey
);
1883 return RegCreateKeyA( hkey
, name
, retkey
);
1886 /******************************************************************************
1887 * RegDeleteKey16 [KERNEL.219] [SHELL.4]
1889 DWORD WINAPI
RegDeleteKey16( HKEY hkey
, LPCSTR name
)
1891 fix_win16_hkey( &hkey
);
1892 return RegDeleteKeyA( hkey
, name
);
1895 /******************************************************************************
1896 * RegCloseKey16 [KERNEL.220] [SHELL.3]
1898 DWORD WINAPI
RegCloseKey16( HKEY hkey
)
1900 fix_win16_hkey( &hkey
);
1901 return RegCloseKey( hkey
);
1904 /******************************************************************************
1905 * RegSetValue16 [KERNEL.221] [SHELL.5]
1907 DWORD WINAPI
RegSetValue16( HKEY hkey
, LPCSTR name
, DWORD type
, LPCSTR data
, DWORD count
)
1909 fix_win16_hkey( &hkey
);
1910 return RegSetValueA( hkey
, name
, type
, data
, count
);
1913 /******************************************************************************
1914 * RegDeleteValue16 [KERNEL.222]
1916 DWORD WINAPI
RegDeleteValue16( HKEY hkey
, LPSTR name
)
1918 fix_win16_hkey( &hkey
);
1919 return RegDeleteValueA( hkey
, name
);
1922 /******************************************************************************
1923 * RegEnumValue16 [KERNEL.223]
1925 DWORD WINAPI
RegEnumValue16( HKEY hkey
, DWORD index
, LPSTR value
, LPDWORD val_count
,
1926 LPDWORD reserved
, LPDWORD type
, LPBYTE data
, LPDWORD count
)
1928 fix_win16_hkey( &hkey
);
1929 return RegEnumValueA( hkey
, index
, value
, val_count
, reserved
, type
, data
, count
);
1932 /******************************************************************************
1933 * RegQueryValue16 [KERNEL.224] [SHELL.6]
1936 * Is this HACK still applicable?
1939 * The 16bit RegQueryValue doesn't handle selectorblocks anyway, so we just
1940 * mask out the high 16 bit. This (not so much incidently) hopefully fixes
1943 DWORD WINAPI
RegQueryValue16( HKEY hkey
, LPCSTR name
, LPSTR data
, LPDWORD count
)
1945 fix_win16_hkey( &hkey
);
1946 if (count
) *count
&= 0xffff;
1947 return RegQueryValueA( hkey
, name
, data
, count
);
1950 /******************************************************************************
1951 * RegQueryValueEx16 [KERNEL.225]
1953 DWORD WINAPI
RegQueryValueEx16( HKEY hkey
, LPCSTR name
, LPDWORD reserved
, LPDWORD type
,
1954 LPBYTE data
, LPDWORD count
)
1956 fix_win16_hkey( &hkey
);
1957 return RegQueryValueExA( hkey
, name
, reserved
, type
, data
, count
);
1960 /******************************************************************************
1961 * RegSetValueEx16 [KERNEL.226]
1963 DWORD WINAPI
RegSetValueEx16( HKEY hkey
, LPCSTR name
, DWORD reserved
, DWORD type
,
1964 CONST BYTE
*data
, DWORD count
)
1966 fix_win16_hkey( &hkey
);
1967 return RegSetValueExA( hkey
, name
, reserved
, type
, data
, count
);