summaryrefslogtreecommitdiff
path: root/source3/registry/reg_frontend.c
blob: c4e332ed6b8c0b5eea1227d200ee1fad5e50bb19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/* 
 *  Unix SMB/CIFS implementation.
 *  RPC Pipe client / server routines
 *  Copyright (C) Gerald Carter                     2002.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *  
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *  
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/* Implementation of registry database functions. */

#include "includes.h"

#undef DBGC_CLASS
#define DBGC_CLASS DBGC_RPC_SRV



static TDB_CONTEXT *tdb_reg;


/***********************************************************************
 Open the registry database
 ***********************************************************************/
 
static BOOL init_registry_data( void )
{
	pstring keyname;
	char *subkeys[3];

	/* HKEY_LOCAL_MACHINE */
	
	pstrcpy( keyname, KEY_HKLM );
	subkeys[0] = "SYSTEM";
	if ( !store_reg_keys( keyname, subkeys, 1 ))
		return False;
		
	pstrcpy( keyname, KEY_HKLM );
	pstrcat( keyname, "/SYSTEM" );
	subkeys[0] = "CurrentControlSet";
	if ( !store_reg_keys( keyname, subkeys, 1 ))
		return False;
		
	pstrcpy( keyname, KEY_HKLM );
	pstrcat( keyname, "/SYSTEM/CurrentControlSet" );
	subkeys[0] = "Control";
	subkeys[1] = "services";
	if ( !store_reg_keys( keyname, subkeys, 2 ))
		return False;

	pstrcpy( keyname, KEY_HKLM );
	pstrcat( keyname, "/SYSTEM/CurrentControlSet/Control" );
	subkeys[0] = "Print";
	subkeys[1] = "ProduceOptions";
	if ( !store_reg_keys( keyname, subkeys, 2 ))
		return False;

	pstrcpy( keyname, KEY_HKLM );
	pstrcat( keyname, "/SYSTEM/CurrentControlSet/Control/Print" );
	subkeys[0] = "Environments";
	subkeys[1] = "Forms";
	subkeys[2] = "Printers";
	if ( !store_reg_keys( keyname, subkeys, 3 ))
		return False;

	pstrcpy( keyname, KEY_HKLM );
	pstrcat( keyname, "/SYSTEM/CurrentControlSet/Control/ProductOptions" );
	if ( !store_reg_keys( keyname, subkeys, 0 ))
		return False;

	pstrcpy( keyname, KEY_HKLM );
	pstrcat( keyname, "/SYSTEM/CurrentControlSet/services" );
	subkeys[0] = "Netlogon";
	if ( !store_reg_keys( keyname, subkeys, 1 ))
		return False;
		
	pstrcpy( keyname, KEY_HKLM );
	pstrcat( keyname, "/SYSTEM/CurrentControlSet/services/Netlogon" );
	subkeys[0] = "parameters";
	if ( !store_reg_keys( keyname, subkeys, 1 ))
		return False;
		
	pstrcpy( keyname, KEY_HKLM );
	pstrcat( keyname, "/SYSTEM/CurrentControlSet/services/Netlogon/parameters" );
	if ( !store_reg_keys( keyname, subkeys, 0 ))
		return False;

	
	/* HKEY_USER */
		
	pstrcpy( keyname, KEY_HKU );
	if ( !store_reg_keys( keyname, subkeys, 0 ) )
		return False;
		
	return True;
}


/***********************************************************************
 Open the registry database
 ***********************************************************************/
 
