2 * Unix SMB/CIFS implementation.
3 * Virtual Windows Registry Layer
4 * Copyright (C) Gerald Carter 2002-2005
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 /* Implementation of internal registry database functions. */
26 #define DBGC_CLASS DBGC_RPC_SRV
28 static TDB_CONTEXT
*tdb_reg
;
30 #define VALUE_PREFIX "SAMBA_REGVAL"
32 /* List the deepest path into the registry. All part components will be created.*/
34 /* If you want to have a part of the path controlled by the tdb and part by
35 a virtual registry db (e.g. printing), then you have to list the deepest path.
36 For example,"HKLM/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Print"
37 allows the reg_db backend to handle everything up to
38 "HKLM/SOFTWARE/Microsoft/Windows NT/CurrentVersion" and then we'll hook
39 the reg_printing backend onto the last component of the path (see
40 KEY_PRINTING_2K in include/rpc_reg.h) --jerry */
42 static const char *builtin_registry_paths
[] = {
48 "HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Perflib",
49 "HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Perflib\\009",
50 "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Print\\Monitors",
51 "HKLM\\SYSTEM\\CurrentControlSet\\Control\\ProductOptions",
52 "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\DefaultUserConfiguration",
53 "HKLM\\SYSTEM\\CurrentControlSet\\Services\\TcpIp\\Parameters",
54 "HKLM\\SYSTEM\\CurrentControlSet\\Services\\Netlogon\\Parameters",
61 struct builtin_regkey_value
{
63 const char *valuename
;
71 static struct builtin_regkey_value builtin_registry_values
[] = {
73 SAMBA_PRINTER_PORT_NAME
, REG_SZ
, { "" } },
75 "DefaultSpoolDirectory", REG_SZ
, { "C:\\Windows\\System32\\Spool\\Printers" } },
77 "DisplayName", REG_SZ
, { "Event Log" } },
79 "ErrorControl", REG_DWORD
, { (char*)0x00000001 } },
80 { NULL
, NULL
, 0, { NULL
} }
83 #define REGVER_V1 1 /* first db version with write support */
85 /***********************************************************************
86 Open the registry data in the tdb
87 ***********************************************************************/
89 static BOOL
init_registry_data( void )
91 pstring path
, base
, remaining
;
92 fstring keyname
, subkeyname
;
93 REGSUBKEY_CTR
*subkeys
;
99 /* loop over all of the predefined paths and add each component */
101 for ( i
=0; builtin_registry_paths
[i
] != NULL
; i
++ ) {
103 DEBUG(6,("init_registry_data: Adding [%s]\n", builtin_registry_paths
[i
]));
105 pstrcpy( path
, builtin_registry_paths
[i
] );
109 while ( next_token(&p
, keyname
, "\\", sizeof(keyname
)) ) {
111 /* build up the registry path from the components */
114 pstrcat( base
, "\\" );
115 pstrcat( base
, keyname
);
117 /* get the immediate subkeyname (if we have one ) */
121 pstrcpy( remaining
, p
);
124 if ( !next_token(&p2
, subkeyname
, "\\", sizeof(subkeyname
)) )
125 fstrcpy( subkeyname
, p2
);
128 DEBUG(10,("init_registry_data: Storing key [%s] with subkey [%s]\n",
129 base
, *subkeyname
? subkeyname
: "NULL"));
131 /* we don't really care if the lookup succeeds or not since
132 we are about to update the record. We just want any
133 subkeys already present */
135 if ( !(subkeys
= TALLOC_ZERO_P( NULL
, REGSUBKEY_CTR
)) ) {
136 DEBUG(0,("talloc() failure!\n"));
140 regdb_fetch_keys( base
, subkeys
);
142 regsubkey_ctr_addkey( subkeys
, subkeyname
);
143 if ( !regdb_store_keys( base
, subkeys
))
146 TALLOC_FREE( subkeys
);
150 /* loop over all of the predefined values and add each component */
152 for ( i
=0; builtin_registry_values
[i
].path
!= NULL
; i
++ ) {
153 if ( !(values
= TALLOC_ZERO_P( NULL
, REGVAL_CTR
)) ) {
154 DEBUG(0,("talloc() failure!\n"));
158 regdb_fetch_values( builtin_registry_values
[i
].path
, values
);
160 /* preserve existing values across restarts. Only add new ones */
162 if ( !regval_ctr_key_exists( values
, builtin_registry_values
[i
].valuename
) )
164 switch( builtin_registry_values
[i
].type
) {
166 regval_ctr_addvalue( values
,
167 builtin_registry_values
[i
].valuename
,
169 (char*)&builtin_registry_values
[i
].data
.dw_value
,
174 init_unistr2( &data
, builtin_registry_values
[i
].data
.string
, UNI_STR_TERMINATE
);
175 regval_ctr_addvalue( values
,
176 builtin_registry_values
[i
].valuename
,
179 data
.uni_str_len
*sizeof(uint16
) );
183 DEBUG(0,("init_registry_data: invalid value type in builtin_registry_values [%d]\n",
184 builtin_registry_values
[i
].type
));
186 regdb_store_values( builtin_registry_values
[i
].path
, values
);
189 TALLOC_FREE( values
);
195 /***********************************************************************
196 Open the registry database
197 ***********************************************************************/
199 BOOL
init_registry_db( void )
201 const char *vstring
= "INFO/version";
207 if ( !(tdb_reg
= tdb_open_log(lock_path("registry.tdb"), 0, TDB_DEFAULT
, O_RDWR
, 0600)) )
209 tdb_reg
= tdb_open_log(lock_path("registry.tdb"), 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
211 DEBUG(0,("init_registry: Failed to open registry %s (%s)\n",
212 lock_path("registry.tdb"), strerror(errno
) ));
216 DEBUG(10,("init_registry: Successfully created registry tdb\n"));
220 vers_id
= tdb_fetch_int32(tdb_reg
, vstring
);
222 if ( vers_id
!= REGVER_V1
) {
223 /* any upgrade code here if needed */
226 /* always setup the necessary keys and values */
228 if ( !init_registry_data() ) {
229 DEBUG(0,("init_registry: Failed to initiailize data in registry!\n"));
236 /***********************************************************************
237 Add subkey strings to the registry tdb under a defined key
238 fmt is the same format as tdb_pack except this function only supports
240 ***********************************************************************/
242 static BOOL
regdb_store_keys_internal( const char *key
, REGSUBKEY_CTR
*ctr
)
245 char *buffer
, *tmpbuf
;
249 uint32 num_subkeys
= regsubkey_ctr_numkeys( ctr
);
255 pstrcpy( keyname
, key
);
256 normalize_reg_path( keyname
);
258 /* allocate some initial memory */
260 buffer
= SMB_MALLOC(sizeof(pstring
));
261 buflen
= sizeof(pstring
);
264 /* store the number of subkeys */
266 len
+= tdb_pack(buffer
+len
, buflen
-len
, "d", num_subkeys
);
268 /* pack all the strings */
270 for (i
=0; i
<num_subkeys
; i
++) {
271 len
+= tdb_pack( buffer
+len
, buflen
-len
, "f", regsubkey_ctr_specific_key(ctr
, i
) );
272 if ( len
> buflen
) {
273 /* allocate some extra space */
274 if ((tmpbuf
= SMB_REALLOC( buffer
, len
*2 )) == NULL
) {
275 DEBUG(0,("regdb_store_keys: Failed to realloc memory of size [%d]\n", len
*2));
282 len
= tdb_pack( buffer
+len
, buflen
-len
, "f", regsubkey_ctr_specific_key(ctr
, i
) );
286 /* finally write out the data */
289 kbuf
.dsize
= strlen(keyname
)+1;
292 if ( tdb_store( tdb_reg
, kbuf
, dbuf
, TDB_REPLACE
) == -1) {
303 /***********************************************************************
304 Store the new subkey record and create any child key records that
305 do not currently exist
306 ***********************************************************************/
308 BOOL
regdb_store_keys( const char *key
, REGSUBKEY_CTR
*ctr
)
312 REGSUBKEY_CTR
*subkeys
, *old_subkeys
;
315 /* fetch a list of the old subkeys so we can determine if any were deleted */
317 if ( !(old_subkeys
= TALLOC_ZERO_P( ctr
, REGSUBKEY_CTR
)) ) {
318 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
322 regdb_fetch_keys( key
, old_subkeys
);
324 /* store the subkey list for the parent */
326 if ( !regdb_store_keys_internal( key
, ctr
) ) {
327 DEBUG(0,("regdb_store_keys: Failed to store new subkey list for parent [%s}\n", key
));
331 /* now delete removed keys */
333 num_subkeys
= regsubkey_ctr_numkeys( old_subkeys
);
334 for ( i
=0; i
<num_subkeys
; i
++ ) {
335 oldkeyname
= regsubkey_ctr_specific_key( old_subkeys
, i
);
336 if ( !regsubkey_ctr_key_exists( ctr
, oldkeyname
) ) {
337 pstr_sprintf( path
, "%s%c%s", key
, '/', oldkeyname
);
338 normalize_reg_path( path
);
339 tdb_delete_bystring( tdb_reg
, path
);
343 TALLOC_FREE( old_subkeys
);
345 /* now create records for any subkeys that don't already exist */
347 num_subkeys
= regsubkey_ctr_numkeys( ctr
);
348 for ( i
=0; i
<num_subkeys
; i
++ ) {
349 pstr_sprintf( path
, "%s%c%s", key
, '/', regsubkey_ctr_specific_key( ctr
, i
) );
351 if ( !(subkeys
= TALLOC_ZERO_P( ctr
, REGSUBKEY_CTR
)) ) {
352 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
356 if ( regdb_fetch_keys( path
, subkeys
) == -1 ) {
357 /* create a record with 0 subkeys */
358 if ( !regdb_store_keys_internal( path
, subkeys
) ) {
359 DEBUG(0,("regdb_store_keys: Failed to store new record for key [%s}\n", path
));
360 TALLOC_FREE( subkeys
);
365 TALLOC_FREE( subkeys
);
372 /***********************************************************************
373 Retrieve an array of strings containing subkeys. Memory should be
374 released by the caller.
375 ***********************************************************************/
377 int regdb_fetch_keys( const char* key
, REGSUBKEY_CTR
*ctr
)
387 DEBUG(11,("regdb_fetch_keys: Enter key => [%s]\n", key
? key
: "NULL"));
389 pstrcpy( path
, key
);
391 /* convert to key format */
392 pstring_sub( path
, "\\", "/" );
395 dbuf
= tdb_fetch_bystring( tdb_reg
, path
);
401 DEBUG(5,("regdb_fetch_keys: tdb lookup failed to locate key [%s]\n", key
));
405 len
= tdb_unpack( buf
, buflen
, "d", &num_items
);
407 for (i
=0; i
<num_items
; i
++) {
408 len
+= tdb_unpack( buf
+len
, buflen
-len
, "f", subkeyname
);
409 regsubkey_ctr_addkey( ctr
, subkeyname
);
412 SAFE_FREE( dbuf
.dptr
);
414 DEBUG(11,("regdb_fetch_keys: Exit [%d] items\n", num_items
));
419 /****************************************************************************
420 Unpack a list of registry values frem the TDB
421 ***************************************************************************/
423 static int regdb_unpack_values(REGVAL_CTR
*values
, char *buf
, int buflen
)
430 uint32 num_values
= 0;
435 /* loop and unpack the rest of the registry values */
437 len
+= tdb_unpack(buf
+len
, buflen
-len
, "d", &num_values
);
439 for ( i
=0; i
<num_values
; i
++ ) {
440 /* unpack the next regval */
445 len
+= tdb_unpack(buf
+len
, buflen
-len
, "fdB",
451 /* add the new value. Paranoid protective code -- make sure data_p is valid */
453 if ( size
&& data_p
) {
454 regval_ctr_addvalue( values
, valuename
, type
, (const char *)data_p
, size
);
455 SAFE_FREE(data_p
); /* 'B' option to tdb_unpack does a malloc() */
458 DEBUG(8,("specific: [%s], len: %d\n", valuename
, size
));
464 /****************************************************************************
465 Pack all values in all printer keys
466 ***************************************************************************/
468 static int regdb_pack_values(REGVAL_CTR
*values
, char *buf
, int buflen
)
473 int num_values
= regval_ctr_numvals( values
);
478 /* pack the number of values first */
480 len
+= tdb_pack( buf
+len
, buflen
-len
, "d", num_values
);
482 /* loop over all values */
484 for ( i
=0; i
<num_values
; i
++ ) {
485 val
= regval_ctr_specific_value( values
, i
);
486 len
+= tdb_pack(buf
+len
, buflen
-len
, "fdB",
490 regval_data_p(val
) );
496 /***********************************************************************
497 Retrieve an array of strings containing subkeys. Memory should be
498 released by the caller.
499 ***********************************************************************/
501 int regdb_fetch_values( const char* key
, REGVAL_CTR
*values
)
506 DEBUG(10,("regdb_fetch_values: Looking for value of key [%s] \n", key
));
508 pstr_sprintf( keystr
, "%s/%s", VALUE_PREFIX
, key
);
509 normalize_reg_path( keystr
);
511 data
= tdb_fetch_bystring( tdb_reg
, keystr
);
514 /* all keys have zero values by default */
518 regdb_unpack_values( values
, data
.dptr
, data
.dsize
);
520 SAFE_FREE( data
.dptr
);
522 return regval_ctr_numvals(values
);
525 /***********************************************************************
526 Stub function since we do not currently support storing registry
527 values in the registry.tdb
528 ***********************************************************************/
530 BOOL
regdb_store_values( const char *key
, REGVAL_CTR
*values
)
536 DEBUG(10,("regdb_store_values: Looking for value of key [%s] \n", key
));
540 len
= regdb_pack_values( values
, data
.dptr
, data
.dsize
);
542 DEBUG(0,("regdb_store_values: unable to pack values. len <= 0\n"));
546 data
.dptr
= SMB_MALLOC_ARRAY( char, len
);
549 len
= regdb_pack_values( values
, data
.dptr
, data
.dsize
);
551 SMB_ASSERT( len
== data
.dsize
);
553 pstr_sprintf( keystr
, "%s/%s", VALUE_PREFIX
, key
);
554 normalize_reg_path( keystr
);
556 ret
= tdb_store_bystring(tdb_reg
, keystr
, data
, TDB_REPLACE
);
558 SAFE_FREE( data
.dptr
);
565 * Table of function pointers for default access
568 REGISTRY_OPS regdb_ops
= {