selftest split $PERL into multiple arguments for Test::More check
[Samba.git] / source3 / registry / reg_objects.c
blobeb3437286a65ab46cfa2d2a364db90c66d4e275a
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 "dbwrap.h"
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_REGISTRY
31 /* low level structure to contain registry values */
33 struct regval_blob {
34 fstring valuename;
35 uint32_t type;
36 /* this should be encapsulated in an RPC_DATA_BLOB */
37 uint32_t size; /* in bytes */
38 uint8_t *data_p;
41 /* container for registry values */
43 struct regval_ctr {
44 uint32_t num_values;
45 struct regval_blob **values;
46 int seqnum;
49 struct regsubkey_ctr {
50 uint32_t num_subkeys;
51 char **subkeys;
52 struct db_context *subkeys_hash;
53 int seqnum;
56 /**********************************************************************
58 Note that the struct regsubkey_ctr and struct regval_ctr objects *must* be
59 talloc()'d since the methods use the object pointer as the talloc
60 context for internal private data.
62 There is no longer a regval_ctr_intit() and regval_ctr_destroy()
63 pair of functions. Simply TALLOC_ZERO_P() and TALLOC_FREE() the
64 object.
66 **********************************************************************/
68 WERROR regsubkey_ctr_init(TALLOC_CTX *mem_ctx, struct regsubkey_ctr **ctr)
70 if (ctr == NULL) {
71 return WERR_INVALID_PARAM;
74 *ctr = talloc_zero(mem_ctx, struct regsubkey_ctr);
75 if (*ctr == NULL) {
76 return WERR_NOMEM;
79 (*ctr)->subkeys_hash = db_open_rbt(*ctr);
80 if ((*ctr)->subkeys_hash == NULL) {
81 talloc_free(*ctr);
82 return WERR_NOMEM;
85 return WERR_OK;
88 /**
89 * re-initialize the list of subkeys (to the emtpy list)
90 * in an already allocated regsubkey_ctr
93 WERROR regsubkey_ctr_reinit(struct regsubkey_ctr *ctr)
95 if (ctr == NULL) {
96 return WERR_INVALID_PARAM;
99 talloc_free(ctr->subkeys_hash);
100 ctr->subkeys_hash = db_open_rbt(ctr);
101 W_ERROR_HAVE_NO_MEMORY(ctr->subkeys_hash);
103 TALLOC_FREE(ctr->subkeys);
105 ctr->num_subkeys = 0;
106 ctr->seqnum = 0;
108 return WERR_OK;
111 WERROR regsubkey_ctr_set_seqnum(struct regsubkey_ctr *ctr, int seqnum)
113 if (ctr == NULL) {
114 return WERR_INVALID_PARAM;
117 ctr->seqnum = seqnum;
119 return WERR_OK;
122 int regsubkey_ctr_get_seqnum(struct regsubkey_ctr *ctr)
124 if (ctr == NULL) {
125 return -1;
128 return ctr->seqnum;
131 static WERROR regsubkey_ctr_hash_keyname(struct regsubkey_ctr *ctr,
132 const char *keyname,
133 uint32_t idx)
135 WERROR werr;
137 werr = ntstatus_to_werror(dbwrap_store_bystring_upper(ctr->subkeys_hash,
138 keyname,
139 make_tdb_data((uint8_t *)&idx,
140 sizeof(idx)),
141 TDB_REPLACE));
142 if (!W_ERROR_IS_OK(werr)) {
143 DEBUG(1, ("error hashing new key '%s' in container: %s\n",
144 keyname, win_errstr(werr)));
147 return werr;
150 static WERROR regsubkey_ctr_unhash_keyname(struct regsubkey_ctr *ctr,
151 const char *keyname)
153 WERROR werr;
155 werr = ntstatus_to_werror(dbwrap_delete_bystring_upper(ctr->subkeys_hash,
156 keyname));
157 if (!W_ERROR_IS_OK(werr)) {
158 DEBUG(1, ("error unhashing key '%s' in container: %s\n",
159 keyname, win_errstr(werr)));
162 return werr;
165 static WERROR regsubkey_ctr_index_for_keyname(struct regsubkey_ctr *ctr,
166 const char *keyname,
167 uint32_t *idx)
169 TDB_DATA data;
171 if ((ctr == NULL) || (keyname == NULL)) {
172 return WERR_INVALID_PARAM;
175 data = dbwrap_fetch_bystring_upper(ctr->subkeys_hash, ctr, keyname);
176 if (data.dptr == NULL) {
177 return WERR_NOT_FOUND;
180 if (data.dsize != sizeof(*idx)) {
181 talloc_free(data.dptr);
182 return WERR_INVALID_DATATYPE;
185 if (idx != NULL) {
186 *idx = *(uint32_t *)data.dptr;
189 talloc_free(data.dptr);
190 return WERR_OK;
193 /***********************************************************************
194 Add a new key to the array
195 **********************************************************************/
197 WERROR regsubkey_ctr_addkey( struct regsubkey_ctr *ctr, const char *keyname )
199 char **newkeys;
200 WERROR werr;
202 if ( !keyname ) {
203 return WERR_OK;
206 /* make sure the keyname is not already there */
208 if ( regsubkey_ctr_key_exists( ctr, keyname ) ) {
209 return WERR_OK;
212 if (!(newkeys = TALLOC_REALLOC_ARRAY(ctr, ctr->subkeys, char *,
213 ctr->num_subkeys+1))) {
214 return WERR_NOMEM;
217 ctr->subkeys = newkeys;
219 if (!(ctr->subkeys[ctr->num_subkeys] = talloc_strdup(ctr->subkeys,
220 keyname ))) {
222 * Don't shrink the new array again, this wastes a pointer
224 return WERR_NOMEM;
227 werr = regsubkey_ctr_hash_keyname(ctr, keyname, ctr->num_subkeys);
228 W_ERROR_NOT_OK_RETURN(werr);
230 ctr->num_subkeys++;
232 return WERR_OK;
235 /***********************************************************************
236 Delete a key from the array
237 **********************************************************************/
239 WERROR regsubkey_ctr_delkey( struct regsubkey_ctr *ctr, const char *keyname )
241 WERROR werr;
242 uint32_t idx, j;
244 if (keyname == NULL) {
245 return WERR_INVALID_PARAM;
248 /* make sure the keyname is actually already there */
250 werr = regsubkey_ctr_index_for_keyname(ctr, keyname, &idx);
251 W_ERROR_NOT_OK_RETURN(werr);
253 werr = regsubkey_ctr_unhash_keyname(ctr, keyname);
254 W_ERROR_NOT_OK_RETURN(werr);
256 /* update if we have any keys left */
257 ctr->num_subkeys--;
258 if (idx < ctr->num_subkeys) {
259 memmove(&ctr->subkeys[idx], &ctr->subkeys[idx+1],
260 sizeof(char *) * (ctr->num_subkeys - idx));
262 /* we have to re-hash rest of the array... :-( */
263 for (j = idx; j < ctr->num_subkeys; j++) {
264 werr = regsubkey_ctr_hash_keyname(ctr, ctr->subkeys[j], j);
265 W_ERROR_NOT_OK_RETURN(werr);
269 return WERR_OK;
272 /***********************************************************************
273 Check for the existance of a key
274 **********************************************************************/
276 bool regsubkey_ctr_key_exists( struct regsubkey_ctr *ctr, const char *keyname )
278 WERROR werr;
280 if (!ctr->subkeys) {
281 return False;
284 werr = regsubkey_ctr_index_for_keyname(ctr, keyname, NULL);
285 if (!W_ERROR_IS_OK(werr)) {
286 return false;
289 return true;
292 /***********************************************************************
293 How many keys does the container hold ?
294 **********************************************************************/
296 int regsubkey_ctr_numkeys( struct regsubkey_ctr *ctr )
298 return ctr->num_subkeys;
301 /***********************************************************************
302 Retreive a specific key string
303 **********************************************************************/
305 char* regsubkey_ctr_specific_key( struct regsubkey_ctr *ctr, uint32_t key_index )
307 if ( ! (key_index < ctr->num_subkeys) )
308 return NULL;
310 return ctr->subkeys[key_index];
314 * Utility functions for struct regval_ctr
318 * allocate a regval_ctr structure.
320 WERROR regval_ctr_init(TALLOC_CTX *mem_ctx, struct regval_ctr **ctr)
322 if (ctr == NULL) {
323 return WERR_INVALID_PARAM;
326 *ctr = talloc_zero(mem_ctx, struct regval_ctr);
327 if (*ctr == NULL) {
328 return WERR_NOMEM;
331 return WERR_OK;
334 /***********************************************************************
335 How many keys does the container hold ?
336 **********************************************************************/
338 int regval_ctr_numvals(struct regval_ctr *ctr)
340 return ctr->num_values;
343 /***********************************************************************
344 allocate memory for and duplicate a struct regval_blob.
345 This is malloc'd memory so the caller should free it when done
346 **********************************************************************/
348 struct regval_blob* dup_registry_value(struct regval_blob *val)
350 struct regval_blob *copy = NULL;
352 if ( !val )
353 return NULL;
355 if ( !(copy = SMB_MALLOC_P( struct regval_blob)) ) {
356 DEBUG(0,("dup_registry_value: malloc() failed!\n"));
357 return NULL;
360 /* copy all the non-pointer initial data */
362 memcpy( copy, val, sizeof(struct regval_blob) );
364 copy->size = 0;
365 copy->data_p = NULL;
367 if ( val->data_p && val->size )
369 if ( !(copy->data_p = (uint8_t *)memdup( val->data_p,
370 val->size )) ) {
371 DEBUG(0,("dup_registry_value: memdup() failed for [%d] "
372 "bytes!\n", val->size));
373 SAFE_FREE( copy );
374 return NULL;
376 copy->size = val->size;
379 return copy;
382 /**********************************************************************
383 free the memory allocated to a struct regval_blob
384 *********************************************************************/
386 void free_registry_value(struct regval_blob *val)
388 if ( !val )
389 return;
391 SAFE_FREE( val->data_p );
392 SAFE_FREE( val );
394 return;
397 /**********************************************************************
398 *********************************************************************/
400 uint8_t* regval_data_p(struct regval_blob *val)
402 return val->data_p;
405 /**********************************************************************
406 *********************************************************************/
408 uint32_t regval_size(struct regval_blob *val)
410 return val->size;
413 /**********************************************************************
414 *********************************************************************/
416 char* regval_name(struct regval_blob *val)
418 return val->valuename;
421 /**********************************************************************
422 *********************************************************************/
424 uint32_t regval_type(struct regval_blob *val)
426 return val->type;
429 /***********************************************************************
430 Retreive a pointer to a specific value. Caller shoud dup the structure
431 since this memory will go away when the ctr is free()'d
432 **********************************************************************/
434 struct regval_blob *regval_ctr_specific_value(struct regval_ctr *ctr,
435 uint32_t idx)
437 if ( !(idx < ctr->num_values) )
438 return NULL;
440 return ctr->values[idx];
443 /***********************************************************************
444 Check for the existance of a value
445 **********************************************************************/
447 bool regval_ctr_key_exists(struct regval_ctr *ctr, const char *value)
449 int i;
451 for ( i=0; i<ctr->num_values; i++ ) {
452 if ( strequal( ctr->values[i]->valuename, value) )
453 return True;
456 return False;
459 /***********************************************************************
460 * compose a struct regval_blob from input data
461 **********************************************************************/
463 struct regval_blob *regval_compose(TALLOC_CTX *ctx, const char *name,
464 uint32_t type,
465 const uint8_t *data_p, size_t size)
467 struct regval_blob *regval = TALLOC_P(ctx, struct regval_blob);
469 if (regval == NULL) {
470 return NULL;
473 fstrcpy(regval->valuename, name);
474 regval->type = type;
475 if (size) {
476 regval->data_p = (uint8_t *)TALLOC_MEMDUP(regval, data_p, size);
477 if (!regval->data_p) {
478 TALLOC_FREE(regval);
479 return NULL;
481 } else {
482 regval->data_p = NULL;
484 regval->size = size;
486 return regval;
489 /***********************************************************************
490 Add a new registry value to the array
491 **********************************************************************/
493 int regval_ctr_addvalue(struct regval_ctr *ctr, const char *name, uint32_t type,
494 const uint8_t *data_p, size_t size)
496 if ( !name )
497 return ctr->num_values;
499 /* Delete the current value (if it exists) and add the new one */
501 regval_ctr_delvalue( ctr, name );
503 /* allocate a slot in the array of pointers */
505 if ( ctr->num_values == 0 ) {
506 ctr->values = TALLOC_P( ctr, struct regval_blob *);
507 } else {
508 ctr->values = TALLOC_REALLOC_ARRAY(ctr, ctr->values,
509 struct regval_blob *,
510 ctr->num_values+1);
513 if (!ctr->values) {
514 ctr->num_values = 0;
515 return 0;
518 /* allocate a new value and store the pointer in the arrya */
520 ctr->values[ctr->num_values] = regval_compose(ctr, name, type, data_p,
521 size);
522 if (ctr->values[ctr->num_values] == NULL) {
523 ctr->num_values = 0;
524 return 0;
526 ctr->num_values++;
528 return ctr->num_values;
531 /***********************************************************************
532 Add a new registry SZ value to the array
533 **********************************************************************/
535 int regval_ctr_addvalue_sz(struct regval_ctr *ctr, const char *name, const char *data)
537 DATA_BLOB blob;
539 if (!push_reg_sz(ctr, &blob, data)) {
540 return -1;
543 return regval_ctr_addvalue(ctr, name, REG_SZ,
544 (const uint8_t *)blob.data,
545 blob.length);
548 /***********************************************************************
549 Add a new registry MULTI_SZ value to the array
550 **********************************************************************/
552 int regval_ctr_addvalue_multi_sz(struct regval_ctr *ctr, const char *name, const char **data)
554 DATA_BLOB blob;
556 if (!push_reg_multi_sz(ctr, &blob, data)) {
557 return -1;
560 return regval_ctr_addvalue(ctr, name, REG_MULTI_SZ,
561 (const uint8_t *)blob.data,
562 blob.length);
565 /***********************************************************************
566 Add a new registry value to the array
567 **********************************************************************/
569 int regval_ctr_copyvalue(struct regval_ctr *ctr, struct regval_blob *val)
571 if ( val ) {
572 regval_ctr_addvalue(ctr, val->valuename, val->type,
573 (uint8_t *)val->data_p, val->size);
576 return ctr->num_values;
579 /***********************************************************************
580 Delete a single value from the registry container.
581 No need to free memory since it is talloc'd.
582 **********************************************************************/
584 int regval_ctr_delvalue(struct regval_ctr *ctr, const char *name)
586 int i;
588 for ( i=0; i<ctr->num_values; i++ ) {
589 if ( strequal( ctr->values[i]->valuename, name ) )
590 break;
593 /* just return if we don't find it */
595 if ( i == ctr->num_values )
596 return ctr->num_values;
598 /* If 'i' was not the last element, just shift everything down one */
599 ctr->num_values--;
600 if ( i < ctr->num_values )
601 memmove(&ctr->values[i], &ctr->values[i+1],
602 sizeof(struct regval_blob*)*(ctr->num_values-i));
604 return ctr->num_values;
607 /***********************************************************************
608 Retrieve single value from the registry container.
609 No need to free memory since it is talloc'd.
610 **********************************************************************/
612 struct regval_blob* regval_ctr_getvalue(struct regval_ctr *ctr,
613 const char *name)
615 int i;
617 /* search for the value */
619 for ( i=0; i<ctr->num_values; i++ ) {
620 if ( strequal( ctr->values[i]->valuename, name ) )
621 return ctr->values[i];
624 return NULL;
627 int regval_ctr_get_seqnum(struct regval_ctr *ctr)
629 if (ctr == NULL) {
630 return -1;
633 return ctr->seqnum;
636 WERROR regval_ctr_set_seqnum(struct regval_ctr *ctr, int seqnum)
638 if (ctr == NULL) {
639 return WERR_INVALID_PARAM;
642 ctr->seqnum = seqnum;
644 return WERR_OK;
647 /***********************************************************************
648 return the data_p as a uint32_t
649 **********************************************************************/
651 uint32_t regval_dword(struct regval_blob *val)
653 uint32_t data;
655 data = IVAL( regval_data_p(val), 0 );
657 return data;
660 /***********************************************************************
661 return the data_p as a character string
662 **********************************************************************/
664 const char *regval_sz(struct regval_blob *val)
666 const char *data = NULL;
667 DATA_BLOB blob = data_blob_const(regval_data_p(val), regval_size(val));
669 pull_reg_sz(talloc_tos(), &blob, &data);
671 return data;