2015-04-14 17:14:25 +03:00
/*
CTDB client code
Copyright ( C ) Amitay Isaacs 2015
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
the Free Software Foundation ; either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , see < http : //www.gnu.org/licenses/>.
*/
# include "replace.h"
# include "system/network.h"
# include "system/filesys.h"
# include <talloc.h>
# include <tevent.h>
# include <tdb.h>
# include "common/reqid.h"
# include "common/srvid.h"
# include "common/comm.h"
2015-11-11 07:17:56 +03:00
# include "common/logging.h"
2015-04-14 17:14:25 +03:00
# include "lib/util/tevent_unix.h"
# include "lib/util/debug.h"
# include "protocol/protocol.h"
# include "protocol/protocol_api.h"
# include "client/client_private.h"
# include "client/client.h"
2017-05-06 13:01:30 +03:00
# include "client/client_sync.h"
2015-04-14 17:14:25 +03:00
2017-11-28 13:17:37 +03:00
static void client_read_handler ( uint8_t * buf , size_t buflen ,
void * private_data ) ;
static void client_dead_handler ( void * private_data ) ;
struct ctdb_client_init_state {
struct ctdb_client_context * client ;
} ;
2015-04-14 17:14:25 +03:00
2015-10-14 07:30:14 +03:00
static int ctdb_client_context_destructor ( struct ctdb_client_context * client ) ;
2017-11-28 13:17:37 +03:00
static void ctdb_client_init_done ( struct tevent_req * subreq ) ;
2015-10-14 07:30:14 +03:00
2017-11-28 13:17:37 +03:00
struct tevent_req * ctdb_client_init_send ( TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
const char * sockpath )
2015-04-14 17:14:25 +03:00
{
2017-11-28 13:17:37 +03:00
struct tevent_req * req , * subreq ;
struct ctdb_client_init_state * state ;
2015-04-14 17:14:25 +03:00
struct ctdb_client_context * client ;
2017-11-28 13:17:37 +03:00
struct ctdb_req_control request ;
struct sockaddr_un addr ;
size_t len ;
2015-04-14 17:14:25 +03:00
int ret ;
2017-11-28 13:17:37 +03:00
req = tevent_req_create ( mem_ctx , & state ,
struct ctdb_client_init_state ) ;
if ( req = = NULL ) {
return NULL ;
}
if ( sockpath = = NULL ) {
D_ERR ( " socket path cannot be NULL \n " ) ;
tevent_req_error ( req , EINVAL ) ;
return tevent_req_post ( req , ev ) ;
}
client = talloc_zero ( state , struct ctdb_client_context ) ;
if ( tevent_req_nomem ( client , req ) ) {
return tevent_req_post ( req , ev ) ;
2015-04-14 17:14:25 +03:00
}
ret = reqid_init ( client , INT_MAX - 200 , & client - > idr ) ;
if ( ret ! = 0 ) {
2017-11-28 13:17:37 +03:00
D_ERR ( " reqid_init() failed, ret=%d \n " , ret ) ;
2015-04-14 17:14:25 +03:00
talloc_free ( client ) ;
2017-11-28 13:17:37 +03:00
tevent_req_error ( req , ret ) ;
return tevent_req_post ( req , ev ) ;
2015-04-14 17:14:25 +03:00
}
ret = srvid_init ( client , & client - > srv ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " srvid_init() failed, ret=%d \n " , ret ) ) ;
talloc_free ( client ) ;
2017-11-28 13:17:37 +03:00
tevent_req_error ( req , ret ) ;
return tevent_req_post ( req , ev ) ;
2015-04-14 17:14:25 +03:00
}
2017-04-06 12:33:47 +03:00
ret = srvid_init ( client , & client - > tunnels ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_ERR , ( " srvid_init() failed, ret=%d \n " , ret ) ) ;
talloc_free ( client ) ;
2017-11-28 13:17:37 +03:00
tevent_req_error ( req , ret ) ;
return tevent_req_post ( req , ev ) ;
2017-04-06 12:33:47 +03:00
}
2017-11-28 13:17:37 +03:00
memset ( & addr , 0 , sizeof ( addr ) ) ;
addr . sun_family = AF_UNIX ;
len = strlcpy ( addr . sun_path , sockpath , sizeof ( addr . sun_path ) ) ;
if ( len ! = strlen ( sockpath ) ) {
D_ERR ( " socket path too long, len=%zu \n " , strlen ( sockpath ) ) ;
talloc_free ( client ) ;
tevent_req_error ( req , ENAMETOOLONG ) ;
return tevent_req_post ( req , ev ) ;
}
client - > fd = socket ( AF_UNIX , SOCK_STREAM , 0 ) ;
if ( client - > fd = = - 1 ) {
ret = errno ;
D_ERR ( " socket() failed, errno=%d \n " , ret ) ;
talloc_free ( client ) ;
tevent_req_error ( req , ret ) ;
return tevent_req_post ( req , ev ) ;
}
ret = connect ( client - > fd , ( struct sockaddr * ) & addr , sizeof ( addr ) ) ;
if ( ret = = - 1 ) {
ret = errno ;
DEBUG ( DEBUG_ERR , ( " connect() failed, errno=%d \n " , ret ) ) ;
close ( client - > fd ) ;
talloc_free ( client ) ;
tevent_req_error ( req , ret ) ;
return tevent_req_post ( req , ev ) ;
}
2015-04-14 17:14:25 +03:00
2017-11-28 13:17:37 +03:00
ret = comm_setup ( client , ev , client - > fd , client_read_handler , client ,
client_dead_handler , client , & client - > comm ) ;
2015-04-14 17:14:25 +03:00
if ( ret ! = 0 ) {
2017-11-28 13:17:37 +03:00
DEBUG ( DEBUG_ERR , ( " comm_setup() failed, ret=%d \n " , ret ) ) ;
close ( client - > fd ) ;
2015-04-14 17:14:25 +03:00
talloc_free ( client ) ;
2017-11-28 13:17:37 +03:00
tevent_req_error ( req , ret ) ;
return tevent_req_post ( req , ev ) ;
2015-04-14 17:14:25 +03:00
}
2017-11-28 13:17:37 +03:00
client - > pnn = CTDB_UNKNOWN_PNN ;
2015-10-14 07:30:14 +03:00
talloc_set_destructor ( client , ctdb_client_context_destructor ) ;
2017-11-28 13:17:37 +03:00
state - > client = client ;
ctdb_req_control_get_pnn ( & request ) ;
subreq = ctdb_client_control_send ( state , ev , client ,
CTDB_CURRENT_NODE ,
tevent_timeval_zero ( ) ,
& request ) ;
if ( tevent_req_nomem ( subreq , req ) ) {
TALLOC_FREE ( state - > client ) ;
return tevent_req_post ( req , ev ) ;
}
tevent_req_set_callback ( subreq , ctdb_client_init_done , req ) ;
return req ;
2015-04-14 17:14:25 +03:00
}
2015-10-14 07:30:14 +03:00
static int ctdb_client_context_destructor ( struct ctdb_client_context * client )
{
if ( client - > fd ! = - 1 ) {
close ( client - > fd ) ;
client - > fd = - 1 ;
}
return 0 ;
}
2017-11-28 13:17:37 +03:00
static void ctdb_client_init_done ( struct tevent_req * subreq )
2015-04-14 17:14:25 +03:00
{
2017-11-28 13:17:37 +03:00
struct tevent_req * req = tevent_req_callback_data (
subreq , struct tevent_req ) ;
struct ctdb_client_init_state * state = tevent_req_data (
req , struct ctdb_client_init_state ) ;
struct ctdb_reply_control * reply ;
int ret ;
bool status ;
2015-04-14 17:14:25 +03:00
2017-11-28 13:17:37 +03:00
status = ctdb_client_control_recv ( subreq , & ret , state , & reply ) ;
TALLOC_FREE ( subreq ) ;
if ( ! status ) {
tevent_req_error ( req , ret ) ;
return ;
2015-04-14 17:14:25 +03:00
}
2017-11-28 13:17:37 +03:00
ret = ctdb_reply_control_get_pnn ( reply , & state - > client - > pnn ) ;
if ( ret ! = 0 ) {
tevent_req_error ( req , ret ) ;
return ;
2015-04-14 17:14:25 +03:00
}
2017-11-28 13:17:37 +03:00
tevent_req_done ( req ) ;
}
2015-04-14 17:14:25 +03:00
2017-11-28 13:17:37 +03:00
bool ctdb_client_init_recv ( struct tevent_req * req , int * perr ,
TALLOC_CTX * mem_ctx ,
struct ctdb_client_context * * result )
{
struct ctdb_client_init_state * state = tevent_req_data (
req , struct ctdb_client_init_state ) ;
int ret ;
if ( tevent_req_is_unix_error ( req , & ret ) ) {
if ( perr ! = NULL ) {
* perr = ret ;
}
return false ;
2015-04-14 17:14:25 +03:00
}
2017-11-28 13:17:37 +03:00
* result = talloc_steal ( mem_ctx , state - > client ) ;
return true ;
}
int ctdb_client_init ( TALLOC_CTX * mem_ctx , struct tevent_context * ev ,
const char * sockpath , struct ctdb_client_context * * out )
{
struct tevent_req * req ;
int ret ;
bool status ;
req = ctdb_client_init_send ( mem_ctx , ev , sockpath ) ;
if ( req = = NULL ) {
return ENOMEM ;
2015-04-14 17:14:25 +03:00
}
2017-11-28 13:17:37 +03:00
tevent_req_poll ( req , ev ) ;
status = ctdb_client_init_recv ( req , & ret , mem_ctx , out ) ;
TALLOC_FREE ( req ) ;
if ( ! status ) {
2015-04-14 17:14:25 +03:00
return ret ;
}
return 0 ;
}
static void client_read_handler ( uint8_t * buf , size_t buflen ,
void * private_data )
{
struct ctdb_client_context * client = talloc_get_type_abort (
private_data , struct ctdb_client_context ) ;
struct ctdb_req_header hdr ;
2017-07-19 04:12:08 +03:00
size_t np ;
2015-04-14 17:14:25 +03:00
int ret ;
2017-07-19 04:12:08 +03:00
ret = ctdb_req_header_pull ( buf , buflen , & hdr , & np ) ;
2015-04-14 17:14:25 +03:00
if ( ret ! = 0 ) {
DEBUG ( DEBUG_WARNING , ( " invalid header, ret=%d \n " , ret ) ) ;
return ;
}
if ( buflen ! = hdr . length ) {
DEBUG ( DEBUG_WARNING , ( " packet size mismatch %zu != %d \n " ,
buflen , hdr . length ) ) ;
return ;
}
ret = ctdb_req_header_verify ( & hdr , 0 ) ;
if ( ret ! = 0 ) {
DEBUG ( DEBUG_WARNING , ( " invalid header, ret=%d \n " , ret ) ) ;
return ;
}
switch ( hdr . operation ) {
case CTDB_REPLY_CALL :
ctdb_client_reply_call ( client , buf , buflen , hdr . reqid ) ;
break ;
case CTDB_REQ_MESSAGE :
ctdb_client_req_message ( client , buf , buflen , hdr . reqid ) ;
break ;
case CTDB_REPLY_CONTROL :
ctdb_client_reply_control ( client , buf , buflen , hdr . reqid ) ;
break ;
2017-04-06 12:33:47 +03:00
case CTDB_REQ_TUNNEL :
ctdb_client_req_tunnel ( client , buf , buflen , hdr . reqid ) ;
break ;
2015-04-14 17:14:25 +03:00
default :
break ;
}
}
static void client_dead_handler ( void * private_data )
{
struct ctdb_client_context * client = talloc_get_type_abort (
private_data , struct ctdb_client_context ) ;
2015-10-14 07:36:55 +03:00
ctdb_client_callback_func_t callback = client - > callback ;
void * callback_data = client - > private_data ;
2015-04-14 17:14:25 +03:00
2015-10-14 07:36:55 +03:00
if ( callback ! = NULL ) {
callback ( callback_data ) ;
return ;
}
DEBUG ( DEBUG_NOTICE , ( " connection to daemon closed, exiting \n " ) ) ;
2015-04-14 17:14:25 +03:00
exit ( 1 ) ;
}
2015-10-14 07:36:55 +03:00
void ctdb_client_set_disconnect_callback ( struct ctdb_client_context * client ,
ctdb_client_callback_func_t callback ,
void * private_data )
{
client - > callback = callback ;
client - > private_data = private_data ;
}
2015-04-14 17:14:25 +03:00
uint32_t ctdb_client_pnn ( struct ctdb_client_context * client )
{
return client - > pnn ;
}
void ctdb_client_wait ( struct tevent_context * ev , bool * done )
{
while ( ! ( * done ) ) {
tevent_loop_once ( ev ) ;
}
}
2015-11-10 08:59:21 +03:00
static void ctdb_client_wait_timeout_handler ( struct tevent_context * ev ,
struct tevent_timer * te ,
struct timeval t ,
void * private_data )
{
bool * timed_out = ( bool * ) private_data ;
* timed_out = true ;
}
2020-05-04 12:01:09 +03:00
int ctdb_client_wait_func_timeout ( struct tevent_context * ev ,
bool ( * done_func ) ( void * private_data ) ,
void * private_data ,
struct timeval timeout )
2015-11-10 08:59:21 +03:00
{
TALLOC_CTX * mem_ctx ;
struct tevent_timer * timer ;
bool timed_out = false ;
mem_ctx = talloc_new ( ev ) ;
if ( mem_ctx = = NULL ) {
return ENOMEM ;
}
timer = tevent_add_timer ( ev , mem_ctx , timeout ,
ctdb_client_wait_timeout_handler ,
& timed_out ) ;
if ( timer = = NULL ) {
talloc_free ( mem_ctx ) ;
return ENOMEM ;
}
2020-05-04 12:01:09 +03:00
while ( ! ( done_func ( private_data ) ) & & ! timed_out ) {
2015-11-10 08:59:21 +03:00
tevent_loop_once ( ev ) ;
}
talloc_free ( mem_ctx ) ;
if ( timed_out ) {
2018-07-10 11:48:53 +03:00
return ETIMEDOUT ;
2015-11-10 08:59:21 +03:00
}
return 0 ;
}
2020-05-04 12:01:09 +03:00
static bool client_wait_done ( void * private_data )
{
bool * done = ( bool * ) private_data ;
return * done ;
}
int ctdb_client_wait_timeout ( struct tevent_context * ev ,
bool * done ,
struct timeval timeout )
{
int ret ;
ret = ctdb_client_wait_func_timeout ( ev ,
client_wait_done ,
done ,
timeout ) ;
return ret ;
}
2015-04-14 17:14:25 +03:00
struct ctdb_recovery_wait_state {
struct tevent_context * ev ;
struct ctdb_client_context * client ;
} ;
2015-11-06 07:44:27 +03:00
static void ctdb_recovery_wait_recmode ( struct tevent_req * subreq ) ;
2015-04-14 17:14:25 +03:00
static void ctdb_recovery_wait_retry ( struct tevent_req * subreq ) ;
struct tevent_req * ctdb_recovery_wait_send ( TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
struct ctdb_client_context * client )
{
struct tevent_req * req , * subreq ;
struct ctdb_recovery_wait_state * state ;
2015-11-06 07:44:27 +03:00
struct ctdb_req_control request ;
2015-04-14 17:14:25 +03:00
req = tevent_req_create ( mem_ctx , & state ,
struct ctdb_recovery_wait_state ) ;
if ( req = = NULL ) {
return NULL ;
}
state - > ev = ev ;
state - > client = client ;
2015-11-06 07:44:27 +03:00
ctdb_req_control_get_recmode ( & request ) ;
subreq = ctdb_client_control_send ( state , ev , client , client - > pnn ,
tevent_timeval_zero ( ) , & request ) ;
2015-04-14 17:14:25 +03:00
if ( tevent_req_nomem ( subreq , req ) ) {
return tevent_req_post ( req , ev ) ;
}
2015-11-06 07:44:27 +03:00
tevent_req_set_callback ( subreq , ctdb_recovery_wait_recmode , req ) ;
2015-04-14 17:14:25 +03:00
return req ;
}
2015-11-06 07:44:27 +03:00
static void ctdb_recovery_wait_recmode ( struct tevent_req * subreq )
2015-04-14 17:14:25 +03:00
{
struct tevent_req * req = tevent_req_callback_data (
subreq , struct tevent_req ) ;
struct ctdb_recovery_wait_state * state = tevent_req_data (
req , struct ctdb_recovery_wait_state ) ;
2015-11-06 07:44:27 +03:00
struct ctdb_reply_control * reply ;
int recmode ;
int ret ;
2015-04-14 17:14:25 +03:00
bool status ;
2015-11-06 07:44:27 +03:00
status = ctdb_client_control_recv ( subreq , & ret , state , & reply ) ;
2015-04-14 17:14:25 +03:00
TALLOC_FREE ( subreq ) ;
if ( ! status ) {
2015-11-06 07:44:27 +03:00
tevent_req_error ( req , ret ) ;
2015-04-14 17:14:25 +03:00
return ;
}
2015-11-06 07:44:27 +03:00
ret = ctdb_reply_control_get_recmode ( reply , & recmode ) ;
2015-04-14 17:14:25 +03:00
if ( ret ! = 0 ) {
tevent_req_error ( req , ret ) ;
return ;
}
if ( recmode = = CTDB_RECOVERY_NORMAL ) {
tevent_req_done ( req ) ;
return ;
}
subreq = tevent_wakeup_send ( state , state - > ev ,
tevent_timeval_current_ofs ( 1 , 0 ) ) ;
if ( tevent_req_nomem ( subreq , req ) ) {
return ;
}
tevent_req_set_callback ( subreq , ctdb_recovery_wait_retry , req ) ;
}
2015-11-06 07:44:27 +03:00
static void ctdb_recovery_wait_retry ( struct tevent_req * subreq )
{
struct tevent_req * req = tevent_req_callback_data (
subreq , struct tevent_req ) ;
struct ctdb_recovery_wait_state * state = tevent_req_data (
req , struct ctdb_recovery_wait_state ) ;
struct ctdb_req_control request ;
bool status ;
status = tevent_wakeup_recv ( subreq ) ;
TALLOC_FREE ( subreq ) ;
if ( ! status ) {
tevent_req_error ( req , ENOMEM ) ;
return ;
}
ctdb_req_control_get_recmode ( & request ) ;
subreq = ctdb_client_control_send ( state , state - > ev , state - > client ,
state - > client - > pnn ,
tevent_timeval_zero ( ) , & request ) ;
if ( tevent_req_nomem ( subreq , req ) ) {
return ;
}
tevent_req_set_callback ( subreq , ctdb_recovery_wait_recmode , req ) ;
}
2015-04-14 17:14:25 +03:00
bool ctdb_recovery_wait_recv ( struct tevent_req * req , int * perr )
{
int err ;
if ( tevent_req_is_unix_error ( req , & err ) ) {
if ( perr ! = NULL ) {
* perr = err ;
}
return false ;
}
return true ;
}
2015-11-17 08:58:26 +03:00
bool ctdb_recovery_wait ( struct tevent_context * ev ,
struct ctdb_client_context * client )
{
TALLOC_CTX * mem_ctx ;
struct tevent_req * req ;
bool status ;
mem_ctx = talloc_new ( client ) ;
if ( mem_ctx = = NULL ) {
return false ;
}
req = ctdb_recovery_wait_send ( mem_ctx , ev , client ) ;
if ( req = = NULL ) {
return false ;
}
tevent_req_poll ( req , ev ) ;
status = ctdb_recovery_wait_recv ( req , NULL ) ;
talloc_free ( mem_ctx ) ;
return status ;
}