2 ctdb main protocol code
4 Copyright (C) Andrew Tridgell 2006
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "system/network.h"
22 #include "system/filesys.h"
27 #include "lib/util/dlinklist.h"
28 #include "lib/util/debug.h"
29 #include "lib/util/samba_util.h"
31 #include "ctdb_private.h"
32 #include "ctdb_client.h"
34 #include "common/common.h"
35 #include "common/logging.h"
38 choose the transport we will use
40 int ctdb_set_transport(struct ctdb_context
*ctdb
, const char *transport
)
42 ctdb
->transport
= talloc_strdup(ctdb
, transport
);
43 CTDB_NO_MEMORY(ctdb
, ctdb
->transport
);
48 /* Return the node structure for nodeip, NULL if nodeip is invalid */
49 struct ctdb_node
*ctdb_ip_to_node(struct ctdb_context
*ctdb
,
50 const ctdb_sock_addr
*nodeip
)
54 for (nodeid
=0;nodeid
<ctdb
->num_nodes
;nodeid
++) {
55 if (ctdb
->nodes
[nodeid
]->flags
& NODE_FLAGS_DELETED
) {
58 if (ctdb_same_ip(&ctdb
->nodes
[nodeid
]->address
, nodeip
)) {
59 return ctdb
->nodes
[nodeid
];
66 /* Return the PNN for nodeip, CTDB_UNKNOWN_PNN if nodeip is invalid */
67 uint32_t ctdb_ip_to_pnn(struct ctdb_context
*ctdb
,
68 const ctdb_sock_addr
*nodeip
)
70 struct ctdb_node
*node
;
72 node
= ctdb_ip_to_node(ctdb
, nodeip
);
74 return CTDB_UNKNOWN_PNN
;
80 /* Load a nodes list file into a nodes array */
81 static int convert_node_map_to_list(struct ctdb_context
*ctdb
,
83 struct ctdb_node_map_old
*node_map
,
84 struct ctdb_node
***nodes
,
89 *nodes
= talloc_zero_array(mem_ctx
,
90 struct ctdb_node
*, node_map
->num
);
91 CTDB_NO_MEMORY(ctdb
, *nodes
);
92 *num_nodes
= node_map
->num
;
94 for (i
= 0; i
< node_map
->num
; i
++) {
95 struct ctdb_node
*node
;
97 node
= talloc_zero(*nodes
, struct ctdb_node
);
98 CTDB_NO_MEMORY(ctdb
, node
);
101 node
->address
= node_map
->nodes
[i
].addr
;
102 node
->name
= talloc_asprintf(node
, "%s:%u",
103 ctdb_addr_to_str(&node
->address
),
104 ctdb_addr_to_port(&node
->address
));
106 node
->flags
= node_map
->nodes
[i
].flags
;
107 if (!(node
->flags
& NODE_FLAGS_DELETED
)) {
108 node
->flags
= NODE_FLAGS_UNHEALTHY
;
110 node
->flags
|= NODE_FLAGS_DISCONNECTED
;
114 node
->dead_count
= 0;
120 /* Load the nodes list from a file */
121 void ctdb_load_nodes_file(struct ctdb_context
*ctdb
)
123 struct ctdb_node_map_old
*node_map
;
126 node_map
= ctdb_read_nodes_file(ctdb
, ctdb
->nodes_file
);
127 if (node_map
== NULL
) {
131 TALLOC_FREE(ctdb
->nodes
);
132 ret
= convert_node_map_to_list(ctdb
, ctdb
, node_map
,
133 &ctdb
->nodes
, &ctdb
->num_nodes
);
138 talloc_free(node_map
);
142 DEBUG(DEBUG_ERR
, ("Failed to load nodes file \"%s\"\n",
144 talloc_free(node_map
);
149 setup the local node address
151 int ctdb_set_address(struct ctdb_context
*ctdb
, const char *address
)
153 ctdb
->address
= talloc(ctdb
, ctdb_sock_addr
);
154 CTDB_NO_MEMORY(ctdb
, ctdb
->address
);
156 if (ctdb_parse_address(ctdb
, address
, ctdb
->address
) != 0) {
160 ctdb
->name
= talloc_asprintf(ctdb
, "%s:%u",
161 ctdb_addr_to_str(ctdb
->address
),
162 ctdb_addr_to_port(ctdb
->address
));
168 return the number of active nodes
170 uint32_t ctdb_get_num_active_nodes(struct ctdb_context
*ctdb
)
174 for (i
=0; i
< ctdb
->num_nodes
; i
++) {
175 if (!(ctdb
->nodes
[i
]->flags
& NODE_FLAGS_INACTIVE
)) {
184 called when we need to process a packet. This can be a requeued packet
185 after a lockwait, or a real packet from another node
187 void ctdb_input_pkt(struct ctdb_context
*ctdb
, struct ctdb_req_header
*hdr
)
191 /* place the packet as a child of the tmp_ctx. We then use
192 talloc_free() below to free it. If any of the calls want
193 to keep it, then they will steal it somewhere else, and the
194 talloc_free() will only free the tmp_ctx */
195 tmp_ctx
= talloc_new(ctdb
);
196 talloc_steal(tmp_ctx
, hdr
);
198 DEBUG(DEBUG_DEBUG
,(__location__
" ctdb request %u of type %u length %u from "
199 "node %u to %u\n", hdr
->reqid
, hdr
->operation
, hdr
->length
,
200 hdr
->srcnode
, hdr
->destnode
));
202 switch (hdr
->operation
) {
204 case CTDB_REPLY_CALL
:
205 case CTDB_REQ_DMASTER
:
206 case CTDB_REPLY_DMASTER
:
207 /* we don't allow these calls when banned */
208 if (ctdb
->nodes
[ctdb
->pnn
]->flags
& NODE_FLAGS_BANNED
) {
209 DEBUG(DEBUG_DEBUG
,(__location__
" ctdb operation %u"
211 " length %u from node %u to %u while node"
213 hdr
->operation
, hdr
->reqid
,
215 hdr
->srcnode
, hdr
->destnode
));
219 /* for ctdb_call inter-node operations verify that the
220 remote node that sent us the call is running in the
221 same generation instance as this node
223 if (ctdb
->vnn_map
->generation
!= hdr
->generation
) {
224 DEBUG(DEBUG_DEBUG
,(__location__
" ctdb operation %u"
226 " length %u from node %u to %u had an"
227 " invalid generation id:%u while our"
228 " generation id is:%u\n",
229 hdr
->operation
, hdr
->reqid
,
231 hdr
->srcnode
, hdr
->destnode
,
232 hdr
->generation
, ctdb
->vnn_map
->generation
));
237 switch (hdr
->operation
) {
239 CTDB_INCREMENT_STAT(ctdb
, node
.req_call
);
240 ctdb_request_call(ctdb
, hdr
);
243 case CTDB_REPLY_CALL
:
244 CTDB_INCREMENT_STAT(ctdb
, node
.reply_call
);
245 ctdb_reply_call(ctdb
, hdr
);
248 case CTDB_REPLY_ERROR
:
249 CTDB_INCREMENT_STAT(ctdb
, node
.reply_error
);
250 ctdb_reply_error(ctdb
, hdr
);
253 case CTDB_REQ_DMASTER
:
254 CTDB_INCREMENT_STAT(ctdb
, node
.req_dmaster
);
255 ctdb_request_dmaster(ctdb
, hdr
);
258 case CTDB_REPLY_DMASTER
:
259 CTDB_INCREMENT_STAT(ctdb
, node
.reply_dmaster
);
260 ctdb_reply_dmaster(ctdb
, hdr
);
263 case CTDB_REQ_MESSAGE
:
264 CTDB_INCREMENT_STAT(ctdb
, node
.req_message
);
265 ctdb_request_message(ctdb
, hdr
);
268 case CTDB_REQ_CONTROL
:
269 CTDB_INCREMENT_STAT(ctdb
, node
.req_control
);
270 ctdb_request_control(ctdb
, hdr
);
273 case CTDB_REPLY_CONTROL
:
274 CTDB_INCREMENT_STAT(ctdb
, node
.reply_control
);
275 ctdb_reply_control(ctdb
, hdr
);
278 case CTDB_REQ_KEEPALIVE
:
279 CTDB_INCREMENT_STAT(ctdb
, keepalive_packets_recv
);
280 ctdb_request_keepalive(ctdb
, hdr
);
283 case CTDB_REQ_TUNNEL
:
284 CTDB_INCREMENT_STAT(ctdb
, node
.req_tunnel
);
285 ctdb_request_tunnel(ctdb
, hdr
);
289 DEBUG(DEBUG_CRIT
,("%s: Packet with unknown operation %u\n",
290 __location__
, hdr
->operation
));
295 talloc_free(tmp_ctx
);
300 called by the transport layer when a node is dead
302 void ctdb_node_dead(struct ctdb_node
*node
)
304 if (node
->ctdb
->methods
== NULL
) {
305 DBG_ERR("Can not restart transport while shutting down\n");
308 node
->ctdb
->methods
->restart(node
);
310 if (node
->flags
& NODE_FLAGS_DISCONNECTED
) {
311 DEBUG(DEBUG_INFO
,("%s: node %s is already marked disconnected: %u connected\n",
312 node
->ctdb
->name
, node
->name
,
313 node
->ctdb
->num_connected
));
316 node
->ctdb
->num_connected
--;
317 node
->flags
|= NODE_FLAGS_DISCONNECTED
| NODE_FLAGS_UNHEALTHY
;
319 node
->dead_count
= 0;
321 DEBUG(DEBUG_ERR
,("%s: node %s is dead: %u connected\n",
322 node
->ctdb
->name
, node
->name
, node
->ctdb
->num_connected
));
323 ctdb_daemon_cancel_controls(node
->ctdb
, node
);
327 called by the transport layer when a node is connected
329 void ctdb_node_connected(struct ctdb_node
*node
)
331 if (!(node
->flags
& NODE_FLAGS_DISCONNECTED
)) {
332 DEBUG(DEBUG_INFO
,("%s: node %s is already marked connected: %u connected\n",
333 node
->ctdb
->name
, node
->name
,
334 node
->ctdb
->num_connected
));
337 node
->ctdb
->num_connected
++;
338 node
->dead_count
= 0;
339 node
->flags
&= ~NODE_FLAGS_DISCONNECTED
;
340 node
->flags
|= NODE_FLAGS_UNHEALTHY
;
342 ("%s: connected to %s - %u connected\n",
343 node
->ctdb
->name
, node
->name
, node
->ctdb
->num_connected
));
347 struct ctdb_context
*ctdb
;
348 struct ctdb_req_header
*hdr
;
353 triggered when a deferred packet is due
355 static void queue_next_trigger(struct tevent_context
*ev
,
356 struct tevent_timer
*te
,
357 struct timeval t
, void *private_data
)
359 struct queue_next
*q
= talloc_get_type(private_data
, struct queue_next
);
360 ctdb_input_pkt(q
->ctdb
, q
->hdr
);
365 defer a packet, so it is processed on the next event loop
366 this is used for sending packets to ourselves
368 static void ctdb_defer_packet(struct ctdb_context
*ctdb
, struct ctdb_req_header
*hdr
)
370 struct queue_next
*q
;
371 q
= talloc(ctdb
, struct queue_next
);
373 DEBUG(DEBUG_ERR
,(__location__
" Failed to allocate deferred packet\n"));
377 q
->hdr
= talloc_memdup(q
, hdr
, hdr
->length
);
378 if (q
->hdr
== NULL
) {
380 DEBUG(DEBUG_ERR
,("Error copying deferred packet to self\n"));
384 /* use this to put packets directly into our recv function */
385 ctdb_input_pkt(q
->ctdb
, q
->hdr
);
387 tevent_add_timer(ctdb
->ev
, q
, timeval_zero(), queue_next_trigger
, q
);
393 broadcast a packet to all nodes
395 static void ctdb_broadcast_packet_all(struct ctdb_context
*ctdb
,
396 struct ctdb_req_header
*hdr
)
399 for (i
=0; i
< ctdb
->num_nodes
; i
++) {
400 if (ctdb
->nodes
[i
]->flags
& NODE_FLAGS_DELETED
) {
403 hdr
->destnode
= ctdb
->nodes
[i
]->pnn
;
404 ctdb_queue_packet(ctdb
, hdr
);
409 broadcast a packet to all active nodes
411 static void ctdb_broadcast_packet_active(struct ctdb_context
*ctdb
,
412 struct ctdb_req_header
*hdr
)
415 for (i
= 0; i
< ctdb
->num_nodes
; i
++) {
416 if (ctdb
->nodes
[i
]->flags
& NODE_FLAGS_INACTIVE
) {
420 hdr
->destnode
= ctdb
->nodes
[i
]->pnn
;
421 ctdb_queue_packet(ctdb
, hdr
);
426 broadcast a packet to all connected nodes
428 static void ctdb_broadcast_packet_connected(struct ctdb_context
*ctdb
,
429 struct ctdb_req_header
*hdr
)
432 for (i
=0; i
< ctdb
->num_nodes
; i
++) {
433 if (ctdb
->nodes
[i
]->flags
& NODE_FLAGS_DELETED
) {
436 if (!(ctdb
->nodes
[i
]->flags
& NODE_FLAGS_DISCONNECTED
)) {
437 hdr
->destnode
= ctdb
->nodes
[i
]->pnn
;
438 ctdb_queue_packet(ctdb
, hdr
);
444 queue a packet or die
446 void ctdb_queue_packet(struct ctdb_context
*ctdb
, struct ctdb_req_header
*hdr
)
448 struct ctdb_node
*node
;
450 switch (hdr
->destnode
) {
451 case CTDB_BROADCAST_ALL
:
452 ctdb_broadcast_packet_all(ctdb
, hdr
);
454 case CTDB_BROADCAST_ACTIVE
:
455 ctdb_broadcast_packet_active(ctdb
, hdr
);
457 case CTDB_BROADCAST_CONNECTED
:
458 ctdb_broadcast_packet_connected(ctdb
, hdr
);
462 CTDB_INCREMENT_STAT(ctdb
, node_packets_sent
);
464 if (!ctdb_validate_pnn(ctdb
, hdr
->destnode
)) {
465 DEBUG(DEBUG_CRIT
,(__location__
" cant send to node %u that does not exist\n",
470 node
= ctdb
->nodes
[hdr
->destnode
];
472 if (node
->flags
& NODE_FLAGS_DELETED
) {
473 DEBUG(DEBUG_ERR
, (__location__
" Can not queue packet to DELETED node %d\n", hdr
->destnode
));
477 if (node
->pnn
== ctdb
->pnn
) {
478 ctdb_defer_packet(ctdb
, hdr
);
482 if (ctdb
->methods
== NULL
) {
483 DEBUG(DEBUG_ALERT
, (__location__
" Can not queue packet. "
484 "Transport is DOWN\n"));
489 if (ctdb
->methods
->queue_pkt(node
, (uint8_t *)hdr
, hdr
->length
) != 0) {
490 ctdb_fatal(ctdb
, "Unable to queue packet\n");
498 a valgrind hack to allow us to get opcode specific backtraces
499 very ugly, and relies on no compiler optimisation!
501 void ctdb_queue_packet_opcode(struct ctdb_context
*ctdb
, struct ctdb_req_header
*hdr
, unsigned opcode
)
504 #define DO_OP(x) case x: ctdb_queue_packet(ctdb, hdr); break
606 ctdb_queue_packet(ctdb
, hdr
);