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\\Services\\TcpIp\\Parameters",
53 "HKLM\\SYSTEM\\CurrentControlSet\\Services\\Netlogon\\Parameters",
60 struct builtin_regkey_value
{
62 const char *valuename
;
70 static struct builtin_regkey_value builtin_registry_values
[] = {
72 SAMBA_PRINTER_PORT_NAME
, REG_SZ
, { "" } },
74 "DefaultSpoolDirectory", REG_SZ
, { "C:\\Windows\\System32\\Spool\\Printers" } },
76 "DisplayName", REG_SZ
, { "Event Log" } },
78 "ErrorControl", REG_DWORD
, { (char*)0x00000001 } },
79 { NULL
, NULL
, 0, { NULL
} }
82 #define REGVER_V1 1 /* first db version with write support */
84 /***********************************************************************
85 Open the registry data in the tdb
86 ***********************************************************************/
88 static BOOL
init_registry_data( void )
90 pstring path
, base
, remaining
;
91 fstring keyname
, subkeyname
;
92 REGSUBKEY_CTR
*subkeys
;
99 /* create a new top level talloc ctx */
101 if ( !(ctx
= TALLOC_P( NULL
, uint32
)) ) {
102 DEBUG(0,("init_registry_data: top level talloc() failure!\n"));
106 /* loop over all of the predefined paths and add each component */
108 for ( i
=0; builtin_registry_paths
[i
] != NULL
; i
++ ) {
110 DEBUG(6,("init_registry_data: Adding [%s]\n", builtin_registry_paths
[i
]));
112 pstrcpy( path
, builtin_registry_paths
[i
] );
116 while ( next_token(&p
, keyname
, "\\", sizeof(keyname
)) ) {
118 /* build up the registry path from the components */
121 pstrcat( base
, "\\" );
122 pstrcat( base
, keyname
);
124 /* get the immediate subkeyname (if we have one ) */
128 pstrcpy( remaining
, p
);
131 if ( !next_token(&p2
, subkeyname
, "\\", sizeof(subkeyname
)) )
132 fstrcpy( subkeyname
, p2
);
135 DEBUG(10,("init_registry_data: Storing key [%s] with subkey [%s]\n",
136 base
, *subkeyname
? subkeyname
: "NULL"));
138 /* we don't really care if the lookup succeeds or not since
139 we are about to update the record. We just want any
140 subkeys already present */
142 if ( !(subkeys
= TALLOC_ZERO_P( ctx
, REGSUBKEY_CTR
)) ) {
143 DEBUG(0,("talloc() failure!\n"));
147 regdb_fetch_keys( base
, subkeys
);
149 regsubkey_ctr_addkey( subkeys
, subkeyname
);
150 if ( !regdb_store_keys( base
, subkeys
))
153 TALLOC_FREE( subkeys
);
157 /* loop over all of the predefined values and add each component */
159 for ( i
=0; builtin_registry_values
[i
].path
!= NULL
; i
++ ) {
160 if ( !(values
= TALLOC_ZERO_P( ctx
, REGVAL_CTR
)) ) {
161 DEBUG(0,("talloc() failure!\n"));
165 regdb_fetch_values( builtin_registry_values
[i
].path
, values
);
166 switch( builtin_registry_values
[i
].type
) {
168 regval_ctr_addvalue( values
,
169 builtin_registry_values
[i
].valuename
,
171 (char*)&builtin_registry_values
[i
].data
.dw_value
,
176 init_unistr2( &data
, builtin_registry_values
[i
].data
.string
, UNI_STR_TERMINATE
);
177 regval_ctr_addvalue( values
,
178 builtin_registry_values
[i
].valuename
,
181 data
.uni_str_len
*sizeof(uint16
) );
185 DEBUG(0,("init_registry_data: invalid value type in builtin_registry_values [%d]\n",
186 builtin_registry_values
[i
].type
));
188 regdb_store_values( builtin_registry_values
[i
].path
, values
);
190 TALLOC_FREE( values
);
196 /***********************************************************************
197 Open the registry database
198 ***********************************************************************/
200 BOOL
init_registry_db( void )
202 const char *vstring
= "INFO/version";
208 /* placeholder tdb; reinit upon startup */
210 if ( !(tdb_reg
= tdb_open_log(lock_path("registry.tdb"), 0, TDB_DEFAULT
, O_RDWR
, 0600)) )
212 tdb_reg
= tdb_open_log(lock_path("registry.tdb"), 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
214 DEBUG(0,("init_registry: Failed to open registry %s (%s)\n",
215 lock_path("registry.tdb"), strerror(errno
) ));
219 DEBUG(10,("init_registry: Successfully created registry tdb\n"));
223 vers_id
= tdb_fetch_int32(tdb_reg
, vstring
);
225 if ( vers_id
!= REGVER_V1
) {
227 /* create the registry here */
229 if ( !init_registry_data() ) {
230 DEBUG(0,("init_registry: Failed to initiailize data in registry!\n"));
238 /***********************************************************************
239 Add subkey strings to the registry tdb under a defined key
240 fmt is the same format as tdb_pack except this function only supports
242 ***********************************************************************/
244 static BOOL
regdb_store_keys_internal( const char *key
, REGSUBKEY_CTR
*ctr
)
247 char *buffer
, *tmpbuf
;
251 uint32 num_subkeys
= regsubkey_ctr_numkeys( ctr
);
257 pstrcpy( keyname
, key
);
258 normalize_reg_path( keyname
);
260 /* allocate some initial memory */
262 buffer
= SMB_MALLOC(sizeof(pstring
));
263 buflen
= sizeof(pstring
);
266 /* store the number of subkeys */
268 len
+= tdb_pack(buffer
+len
, buflen
-len
, "d", num_subkeys
);
270 /* pack all the strings */
272 for (i
=0; i
<num_subkeys
; i
++) {
273 len
+= tdb_pack( buffer
+len
, buflen
-len
, "f", regsubkey_ctr_specific_key(ctr
, i
) );
274 if ( len
> buflen
) {
275 /* allocate some extra space */
276 if ((tmpbuf
= SMB_REALLOC( buffer
, len
*2 )) == NULL
) {
277 DEBUG(0,("regdb_store_keys: Failed to realloc memory of size [%d]\n", len
*2));
284 len
= tdb_pack( buffer
+len
, buflen
-len
, "f", regsubkey_ctr_specific_key(ctr
, i
) );
288 /* finally write out the data */
291 kbuf
.dsize
= strlen(keyname
)+1;
294 if ( tdb_store( tdb_reg
, kbuf
, dbuf
, TDB_REPLACE
) == -1) {
305 /***********************************************************************
306 Store the new subkey record and create any child key records that
307 do not currently exist
308 ***********************************************************************/
310 BOOL
regdb_store_keys( const char *key
, REGSUBKEY_CTR
*ctr
)
314 REGSUBKEY_CTR
*subkeys
, *old_subkeys
;
317 /* fetch a list of the old subkeys so we can determine if any were deleted */
319 if ( !(old_subkeys
= TALLOC_ZERO_P( ctr
, REGSUBKEY_CTR
)) ) {
320 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
324 regdb_fetch_keys( key
, old_subkeys
);
326 /* store the subkey list for the parent */
328 if ( !regdb_store_keys_internal( key
, ctr
) ) {
329 DEBUG(0,("regdb_store_keys: Failed to store new subkey list for parent [%s}\n", key
));
333 /* now delete removed keys */
335 num_subkeys
= regsubkey_ctr_numkeys( old_subkeys
);
336 for ( i
=0; i
<num_subkeys
; i
++ ) {
337 oldkeyname
= regsubkey_ctr_specific_key( old_subkeys
, i
);
338 if ( !regsubkey_ctr_key_exists( ctr
, oldkeyname
) ) {
339 pstr_sprintf( path
, "%s%c%s", key
, '/', oldkeyname
);
340 normalize_reg_path( path
);
341 tdb_delete_bystring( tdb_reg
, path
);
345 TALLOC_FREE( old_subkeys
);
347 /* now create records for any subkeys that don't already exist */
349 num_subkeys
= regsubkey_ctr_numkeys( ctr
);
350 for ( i
=0; i
<num_subkeys
; i
++ ) {
351 pstr_sprintf( path
, "%s%c%s", key
, '/', regsubkey_ctr_specific_key( ctr
, i
) );
353 if ( !(subkeys
= TALLOC_ZERO_P( ctr
, REGSUBKEY_CTR
)) ) {
354 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
358 if ( regdb_fetch_keys( path
, subkeys
) == -1 ) {
359 /* create a record with 0 subkeys */
360 if ( !regdb_store_keys_internal( path
, subkeys
) ) {
361 DEBUG(0,("regdb_store_keys: Failed to store new record for key [%s}\n", path
));
362 TALLOC_FREE( subkeys
);
367 TALLOC_FREE( subkeys
);
374 /***********************************************************************
375 Retrieve an array of strings containing subkeys. Memory should be
376 released by the caller.
377 ***********************************************************************/
379 int regdb_fetch_keys( const char* key
, REGSUBKEY_CTR
*ctr
)
389 DEBUG(11,("regdb_fetch_keys: Enter key => [%s]\n", key
? key
: "NULL"));
391 pstrcpy( path
, key
);
393 /* convert to key format */
394 pstring_sub( path
, "\\", "/" );
397 dbuf
= tdb_fetch_bystring( tdb_reg
, path
);
403 DEBUG(5,("regdb_fetch_keys: tdb lookup failed to locate key [%s]\n", key
));
407 len
= tdb_unpack( buf
, buflen
, "d", &num_items
);
409 for (i
=0; i
<num_items
; i
++) {
410 len
+= tdb_unpack( buf
+len
, buflen
-len
, "f", subkeyname
);
411 regsubkey_ctr_addkey( ctr
, subkeyname
);
414 SAFE_FREE( dbuf
.dptr
);
416 DEBUG(11,("regdb_fetch_keys: Exit [%d] items\n", num_items
));
421 /****************************************************************************
422 Unpack a list of registry values frem the TDB
423 ***************************************************************************/
425 static int regdb_unpack_values(REGVAL_CTR
*values
, char *buf
, int buflen
)
432 uint32 num_values
= 0;
437 /* loop and unpack the rest of the registry values */
439 len
+= tdb_unpack(buf
+len
, buflen
-len
, "d", &num_values
);
441 for ( i
=0; i
<num_values
; i
++ ) {
442 /* unpack the next regval */
447 len
+= tdb_unpack(buf
+len
, buflen
-len
, "fdB",
453 /* add the new value. Paranoid protective code -- make sure data_p is valid */
455 if ( size
&& data_p
) {
456 regval_ctr_addvalue( values
, valuename
, type
, (const char *)data_p
, size
);
457 SAFE_FREE(data_p
); /* 'B' option to tdb_unpack does a malloc() */
460 DEBUG(8,("specific: [%s], len: %d\n", valuename
, size
));
466 /****************************************************************************
467 Pack all values in all printer keys
468 ***************************************************************************/
470 static int regdb_pack_values(REGVAL_CTR
*values
, char *buf
, int buflen
)
475 int num_values
= regval_ctr_numvals( values
);
480 /* pack the number of values first */
482 len
+= tdb_pack( buf
+len
, buflen
-len
, "d", num_values
);
484 /* loop over all values */
486 for ( i
=0; i
<num_values
; i
++ ) {
487 val
= regval_ctr_specific_value( values
, i
);
488 len
+= tdb_pack(buf
+len
, buflen
-len
, "fdB",
492 regval_data_p(val
) );
498 /***********************************************************************
499 Retrieve an array of strings containing subkeys. Memory should be
500 released by the caller.
501 ***********************************************************************/
503 int regdb_fetch_values( const char* key
, REGVAL_CTR
*values
)
508 DEBUG(10,("regdb_fetch_values: Looking for value of key [%s] \n", key
));
510 pstr_sprintf( keystr
, "%s/%s", VALUE_PREFIX
, key
);
511 normalize_reg_path( keystr
);
513 data
= tdb_fetch_bystring( tdb_reg
, keystr
);
516 /* all keys have zero values by default */
520 regdb_unpack_values( values
, data
.dptr
, data
.dsize
);
522 SAFE_FREE( data
.dptr
);
524 return regval_ctr_numvals(values
);
527 /***********************************************************************
528 Stub function since we do not currently support storing registry
529 values in the registry.tdb
530 ***********************************************************************/
532 BOOL
regdb_store_values( const char *key
, REGVAL_CTR
*values
)
538 DEBUG(10,("regdb_store_values: Looking for value of key [%s] \n", key
));
542 len
= regdb_pack_values( values
, data
.dptr
, data
.dsize
);
544 DEBUG(0,("regdb_store_values: unable to pack values. len <= 0\n"));
548 data
.dptr
= SMB_MALLOC_ARRAY( char, len
);
551 len
= regdb_pack_values( values
, data
.dptr
, data
.dsize
);
553 SMB_ASSERT( len
== data
.dsize
);
555 pstr_sprintf( keystr
, "%s/%s", VALUE_PREFIX
, key
);
556 normalize_reg_path( keystr
);
558 ret
= tdb_store_bystring(tdb_reg
, keystr
, data
, TDB_REPLACE
);
560 SAFE_FREE( data
.dptr
);
567 * Table of function pointers for default access
570 REGISTRY_OPS regdb_ops
= {