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. */
25 #include "reg_objects.h"
27 #include "../libcli/registry/util_reg.h"
30 #define DBGC_CLASS DBGC_REGISTRY
32 /* low level structure to contain registry values */
37 /* this should be encapsulated in an RPC_DATA_BLOB */
38 uint32_t size
; /* in bytes */
42 /* container for registry values */
46 struct regval_blob
**values
;
50 struct regsubkey_ctr
{
53 struct db_context
*subkeys_hash
;
57 /**********************************************************************
59 Note that the struct regsubkey_ctr and struct regval_ctr objects *must* be
60 talloc()'d since the methods use the object pointer as the talloc
61 context for internal private data.
63 There is no longer a regval_ctr_intit() and regval_ctr_destroy()
64 pair of functions. Simply TALLOC_ZERO_P() and TALLOC_FREE() the
67 **********************************************************************/
69 WERROR
regsubkey_ctr_init(TALLOC_CTX
*mem_ctx
, struct regsubkey_ctr
**ctr
)
72 return WERR_INVALID_PARAM
;
75 *ctr
= talloc_zero(mem_ctx
, struct regsubkey_ctr
);
80 (*ctr
)->subkeys_hash
= db_open_rbt(*ctr
);
81 if ((*ctr
)->subkeys_hash
== NULL
) {
90 * re-initialize the list of subkeys (to the emtpy list)
91 * in an already allocated regsubkey_ctr
94 WERROR
regsubkey_ctr_reinit(struct regsubkey_ctr
*ctr
)
97 return WERR_INVALID_PARAM
;
100 talloc_free(ctr
->subkeys_hash
);
101 ctr
->subkeys_hash
= db_open_rbt(ctr
);
102 W_ERROR_HAVE_NO_MEMORY(ctr
->subkeys_hash
);
104 TALLOC_FREE(ctr
->subkeys
);
106 ctr
->num_subkeys
= 0;
112 WERROR
regsubkey_ctr_set_seqnum(struct regsubkey_ctr
*ctr
, int seqnum
)
115 return WERR_INVALID_PARAM
;
118 ctr
->seqnum
= seqnum
;
123 int regsubkey_ctr_get_seqnum(struct regsubkey_ctr
*ctr
)
132 static WERROR
regsubkey_ctr_hash_keyname(struct regsubkey_ctr
*ctr
,
138 werr
= ntstatus_to_werror(dbwrap_store_bystring_upper(ctr
->subkeys_hash
,
140 make_tdb_data((uint8_t *)&idx
,
143 if (!W_ERROR_IS_OK(werr
)) {
144 DEBUG(1, ("error hashing new key '%s' in container: %s\n",
145 keyname
, win_errstr(werr
)));
151 static WERROR
regsubkey_ctr_unhash_keyname(struct regsubkey_ctr
*ctr
,
156 werr
= ntstatus_to_werror(dbwrap_delete_bystring_upper(ctr
->subkeys_hash
,
158 if (!W_ERROR_IS_OK(werr
)) {
159 DEBUG(1, ("error unhashing key '%s' in container: %s\n",
160 keyname
, win_errstr(werr
)));
166 static WERROR
regsubkey_ctr_index_for_keyname(struct regsubkey_ctr
*ctr
,
172 if ((ctr
== NULL
) || (keyname
== NULL
)) {
173 return WERR_INVALID_PARAM
;
176 data
= dbwrap_fetch_bystring_upper(ctr
->subkeys_hash
, ctr
, keyname
);
177 if (data
.dptr
== NULL
) {
178 return WERR_NOT_FOUND
;
181 if (data
.dsize
!= sizeof(*idx
)) {
182 talloc_free(data
.dptr
);
183 return WERR_INVALID_DATATYPE
;
187 *idx
= *(uint32_t *)data
.dptr
;
190 talloc_free(data
.dptr
);
194 /***********************************************************************
195 Add a new key to the array
196 **********************************************************************/
198 WERROR
regsubkey_ctr_addkey( struct regsubkey_ctr
*ctr
, const char *keyname
)
207 /* make sure the keyname is not already there */
209 if ( regsubkey_ctr_key_exists( ctr
, keyname
) ) {
213 if (!(newkeys
= TALLOC_REALLOC_ARRAY(ctr
, ctr
->subkeys
, char *,
214 ctr
->num_subkeys
+1))) {
218 ctr
->subkeys
= newkeys
;
220 if (!(ctr
->subkeys
[ctr
->num_subkeys
] = talloc_strdup(ctr
->subkeys
,
223 * Don't shrink the new array again, this wastes a pointer
228 werr
= regsubkey_ctr_hash_keyname(ctr
, keyname
, ctr
->num_subkeys
);
229 W_ERROR_NOT_OK_RETURN(werr
);
236 /***********************************************************************
237 Delete a key from the array
238 **********************************************************************/
240 WERROR
regsubkey_ctr_delkey( struct regsubkey_ctr
*ctr
, const char *keyname
)
245 if (keyname
== NULL
) {
246 return WERR_INVALID_PARAM
;
249 /* make sure the keyname is actually already there */
251 werr
= regsubkey_ctr_index_for_keyname(ctr
, keyname
, &idx
);
252 W_ERROR_NOT_OK_RETURN(werr
);
254 werr
= regsubkey_ctr_unhash_keyname(ctr
, keyname
);
255 W_ERROR_NOT_OK_RETURN(werr
);
257 /* update if we have any keys left */
259 if (idx
< ctr
->num_subkeys
) {
260 memmove(&ctr
->subkeys
[idx
], &ctr
->subkeys
[idx
+1],
261 sizeof(char *) * (ctr
->num_subkeys
- idx
));
263 /* we have to re-hash rest of the array... :-( */
264 for (j
= idx
; j
< ctr
->num_subkeys
; j
++) {
265 werr
= regsubkey_ctr_hash_keyname(ctr
, ctr
->subkeys
[j
], j
);
266 W_ERROR_NOT_OK_RETURN(werr
);
273 /***********************************************************************
274 Check for the existance of a key
275 **********************************************************************/
277 bool regsubkey_ctr_key_exists( struct regsubkey_ctr
*ctr
, const char *keyname
)
285 werr
= regsubkey_ctr_index_for_keyname(ctr
, keyname
, NULL
);
286 if (!W_ERROR_IS_OK(werr
)) {
293 /***********************************************************************
294 How many keys does the container hold ?
295 **********************************************************************/
297 int regsubkey_ctr_numkeys( struct regsubkey_ctr
*ctr
)
299 return ctr
->num_subkeys
;
302 /***********************************************************************
303 Retreive a specific key string
304 **********************************************************************/
306 char* regsubkey_ctr_specific_key( struct regsubkey_ctr
*ctr
, uint32_t key_index
)
308 if ( ! (key_index
< ctr
->num_subkeys
) )
311 return ctr
->subkeys
[key_index
];
315 * Utility functions for struct regval_ctr
319 * allocate a regval_ctr structure.
321 WERROR
regval_ctr_init(TALLOC_CTX
*mem_ctx
, struct regval_ctr
**ctr
)
324 return WERR_INVALID_PARAM
;
327 *ctr
= talloc_zero(mem_ctx
, struct regval_ctr
);
335 /***********************************************************************
336 How many keys does the container hold ?
337 **********************************************************************/
339 int regval_ctr_numvals(struct regval_ctr
*ctr
)
341 return ctr
->num_values
;
344 /***********************************************************************
345 allocate memory for and duplicate a struct regval_blob.
346 This is malloc'd memory so the caller should free it when done
347 **********************************************************************/
349 struct regval_blob
* dup_registry_value(struct regval_blob
*val
)
351 struct regval_blob
*copy
= NULL
;
356 if ( !(copy
= SMB_MALLOC_P( struct regval_blob
)) ) {
357 DEBUG(0,("dup_registry_value: malloc() failed!\n"));
361 /* copy all the non-pointer initial data */
363 memcpy( copy
, val
, sizeof(struct regval_blob
) );
368 if ( val
->data_p
&& val
->size
)
370 if ( !(copy
->data_p
= (uint8_t *)memdup( val
->data_p
,
372 DEBUG(0,("dup_registry_value: memdup() failed for [%d] "
373 "bytes!\n", val
->size
));
377 copy
->size
= val
->size
;
383 /**********************************************************************
384 free the memory allocated to a struct regval_blob
385 *********************************************************************/
387 void free_registry_value(struct regval_blob
*val
)
392 SAFE_FREE( val
->data_p
);
398 /**********************************************************************
399 *********************************************************************/
401 uint8_t* regval_data_p(struct regval_blob
*val
)
406 /**********************************************************************
407 *********************************************************************/
409 uint32_t regval_size(struct regval_blob
*val
)
414 /**********************************************************************
415 *********************************************************************/
417 char* regval_name(struct regval_blob
*val
)
419 return val
->valuename
;
422 /**********************************************************************
423 *********************************************************************/
425 uint32_t regval_type(struct regval_blob
*val
)
430 /***********************************************************************
431 Retreive a pointer to a specific value. Caller shoud dup the structure
432 since this memory will go away when the ctr is free()'d
433 **********************************************************************/
435 struct regval_blob
*regval_ctr_specific_value(struct regval_ctr
*ctr
,
438 if ( !(idx
< ctr
->num_values
) )
441 return ctr
->values
[idx
];
444 /***********************************************************************
445 Check for the existance of a value
446 **********************************************************************/
448 bool regval_ctr_key_exists(struct regval_ctr
*ctr
, const char *value
)
452 for ( i
=0; i
<ctr
->num_values
; i
++ ) {
453 if ( strequal( ctr
->values
[i
]->valuename
, value
) )
460 /***********************************************************************
461 * compose a struct regval_blob from input data
462 **********************************************************************/
464 struct regval_blob
*regval_compose(TALLOC_CTX
*ctx
, const char *name
,
466 const uint8_t *data_p
, size_t size
)
468 struct regval_blob
*regval
= TALLOC_P(ctx
, struct regval_blob
);
470 if (regval
== NULL
) {
474 fstrcpy(regval
->valuename
, name
);
477 regval
->data_p
= (uint8_t *)TALLOC_MEMDUP(regval
, data_p
, size
);
478 if (!regval
->data_p
) {
483 regval
->data_p
= NULL
;
490 /***********************************************************************
491 Add a new registry value to the array
492 **********************************************************************/
494 int regval_ctr_addvalue(struct regval_ctr
*ctr
, const char *name
, uint32_t type
,
495 const uint8_t *data_p
, size_t size
)
498 return ctr
->num_values
;
500 /* Delete the current value (if it exists) and add the new one */
502 regval_ctr_delvalue( ctr
, name
);
504 /* allocate a slot in the array of pointers */
506 if ( ctr
->num_values
== 0 ) {
507 ctr
->values
= TALLOC_P( ctr
, struct regval_blob
*);
509 ctr
->values
= TALLOC_REALLOC_ARRAY(ctr
, ctr
->values
,
510 struct regval_blob
*,
519 /* allocate a new value and store the pointer in the arrya */
521 ctr
->values
[ctr
->num_values
] = regval_compose(ctr
, name
, type
, data_p
,
523 if (ctr
->values
[ctr
->num_values
] == NULL
) {
529 return ctr
->num_values
;
532 /***********************************************************************
533 Add a new registry SZ value to the array
534 **********************************************************************/
536 int regval_ctr_addvalue_sz(struct regval_ctr
*ctr
, const char *name
, const char *data
)
540 if (!push_reg_sz(ctr
, &blob
, data
)) {
544 return regval_ctr_addvalue(ctr
, name
, REG_SZ
,
545 (const uint8_t *)blob
.data
,
549 /***********************************************************************
550 Add a new registry MULTI_SZ value to the array
551 **********************************************************************/
553 int regval_ctr_addvalue_multi_sz(struct regval_ctr
*ctr
, const char *name
, const char **data
)
557 if (!push_reg_multi_sz(ctr
, &blob
, data
)) {
561 return regval_ctr_addvalue(ctr
, name
, REG_MULTI_SZ
,
562 (const uint8_t *)blob
.data
,
566 /***********************************************************************
567 Add a new registry value to the array
568 **********************************************************************/
570 int regval_ctr_copyvalue(struct regval_ctr
*ctr
, struct regval_blob
*val
)
573 regval_ctr_addvalue(ctr
, val
->valuename
, val
->type
,
574 (uint8_t *)val
->data_p
, val
->size
);
577 return ctr
->num_values
;
580 /***********************************************************************
581 Delete a single value from the registry container.
582 No need to free memory since it is talloc'd.
583 **********************************************************************/
585 int regval_ctr_delvalue(struct regval_ctr
*ctr
, const char *name
)
589 for ( i
=0; i
<ctr
->num_values
; i
++ ) {
590 if ( strequal( ctr
->values
[i
]->valuename
, name
) )
594 /* just return if we don't find it */
596 if ( i
== ctr
->num_values
)
597 return ctr
->num_values
;
599 /* If 'i' was not the last element, just shift everything down one */
601 if ( i
< ctr
->num_values
)
602 memmove(&ctr
->values
[i
], &ctr
->values
[i
+1],
603 sizeof(struct regval_blob
*)*(ctr
->num_values
-i
));
605 return ctr
->num_values
;
608 /***********************************************************************
609 Retrieve single value from the registry container.
610 No need to free memory since it is talloc'd.
611 **********************************************************************/
613 struct regval_blob
* regval_ctr_getvalue(struct regval_ctr
*ctr
,
618 /* search for the value */
620 for ( i
=0; i
<ctr
->num_values
; i
++ ) {
621 if ( strequal( ctr
->values
[i
]->valuename
, name
) )
622 return ctr
->values
[i
];
628 int regval_ctr_get_seqnum(struct regval_ctr
*ctr
)
637 WERROR
regval_ctr_set_seqnum(struct regval_ctr
*ctr
, int seqnum
)
640 return WERR_INVALID_PARAM
;
643 ctr
->seqnum
= seqnum
;
648 /***********************************************************************
649 return the data_p as a uint32_t
650 **********************************************************************/
652 uint32_t regval_dword(struct regval_blob
*val
)
656 data
= IVAL( regval_data_p(val
), 0 );
661 /***********************************************************************
662 return the data_p as a character string
663 **********************************************************************/
665 const char *regval_sz(struct regval_blob
*val
)
667 const char *data
= NULL
;
668 DATA_BLOB blob
= data_blob_const(regval_data_p(val
), regval_size(val
));
670 pull_reg_sz(talloc_tos(), &blob
, &data
);