mirror of
https://github.com/samba-team/samba.git
synced 2025-11-15 16:23:49 +03:00
649 lines
17 KiB
C
649 lines
17 KiB
C
/*
|
|
ctdb_call protocol code
|
|
|
|
Copyright (C) Andrew Tridgell 2006
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
/*
|
|
see http://wiki.samba.org/index.php/Samba_%26_Clustering for
|
|
protocol design and packet details
|
|
*/
|
|
#include "includes.h"
|
|
#include "lib/events/events.h"
|
|
#include "lib/tdb/include/tdb.h"
|
|
#include "system/network.h"
|
|
#include "system/filesys.h"
|
|
#include "cluster/ctdb/include/ctdb_private.h"
|
|
|
|
|
|
/*
|
|
queue a packet or die
|
|
*/
|
|
static void ctdb_queue_packet(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
|
|
{
|
|
struct ctdb_node *node;
|
|
DEBUG(0,("queueing destnode=%u srcnode=%u\n", hdr->destnode, hdr->srcnode));
|
|
node = ctdb->nodes[hdr->destnode];
|
|
if (ctdb->methods->queue_pkt(node, (uint8_t *)hdr, hdr->length) != 0) {
|
|
ctdb_fatal(ctdb, "Unable to queue packet\n");
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
local version of ctdb_call
|
|
*/
|
|
static int ctdb_call_local(struct ctdb_context *ctdb, TDB_DATA key,
|
|
struct ctdb_ltdb_header *header, TDB_DATA *data,
|
|
int call_id, TDB_DATA *call_data, TDB_DATA *reply_data,
|
|
uint32_t caller)
|
|
{
|
|
struct ctdb_call *c;
|
|
struct ctdb_registered_call *fn;
|
|
|
|
c = talloc(ctdb, struct ctdb_call);
|
|
CTDB_NO_MEMORY(ctdb, c);
|
|
|
|
c->key = key;
|
|
c->call_data = 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;
|
|
|
|
for (fn=ctdb->calls;fn;fn=fn->next) {
|
|
if (fn->id == call_id) break;
|
|
}
|
|
if (fn == NULL) {
|
|
ctdb_set_error(ctdb, "Unknown call id %u\n", call_id);
|
|
return -1;
|
|
}
|
|
|
|
if (fn->fn(c) != 0) {
|
|
ctdb_set_error(ctdb, "ctdb_call %u failed\n", call_id);
|
|
return -1;
|
|
}
|
|
|
|
if (header->laccessor != caller) {
|
|
header->lacount = 0;
|
|
}
|
|
header->laccessor = caller;
|
|
header->lacount++;
|
|
|
|
/* we need to force the record to be written out if this was a remote access,
|
|
so that the lacount is updated */
|
|
if (c->new_data == NULL && header->laccessor != ctdb->vnn) {
|
|
c->new_data = &c->record_data;
|
|
}
|
|
|
|
if (c->new_data) {
|
|
if (ctdb_ltdb_store(ctdb, key, header, *c->new_data) != 0) {
|
|
ctdb_set_error(ctdb, "ctdb_call tdb_store failed\n");
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if (reply_data) {
|
|
if (c->reply_data) {
|
|
*reply_data = *c->reply_data;
|
|
talloc_steal(ctdb, reply_data->dptr);
|
|
} else {
|
|
reply_data->dptr = NULL;
|
|
reply_data->dsize = 0;
|
|
}
|
|
}
|
|
|
|
talloc_free(c);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
send an error reply
|
|
*/
|
|
static void ctdb_send_error(struct ctdb_context *ctdb,
|
|
struct ctdb_req_header *hdr, uint32_t status,
|
|
const char *fmt, ...) PRINTF_ATTRIBUTE(4,5);
|
|
static void ctdb_send_error(struct ctdb_context *ctdb,
|
|
struct ctdb_req_header *hdr, uint32_t status,
|
|
const char *fmt, ...)
|
|
{
|
|
va_list ap;
|
|
struct ctdb_reply_error *r;
|
|
char *msg;
|
|
int msglen, len;
|
|
|
|
va_start(ap, fmt);
|
|
msg = talloc_vasprintf(ctdb, fmt, ap);
|
|
if (msg == NULL) {
|
|
ctdb_fatal(ctdb, "Unable to allocate error in ctdb_send_error\n");
|
|
}
|
|
va_end(ap);
|
|
|
|
msglen = strlen(msg)+1;
|
|
len = offsetof(struct ctdb_reply_error, msg);
|
|
r = ctdb->methods->allocate_pkt(ctdb, len + msglen);
|
|
CTDB_NO_MEMORY_FATAL(ctdb, r);
|
|
|
|
r->hdr.length = len + msglen;
|
|
r->hdr.operation = CTDB_REPLY_ERROR;
|
|
r->hdr.destnode = hdr->srcnode;
|
|
r->hdr.srcnode = ctdb->vnn;
|
|
r->hdr.reqid = hdr->reqid;
|
|
r->status = status;
|
|
r->msglen = msglen;
|
|
memcpy(&r->msg[0], msg, msglen);
|
|
|
|
talloc_free(msg);
|
|
|
|
ctdb_queue_packet(ctdb, &r->hdr);
|
|
|
|
talloc_free(r);
|
|
}
|
|
|
|
|
|
/*
|
|
send a redirect reply
|
|
*/
|
|
static void ctdb_call_send_redirect(struct ctdb_context *ctdb,
|
|
struct ctdb_req_call *c,
|
|
struct ctdb_ltdb_header *header)
|
|
{
|
|
struct ctdb_reply_redirect *r;
|
|
|
|
r = ctdb->methods->allocate_pkt(ctdb, sizeof(*r));
|
|
CTDB_NO_MEMORY_FATAL(ctdb, r);
|
|
r->hdr.length = sizeof(*r);
|
|
r->hdr.operation = CTDB_REPLY_REDIRECT;
|
|
r->hdr.destnode = c->hdr.srcnode;
|
|
r->hdr.srcnode = ctdb->vnn;
|
|
r->hdr.reqid = c->hdr.reqid;
|
|
r->dmaster = header->dmaster;
|
|
|
|
ctdb_queue_packet(ctdb, &r->hdr);
|
|
|
|
talloc_free(r);
|
|
}
|
|
|
|
/*
|
|
send a dmaster request (give another node the dmaster for a record)
|
|
|
|
This is always sent to the lmaster, which ensures that the lmaster
|
|
always knows who the dmaster is. The lmaster will then send a
|
|
CTDB_REPLY_DMASTER to the new dmaster
|
|
*/
|
|
static void ctdb_call_send_dmaster(struct ctdb_context *ctdb,
|
|
struct ctdb_req_call *c,
|
|
struct ctdb_ltdb_header *header,
|
|
TDB_DATA *key, TDB_DATA *data)
|
|
{
|
|
struct ctdb_req_dmaster *r;
|
|
int len;
|
|
|
|
len = offsetof(struct ctdb_req_dmaster, data) + key->dsize + data->dsize;
|
|
r = ctdb->methods->allocate_pkt(ctdb, len);
|
|
CTDB_NO_MEMORY_FATAL(ctdb, r);
|
|
r->hdr.length = len;
|
|
r->hdr.operation = CTDB_REQ_DMASTER;
|
|
r->hdr.destnode = ctdb_lmaster(ctdb, key);
|
|
r->hdr.srcnode = ctdb->vnn;
|
|
r->hdr.reqid = c->hdr.reqid;
|
|
r->dmaster = header->laccessor;
|
|
r->keylen = key->dsize;
|
|
r->datalen = data->dsize;
|
|
memcpy(&r->data[0], key->dptr, key->dsize);
|
|
memcpy(&r->data[key->dsize], data->dptr, data->dsize);
|
|
|
|
if (r->hdr.destnode == ctdb->vnn) {
|
|
/* we are the lmaster - don't send to ourselves */
|
|
DEBUG(0,("XXXX local ctdb_req_dmaster\n"));
|
|
ctdb_request_dmaster(ctdb, &r->hdr);
|
|
} else {
|
|
ctdb_queue_packet(ctdb, &r->hdr);
|
|
|
|
/* update the ltdb to record the new dmaster */
|
|
header->dmaster = r->hdr.destnode;
|
|
ctdb_ltdb_store(ctdb, *key, header, *data);
|
|
}
|
|
|
|
talloc_free(r);
|
|
}
|
|
|
|
|
|
/*
|
|
called when a CTDB_REQ_DMASTER packet comes in
|
|
|
|
this comes into the lmaster for a record when the current dmaster
|
|
wants to give up the dmaster role and give it to someone else
|
|
*/
|
|
void ctdb_request_dmaster(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
|
|
{
|
|
struct ctdb_req_dmaster *c = (struct ctdb_req_dmaster *)hdr;
|
|
struct ctdb_reply_dmaster *r;
|
|
TDB_DATA key, data;
|
|
struct ctdb_ltdb_header header;
|
|
int ret, len;
|
|
|
|
key.dptr = c->data;
|
|
key.dsize = c->keylen;
|
|
data.dptr = c->data + c->keylen;
|
|
data.dsize = c->datalen;
|
|
|
|
DEBUG(0,("request dmaster reqid=%d\n", hdr->reqid));
|
|
|
|
DEBUG(0,("change dmaster: stage 2 - new dmaster will be %d\n",
|
|
c->dmaster));
|
|
|
|
/* fetch the current record */
|
|
ret = ctdb_ltdb_fetch(ctdb, key, &header, &data);
|
|
if (ret != 0) {
|
|
ctdb_fatal(ctdb, "ctdb_req_dmaster failed to fetch record");
|
|
return;
|
|
}
|
|
|
|
/* its a protocol error if the sending node is not the current dmaster */
|
|
if (header.dmaster != hdr->srcnode) {
|
|
ctdb_fatal(ctdb, "dmaster request from non-master");
|
|
return;
|
|
}
|
|
|
|
DEBUG(0,("request dmaster reqid=%d %s\n", hdr->reqid, __location__));
|
|
|
|
header.dmaster = c->dmaster;
|
|
if (ctdb_ltdb_store(ctdb, key, &header, data) != 0) {
|
|
ctdb_fatal(ctdb, "ctdb_req_dmaster unable to update dmaster");
|
|
return;
|
|
}
|
|
|
|
/* send the CTDB_REPLY_DMASTER */
|
|
len = offsetof(struct ctdb_reply_dmaster, data) + data.dsize;
|
|
r = ctdb->methods->allocate_pkt(ctdb, len);
|
|
CTDB_NO_MEMORY_FATAL(ctdb, r);
|
|
r->hdr.length = len;
|
|
r->hdr.operation = CTDB_REPLY_DMASTER;
|
|
r->hdr.destnode = c->dmaster;
|
|
r->hdr.srcnode = ctdb->vnn;
|
|
r->hdr.reqid = hdr->reqid;
|
|
r->datalen = data.dsize;
|
|
memcpy(&r->data[0], data.dptr, data.dsize);
|
|
|
|
DEBUG(0,("request dmaster reqid=%d %s\n", hdr->reqid, __location__));
|
|
|
|
if (r->hdr.destnode == r->hdr.srcnode) {
|
|
ctdb_reply_dmaster(ctdb, &r->hdr);
|
|
} else {
|
|
ctdb_queue_packet(ctdb, &r->hdr);
|
|
DEBUG(0,("request dmaster reqid=%d %s\n", hdr->reqid, __location__));
|
|
}
|
|
|
|
talloc_free(r);
|
|
}
|
|
|
|
|
|
/*
|
|
called when a CTDB_REQ_CALL packet comes in
|
|
*/
|
|
void ctdb_request_call(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
|
|
{
|
|
struct ctdb_req_call *c = (struct ctdb_req_call *)hdr;
|
|
TDB_DATA key, data, call_data, reply_data;
|
|
struct ctdb_reply_call *r;
|
|
int ret, len;
|
|
struct ctdb_ltdb_header header;
|
|
|
|
key.dptr = c->data;
|
|
key.dsize = c->keylen;
|
|
call_data.dptr = c->data + c->keylen;
|
|
call_data.dsize = c->calldatalen;
|
|
|
|
/* determine if we are the dmaster for this key. This also
|
|
fetches the record data (if any), thus avoiding a 2nd fetch of the data
|
|
if the call will be answered locally */
|
|
ret = ctdb_ltdb_fetch(ctdb, key, &header, &data);
|
|
if (ret != 0) {
|
|
ctdb_send_error(ctdb, hdr, ret, "ltdb fetch failed in ctdb_request_call");
|
|
return;
|
|
}
|
|
|
|
/* if we are not the dmaster, then send a redirect to the
|
|
requesting node */
|
|
if (header.dmaster != ctdb->vnn) {
|
|
ctdb_call_send_redirect(ctdb, c, &header);
|
|
talloc_free(data.dptr);
|
|
return;
|
|
}
|
|
|
|
/* if this nodes has done enough consecutive calls on the same record
|
|
then give them the record */
|
|
if (header.laccessor == c->hdr.srcnode &&
|
|
header.lacount >= ctdb->max_lacount) {
|
|
DEBUG(0,("change dmaster: stage 1 - new dmaster will be %d\n",
|
|
header.laccessor));
|
|
ctdb_call_send_dmaster(ctdb, c, &header, &key, &data);
|
|
talloc_free(data.dptr);
|
|
return;
|
|
}
|
|
|
|
ctdb_call_local(ctdb, key, &header, &data, c->callid,
|
|
call_data.dsize?&call_data:NULL,
|
|
&reply_data, c->hdr.srcnode);
|
|
|
|
len = offsetof(struct ctdb_reply_call, data) + reply_data.dsize;
|
|
r = ctdb->methods->allocate_pkt(ctdb, len);
|
|
CTDB_NO_MEMORY_FATAL(ctdb, r);
|
|
r->hdr.length = len;
|
|
r->hdr.operation = CTDB_REPLY_CALL;
|
|
r->hdr.destnode = hdr->srcnode;
|
|
r->hdr.srcnode = hdr->destnode;
|
|
r->hdr.reqid = hdr->reqid;
|
|
r->datalen = reply_data.dsize;
|
|
memcpy(&r->data[0], reply_data.dptr, reply_data.dsize);
|
|
|
|
ctdb_queue_packet(ctdb, &r->hdr);
|
|
|
|
talloc_free(reply_data.dptr);
|
|
talloc_free(r);
|
|
}
|
|
|
|
enum call_state {CTDB_CALL_WAIT, CTDB_CALL_DONE, CTDB_CALL_ERROR};
|
|
|
|
/*
|
|
state of a in-progress ctdb call
|
|
*/
|
|
struct ctdb_call_state {
|
|
enum call_state state;
|
|
struct ctdb_req_call *c;
|
|
struct ctdb_node *node;
|
|
const char *errmsg;
|
|
TDB_DATA call_data;
|
|
TDB_DATA reply_data;
|
|
TDB_DATA key;
|
|
int redirect_count;
|
|
struct ctdb_ltdb_header header;
|
|
};
|
|
|
|
|
|
/*
|
|
called when a CTDB_REPLY_CALL packet comes in
|
|
|
|
This packet comes in response to a CTDB_REQ_CALL request packet. It
|
|
contains any reply data freom the call
|
|
*/
|
|
void ctdb_reply_call(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
|
|
{
|
|
struct ctdb_reply_call *c = (struct ctdb_reply_call *)hdr;
|
|
struct ctdb_call_state *state;
|
|
TDB_DATA reply_data;
|
|
|
|
state = idr_find(ctdb->idr, hdr->reqid);
|
|
if (state == NULL) return;
|
|
|
|
reply_data.dptr = c->data;
|
|
reply_data.dsize = c->datalen;
|
|
|
|
state->reply_data = reply_data;
|
|
|
|
talloc_steal(state, c);
|
|
|
|
state->state = CTDB_CALL_DONE;
|
|
}
|
|
|
|
/*
|
|
called when a CTDB_REPLY_DMASTER packet comes in
|
|
|
|
This packet comes in from the lmaster response to a CTDB_REQ_CALL
|
|
request packet. It means that the current dmaster wants to give us
|
|
the dmaster role
|
|
*/
|
|
void ctdb_reply_dmaster(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
|
|
{
|
|
struct ctdb_reply_dmaster *c = (struct ctdb_reply_dmaster *)hdr;
|
|
struct ctdb_call_state *state;
|
|
TDB_DATA data;
|
|
|
|
state = idr_find(ctdb->idr, hdr->reqid);
|
|
if (state == NULL) return;
|
|
|
|
data.dptr = c->data;
|
|
data.dsize = c->datalen;
|
|
|
|
talloc_steal(state, c);
|
|
|
|
DEBUG(0,("change dmaster: stage 3 - new dmaster is %d\n",
|
|
ctdb->vnn));
|
|
|
|
/* we're now the dmaster - update our local ltdb with new header
|
|
and data */
|
|
state->header.dmaster = ctdb->vnn;
|
|
|
|
if (ctdb_ltdb_store(ctdb, state->key, &state->header, data) != 0) {
|
|
ctdb_fatal(ctdb, "ctdb_reply_dmaster store failed\n");
|
|
return;
|
|
}
|
|
|
|
ctdb_call_local(ctdb, state->key, &state->header, &data, state->c->callid,
|
|
state->call_data.dsize?&state->call_data:NULL,
|
|
&state->reply_data, ctdb->vnn);
|
|
|
|
state->state = CTDB_CALL_DONE;
|
|
}
|
|
|
|
|
|
/*
|
|
called when a CTDB_REPLY_ERROR packet comes in
|
|
*/
|
|
void ctdb_reply_error(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
|
|
{
|
|
struct ctdb_reply_error *c = (struct ctdb_reply_error *)hdr;
|
|
struct ctdb_call_state *state;
|
|
|
|
state = idr_find(ctdb->idr, hdr->reqid);
|
|
if (state == NULL) return;
|
|
|
|
talloc_steal(state, c);
|
|
|
|
state->state = CTDB_CALL_ERROR;
|
|
state->errmsg = (char *)c->msg;
|
|
}
|
|
|
|
|
|
/*
|
|
called when a CTDB_REPLY_REDIRECT packet comes in
|
|
|
|
This packet arrives when we have sent a CTDB_REQ_CALL request and
|
|
the node that received it is not the dmaster for the given key. We
|
|
are given a hint as to what node to try next.
|
|
*/
|
|
void ctdb_reply_redirect(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
|
|
{
|
|
struct ctdb_reply_redirect *c = (struct ctdb_reply_redirect *)hdr;
|
|
struct ctdb_call_state *state;
|
|
|
|
state = idr_find(ctdb->idr, hdr->reqid);
|
|
if (state == NULL) return;
|
|
|
|
talloc_steal(state, c);
|
|
|
|
/* don't allow for too many redirects */
|
|
if (state->redirect_count++ == CTDB_MAX_REDIRECT) {
|
|
c->dmaster = ctdb_lmaster(ctdb, &state->key);
|
|
}
|
|
|
|
/* send it off again */
|
|
state->node = ctdb->nodes[c->dmaster];
|
|
|
|
ctdb_queue_packet(ctdb, &state->c->hdr);
|
|
}
|
|
|
|
/*
|
|
destroy a ctdb_call
|
|
*/
|
|
static int ctdb_call_destructor(struct ctdb_call_state *state)
|
|
{
|
|
// idr_remove(state->node->ctdb->idr, state->c->hdr.reqid);
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*
|
|
called when a ctdb_call times out
|
|
*/
|
|
void ctdb_call_timeout(struct event_context *ev, struct timed_event *te,
|
|
struct timeval t, void *private)
|
|
{
|
|
struct ctdb_call_state *state = talloc_get_type(private, struct ctdb_call_state);
|
|
state->state = CTDB_CALL_ERROR;
|
|
ctdb_set_error(state->node->ctdb, "ctdb_call %u timed out",
|
|
state->c->hdr.reqid);
|
|
}
|
|
|
|
/*
|
|
construct an event driven local ctdb_call
|
|
|
|
this is used so that locally processed ctdb_call requests are processed
|
|
in an event driven manner
|
|
*/
|
|
struct ctdb_call_state *ctdb_call_local_send(struct ctdb_context *ctdb,
|
|
TDB_DATA key, int call_id,
|
|
TDB_DATA *call_data, TDB_DATA *reply_data,
|
|
struct ctdb_ltdb_header *header,
|
|
TDB_DATA *data)
|
|
{
|
|
struct ctdb_call_state *state;
|
|
int ret;
|
|
|
|
state = talloc_zero(ctdb, struct ctdb_call_state);
|
|
CTDB_NO_MEMORY_NULL(ctdb, state);
|
|
|
|
state->state = CTDB_CALL_DONE;
|
|
state->node = ctdb->nodes[ctdb->vnn];
|
|
|
|
ret = ctdb_call_local(ctdb, key, header, data,
|
|
call_id, call_data, &state->reply_data,
|
|
ctdb->vnn);
|
|
return state;
|
|
}
|
|
|
|
|
|
/*
|
|
make a remote ctdb call - async send
|
|
|
|
This constructs a ctdb_call request and queues it for processing.
|
|
This call never blocks.
|
|
*/
|
|
struct ctdb_call_state *ctdb_call_send(struct ctdb_context *ctdb,
|
|
TDB_DATA key, int call_id,
|
|
TDB_DATA *call_data, TDB_DATA *reply_data)
|
|
{
|
|
uint32_t len;
|
|
struct ctdb_call_state *state;
|
|
int ret;
|
|
struct ctdb_ltdb_header header;
|
|
TDB_DATA data;
|
|
|
|
/*
|
|
if we are the dmaster for this key then we don't need to
|
|
send it off at all, we can bypass the network and handle it
|
|
locally. To find out if we are the dmaster we need to look
|
|
in our ltdb
|
|
*/
|
|
ret = ctdb_ltdb_fetch(ctdb, key, &header, &data);
|
|
if (ret != 0) return NULL;
|
|
|
|
if (header.dmaster == ctdb->vnn && !(ctdb->flags & CTDB_FLAG_SELF_CONNECT)) {
|
|
return ctdb_call_local_send(ctdb, key, call_id, call_data, reply_data,
|
|
&header, &data);
|
|
}
|
|
|
|
state = talloc_zero(ctdb, struct ctdb_call_state);
|
|
CTDB_NO_MEMORY_NULL(ctdb, state);
|
|
|
|
len = offsetof(struct ctdb_req_call, data) + key.dsize + (call_data?call_data->dsize:0);
|
|
state->c = ctdb->methods->allocate_pkt(ctdb, len);
|
|
CTDB_NO_MEMORY_NULL(ctdb, state->c);
|
|
|
|
state->c->hdr.length = len;
|
|
state->c->hdr.operation = CTDB_REQ_CALL;
|
|
state->c->hdr.destnode = header.dmaster;
|
|
state->c->hdr.srcnode = ctdb->vnn;
|
|
/* this limits us to 16k outstanding messages - not unreasonable */
|
|
state->c->hdr.reqid = idr_get_new(ctdb->idr, state, 0xFFFF);
|
|
DEBUG(0,("Allocate reqid %u\n", state->c->hdr.reqid));
|
|
state->c->callid = call_id;
|
|
state->c->keylen = key.dsize;
|
|
state->c->calldatalen = call_data?call_data->dsize:0;
|
|
memcpy(&state->c->data[0], key.dptr, key.dsize);
|
|
if (call_data) {
|
|
memcpy(&state->c->data[key.dsize], call_data->dptr, call_data->dsize);
|
|
state->call_data.dptr = &state->c->data[key.dsize];
|
|
state->call_data.dsize = call_data->dsize;
|
|
}
|
|
state->key.dptr = &state->c->data[0];
|
|
state->key.dsize = key.dsize;
|
|
|
|
state->node = ctdb->nodes[header.dmaster];
|
|
state->state = CTDB_CALL_WAIT;
|
|
state->header = header;
|
|
|
|
talloc_set_destructor(state, ctdb_call_destructor);
|
|
|
|
ctdb_queue_packet(ctdb, &state->c->hdr);
|
|
|
|
event_add_timed(ctdb->ev, state, timeval_current_ofs(CTDB_REQ_TIMEOUT, 0),
|
|
ctdb_call_timeout, state);
|
|
return state;
|
|
}
|
|
|
|
|
|
/*
|
|
make a remote ctdb call - async recv.
|
|
|
|
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.
|
|
*/
|
|
int ctdb_call_recv(struct ctdb_call_state *state, TDB_DATA *reply_data)
|
|
{
|
|
while (state->state < CTDB_CALL_DONE) {
|
|
event_loop_once(state->node->ctdb->ev);
|
|
}
|
|
if (state->state != CTDB_CALL_DONE) {
|
|
ctdb_set_error(state->node->ctdb, "%s", state->errmsg);
|
|
talloc_free(state);
|
|
return -1;
|
|
}
|
|
if (reply_data) {
|
|
reply_data->dptr = talloc_memdup(state->node->ctdb,
|
|
state->reply_data.dptr,
|
|
state->reply_data.dsize);
|
|
reply_data->dsize = state->reply_data.dsize;
|
|
}
|
|
talloc_free(state);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
full ctdb_call. Equivalent to a ctdb_call_send() followed by a ctdb_call_recv()
|
|
*/
|
|
int ctdb_call(struct ctdb_context *ctdb,
|
|
TDB_DATA key, int call_id,
|
|
TDB_DATA *call_data, TDB_DATA *reply_data)
|
|
{
|
|
struct ctdb_call_state *state;
|
|
state = ctdb_call_send(ctdb, key, call_id, call_data, reply_data);
|
|
return ctdb_call_recv(state, reply_data);
|
|
}
|