2007-09-07 17:54:56 +04:00
/*
2006-11-30 10:38:40 +03:00
* Unix SMB / CIFS implementation .
* Virtual Windows Registry Layer
* Copyright ( C ) Volker Lendecke 2006
2007-09-05 20:01:27 +04:00
* Copyright ( C ) Michael Adam 2007
2006-11-30 10:38:40 +03: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
2006-11-30 10:38:40 +03:00
* ( at your option ) any later version .
2007-09-07 17:54:56 +04:00
*
2006-11-30 10:38:40 +03: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-07 17:54:56 +04:00
*
2006-11-30 10:38:40 +03: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/>.
2006-11-30 10:38:40 +03:00
*/
# include "includes.h"
2009-10-02 02:17:06 +04:00
# include "registry.h"
2011-03-25 13:56:52 +03:00
# include "lib/privileges.h"
2006-11-30 10:38:40 +03:00
# undef DBGC_CLASS
2007-09-29 03:05:52 +04:00
# define DBGC_CLASS DBGC_REGISTRY
2006-11-30 10:38:40 +03:00
2009-03-24 01:14:45 +03:00
extern struct registry_ops regdb_ops ; /* these are the default */
2006-11-30 10:38:40 +03:00
2009-02-24 17:19:18 +03:00
static int smbconf_fetch_keys ( const char * key , struct regsubkey_ctr * subkey_ctr )
2006-11-30 10:38:40 +03:00
{
return regdb_ops . fetch_subkeys ( key , subkey_ctr ) ;
}
2009-02-24 17:19:18 +03:00
static bool smbconf_store_keys ( const char * key , struct regsubkey_ctr * subkeys )
2006-11-30 10:38:40 +03:00
{
return regdb_ops . store_subkeys ( key , subkeys ) ;
}
2009-02-26 00:04:58 +03:00
static WERROR smbconf_create_subkey ( const char * key , const char * subkey )
{
return regdb_ops . create_subkey ( key , subkey ) ;
}
2011-08-01 17:27:46 +04:00
static WERROR smbconf_delete_subkey ( const char * key , const char * subkey , bool lazy )
2009-02-26 04:56:50 +03:00
{
2011-08-01 17:27:46 +04:00
return regdb_ops . delete_subkey ( key , subkey , lazy ) ;
2009-02-26 04:56:50 +03:00
}
2009-03-23 20:14:17 +03:00
static int smbconf_fetch_values ( const char * key , struct regval_ctr * val )
2006-11-30 10:38:40 +03:00
{
return regdb_ops . fetch_values ( key , val ) ;
}
2009-03-23 20:14:17 +03:00
static bool smbconf_store_values ( const char * key , struct regval_ctr * val )
2006-11-30 10:38:40 +03:00
{
2008-04-03 17:29:25 +04:00
return regdb_ops . store_values ( key , val ) ;
2006-11-30 10:38:40 +03:00
}
2015-04-14 17:50:28 +03:00
static bool smbconf_reg_access_check ( const char * keyname , uint32_t requested ,
uint32_t * granted ,
2010-08-26 14:04:11 +04:00
const struct security_token * token )
2006-11-30 10:38:40 +03:00
{
2010-10-23 02:58:40 +04:00
if ( ! security_token_has_privilege ( token , SEC_PRIV_DISK_OPERATOR ) ) {
2006-11-30 10:38:40 +03:00
return False ;
}
* granted = REG_KEY_ALL ;
return True ;
}
static WERROR smbconf_get_secdesc ( TALLOC_CTX * mem_ctx , const char * key ,
struct security_descriptor * * psecdesc )
{
return regdb_ops . get_secdesc ( mem_ctx , key , psecdesc ) ;
}
static WERROR smbconf_set_secdesc ( const char * key ,
struct security_descriptor * secdesc )
{
return regdb_ops . set_secdesc ( key , secdesc ) ;
}
2012-05-05 04:12:25 +04:00
static bool smbconf_subkeys_need_update ( struct regsubkey_ctr * subkeys )
{
return regdb_ops . subkeys_need_update ( subkeys ) ;
}
static bool smbconf_values_need_update ( struct regval_ctr * values )
{
return regdb_ops . values_need_update ( values ) ;
}
2006-11-30 10:38:40 +03:00
2007-09-07 17:54:56 +04:00
/*
2006-11-30 10:38:40 +03:00
* Table of function pointers for accessing smb . conf data
*/
2007-09-07 17:54:56 +04:00
2009-03-24 01:14:45 +03:00
struct registry_ops smbconf_reg_ops = {
2008-01-20 01:01:58 +03:00
. fetch_subkeys = smbconf_fetch_keys ,
. fetch_values = smbconf_fetch_values ,
. store_subkeys = smbconf_store_keys ,
. store_values = smbconf_store_values ,
2009-02-26 00:04:58 +03:00
. create_subkey = smbconf_create_subkey ,
2009-02-26 04:56:50 +03:00
. delete_subkey = smbconf_delete_subkey ,
2008-01-20 01:01:58 +03:00
. reg_access_check = smbconf_reg_access_check ,
. get_secdesc = smbconf_get_secdesc ,
. set_secdesc = smbconf_set_secdesc ,
2012-05-05 04:12:25 +04:00
. subkeys_need_update = smbconf_subkeys_need_update ,
. values_need_update = smbconf_values_need_update ,
2006-11-30 10:38:40 +03:00
} ;