mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
fdb317facf
- split up ctdb layer code into 3 modules - added a simple test suite - added packet structures for ctdb_call - switched to an array for ctdb_node to make vnn lookup easy and fast (This used to be ctdb commit 8a17460a816a5970f2df8244a06aec55d814f186)
194 lines
4.3 KiB
C
194 lines
4.3 KiB
C
/*
|
|
ctdb main 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
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "lib/events/events.h"
|
|
#include "system/network.h"
|
|
#include "system/filesys.h"
|
|
#include "ctdb_private.h"
|
|
|
|
/*
|
|
choose the transport we will use
|
|
*/
|
|
int ctdb_set_transport(struct ctdb_context *ctdb, const char *transport)
|
|
{
|
|
int ctdb_tcp_init(struct ctdb_context *ctdb);
|
|
|
|
if (strcmp(transport, "tcp") == 0) {
|
|
return ctdb_tcp_init(ctdb);
|
|
}
|
|
ctdb_set_error(ctdb, "Unknown transport '%s'\n", transport);
|
|
return -1;
|
|
}
|
|
|
|
|
|
/*
|
|
add a node to the list of active nodes
|
|
*/
|
|
static int ctdb_add_node(struct ctdb_context *ctdb, char *nstr)
|
|
{
|
|
struct ctdb_node *node, **nodep;
|
|
|
|
nodep = talloc_realloc(ctdb, ctdb->nodes, struct ctdb_node *, ctdb->num_nodes+1);
|
|
CTDB_NO_MEMORY(ctdb, nodep);
|
|
|
|
ctdb->nodes = nodep;
|
|
nodep = &ctdb->nodes[ctdb->num_nodes];
|
|
(*nodep) = talloc_zero(ctdb->nodes, struct ctdb_node);
|
|
CTDB_NO_MEMORY(ctdb, *nodep);
|
|
node = *nodep;
|
|
|
|
if (ctdb_parse_address(ctdb, node, nstr, &node->address) != 0) {
|
|
return -1;
|
|
}
|
|
node->ctdb = ctdb;
|
|
node->name = talloc_asprintf(node, "%s:%u",
|
|
node->address.address,
|
|
node->address.port);
|
|
/* for now we just set the vnn to the line in the file - this
|
|
will change! */
|
|
node->vnn = ctdb->num_nodes;
|
|
|
|
if (ctdb->methods->add_node(node) != 0) {
|
|
talloc_free(node);
|
|
return -1;
|
|
}
|
|
|
|
if (ctdb_same_address(&ctdb->address, &node->address)) {
|
|
ctdb->vnn = node->vnn;
|
|
}
|
|
|
|
ctdb->num_nodes++;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
setup the node list from a file
|
|
*/
|
|
int ctdb_set_nlist(struct ctdb_context *ctdb, const char *nlist)
|
|
{
|
|
char **lines;
|
|
int nlines;
|
|
int i;
|
|
|
|
lines = file_lines_load(nlist, &nlines, ctdb);
|
|
if (lines == NULL) {
|
|
ctdb_set_error(ctdb, "Failed to load nlist '%s'\n", nlist);
|
|
return -1;
|
|
}
|
|
|
|
for (i=0;i<nlines;i++) {
|
|
if (ctdb_add_node(ctdb, lines[i]) != 0) {
|
|
talloc_free(lines);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
talloc_free(lines);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
setup the local node address
|
|
*/
|
|
int ctdb_set_address(struct ctdb_context *ctdb, const char *address)
|
|
{
|
|
if (ctdb_parse_address(ctdb, ctdb, address, &ctdb->address) != 0) {
|
|
return -1;
|
|
}
|
|
|
|
ctdb->name = talloc_asprintf(ctdb, "%s:%u",
|
|
ctdb->address.address,
|
|
ctdb->address.port);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
add a node to the list of active nodes
|
|
*/
|
|
int ctdb_set_call(struct ctdb_context *ctdb, ctdb_fn_t fn, int id)
|
|
{
|
|
struct ctdb_registered_call *call;
|
|
|
|
call = talloc(ctdb, struct ctdb_registered_call);
|
|
call->fn = fn;
|
|
call->id = id;
|
|
|
|
DLIST_ADD(ctdb->calls, call);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
start the protocol going
|
|
*/
|
|
int ctdb_start(struct ctdb_context *ctdb)
|
|
{
|
|
return ctdb->methods->start(ctdb);
|
|
}
|
|
|
|
/*
|
|
called by the transport layer when a packet comes in
|
|
*/
|
|
static void ctdb_recv_pkt(struct ctdb_context *ctdb, uint8_t *data, uint32_t length)
|
|
{
|
|
printf("received pkt of length %d\n", length);
|
|
}
|
|
|
|
/*
|
|
called by the transport layer when a node is dead
|
|
*/
|
|
static void ctdb_node_dead(struct ctdb_node *node)
|
|
{
|
|
printf("%s: node %s is dead\n", node->ctdb->name, node->name);
|
|
}
|
|
|
|
/*
|
|
called by the transport layer when a node is dead
|
|
*/
|
|
static void ctdb_node_connected(struct ctdb_node *node)
|
|
{
|
|
printf("%s: connected to %s\n", node->ctdb->name, node->name);
|
|
}
|
|
|
|
static const struct ctdb_upcalls ctdb_upcalls = {
|
|
.recv_pkt = ctdb_recv_pkt,
|
|
.node_dead = ctdb_node_dead,
|
|
.node_connected = ctdb_node_connected
|
|
};
|
|
|
|
/*
|
|
initialise the ctdb daemon.
|
|
|
|
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)
|
|
{
|
|
struct ctdb_context *ctdb;
|
|
|
|
ctdb = talloc_zero(ev, struct ctdb_context);
|
|
ctdb->ev = ev;
|
|
ctdb->upcalls = &ctdb_upcalls;
|
|
|
|
return ctdb;
|
|
}
|
|
|