WHATSNEW: Add release notes for Samba 3.6.23.
[Samba.git] / source3 / registry / reg_objects.c
blob693ea7402d69a3f7ebfab2e1e80b4eb6f2842d4a
1 /*
2 * Unix SMB/CIFS implementation.
3 * Virtual Windows Registry Layer
4 * Copyright (C) Gerald Carter 2002-2005
5 * Copyright (C) Michael Adam 2007-2010
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 /* Implementation of registry frontend view functions. */
23 #include "includes.h"
24 #include "registry.h"
25 #include "reg_objects.h"
26 #include "util_tdb.h"
27 #include "dbwrap.h"
28 #include "../libcli/registry/util_reg.h"
30 #undef DBGC_CLASS
31 #define DBGC_CLASS DBGC_REGISTRY
33 /* low level structure to contain registry values */
35 struct regval_blob {
36 fstring valuename;
37 uint32_t type;
38 /* this should be encapsulated in an RPC_DATA_BLOB */
39 uint32_t size; /* in bytes */
40 uint8_t *data_p;
43 /* container for registry values */
45 struct regval_ctr {
46 uint32_t num_values;
47 struct regval_blob **values;
48 int seqnum;
51 struct regsubkey_ctr {
52 uint32_t num_subkeys;
53 char **subkeys;
54 struct db_context *subkeys_hash;
55 int seqnum;
58 /**********************************************************************
60 Note that the struct regsubkey_ctr and struct regval_ctr objects *must* be
61 talloc()'d since the methods use the object pointer as the talloc
62 context for internal private data.
64 There is no longer a regval_ctr_intit() and regval_ctr_destroy()
65 pair of functions. Simply TALLOC_ZERO_P() and TALLOC_FREE() the
66 object.
68 **********************************************************************/
70 WERROR regsubkey_ctr_init(TALLOC_CTX *mem_ctx, struct regsubkey_ctr **ctr)
72 if (ctr == NULL) {
73 return WERR_INVALID_PARAM;
76 *ctr = talloc_zero(mem_ctx, struct regsubkey_ctr);
77 if (*ctr == NULL) {
78 return WERR_NOMEM;
81 (*ctr)->subkeys_hash = db_open_rbt(*ctr);
82 if ((*ctr)->subkeys_hash == NULL) {
83 talloc_free(*ctr);
84 return WERR_NOMEM;
87 return WERR_OK;
90 /**
91 * re-initialize the list of subkeys (to the emtpy list)
92 * in an already allocated regsubkey_ctr
95 WERROR regsubkey_ctr_reinit(struct regsubkey_ctr *ctr)
97 if (ctr == NULL) {
98 return WERR_INVALID_PARAM;
101 talloc_free(ctr->subkeys_hash);
102 ctr->subkeys_hash = db_open_rbt(ctr);
103 W_ERROR_HAVE_NO_MEMORY(ctr->subkeys_hash);
105 TALLOC_FREE(ctr->subkeys);
107 ctr->num_subkeys = 0;
108 ctr->seqnum = 0;
110 return WERR_OK;
113 WERROR regsubkey_ctr_set_seqnum(struct regsubkey_ctr *ctr, int seqnum)
115 if (ctr == NULL) {
116 return WERR_INVALID_PARAM;
119 ctr->seqnum = seqnum;
121 return WERR_OK;
124 int regsubkey_ctr_get_seqnum(struct regsubkey_ctr *ctr)
126 if (ctr == NULL) {
127 return -1;
130 return ctr->seqnum;
133 static WERROR regsubkey_ctr_hash_keyname(struct regsubkey_ctr *ctr,
134 const char *keyname,
135 uint32_t idx)
137 WERROR werr;
139 werr = ntstatus_to_werror(dbwrap_store_bystring_upper(ctr->subkeys_hash,
140 keyname,
141 make_tdb_data((uint8_t *)&idx,
142 sizeof(idx)),
143 TDB_REPLACE));
144 if (!W_ERROR_IS_OK(werr)) {
145 DEBUG(1, ("error hashing new key '%s' in container: %s\n",
146 keyname, win_errstr(werr)));
149 return werr;
152 static WERROR regsubkey_ctr_unhash_keyname(struct regsubkey_ctr *ctr,
153 const char *keyname)
155 WERROR werr;
157 werr = ntstatus_to_werror(dbwrap_delete_bystring_upper(ctr->subkeys_hash,
158 keyname));
159 if (!W_ERROR_IS_OK(werr)) {
160 DEBUG(1, ("error unhashing key '%s' in container: %s\n",
161 keyname, win_errstr(werr)));
164 return werr;
167 static WERROR regsubkey_ctr_index_for_keyname(struct regsubkey_ctr *ctr,
168 const char *keyname,
169 uint32_t *idx)
171 TDB_DATA data;
173 if ((ctr == NULL) || (keyname == NULL)) {
174 return WERR_INVALID_PARAM;
177 data = dbwrap_fetch_bystring_upper(ctr->subkeys_hash, ctr, keyname);
178 if (data.dptr == NULL) {
179 return WERR_NOT_FOUND;
182 if (data.dsize != sizeof(*idx)) {
183 talloc_free(data.dptr);
184 return WERR_INVALID_DATATYPE;
187 if (idx != NULL) {
188 *idx = *(uint32_t *)data.dptr;
191 talloc_free(data.dptr);
192 return WERR_OK;
195 /***********************************************************************
196 Add a new key to the array
197 **********************************************************************/
199 WERROR regsubkey_ctr_addkey( struct regsubkey_ctr *ctr, const char *keyname )
201 char **newkeys;
202 WERROR werr;
204 if ( !keyname ) {
205 return WERR_OK;
208 /* make sure the keyname is not already there */
210 if ( regsubkey_ctr_key_exists( ctr, keyname ) ) {
211 return WERR_OK;
214 if (!(newkeys = TALLOC_REALLOC_ARRAY(ctr, ctr->subkeys, char *,
215 ctr->num_subkeys+1))) {
216 return WERR_NOMEM;
219 ctr->subkeys = newkeys;
221 if (!(ctr->subkeys[ctr->num_subkeys] = talloc_strdup(ctr->subkeys,
222 keyname ))) {
224 * Don't shrink the new array again, this wastes a pointer
226 return WERR_NOMEM;
229 werr = regsubkey_ctr_hash_keyname(ctr, keyname, ctr->num_subkeys);
230 W_ERROR_NOT_OK_RETURN(werr);
232 ctr->num_subkeys++;
234 return WERR_OK;
237 /***********************************************************************
238 Delete a key from the array
239 **********************************************************************/
241 WERROR regsubkey_ctr_delkey( struct regsubkey_ctr *ctr, const char *keyname )
243 WERROR werr;
244 uint32_t idx, j;
246 if (keyname == NULL) {
247 return WERR_INVALID_PARAM;
250 /* make sure the keyname is actually already there */
252 werr = regsubkey_ctr_index_for_keyname(ctr, keyname, &idx);
253 W_ERROR_NOT_OK_RETURN(werr);
255 werr = regsubkey_ctr_unhash_keyname(ctr, keyname);
256 W_ERROR_NOT_OK_RETURN(werr);
258 /* update if we have any keys left */
259 ctr->num_subkeys--;
260 if (idx < ctr->num_subkeys) {
261 memmove(&ctr->subkeys[idx], &ctr->subkeys[idx+1],
262 sizeof(char *) * (ctr->num_subkeys - idx));
264 /* we have to re-hash rest of the array... :-( */
265 for (j = idx; j < ctr->num_subkeys; j++) {
266 werr = regsubkey_ctr_hash_keyname(ctr, ctr->subkeys[j], j);
267 W_ERROR_NOT_OK_RETURN(werr);
271 return WERR_OK;
274 /***********************************************************************
275 Check for the existance of a key
276 **********************************************************************/
278 bool regsubkey_ctr_key_exists( struct regsubkey_ctr *ctr, const char *keyname )
280 WERROR werr;
282 if (!ctr->subkeys) {
283 return False;
286 werr = regsubkey_ctr_index_for_keyname(ctr, keyname, NULL);
287 if (!W_ERROR_IS_OK(werr)) {
288 return false;
291 return true;
294 /***********************************************************************
295 How many keys does the container hold ?
296 **********************************************************************/
298 int regsubkey_ctr_numkeys( struct regsubkey_ctr *ctr )
300 return ctr->num_subkeys;
303 /***********************************************************************
304 Retreive a specific key string
305 **********************************************************************/
307 char* regsubkey_ctr_specific_key( struct regsubkey_ctr *ctr, uint32_t key_index )
309 if ( ! (key_index < ctr->num_subkeys) )
310 return NULL;
312 return ctr->subkeys[key_index];
316 * Utility functions for struct regval_ctr
320 * allocate a regval_ctr structure.
322 WERROR regval_ctr_init(TALLOC_CTX *mem_ctx, struct regval_ctr **ctr)
324 if (ctr == NULL) {
325 return WERR_INVALID_PARAM;
328 *ctr = talloc_zero(mem_ctx, struct regval_ctr);
329 if (*ctr == NULL) {
330 return WERR_NOMEM;
333 return WERR_OK;
336 /***********************************************************************
337 How many keys does the container hold ?
338 **********************************************************************/
340 int regval_ctr_numvals(struct regval_ctr *ctr)
342 return ctr->num_values;
345 /***********************************************************************
346 allocate memory for and duplicate a struct regval_blob.
347 This is malloc'd memory so the caller should free it when done
348 **********************************************************************/
350 struct regval_blob* dup_registry_value(struct regval_blob *val)
352 struct regval_blob *copy = NULL;
354 if ( !val )
355 return NULL;
357 if ( !(copy = SMB_MALLOC_P( struct regval_blob)) ) {
358 DEBUG(0,("dup_registry_value: malloc() failed!\n"));
359 return NULL;
362 /* copy all the non-pointer initial data */
364 memcpy( copy, val, sizeof(struct regval_blob) );
366 copy->size = 0;
367 copy->data_p = NULL;
369 if ( val->data_p && val->size )
371 if ( !(copy->data_p = (uint8_t *)memdup( val->data_p,
372 val->size )) ) {
373 DEBUG(0,("dup_registry_value: memdup() failed for [%d] "
374 "bytes!\n", val->size));
375 SAFE_FREE( copy );
376 return NULL;
378 copy->size = val->size;
381 return copy;
384 /**********************************************************************
385 free the memory allocated to a struct regval_blob
386 *********************************************************************/
388 void free_registry_value(struct regval_blob *val)
390 if ( !val )
391 return;
393 SAFE_FREE( val->data_p );
394 SAFE_FREE( val );
396 return;
399 /**********************************************************************
400 *********************************************************************/
402 uint8_t* regval_data_p(struct regval_blob *val)
404 return val->data_p;
407 /**********************************************************************
408 *********************************************************************/
410 uint32_t regval_size(struct regval_blob *val)
412 return val->size;
415 /**********************************************************************
416 *********************************************************************/
418 char* regval_name(struct regval_blob *val)
420 return val->valuename;
423 /**********************************************************************
424 *********************************************************************/
426 uint32_t regval_type(struct regval_blob *val)
428 return val->type;
431 /***********************************************************************
432 Retreive a pointer to a specific value. Caller shoud dup the structure
433 since this memory will go away when the ctr is free()'d
434 **********************************************************************/
436 struct regval_blob *regval_ctr_specific_value(struct regval_ctr *ctr,
437 uint32_t idx)
439 if ( !(idx < ctr->num_values) )
440 return NULL;
442 return ctr->values[idx];
445 /***********************************************************************
446 Check for the existance of a value
447 **********************************************************************/
449 bool regval_ctr_value_exists(struct regval_ctr *ctr, const char *value)
451 int i;
453 for ( i=0; i<ctr->num_values; i++ ) {
454 if ( strequal( ctr->values[i]->valuename, value) )
455 return True;
458 return False;
462 * Get a value by its name
464 struct regval_blob *regval_ctr_value_byname(struct regval_ctr *ctr,
465 const char *value)
467 int i;
469 for (i=0; i<ctr->num_values; i++) {
470 if (strequal(ctr->values[i]->valuename,value)) {
471 return ctr->values[i];
475 return NULL;
479 /***********************************************************************
480 * compose a struct regval_blob from input data
481 **********************************************************************/
483 struct regval_blob *regval_compose(TALLOC_CTX *ctx, const char *name,
484 uint32_t type,
485 const uint8_t *data_p, size_t size)
487 struct regval_blob *regval = TALLOC_P(ctx, struct regval_blob);
489 if (regval == NULL) {
490 return NULL;
493 fstrcpy(regval->valuename, name);
494 regval->type = type;
495 if (size) {
496 regval->data_p = (uint8_t *)TALLOC_MEMDUP(regval, data_p, size);
497 if (!regval->data_p) {
498 TALLOC_FREE(regval);
499 return NULL;
501 } else {
502 regval->data_p = NULL;
504 regval->size = size;
506 return regval;
509 /***********************************************************************
510 Add a new registry value to the array
511 **********************************************************************/
513 int regval_ctr_addvalue(struct regval_ctr *ctr, const char *name, uint32_t type,
514 const uint8_t *data_p, size_t size)
516 if ( !name )
517 return ctr->num_values;
519 /* Delete the current value (if it exists) and add the new one */
521 regval_ctr_delvalue( ctr, name );
523 /* allocate a slot in the array of pointers */
525 if ( ctr->num_values == 0 ) {
526 ctr->values = TALLOC_P( ctr, struct regval_blob *);
527 } else {
528 ctr->values = TALLOC_REALLOC_ARRAY(ctr, ctr->values,
529 struct regval_blob *,
530 ctr->num_values+1);
533 if (!ctr->values) {
534 ctr->num_values = 0;
535 return 0;
538 /* allocate a new value and store the pointer in the arrya */
540 ctr->values[ctr->num_values] = regval_compose(ctr, name, type, data_p,
541 size);
542 if (ctr->values[ctr->num_values] == NULL) {
543 ctr->num_values = 0;
544 return 0;
546 ctr->num_values++;
548 return ctr->num_values;
551 /***********************************************************************
552 Add a new registry SZ value to the array
553 **********************************************************************/
555 int regval_ctr_addvalue_sz(struct regval_ctr *ctr, const char *name, const char *data)
557 DATA_BLOB blob;
559 if (!push_reg_sz(ctr, &blob, data)) {
560 return -1;
563 return regval_ctr_addvalue(ctr, name, REG_SZ,
564 (const uint8_t *)blob.data,
565 blob.length);
568 /***********************************************************************
569 Add a new registry MULTI_SZ value to the array
570 **********************************************************************/
572 int regval_ctr_addvalue_multi_sz(struct regval_ctr *ctr, const char *name, const char **data)
574 DATA_BLOB blob;
576 if (!push_reg_multi_sz(ctr, &blob, data)) {
577 return -1;
580 return regval_ctr_addvalue(ctr, name, REG_MULTI_SZ,
581 (const uint8_t *)blob.data,
582 blob.length);
585 /***********************************************************************
586 Add a new registry value to the array
587 **********************************************************************/
589 int regval_ctr_copyvalue(struct regval_ctr *ctr, struct regval_blob *val)
591 if ( val ) {
592 regval_ctr_addvalue(ctr, val->valuename, val->type,
593 (uint8_t *)val->data_p, val->size);
596 return ctr->num_values;
599 /***********************************************************************
600 Delete a single value from the registry container.
601 No need to free memory since it is talloc'd.
602 **********************************************************************/
604 int regval_ctr_delvalue(struct regval_ctr *ctr, const char *name)
606 int i;
608 for ( i=0; i<ctr->num_values; i++ ) {
609 if ( strequal( ctr->values[i]->valuename, name ) )
610 break;
613 /* just return if we don't find it */
615 if ( i == ctr->num_values )
616 return ctr->num_values;
618 /* If 'i' was not the last element, just shift everything down one */
619 ctr->num_values--;
620 if ( i < ctr->num_values )
621 memmove(&ctr->values[i], &ctr->values[i+1],
622 sizeof(struct regval_blob*)*(ctr->num_values-i));
624 return ctr->num_values;
627 /***********************************************************************
628 Retrieve single value from the registry container.
629 No need to free memory since it is talloc'd.
630 **********************************************************************/
632 struct regval_blob* regval_ctr_getvalue(struct regval_ctr *ctr,
633 const char *name)
635 int i;
637 /* search for the value */
639 for ( i=0; i<ctr->num_values; i++ ) {
640 if ( strequal( ctr->values[i]->valuename, name ) )
641 return ctr->values[i];
644 return NULL;
647 int regval_ctr_get_seqnum(struct regval_ctr *ctr)
649 if (ctr == NULL) {
650 return -1;
653 return ctr->seqnum;
656 WERROR regval_ctr_set_seqnum(struct regval_ctr *ctr, int seqnum)
658 if (ctr == NULL) {
659 return WERR_INVALID_PARAM;
662 ctr->seqnum = seqnum;
664 return WERR_OK;
667 /***********************************************************************
668 return the data_p as a uint32_t
669 **********************************************************************/
671 uint32_t regval_dword(struct regval_blob *val)
673 uint32_t data;
675 data = IVAL( regval_data_p(val), 0 );
677 return data;
680 /***********************************************************************
681 return the data_p as a character string
682 **********************************************************************/
684 const char *regval_sz(struct regval_blob *val)
686 const char *data = NULL;
687 DATA_BLOB blob = data_blob_const(regval_data_p(val), regval_size(val));
689 pull_reg_sz(talloc_tos(), &blob, &data);
691 return data;