2007-06-04 13:53:19 +04:00
/*
ctdb tunables code
Copyright ( C ) Andrew Tridgell 2007
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-10 09:29:31 +04:00
the Free Software Foundation ; either version 3 of the License , or
2007-06-04 13:53:19 +04:00
( at your option ) any later version .
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 .
You should have received a copy of the GNU General Public License
2007-07-10 09:29:31 +04:00
along with this program ; if not , see < http : //www.gnu.org/licenses/>.
2007-06-04 13:53:19 +04:00
*/
# include "includes.h"
# include "../include/ctdb_private.h"
static const struct {
const char * name ;
2007-06-04 14:22:44 +04:00
uint32_t default_v ;
size_t offset ;
2007-06-04 13:53:19 +04:00
} tunable_map [ ] = {
2007-06-07 09:18:55 +04:00
{ " MaxRedirectCount " , 3 , offsetof ( struct ctdb_tunable , max_redirect_count ) } ,
{ " SeqnumFrequency " , 1 , offsetof ( struct ctdb_tunable , seqnum_frequency ) } ,
{ " ControlTimeout " , 60 , offsetof ( struct ctdb_tunable , control_timeout ) } ,
{ " TraverseTimeout " , 20 , offsetof ( struct ctdb_tunable , traverse_timeout ) } ,
2008-01-06 04:36:58 +03:00
{ " KeepaliveInterval " , 5 , offsetof ( struct ctdb_tunable , keepalive_interval ) } ,
2007-06-11 16:27:23 +04:00
{ " KeepaliveLimit " , 5 , offsetof ( struct ctdb_tunable , keepalive_limit ) } ,
2007-06-07 09:18:55 +04:00
{ " MaxLACount " , 7 , offsetof ( struct ctdb_tunable , max_lacount ) } ,
2008-01-06 04:36:58 +03:00
{ " RecoverTimeout " , 30 , offsetof ( struct ctdb_tunable , recover_timeout ) } ,
2007-06-07 09:18:55 +04:00
{ " RecoverInterval " , 1 , offsetof ( struct ctdb_tunable , recover_interval ) } ,
{ " ElectionTimeout " , 3 , offsetof ( struct ctdb_tunable , election_timeout ) } ,
{ " TakeoverTimeout " , 5 , offsetof ( struct ctdb_tunable , takeover_timeout ) } ,
{ " MonitorInterval " , 15 , offsetof ( struct ctdb_tunable , monitor_interval ) } ,
2007-07-20 09:05:55 +04:00
{ " TickleUpdateInterval " , 20 , offsetof ( struct ctdb_tunable , tickle_update_interval ) } ,
2007-06-07 09:18:55 +04:00
{ " EventScriptTimeout " , 20 , offsetof ( struct ctdb_tunable , script_timeout ) } ,
{ " RecoveryGracePeriod " , 60 , offsetof ( struct ctdb_tunable , recovery_grace_period ) } ,
{ " RecoveryBanPeriod " , 300 , offsetof ( struct ctdb_tunable , recovery_ban_period ) } ,
2007-06-17 17:31:44 +04:00
{ " DatabaseHashSize " , 10000 , offsetof ( struct ctdb_tunable , database_hash_size ) } ,
2008-01-05 01:36:53 +03:00
{ " DatabaseMaxDead " , 5 , offsetof ( struct ctdb_tunable , database_max_dead ) } ,
2007-07-04 02:36:59 +04:00
{ " RerecoveryTimeout " , 10 , offsetof ( struct ctdb_tunable , rerecovery_timeout ) } ,
2007-10-15 07:22:58 +04:00
{ " EnableBans " , 1 , offsetof ( struct ctdb_tunable , enable_bans ) } ,
2007-12-04 07:18:27 +03:00
{ " DeterministicIPs " , 1 , offsetof ( struct ctdb_tunable , deterministic_public_ips ) } ,
2007-06-04 13:53:19 +04:00
} ;
2007-06-04 14:22:44 +04:00
/*
set all tunables to defaults
*/
void ctdb_tunables_set_defaults ( struct ctdb_context * ctdb )
{
int i ;
for ( i = 0 ; i < ARRAY_SIZE ( tunable_map ) ; i + + ) {
* ( uint32_t * ) ( tunable_map [ i ] . offset + ( uint8_t * ) & ctdb - > tunable ) = tunable_map [ i ] . default_v ;
}
}
2007-06-04 13:53:19 +04:00
/*
get a tunable
*/
int32_t ctdb_control_get_tunable ( struct ctdb_context * ctdb , TDB_DATA indata ,
TDB_DATA * outdata )
{
struct ctdb_control_get_tunable * t =
( struct ctdb_control_get_tunable * ) indata . dptr ;
char * name ;
uint32_t val ;
int i ;
if ( indata . dsize < sizeof ( * t ) | |
t - > length > indata . dsize - offsetof ( struct ctdb_control_get_tunable , name ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Bad indata in ctdb_control_get_tunable \n " ) ) ;
2007-06-04 13:53:19 +04:00
return - 1 ;
}
name = talloc_strndup ( ctdb , ( char * ) t - > name , t - > length ) ;
CTDB_NO_MEMORY ( ctdb , name ) ;
for ( i = 0 ; i < ARRAY_SIZE ( tunable_map ) ; i + + ) {
if ( strcasecmp ( name , tunable_map [ i ] . name ) = = 0 ) break ;
}
talloc_free ( name ) ;
if ( i = = ARRAY_SIZE ( tunable_map ) ) {
return - 1 ;
}
val = * ( uint32_t * ) ( tunable_map [ i ] . offset + ( uint8_t * ) & ctdb - > tunable ) ;
outdata - > dptr = ( uint8_t * ) talloc ( outdata , uint32_t ) ;
CTDB_NO_MEMORY ( ctdb , outdata - > dptr ) ;
* ( uint32_t * ) outdata - > dptr = val ;
outdata - > dsize = sizeof ( uint32_t ) ;
return 0 ;
}
/*
set a tunable
*/
int32_t ctdb_control_set_tunable ( struct ctdb_context * ctdb , TDB_DATA indata )
{
struct ctdb_control_set_tunable * t =
( struct ctdb_control_set_tunable * ) indata . dptr ;
char * name ;
int i ;
if ( indata . dsize < sizeof ( * t ) | |
t - > length > indata . dsize - offsetof ( struct ctdb_control_set_tunable , name ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Bad indata in ctdb_control_set_tunable \n " ) ) ;
2007-06-04 13:53:19 +04:00
return - 1 ;
}
name = talloc_strndup ( ctdb , ( char * ) t - > name , t - > length ) ;
CTDB_NO_MEMORY ( ctdb , name ) ;
for ( i = 0 ; i < ARRAY_SIZE ( tunable_map ) ; i + + ) {
if ( strcasecmp ( name , tunable_map [ i ] . name ) = = 0 ) break ;
}
talloc_free ( name ) ;
if ( i = = ARRAY_SIZE ( tunable_map ) ) {
return - 1 ;
}
* ( uint32_t * ) ( tunable_map [ i ] . offset + ( uint8_t * ) & ctdb - > tunable ) = t - > value ;
return 0 ;
}
/*
list tunables
*/
int32_t ctdb_control_list_tunables ( struct ctdb_context * ctdb , TDB_DATA * outdata )
{
char * list = NULL ;
int i ;
struct ctdb_control_list_tunable * t ;
list = talloc_strdup ( outdata , tunable_map [ 0 ] . name ) ;
CTDB_NO_MEMORY ( ctdb , list ) ;
for ( i = 1 ; i < ARRAY_SIZE ( tunable_map ) ; i + + ) {
list = talloc_asprintf_append ( list , " :%s " , tunable_map [ i ] . name ) ;
CTDB_NO_MEMORY ( ctdb , list ) ;
}
outdata - > dsize = offsetof ( struct ctdb_control_list_tunable , data ) +
strlen ( list ) + 1 ;
outdata - > dptr = talloc_size ( outdata , outdata - > dsize ) ;
CTDB_NO_MEMORY ( ctdb , outdata - > dptr ) ;
t = ( struct ctdb_control_list_tunable * ) outdata - > dptr ;
t - > length = strlen ( list ) + 1 ;
memcpy ( t - > data , list , t - > length ) ;
talloc_free ( list ) ;
return 0 ;
}