From ce8ac88b969bb8bb7a94e62bb6e86aec389be6ac Mon Sep 17 00:00:00 2001 From: Martin Schwenke Date: Wed, 9 Apr 2014 14:26:23 +1000 Subject: [PATCH] ctdb-tools-ctdb: Drop disconnected nodes when filtering by capability Commit ba69742ccd822562ca2135d2466e09bf1216644b missed the point of filtering disconnected nodes while limiting the nodemap to those in the NAT gateway group. It was really to avoid trying to fetch capabilities from disconnected nodes. This should be explicitly done in filter_nodemap_by_capabilities(), otherwise "ctdb natgwlist" simply fails when there is a disconnected node. Note that the alternate solution where filter_nodemap_by_flags() is called before filter_nodemap_by_capabilities() would not be not correct. Filtering on flags first can produce a "healthier" set of nodes where none of them have the NAT gateway capability. Also extend stub for ctdb_ctrl_getcapabilities() to fail when trying to get capabilities from a disconnected node and add a corresponding test to confirm that "ctdb natgwlist" is no longer broken. Signed-off-by: Martin Schwenke Reviewed-by: Amitay Isaacs --- ctdb/tests/src/ctdb_test_stubs.c | 9 ++++++++ ctdb/tests/tool/stubby.natgwlist.008.sh | 37 +++++++++++++++++++++++++++++++++ ctdb/tools/ctdb.c | 13 +++++++++--- 3 files changed, 56 insertions(+), 3 deletions(-) create mode 100755 ctdb/tests/tool/stubby.natgwlist.008.sh diff --git a/ctdb/tests/src/ctdb_test_stubs.c b/ctdb/tests/src/ctdb_test_stubs.c index 1edbe6aee77..6149b3d334a 100644 --- a/ctdb/tests/src/ctdb_test_stubs.c +++ b/ctdb/tests/src/ctdb_test_stubs.c @@ -550,6 +550,15 @@ int ctdb_ctrl_getcapabilities_stub(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *capabilities) { + if (ctdb->nodes[destnode]->flags & NODE_FLAGS_DISCONNECTED) { + DEBUG(DEBUG_ERR, + ("ctdb_control error: 'ctdb_control to disconnected node\n")); + /* Placeholder for line#, instead of __location__ */ + DEBUG(DEBUG_ERR, + ("__LOCATION__ ctdb_ctrl_getcapabilities_recv failed\n")); + return -1; + } + *capabilities = ctdb->nodes[destnode]->capabilities; return 0; } diff --git a/ctdb/tests/tool/stubby.natgwlist.008.sh b/ctdb/tests/tool/stubby.natgwlist.008.sh new file mode 100755 index 00000000000..e213400ff9a --- /dev/null +++ b/ctdb/tests/tool/stubby.natgwlist.008.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +. "${TEST_SCRIPTS_DIR}/unit.sh" + +define_test "3 nodes, all in natgw group, 1 disconnected" + +setup_natgw <num = 0; for (i = 0; i < nodemap->num; i++) { - int res = ctdb_ctrl_getcapabilities(ctdb, TIMELIMIT(), - nodemap->nodes[i].pnn, - &capabilities); + int res; + + /* Disconnected nodes have no capabilities! */ + if (nodemap->nodes[i].flags & NODE_FLAGS_DISCONNECTED) { + continue; + } + + res = ctdb_ctrl_getcapabilities(ctdb, TIMELIMIT(), + nodemap->nodes[i].pnn, + &capabilities); if (res != 0) { DEBUG(DEBUG_ERR, ("Unable to get capabilities from node %u\n", nodemap->nodes[i].pnn)); -- 2.11.4.GIT