2007-04-11 05:02:26 +04:00
/*
ctdb daemon code
Copyright ( C ) Andrew Tridgell 2007
Copyright ( C ) Ronnie Sahlberg 2007
2007-05-31 07:50:53 +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-10 09:29:31 +04:00
the Free Software Foundation ; either version 3 of the License , or
2007-05-31 07:50:53 +04:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
2007-04-11 05:02:26 +04:00
but WITHOUT ANY WARRANTY ; without even the implied warranty of
2007-05-31 07:50:53 +04:00
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-04-11 05:02:26 +04:00
*/
# include "includes.h"
2014-08-15 09:46:33 +04:00
# include "lib/tdb_wrap/tdb_wrap.h"
2013-06-06 23:58:02 +04:00
# include "tdb.h"
2007-04-11 05:02:26 +04:00
# include "lib/util/dlinklist.h"
# include "system/network.h"
# include "system/filesys.h"
2008-07-04 11:04:26 +04:00
# include "system/locale.h"
2008-11-11 06:49:30 +03:00
# include <stdlib.h>
2007-04-11 05:02:26 +04:00
# include "../include/ctdb_private.h"
2007-06-07 16:26:27 +04:00
# include "lib/util/dlinklist.h"
2007-04-11 05:02:26 +04:00
2007-06-07 16:06:19 +04:00
/*
allocate a packet for use in client < - > daemon communication
*/
struct ctdb_req_header * _ctdbd_allocate_pkt ( struct ctdb_context * ctdb ,
TALLOC_CTX * mem_ctx ,
enum ctdb_operation operation ,
size_t length , size_t slength ,
const char * type )
{
int size ;
struct ctdb_req_header * hdr ;
length = MAX ( length , slength ) ;
size = ( length + ( CTDB_DS_ALIGNMENT - 1 ) ) & ~ ( CTDB_DS_ALIGNMENT - 1 ) ;
2011-12-22 20:18:38 +04:00
hdr = ( struct ctdb_req_header * ) talloc_zero_size ( mem_ctx , size ) ;
2007-06-07 16:06:19 +04:00
if ( hdr = = NULL ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Unable to allocate packet for operation %u of length %u \n " ,
2007-06-07 16:06:19 +04:00
operation , ( unsigned ) length ) ) ;
return NULL ;
}
talloc_set_name_const ( hdr , type ) ;
hdr - > length = length ;
hdr - > operation = operation ;
hdr - > ctdb_magic = CTDB_MAGIC ;
2014-10-21 04:53:29 +04:00
hdr - > ctdb_version = CTDB_PROTOCOL ;
2007-09-04 04:06:36 +04:00
hdr - > srcnode = ctdb - > pnn ;
2007-06-07 16:06:19 +04:00
if ( ctdb - > vnn_map ) {
hdr - > generation = ctdb - > vnn_map - > generation ;
}
return hdr ;
}
/*
local version of ctdb_call
*/
int ctdb_call_local ( struct ctdb_db_context * ctdb_db , struct ctdb_call * call ,
struct ctdb_ltdb_header * header , TALLOC_CTX * mem_ctx ,
2013-08-19 09:04:46 +04:00
TDB_DATA * data , bool updatetdb )
2007-06-07 16:06:19 +04:00
{
struct ctdb_call_info * c ;
struct ctdb_registered_call * fn ;
struct ctdb_context * ctdb = ctdb_db - > ctdb ;
c = talloc ( ctdb , struct ctdb_call_info ) ;
CTDB_NO_MEMORY ( ctdb , c ) ;
c - > key = call - > key ;
c - > call_data = & call - > call_data ;
c - > record_data . dptr = talloc_memdup ( c , data - > dptr , data - > dsize ) ;
c - > record_data . dsize = data - > dsize ;
CTDB_NO_MEMORY ( ctdb , c - > record_data . dptr ) ;
c - > new_data = NULL ;
c - > reply_data = NULL ;
c - > status = 0 ;
2011-07-20 05:27:05 +04:00
c - > header = header ;
2007-06-07 16:06:19 +04:00
for ( fn = ctdb_db - > calls ; fn ; fn = fn - > next ) {
if ( fn - > id = = call - > call_id ) break ;
}
if ( fn = = NULL ) {
ctdb_set_error ( ctdb , " Unknown call id %u \n " , call - > call_id ) ;
talloc_free ( c ) ;
return - 1 ;
}
if ( fn - > fn ( c ) ! = 0 ) {
ctdb_set_error ( ctdb , " ctdb_call %u failed \n " , call - > call_id ) ;
talloc_free ( c ) ;
return - 1 ;
}
2010-11-29 05:07:59 +03:00
/* we need to force the record to be written out if this was a remote access */
2013-08-19 09:04:46 +04:00
if ( c - > new_data = = NULL ) {
2007-06-07 16:06:19 +04:00
c - > new_data = & c - > record_data ;
}
2011-07-20 07:30:12 +04:00
if ( c - > new_data & & updatetdb ) {
2007-06-07 16:06:19 +04:00
/* XXX check that we always have the lock here? */
if ( ctdb_ltdb_store ( ctdb_db , call - > key , header , * c - > new_data ) ! = 0 ) {
ctdb_set_error ( ctdb , " ctdb_call tdb_store failed \n " ) ;
talloc_free ( c ) ;
return - 1 ;
}
}
2008-03-19 05:54:17 +03:00
if ( c - > reply_data ) {
2007-06-07 16:06:19 +04:00
call - > reply_data = * c - > reply_data ;
2008-03-19 04:08:29 +03:00
2008-03-19 05:54:17 +03:00
talloc_steal ( call , call - > reply_data . dptr ) ;
2007-06-07 16:06:19 +04:00
talloc_set_name_const ( call - > reply_data . dptr , __location__ ) ;
} else {
call - > reply_data . dptr = NULL ;
call - > reply_data . dsize = 0 ;
}
call - > status = c - > status ;
talloc_free ( c ) ;
return 0 ;
}
2007-04-11 05:02:26 +04:00
/*
queue a packet for sending from client to daemon
*/
static int ctdb_client_queue_pkt ( struct ctdb_context * ctdb , struct ctdb_req_header * hdr )
{
return ctdb_queue_send ( ctdb - > daemon . queue , ( uint8_t * ) hdr , hdr - > length ) ;
}
2007-04-19 05:28:01 +04:00
/*
called when a CTDB_REPLY_CALL packet comes in in the client
This packet comes in response to a CTDB_REQ_CALL request packet . It
contains any reply data from the call
*/
static void ctdb_client_reply_call ( struct ctdb_context * ctdb , struct ctdb_req_header * hdr )
{
struct ctdb_reply_call * c = ( struct ctdb_reply_call * ) hdr ;
struct ctdb_client_call_state * state ;
2007-04-23 12:19:50 +04:00
state = ctdb_reqid_find ( ctdb , hdr - > reqid , struct ctdb_client_call_state ) ;
2007-04-19 05:28:01 +04:00
if ( state = = NULL ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " reqid %u not found \n " , hdr - > reqid ) ) ;
2007-04-17 14:03:01 +04:00
return ;
}
2007-04-23 12:19:50 +04:00
if ( hdr - > reqid ! = state - > reqid ) {
/* we found a record but it was the wrong one */
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Dropped client call reply with reqid:%u \n " , hdr - > reqid ) ) ;
2007-04-23 12:19:50 +04:00
return ;
}
2008-03-19 05:54:17 +03:00
state - > call - > reply_data . dptr = c - > data ;
state - > call - > reply_data . dsize = c - > datalen ;
state - > call - > status = c - > status ;
2007-04-12 09:46:50 +04:00
2007-04-19 05:28:01 +04:00
talloc_steal ( state , c ) ;
state - > state = CTDB_CALL_DONE ;
2008-01-08 09:23:27 +03:00
if ( state - > async . fn ) {
state - > async . fn ( state ) ;
}
2007-04-12 09:46:50 +04:00
}
2015-04-08 07:38:26 +03:00
void ctdb_request_message ( struct ctdb_context * ctdb ,
struct ctdb_req_header * hdr )
{
struct ctdb_req_message * c = ( struct ctdb_req_message * ) hdr ;
TDB_DATA data ;
data . dsize = c - > datalen ;
data . dptr = talloc_memdup ( c , & c - > data [ 0 ] , c - > datalen ) ;
if ( data . dptr = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " Memory allocation failure \n " ) ) ;
return ;
}
srvid_dispatch ( ctdb - > srv , c - > srvid , CTDB_SRVID_ALL , data ) ;
}
2007-04-26 16:27:49 +04:00
static void ctdb_client_reply_control ( struct ctdb_context * ctdb , struct ctdb_req_header * hdr ) ;
2007-04-20 14:07:47 +04:00
2007-04-11 05:02:26 +04:00
/*
this is called in the client , when data comes in from the daemon
*/
2011-08-03 12:38:27 +04:00
void ctdb_client_read_cb ( uint8_t * data , size_t cnt , void * args )
2007-04-11 05:02:26 +04:00
{
struct ctdb_context * ctdb = talloc_get_type ( args , struct ctdb_context ) ;
2007-04-18 05:20:24 +04:00
struct ctdb_req_header * hdr = ( struct ctdb_req_header * ) data ;
TALLOC_CTX * tmp_ctx ;
/* place the packet as a child of a tmp_ctx. We then use
talloc_free ( ) below to free it . If any of the calls want
to keep it , then they will steal it somewhere else , and the
talloc_free ( ) will be a no - op */
tmp_ctx = talloc_new ( ctdb ) ;
talloc_steal ( tmp_ctx , hdr ) ;
2007-04-11 05:02:26 +04:00
2007-04-18 09:35:41 +04:00
if ( cnt = = 0 ) {
2013-06-24 11:37:15 +04:00
DEBUG ( DEBUG_CRIT , ( " Daemon has exited - shutting down client \n " ) ) ;
exit ( 1 ) ;
2007-04-18 09:35:41 +04:00
}
2007-04-11 05:02:26 +04:00
if ( cnt < sizeof ( * hdr ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_CRIT , ( " Bad packet length %u in client \n " , ( unsigned ) cnt ) ) ;
2007-04-18 05:20:24 +04:00
goto done ;
2007-04-11 05:02:26 +04:00
}
if ( cnt ! = hdr - > length ) {
2007-04-28 13:35:49 +04:00
ctdb_set_error ( ctdb , " Bad header length %u expected %u in client \n " ,
( unsigned ) hdr - > length , ( unsigned ) cnt ) ;
2007-04-18 05:20:24 +04:00
goto done ;
2007-04-11 05:02:26 +04:00
}
if ( hdr - > ctdb_magic ! = CTDB_MAGIC ) {
2007-04-17 04:15:44 +04:00
ctdb_set_error ( ctdb , " Non CTDB packet rejected in client \n " ) ;
2007-04-18 05:20:24 +04:00
goto done ;
2007-04-11 05:02:26 +04:00
}
2014-10-21 04:53:29 +04:00
if ( hdr - > ctdb_version ! = CTDB_PROTOCOL ) {
2007-04-17 04:15:44 +04:00
ctdb_set_error ( ctdb , " Bad CTDB version 0x%x rejected in client \n " , hdr - > ctdb_version ) ;
2007-04-18 05:20:24 +04:00
goto done ;
2007-04-11 05:02:26 +04:00
}
2007-04-11 05:58:28 +04:00
switch ( hdr - > operation ) {
case CTDB_REPLY_CALL :
2007-04-19 05:28:01 +04:00
ctdb_client_reply_call ( ctdb , hdr ) ;
2007-04-11 05:58:28 +04:00
break ;
case CTDB_REQ_MESSAGE :
ctdb_request_message ( ctdb , hdr ) ;
break ;
2007-04-11 08:54:47 +04:00
2007-04-26 16:27:49 +04:00
case CTDB_REPLY_CONTROL :
ctdb_client_reply_control ( ctdb , hdr ) ;
break ;
2007-04-12 09:46:50 +04:00
default :
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_CRIT , ( " bogus operation code:%u \n " , hdr - > operation ) ) ;
2007-04-11 05:58:28 +04:00
}
2007-04-18 05:20:24 +04:00
done :
talloc_free ( tmp_ctx ) ;
2007-04-11 05:02:26 +04:00
}
/*
2013-04-05 06:19:34 +04:00
connect to a unix domain socket
2007-04-11 05:02:26 +04:00
*/
2013-04-05 06:19:34 +04:00
int ctdb_socket_connect ( struct ctdb_context * ctdb )
2007-04-11 05:02:26 +04:00
{
struct sockaddr_un addr ;
memset ( & addr , 0 , sizeof ( addr ) ) ;
addr . sun_family = AF_UNIX ;
2013-11-11 05:39:48 +04:00
strncpy ( addr . sun_path , ctdb - > daemon . name , sizeof ( addr . sun_path ) - 1 ) ;
2007-04-11 05:02:26 +04:00
ctdb - > daemon . sd = socket ( AF_UNIX , SOCK_STREAM , 0 ) ;
if ( ctdb - > daemon . sd = = - 1 ) {
2009-05-14 12:25:00 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " Failed to open client socket. Errno:%s(%d) \n " , strerror ( errno ) , errno ) ) ;
2007-04-11 05:02:26 +04:00
return - 1 ;
}
2007-05-30 09:43:25 +04:00
2013-04-05 06:19:34 +04:00
if ( connect ( ctdb - > daemon . sd , ( struct sockaddr * ) & addr , sizeof ( addr ) ) = = - 1 ) {
2007-04-11 05:02:26 +04:00
close ( ctdb - > daemon . sd ) ;
ctdb - > daemon . sd = - 1 ;
2013-04-05 06:19:34 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " Failed to connect client socket to daemon. Errno:%s(%d) \n " , strerror ( errno ) , errno ) ) ;
2007-04-11 05:02:26 +04:00
return - 1 ;
}
2013-03-18 06:45:08 +04:00
set_nonblocking ( ctdb - > daemon . sd ) ;
set_close_on_exec ( ctdb - > daemon . sd ) ;
2007-04-11 05:02:26 +04:00
ctdb - > daemon . queue = ctdb_queue_setup ( ctdb , ctdb , ctdb - > daemon . sd ,
CTDB_DS_ALIGNMENT ,
2010-07-01 17:08:49 +04:00
ctdb_client_read_cb , ctdb , " to-ctdbd " ) ;
2007-04-11 05:02:26 +04:00
return 0 ;
}
2007-04-18 05:20:24 +04:00
struct ctdb_record_handle {
struct ctdb_db_context * ctdb_db ;
TDB_DATA key ;
TDB_DATA * data ;
struct ctdb_ltdb_header header ;
} ;
2007-04-11 05:02:26 +04:00
2007-04-19 05:28:01 +04:00
2007-04-11 05:02:26 +04:00
/*
make a recv call to the local ctdb daemon - called from client context
This is called when the program wants to wait for a ctdb_call to complete and get the
results . This call will block unless the call has already completed .
*/
2007-04-19 05:28:01 +04:00
int ctdb_call_recv ( struct ctdb_client_call_state * state , struct ctdb_call * call )
2007-04-11 05:02:26 +04:00
{
2007-08-23 05:58:09 +04:00
if ( state = = NULL ) {
return - 1 ;
}
2007-04-11 05:02:26 +04:00
while ( state - > state < CTDB_CALL_DONE ) {
2007-04-19 05:28:01 +04:00
event_loop_once ( state - > ctdb_db - > ctdb - > ev ) ;
2007-04-11 05:02:26 +04:00
}
if ( state - > state ! = CTDB_CALL_DONE ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_call_recv failed \n " ) ) ;
2007-04-11 05:02:26 +04:00
talloc_free ( state ) ;
return - 1 ;
}
2008-03-19 05:54:17 +03:00
if ( state - > call - > reply_data . dsize ) {
2007-04-19 05:28:01 +04:00
call - > reply_data . dptr = talloc_memdup ( state - > ctdb_db ,
2008-03-19 05:54:17 +03:00
state - > call - > reply_data . dptr ,
state - > call - > reply_data . dsize ) ;
call - > reply_data . dsize = state - > call - > reply_data . dsize ;
2007-04-11 05:02:26 +04:00
} else {
call - > reply_data . dptr = NULL ;
call - > reply_data . dsize = 0 ;
}
2008-03-19 05:54:17 +03:00
call - > status = state - > call - > status ;
2007-04-11 05:02:26 +04:00
talloc_free ( state ) ;
2011-07-20 07:30:12 +04:00
return call - > status ;
2007-04-11 05:02:26 +04:00
}
/*
destroy a ctdb_call in client
*/
2007-04-19 05:28:01 +04:00
static int ctdb_client_call_destructor ( struct ctdb_client_call_state * state )
2007-04-11 05:02:26 +04:00
{
2007-04-23 12:19:50 +04:00
ctdb_reqid_remove ( state - > ctdb_db - > ctdb , state - > reqid ) ;
2007-04-11 05:02:26 +04:00
return 0 ;
}
2007-04-19 05:28:01 +04:00
/*
construct an event driven local ctdb_call
this is used so that locally processed ctdb_call requests are processed
in an event driven manner
*/
static struct ctdb_client_call_state * ctdb_client_call_local_send ( struct ctdb_db_context * ctdb_db ,
struct ctdb_call * call ,
struct ctdb_ltdb_header * header ,
TDB_DATA * data )
{
struct ctdb_client_call_state * state ;
struct ctdb_context * ctdb = ctdb_db - > ctdb ;
int ret ;
state = talloc_zero ( ctdb_db , struct ctdb_client_call_state ) ;
CTDB_NO_MEMORY_NULL ( ctdb , state ) ;
2008-03-19 05:54:17 +03:00
state - > call = talloc_zero ( state , struct ctdb_call ) ;
CTDB_NO_MEMORY_NULL ( ctdb , state - > call ) ;
2007-04-19 05:28:01 +04:00
talloc_steal ( state , data - > dptr ) ;
2008-03-19 05:54:17 +03:00
state - > state = CTDB_CALL_DONE ;
* ( state - > call ) = * call ;
2007-04-19 05:28:01 +04:00
state - > ctdb_db = ctdb_db ;
2013-08-19 09:04:46 +04:00
ret = ctdb_call_local ( ctdb_db , state - > call , header , state , data , true ) ;
2011-11-09 08:20:07 +04:00
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_call_local() failed, ignoring return code %d \n " , ret ) ) ;
}
2007-04-11 05:02:26 +04:00
2007-04-19 05:28:01 +04:00
return state ;
}
2007-04-11 05:02:26 +04:00
/*
make a ctdb call to the local daemon - async send . Called from client context .
This constructs a ctdb_call request and queues it for processing .
This call never blocks .
*/
2007-04-19 05:28:01 +04:00
struct ctdb_client_call_state * ctdb_call_send ( struct ctdb_db_context * ctdb_db ,
2008-01-08 13:28:42 +03:00
struct ctdb_call * call )
2007-04-11 05:02:26 +04:00
{
2007-04-19 05:28:01 +04:00
struct ctdb_client_call_state * state ;
2007-04-11 05:02:26 +04:00
struct ctdb_context * ctdb = ctdb_db - > ctdb ;
struct ctdb_ltdb_header header ;
TDB_DATA data ;
int ret ;
size_t len ;
2007-04-19 05:28:01 +04:00
struct ctdb_req_call * c ;
2007-04-11 05:02:26 +04:00
/* if the domain socket is not yet open, open it */
if ( ctdb - > daemon . sd = = - 1 ) {
2007-04-20 14:07:47 +04:00
ctdb_socket_connect ( ctdb ) ;
2007-04-11 05:02:26 +04:00
}
2007-04-19 05:28:01 +04:00
ret = ctdb_ltdb_lock ( ctdb_db , call - > key ) ;
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " Failed to get chainlock \n " ) ) ;
2007-04-19 05:28:01 +04:00
return NULL ;
}
2007-04-11 05:02:26 +04:00
ret = ctdb_ltdb_fetch ( ctdb_db , call - > key , & header , ctdb_db , & data ) ;
2011-07-21 09:59:37 +04:00
if ( ( call - > flags & CTDB_IMMEDIATE_MIGRATION ) & & ( header . flags & CTDB_REC_RO_HAVE_DELEGATIONS ) ) {
ret = - 1 ;
}
2007-09-04 04:06:36 +04:00
if ( ret = = 0 & & header . dmaster = = ctdb - > pnn ) {
2007-04-19 05:28:01 +04:00
state = ctdb_client_call_local_send ( ctdb_db , call , & header , & data ) ;
2007-04-18 05:20:24 +04:00
talloc_free ( data . dptr ) ;
2007-04-19 05:28:01 +04:00
ctdb_ltdb_unlock ( ctdb_db , call - > key ) ;
2007-04-11 05:02:26 +04:00
return state ;
}
2007-04-19 05:28:01 +04:00
ctdb_ltdb_unlock ( ctdb_db , call - > key ) ;
talloc_free ( data . dptr ) ;
state = talloc_zero ( ctdb_db , struct ctdb_client_call_state ) ;
2007-04-11 05:02:26 +04:00
if ( state = = NULL ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " failed to allocate state \n " ) ) ;
2007-04-11 05:02:26 +04:00
return NULL ;
}
2008-03-19 05:54:17 +03:00
state - > call = talloc_zero ( state , struct ctdb_call ) ;
if ( state - > call = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " failed to allocate state->call \n " ) ) ;
return NULL ;
}
2007-04-11 05:02:26 +04:00
len = offsetof ( struct ctdb_req_call , data ) + call - > key . dsize + call - > call_data . dsize ;
2007-04-28 12:50:32 +04:00
c = ctdbd_allocate_pkt ( ctdb , state , CTDB_REQ_CALL , len , struct ctdb_req_call ) ;
2007-04-19 05:28:01 +04:00
if ( c = = NULL ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " failed to allocate packet \n " ) ) ;
2007-04-11 05:02:26 +04:00
return NULL ;
}
2007-04-19 05:28:01 +04:00
2007-05-10 11:43:45 +04:00
state - > reqid = ctdb_reqid_new ( ctdb , state ) ;
state - > ctdb_db = ctdb_db ;
talloc_set_destructor ( state , ctdb_client_call_destructor ) ;
c - > hdr . reqid = state - > reqid ;
2007-04-19 05:28:01 +04:00
c - > flags = call - > flags ;
c - > db_id = ctdb_db - > db_id ;
c - > callid = call - > call_id ;
2007-05-01 07:25:02 +04:00
c - > hopcount = 0 ;
2007-04-19 05:28:01 +04:00
c - > keylen = call - > key . dsize ;
c - > calldatalen = call - > call_data . dsize ;
memcpy ( & c - > data [ 0 ] , call - > key . dptr , call - > key . dsize ) ;
memcpy ( & c - > data [ call - > key . dsize ] ,
2007-04-11 05:02:26 +04:00
call - > call_data . dptr , call - > call_data . dsize ) ;
2008-03-19 05:54:17 +03:00
* ( state - > call ) = * call ;
state - > call - > call_data . dptr = & c - > data [ call - > key . dsize ] ;
state - > call - > key . dptr = & c - > data [ 0 ] ;
2007-04-11 05:02:26 +04:00
state - > state = CTDB_CALL_WAIT ;
2007-04-19 05:28:01 +04:00
ctdb_client_queue_pkt ( ctdb , & c - > hdr ) ;
2007-04-11 05:02:26 +04:00
return state ;
}
2007-04-11 05:58:28 +04:00
2007-04-17 08:52:51 +04:00
/*
full ctdb_call . Equivalent to a ctdb_call_send ( ) followed by a ctdb_call_recv ( )
*/
int ctdb_call ( struct ctdb_db_context * ctdb_db , struct ctdb_call * call )
{
2007-04-19 05:28:01 +04:00
struct ctdb_client_call_state * state ;
2007-04-17 08:52:51 +04:00
2008-01-08 13:28:42 +03:00
state = ctdb_call_send ( ctdb_db , call ) ;
2007-04-17 08:52:51 +04:00
return ctdb_call_recv ( state , call ) ;
}
2007-04-11 05:58:28 +04:00
/*
tell the daemon what messaging srvid we will use , and register the message
handler function in the client
*/
2015-04-08 07:41:12 +03:00
int ctdb_client_set_message_handler ( struct ctdb_context * ctdb , uint64_t srvid ,
srvid_handler_fn handler ,
void * private_data )
2007-04-11 05:58:28 +04:00
{
int res ;
2007-05-04 05:41:29 +04:00
int32_t status ;
2013-08-23 10:49:46 +04:00
2015-04-08 07:41:12 +03:00
res = ctdb_control ( ctdb , CTDB_CURRENT_NODE , srvid ,
CTDB_CONTROL_REGISTER_SRVID , 0 ,
2007-05-12 15:25:26 +04:00
tdb_null , NULL , NULL , & status , NULL , NULL ) ;
2007-05-04 05:41:29 +04:00
if ( res ! = 0 | | status ! = 0 ) {
2015-04-08 07:41:12 +03:00
DEBUG ( DEBUG_ERR ,
( " Failed to register srvid %llu \n " ,
( unsigned long long ) srvid ) ) ;
2007-05-04 05:41:29 +04:00
return - 1 ;
2007-04-11 07:43:15 +04:00
}
2007-05-04 05:41:29 +04:00
/* also need to register the handler with our own ctdb structure */
2015-04-08 07:38:26 +03:00
return srvid_register ( ctdb - > srv , ctdb , srvid , handler , private_data ) ;
2007-05-04 05:41:29 +04:00
}
2007-04-11 05:58:28 +04:00
2007-05-04 05:41:29 +04:00
/*
tell the daemon we no longer want a srvid
*/
2015-04-08 07:41:12 +03:00
int ctdb_client_remove_message_handler ( struct ctdb_context * ctdb ,
uint64_t srvid , void * private_data )
2007-05-04 05:41:29 +04:00
{
int res ;
int32_t status ;
2013-08-23 10:49:46 +04:00
2015-04-08 07:41:12 +03:00
res = ctdb_control ( ctdb , CTDB_CURRENT_NODE , srvid ,
CTDB_CONTROL_DEREGISTER_SRVID , 0 ,
2007-05-12 15:25:26 +04:00
tdb_null , NULL , NULL , & status , NULL , NULL ) ;
2007-05-04 05:41:29 +04:00
if ( res ! = 0 | | status ! = 0 ) {
2015-04-08 07:41:12 +03:00
DEBUG ( DEBUG_ERR ,
( " Failed to deregister srvid %llu \n " ,
( unsigned long long ) srvid ) ) ;
2007-05-04 05:41:29 +04:00
return - 1 ;
2007-04-11 05:58:28 +04:00
}
2007-05-04 05:41:29 +04:00
/* also need to register the handler with our own ctdb structure */
2015-04-08 07:38:26 +03:00
srvid_deregister ( ctdb - > srv , srvid , private_data ) ;
2007-05-04 05:41:29 +04:00
return 0 ;
2007-04-11 05:58:28 +04:00
}
2013-08-23 10:51:26 +04:00
/*
* check server ids
*/
int ctdb_client_check_message_handlers ( struct ctdb_context * ctdb , uint64_t * ids , uint32_t num ,
uint8_t * result )
{
TDB_DATA indata , outdata ;
int res ;
int32_t status ;
int i ;
indata . dptr = ( uint8_t * ) ids ;
indata . dsize = num * sizeof ( * ids ) ;
res = ctdb_control ( ctdb , CTDB_CURRENT_NODE , 0 , CTDB_CONTROL_CHECK_SRVIDS , 0 ,
indata , ctdb , & outdata , & status , NULL , NULL ) ;
if ( res ! = 0 | | status ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " failed to check srvids \n " ) ) ;
return - 1 ;
}
if ( outdata . dsize ! = num * sizeof ( uint8_t ) ) {
DEBUG ( DEBUG_ERR , ( __location__ " expected %lu bytes, received %zi bytes \n " ,
2013-09-18 07:40:10 +04:00
( long unsigned int ) num * sizeof ( uint8_t ) ,
outdata . dsize ) ) ;
2013-08-23 10:51:26 +04:00
talloc_free ( outdata . dptr ) ;
return - 1 ;
}
for ( i = 0 ; i < num ; i + + ) {
result [ i ] = outdata . dptr [ i ] ;
}
talloc_free ( outdata . dptr ) ;
return 0 ;
}
2007-04-11 05:58:28 +04:00
2007-04-11 08:54:47 +04:00
/*
send a message - from client context
*/
2010-06-02 03:45:21 +04:00
int ctdb_client_send_message ( struct ctdb_context * ctdb , uint32_t pnn ,
2007-04-27 18:31:45 +04:00
uint64_t srvid , TDB_DATA data )
2007-04-11 07:43:15 +04:00
{
struct ctdb_req_message * r ;
int len , res ;
len = offsetof ( struct ctdb_req_message , data ) + data . dsize ;
2007-04-28 12:50:32 +04:00
r = ctdbd_allocate_pkt ( ctdb , ctdb , CTDB_REQ_MESSAGE ,
len , struct ctdb_req_message ) ;
2007-04-11 07:43:15 +04:00
CTDB_NO_MEMORY ( ctdb , r ) ;
2007-09-04 04:42:20 +04:00
r - > hdr . destnode = pnn ;
2007-04-11 07:43:15 +04:00
r - > srvid = srvid ;
r - > datalen = data . dsize ;
memcpy ( & r - > data [ 0 ] , data . dptr , data . dsize ) ;
res = ctdb_client_queue_pkt ( ctdb , & r - > hdr ) ;
talloc_free ( r ) ;
2012-11-19 14:13:03 +04:00
return res ;
2007-04-11 07:43:15 +04:00
}
2007-04-11 08:54:47 +04:00
2007-04-19 04:03:20 +04:00
/*
2007-04-19 05:56:37 +04:00
cancel a ctdb_fetch_lock operation , releasing the lock
2007-04-19 04:03:20 +04:00
*/
2007-04-19 05:56:37 +04:00
static int fetch_lock_destructor ( struct ctdb_record_handle * h )
2007-04-12 09:46:50 +04:00
{
2007-04-19 05:56:37 +04:00
ctdb_ltdb_unlock ( h - > ctdb_db , h - > key ) ;
2007-04-17 06:22:17 +04:00
return 0 ;
2007-04-12 09:46:50 +04:00
}
2007-04-17 08:52:51 +04:00
/*
2007-04-19 05:56:37 +04:00
force the migration of a record to this node
2007-04-17 08:52:51 +04:00
*/
2007-04-19 05:56:37 +04:00
static int ctdb_client_force_migration ( struct ctdb_db_context * ctdb_db , TDB_DATA key )
2007-04-17 08:52:51 +04:00
{
2007-04-19 05:56:37 +04:00
struct ctdb_call call ;
ZERO_STRUCT ( call ) ;
call . call_id = CTDB_NULL_FUNC ;
call . key = key ;
call . flags = CTDB_IMMEDIATE_MIGRATION ;
return ctdb_call ( ctdb_db , & call ) ;
2007-04-17 08:52:51 +04:00
}
2011-07-20 09:37:37 +04:00
/*
try to fetch a readonly copy of a record
*/
static int
ctdb_client_fetch_readonly ( struct ctdb_db_context * ctdb_db , TDB_DATA key , TALLOC_CTX * mem_ctx , struct ctdb_ltdb_header * * hdr , TDB_DATA * data )
{
int ret ;
struct ctdb_call call ;
ZERO_STRUCT ( call ) ;
call . call_id = CTDB_FETCH_WITH_HEADER_FUNC ;
call . call_data . dptr = NULL ;
call . call_data . dsize = 0 ;
call . key = key ;
call . flags = CTDB_WANT_READONLY ;
ret = ctdb_call ( ctdb_db , & call ) ;
if ( ret ! = 0 ) {
return - 1 ;
}
if ( call . reply_data . dsize < sizeof ( struct ctdb_ltdb_header ) ) {
return - 1 ;
}
* hdr = talloc_memdup ( mem_ctx , & call . reply_data . dptr [ 0 ] , sizeof ( struct ctdb_ltdb_header ) ) ;
if ( * hdr = = NULL ) {
talloc_free ( call . reply_data . dptr ) ;
return - 1 ;
}
data - > dsize = call . reply_data . dsize - sizeof ( struct ctdb_ltdb_header ) ;
data - > dptr = talloc_memdup ( mem_ctx , & call . reply_data . dptr [ sizeof ( struct ctdb_ltdb_header ) ] , data - > dsize ) ;
if ( data - > dptr = = NULL ) {
talloc_free ( call . reply_data . dptr ) ;
talloc_free ( hdr ) ;
return - 1 ;
}
return 0 ;
}
2007-04-17 08:52:51 +04:00
/*
get a lock on a record , and return the records data . Blocks until it gets the lock
*/
struct ctdb_record_handle * ctdb_fetch_lock ( struct ctdb_db_context * ctdb_db , TALLOC_CTX * mem_ctx ,
TDB_DATA key , TDB_DATA * data )
2007-04-12 09:46:50 +04:00
{
2007-04-17 05:34:45 +04:00
int ret ;
2007-04-17 08:52:51 +04:00
struct ctdb_record_handle * h ;
/*
procedure is as follows :
1 ) get the chain lock .
2 ) check if we are dmaster
3 ) if we are the dmaster then return handle
4 ) if not dmaster then ask ctdb daemon to make us dmaster , and wait for
reply from ctdbd
2007-04-19 04:03:20 +04:00
5 ) when we get the reply , goto ( 1 )
2007-04-17 08:52:51 +04:00
*/
h = talloc_zero ( mem_ctx , struct ctdb_record_handle ) ;
if ( h = = NULL ) {
return NULL ;
}
2007-04-12 09:46:50 +04:00
2007-04-17 08:52:51 +04:00
h - > ctdb_db = ctdb_db ;
h - > key = key ;
h - > key . dptr = talloc_memdup ( h , key . dptr , key . dsize ) ;
if ( h - > key . dptr = = NULL ) {
talloc_free ( h ) ;
return NULL ;
}
h - > data = data ;
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_lock: key=%*.*s \n " , ( int ) key . dsize , ( int ) key . dsize ,
2007-04-17 16:39:23 +04:00
( const char * ) key . dptr ) ) ;
2007-04-19 04:03:20 +04:00
again :
2007-04-17 08:52:51 +04:00
/* step 1 - get the chain lock */
2007-04-17 05:34:45 +04:00
ret = ctdb_ltdb_lock ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " failed to lock ltdb record \n " ) ) ;
2007-04-17 08:52:51 +04:00
talloc_free ( h ) ;
return NULL ;
2007-04-17 05:34:45 +04:00
}
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_lock: got chain lock \n " ) ) ;
2007-04-17 16:39:23 +04:00
2007-04-17 08:52:51 +04:00
talloc_set_destructor ( h , fetch_lock_destructor ) ;
2007-04-18 01:03:30 +04:00
ret = ctdb_ltdb_fetch ( ctdb_db , key , & h - > header , h , data ) ;
2007-04-17 05:34:45 +04:00
2007-04-19 10:27:56 +04:00
/* when torturing, ensure we test the remote path */
if ( ( ctdb_db - > ctdb - > flags & CTDB_FLAG_TORTURE ) & &
random ( ) % 5 = = 0 ) {
h - > header . dmaster = ( uint32_t ) - 1 ;
}
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_lock: done local fetch \n " ) ) ;
2007-04-17 16:39:23 +04:00
2007-09-04 04:06:36 +04:00
if ( ret ! = 0 | | h - > header . dmaster ! = ctdb_db - > ctdb - > pnn ) {
2007-04-19 04:03:20 +04:00
ctdb_ltdb_unlock ( ctdb_db , key ) ;
2007-04-19 05:56:37 +04:00
ret = ctdb_client_force_migration ( ctdb_db , key ) ;
2007-04-19 04:03:20 +04:00
if ( ret ! = 0 ) {
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_lock: force_migration failed \n " ) ) ;
2007-04-19 04:03:20 +04:00
talloc_free ( h ) ;
return NULL ;
}
goto again ;
}
2014-03-27 08:06:58 +04:00
/* if this is a request for read/write and we have delegations
we have to revoke all delegations first
*/
if ( ( h - > header . dmaster = = ctdb_db - > ctdb - > pnn ) & &
( h - > header . flags & CTDB_REC_RO_HAVE_DELEGATIONS ) ) {
ctdb_ltdb_unlock ( ctdb_db , key ) ;
ret = ctdb_client_force_migration ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_readonly_lock: force_migration failed \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
goto again ;
}
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_lock: we are dmaster - done \n " ) ) ;
2007-04-17 08:52:51 +04:00
return h ;
2007-04-12 09:46:50 +04:00
}
2007-04-13 03:41:15 +04:00
2011-07-20 09:37:37 +04:00
/*
get a readonly lock on a record , and return the records data . Blocks until it gets the lock
*/
struct ctdb_record_handle *
ctdb_fetch_readonly_lock (
struct ctdb_db_context * ctdb_db , TALLOC_CTX * mem_ctx ,
TDB_DATA key , TDB_DATA * data ,
int read_only )
{
int ret ;
struct ctdb_record_handle * h ;
struct ctdb_ltdb_header * roheader = NULL ;
h = talloc_zero ( mem_ctx , struct ctdb_record_handle ) ;
if ( h = = NULL ) {
return NULL ;
}
h - > ctdb_db = ctdb_db ;
h - > key = key ;
h - > key . dptr = talloc_memdup ( h , key . dptr , key . dsize ) ;
if ( h - > key . dptr = = NULL ) {
talloc_free ( h ) ;
return NULL ;
}
h - > data = data ;
data - > dptr = NULL ;
data - > dsize = 0 ;
again :
talloc_free ( roheader ) ;
roheader = NULL ;
talloc_free ( data - > dptr ) ;
data - > dptr = NULL ;
data - > dsize = 0 ;
/* Lock the record/chain */
ret = ctdb_ltdb_lock ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " failed to lock ltdb record \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
talloc_set_destructor ( h , fetch_lock_destructor ) ;
/* Check if record exists yet in the TDB */
2011-09-13 12:38:20 +04:00
ret = ctdb_ltdb_fetch_with_header ( ctdb_db , key , & h - > header , h , data ) ;
2011-07-20 09:37:37 +04:00
if ( ret ! = 0 ) {
ctdb_ltdb_unlock ( ctdb_db , key ) ;
ret = ctdb_client_force_migration ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_readonly_lock: force_migration failed \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
goto again ;
}
2011-07-21 09:59:37 +04:00
/* if this is a request for read/write and we have delegations
we have to revoke all delegations first
*/
if ( ( read_only = = 0 )
& & ( h - > header . dmaster = = ctdb_db - > ctdb - > pnn )
& & ( h - > header . flags & CTDB_REC_RO_HAVE_DELEGATIONS ) ) {
ctdb_ltdb_unlock ( ctdb_db , key ) ;
ret = ctdb_client_force_migration ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_readonly_lock: force_migration failed \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
goto again ;
}
2011-07-20 09:37:37 +04:00
/* if we are dmaster, just return the handle */
if ( h - > header . dmaster = = ctdb_db - > ctdb - > pnn ) {
return h ;
}
if ( read_only ! = 0 ) {
TDB_DATA rodata = { NULL , 0 } ;
if ( ( h - > header . flags & CTDB_REC_RO_HAVE_READONLY )
| | ( h - > header . flags & CTDB_REC_RO_HAVE_DELEGATIONS ) ) {
return h ;
}
ctdb_ltdb_unlock ( ctdb_db , key ) ;
ret = ctdb_client_fetch_readonly ( ctdb_db , key , h , & roheader , & rodata ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " ctdb_fetch_readonly_lock: failed. force migration and try again \n " ) ) ;
ret = ctdb_client_force_migration ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_readonly_lock: force_migration failed \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
goto again ;
}
if ( ! ( roheader - > flags & CTDB_REC_RO_HAVE_READONLY ) ) {
ret = ctdb_client_force_migration ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_readonly_lock: force_migration failed \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
goto again ;
}
ret = ctdb_ltdb_lock ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " failed to lock ltdb record \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
2011-09-13 12:38:20 +04:00
ret = ctdb_ltdb_fetch_with_header ( ctdb_db , key , & h - > header , h , data ) ;
2011-07-20 09:37:37 +04:00
if ( ret ! = 0 ) {
ctdb_ltdb_unlock ( ctdb_db , key ) ;
ret = ctdb_client_force_migration ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_readonly_lock: force_migration failed \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
goto again ;
}
return h ;
}
/* we are not dmaster and this was not a request for a readonly lock
* so unlock the record , migrate it and try again
*/
ctdb_ltdb_unlock ( ctdb_db , key ) ;
ret = ctdb_client_force_migration ( ctdb_db , key ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_fetch_lock: force_migration failed \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
goto again ;
}
2007-04-17 05:34:45 +04:00
/*
2007-04-17 08:52:51 +04:00
store some data to the record that was locked with ctdb_fetch_lock ( )
2007-04-17 05:34:45 +04:00
*/
2007-04-17 08:52:51 +04:00
int ctdb_record_store ( struct ctdb_record_handle * h , TDB_DATA data )
2007-04-13 03:41:15 +04:00
{
2007-09-21 06:24:02 +04:00
if ( h - > ctdb_db - > persistent ) {
2009-07-20 18:34:56 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_record_store prohibited for persistent dbs \n " ) ) ;
2007-09-21 06:24:02 +04:00
return - 1 ;
}
2009-07-20 18:34:56 +04:00
return ctdb_ltdb_store ( h - > ctdb_db , h - > key , & h - > header , data ) ;
2007-04-13 03:41:15 +04:00
}
2007-04-18 06:39:03 +04:00
2007-08-15 03:03:58 +04:00
/*
non - locking fetch of a record
*/
int ctdb_fetch ( struct ctdb_db_context * ctdb_db , TALLOC_CTX * mem_ctx ,
TDB_DATA key , TDB_DATA * data )
{
struct ctdb_call call ;
int ret ;
call . call_id = CTDB_FETCH_FUNC ;
call . call_data . dptr = NULL ;
call . call_data . dsize = 0 ;
2011-07-20 09:37:37 +04:00
call . key = key ;
2007-08-15 03:03:58 +04:00
ret = ctdb_call ( ctdb_db , & call ) ;
if ( ret = = 0 ) {
* data = call . reply_data ;
talloc_steal ( mem_ctx , data - > dptr ) ;
}
return ret ;
}
2007-04-26 16:27:49 +04:00
2007-08-23 13:27:09 +04:00
/*
called when a control completes or timesout to invoke the callback
function the user provided
*/
static void invoke_control_callback ( struct event_context * ev , struct timed_event * te ,
struct timeval t , void * private_data )
{
struct ctdb_client_control_state * state ;
TALLOC_CTX * tmp_ctx = talloc_new ( NULL ) ;
int ret ;
state = talloc_get_type ( private_data , struct ctdb_client_control_state ) ;
talloc_steal ( tmp_ctx , state ) ;
2007-08-24 04:54:34 +04:00
ret = ctdb_control_recv ( state - > ctdb , state , state ,
NULL ,
NULL ,
NULL ) ;
2011-11-09 08:20:07 +04:00
if ( ret ! = 0 ) {
DEBUG ( DEBUG_DEBUG , ( " ctdb_control_recv() failed, ignoring return code %d \n " , ret ) ) ;
}
2007-08-23 13:27:09 +04:00
talloc_free ( tmp_ctx ) ;
}
2007-04-26 16:27:49 +04:00
/*
called when a CTDB_REPLY_CONTROL packet comes in in the client
This packet comes in response to a CTDB_REQ_CONTROL request packet . It
contains any reply data from the control
*/
static void ctdb_client_reply_control ( struct ctdb_context * ctdb ,
struct ctdb_req_header * hdr )
{
struct ctdb_reply_control * c = ( struct ctdb_reply_control * ) hdr ;
struct ctdb_client_control_state * state ;
state = ctdb_reqid_find ( ctdb , hdr - > reqid , struct ctdb_client_control_state ) ;
if ( state = = NULL ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " reqid %u not found \n " , hdr - > reqid ) ) ;
2007-04-26 16:27:49 +04:00
return ;
}
if ( hdr - > reqid ! = state - > reqid ) {
/* we found a record but it was the wrong one */
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Dropped orphaned reply control with reqid:%u \n " , hdr - > reqid ) ) ;
2007-04-26 16:27:49 +04:00
return ;
}
state - > outdata . dptr = c - > data ;
state - > outdata . dsize = c - > datalen ;
state - > status = c - > status ;
2007-05-12 15:25:26 +04:00
if ( c - > errorlen ) {
state - > errormsg = talloc_strndup ( state ,
( char * ) & c - > data [ c - > datalen ] ,
c - > errorlen ) ;
}
2007-04-26 16:27:49 +04:00
2007-08-24 03:34:04 +04:00
/* state->outdata now uses resources from c so we dont want c
to just dissappear from under us while state is still alive
*/
2007-04-26 16:27:49 +04:00
talloc_steal ( state , c ) ;
2007-08-23 03:53:10 +04:00
state - > state = CTDB_CONTROL_DONE ;
2007-08-23 13:27:09 +04:00
/* if we had a callback registered for this control, pull the response
and call the callback .
*/
2007-08-24 04:42:06 +04:00
if ( state - > async . fn ) {
2007-08-23 13:27:09 +04:00
event_add_timed ( ctdb - > ev , state , timeval_zero ( ) , invoke_control_callback , state ) ;
}
2007-04-26 16:27:49 +04:00
}
2007-05-10 11:43:45 +04:00
/*
destroy a ctdb_control in client
*/
2011-11-11 07:02:09 +04:00
static int ctdb_client_control_destructor ( struct ctdb_client_control_state * state )
2007-05-10 11:43:45 +04:00
{
ctdb_reqid_remove ( state - > ctdb , state - > reqid ) ;
return 0 ;
}
2007-08-23 05:58:09 +04:00
/* time out handler for ctdb_control */
static void control_timeout_func ( struct event_context * ev , struct timed_event * te ,
struct timeval t , void * private_data )
{
struct ctdb_client_control_state * state = talloc_get_type ( private_data , struct ctdb_client_control_state ) ;
2009-10-29 21:49:10 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " control timed out. reqid:%u opcode:%u "
" dstnode:%u \n " , state - > reqid , state - > c - > opcode ,
state - > c - > hdr . destnode ) ) ;
2007-08-23 07:00:10 +04:00
2007-08-23 05:58:09 +04:00
state - > state = CTDB_CONTROL_TIMEOUT ;
2007-08-23 13:27:09 +04:00
/* if we had a callback registered for this control, pull the response
and call the callback .
*/
2007-08-24 04:42:06 +04:00
if ( state - > async . fn ) {
2007-08-23 13:27:09 +04:00
event_add_timed ( state - > ctdb - > ev , state , timeval_zero ( ) , invoke_control_callback , state ) ;
}
2007-08-23 05:58:09 +04:00
}
/* async version of send control request */
struct ctdb_client_control_state * ctdb_control_send ( struct ctdb_context * ctdb ,
uint32_t destnode , uint64_t srvid ,
uint32_t opcode , uint32_t flags , TDB_DATA data ,
2008-01-16 02:23:26 +03:00
TALLOC_CTX * mem_ctx ,
2007-08-23 05:58:09 +04:00
struct timeval * timeout ,
2007-08-24 04:42:06 +04:00
char * * errormsg )
2007-04-26 16:27:49 +04:00
{
struct ctdb_client_control_state * state ;
size_t len ;
2007-08-23 07:00:10 +04:00
struct ctdb_req_control * c ;
2007-04-26 16:27:49 +04:00
int ret ;
2007-05-12 15:25:26 +04:00
if ( errormsg ) {
* errormsg = NULL ;
}
2007-04-26 16:27:49 +04:00
/* if the domain socket is not yet open, open it */
if ( ctdb - > daemon . sd = = - 1 ) {
ctdb_socket_connect ( ctdb ) ;
}
2007-08-23 13:27:09 +04:00
state = talloc_zero ( mem_ctx , struct ctdb_client_control_state ) ;
2007-08-23 05:58:09 +04:00
CTDB_NO_MEMORY_NULL ( ctdb , state ) ;
2007-04-26 16:27:49 +04:00
2007-08-23 13:27:09 +04:00
state - > ctdb = ctdb ;
state - > reqid = ctdb_reqid_new ( ctdb , state ) ;
state - > state = CTDB_CONTROL_WAIT ;
state - > errormsg = NULL ;
2007-04-26 16:27:49 +04:00
2011-11-11 07:02:09 +04:00
talloc_set_destructor ( state , ctdb_client_control_destructor ) ;
2007-05-10 11:43:45 +04:00
2007-04-26 16:27:49 +04:00
len = offsetof ( struct ctdb_req_control , data ) + data . dsize ;
2007-04-28 12:50:32 +04:00
c = ctdbd_allocate_pkt ( ctdb , state , CTDB_REQ_CONTROL ,
len , struct ctdb_req_control ) ;
2007-08-23 07:00:10 +04:00
state - > c = c ;
2007-08-23 05:58:09 +04:00
CTDB_NO_MEMORY_NULL ( ctdb , c ) ;
2007-04-26 16:27:49 +04:00
c - > hdr . reqid = state - > reqid ;
c - > hdr . destnode = destnode ;
c - > opcode = opcode ;
2007-05-04 05:41:29 +04:00
c - > client_id = 0 ;
2007-04-30 17:31:40 +04:00
c - > flags = flags ;
2007-04-26 16:27:49 +04:00
c - > srvid = srvid ;
c - > datalen = data . dsize ;
if ( data . dsize ) {
memcpy ( & c - > data [ 0 ] , data . dptr , data . dsize ) ;
}
2007-08-23 13:27:09 +04:00
/* timeout */
if ( timeout & & ! timeval_is_zero ( timeout ) ) {
event_add_timed ( ctdb - > ev , state , * timeout , control_timeout_func , state ) ;
}
2007-04-26 16:27:49 +04:00
ret = ctdb_client_queue_pkt ( ctdb , & ( c - > hdr ) ) ;
if ( ret ! = 0 ) {
talloc_free ( state ) ;
2007-08-23 05:58:09 +04:00
return NULL ;
2007-04-26 16:27:49 +04:00
}
2007-04-30 17:31:40 +04:00
if ( flags & CTDB_CTRL_FLAG_NOREPLY ) {
talloc_free ( state ) ;
2007-08-23 05:58:09 +04:00
return NULL ;
2007-04-30 17:31:40 +04:00
}
2007-08-23 05:58:09 +04:00
return state ;
}
/* async version of receive control reply */
int ctdb_control_recv ( struct ctdb_context * ctdb ,
struct ctdb_client_control_state * state ,
TALLOC_CTX * mem_ctx ,
TDB_DATA * outdata , int32_t * status , char * * errormsg )
{
2008-01-06 04:38:01 +03:00
TALLOC_CTX * tmp_ctx ;
2008-07-04 11:15:06 +04:00
if ( status ! = NULL ) {
* status = - 1 ;
}
if ( errormsg ! = NULL ) {
* errormsg = NULL ;
}
2007-08-23 05:58:09 +04:00
if ( state = = NULL ) {
return - 1 ;
2007-05-04 02:30:18 +04:00
}
2007-08-23 05:58:09 +04:00
2008-01-06 04:38:01 +03:00
/* prevent double free of state */
tmp_ctx = talloc_new ( ctdb ) ;
talloc_steal ( tmp_ctx , state ) ;
2007-08-23 05:58:09 +04:00
/* loop one event at a time until we either timeout or the control
completes .
*/
while ( state - > state = = CTDB_CONTROL_WAIT ) {
2007-04-26 16:27:49 +04:00
event_loop_once ( ctdb - > ev ) ;
}
2007-08-24 04:42:06 +04:00
2007-08-23 05:58:09 +04:00
if ( state - > state ! = CTDB_CONTROL_DONE ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control_recv failed \n " ) ) ;
2007-08-24 04:42:06 +04:00
if ( state - > async . fn ) {
state - > async . fn ( state ) ;
}
2008-01-06 04:38:01 +03:00
talloc_free ( tmp_ctx ) ;
2007-08-23 05:58:09 +04:00
return - 1 ;
}
if ( state - > errormsg ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " ctdb_control error: '%s' \n " , state - > errormsg ) ) ;
2007-05-19 15:11:06 +04:00
if ( errormsg ) {
2007-08-23 05:58:09 +04:00
( * errormsg ) = talloc_move ( mem_ctx , & state - > errormsg ) ;
2007-05-19 15:11:06 +04:00
}
2007-08-24 04:42:06 +04:00
if ( state - > async . fn ) {
state - > async . fn ( state ) ;
}
2008-01-06 04:38:01 +03:00
talloc_free ( tmp_ctx ) ;
2015-07-24 00:39:26 +03:00
return ( status = = 0 ? - 1 : state - > status ) ;
2007-05-04 02:30:18 +04:00
}
2007-05-07 01:47:16 +04:00
2007-04-26 16:27:49 +04:00
if ( outdata ) {
* outdata = state - > outdata ;
2007-04-26 16:51:41 +04:00
outdata - > dptr = talloc_memdup ( mem_ctx , outdata - > dptr , outdata - > dsize ) ;
2007-04-26 16:27:49 +04:00
}
2007-08-23 05:58:09 +04:00
if ( status ) {
* status = state - > status ;
2007-05-12 15:25:26 +04:00
}
2007-08-24 04:42:06 +04:00
if ( state - > async . fn ) {
state - > async . fn ( state ) ;
}
2008-01-06 04:38:01 +03:00
talloc_free ( tmp_ctx ) ;
2007-08-23 05:58:09 +04:00
return 0 ;
}
2007-04-26 16:27:49 +04:00
2007-08-23 05:58:09 +04:00
/*
send a ctdb control message
timeout specifies how long we should wait for a reply .
if timeout is NULL we wait indefinitely
*/
int ctdb_control ( struct ctdb_context * ctdb , uint32_t destnode , uint64_t srvid ,
uint32_t opcode , uint32_t flags , TDB_DATA data ,
TALLOC_CTX * mem_ctx , TDB_DATA * outdata , int32_t * status ,
struct timeval * timeout ,
char * * errormsg )
{
struct ctdb_client_control_state * state ;
state = ctdb_control_send ( ctdb , destnode , srvid , opcode ,
2008-01-16 02:23:26 +03:00
flags , data , mem_ctx ,
2007-08-24 04:42:06 +04:00
timeout , errormsg ) ;
2013-04-22 18:21:02 +04:00
/* FIXME: Error conditions in ctdb_control_send return NULL without
* setting errormsg . So , there is no way to distinguish between sucess
* and failure when CTDB_CTRL_FLAG_NOREPLY is set */
if ( flags & CTDB_CTRL_FLAG_NOREPLY ) {
if ( status ! = NULL ) {
* status = 0 ;
}
return 0 ;
}
2007-08-23 05:58:09 +04:00
return ctdb_control_recv ( ctdb , state , mem_ctx , outdata , status ,
errormsg ) ;
2007-04-26 16:27:49 +04:00
}
2007-08-23 05:58:09 +04:00
2007-04-26 16:27:49 +04:00
/*
a process exists call . Returns 0 if process exists , - 1 otherwise
*/
2007-04-29 18:58:27 +04:00
int ctdb_ctrl_process_exists ( struct ctdb_context * ctdb , uint32_t destnode , pid_t pid )
2007-04-26 16:27:49 +04:00
{
int ret ;
TDB_DATA data ;
int32_t status ;
data . dptr = ( uint8_t * ) & pid ;
data . dsize = sizeof ( pid ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-04-30 17:31:40 +04:00
CTDB_CONTROL_PROCESS_EXISTS , 0 , data ,
2007-05-12 15:25:26 +04:00
NULL , NULL , & status , NULL , NULL ) ;
2007-04-26 16:27:49 +04:00
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for process_exists failed \n " ) ) ;
2007-04-26 16:27:49 +04:00
return - 1 ;
}
return status ;
}
2007-04-26 16:51:41 +04:00
/*
2007-05-29 06:16:59 +04:00
get remote statistics
2007-04-26 16:51:41 +04:00
*/
2007-05-29 06:16:59 +04:00
int ctdb_ctrl_statistics ( struct ctdb_context * ctdb , uint32_t destnode , struct ctdb_statistics * status )
2007-04-26 16:51:41 +04:00
{
int ret ;
2007-04-27 17:14:36 +04:00
TDB_DATA data ;
2007-04-26 16:51:41 +04:00
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-29 06:16:59 +04:00
CTDB_CONTROL_STATISTICS , 0 , tdb_null ,
2007-05-12 15:25:26 +04:00
ctdb , & data , & res , NULL , NULL ) ;
2007-04-26 16:51:41 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for statistics failed \n " ) ) ;
2007-04-26 16:51:41 +04:00
return - 1 ;
}
2007-05-29 06:16:59 +04:00
if ( data . dsize ! = sizeof ( struct ctdb_statistics ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " Wrong statistics size %u - expected %u \n " ,
2007-05-29 07:58:41 +04:00
( unsigned ) data . dsize , ( unsigned ) sizeof ( struct ctdb_statistics ) ) ) ;
2007-04-26 16:51:41 +04:00
return - 1 ;
}
2007-05-29 06:16:59 +04:00
* status = * ( struct ctdb_statistics * ) data . dptr ;
2007-04-27 17:14:36 +04:00
talloc_free ( data . dptr ) ;
2007-04-26 16:51:41 +04:00
return 0 ;
}
2007-04-26 21:27:07 +04:00
2013-08-23 10:52:02 +04:00
/*
* get db statistics
*/
int ctdb_ctrl_dbstatistics ( struct ctdb_context * ctdb , uint32_t destnode , uint32_t dbid ,
TALLOC_CTX * mem_ctx , struct ctdb_db_statistics * * dbstat )
{
int ret ;
TDB_DATA indata , outdata ;
int32_t res ;
struct ctdb_db_statistics * wire , * s ;
char * ptr ;
int i ;
indata . dptr = ( uint8_t * ) & dbid ;
indata . dsize = sizeof ( dbid ) ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_GET_DB_STATISTICS ,
0 , indata , ctdb , & outdata , & res , NULL , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for dbstatistics failed \n " ) ) ;
return - 1 ;
}
if ( outdata . dsize < offsetof ( struct ctdb_db_statistics , hot_keys_wire ) ) {
DEBUG ( DEBUG_ERR , ( __location__ " Wrong dbstatistics size %zi - expected >= %lu \n " ,
2013-09-18 07:40:10 +04:00
outdata . dsize ,
( long unsigned int ) sizeof ( struct ctdb_statistics ) ) ) ;
2013-08-23 10:52:02 +04:00
return - 1 ;
}
s = talloc_zero ( mem_ctx , struct ctdb_db_statistics ) ;
if ( s = = NULL ) {
talloc_free ( outdata . dptr ) ;
CTDB_NO_MEMORY ( ctdb , s ) ;
}
wire = ( struct ctdb_db_statistics * ) outdata . dptr ;
2015-07-09 07:55:59 +03:00
memcpy ( s , wire , offsetof ( struct ctdb_db_statistics , hot_keys_wire ) ) ;
2013-08-23 10:52:02 +04:00
ptr = & wire - > hot_keys_wire [ 0 ] ;
for ( i = 0 ; i < wire - > num_hot_keys ; i + + ) {
s - > hot_keys [ i ] . key . dptr = talloc_size ( mem_ctx , s - > hot_keys [ i ] . key . dsize ) ;
if ( s - > hot_keys [ i ] . key . dptr = = NULL ) {
talloc_free ( outdata . dptr ) ;
CTDB_NO_MEMORY ( ctdb , s - > hot_keys [ i ] . key . dptr ) ;
}
memcpy ( s - > hot_keys [ i ] . key . dptr , ptr , s - > hot_keys [ i ] . key . dsize ) ;
ptr + = wire - > hot_keys [ i ] . key . dsize ;
}
talloc_free ( outdata . dptr ) ;
* dbstat = s ;
return 0 ;
}
2007-05-17 04:45:31 +04:00
/*
shutdown a remote ctdb node
*/
int ctdb_ctrl_shutdown ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
{
2007-08-27 09:03:52 +04:00
struct ctdb_client_control_state * state ;
2007-05-17 04:45:31 +04:00
2007-08-27 09:03:52 +04:00
state = ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_SHUTDOWN , 0 , tdb_null ,
2008-01-16 02:23:26 +03:00
NULL , & timeout , NULL ) ;
2007-08-27 09:03:52 +04:00
if ( state = = NULL ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for shutdown failed \n " ) ) ;
2007-05-17 04:45:31 +04:00
return - 1 ;
}
return 0 ;
}
2007-04-27 14:56:10 +04:00
/*
get vnn map from a remote node
*/
2007-05-04 03:45:53 +04:00
int ctdb_ctrl_getvnnmap ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , TALLOC_CTX * mem_ctx , struct ctdb_vnn_map * * vnnmap )
2007-04-27 14:56:10 +04:00
{
int ret ;
2007-05-23 11:21:14 +04:00
TDB_DATA outdata ;
2007-05-03 05:06:24 +04:00
int32_t res ;
2007-05-10 02:13:19 +04:00
struct ctdb_vnn_map_wire * map ;
2007-04-27 14:56:10 +04:00
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-23 11:21:14 +04:00
CTDB_CONTROL_GETVNNMAP , 0 , tdb_null ,
2007-05-12 15:25:26 +04:00
mem_ctx , & outdata , & res , & timeout , NULL ) ;
2007-04-27 14:56:10 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getvnnmap failed \n " ) ) ;
2007-04-27 14:56:10 +04:00
return - 1 ;
}
2007-05-10 02:13:19 +04:00
map = ( struct ctdb_vnn_map_wire * ) outdata . dptr ;
if ( outdata . dsize < offsetof ( struct ctdb_vnn_map_wire , map ) | |
outdata . dsize ! = map - > size * sizeof ( uint32_t ) + offsetof ( struct ctdb_vnn_map_wire , map ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Bad vnn map size received in ctdb_ctrl_getvnnmap \n " ) ) ;
2007-05-10 02:13:19 +04:00
return - 1 ;
}
( * vnnmap ) = talloc ( mem_ctx , struct ctdb_vnn_map ) ;
CTDB_NO_MEMORY ( ctdb , * vnnmap ) ;
( * vnnmap ) - > generation = map - > generation ;
( * vnnmap ) - > size = map - > size ;
( * vnnmap ) - > map = talloc_array ( * vnnmap , uint32_t , map - > size ) ;
2007-04-27 14:56:10 +04:00
2007-05-10 02:13:19 +04:00
CTDB_NO_MEMORY ( ctdb , ( * vnnmap ) - > map ) ;
memcpy ( ( * vnnmap ) - > map , map - > map , sizeof ( uint32_t ) * map - > size ) ;
2007-05-23 11:21:14 +04:00
talloc_free ( outdata . dptr ) ;
2007-04-27 14:56:10 +04:00
return 0 ;
}
2007-08-23 07:00:10 +04:00
2007-08-23 13:27:09 +04:00
/*
get the recovery mode of a remote node
*/
2007-08-23 07:00:10 +04:00
struct ctdb_client_control_state *
ctdb_ctrl_getrecmode_send ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode )
{
return ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_RECMODE , 0 , tdb_null ,
2008-01-16 02:23:26 +03:00
mem_ctx , & timeout , NULL ) ;
2007-08-23 07:00:10 +04:00
}
int ctdb_ctrl_getrecmode_recv ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct ctdb_client_control_state * state , uint32_t * recmode )
2007-04-29 16:51:56 +04:00
{
int ret ;
int32_t res ;
2007-08-23 07:00:10 +04:00
ret = ctdb_control_recv ( ctdb , state , mem_ctx , NULL , & res , NULL ) ;
2007-05-06 02:05:22 +04:00
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_getrecmode_recv failed \n " ) ) ;
2007-04-29 16:51:56 +04:00
return - 1 ;
}
2007-08-23 07:00:10 +04:00
if ( recmode ) {
* recmode = ( uint32_t ) res ;
}
2007-04-29 16:51:56 +04:00
return 0 ;
}
2007-08-23 07:00:10 +04:00
int ctdb_ctrl_getrecmode ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode , uint32_t * recmode )
{
struct ctdb_client_control_state * state ;
state = ctdb_ctrl_getrecmode_send ( ctdb , mem_ctx , timeout , destnode ) ;
return ctdb_ctrl_getrecmode_recv ( ctdb , mem_ctx , state , recmode ) ;
}
2007-04-29 16:51:56 +04:00
/*
set the recovery mode of a remote node
*/
2007-05-04 09:21:40 +04:00
int ctdb_ctrl_setrecmode ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t recmode )
2007-04-29 16:51:56 +04:00
{
int ret ;
2007-05-23 11:21:14 +04:00
TDB_DATA data ;
2007-04-29 16:51:56 +04:00
int32_t res ;
data . dsize = sizeof ( uint32_t ) ;
data . dptr = ( unsigned char * ) & recmode ;
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-02 04:53:29 +04:00
CTDB_CONTROL_SET_RECMODE , 0 , data ,
2007-05-23 11:21:14 +04:00
NULL , NULL , & res , & timeout , NULL ) ;
2007-04-29 16:51:56 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for setrecmode failed \n " ) ) ;
2007-04-29 16:51:56 +04:00
return - 1 ;
}
return 0 ;
}
2007-08-23 13:27:09 +04:00
2007-05-06 23:02:48 +04:00
/*
get the recovery master of a remote node
*/
2007-08-23 13:27:09 +04:00
struct ctdb_client_control_state *
ctdb_ctrl_getrecmaster_send ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx ,
2007-08-24 04:42:06 +04:00
struct timeval timeout , uint32_t destnode )
2007-08-23 13:27:09 +04:00
{
return ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_RECMASTER , 0 , tdb_null ,
2008-01-16 02:23:26 +03:00
mem_ctx , & timeout , NULL ) ;
2007-08-23 13:27:09 +04:00
}
int ctdb_ctrl_getrecmaster_recv ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct ctdb_client_control_state * state , uint32_t * recmaster )
2007-05-06 23:02:48 +04:00
{
int ret ;
int32_t res ;
2007-08-23 13:27:09 +04:00
ret = ctdb_control_recv ( ctdb , state , mem_ctx , NULL , & res , NULL ) ;
2007-05-06 23:02:48 +04:00
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_getrecmaster_recv failed \n " ) ) ;
2007-05-06 23:02:48 +04:00
return - 1 ;
}
2007-08-23 13:27:09 +04:00
if ( recmaster ) {
* recmaster = ( uint32_t ) res ;
}
2007-05-06 23:02:48 +04:00
return 0 ;
}
2007-08-23 13:27:09 +04:00
int ctdb_ctrl_getrecmaster ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode , uint32_t * recmaster )
{
struct ctdb_client_control_state * state ;
2007-08-24 04:42:06 +04:00
state = ctdb_ctrl_getrecmaster_send ( ctdb , mem_ctx , timeout , destnode ) ;
2007-08-23 13:27:09 +04:00
return ctdb_ctrl_getrecmaster_recv ( ctdb , mem_ctx , state , recmaster ) ;
}
2007-05-06 23:02:48 +04:00
/*
set the recovery master of a remote node
*/
int ctdb_ctrl_setrecmaster ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t recmaster )
{
int ret ;
2007-05-23 11:21:14 +04:00
TDB_DATA data ;
2007-05-06 23:02:48 +04:00
int32_t res ;
ZERO_STRUCT ( data ) ;
data . dsize = sizeof ( uint32_t ) ;
data . dptr = ( unsigned char * ) & recmaster ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_RECMASTER , 0 , data ,
2007-05-23 11:21:14 +04:00
NULL , NULL , & res , & timeout , NULL ) ;
2007-05-06 23:02:48 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for setrecmaster failed \n " ) ) ;
2007-05-06 23:02:48 +04:00
return - 1 ;
}
return 0 ;
}
2007-04-28 14:00:50 +04:00
/*
get a list of databases off a remote node
*/
2007-05-23 11:21:14 +04:00
int ctdb_ctrl_getdbmap ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx , struct ctdb_dbid_map * * dbmap )
2007-04-28 14:00:50 +04:00
{
int ret ;
2007-05-23 11:21:14 +04:00
TDB_DATA outdata ;
2007-05-03 07:07:34 +04:00
int32_t res ;
2007-04-28 14:00:50 +04:00
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-23 11:21:14 +04:00
CTDB_CONTROL_GET_DBMAP , 0 , tdb_null ,
2007-05-12 15:25:26 +04:00
mem_ctx , & outdata , & res , & timeout , NULL ) ;
2007-04-28 14:00:50 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-10-14 17:24:44 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getdbmap failed ret:%d res:%d \n " , ret , res ) ) ;
2007-04-28 14:00:50 +04:00
return - 1 ;
}
2007-05-03 07:07:34 +04:00
* dbmap = ( struct ctdb_dbid_map * ) talloc_memdup ( mem_ctx , outdata . dptr , outdata . dsize ) ;
2007-05-23 11:21:14 +04:00
talloc_free ( outdata . dptr ) ;
2007-04-28 14:00:50 +04:00
return 0 ;
}
2007-04-28 14:40:26 +04:00
/*
get a list of nodes ( vnn and flags ) from a remote node
*/
2007-05-04 03:01:01 +04:00
int ctdb_ctrl_getnodemap ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx , struct ctdb_node_map * * nodemap )
2007-04-28 14:40:26 +04:00
{
int ret ;
2007-05-23 11:21:14 +04:00
TDB_DATA outdata ;
2007-05-03 07:30:38 +04:00
int32_t res ;
2007-04-28 14:40:26 +04:00
2015-03-23 09:06:31 +03:00
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_NODEMAP , 0 , tdb_null ,
2007-05-12 15:25:26 +04:00
mem_ctx , & outdata , & res , & timeout , NULL ) ;
2007-09-05 08:59:29 +04:00
if ( ret ! = 0 | | res ! = 0 | | outdata . dsize = = 0 ) {
2008-10-14 17:24:44 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getnodes failed ret:%d res:%d \n " , ret , res ) ) ;
2007-04-28 14:40:26 +04:00
return - 1 ;
}
2007-05-03 07:30:38 +04:00
* nodemap = ( struct ctdb_node_map * ) talloc_memdup ( mem_ctx , outdata . dptr , outdata . dsize ) ;
2007-05-23 11:21:14 +04:00
talloc_free ( outdata . dptr ) ;
2007-04-28 14:40:26 +04:00
return 0 ;
}
2015-02-20 13:19:01 +03:00
/*
load nodes file on a remote node and return as a node map
*/
int ctdb_ctrl_getnodesfile ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx , struct ctdb_node_map * * nodemap )
{
int ret ;
TDB_DATA outdata ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_NODES_FILE , 0 , tdb_null ,
mem_ctx , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 | | outdata . dsize = = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getnodes failed ret:%d res:%d \n " , ret , res ) ) ;
return - 1 ;
}
* nodemap = ( struct ctdb_node_map * ) talloc_memdup ( mem_ctx , outdata . dptr , outdata . dsize ) ;
talloc_free ( outdata . dptr ) ;
return 0 ;
}
2008-02-19 06:44:48 +03:00
/*
drop the transport , reload the nodes file and restart the transport
*/
int ctdb_ctrl_reload_nodes_file ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode )
{
int ret ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_RELOAD_NODES_FILE , 0 , tdb_null ,
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for reloadnodesfile failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2007-04-27 16:08:12 +04:00
/*
set vnn map on a node
*/
2007-05-23 11:21:14 +04:00
int ctdb_ctrl_setvnnmap ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx , struct ctdb_vnn_map * vnnmap )
2007-04-27 16:08:12 +04:00
{
int ret ;
2007-05-23 11:21:14 +04:00
TDB_DATA data ;
2007-05-03 05:06:24 +04:00
int32_t res ;
2007-05-10 02:22:26 +04:00
struct ctdb_vnn_map_wire * map ;
size_t len ;
2007-04-27 16:08:12 +04:00
2007-05-10 02:22:26 +04:00
len = offsetof ( struct ctdb_vnn_map_wire , map ) + sizeof ( uint32_t ) * vnnmap - > size ;
map = talloc_size ( mem_ctx , len ) ;
2008-07-04 11:04:26 +04:00
CTDB_NO_MEMORY ( ctdb , map ) ;
2007-05-10 02:22:26 +04:00
map - > generation = vnnmap - > generation ;
map - > size = vnnmap - > size ;
memcpy ( map - > map , vnnmap - > map , sizeof ( uint32_t ) * map - > size ) ;
data . dsize = len ;
data . dptr = ( uint8_t * ) map ;
2007-04-27 16:08:12 +04:00
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-03 05:06:24 +04:00
CTDB_CONTROL_SETVNNMAP , 0 , data ,
2007-05-23 11:21:14 +04:00
NULL , NULL , & res , & timeout , NULL ) ;
2007-04-27 16:08:12 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for setvnnmap failed \n " ) ) ;
2007-04-27 16:08:12 +04:00
return - 1 ;
}
2007-05-10 02:22:26 +04:00
talloc_free ( map ) ;
2007-04-27 16:08:12 +04:00
return 0 ;
}
2008-01-05 01:31:43 +03:00
2007-04-28 23:47:13 +04:00
/*
2008-01-05 01:31:43 +03:00
async send for pull database
2007-04-28 23:47:13 +04:00
*/
2008-01-05 01:31:43 +03:00
struct ctdb_client_control_state * ctdb_ctrl_pulldb_send (
struct ctdb_context * ctdb , uint32_t destnode , uint32_t dbid ,
uint32_t lmaster , TALLOC_CTX * mem_ctx , struct timeval timeout )
2007-04-28 23:47:13 +04:00
{
2008-01-05 01:31:43 +03:00
TDB_DATA indata ;
struct ctdb_control_pulldb * pull ;
struct ctdb_client_control_state * state ;
pull = talloc ( mem_ctx , struct ctdb_control_pulldb ) ;
CTDB_NO_MEMORY_NULL ( ctdb , pull ) ;
2007-04-28 23:47:13 +04:00
2008-01-05 01:31:43 +03:00
pull - > db_id = dbid ;
pull - > lmaster = lmaster ;
2007-05-10 11:43:45 +04:00
2007-05-10 23:40:11 +04:00
indata . dsize = sizeof ( struct ctdb_control_pulldb ) ;
2008-01-05 01:31:43 +03:00
indata . dptr = ( unsigned char * ) pull ;
2007-04-28 23:47:13 +04:00
2008-01-05 01:31:43 +03:00
state = ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_PULL_DB , 0 , indata ,
2008-01-16 02:23:26 +03:00
mem_ctx , & timeout , NULL ) ;
2008-01-05 01:31:43 +03:00
talloc_free ( pull ) ;
return state ;
}
/*
async recv for pull database
*/
int ctdb_ctrl_pulldb_recv (
struct ctdb_context * ctdb ,
TALLOC_CTX * mem_ctx , struct ctdb_client_control_state * state ,
TDB_DATA * outdata )
{
int ret ;
int32_t res ;
ret = ctdb_control_recv ( ctdb , state , mem_ctx , outdata , & res , NULL ) ;
if ( ( ret ! = 0 ) | | ( res ! = 0 ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_pulldb_recv failed \n " ) ) ;
2007-04-28 23:47:13 +04:00
return - 1 ;
}
2008-01-05 01:31:43 +03:00
return 0 ;
}
2007-04-28 23:47:13 +04:00
2008-01-05 01:31:43 +03:00
/*
pull all keys and records for a specific database on a node
*/
int ctdb_ctrl_pulldb ( struct ctdb_context * ctdb , uint32_t destnode ,
uint32_t dbid , uint32_t lmaster ,
TALLOC_CTX * mem_ctx , struct timeval timeout ,
TDB_DATA * outdata )
{
struct ctdb_client_control_state * state ;
state = ctdb_ctrl_pulldb_send ( ctdb , destnode , dbid , lmaster , mem_ctx ,
timeout ) ;
2007-05-10 23:40:11 +04:00
2008-01-05 01:31:43 +03:00
return ctdb_ctrl_pulldb_recv ( ctdb , mem_ctx , state , outdata ) ;
}
2007-05-02 15:00:02 +04:00
2007-04-29 12:48:46 +04:00
/*
2007-04-29 18:58:27 +04:00
change dmaster for all keys in the database to the new value
2007-04-29 12:48:46 +04:00
*/
2007-05-23 11:21:14 +04:00
int ctdb_ctrl_setdmaster ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx , uint32_t dbid , uint32_t dmaster )
2007-04-29 12:48:46 +04:00
{
int ret ;
2007-05-23 11:21:14 +04:00
TDB_DATA indata ;
2007-04-29 12:48:46 +04:00
int32_t res ;
2007-04-29 18:58:27 +04:00
indata . dsize = 2 * sizeof ( uint32_t ) ;
indata . dptr = ( unsigned char * ) talloc_array ( mem_ctx , uint32_t , 2 ) ;
2007-04-29 12:48:46 +04:00
( ( uint32_t * ) ( & indata . dptr [ 0 ] ) ) [ 0 ] = dbid ;
2007-04-29 18:58:27 +04:00
( ( uint32_t * ) ( & indata . dptr [ 0 ] ) ) [ 1 ] = dmaster ;
2007-04-29 12:48:46 +04:00
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-02 04:53:29 +04:00
CTDB_CONTROL_SET_DMASTER , 0 , indata ,
2007-05-23 11:21:14 +04:00
NULL , NULL , & res , & timeout , NULL ) ;
2007-04-29 12:48:46 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for setdmaster failed \n " ) ) ;
2007-04-29 12:48:46 +04:00
return - 1 ;
}
return 0 ;
}
2007-04-26 21:27:07 +04:00
/*
2007-04-28 17:15:21 +04:00
ping a node , return number of clients connected
2007-04-26 21:27:07 +04:00
*/
2007-04-29 18:58:27 +04:00
int ctdb_ctrl_ping ( struct ctdb_context * ctdb , uint32_t destnode )
2007-04-26 21:27:07 +04:00
{
int ret ;
int32_t res ;
2007-04-30 17:31:40 +04:00
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_PING , 0 ,
2007-05-23 11:21:14 +04:00
tdb_null , NULL , NULL , & res , NULL , NULL ) ;
2007-04-28 17:15:21 +04:00
if ( ret ! = 0 ) {
2007-04-26 21:27:07 +04:00
return - 1 ;
}
2007-04-28 17:15:21 +04:00
return res ;
2007-04-26 21:27:07 +04:00
}
2013-05-21 10:18:28 +04:00
int ctdb_ctrl_get_runstate ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
uint32_t * runstate )
{
TDB_DATA outdata ;
int32_t res ;
int ret ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_GET_RUNSTATE , 0 ,
tdb_null , ctdb , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " ctdb_control for get_runstate failed \n " ) ) ;
return ret ! = 0 ? ret : res ;
}
if ( outdata . dsize ! = sizeof ( uint32_t ) ) {
DEBUG ( DEBUG_ERR , ( " Invalid return data in get_runstate \n " ) ) ;
talloc_free ( outdata . dptr ) ;
return - 1 ;
}
if ( runstate ! = NULL ) {
* runstate = * ( uint32_t * ) outdata . dptr ;
}
talloc_free ( outdata . dptr ) ;
return 0 ;
}
2007-04-27 01:10:35 +04:00
/*
find the real path to a ltdb
*/
2007-05-04 09:21:40 +04:00
int ctdb_ctrl_getdbpath ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t dbid , TALLOC_CTX * mem_ctx ,
2007-04-27 01:10:35 +04:00
const char * * path )
{
int ret ;
int32_t res ;
TDB_DATA data ;
2007-04-28 14:00:50 +04:00
data . dptr = ( uint8_t * ) & dbid ;
data . dsize = sizeof ( dbid ) ;
2007-04-27 01:10:35 +04:00
2007-05-04 09:21:40 +04:00
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-04-30 17:31:40 +04:00
CTDB_CONTROL_GETDBPATH , 0 , data ,
2007-05-12 15:25:26 +04:00
mem_ctx , & data , & res , & timeout , NULL ) ;
2007-04-27 01:10:35 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
return - 1 ;
}
( * path ) = talloc_strndup ( mem_ctx , ( const char * ) data . dptr , data . dsize ) ;
if ( ( * path ) = = NULL ) {
return - 1 ;
}
talloc_free ( data . dptr ) ;
return 0 ;
2007-04-27 17:14:36 +04:00
}
2007-05-04 09:21:40 +04:00
/*
find the name of a db
*/
int ctdb_ctrl_getdbname ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t dbid , TALLOC_CTX * mem_ctx ,
const char * * name )
{
int ret ;
int32_t res ;
TDB_DATA data ;
data . dptr = ( uint8_t * ) & dbid ;
data . dsize = sizeof ( dbid ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_DBNAME , 0 , data ,
2007-05-12 15:25:26 +04:00
mem_ctx , & data , & res , & timeout , NULL ) ;
2007-05-04 09:21:40 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
return - 1 ;
}
( * name ) = talloc_strndup ( mem_ctx , ( const char * ) data . dptr , data . dsize ) ;
if ( ( * name ) = = NULL ) {
return - 1 ;
}
talloc_free ( data . dptr ) ;
return 0 ;
}
2009-12-02 14:51:37 +03:00
/*
get the health status of a db
*/
int ctdb_ctrl_getdbhealth ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
uint32_t dbid , TALLOC_CTX * mem_ctx ,
const char * * reason )
{
int ret ;
int32_t res ;
TDB_DATA data ;
data . dptr = ( uint8_t * ) & dbid ;
data . dsize = sizeof ( dbid ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_DB_GET_HEALTH , 0 , data ,
mem_ctx , & data , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
return - 1 ;
}
if ( data . dsize = = 0 ) {
( * reason ) = NULL ;
return 0 ;
}
( * reason ) = talloc_strndup ( mem_ctx , ( const char * ) data . dptr , data . dsize ) ;
if ( ( * reason ) = = NULL ) {
return - 1 ;
}
talloc_free ( data . dptr ) ;
2013-08-23 10:52:24 +04:00
return 0 ;
}
/*
* get db sequence number
*/
int ctdb_ctrl_getdbseqnum ( struct ctdb_context * ctdb , struct timeval timeout ,
uint32_t destnode , uint32_t dbid , uint64_t * seqnum )
{
int ret ;
int32_t res ;
TDB_DATA data , outdata ;
data . dptr = ( uint8_t * ) & dbid ;
data . dsize = sizeof ( uint64_t ) ; /* This is just wrong */
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_GET_DB_SEQNUM ,
0 , data , ctdb , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " ctdb_control for getdbesqnum failed \n " ) ) ;
return - 1 ;
}
if ( outdata . dsize ! = sizeof ( uint64_t ) ) {
DEBUG ( DEBUG_ERR , ( " Invalid return data in get_dbseqnum \n " ) ) ;
talloc_free ( outdata . dptr ) ;
return - 1 ;
}
if ( seqnum ! = NULL ) {
* seqnum = * ( uint64_t * ) outdata . dptr ;
}
talloc_free ( outdata . dptr ) ;
2009-12-02 14:51:37 +03:00
return 0 ;
}
2007-05-04 09:21:40 +04:00
/*
create a database
*/
2013-08-13 07:55:47 +04:00
int ctdb_ctrl_createdb ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx , const char * name , bool persistent )
2007-05-04 09:21:40 +04:00
{
int ret ;
int32_t res ;
TDB_DATA data ;
2013-08-13 08:02:46 +04:00
uint64_t tdb_flags = 0 ;
2007-05-04 09:21:40 +04:00
data . dptr = discard_const ( name ) ;
data . dsize = strlen ( name ) + 1 ;
2013-08-13 08:02:46 +04:00
/* Make sure that volatile databases use jenkins hash */
if ( ! persistent ) {
tdb_flags = TDB_INCOMPATIBLE_HASH ;
}
2013-11-10 17:32:31 +04:00
# ifdef TDB_MUTEX_LOCKING
if ( ! persistent & & ctdb - > tunable . mutex_enabled = = 1 ) {
2014-12-11 05:16:47 +03:00
tdb_flags | = ( TDB_MUTEX_LOCKING | TDB_CLEAR_IF_FIRST ) ;
2013-11-10 17:32:31 +04:00
}
# endif
2013-08-13 08:02:46 +04:00
ret = ctdb_control ( ctdb , destnode , tdb_flags ,
2013-08-13 07:55:47 +04:00
persistent ? CTDB_CONTROL_DB_ATTACH_PERSISTENT : CTDB_CONTROL_DB_ATTACH ,
0 , data ,
2007-05-12 15:25:26 +04:00
mem_ctx , & data , & res , & timeout , NULL ) ;
2007-05-04 09:21:40 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
return - 1 ;
}
return 0 ;
}
2007-04-27 17:14:36 +04:00
/*
get debug level on a node
*/
2008-02-05 02:26:23 +03:00
int ctdb_ctrl_get_debuglevel ( struct ctdb_context * ctdb , uint32_t destnode , int32_t * level )
2007-04-27 17:14:36 +04:00
{
int ret ;
int32_t res ;
TDB_DATA data ;
2007-05-23 11:21:14 +04:00
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_GET_DEBUG , 0 , tdb_null ,
2007-05-12 15:25:26 +04:00
ctdb , & data , & res , NULL , NULL ) ;
2007-04-27 17:14:36 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
return - 1 ;
}
2008-02-05 02:26:23 +03:00
if ( data . dsize ! = sizeof ( int32_t ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Bad control reply size in ctdb_get_debuglevel (got %u) \n " ,
2007-05-29 07:58:41 +04:00
( unsigned ) data . dsize ) ) ;
2007-04-27 17:14:36 +04:00
return - 1 ;
}
2008-02-05 02:26:23 +03:00
* level = * ( int32_t * ) data . dptr ;
2007-04-27 17:14:36 +04:00
talloc_free ( data . dptr ) ;
return 0 ;
}
/*
set debug level on a node
*/
2008-02-05 02:26:23 +03:00
int ctdb_ctrl_set_debuglevel ( struct ctdb_context * ctdb , uint32_t destnode , int32_t level )
2007-04-27 17:14:36 +04:00
{
int ret ;
int32_t res ;
TDB_DATA data ;
data . dptr = ( uint8_t * ) & level ;
data . dsize = sizeof ( level ) ;
2007-04-30 17:31:40 +04:00
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_SET_DEBUG , 0 , data ,
2007-05-12 15:25:26 +04:00
NULL , NULL , & res , NULL , NULL ) ;
2007-04-27 17:14:36 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
return - 1 ;
}
return 0 ;
2007-04-27 01:10:35 +04:00
}
2007-04-28 19:42:40 +04:00
/*
get a list of connected nodes
*/
2007-05-04 03:01:01 +04:00
uint32_t * ctdb_get_connected_nodes ( struct ctdb_context * ctdb ,
struct timeval timeout ,
TALLOC_CTX * mem_ctx ,
uint32_t * num_nodes )
2007-04-28 19:42:40 +04:00
{
2007-05-03 07:30:38 +04:00
struct ctdb_node_map * map = NULL ;
2007-04-28 19:42:40 +04:00
int ret , i ;
uint32_t * nodes ;
* num_nodes = 0 ;
2007-05-04 03:01:01 +04:00
ret = ctdb_ctrl_getnodemap ( ctdb , timeout , CTDB_CURRENT_NODE , mem_ctx , & map ) ;
2007-04-28 19:42:40 +04:00
if ( ret ! = 0 ) {
return NULL ;
}
nodes = talloc_array ( mem_ctx , uint32_t , map - > num ) ;
if ( nodes = = NULL ) {
return NULL ;
}
for ( i = 0 ; i < map - > num ; i + + ) {
2007-06-07 09:18:55 +04:00
if ( ! ( map - > nodes [ i ] . flags & NODE_FLAGS_DISCONNECTED ) ) {
2007-09-04 03:50:07 +04:00
nodes [ * num_nodes ] = map - > nodes [ i ] . pnn ;
2007-04-28 19:42:40 +04:00
( * num_nodes ) + + ;
}
}
return nodes ;
}
2007-04-28 21:13:36 +04:00
/*
reset remote status
*/
2007-05-29 06:16:59 +04:00
int ctdb_statistics_reset ( struct ctdb_context * ctdb , uint32_t destnode )
2007-04-28 21:13:36 +04:00
{
int ret ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-29 06:16:59 +04:00
CTDB_CONTROL_STATISTICS_RESET , 0 , tdb_null ,
2007-05-12 15:25:26 +04:00
NULL , NULL , & res , NULL , NULL ) ;
2007-04-28 21:13:36 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for reset statistics failed \n " ) ) ;
2007-04-28 21:13:36 +04:00
return - 1 ;
}
return 0 ;
}
2007-04-30 17:31:40 +04:00
/*
attach to a specific database - client call
*/
2011-08-08 18:35:56 +04:00
struct ctdb_db_context * ctdb_attach ( struct ctdb_context * ctdb ,
struct timeval timeout ,
const char * name ,
bool persistent ,
uint32_t tdb_flags )
2007-04-30 17:31:40 +04:00
{
struct ctdb_db_context * ctdb_db ;
TDB_DATA data ;
int ret ;
int32_t res ;
2014-12-11 05:16:47 +03:00
# ifdef TDB_MUTEX_LOCKING
uint32_t mutex_enabled = 0 ;
# endif
2007-04-30 17:31:40 +04:00
2007-08-15 03:03:58 +04:00
ctdb_db = ctdb_db_handle ( ctdb , name ) ;
if ( ctdb_db ) {
return ctdb_db ;
}
2007-04-30 17:31:40 +04:00
ctdb_db = talloc_zero ( ctdb , struct ctdb_db_context ) ;
CTDB_NO_MEMORY_NULL ( ctdb , ctdb_db ) ;
ctdb_db - > ctdb = ctdb ;
ctdb_db - > db_name = talloc_strdup ( ctdb_db , name ) ;
CTDB_NO_MEMORY_NULL ( ctdb , ctdb_db - > db_name ) ;
data . dptr = discard_const ( name ) ;
data . dsize = strlen ( name ) + 1 ;
2013-08-01 05:07:59 +04:00
/* CTDB has switched to using jenkins hash for volatile databases.
* Even if tdb_flags do not explicitly mention TDB_INCOMPATIBLE_HASH ,
* always set it .
*/
if ( ! persistent ) {
tdb_flags | = TDB_INCOMPATIBLE_HASH ;
}
2013-11-10 17:32:31 +04:00
# ifdef TDB_MUTEX_LOCKING
2014-12-11 05:16:47 +03:00
if ( ! persistent ) {
ret = ctdb_ctrl_get_tunable ( ctdb , timeval_current_ofs ( 3 , 0 ) ,
CTDB_CURRENT_NODE ,
" TDBMutexEnabled " ,
& mutex_enabled ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_WARNING , ( " Assuming no mutex support. \n " ) ) ;
}
if ( mutex_enabled = = 1 ) {
tdb_flags | = ( TDB_MUTEX_LOCKING | TDB_CLEAR_IF_FIRST ) ;
}
2013-11-10 17:32:31 +04:00
}
# endif
2007-04-30 17:31:40 +04:00
/* tell ctdb daemon to attach */
2008-06-04 04:46:20 +04:00
ret = ctdb_control ( ctdb , CTDB_CURRENT_NODE , tdb_flags ,
2007-09-21 06:24:02 +04:00
persistent ? CTDB_CONTROL_DB_ATTACH_PERSISTENT : CTDB_CONTROL_DB_ATTACH ,
2007-05-12 15:25:26 +04:00
0 , data , ctdb_db , & data , & res , NULL , NULL ) ;
2007-04-30 17:31:40 +04:00
if ( ret ! = 0 | | res ! = 0 | | data . dsize ! = sizeof ( uint32_t ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Failed to attach to database '%s' \n " , name ) ) ;
2007-04-30 17:31:40 +04:00
talloc_free ( ctdb_db ) ;
return NULL ;
}
ctdb_db - > db_id = * ( uint32_t * ) data . dptr ;
2007-05-23 11:21:14 +04:00
talloc_free ( data . dptr ) ;
2007-04-30 17:31:40 +04:00
2011-08-08 18:35:56 +04:00
ret = ctdb_ctrl_getdbpath ( ctdb , timeout , CTDB_CURRENT_NODE , ctdb_db - > db_id , ctdb_db , & ctdb_db - > db_path ) ;
2007-04-30 17:31:40 +04:00
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Failed to get dbpath for database '%s' \n " , name ) ) ;
2007-04-30 17:31:40 +04:00
talloc_free ( ctdb_db ) ;
return NULL ;
}
2014-12-11 05:16:47 +03:00
if ( persistent ) {
tdb_flags = TDB_DEFAULT ;
} else {
tdb_flags = TDB_NOSYNC ;
# ifdef TDB_MUTEX_LOCKING
if ( mutex_enabled ) {
tdb_flags | = ( TDB_MUTEX_LOCKING | TDB_CLEAR_IF_FIRST ) ;
}
# endif
}
2009-12-16 13:29:15 +03:00
if ( ctdb - > valgrinding ) {
2008-07-04 11:32:21 +04:00
tdb_flags | = TDB_NOMMAP ;
}
2009-11-20 23:17:59 +03:00
tdb_flags | = TDB_DISALLOW_NESTING ;
2008-07-04 11:32:21 +04:00
2014-04-22 09:07:33 +04:00
ctdb_db - > ltdb = tdb_wrap_open ( ctdb_db , ctdb_db - > db_path , 0 , tdb_flags ,
O_RDWR , 0 ) ;
2007-04-30 17:31:40 +04:00
if ( ctdb_db - > ltdb = = NULL ) {
ctdb_set_error ( ctdb , " Failed to open tdb '%s' \n " , ctdb_db - > db_path ) ;
talloc_free ( ctdb_db ) ;
return NULL ;
}
2007-09-21 06:24:02 +04:00
ctdb_db - > persistent = persistent ;
2007-04-30 17:31:40 +04:00
DLIST_ADD ( ctdb - > db_list , ctdb_db ) ;
2008-01-08 09:23:27 +03:00
/* add well known functions */
ctdb_set_call ( ctdb_db , ctdb_null_func , CTDB_NULL_FUNC ) ;
ctdb_set_call ( ctdb_db , ctdb_fetch_func , CTDB_FETCH_FUNC ) ;
2011-07-20 05:27:05 +04:00
ctdb_set_call ( ctdb_db , ctdb_fetch_with_header_func , CTDB_FETCH_WITH_HEADER_FUNC ) ;
2008-01-08 09:23:27 +03:00
2007-04-30 17:31:40 +04:00
return ctdb_db ;
}
2014-03-31 08:44:53 +04:00
/*
* detach from a specific database - client call
*/
int ctdb_detach ( struct ctdb_context * ctdb , uint32_t db_id )
{
int ret ;
int32_t status ;
TDB_DATA data ;
data . dsize = sizeof ( db_id ) ;
data . dptr = ( uint8_t * ) & db_id ;
ret = ctdb_control ( ctdb , CTDB_CURRENT_NODE , 0 , CTDB_CONTROL_DB_DETACH ,
0 , data , NULL , NULL , & status , NULL , NULL ) ;
if ( ret ! = 0 | | status ! = 0 ) {
return - 1 ;
}
return 0 ;
}
2007-04-30 17:31:40 +04:00
/*
setup a call for a database
*/
int ctdb_set_call ( struct ctdb_db_context * ctdb_db , ctdb_fn_t fn , uint32_t id )
{
2008-01-08 09:23:27 +03:00
struct ctdb_registered_call * call ;
2015-07-09 15:33:23 +03:00
/* register locally */
2007-04-30 17:31:40 +04:00
call = talloc ( ctdb_db , struct ctdb_registered_call ) ;
call - > fn = fn ;
call - > id = id ;
2015-07-09 15:33:23 +03:00
DLIST_ADD ( ctdb_db - > calls , call ) ;
2007-04-30 17:31:40 +04:00
return 0 ;
}
2007-05-03 11:12:23 +04:00
2007-05-04 06:18:39 +04:00
struct traverse_state {
2007-05-03 11:12:23 +04:00
bool done ;
uint32_t count ;
2007-05-04 06:18:39 +04:00
ctdb_traverse_func fn ;
void * private_data ;
2010-12-22 14:45:06 +03:00
bool listemptyrecords ;
2007-05-03 11:12:23 +04:00
} ;
/*
2007-05-04 06:18:39 +04:00
called on each key during a ctdb_traverse
2007-05-03 11:12:23 +04:00
*/
2015-04-08 07:38:26 +03:00
static void traverse_handler ( uint64_t srvid , TDB_DATA data , void * p )
2007-05-03 11:12:23 +04:00
{
2007-05-04 06:18:39 +04:00
struct traverse_state * state = ( struct traverse_state * ) p ;
2007-05-10 11:43:45 +04:00
struct ctdb_rec_data * d = ( struct ctdb_rec_data * ) data . dptr ;
2007-05-03 11:12:23 +04:00
TDB_DATA key ;
2015-04-08 07:25:01 +03:00
if ( data . dsize < sizeof ( uint32_t ) | | d - > length ! = data . dsize ) {
DEBUG ( DEBUG_ERR , ( " Bad data size %u in traverse_handler \n " ,
( unsigned ) data . dsize ) ) ;
2012-05-17 10:08:37 +04:00
state - > done = true ;
2007-05-03 11:12:23 +04:00
return ;
}
key . dsize = d - > keylen ;
key . dptr = & d - > data [ 0 ] ;
data . dsize = d - > datalen ;
data . dptr = & d - > data [ d - > keylen ] ;
if ( key . dsize = = 0 & & data . dsize = = 0 ) {
/* end of traverse */
2012-05-17 10:08:37 +04:00
state - > done = true ;
2007-05-03 11:12:23 +04:00
return ;
}
2010-12-22 14:45:06 +03:00
if ( ! state - > listemptyrecords & &
data . dsize = = sizeof ( struct ctdb_ltdb_header ) )
{
2008-07-30 13:57:48 +04:00
/* empty records are deleted records in ctdb */
return ;
}
2015-04-08 07:24:31 +03:00
if ( state - > fn ( key , data , state - > private_data ) ! = 0 ) {
2012-05-17 10:08:37 +04:00
state - > done = true ;
2007-05-03 11:12:23 +04:00
}
state - > count + + ;
}
2010-12-22 14:45:06 +03:00
/**
* start a cluster wide traverse , calling the supplied fn on each record
* return the number of records traversed , or - 1 on error
*
* Extendet variant with a flag to signal whether empty records should
* be listed .
2007-05-03 11:12:23 +04:00
*/
2010-12-22 14:45:06 +03:00
static int ctdb_traverse_ext ( struct ctdb_db_context * ctdb_db ,
ctdb_traverse_func fn ,
bool withemptyrecords ,
void * private_data )
2007-05-03 11:12:23 +04:00
{
2007-05-04 06:18:39 +04:00
TDB_DATA data ;
2011-12-03 05:15:30 +04:00
struct ctdb_traverse_start_ext t ;
2007-05-04 06:18:39 +04:00
int32_t status ;
2007-05-03 11:12:23 +04:00
int ret ;
uint64_t srvid = ( getpid ( ) | 0xFLL < < 60 ) ;
2007-05-04 06:18:39 +04:00
struct traverse_state state ;
2007-05-03 11:12:23 +04:00
2012-05-17 10:08:37 +04:00
state . done = false ;
2007-05-03 11:12:23 +04:00
state . count = 0 ;
2007-05-04 06:18:39 +04:00
state . private_data = private_data ;
state . fn = fn ;
2010-12-22 14:45:06 +03:00
state . listemptyrecords = withemptyrecords ;
2007-05-03 11:12:23 +04:00
2010-06-02 03:51:47 +04:00
ret = ctdb_client_set_message_handler ( ctdb_db - > ctdb , srvid , traverse_handler , & state ) ;
2007-05-03 11:12:23 +04:00
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Failed to setup traverse handler \n " ) ) ;
2007-05-03 11:12:23 +04:00
return - 1 ;
}
2007-05-04 06:18:39 +04:00
t . db_id = ctdb_db - > db_id ;
t . srvid = srvid ;
t . reqid = 0 ;
2010-12-22 14:45:06 +03:00
t . withemptyrecords = withemptyrecords ;
2007-05-04 06:18:39 +04:00
data . dptr = ( uint8_t * ) & t ;
data . dsize = sizeof ( t ) ;
2011-12-03 05:15:30 +04:00
ret = ctdb_control ( ctdb_db - > ctdb , CTDB_CURRENT_NODE , 0 , CTDB_CONTROL_TRAVERSE_START_EXT , 0 ,
2007-05-12 15:25:26 +04:00
data , NULL , NULL , & status , NULL , NULL ) ;
2007-05-04 06:18:39 +04:00
if ( ret ! = 0 | | status ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " ctdb_traverse_all failed \n " ) ) ;
2010-06-02 04:05:58 +04:00
ctdb_client_remove_message_handler ( ctdb_db - > ctdb , srvid , & state ) ;
2007-05-04 06:18:39 +04:00
return - 1 ;
}
2007-05-03 11:12:23 +04:00
while ( ! state . done ) {
event_loop_once ( ctdb_db - > ctdb - > ev ) ;
}
2010-06-02 04:05:58 +04:00
ret = ctdb_client_remove_message_handler ( ctdb_db - > ctdb , srvid , & state ) ;
2007-05-04 05:41:29 +04:00
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Failed to remove ctdb_traverse handler \n " ) ) ;
2007-05-04 05:41:29 +04:00
return - 1 ;
}
2007-05-03 11:12:23 +04:00
return state . count ;
}
2007-05-04 06:18:39 +04:00
2010-12-22 14:45:06 +03:00
/**
* start a cluster wide traverse , calling the supplied fn on each record
* return the number of records traversed , or - 1 on error
*
* Standard version which does not list the empty records :
* These are considered deleted .
*/
int ctdb_traverse ( struct ctdb_db_context * ctdb_db , ctdb_traverse_func fn , void * private_data )
{
return ctdb_traverse_ext ( ctdb_db , fn , false , private_data ) ;
}
2011-04-14 14:55:57 +04:00
# define ISASCII(x) (isprint(x) && !strchr("\"\\", (x)))
2007-05-04 06:18:39 +04:00
/*
called on each key during a catdb
*/
2015-04-08 07:24:31 +03:00
int ctdb_dumpdb_record ( TDB_DATA key , TDB_DATA data , void * p )
2007-05-04 06:18:39 +04:00
{
2008-04-23 15:49:52 +04:00
int i ;
2011-11-28 20:11:16 +04:00
struct ctdb_dump_db_context * c = ( struct ctdb_dump_db_context * ) p ;
FILE * f = c - > f ;
2007-05-04 06:18:39 +04:00
struct ctdb_ltdb_header * h = ( struct ctdb_ltdb_header * ) data . dptr ;
2008-07-04 11:04:26 +04:00
fprintf ( f , " key(%u) = \" " , ( unsigned ) key . dsize ) ;
2008-04-23 15:49:52 +04:00
for ( i = 0 ; i < key . dsize ; i + + ) {
2008-07-16 06:23:18 +04:00
if ( ISASCII ( key . dptr [ i ] ) ) {
2008-04-23 15:49:52 +04:00
fprintf ( f , " %c " , key . dptr [ i ] ) ;
} else {
fprintf ( f , " \\ %02X " , key . dptr [ i ] ) ;
}
}
fprintf ( f , " \" \n " ) ;
2009-11-29 12:38:33 +03:00
fprintf ( f , " dmaster: %u \n " , h - > dmaster ) ;
fprintf ( f , " rsn: %llu \n " , ( unsigned long long ) h - > rsn ) ;
2011-11-28 20:36:03 +04:00
2015-04-08 07:24:31 +03:00
if ( c - > printlmaster & & c - > ctdb - > vnn_map ! = NULL ) {
fprintf ( f , " lmaster: %u \n " , ctdb_lmaster ( c - > ctdb , & key ) ) ;
2011-11-28 20:36:03 +04:00
}
2011-11-29 03:56:23 +04:00
if ( c - > printhash ) {
fprintf ( f , " hash: 0x%08x \n " , ctdb_hash ( & key ) ) ;
}
2011-11-29 13:24:52 +04:00
if ( c - > printrecordflags ) {
fprintf ( f , " flags: 0x%08x " , h - > flags ) ;
if ( h - > flags & CTDB_REC_FLAG_MIGRATED_WITH_DATA ) printf ( " MIGRATED_WITH_DATA " ) ;
if ( h - > flags & CTDB_REC_FLAG_VACUUM_MIGRATED ) printf ( " VACUUM_MIGRATED " ) ;
if ( h - > flags & CTDB_REC_FLAG_AUTOMATIC ) printf ( " AUTOMATIC " ) ;
if ( h - > flags & CTDB_REC_RO_HAVE_DELEGATIONS ) printf ( " RO_HAVE_DELEGATIONS " ) ;
if ( h - > flags & CTDB_REC_RO_HAVE_READONLY ) printf ( " RO_HAVE_READONLY " ) ;
if ( h - > flags & CTDB_REC_RO_REVOKING_READONLY ) printf ( " RO_REVOKING_READONLY " ) ;
if ( h - > flags & CTDB_REC_RO_REVOKE_COMPLETE ) printf ( " RO_REVOKE_COMPLETE " ) ;
fprintf ( f , " \n " ) ;
}
2009-11-29 12:38:33 +03:00
2011-11-28 20:19:03 +04:00
if ( c - > printdatasize ) {
fprintf ( f , " data size: %u \n " , ( unsigned ) data . dsize ) ;
} else {
fprintf ( f , " data(%u) = \" " , ( unsigned ) ( data . dsize - sizeof ( * h ) ) ) ;
for ( i = sizeof ( * h ) ; i < data . dsize ; i + + ) {
if ( ISASCII ( data . dptr [ i ] ) ) {
fprintf ( f , " %c " , data . dptr [ i ] ) ;
} else {
fprintf ( f , " \\ %02X " , data . dptr [ i ] ) ;
}
2008-04-23 15:49:52 +04:00
}
2011-11-28 20:19:03 +04:00
fprintf ( f , " \" \n " ) ;
2008-04-23 15:49:52 +04:00
}
2009-11-29 12:38:33 +03:00
fprintf ( f , " \n " ) ;
2007-05-04 06:18:39 +04:00
return 0 ;
}
/*
convenience function to list all keys to stdout
*/
2011-11-28 20:11:16 +04:00
int ctdb_dump_db ( struct ctdb_db_context * ctdb_db ,
struct ctdb_dump_db_context * ctx )
2007-05-04 06:18:39 +04:00
{
2011-11-28 20:11:16 +04:00
return ctdb_traverse_ext ( ctdb_db , ctdb_dumpdb_record ,
ctx - > printemptyrecords , ctx ) ;
2007-05-04 06:18:39 +04:00
}
2007-05-05 22:31:22 +04:00
/*
get the pid of a ctdb daemon
*/
int ctdb_ctrl_getpid ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t * pid )
{
int ret ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-23 11:21:14 +04:00
CTDB_CONTROL_GET_PID , 0 , tdb_null ,
NULL , NULL , & res , & timeout , NULL ) ;
2007-05-06 02:05:22 +04:00
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getpid failed \n " ) ) ;
2007-05-05 22:31:22 +04:00
return - 1 ;
}
2007-05-06 02:05:22 +04:00
* pid = res ;
2007-05-05 22:31:22 +04:00
return 0 ;
}
2007-05-12 09:15:27 +04:00
/*
2007-08-27 04:31:22 +04:00
async freeze send control
2007-05-12 09:15:27 +04:00
*/
2007-08-27 04:31:22 +04:00
struct ctdb_client_control_state *
2009-10-12 02:22:17 +04:00
ctdb_ctrl_freeze_send ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode , uint32_t priority )
2007-08-27 04:31:22 +04:00
{
2009-10-12 02:22:17 +04:00
return ctdb_control_send ( ctdb , destnode , priority ,
2007-08-27 04:31:22 +04:00
CTDB_CONTROL_FREEZE , 0 , tdb_null ,
2008-01-16 02:23:26 +03:00
mem_ctx , & timeout , NULL ) ;
2007-08-27 04:31:22 +04:00
}
/*
async freeze recv control
*/
int ctdb_ctrl_freeze_recv ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct ctdb_client_control_state * state )
2007-05-12 09:15:27 +04:00
{
int ret ;
int32_t res ;
2007-08-27 04:31:22 +04:00
ret = ctdb_control_recv ( ctdb , state , mem_ctx , NULL , & res , NULL ) ;
if ( ( ret ! = 0 ) | | ( res ! = 0 ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_freeze_recv failed \n " ) ) ;
2007-05-12 09:15:27 +04:00
return - 1 ;
}
return 0 ;
}
2007-08-27 04:31:22 +04:00
/*
2009-10-12 02:22:17 +04:00
freeze databases of a certain priority
2007-08-27 04:31:22 +04:00
*/
2009-10-12 02:22:17 +04:00
int ctdb_ctrl_freeze_priority ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t priority )
2007-08-27 04:31:22 +04:00
{
TALLOC_CTX * tmp_ctx = talloc_new ( ctdb ) ;
struct ctdb_client_control_state * state ;
int ret ;
2009-10-12 02:22:17 +04:00
state = ctdb_ctrl_freeze_send ( ctdb , tmp_ctx , timeout , destnode , priority ) ;
2007-08-27 04:31:22 +04:00
ret = ctdb_ctrl_freeze_recv ( ctdb , tmp_ctx , state ) ;
talloc_free ( tmp_ctx ) ;
return ret ;
}
2009-10-12 02:22:17 +04:00
/* Freeze all databases */
int ctdb_ctrl_freeze ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
{
2009-10-12 05:08:39 +04:00
int i ;
for ( i = 1 ; i < = NUM_DB_PRIORITIES ; i + + ) {
if ( ctdb_ctrl_freeze_priority ( ctdb , timeout , destnode , i ) ! = 0 ) {
return - 1 ;
}
}
return 0 ;
2009-10-12 02:22:17 +04:00
}
2007-05-12 09:15:27 +04:00
/*
2009-10-12 02:22:17 +04:00
thaw databases of a certain priority
2007-05-12 09:15:27 +04:00
*/
2009-10-12 02:22:17 +04:00
int ctdb_ctrl_thaw_priority ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t priority )
2007-05-12 09:15:27 +04:00
{
int ret ;
int32_t res ;
2009-10-12 02:22:17 +04:00
ret = ctdb_control ( ctdb , destnode , priority ,
2007-05-12 09:15:27 +04:00
CTDB_CONTROL_THAW , 0 , tdb_null ,
2007-05-12 15:25:26 +04:00
NULL , NULL , & res , & timeout , NULL ) ;
2007-05-12 09:15:27 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control thaw failed \n " ) ) ;
2007-05-12 09:15:27 +04:00
return - 1 ;
}
return 0 ;
}
2007-05-23 08:35:19 +04:00
2009-10-12 02:22:17 +04:00
/* thaw all databases */
int ctdb_ctrl_thaw ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
{
return ctdb_ctrl_thaw_priority ( ctdb , timeout , destnode , 0 ) ;
}
2007-05-23 08:35:19 +04:00
/*
2007-09-04 04:38:48 +04:00
get pnn of a node , or - 1
2007-05-23 08:35:19 +04:00
*/
2007-09-04 04:38:48 +04:00
int ctdb_ctrl_getpnn ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
2007-05-23 08:35:19 +04:00
{
int ret ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-09-04 04:38:48 +04:00
CTDB_CONTROL_GET_PNN , 0 , tdb_null ,
2007-05-23 08:35:19 +04:00
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getpnn failed \n " ) ) ;
2007-05-23 08:35:19 +04:00
return - 1 ;
}
return res ;
}
2007-05-23 08:50:41 +04:00
2007-05-21 03:24:34 +04:00
/*
get the monitoring mode of a remote node
*/
int ctdb_ctrl_getmonmode ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t * monmode )
{
int ret ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
2007-05-23 11:21:14 +04:00
CTDB_CONTROL_GET_MONMODE , 0 , tdb_null ,
NULL , NULL , & res , & timeout , NULL ) ;
2007-05-21 03:24:34 +04:00
if ( ret ! = 0 ) {
2008-03-25 00:27:38 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getmonmode failed \n " ) ) ;
2007-05-21 03:24:34 +04:00
return - 1 ;
}
* monmode = res ;
return 0 ;
}
2007-05-23 11:21:14 +04:00
2008-03-25 00:27:38 +03:00
/*
set the monitoring mode of a remote node to active
*/
int ctdb_ctrl_enable_monmode ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
{
int ret ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_ENABLE_MONITOR , 0 , tdb_null ,
NULL , NULL , NULL , & timeout , NULL ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for enable_monitor failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
/*
set the monitoring mode of a remote node to disable
*/
int ctdb_ctrl_disable_monmode ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
{
int ret ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_DISABLE_MONITOR , 0 , tdb_null ,
NULL , NULL , NULL , & timeout , NULL ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for disable_monitor failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2015-03-23 09:06:31 +03:00
/*
2007-05-25 07:05:25 +04:00
sent to a node to make it take over an ip address
*/
2015-03-23 09:06:31 +03:00
int ctdb_ctrl_takeover_ip ( struct ctdb_context * ctdb , struct timeval timeout ,
2007-06-04 14:07:37 +04:00
uint32_t destnode , struct ctdb_public_ip * ip )
2007-05-25 07:05:25 +04:00
{
TDB_DATA data ;
int ret ;
int32_t res ;
2015-03-23 09:06:31 +03:00
data . dsize = sizeof ( * ip ) ;
data . dptr = ( uint8_t * ) ip ;
2007-05-25 07:05:25 +04:00
2015-03-23 09:06:31 +03:00
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_TAKEOVER_IP , 0 ,
data , NULL , NULL , & res , & timeout , NULL ) ;
2007-05-25 07:05:25 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for takeover_ip failed \n " ) ) ;
2007-05-25 07:05:25 +04:00
return - 1 ;
}
2015-03-23 09:06:31 +03:00
return 0 ;
2007-05-25 07:05:25 +04:00
}
2015-03-23 09:06:31 +03:00
/*
2007-05-25 07:05:25 +04:00
sent to a node to make it release an ip address
*/
2015-03-23 09:06:31 +03:00
int ctdb_ctrl_release_ip ( struct ctdb_context * ctdb , struct timeval timeout ,
2007-06-04 14:07:37 +04:00
uint32_t destnode , struct ctdb_public_ip * ip )
2007-05-25 07:05:25 +04:00
{
TDB_DATA data ;
int ret ;
int32_t res ;
2007-06-04 14:07:37 +04:00
2015-03-23 09:06:31 +03:00
data . dsize = sizeof ( * ip ) ;
data . dptr = ( uint8_t * ) ip ;
2007-05-25 07:05:25 +04:00
2015-03-23 09:06:31 +03:00
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_RELEASE_IP , 0 ,
data , NULL , NULL , & res , & timeout , NULL ) ;
2007-05-25 07:05:25 +04:00
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for release_ip failed \n " ) ) ;
2007-05-25 07:05:25 +04:00
return - 1 ;
}
2015-03-23 09:06:31 +03:00
return 0 ;
2007-05-25 07:05:25 +04:00
}
2007-06-04 13:53:19 +04:00
/*
get a tunable
*/
int ctdb_ctrl_get_tunable ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
const char * name , uint32_t * value )
{
struct ctdb_control_get_tunable * t ;
TDB_DATA data , outdata ;
int32_t res ;
int ret ;
data . dsize = offsetof ( struct ctdb_control_get_tunable , name ) + strlen ( name ) + 1 ;
data . dptr = talloc_size ( ctdb , data . dsize ) ;
CTDB_NO_MEMORY ( ctdb , data . dptr ) ;
t = ( struct ctdb_control_get_tunable * ) data . dptr ;
t - > length = strlen ( name ) + 1 ;
memcpy ( t - > name , name , t - > length ) ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_GET_TUNABLE , 0 , data , ctdb ,
& outdata , & res , & timeout , NULL ) ;
talloc_free ( data . dptr ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get_tunable failed \n " ) ) ;
2013-05-21 09:41:56 +04:00
return ret ! = 0 ? ret : res ;
2007-06-04 13:53:19 +04:00
}
if ( outdata . dsize ! = sizeof ( uint32_t ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Invalid return data in get_tunable \n " ) ) ;
2007-06-04 13:53:19 +04:00
talloc_free ( outdata . dptr ) ;
return - 1 ;
}
* value = * ( uint32_t * ) outdata . dptr ;
talloc_free ( outdata . dptr ) ;
return 0 ;
}
/*
set a tunable
*/
int ctdb_ctrl_set_tunable ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
const char * name , uint32_t value )
{
struct ctdb_control_set_tunable * t ;
TDB_DATA data ;
int32_t res ;
int ret ;
data . dsize = offsetof ( struct ctdb_control_set_tunable , name ) + strlen ( name ) + 1 ;
data . dptr = talloc_size ( ctdb , data . dsize ) ;
CTDB_NO_MEMORY ( ctdb , data . dptr ) ;
t = ( struct ctdb_control_set_tunable * ) data . dptr ;
t - > length = strlen ( name ) + 1 ;
memcpy ( t - > name , name , t - > length ) ;
t - > value = value ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_SET_TUNABLE , 0 , data , NULL ,
NULL , & res , & timeout , NULL ) ;
talloc_free ( data . dptr ) ;
2015-02-09 02:32:47 +03:00
if ( ( ret ! = 0 ) | | ( res = = - 1 ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for set_tunable failed \n " ) ) ;
2007-06-04 13:53:19 +04:00
return - 1 ;
}
2015-02-09 02:32:47 +03:00
return res ;
2007-06-04 13:53:19 +04:00
}
/*
list tunables
*/
int ctdb_ctrl_list_tunables ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
TALLOC_CTX * mem_ctx ,
const char * * * list , uint32_t * count )
{
TDB_DATA outdata ;
int32_t res ;
int ret ;
struct ctdb_control_list_tunable * t ;
char * p , * s , * ptr ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_LIST_TUNABLES , 0 , tdb_null ,
mem_ctx , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for list_tunables failed \n " ) ) ;
2007-06-04 13:53:19 +04:00
return - 1 ;
}
t = ( struct ctdb_control_list_tunable * ) outdata . dptr ;
if ( outdata . dsize < offsetof ( struct ctdb_control_list_tunable , data ) | |
t - > length > outdata . dsize - offsetof ( struct ctdb_control_list_tunable , data ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Invalid data in list_tunables reply \n " ) ) ;
2007-06-04 13:53:19 +04:00
talloc_free ( outdata . dptr ) ;
return - 1 ;
}
p = talloc_strndup ( mem_ctx , ( char * ) t - > data , t - > length ) ;
CTDB_NO_MEMORY ( ctdb , p ) ;
talloc_free ( outdata . dptr ) ;
( * list ) = NULL ;
( * count ) = 0 ;
for ( s = strtok_r ( p , " : " , & ptr ) ; s ; s = strtok_r ( NULL , " : " , & ptr ) ) {
( * list ) = talloc_realloc ( mem_ctx , * list , const char * , 1 + ( * count ) ) ;
CTDB_NO_MEMORY ( ctdb , * list ) ;
( * list ) [ * count ] = talloc_strdup ( * list , s ) ;
CTDB_NO_MEMORY ( ctdb , ( * list ) [ * count ] ) ;
( * count ) + + ;
}
talloc_free ( p ) ;
return 0 ;
}
2007-06-04 15:11:51 +04:00
2009-12-16 17:50:06 +03:00
int ctdb_ctrl_get_public_ips_flags ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx ,
uint32_t flags ,
struct ctdb_all_public_ips * * ips )
2007-06-04 15:11:51 +04:00
{
int ret ;
TDB_DATA outdata ;
int32_t res ;
2015-03-23 09:06:31 +03:00
ret = ctdb_control ( ctdb , destnode , 0 ,
2009-12-16 17:50:06 +03:00
CTDB_CONTROL_GET_PUBLIC_IPS , flags , tdb_null ,
2007-06-04 15:11:51 +04:00
mem_ctx , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2015-03-23 09:06:31 +03:00
DEBUG ( DEBUG_ERR , ( __location__
" ctdb_control for getpublicips failed ret:%d res:%d \n " ,
ret , res ) ) ;
2007-06-04 15:11:51 +04:00
return - 1 ;
}
* ips = ( struct ctdb_all_public_ips * ) talloc_memdup ( mem_ctx , outdata . dptr , outdata . dsize ) ;
talloc_free ( outdata . dptr ) ;
2015-03-23 09:06:31 +03:00
2007-06-04 15:11:51 +04:00
return 0 ;
}
2009-12-16 17:50:06 +03:00
int ctdb_ctrl_get_public_ips ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx ,
struct ctdb_all_public_ips * * ips )
{
return ctdb_ctrl_get_public_ips_flags ( ctdb , timeout ,
destnode , mem_ctx ,
0 , ips ) ;
}
2009-12-16 16:40:21 +03:00
int ctdb_ctrl_get_public_ip_info ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx ,
const ctdb_sock_addr * addr ,
2009-12-16 18:23:08 +03:00
struct ctdb_control_public_ip_info * * _info )
2009-12-16 16:40:21 +03:00
{
2009-12-16 18:23:08 +03:00
int ret ;
TDB_DATA indata ;
TDB_DATA outdata ;
int32_t res ;
struct ctdb_control_public_ip_info * info ;
uint32_t len ;
uint32_t i ;
indata . dptr = discard_const_p ( uint8_t , addr ) ;
indata . dsize = sizeof ( * addr ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_PUBLIC_IP_INFO , 0 , indata ,
mem_ctx , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get public ip info "
" failed ret:%d res:%d \n " ,
ret , res ) ) ;
return - 1 ;
}
len = offsetof ( struct ctdb_control_public_ip_info , ifaces ) ;
if ( len > outdata . dsize ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get public ip info "
" returned invalid data with size %u > %u \n " ,
( unsigned int ) outdata . dsize ,
( unsigned int ) len ) ) ;
dump_data ( DEBUG_DEBUG , outdata . dptr , outdata . dsize ) ;
return - 1 ;
}
info = ( struct ctdb_control_public_ip_info * ) outdata . dptr ;
len + = info - > num * sizeof ( struct ctdb_control_iface_info ) ;
if ( len > outdata . dsize ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get public ip info "
" returned invalid data with size %u > %u \n " ,
( unsigned int ) outdata . dsize ,
( unsigned int ) len ) ) ;
dump_data ( DEBUG_DEBUG , outdata . dptr , outdata . dsize ) ;
return - 1 ;
}
/* make sure we null terminate the returned strings */
for ( i = 0 ; i < info - > num ; i + + ) {
info - > ifaces [ i ] . name [ CTDB_IFACE_SIZE ] = ' \0 ' ;
}
* _info = ( struct ctdb_control_public_ip_info * ) talloc_memdup ( mem_ctx ,
outdata . dptr ,
outdata . dsize ) ;
talloc_free ( outdata . dptr ) ;
if ( * _info = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get public ip info "
" talloc_memdup size %u failed \n " ,
( unsigned int ) outdata . dsize ) ) ;
return - 1 ;
}
return 0 ;
2009-12-16 16:40:21 +03:00
}
int ctdb_ctrl_get_ifaces ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx ,
2009-12-16 17:30:07 +03:00
struct ctdb_control_get_ifaces * * _ifaces )
2009-12-16 16:40:21 +03:00
{
2009-12-16 17:30:07 +03:00
int ret ;
TDB_DATA outdata ;
int32_t res ;
struct ctdb_control_get_ifaces * ifaces ;
uint32_t len ;
uint32_t i ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_IFACES , 0 , tdb_null ,
mem_ctx , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get ifaces "
" failed ret:%d res:%d \n " ,
ret , res ) ) ;
return - 1 ;
}
len = offsetof ( struct ctdb_control_get_ifaces , ifaces ) ;
if ( len > outdata . dsize ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get ifaces "
" returned invalid data with size %u > %u \n " ,
( unsigned int ) outdata . dsize ,
( unsigned int ) len ) ) ;
dump_data ( DEBUG_DEBUG , outdata . dptr , outdata . dsize ) ;
return - 1 ;
}
ifaces = ( struct ctdb_control_get_ifaces * ) outdata . dptr ;
len + = ifaces - > num * sizeof ( struct ctdb_control_iface_info ) ;
if ( len > outdata . dsize ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get ifaces "
" returned invalid data with size %u > %u \n " ,
( unsigned int ) outdata . dsize ,
( unsigned int ) len ) ) ;
dump_data ( DEBUG_DEBUG , outdata . dptr , outdata . dsize ) ;
return - 1 ;
}
/* make sure we null terminate the returned strings */
for ( i = 0 ; i < ifaces - > num ; i + + ) {
ifaces - > ifaces [ i ] . name [ CTDB_IFACE_SIZE ] = ' \0 ' ;
}
* _ifaces = ( struct ctdb_control_get_ifaces * ) talloc_memdup ( mem_ctx ,
outdata . dptr ,
outdata . dsize ) ;
talloc_free ( outdata . dptr ) ;
if ( * _ifaces = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get ifaces "
" talloc_memdup size %u failed \n " ,
( unsigned int ) outdata . dsize ) ) ;
return - 1 ;
}
return 0 ;
2009-12-16 16:40:21 +03:00
}
int ctdb_ctrl_set_iface_link ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
TALLOC_CTX * mem_ctx ,
const struct ctdb_control_iface_info * info )
{
2009-12-16 18:18:36 +03:00
int ret ;
TDB_DATA indata ;
int32_t res ;
indata . dptr = discard_const_p ( uint8_t , info ) ;
indata . dsize = sizeof ( * info ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_IFACE_LINK_STATE , 0 , indata ,
mem_ctx , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for set iface link "
" failed ret:%d res:%d \n " ,
ret , res ) ) ;
return - 1 ;
}
return 0 ;
2009-12-16 16:40:21 +03:00
}
2007-06-07 03:16:17 +04:00
/*
set / clear the permanent disabled bit on a remote node
*/
2007-06-07 09:18:55 +04:00
int ctdb_ctrl_modflags ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode ,
uint32_t set , uint32_t clear )
2007-06-07 03:16:17 +04:00
{
int ret ;
TDB_DATA data ;
2008-11-19 06:43:46 +03:00
struct ctdb_node_map * nodemap = NULL ;
struct ctdb_node_flag_change c ;
TALLOC_CTX * tmp_ctx = talloc_new ( ctdb ) ;
uint32_t recmaster ;
uint32_t * nodes ;
2007-06-07 03:16:17 +04:00
2007-06-07 09:18:55 +04:00
2008-11-19 06:43:46 +03:00
/* find the recovery master */
ret = ctdb_ctrl_getrecmaster ( ctdb , tmp_ctx , timeout , CTDB_CURRENT_NODE , & recmaster ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " Unable to get recmaster from local node \n " ) ) ;
talloc_free ( tmp_ctx ) ;
return ret ;
}
2007-06-07 03:16:17 +04:00
2008-11-19 06:43:46 +03:00
/* read the node flags from the recmaster */
ret = ctdb_ctrl_getnodemap ( ctdb , timeout , recmaster , tmp_ctx , & nodemap ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " Unable to get nodemap from node %u \n " , destnode ) ) ;
talloc_free ( tmp_ctx ) ;
return - 1 ;
}
if ( destnode > = nodemap - > num ) {
DEBUG ( DEBUG_ERR , ( __location__ " Nodemap from recmaster does not contain node %d \n " , destnode ) ) ;
talloc_free ( tmp_ctx ) ;
return - 1 ;
}
c . pnn = destnode ;
c . old_flags = nodemap - > nodes [ destnode ] . flags ;
c . new_flags = c . old_flags ;
c . new_flags | = set ;
c . new_flags & = ~ clear ;
data . dsize = sizeof ( c ) ;
data . dptr = ( unsigned char * ) & c ;
/* send the flags update to all connected nodes */
nodes = list_of_connected_nodes ( ctdb , nodemap , tmp_ctx , true ) ;
if ( ctdb_client_async_control ( ctdb , CTDB_CONTROL_MODIFY_FLAGS ,
2009-10-12 05:08:39 +04:00
nodes , 0 ,
2008-11-19 06:43:46 +03:00
timeout , false , data ,
NULL , NULL ,
NULL ) ! = 0 ) {
2009-10-09 17:47:06 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " Unable to update nodeflags on remote nodes \n " ) ) ;
2008-11-19 06:43:46 +03:00
talloc_free ( tmp_ctx ) ;
2007-06-07 03:16:17 +04:00
return - 1 ;
}
2008-11-19 06:43:46 +03:00
talloc_free ( tmp_ctx ) ;
2007-06-07 03:16:17 +04:00
return 0 ;
}
2007-06-07 12:05:25 +04:00
/*
get all tunables
*/
int ctdb_ctrl_get_all_tunables ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
struct ctdb_tunable * tunables )
{
TDB_DATA outdata ;
int ret ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_GET_ALL_TUNABLES , 0 , tdb_null , ctdb ,
& outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get all tunables failed \n " ) ) ;
2007-06-07 12:05:25 +04:00
return - 1 ;
}
if ( outdata . dsize ! = sizeof ( * tunables ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " bad data size %u in ctdb_ctrl_get_all_tunables should be %u \n " ,
2007-06-07 12:37:27 +04:00
( unsigned ) outdata . dsize , ( unsigned ) sizeof ( * tunables ) ) ) ;
2007-06-07 12:05:25 +04:00
return - 1 ;
}
* tunables = * ( struct ctdb_tunable * ) outdata . dptr ;
talloc_free ( outdata . dptr ) ;
return 0 ;
}
2007-06-07 16:06:19 +04:00
2008-03-27 01:23:27 +03:00
/*
add a public address to a node
*/
int ctdb_ctrl_add_public_ip ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
struct ctdb_control_ip_iface * pub )
{
TDB_DATA data ;
int32_t res ;
int ret ;
data . dsize = offsetof ( struct ctdb_control_ip_iface , iface ) + pub - > len ;
data . dptr = ( unsigned char * ) pub ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_ADD_PUBLIC_IP , 0 , data , NULL ,
NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for add_public_ip failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
/*
delete a public address from a node
*/
int ctdb_ctrl_del_public_ip ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
struct ctdb_control_ip_iface * pub )
{
TDB_DATA data ;
int32_t res ;
int ret ;
data . dsize = offsetof ( struct ctdb_control_ip_iface , iface ) + pub - > len ;
data . dptr = ( unsigned char * ) pub ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_DEL_PUBLIC_IP , 0 , data , NULL ,
NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for del_public_ip failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2007-06-07 16:06:19 +04:00
2007-07-12 02:30:04 +04:00
/*
kill a tcp connection
*/
int ctdb_ctrl_killtcp ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
2015-03-23 08:10:51 +03:00
struct ctdb_tcp_connection * killtcp )
2007-07-12 02:30:04 +04:00
{
TDB_DATA data ;
int32_t res ;
int ret ;
2015-03-23 08:10:51 +03:00
data . dsize = sizeof ( struct ctdb_tcp_connection ) ;
2007-07-12 02:30:04 +04:00
data . dptr = ( unsigned char * ) killtcp ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_KILL_TCP , 0 , data , NULL ,
NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for killtcp failed \n " ) ) ;
2007-07-12 02:30:04 +04:00
return - 1 ;
}
return 0 ;
}
2007-10-09 05:56:09 +04:00
/*
send a gratious arp
*/
int ctdb_ctrl_gratious_arp ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
2008-06-04 09:13:00 +04:00
ctdb_sock_addr * addr ,
2007-10-09 05:56:09 +04:00
const char * ifname )
{
TDB_DATA data ;
int32_t res ;
int ret , len ;
2008-06-04 09:13:00 +04:00
struct ctdb_control_gratious_arp * gratious_arp ;
2007-10-09 05:56:09 +04:00
TALLOC_CTX * tmp_ctx = talloc_new ( ctdb ) ;
len = strlen ( ifname ) + 1 ;
gratious_arp = talloc_size ( tmp_ctx ,
2008-06-04 09:13:00 +04:00
offsetof ( struct ctdb_control_gratious_arp , iface ) + len ) ;
2007-10-09 05:56:09 +04:00
CTDB_NO_MEMORY ( ctdb , gratious_arp ) ;
2008-06-04 09:13:00 +04:00
gratious_arp - > addr = * addr ;
2007-10-09 05:56:09 +04:00
gratious_arp - > len = len ;
memcpy ( & gratious_arp - > iface [ 0 ] , ifname , len ) ;
2008-06-04 09:13:00 +04:00
data . dsize = offsetof ( struct ctdb_control_gratious_arp , iface ) + len ;
2007-10-09 05:56:09 +04:00
data . dptr = ( unsigned char * ) gratious_arp ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_SEND_GRATIOUS_ARP , 0 , data , NULL ,
NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for gratious_arp failed \n " ) ) ;
2007-10-09 05:56:09 +04:00
talloc_free ( tmp_ctx ) ;
return - 1 ;
}
talloc_free ( tmp_ctx ) ;
return 0 ;
}
2007-07-20 09:05:55 +04:00
/*
get a list of all tcp tickles that a node knows about for a particular vnn
*/
int ctdb_ctrl_get_tcp_tickles ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
2007-09-04 03:50:07 +04:00
TALLOC_CTX * mem_ctx ,
2008-08-19 08:58:29 +04:00
ctdb_sock_addr * addr ,
2007-07-20 09:05:55 +04:00
struct ctdb_control_tcp_tickle_list * * list )
{
int ret ;
TDB_DATA data , outdata ;
int32_t status ;
2008-08-19 08:58:29 +04:00
data . dptr = ( uint8_t * ) addr ;
data . dsize = sizeof ( ctdb_sock_addr ) ;
2007-07-20 09:05:55 +04:00
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_TCP_TICKLE_LIST , 0 , data ,
mem_ctx , & outdata , & status , NULL , NULL ) ;
2008-10-15 01:33:37 +04:00
if ( ret ! = 0 | | status ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get tcp tickles failed \n " ) ) ;
2007-07-20 09:05:55 +04:00
return - 1 ;
}
* list = ( struct ctdb_control_tcp_tickle_list * ) outdata . dptr ;
return status ;
}
2007-07-12 02:30:04 +04:00
2007-08-24 09:53:41 +04:00
/*
register a server id
*/
int ctdb_ctrl_register_server_id ( struct ctdb_context * ctdb ,
struct timeval timeout ,
struct ctdb_server_id * id )
{
TDB_DATA data ;
int32_t res ;
int ret ;
data . dsize = sizeof ( struct ctdb_server_id ) ;
data . dptr = ( unsigned char * ) id ;
ret = ctdb_control ( ctdb , CTDB_CURRENT_NODE , 0 ,
CTDB_CONTROL_REGISTER_SERVER_ID ,
0 , data , NULL ,
NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for register server id failed \n " ) ) ;
2007-08-24 09:53:41 +04:00
return - 1 ;
}
return 0 ;
}
/*
unregister a server id
*/
int ctdb_ctrl_unregister_server_id ( struct ctdb_context * ctdb ,
struct timeval timeout ,
struct ctdb_server_id * id )
{
TDB_DATA data ;
int32_t res ;
int ret ;
data . dsize = sizeof ( struct ctdb_server_id ) ;
data . dptr = ( unsigned char * ) id ;
ret = ctdb_control ( ctdb , CTDB_CURRENT_NODE , 0 ,
CTDB_CONTROL_UNREGISTER_SERVER_ID ,
0 , data , NULL ,
NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for unregister server id failed \n " ) ) ;
2007-08-24 09:53:41 +04:00
return - 1 ;
}
return 0 ;
}
/*
check if a server id exists
2007-09-10 09:16:17 +04:00
if a server id does exist , return * status = = 1 , otherwise * status = = 0
2007-08-24 09:53:41 +04:00
*/
int ctdb_ctrl_check_server_id ( struct ctdb_context * ctdb ,
struct timeval timeout ,
uint32_t destnode ,
struct ctdb_server_id * id ,
uint32_t * status )
{
TDB_DATA data ;
int32_t res ;
int ret ;
data . dsize = sizeof ( struct ctdb_server_id ) ;
data . dptr = ( unsigned char * ) id ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_CHECK_SERVER_ID ,
0 , data , NULL ,
NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for check server id failed \n " ) ) ;
2007-08-24 09:53:41 +04:00
return - 1 ;
}
if ( res ) {
* status = 1 ;
} else {
* status = 0 ;
}
return 0 ;
}
2007-08-26 04:57:02 +04:00
/*
get the list of server ids that are registered on a node
*/
int ctdb_ctrl_get_server_id_list ( struct ctdb_context * ctdb ,
TALLOC_CTX * mem_ctx ,
struct timeval timeout , uint32_t destnode ,
struct ctdb_server_id_list * * svid_list )
{
int ret ;
TDB_DATA outdata ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_SERVER_ID_LIST , 0 , tdb_null ,
mem_ctx , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get_server_id_list failed \n " ) ) ;
2007-08-26 04:57:02 +04:00
return - 1 ;
}
* svid_list = ( struct ctdb_server_id_list * ) talloc_steal ( mem_ctx , outdata . dptr ) ;
return 0 ;
}
2007-08-24 09:53:41 +04:00
2007-06-07 16:06:19 +04:00
/*
initialise the ctdb daemon for client applications
NOTE : In current code the daemon does not fork . This is for testing purposes only
and to simplify the code .
*/
struct ctdb_context * ctdb_init ( struct event_context * ev )
{
2009-05-21 05:49:16 +04:00
int ret ;
2007-06-07 16:06:19 +04:00
struct ctdb_context * ctdb ;
ctdb = talloc_zero ( ev , struct ctdb_context ) ;
2009-05-21 05:49:16 +04:00
if ( ctdb = = NULL ) {
2009-05-20 14:08:13 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " talloc_zero failed. \n " ) ) ;
2009-05-21 05:49:16 +04:00
return NULL ;
}
2007-06-07 16:16:48 +04:00
ctdb - > ev = ev ;
ctdb - > idr = idr_init ( ctdb ) ;
2010-06-10 03:28:55 +04:00
/* Wrap early to exercise code. */
2010-06-10 08:30:38 +04:00
ctdb - > lastid = INT_MAX - 200 ;
2007-06-07 16:16:48 +04:00
CTDB_NO_MEMORY_NULL ( ctdb , ctdb - > idr ) ;
2007-06-07 16:06:19 +04:00
2015-04-08 07:38:26 +03:00
ret = srvid_init ( ctdb , & ctdb - > srv ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " srvid_init failed (%s) \n " , strerror ( ret ) ) ) ;
talloc_free ( ctdb ) ;
return NULL ;
}
2014-10-10 05:02:26 +04:00
ret = ctdb_set_socketname ( ctdb , CTDB_SOCKET ) ;
2009-05-21 05:49:16 +04:00
if ( ret ! = 0 ) {
2009-05-20 14:08:13 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_set_socketname failed. \n " ) ) ;
2009-05-21 05:49:16 +04:00
talloc_free ( ctdb ) ;
return NULL ;
}
2007-08-15 03:03:58 +04:00
2010-06-02 07:13:09 +04:00
ctdb - > statistics . statistics_start_time = timeval_current ( ) ;
2007-06-07 16:06:19 +04:00
return ctdb ;
}
/*
set some ctdb flags
*/
void ctdb_set_flags ( struct ctdb_context * ctdb , unsigned flags )
{
ctdb - > flags | = flags ;
}
/*
setup the local socket name
*/
int ctdb_set_socketname ( struct ctdb_context * ctdb , const char * socketname )
{
ctdb - > daemon . name = talloc_strdup ( ctdb , socketname ) ;
2009-05-21 05:49:16 +04:00
CTDB_NO_MEMORY ( ctdb , ctdb - > daemon . name ) ;
2007-06-07 16:06:19 +04:00
return 0 ;
}
2010-06-02 04:25:31 +04:00
const char * ctdb_get_socketname ( struct ctdb_context * ctdb )
{
return ctdb - > daemon . name ;
}
2007-06-07 16:06:19 +04:00
/*
2007-09-04 04:18:44 +04:00
return the pnn of this node
2007-06-07 16:06:19 +04:00
*/
2007-09-04 04:18:44 +04:00
uint32_t ctdb_get_pnn ( struct ctdb_context * ctdb )
2007-06-07 16:06:19 +04:00
{
2007-09-04 04:06:36 +04:00
return ctdb - > pnn ;
2007-06-07 16:06:19 +04:00
}
2008-01-17 03:33:23 +03:00
/*
get the uptime of a remote node
*/
struct ctdb_client_control_state *
ctdb_ctrl_uptime_send ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode )
{
return ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_UPTIME , 0 , tdb_null ,
mem_ctx , & timeout , NULL ) ;
}
int ctdb_ctrl_uptime_recv ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct ctdb_client_control_state * state , struct ctdb_uptime * * uptime )
{
int ret ;
int32_t res ;
TDB_DATA outdata ;
ret = ctdb_control_recv ( ctdb , state , mem_ctx , & outdata , & res , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_uptime_recv failed \n " ) ) ;
2008-01-17 03:33:23 +03:00
return - 1 ;
}
* uptime = ( struct ctdb_uptime * ) talloc_steal ( mem_ctx , outdata . dptr ) ;
return 0 ;
}
int ctdb_ctrl_uptime ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode , struct ctdb_uptime * * uptime )
{
struct ctdb_client_control_state * state ;
state = ctdb_ctrl_uptime_send ( ctdb , mem_ctx , timeout , destnode ) ;
return ctdb_ctrl_uptime_recv ( ctdb , mem_ctx , state , uptime ) ;
}
2008-01-29 05:59:28 +03:00
/*
send a control to execute the " recovered " event script on a node
*/
int ctdb_ctrl_end_recovery ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
{
int ret ;
int32_t status ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_END_RECOVERY , 0 , tdb_null ,
NULL , NULL , & status , & timeout , NULL ) ;
if ( ret ! = 0 | | status ! = 0 ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for end_recovery failed \n " ) ) ;
2008-01-29 05:59:28 +03:00
return - 1 ;
}
return 0 ;
}
/*
callback for the async helpers used when sending the same control
to multiple nodes in parallell .
*/
static void async_callback ( struct ctdb_client_control_state * state )
{
struct client_async_data * data = talloc_get_type ( state - > async . private_data , struct client_async_data ) ;
2008-05-06 09:42:59 +04:00
struct ctdb_context * ctdb = talloc_get_type ( state - > ctdb , struct ctdb_context ) ;
2008-01-29 05:59:28 +03:00
int ret ;
2008-05-06 09:42:59 +04:00
TDB_DATA outdata ;
2011-08-10 19:53:56 +04:00
int32_t res = - 1 ;
2008-05-06 09:42:59 +04:00
uint32_t destnode = state - > c - > hdr . destnode ;
2008-01-29 05:59:28 +03:00
2013-11-11 05:39:48 +04:00
outdata . dsize = 0 ;
outdata . dptr = NULL ;
2008-01-29 05:59:28 +03:00
/* one more node has responded with recmode data */
data - > count - - ;
/* if we failed to push the db, then return an error and let
the main loop try again .
*/
if ( state - > state ! = CTDB_CONTROL_DONE ) {
if ( ! data - > dont_log_errors ) {
2009-07-12 02:39:29 +04:00
DEBUG ( DEBUG_ERR , ( " Async operation failed with state %d, opcode:%u \n " , state - > state , data - > opcode ) ) ;
2008-01-29 05:59:28 +03:00
}
data - > fail_count + + ;
2013-05-23 10:09:38 +04:00
if ( state - > state = = CTDB_CONTROL_TIMEOUT ) {
res = - ETIME ;
} else {
res = - 1 ;
}
2008-06-12 10:53:36 +04:00
if ( data - > fail_callback ) {
data - > fail_callback ( ctdb , destnode , res , outdata ,
data - > callback_data ) ;
}
2008-01-29 05:59:28 +03:00
return ;
}
state - > async . fn = NULL ;
2008-05-06 09:42:59 +04:00
ret = ctdb_control_recv ( ctdb , state , data , & outdata , & res , NULL ) ;
2008-01-29 05:59:28 +03:00
if ( ( ret ! = 0 ) | | ( res ! = 0 ) ) {
if ( ! data - > dont_log_errors ) {
2008-07-02 06:21:53 +04:00
DEBUG ( DEBUG_ERR , ( " Async operation failed with ret=%d res=%d opcode=%u \n " , ret , ( int ) res , data - > opcode ) ) ;
2008-01-29 05:59:28 +03:00
}
data - > fail_count + + ;
2008-06-12 10:53:36 +04:00
if ( data - > fail_callback ) {
data - > fail_callback ( ctdb , destnode , res , outdata ,
data - > callback_data ) ;
}
2008-01-29 05:59:28 +03:00
}
2008-05-06 09:42:59 +04:00
if ( ( ret = = 0 ) & & ( data - > callback ! = NULL ) ) {
2008-06-12 10:53:36 +04:00
data - > callback ( ctdb , destnode , res , outdata ,
data - > callback_data ) ;
2008-05-06 09:42:59 +04:00
}
2008-01-29 05:59:28 +03:00
}
void ctdb_client_async_add ( struct client_async_data * data , struct ctdb_client_control_state * state )
{
/* set up the callback functions */
state - > async . fn = async_callback ;
state - > async . private_data = data ;
/* one more control to wait for to complete */
data - > count + + ;
}
/* wait for up to the maximum number of seconds allowed
or until all nodes we expect a response from has replied
*/
int ctdb_client_async_wait ( struct ctdb_context * ctdb , struct client_async_data * data )
{
while ( data - > count > 0 ) {
event_loop_once ( ctdb - > ev ) ;
}
if ( data - > fail_count ! = 0 ) {
if ( ! data - > dont_log_errors ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " Async wait failed - fail_count=%u \n " ,
2008-01-29 05:59:28 +03:00
data - > fail_count ) ) ;
}
return - 1 ;
}
return 0 ;
}
/*
perform a simple control on the listed nodes
The control cannot return data
*/
int ctdb_client_async_control ( struct ctdb_context * ctdb ,
enum ctdb_controls opcode ,
uint32_t * nodes ,
2009-10-12 05:08:39 +04:00
uint64_t srvid ,
2008-01-29 05:59:28 +03:00
struct timeval timeout ,
bool dont_log_errors ,
2008-05-06 09:42:59 +04:00
TDB_DATA data ,
2008-06-12 10:53:36 +04:00
client_async_callback client_callback ,
client_async_callback fail_callback ,
void * callback_data )
2008-01-29 05:59:28 +03:00
{
struct client_async_data * async_data ;
struct ctdb_client_control_state * state ;
int j , num_nodes ;
2008-05-06 09:42:59 +04:00
2008-01-29 05:59:28 +03:00
async_data = talloc_zero ( ctdb , struct client_async_data ) ;
CTDB_NO_MEMORY_FATAL ( ctdb , async_data ) ;
async_data - > dont_log_errors = dont_log_errors ;
2008-05-06 09:42:59 +04:00
async_data - > callback = client_callback ;
2008-06-12 10:53:36 +04:00
async_data - > fail_callback = fail_callback ;
async_data - > callback_data = callback_data ;
2008-07-02 06:21:53 +04:00
async_data - > opcode = opcode ;
2008-01-29 05:59:28 +03:00
num_nodes = talloc_get_size ( nodes ) / sizeof ( uint32_t ) ;
/* loop over all nodes and send an async control to each of them */
for ( j = 0 ; j < num_nodes ; j + + ) {
uint32_t pnn = nodes [ j ] ;
2009-10-12 05:08:39 +04:00
state = ctdb_control_send ( ctdb , pnn , srvid , opcode ,
2008-01-29 05:59:28 +03:00
0 , data , async_data , & timeout , NULL ) ;
if ( state = = NULL ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " Failed to call async control %u \n " , ( unsigned ) opcode ) ) ;
2008-01-29 05:59:28 +03:00
talloc_free ( async_data ) ;
return - 1 ;
}
ctdb_client_async_add ( async_data , state ) ;
}
if ( ctdb_client_async_wait ( ctdb , async_data ) ! = 0 ) {
talloc_free ( async_data ) ;
return - 1 ;
}
talloc_free ( async_data ) ;
return 0 ;
}
uint32_t * list_of_vnnmap_nodes ( struct ctdb_context * ctdb ,
struct ctdb_vnn_map * vnn_map ,
TALLOC_CTX * mem_ctx ,
bool include_self )
{
int i , j , num_nodes ;
uint32_t * nodes ;
for ( i = num_nodes = 0 ; i < vnn_map - > size ; i + + ) {
if ( vnn_map - > map [ i ] = = ctdb - > pnn & & ! include_self ) {
continue ;
}
num_nodes + + ;
}
nodes = talloc_array ( mem_ctx , uint32_t , num_nodes ) ;
CTDB_NO_MEMORY_FATAL ( ctdb , nodes ) ;
for ( i = j = 0 ; i < vnn_map - > size ; i + + ) {
if ( vnn_map - > map [ i ] = = ctdb - > pnn & & ! include_self ) {
continue ;
}
nodes [ j + + ] = vnn_map - > map [ i ] ;
}
return nodes ;
}
2013-02-19 07:29:06 +04:00
/* Get list of nodes not including those with flags specified by mask.
* If exclude_pnn is not - 1 then exclude that pnn from the list .
*/
uint32_t * list_of_nodes ( struct ctdb_context * ctdb ,
struct ctdb_node_map * node_map ,
TALLOC_CTX * mem_ctx ,
uint32_t mask ,
int exclude_pnn )
{
int i , j , num_nodes ;
uint32_t * nodes ;
for ( i = num_nodes = 0 ; i < node_map - > num ; i + + ) {
if ( node_map - > nodes [ i ] . flags & mask ) {
continue ;
}
if ( node_map - > nodes [ i ] . pnn = = exclude_pnn ) {
continue ;
}
num_nodes + + ;
}
nodes = talloc_array ( mem_ctx , uint32_t , num_nodes ) ;
CTDB_NO_MEMORY_FATAL ( ctdb , nodes ) ;
for ( i = j = 0 ; i < node_map - > num ; i + + ) {
if ( node_map - > nodes [ i ] . flags & mask ) {
continue ;
}
if ( node_map - > nodes [ i ] . pnn = = exclude_pnn ) {
continue ;
}
nodes [ j + + ] = node_map - > nodes [ i ] . pnn ;
}
return nodes ;
}
2008-01-29 05:59:28 +03:00
uint32_t * list_of_active_nodes ( struct ctdb_context * ctdb ,
struct ctdb_node_map * node_map ,
TALLOC_CTX * mem_ctx ,
bool include_self )
{
2013-02-19 07:30:50 +04:00
return list_of_nodes ( ctdb , node_map , mem_ctx , NODE_FLAGS_INACTIVE ,
include_self ? - 1 : ctdb - > pnn ) ;
2008-01-29 05:59:28 +03:00
}
2008-02-29 04:37:42 +03:00
2008-11-19 06:43:46 +03:00
uint32_t * list_of_connected_nodes ( struct ctdb_context * ctdb ,
struct ctdb_node_map * node_map ,
TALLOC_CTX * mem_ctx ,
bool include_self )
{
2013-02-19 07:30:50 +04:00
return list_of_nodes ( ctdb , node_map , mem_ctx , NODE_FLAGS_DISCONNECTED ,
include_self ? - 1 : ctdb - > pnn ) ;
2008-11-19 06:43:46 +03:00
}
2008-02-29 04:37:42 +03:00
/*
this is used to test if a pnn lock exists and if it exists will return
the number of connections that pnn has reported or - 1 if that recovery
daemon is not running .
*/
int
ctdb_read_pnn_lock ( int fd , int32_t pnn )
{
struct flock lock ;
char c ;
lock . l_type = F_WRLCK ;
lock . l_whence = SEEK_SET ;
lock . l_start = pnn ;
lock . l_len = 1 ;
lock . l_pid = 0 ;
if ( fcntl ( fd , F_GETLK , & lock ) ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " F_GETLK failed with %s \n " , strerror ( errno ) ) ) ;
return - 1 ;
}
if ( lock . l_type = = F_UNLCK ) {
return - 1 ;
}
if ( pread ( fd , & c , 1 , pnn ) = = - 1 ) {
DEBUG ( DEBUG_CRIT , ( __location__ " failed read pnn count - %s \n " , strerror ( errno ) ) ) ;
return - 1 ;
}
return c ;
}
2008-05-06 04:02:27 +04:00
/*
get capabilities of a remote node
*/
struct ctdb_client_control_state *
ctdb_ctrl_getcapabilities_send ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode )
{
return ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_CAPABILITIES , 0 , tdb_null ,
mem_ctx , & timeout , NULL ) ;
}
int ctdb_ctrl_getcapabilities_recv ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct ctdb_client_control_state * state , uint32_t * capabilities )
{
int ret ;
int32_t res ;
2008-05-06 09:42:59 +04:00
TDB_DATA outdata ;
2008-05-06 04:02:27 +04:00
2008-05-06 09:42:59 +04:00
ret = ctdb_control_recv ( ctdb , state , mem_ctx , & outdata , & res , NULL ) ;
if ( ( ret ! = 0 ) | | ( res ! = 0 ) ) {
2008-05-06 04:02:27 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_getcapabilities_recv failed \n " ) ) ;
return - 1 ;
}
if ( capabilities ) {
2008-05-06 09:42:59 +04:00
* capabilities = * ( ( uint32_t * ) outdata . dptr ) ;
2008-05-06 04:02:27 +04:00
}
return 0 ;
}
int ctdb_ctrl_getcapabilities ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t * capabilities )
{
struct ctdb_client_control_state * state ;
TALLOC_CTX * tmp_ctx = talloc_new ( NULL ) ;
int ret ;
state = ctdb_ctrl_getcapabilities_send ( ctdb , tmp_ctx , timeout , destnode ) ;
ret = ctdb_ctrl_getcapabilities_recv ( ctdb , tmp_ctx , state , capabilities ) ;
talloc_free ( tmp_ctx ) ;
return ret ;
}
2008-07-30 13:57:48 +04:00
2014-07-31 09:06:19 +04:00
static void get_capabilities_callback ( struct ctdb_context * ctdb ,
uint32_t node_pnn , int32_t res ,
TDB_DATA outdata , void * callback_data )
{
struct ctdb_node_capabilities * caps =
talloc_get_type ( callback_data ,
struct ctdb_node_capabilities ) ;
if ( ( outdata . dsize ! = sizeof ( uint32_t ) ) | | ( outdata . dptr = = NULL ) ) {
DEBUG ( DEBUG_ERR , ( __location__ " Invalid length/pointer for getcap callback : %u %p \n " , ( unsigned ) outdata . dsize , outdata . dptr ) ) ;
return ;
}
if ( node_pnn > = talloc_array_length ( caps ) ) {
DEBUG ( DEBUG_ERR ,
( __location__ " unexpected PNN %u \n " , node_pnn ) ) ;
return ;
}
caps [ node_pnn ] . retrieved = true ;
caps [ node_pnn ] . capabilities = * ( ( uint32_t * ) outdata . dptr ) ;
}
struct ctdb_node_capabilities *
ctdb_get_capabilities ( struct ctdb_context * ctdb ,
TALLOC_CTX * mem_ctx ,
struct timeval timeout ,
struct ctdb_node_map * nodemap )
{
uint32_t * nodes ;
uint32_t i , res ;
struct ctdb_node_capabilities * ret ;
nodes = list_of_connected_nodes ( ctdb , nodemap , mem_ctx , true ) ;
ret = talloc_array ( mem_ctx , struct ctdb_node_capabilities ,
nodemap - > num ) ;
CTDB_NO_MEMORY_NULL ( ctdb , ret ) ;
/* Prepopulate the expected PNNs */
for ( i = 0 ; i < talloc_array_length ( ret ) ; i + + ) {
ret [ i ] . retrieved = false ;
}
res = ctdb_client_async_control ( ctdb , CTDB_CONTROL_GET_CAPABILITIES ,
nodes , 0 , timeout ,
false , tdb_null ,
get_capabilities_callback , NULL ,
ret ) ;
if ( res ! = 0 ) {
DEBUG ( DEBUG_ERR ,
( __location__ " Failed to read node capabilities. \n " ) ) ;
TALLOC_FREE ( ret ) ;
}
return ret ;
}
uint32_t *
ctdb_get_node_capabilities ( struct ctdb_node_capabilities * caps ,
uint32_t pnn )
{
if ( pnn < talloc_array_length ( caps ) & & caps [ pnn ] . retrieved ) {
return & caps [ pnn ] . capabilities ;
}
return NULL ;
}
bool ctdb_node_has_capabilities ( struct ctdb_node_capabilities * caps ,
uint32_t pnn ,
uint32_t capabilities_required )
{
uint32_t * capp = ctdb_get_node_capabilities ( caps , pnn ) ;
return ( capp ! = NULL ) & &
( ( * capp & capabilities_required ) = = capabilities_required ) ;
}
2013-10-04 09:37:24 +04:00
struct server_id {
uint64_t pid ;
uint32_t task_id ;
uint32_t vnn ;
uint64_t unique_id ;
} ;
2014-10-10 10:35:08 +04:00
static struct server_id server_id_fetch ( struct ctdb_context * ctdb , uint32_t reqid )
2013-10-04 09:37:24 +04:00
{
struct server_id id ;
id . pid = getpid ( ) ;
id . task_id = reqid ;
id . vnn = ctdb_get_pnn ( ctdb ) ;
id . unique_id = id . vnn ;
id . unique_id = ( id . unique_id < < 32 ) | reqid ;
return id ;
}
2014-08-15 10:12:43 +04:00
/* This is basically a copy from Samba's server_id.*. However, a
* dependency chain stops us from using Samba ' s version , so use a
* renamed copy until a better solution is found . */
static bool ctdb_server_id_equal ( struct server_id * id1 , struct server_id * id2 )
2013-10-04 09:37:24 +04:00
{
if ( id1 - > pid ! = id2 - > pid ) {
return false ;
}
if ( id1 - > task_id ! = id2 - > task_id ) {
return false ;
}
if ( id1 - > vnn ! = id2 - > vnn ) {
return false ;
}
if ( id1 - > unique_id ! = id2 - > unique_id ) {
return false ;
}
return true ;
}
static bool server_id_exists ( struct ctdb_context * ctdb , struct server_id * id )
{
struct ctdb_server_id sid ;
int ret ;
2015-04-21 11:34:54 +03:00
uint32_t result = 0 ;
2013-10-04 09:37:24 +04:00
sid . type = SERVER_TYPE_SAMBA ;
sid . pnn = id - > vnn ;
sid . server_id = id - > pid ;
ret = ctdb_ctrl_check_server_id ( ctdb , timeval_current_ofs ( 3 , 0 ) ,
id - > vnn , & sid , & result ) ;
if ( ret ! = 0 ) {
/* If control times out, assume server_id exists. */
return true ;
}
if ( result ) {
return true ;
}
return false ;
}
2013-10-04 09:38:04 +04:00
enum g_lock_type {
G_LOCK_READ = 0 ,
G_LOCK_WRITE = 1 ,
} ;
struct g_lock_rec {
enum g_lock_type type ;
struct server_id id ;
} ;
struct g_lock_recs {
unsigned int num ;
struct g_lock_rec * lock ;
} ;
static bool g_lock_parse ( TALLOC_CTX * mem_ctx , TDB_DATA data ,
struct g_lock_recs * * locks )
{
struct g_lock_recs * recs ;
recs = talloc_zero ( mem_ctx , struct g_lock_recs ) ;
if ( recs = = NULL ) {
return false ;
}
if ( data . dsize = = 0 ) {
goto done ;
}
if ( data . dsize % sizeof ( struct g_lock_rec ) ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " invalid data size %lu in g_lock record \n " ,
2013-10-11 08:53:40 +04:00
( unsigned long ) data . dsize ) ) ;
2013-10-04 09:38:04 +04:00
talloc_free ( recs ) ;
return false ;
}
recs - > num = data . dsize / sizeof ( struct g_lock_rec ) ;
recs - > lock = talloc_memdup ( mem_ctx , data . dptr , data . dsize ) ;
if ( recs - > lock = = NULL ) {
talloc_free ( recs ) ;
return false ;
}
done :
if ( locks ! = NULL ) {
* locks = recs ;
}
return true ;
}
static bool g_lock_lock ( TALLOC_CTX * mem_ctx ,
struct ctdb_db_context * ctdb_db ,
const char * keyname , uint32_t reqid )
{
TDB_DATA key , data ;
struct ctdb_record_handle * h ;
struct g_lock_recs * locks ;
struct server_id id ;
2013-11-07 08:54:20 +04:00
struct timeval t_start ;
2013-10-04 09:38:04 +04:00
int i ;
key . dptr = ( uint8_t * ) discard_const ( keyname ) ;
key . dsize = strlen ( keyname ) + 1 ;
2013-11-07 08:54:20 +04:00
t_start = timeval_current ( ) ;
again :
/* Keep trying for an hour. */
if ( timeval_elapsed ( & t_start ) > 3600 ) {
return false ;
}
2013-10-04 09:38:04 +04:00
h = ctdb_fetch_lock ( ctdb_db , mem_ctx , key , & data ) ;
if ( h = = NULL ) {
return false ;
}
if ( ! g_lock_parse ( h , data , & locks ) ) {
DEBUG ( DEBUG_ERR , ( " g_lock: error parsing locks \n " ) ) ;
talloc_free ( data . dptr ) ;
talloc_free ( h ) ;
return false ;
}
talloc_free ( data . dptr ) ;
2014-10-10 10:35:08 +04:00
id = server_id_fetch ( ctdb_db - > ctdb , reqid ) ;
2013-10-04 09:38:04 +04:00
i = 0 ;
while ( i < locks - > num ) {
2014-08-15 10:12:43 +04:00
if ( ctdb_server_id_equal ( & locks - > lock [ i ] . id , & id ) ) {
2013-10-04 09:38:04 +04:00
/* Internal error */
talloc_free ( h ) ;
return false ;
}
if ( ! server_id_exists ( ctdb_db - > ctdb , & locks - > lock [ i ] . id ) ) {
if ( i < locks - > num - 1 ) {
locks - > lock [ i ] = locks - > lock [ locks - > num - 1 ] ;
}
locks - > num - - ;
continue ;
}
/* This entry is locked. */
DEBUG ( DEBUG_INFO , ( " g_lock: lock already granted for "
" pid=0x%llx taskid=%x vnn=%d id=0x%llx \n " ,
( unsigned long long ) id . pid ,
id . task_id , id . vnn ,
( unsigned long long ) id . unique_id ) ) ;
talloc_free ( h ) ;
2013-11-07 08:54:20 +04:00
goto again ;
2013-10-04 09:38:04 +04:00
}
locks - > lock = talloc_realloc ( locks , locks - > lock , struct g_lock_rec ,
locks - > num + 1 ) ;
if ( locks - > lock = = NULL ) {
talloc_free ( h ) ;
return false ;
}
locks - > lock [ locks - > num ] . type = G_LOCK_WRITE ;
locks - > lock [ locks - > num ] . id = id ;
locks - > num + + ;
data . dptr = ( uint8_t * ) locks - > lock ;
data . dsize = locks - > num * sizeof ( struct g_lock_rec ) ;
if ( ctdb_record_store ( h , data ) ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " g_lock: failed to write transaction lock for "
" pid=0x%llx taskid=%x vnn=%d id=0x%llx \n " ,
( unsigned long long ) id . pid ,
id . task_id , id . vnn ,
( unsigned long long ) id . unique_id ) ) ;
talloc_free ( h ) ;
return false ;
}
DEBUG ( DEBUG_INFO , ( " g_lock: lock granted for "
" pid=0x%llx taskid=%x vnn=%d id=0x%llx \n " ,
( unsigned long long ) id . pid ,
id . task_id , id . vnn ,
( unsigned long long ) id . unique_id ) ) ;
talloc_free ( h ) ;
return true ;
}
static bool g_lock_unlock ( TALLOC_CTX * mem_ctx ,
struct ctdb_db_context * ctdb_db ,
const char * keyname , uint32_t reqid )
{
TDB_DATA key , data ;
struct ctdb_record_handle * h ;
struct g_lock_recs * locks ;
struct server_id id ;
int i ;
bool found = false ;
key . dptr = ( uint8_t * ) discard_const ( keyname ) ;
key . dsize = strlen ( keyname ) + 1 ;
h = ctdb_fetch_lock ( ctdb_db , mem_ctx , key , & data ) ;
if ( h = = NULL ) {
return false ;
}
if ( ! g_lock_parse ( h , data , & locks ) ) {
DEBUG ( DEBUG_ERR , ( " g_lock: error parsing locks \n " ) ) ;
talloc_free ( data . dptr ) ;
talloc_free ( h ) ;
return false ;
}
talloc_free ( data . dptr ) ;
2014-10-10 10:35:08 +04:00
id = server_id_fetch ( ctdb_db - > ctdb , reqid ) ;
2013-10-04 09:38:04 +04:00
for ( i = 0 ; i < locks - > num ; i + + ) {
2014-08-15 10:12:43 +04:00
if ( ctdb_server_id_equal ( & locks - > lock [ i ] . id , & id ) ) {
2013-10-04 09:38:04 +04:00
if ( i < locks - > num - 1 ) {
locks - > lock [ i ] = locks - > lock [ locks - > num - 1 ] ;
}
locks - > num - - ;
found = true ;
break ;
}
}
if ( ! found ) {
DEBUG ( DEBUG_ERR , ( " g_lock: lock not found \n " ) ) ;
talloc_free ( h ) ;
return false ;
}
data . dptr = ( uint8_t * ) locks - > lock ;
data . dsize = locks - > num * sizeof ( struct g_lock_rec ) ;
if ( ctdb_record_store ( h , data ) ! = 0 ) {
talloc_free ( h ) ;
return false ;
}
talloc_free ( h ) ;
return true ;
}
2013-09-23 12:30:04 +04:00
struct ctdb_transaction_handle {
struct ctdb_db_context * ctdb_db ;
struct ctdb_db_context * g_lock_db ;
char * lock_name ;
uint32_t reqid ;
/*
* we store reads and writes done under a transaction :
* - one list stores both reads and writes ( m_all )
* - the other just writes ( m_write )
*/
struct ctdb_marshall_buffer * m_all ;
struct ctdb_marshall_buffer * m_write ;
} ;
static int ctdb_transaction_destructor ( struct ctdb_transaction_handle * h )
{
g_lock_unlock ( h , h - > g_lock_db , h - > lock_name , h - > reqid ) ;
ctdb_reqid_remove ( h - > ctdb_db - > ctdb , h - > reqid ) ;
return 0 ;
}
/**
* start a transaction on a database
*/
struct ctdb_transaction_handle * ctdb_transaction_start ( struct ctdb_db_context * ctdb_db ,
TALLOC_CTX * mem_ctx )
{
struct ctdb_transaction_handle * h ;
struct ctdb_server_id id ;
h = talloc_zero ( mem_ctx , struct ctdb_transaction_handle ) ;
if ( h = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " memory allocation error \n " ) ) ;
return NULL ;
}
h - > ctdb_db = ctdb_db ;
h - > lock_name = talloc_asprintf ( h , " transaction_db_0x%08x " ,
( unsigned int ) ctdb_db - > db_id ) ;
if ( h - > lock_name = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " talloc asprintf failed \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
h - > g_lock_db = ctdb_attach ( h - > ctdb_db - > ctdb , timeval_current_ofs ( 3 , 0 ) ,
" g_lock.tdb " , false , 0 ) ;
if ( ! h - > g_lock_db ) {
DEBUG ( DEBUG_ERR , ( __location__ " unable to attach to g_lock.tdb \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
id . type = SERVER_TYPE_SAMBA ;
id . pnn = ctdb_get_pnn ( ctdb_db - > ctdb ) ;
id . server_id = getpid ( ) ;
if ( ctdb_ctrl_register_server_id ( ctdb_db - > ctdb , timeval_current_ofs ( 3 , 0 ) ,
& id ) ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " unable to register server id \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
h - > reqid = ctdb_reqid_new ( h - > ctdb_db - > ctdb , h ) ;
if ( ! g_lock_lock ( h , h - > g_lock_db , h - > lock_name , h - > reqid ) ) {
DEBUG ( DEBUG_ERR , ( __location__ " Error locking g_lock.tdb \n " ) ) ;
talloc_free ( h ) ;
return NULL ;
}
talloc_set_destructor ( h , ctdb_transaction_destructor ) ;
return h ;
}
/**
* fetch a record inside a transaction
*/
int ctdb_transaction_fetch ( struct ctdb_transaction_handle * h ,
TALLOC_CTX * mem_ctx ,
TDB_DATA key , TDB_DATA * data )
{
struct ctdb_ltdb_header header ;
int ret ;
ZERO_STRUCT ( header ) ;
ret = ctdb_ltdb_fetch ( h - > ctdb_db , key , & header , mem_ctx , data ) ;
if ( ret = = - 1 & & header . dmaster = = ( uint32_t ) - 1 ) {
/* record doesn't exist yet */
* data = tdb_null ;
ret = 0 ;
}
if ( ret ! = 0 ) {
return ret ;
}
h - > m_all = ctdb_marshall_add ( h , h - > m_all , h - > ctdb_db - > db_id , 1 , key , NULL , * data ) ;
if ( h - > m_all = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " Failed to add to marshalling record \n " ) ) ;
return - 1 ;
}
return 0 ;
}
/**
* stores a record inside a transaction
*/
int ctdb_transaction_store ( struct ctdb_transaction_handle * h ,
TDB_DATA key , TDB_DATA data )
{
TALLOC_CTX * tmp_ctx = talloc_new ( h ) ;
struct ctdb_ltdb_header header ;
TDB_DATA olddata ;
int ret ;
/* we need the header so we can update the RSN */
ret = ctdb_ltdb_fetch ( h - > ctdb_db , key , & header , tmp_ctx , & olddata ) ;
if ( ret = = - 1 & & header . dmaster = = ( uint32_t ) - 1 ) {
/* the record doesn't exist - create one with us as dmaster.
This is only safe because we are in a transaction and this
is a persistent database */
ZERO_STRUCT ( header ) ;
} else if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " Failed to fetch record \n " ) ) ;
talloc_free ( tmp_ctx ) ;
return ret ;
}
if ( data . dsize = = olddata . dsize & &
memcmp ( data . dptr , olddata . dptr , data . dsize ) = = 0 & &
header . rsn ! = 0 ) {
/* save writing the same data */
talloc_free ( tmp_ctx ) ;
return 0 ;
}
header . dmaster = h - > ctdb_db - > ctdb - > pnn ;
header . rsn + + ;
h - > m_all = ctdb_marshall_add ( h , h - > m_all , h - > ctdb_db - > db_id , 0 , key , NULL , data ) ;
if ( h - > m_all = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " Failed to add to marshalling record \n " ) ) ;
talloc_free ( tmp_ctx ) ;
return - 1 ;
}
h - > m_write = ctdb_marshall_add ( h , h - > m_write , h - > ctdb_db - > db_id , 0 , key , & header , data ) ;
if ( h - > m_write = = NULL ) {
DEBUG ( DEBUG_ERR , ( __location__ " Failed to add to marshalling record \n " ) ) ;
talloc_free ( tmp_ctx ) ;
return - 1 ;
}
talloc_free ( tmp_ctx ) ;
return 0 ;
}
static int ctdb_fetch_db_seqnum ( struct ctdb_db_context * ctdb_db , uint64_t * seqnum )
{
const char * keyname = CTDB_DB_SEQNUM_KEY ;
TDB_DATA key , data ;
struct ctdb_ltdb_header header ;
int ret ;
key . dptr = ( uint8_t * ) discard_const ( keyname ) ;
key . dsize = strlen ( keyname ) + 1 ;
ret = ctdb_ltdb_fetch ( ctdb_db , key , & header , ctdb_db , & data ) ;
if ( ret ! = 0 ) {
* seqnum = 0 ;
return 0 ;
}
2013-11-13 10:45:25 +04:00
if ( data . dsize = = 0 ) {
* seqnum = 0 ;
return 0 ;
}
2013-09-23 12:30:04 +04:00
if ( data . dsize ! = sizeof ( * seqnum ) ) {
DEBUG ( DEBUG_ERR , ( __location__ " Invalid data recived len=%zi \n " ,
data . dsize ) ) ;
talloc_free ( data . dptr ) ;
return - 1 ;
}
* seqnum = * ( uint64_t * ) data . dptr ;
talloc_free ( data . dptr ) ;
return 0 ;
}
static int ctdb_store_db_seqnum ( struct ctdb_transaction_handle * h ,
uint64_t seqnum )
{
const char * keyname = CTDB_DB_SEQNUM_KEY ;
TDB_DATA key , data ;
key . dptr = ( uint8_t * ) discard_const ( keyname ) ;
key . dsize = strlen ( keyname ) + 1 ;
data . dptr = ( uint8_t * ) & seqnum ;
data . dsize = sizeof ( seqnum ) ;
return ctdb_transaction_store ( h , key , data ) ;
}
/**
* commit a transaction
*/
int ctdb_transaction_commit ( struct ctdb_transaction_handle * h )
{
int ret ;
uint64_t old_seqnum , new_seqnum ;
int32_t status ;
struct timeval timeout ;
if ( h - > m_write = = NULL ) {
/* no changes were made */
talloc_free ( h ) ;
return 0 ;
}
ret = ctdb_fetch_db_seqnum ( h - > ctdb_db , & old_seqnum ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " failed to fetch db sequence number \n " ) ) ;
ret = - 1 ;
goto done ;
}
new_seqnum = old_seqnum + 1 ;
ret = ctdb_store_db_seqnum ( h , new_seqnum ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " failed to store db sequence number \n " ) ) ;
ret = - 1 ;
goto done ;
}
again :
timeout = timeval_current_ofs ( 3 , 0 ) ;
ret = ctdb_control ( h - > ctdb_db - > ctdb , CTDB_CURRENT_NODE ,
h - > ctdb_db - > db_id ,
CTDB_CONTROL_TRANS3_COMMIT , 0 ,
ctdb_marshall_finish ( h - > m_write ) , NULL , NULL ,
& status , & timeout , NULL ) ;
if ( ret ! = 0 | | status ! = 0 ) {
/*
* TRANS3_COMMIT control will only fail if recovery has been
* triggered . Check if the database has been updated or not .
*/
ret = ctdb_fetch_db_seqnum ( h - > ctdb_db , & new_seqnum ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " failed to fetch db sequence number \n " ) ) ;
goto done ;
}
if ( new_seqnum = = old_seqnum ) {
/* Database not yet updated, try again */
goto again ;
}
if ( new_seqnum ! = ( old_seqnum + 1 ) ) {
DEBUG ( DEBUG_ERR , ( __location__ " new seqnum [%llu] != old seqnum [%llu] + 1 \n " ,
( long long unsigned ) new_seqnum ,
( long long unsigned ) old_seqnum ) ) ;
ret = - 1 ;
goto done ;
}
}
ret = 0 ;
done :
talloc_free ( h ) ;
return ret ;
}
/**
* cancel a transaction
*/
int ctdb_transaction_cancel ( struct ctdb_transaction_handle * h )
{
talloc_free ( h ) ;
return 0 ;
}
2008-09-09 07:44:46 +04:00
/*
recovery daemon ping to main daemon
*/
int ctdb_ctrl_recd_ping ( struct ctdb_context * ctdb )
{
int ret ;
int32_t res ;
ret = ctdb_control ( ctdb , CTDB_CURRENT_NODE , 0 , CTDB_CONTROL_RECD_PING , 0 , tdb_null ,
ctdb , NULL , & res , NULL , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " Failed to send recd ping \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2009-03-23 04:37:30 +03:00
2012-10-02 05:51:24 +04:00
/* When forking the main daemon and the child process needs to connect
* back to the daemon as a client process , this function can be used
* to change the ctdb context from daemon into client mode . The child
* process must be created using ctdb_fork ( ) and not fork ( ) -
* ctdb_fork ( ) does some necessary housekeeping .
2009-03-23 04:37:30 +03:00
*/
2010-07-19 13:59:09 +04:00
int switch_from_server_to_client ( struct ctdb_context * ctdb , const char * fmt , . . . )
2009-03-23 04:37:30 +03:00
{
int ret ;
2010-07-19 13:59:09 +04:00
va_list ap ;
/* Add extra information so we can identify this in the logs */
va_start ( ap , fmt ) ;
2010-08-20 05:03:17 +04:00
debug_extra = talloc_strdup_append ( talloc_vasprintf ( NULL , fmt , ap ) , " : " ) ;
2010-07-19 13:59:09 +04:00
va_end ( ap ) ;
2009-03-23 04:37:30 +03:00
/* get a new event context */
ctdb - > ev = event_context_init ( ctdb ) ;
2010-08-18 04:11:59 +04:00
tevent_loop_allow_nesting ( ctdb - > ev ) ;
2009-03-23 04:37:30 +03:00
2012-10-02 05:51:24 +04:00
/* Connect to main CTDB daemon */
2009-03-23 04:37:30 +03:00
ret = ctdb_socket_connect ( ctdb ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ALERT , ( __location__ " Failed to init ctdb client \n " ) ) ;
return - 1 ;
}
2012-02-21 00:03:44 +04:00
ctdb - > can_send_controls = true ;
return 0 ;
2009-03-23 04:37:30 +03:00
}
2009-03-23 11:07:45 +03:00
/*
2009-12-07 18:20:55 +03:00
get the status of running the monitor eventscripts : NULL means never run .
2009-03-23 11:07:45 +03:00
*/
int ctdb_ctrl_getscriptstatus ( struct ctdb_context * ctdb ,
struct timeval timeout , uint32_t destnode ,
2009-12-07 18:20:55 +03:00
TALLOC_CTX * mem_ctx , enum ctdb_eventscript_call type ,
2011-11-11 07:03:59 +04:00
struct ctdb_scripts_wire * * scripts )
2009-03-23 11:07:45 +03:00
{
int ret ;
2009-12-07 18:20:55 +03:00
TDB_DATA outdata , indata ;
2009-03-23 11:07:45 +03:00
int32_t res ;
2009-12-07 18:20:55 +03:00
uint32_t uinttype = type ;
indata . dptr = ( uint8_t * ) & uinttype ;
indata . dsize = sizeof ( uinttype ) ;
2009-03-23 11:07:45 +03:00
ret = ctdb_control ( ctdb , destnode , 0 ,
2009-12-07 18:20:55 +03:00
CTDB_CONTROL_GET_EVENT_SCRIPT_STATUS , 0 , indata ,
2009-03-23 11:07:45 +03:00
mem_ctx , & outdata , & res , & timeout , NULL ) ;
2009-12-07 18:20:55 +03:00
if ( ret ! = 0 | | res ! = 0 ) {
2009-03-23 11:07:45 +03:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getscriptstatus failed ret:%d res:%d \n " , ret , res ) ) ;
return - 1 ;
}
2009-12-07 18:20:55 +03:00
if ( outdata . dsize = = 0 ) {
2011-11-11 07:03:59 +04:00
* scripts = NULL ;
2009-12-07 18:20:55 +03:00
} else {
2011-11-11 07:03:59 +04:00
* scripts = ( struct ctdb_scripts_wire * ) talloc_memdup ( mem_ctx , outdata . dptr , outdata . dsize ) ;
2009-12-07 18:20:55 +03:00
talloc_free ( outdata . dptr ) ;
}
2009-03-23 11:07:45 +03:00
return 0 ;
}
2009-05-14 04:33:25 +04:00
/*
tell the main daemon how long it took to lock the reclock file
*/
int ctdb_ctrl_report_recd_lock_latency ( struct ctdb_context * ctdb , struct timeval timeout , double latency )
{
int ret ;
int32_t res ;
TDB_DATA data ;
data . dptr = ( uint8_t * ) & latency ;
data . dsize = sizeof ( latency ) ;
ret = ctdb_control ( ctdb , CTDB_CURRENT_NODE , 0 , CTDB_CONTROL_RECD_RECLOCK_LATENCY , 0 , data ,
ctdb , NULL , & res , NULL , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " Failed to send recd reclock latency \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2009-06-25 06:17:19 +04:00
/*
get the name of the reclock file
*/
int ctdb_ctrl_getreclock ( struct ctdb_context * ctdb , struct timeval timeout ,
uint32_t destnode , TALLOC_CTX * mem_ctx ,
const char * * name )
{
int ret ;
int32_t res ;
TDB_DATA data ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_RECLOCK_FILE , 0 , tdb_null ,
mem_ctx , & data , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
return - 1 ;
}
2009-06-25 06:26:14 +04:00
if ( data . dsize = = 0 ) {
* name = NULL ;
} else {
2009-06-25 08:25:18 +04:00
* name = talloc_strdup ( mem_ctx , discard_const ( data . dptr ) ) ;
2009-06-25 06:26:14 +04:00
}
talloc_free ( data . dptr ) ;
2009-06-25 06:17:19 +04:00
return 0 ;
}
2009-06-25 08:25:18 +04:00
/*
set the reclock filename for a node
*/
int ctdb_ctrl_setreclock ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , const char * reclock )
{
int ret ;
TDB_DATA data ;
int32_t res ;
if ( reclock = = NULL ) {
data . dsize = 0 ;
data . dptr = NULL ;
} else {
data . dsize = strlen ( reclock ) + 1 ;
data . dptr = discard_const ( reclock ) ;
}
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_RECLOCK_FILE , 0 , data ,
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for setreclock failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2009-07-09 06:22:46 +04:00
/*
stop a node
*/
int ctdb_ctrl_stop_node ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
{
int ret ;
2009-07-29 03:58:40 +04:00
int32_t res ;
2009-07-09 06:22:46 +04:00
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_STOP_NODE , 0 , tdb_null ,
2009-07-29 03:58:40 +04:00
ctdb , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
2009-07-09 06:22:46 +04:00
DEBUG ( DEBUG_ERR , ( " Failed to stop node \n " ) ) ;
return - 1 ;
}
return 0 ;
}
/*
continue a node
*/
int ctdb_ctrl_continue_node ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode )
{
int ret ;
ret = ctdb_control ( ctdb , destnode , 0 , CTDB_CONTROL_CONTINUE_NODE , 0 , tdb_null ,
ctdb , NULL , NULL , & timeout , NULL ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " Failed to continue node \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2009-07-28 03:58:11 +04:00
/*
set the natgw state for a node
*/
int ctdb_ctrl_setnatgwstate ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t natgwstate )
{
int ret ;
TDB_DATA data ;
int32_t res ;
data . dsize = sizeof ( natgwstate ) ;
data . dptr = ( uint8_t * ) & natgwstate ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_NATGWSTATE , 0 , data ,
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for setnatgwstate failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2009-07-28 07:45:13 +04:00
/*
set the lmaster role for a node
*/
int ctdb_ctrl_setlmasterrole ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t lmasterrole )
{
int ret ;
TDB_DATA data ;
int32_t res ;
data . dsize = sizeof ( lmasterrole ) ;
data . dptr = ( uint8_t * ) & lmasterrole ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_LMASTERROLE , 0 , data ,
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for setlmasterrole failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
/*
set the recmaster role for a node
*/
int ctdb_ctrl_setrecmasterrole ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t recmasterrole )
{
int ret ;
TDB_DATA data ;
int32_t res ;
data . dsize = sizeof ( recmasterrole ) ;
data . dptr = ( uint8_t * ) & recmasterrole ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_RECMASTERROLE , 0 , data ,
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for setrecmasterrole failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2009-08-13 07:04:08 +04:00
/* enable an eventscript
*/
int ctdb_ctrl_enablescript ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , const char * script )
{
int ret ;
TDB_DATA data ;
int32_t res ;
data . dsize = strlen ( script ) + 1 ;
data . dptr = discard_const ( script ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_ENABLE_SCRIPT , 0 , data ,
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for enablescript failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
/* disable an eventscript
*/
int ctdb_ctrl_disablescript ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , const char * script )
{
int ret ;
TDB_DATA data ;
int32_t res ;
data . dsize = strlen ( script ) + 1 ;
data . dptr = discard_const ( script ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_DISABLE_SCRIPT , 0 , data ,
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for disablescript failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
2009-09-03 20:20:39 +04:00
int ctdb_ctrl_set_ban ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , struct ctdb_ban_time * bantime )
{
int ret ;
TDB_DATA data ;
int32_t res ;
data . dsize = sizeof ( * bantime ) ;
data . dptr = ( uint8_t * ) bantime ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_BAN_STATE , 0 , data ,
NULL , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for set ban state failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
int ctdb_ctrl_get_ban ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , TALLOC_CTX * mem_ctx , struct ctdb_ban_time * * bantime )
{
int ret ;
TDB_DATA outdata ;
int32_t res ;
TALLOC_CTX * tmp_ctx = talloc_new ( NULL ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_BAN_STATE , 0 , tdb_null ,
tmp_ctx , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for set ban state failed \n " ) ) ;
talloc_free ( tmp_ctx ) ;
return - 1 ;
}
* bantime = ( struct ctdb_ban_time * ) talloc_steal ( mem_ctx , outdata . dptr ) ;
talloc_free ( tmp_ctx ) ;
return 0 ;
}
2009-10-10 07:26:09 +04:00
int ctdb_ctrl_set_db_priority ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , struct ctdb_db_priority * db_prio )
{
int ret ;
int32_t res ;
TDB_DATA data ;
TALLOC_CTX * tmp_ctx = talloc_new ( NULL ) ;
data . dptr = ( uint8_t * ) db_prio ;
data . dsize = sizeof ( * db_prio ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_DB_PRIORITY , 0 , data ,
tmp_ctx , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for set_db_priority failed \n " ) ) ;
talloc_free ( tmp_ctx ) ;
return - 1 ;
}
talloc_free ( tmp_ctx ) ;
return 0 ;
}
2009-10-10 08:04:18 +04:00
int ctdb_ctrl_get_db_priority ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , uint32_t db_id , uint32_t * priority )
{
int ret ;
int32_t res ;
TDB_DATA data ;
TALLOC_CTX * tmp_ctx = talloc_new ( NULL ) ;
data . dptr = ( uint8_t * ) & db_id ;
data . dsize = sizeof ( db_id ) ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_DB_PRIORITY , 0 , data ,
tmp_ctx , NULL , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res < 0 ) {
2012-01-18 15:06:01 +04:00
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for get_db_priority failed \n " ) ) ;
2009-10-10 08:04:18 +04:00
talloc_free ( tmp_ctx ) ;
return - 1 ;
}
if ( priority ) {
* priority = res ;
}
talloc_free ( tmp_ctx ) ;
return 0 ;
}
2010-09-29 06:13:05 +04:00
int ctdb_ctrl_getstathistory ( struct ctdb_context * ctdb , struct timeval timeout , uint32_t destnode , TALLOC_CTX * mem_ctx , struct ctdb_statistics_wire * * stats )
{
int ret ;
TDB_DATA outdata ;
int32_t res ;
ret = ctdb_control ( ctdb , destnode , 0 ,
CTDB_CONTROL_GET_STAT_HISTORY , 0 , tdb_null ,
mem_ctx , & outdata , & res , & timeout , NULL ) ;
if ( ret ! = 0 | | res ! = 0 | | outdata . dsize = = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_control for getstathistory failed ret:%d res:%d \n " , ret , res ) ) ;
return - 1 ;
}
* stats = ( struct ctdb_statistics_wire * ) talloc_memdup ( mem_ctx , outdata . dptr , outdata . dsize ) ;
talloc_free ( outdata . dptr ) ;
return 0 ;
}
2010-12-21 17:29:23 +03:00
struct ctdb_ltdb_header * ctdb_header_from_record_handle ( struct ctdb_record_handle * h )
{
if ( h = = NULL ) {
return NULL ;
}
return & h - > header ;
}
2011-07-20 06:06:37 +04:00
struct ctdb_client_control_state *
ctdb_ctrl_updaterecord_send ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode , struct ctdb_db_context * ctdb_db , TDB_DATA key , struct ctdb_ltdb_header * header , TDB_DATA data )
{
struct ctdb_client_control_state * handle ;
struct ctdb_marshall_buffer * m ;
struct ctdb_rec_data * rec ;
TDB_DATA outdata ;
m = talloc_zero ( mem_ctx , struct ctdb_marshall_buffer ) ;
if ( m = = NULL ) {
DEBUG ( DEBUG_ERR , ( " Failed to allocate marshall buffer for update record \n " ) ) ;
return NULL ;
}
m - > db_id = ctdb_db - > db_id ;
rec = ctdb_marshall_record ( m , 0 , key , header , data ) ;
if ( rec = = NULL ) {
DEBUG ( DEBUG_ERR , ( " Failed to marshall record for update record \n " ) ) ;
talloc_free ( m ) ;
return NULL ;
}
m = talloc_realloc_size ( mem_ctx , m , rec - > length + offsetof ( struct ctdb_marshall_buffer , data ) ) ;
if ( m = = NULL ) {
DEBUG ( DEBUG_CRIT , ( __location__ " Failed to expand recdata \n " ) ) ;
talloc_free ( m ) ;
return NULL ;
}
m - > count + + ;
memcpy ( ( uint8_t * ) m + offsetof ( struct ctdb_marshall_buffer , data ) , rec , rec - > length ) ;
outdata . dptr = ( uint8_t * ) m ;
outdata . dsize = talloc_get_size ( m ) ;
handle = ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_UPDATE_RECORD , 0 , outdata ,
mem_ctx , & timeout , NULL ) ;
talloc_free ( m ) ;
return handle ;
}
int ctdb_ctrl_updaterecord_recv ( struct ctdb_context * ctdb , struct ctdb_client_control_state * state )
{
int ret ;
int32_t res ;
ret = ctdb_control_recv ( ctdb , state , state , NULL , & res , NULL ) ;
if ( ( ret ! = 0 ) | | ( res ! = 0 ) ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_update_record_recv failed \n " ) ) ;
return - 1 ;
}
return 0 ;
}
int
ctdb_ctrl_updaterecord ( struct ctdb_context * ctdb , TALLOC_CTX * mem_ctx , struct timeval timeout , uint32_t destnode , struct ctdb_db_context * ctdb_db , TDB_DATA key , struct ctdb_ltdb_header * header , TDB_DATA data )
{
struct ctdb_client_control_state * state ;
state = ctdb_ctrl_updaterecord_send ( ctdb , mem_ctx , timeout , destnode , ctdb_db , key , header , data ) ;
return ctdb_ctrl_updaterecord_recv ( ctdb , state ) ;
}
2011-09-01 05:08:18 +04:00
/*
set a database to be readonly
*/
struct ctdb_client_control_state *
ctdb_ctrl_set_db_readonly_send ( struct ctdb_context * ctdb , uint32_t destnode , uint32_t dbid )
{
TDB_DATA data ;
data . dptr = ( uint8_t * ) & dbid ;
data . dsize = sizeof ( dbid ) ;
return ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_DB_READONLY , 0 , data ,
ctdb , NULL , NULL ) ;
}
int ctdb_ctrl_set_db_readonly_recv ( struct ctdb_context * ctdb , struct ctdb_client_control_state * state )
{
int ret ;
int32_t res ;
ret = ctdb_control_recv ( ctdb , state , ctdb , NULL , & res , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_set_db_readonly_recv failed ret:%d res:%d \n " , ret , res ) ) ;
return - 1 ;
}
return 0 ;
}
int ctdb_ctrl_set_db_readonly ( struct ctdb_context * ctdb , uint32_t destnode , uint32_t dbid )
{
struct ctdb_client_control_state * state ;
state = ctdb_ctrl_set_db_readonly_send ( ctdb , destnode , dbid ) ;
return ctdb_ctrl_set_db_readonly_recv ( ctdb , state ) ;
}
2012-03-20 09:58:35 +04:00
/*
set a database to be sticky
*/
struct ctdb_client_control_state *
ctdb_ctrl_set_db_sticky_send ( struct ctdb_context * ctdb , uint32_t destnode , uint32_t dbid )
{
TDB_DATA data ;
data . dptr = ( uint8_t * ) & dbid ;
data . dsize = sizeof ( dbid ) ;
return ctdb_control_send ( ctdb , destnode , 0 ,
CTDB_CONTROL_SET_DB_STICKY , 0 , data ,
ctdb , NULL , NULL ) ;
}
int ctdb_ctrl_set_db_sticky_recv ( struct ctdb_context * ctdb , struct ctdb_client_control_state * state )
{
int ret ;
int32_t res ;
ret = ctdb_control_recv ( ctdb , state , ctdb , NULL , & res , NULL ) ;
if ( ret ! = 0 | | res ! = 0 ) {
DEBUG ( DEBUG_ERR , ( __location__ " ctdb_ctrl_set_db_sticky_recv failed ret:%d res:%d \n " , ret , res ) ) ;
return - 1 ;
}
return 0 ;
}
int ctdb_ctrl_set_db_sticky ( struct ctdb_context * ctdb , uint32_t destnode , uint32_t dbid )
{
struct ctdb_client_control_state * state ;
state = ctdb_ctrl_set_db_sticky_send ( ctdb , destnode , dbid ) ;
return ctdb_ctrl_set_db_sticky_recv ( ctdb , state ) ;
}