BOOL init_registry( void )
{
	static pid_t local_pid;
	
	
	if (tdb_reg && local_pid == sys_getpid())
		return True;

	/* 
	 * try to open first without creating so we can determine
	 * if we need to init the data in the registry
	 */
	
	tdb_reg = tdb_open_log(lock_path("registry.tdb"), 0, TDB_DEFAULT, O_RDWR, 0600);
	if ( !tdb_reg ) 
	{
		tdb_reg = tdb_open_log(lock_path("registry.tdb"), 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
		if ( !tdb_reg ) {
			DEBUG(0,("init_registry: Failed to open registry %s (%s)\n",
				lock_path("registry.tdb"), strerror(errno) ));
			return False;
		}
		
		DEBUG(10,("init_registry: Successfully created registry tdb\n"));
		
		/* create the registry here */
		if ( !init_registry_data() ) {
			DEBUG(0,("init_registry: Failed to initiailize data in registry!\n"));
			return False;
		}
	}

	local_pid = sys_getpid();
	
	return True;
}

/***********************************************************************
 Add subkey strings to the registry tdb under a defined key
 fmt is the same format as tdb_pack except this function only supports
 fstrings
 ***********************************************************************/
 
BOOL store_reg_keys( char *keyname, char **subkeys, uint32 num_subkeys  )
{
	TDB_DATA kbuf, dbuf;
	char *buffer, *tmpbuf;
	int i = 0;
	uint32 len, buflen;
	BOOL ret = True;
	
	if ( !keyname )
		return False;
	
	/* allocate some initial memory */
		
	buffer = malloc(sizeof(pstring));
	buflen = sizeof(pstring);
	len = 0;
	
	/* store the number of subkeys */
	
	len += tdb_pack(buffer+len, buflen-len, "d", num_subkeys);
	
	/* pack all the strings */
	
	for (i=0; i<num_subkeys; i++) {
		len += tdb_pack(buffer+len, buflen-len, "f", subkeys[i]);
		if ( len > buflen ) {
			/* allocate some extra space */
			if ((tmpbuf = Realloc( buffer, len*2 )) == NULL) {
				DEBUG(0,("store_reg_keys: Failed to realloc memory of size [%d]\n", len*2));
				ret = False;
				goto done;
			}
			buffer = tmpbuf;
			buflen = len*2;
					
			len = tdb_pack(buffer+len, buflen-len, "f", subkeys[i]);
		}		
	}
	
	/* finally write out the data */
	
	kbuf.dptr = keyname;
	kbuf.dsize = strlen(keyname)+1;
	dbuf.dptr = buffer;
	dbuf.dsize = len;
	if ( tdb_store( tdb_reg, kbuf, dbuf, TDB_REPLACE ) == -1) {
		ret = False;
		goto done;
	}

done:		
	SAFE_FREE( buffer );
	return ret;
}

/***********************************************************************
 Retrieve an array of strings containing subkeys.  Memory should be 
 released by the caller.  The subkeys are stored in a catenated string
 of null terminated character strings
 ***********************************************************************/

int fetch_reg_keys( char* key, char **subkeys )
{
	pstring path;
	uint32 num_items;
	TDB_DATA dbuf;
	char *buf;
	uint32 buflen, len;
	int i;
	char *s;

	
	pstrcpy( path, key );
	
	/* convert to key format */
	pstring_sub( path, "\\", "/" );
	
	dbuf = tdb_fetch_by_string( tdb_reg, path );
	
	buf = dbuf.dptr;
	buflen = dbuf.dsize;
	
	if ( !buf ) {
		DEBUG(5,("fetch_reg_keys: Failed to fetch any subkeys for [%s]\n", key));
		return 0;
	}
	
	len = tdb_unpack( buf, buflen, "d", &num_items);
	if (num_items) {
		if ( (*subkeys = (char*)malloc(sizeof(fstring)*num_items)) == NULL ) {
			DEBUG(0,("fetch_reg_keys: Failed to malloc memory for subkey array containing [%d] items!\n",
				num_items));
			num_items = -1;
			goto done;
		}
	}
	
	s = *subkeys;
	for (i=0; i<num_items; i++) {
		len += tdb_unpack( buf+len, buflen-len, "f", s );
		s += strlen(s) + 1;
	}

done:	
	SAFE_FREE(dbuf.dptr);
	return num_items;
}

/***********************************************************************
 count the number of subkeys dtored in the registry
 ***********************************************************************/

int fetch_reg_keys_count( char* key )
{
	pstring path;
	uint32 num_items;
	TDB_DATA dbuf;
	char *buf;
	uint32 buflen, len;
	
	
	pstrcpy( path, key );
	
	/* convert to key format */
	pstring_sub( path, "\\", "/" );
	
	dbuf = tdb_fetch_by_string( tdb_reg, path );
	
	buf = dbuf.dptr;
	buflen = dbuf.dsize;
	
	if ( !buf ) {
		DEBUG(5,("fetch_reg_keys: Failed to fetch any subkeys for [%s]\n", key));
		return 0;
	}
	
	len = tdb_unpack( buf, buflen, "d", &num_items);
	
	SAFE_FREE( buf );
	
	return num_items;
}

/***********************************************************************
 retreive a specific subkey specified by index.  The subkey parameter
 is assumed to be an fstring.
 ***********************************************************************/

BOOL fetch_reg_keys_specific( char* key, char* subkey, uint32 key_index )
{
	int num_subkeys, i;
	char *subkeys = NULL;
	char *s;
	
	num_subkeys = fetch_reg_keys( key, &subkeys );
	if ( num_subkeys == -1 )
		return False;

	s = subkeys;
	for ( i=0; i<num_subkeys; i++ ) {
		/* copy the key if the index matches */
		if ( i == key_index ) {
			fstrcpy( subkey, s );
			break;
		}
		
		/* go onto the next string */
		s += strlen(s) + 1;
	}
	
	SAFE_FREE(subkeys);
	
	return True;
}