2007-09-14 02:41:04 +04:00
/*
2002-08-30 15:03:44 +04:00
* Unix SMB / CIFS implementation .
2005-05-23 20:25:31 +04:00
* Virtual Windows Registry Layer
* Copyright ( C ) Gerald Carter 2002 - 2005
2002-08-30 15:03:44 +04:00
*
* 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
2007-07-09 23:25:36 +04:00
* the Free Software Foundation ; either version 3 of the License , or
2002-08-30 15:03:44 +04:00
* ( at your option ) any later version .
2007-09-14 02:41:04 +04:00
*
2002-08-30 15:03:44 +04:00
* 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 .
2007-09-14 02:41:04 +04:00
*
2002-08-30 15:03:44 +04:00
* You should have received a copy of the GNU General Public License
2007-07-10 09:23:25 +04:00
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
2002-08-30 15:03:44 +04:00
*/
/* Implementation of registry frontend view functions. */
# include "includes.h"
# undef DBGC_CLASS
2007-09-29 03:05:52 +04:00
# define DBGC_CLASS DBGC_REGISTRY
2002-08-30 15:03:44 +04:00
2005-08-29 18:55:40 +04:00
/**********************************************************************
2002-08-30 15:03:44 +04:00
2005-08-29 18:55:40 +04:00
Note that the REGSUB_CTR and REGVAL_CTR objects * must * be talloc ( ) ' d
2007-09-14 02:41:04 +04:00
since the methods use the object pointer as the talloc context for
2005-08-29 18:55:40 +04:00
internal private data .
2002-08-30 15:03:44 +04:00
2005-08-29 18:55:40 +04:00
There is no longer a regXXX_ctr_intit ( ) and regXXX_ctr_destroy ( )
2007-09-14 02:41:04 +04:00
pair of functions . Simply TALLOC_ZERO_P ( ) and TALLOC_FREE ( ) the
2005-08-29 18:55:40 +04:00
object .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-08-30 15:03:44 +04:00
/***********************************************************************
Add a new key to the array
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2006-11-18 20:46:32 +03:00
WERROR regsubkey_ctr_addkey ( REGSUBKEY_CTR * ctr , const char * keyname )
2002-08-30 15:03:44 +04:00
{
2006-11-18 20:46:32 +03:00
char * * newkeys ;
if ( ! keyname ) {
return WERR_OK ;
}
2002-08-30 15:03:44 +04:00
2005-05-23 20:25:31 +04:00
/* make sure the keyname is not already there */
2006-11-18 20:46:32 +03:00
if ( regsubkey_ctr_key_exists ( ctr , keyname ) ) {
return WERR_OK ;
2006-03-30 02:45:52 +04:00
}
2006-11-18 20:46:32 +03:00
if ( ! ( newkeys = TALLOC_REALLOC_ARRAY ( ctr , ctr - > subkeys , char * ,
ctr - > num_subkeys + 1 ) ) ) {
return WERR_NOMEM ;
2002-08-30 15:03:44 +04:00
}
2005-05-23 20:25:31 +04:00
2006-11-18 20:46:32 +03:00
ctr - > subkeys = newkeys ;
if ( ! ( ctr - > subkeys [ ctr - > num_subkeys ] = talloc_strdup ( ctr - > subkeys ,
keyname ) ) ) {
/*
* Don ' t shrink the new array again , this wastes a pointer
*/
return WERR_NOMEM ;
}
2005-05-23 20:25:31 +04:00
ctr - > num_subkeys + + ;
2006-11-18 20:46:32 +03:00
return WERR_OK ;
2002-08-30 15:03:44 +04:00
}
2007-09-14 02:41:04 +04:00
2005-06-17 22:57:37 +04:00
/***********************************************************************
2006-12-01 22:55:29 +03:00
Delete a key from the array
2005-06-17 22:57:37 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int regsubkey_ctr_delkey ( REGSUBKEY_CTR * ctr , const char * keyname )
{
int i ;
if ( ! keyname )
return ctr - > num_subkeys ;
/* make sure the keyname is actually already there */
for ( i = 0 ; i < ctr - > num_subkeys ; i + + ) {
if ( strequal ( ctr - > subkeys [ i ] , keyname ) )
break ;
}
2007-09-14 02:41:04 +04:00
2005-06-17 22:57:37 +04:00
if ( i = = ctr - > num_subkeys )
return ctr - > num_subkeys ;
/* update if we have any keys left */
ctr - > num_subkeys - - ;
2005-06-29 20:35:32 +04:00
if ( i < ctr - > num_subkeys )
2007-09-14 02:41:04 +04:00
memmove ( & ctr - > subkeys [ i ] , & ctr - > subkeys [ i + 1 ] ,
sizeof ( char * ) * ( ctr - > num_subkeys - i ) ) ;
2005-06-17 22:57:37 +04:00
return ctr - > num_subkeys ;
}
/***********************************************************************
Check for the existance of a key
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool regsubkey_ctr_key_exists ( REGSUBKEY_CTR * ctr , const char * keyname )
2005-06-17 22:57:37 +04:00
{
int i ;
2007-09-14 02:41:04 +04:00
2006-08-28 09:35:27 +04:00
if ( ! ctr - > subkeys ) {
return False ;
}
2005-06-17 22:57:37 +04:00
for ( i = 0 ; i < ctr - > num_subkeys ; i + + ) {
if ( strequal ( ctr - > subkeys [ i ] , keyname ) )
return True ;
}
2007-09-14 02:41:04 +04:00
2005-06-17 22:57:37 +04:00
return False ;
}
2002-08-30 15:03:44 +04:00
/***********************************************************************
How many keys does the container hold ?
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int regsubkey_ctr_numkeys ( REGSUBKEY_CTR * ctr )
{
return ctr - > num_subkeys ;
}
/***********************************************************************
Retreive a specific key string
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
char * regsubkey_ctr_specific_key ( REGSUBKEY_CTR * ctr , uint32 key_index )
{
if ( ! ( key_index < ctr - > num_subkeys ) )
return NULL ;
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
return ctr - > subkeys [ key_index ] ;
}
/*
* Utility functions for REGVAL_CTR
*/
/***********************************************************************
How many keys does the container hold ?
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int regval_ctr_numvals ( REGVAL_CTR * ctr )
{
return ctr - > num_values ;
}
/***********************************************************************
allocate memory for and duplicate a REGISTRY_VALUE .
This is malloc ' d memory so the caller should free it when done
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
REGISTRY_VALUE * dup_registry_value ( REGISTRY_VALUE * val )
{
REGISTRY_VALUE * copy = NULL ;
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
if ( ! val )
return NULL ;
2007-09-14 02:41:04 +04:00
2004-12-07 21:25:53 +03:00
if ( ! ( copy = SMB_MALLOC_P ( REGISTRY_VALUE ) ) ) {
2002-08-30 15:03:44 +04:00
DEBUG ( 0 , ( " dup_registry_value: malloc() failed! \n " ) ) ;
return NULL ;
}
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
/* copy all the non-pointer initial data */
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
memcpy ( copy , val , sizeof ( REGISTRY_VALUE ) ) ;
2007-09-14 02:41:04 +04:00
2005-08-05 04:58:31 +04:00
copy - > size = 0 ;
copy - > data_p = NULL ;
2007-09-14 02:41:04 +04:00
if ( val - > data_p & & val - > size )
2002-08-30 15:03:44 +04:00
{
2006-07-31 07:53:39 +04:00
if ( ! ( copy - > data_p = ( uint8 * ) memdup ( val - > data_p ,
val - > size ) ) ) {
2007-09-14 02:41:04 +04:00
DEBUG ( 0 , ( " dup_registry_value: memdup() failed for [%d] "
" bytes! \n " , val - > size ) ) ;
2002-08-30 15:03:44 +04:00
SAFE_FREE ( copy ) ;
2006-08-28 06:29:36 +04:00
return NULL ;
2002-08-30 15:03:44 +04:00
}
2005-08-05 04:58:31 +04:00
copy - > size = val - > size ;
2002-08-30 15:03:44 +04:00
}
2007-09-14 02:41:04 +04:00
return copy ;
2002-08-30 15:03:44 +04:00
}
/**********************************************************************
2007-09-14 02:41:04 +04:00
free the memory allocated to a REGISTRY_VALUE
2002-08-30 15:03:44 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
void free_registry_value ( REGISTRY_VALUE * val )
{
if ( ! val )
return ;
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
SAFE_FREE ( val - > data_p ) ;
SAFE_FREE ( val ) ;
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
return ;
}
/**********************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
uint8 * regval_data_p ( REGISTRY_VALUE * val )
{
return val - > data_p ;
}
/**********************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-06-29 20:35:32 +04:00
uint32 regval_size ( REGISTRY_VALUE * val )
2002-08-30 15:03:44 +04:00
{
return val - > size ;
}
/**********************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
char * regval_name ( REGISTRY_VALUE * val )
{
return val - > valuename ;
}
/**********************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
uint32 regval_type ( REGISTRY_VALUE * val )
{
return val - > type ;
}
/***********************************************************************
Retreive a pointer to a specific value . Caller shoud dup the structure
2005-09-30 21:13:37 +04:00
since this memory will go away when the ctr is free ( ) ' d
2002-08-30 15:03:44 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
REGISTRY_VALUE * regval_ctr_specific_value ( REGVAL_CTR * ctr , uint32 idx )
{
if ( ! ( idx < ctr - > num_values ) )
return NULL ;
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
return ctr - > values [ idx ] ;
}
2005-06-25 21:31:40 +04:00
/***********************************************************************
Check for the existance of a value
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool regval_ctr_key_exists ( REGVAL_CTR * ctr , const char * value )
2005-06-25 21:31:40 +04:00
{
int i ;
2007-09-14 02:41:04 +04:00
2005-06-25 21:31:40 +04:00
for ( i = 0 ; i < ctr - > num_values ; i + + ) {
if ( strequal ( ctr - > values [ i ] - > valuename , value ) )
return True ;
}
2007-09-14 02:41:04 +04:00
2005-06-25 21:31:40 +04:00
return False ;
}
2007-09-07 18:41:49 +04:00
/***********************************************************************
* compose a REGISTRY_VALUE from input data
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
REGISTRY_VALUE * regval_compose ( TALLOC_CTX * ctx , const char * name , uint16 type ,
const char * data_p , size_t size )
{
REGISTRY_VALUE * regval = TALLOC_P ( ctx , REGISTRY_VALUE ) ;
if ( regval = = NULL ) {
return NULL ;
}
fstrcpy ( regval - > valuename , name ) ;
regval - > type = type ;
if ( size ) {
regval - > data_p = ( uint8 * ) TALLOC_MEMDUP ( regval , data_p , size ) ;
if ( ! regval - > data_p ) {
TALLOC_FREE ( regval ) ;
return NULL ;
}
} else {
regval - > data_p = NULL ;
}
regval - > size = size ;
return regval ;
}
2002-08-30 15:03:44 +04:00
/***********************************************************************
Add a new registry value to the array
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-09-14 02:41:04 +04:00
int regval_ctr_addvalue ( REGVAL_CTR * ctr , const char * name , uint16 type ,
2002-12-05 22:12:19 +03:00
const char * data_p , size_t size )
2002-08-30 15:03:44 +04:00
{
2005-05-23 20:25:31 +04:00
if ( ! name )
return ctr - > num_values ;
2005-06-25 21:31:40 +04:00
/* Delete the current value (if it exists) and add the new one */
regval_ctr_delvalue ( ctr , name ) ;
2005-05-23 20:25:31 +04:00
/* allocate a slot in the array of pointers */
2007-09-14 02:41:04 +04:00
2006-03-30 02:51:23 +04:00
if ( ctr - > num_values = = 0 ) {
2005-08-29 18:55:40 +04:00
ctr - > values = TALLOC_P ( ctr , REGISTRY_VALUE * ) ;
2006-03-30 02:51:23 +04:00
} else {
2007-09-14 02:41:04 +04:00
ctr - > values = TALLOC_REALLOC_ARRAY ( ctr , ctr - > values ,
REGISTRY_VALUE * ,
ctr - > num_values + 1 ) ;
2006-03-30 02:51:23 +04:00
}
if ( ! ctr - > values ) {
ctr - > num_values = 0 ;
return 0 ;
2005-05-23 20:25:31 +04:00
}
2002-08-30 15:03:44 +04:00
2005-05-23 20:25:31 +04:00
/* allocate a new value and store the pointer in the arrya */
2007-09-14 02:41:04 +04:00
2007-09-07 18:54:30 +04:00
ctr - > values [ ctr - > num_values ] = regval_compose ( ctr , name , type , data_p ,
size ) ;
if ( ctr - > values [ ctr - > num_values ] = = NULL ) {
2006-03-30 02:51:23 +04:00
ctr - > num_values = 0 ;
return 0 ;
}
2005-05-23 20:25:31 +04:00
ctr - > num_values + + ;
2002-08-30 15:03:44 +04:00
return ctr - > num_values ;
}
/***********************************************************************
Add a new registry value to the array
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int regval_ctr_copyvalue ( REGVAL_CTR * ctr , REGISTRY_VALUE * val )
{
2006-03-30 02:51:23 +04:00
if ( val ) {
2007-09-14 02:36:10 +04:00
regval_ctr_addvalue ( ctr , val - > valuename , val - > type ,
( char * ) val - > data_p , val - > size ) ;
2002-08-30 15:03:44 +04:00
}
return ctr - > num_values ;
}
/***********************************************************************
Delete a single value from the registry container .
No need to free memory since it is talloc ' d .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-12-05 22:12:19 +03:00
int regval_ctr_delvalue ( REGVAL_CTR * ctr , const char * name )
2002-08-30 15:03:44 +04:00
{
int i ;
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
for ( i = 0 ; i < ctr - > num_values ; i + + ) {
2005-06-25 21:31:40 +04:00
if ( strequal ( ctr - > values [ i ] - > valuename , name ) )
2002-08-30 15:03:44 +04:00
break ;
}
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
/* just return if we don't find it */
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
if ( i = = ctr - > num_values )
return ctr - > num_values ;
2007-09-14 02:41:04 +04:00
2005-06-29 20:35:32 +04:00
/* If 'i' was not the last element, just shift everything down one */
2002-08-30 15:03:44 +04:00
ctr - > num_values - - ;
2005-06-29 20:35:32 +04:00
if ( i < ctr - > num_values )
2007-09-14 02:41:04 +04:00
memmove ( & ctr - > values [ i ] , & ctr - > values [ i + 1 ] ,
sizeof ( REGISTRY_VALUE * ) * ( ctr - > num_values - i ) ) ;
2002-08-30 15:03:44 +04:00
return ctr - > num_values ;
}
/***********************************************************************
2005-06-17 22:57:37 +04:00
Retrieve single value from the registry container .
2002-08-30 15:03:44 +04:00
No need to free memory since it is talloc ' d .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-01-03 11:28:12 +03:00
REGISTRY_VALUE * regval_ctr_getvalue ( REGVAL_CTR * ctr , const char * name )
2002-08-30 15:03:44 +04:00
{
int i ;
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
/* search for the value */
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
for ( i = 0 ; i < ctr - > num_values ; i + + ) {
if ( strequal ( ctr - > values [ i ] - > valuename , name ) )
return ctr - > values [ i ] ;
}
2007-09-14 02:41:04 +04:00
2002-08-30 15:03:44 +04:00
return NULL ;
}
2005-09-30 21:13:37 +04:00
/***********************************************************************
return the data_p as a uint32
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
uint32 regval_dword ( REGISTRY_VALUE * val )
{
uint32 data ;
2007-09-14 02:41:04 +04:00
2005-09-30 21:13:37 +04:00
data = IVAL ( regval_data_p ( val ) , 0 ) ;
2007-09-14 02:41:04 +04:00
2005-09-30 21:13:37 +04:00
return data ;
}
/***********************************************************************
return the data_p as a character string
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-11-27 04:24:56 +03:00
char * regval_sz ( REGISTRY_VALUE * val )
2005-09-30 21:13:37 +04:00
{
2007-11-27 04:24:56 +03:00
char * data = NULL ;
2005-09-30 21:13:37 +04:00
2007-11-27 04:24:56 +03:00
rpcstr_pull_talloc ( talloc_tos ( ) , & data ,
regval_data_p ( val ) , regval_size ( val ) , 0 ) ;
return data ;
2005-09-30 21:13:37 +04:00
}