use ctdb_get_connected_nodes for node listing
[martins/samba.git] / ctdb / common / ctdb.c
1 /* 
2    ctdb main protocol code
3
4    Copyright (C) Andrew Tridgell  2006
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2 of the License, or (at your option) any later version.
10
11    This library 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 GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with this library; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "includes.h"
22 #include "lib/tdb/include/tdb.h"
23 #include "lib/events/events.h"
24 #include "lib/util/dlinklist.h"
25 #include "system/network.h"
26 #include "system/filesys.h"
27 #include "../include/ctdb_private.h"
28
29 /*
30   choose the transport we will use
31 */
32 int ctdb_set_transport(struct ctdb_context *ctdb, const char *transport)
33 {
34         ctdb->transport = talloc_strdup(ctdb, transport);
35         return 0;
36 }
37
38
39 /*
40   set some ctdb flags
41 */
42 void ctdb_set_flags(struct ctdb_context *ctdb, unsigned flags)
43 {
44         ctdb->flags |= flags;
45 }
46
47 /*
48   clear some ctdb flags
49 */
50 void ctdb_clear_flags(struct ctdb_context *ctdb, unsigned flags)
51 {
52         ctdb->flags &= ~flags;
53 }
54
55 /*
56   set max acess count before a dmaster migration
57 */
58 void ctdb_set_max_lacount(struct ctdb_context *ctdb, unsigned count)
59 {
60         ctdb->max_lacount = count;
61 }
62
63 /*
64   set the directory for the local databases
65 */
66 int ctdb_set_tdb_dir(struct ctdb_context *ctdb, const char *dir)
67 {
68         if (dir == NULL) {
69                 ctdb->db_directory = talloc_asprintf(ctdb, "ctdb-%u", ctdb_get_vnn(ctdb));
70         } else {
71                 ctdb->db_directory = talloc_strdup(ctdb, dir);
72         }
73         if (ctdb->db_directory == NULL) {
74                 return -1;
75         }
76         return 0;
77 }
78
79 /*
80   add a node to the list of active nodes
81 */
82 static int ctdb_add_node(struct ctdb_context *ctdb, char *nstr)
83 {
84         struct ctdb_node *node, **nodep;
85
86         nodep = talloc_realloc(ctdb, ctdb->nodes, struct ctdb_node *, ctdb->num_nodes+1);
87         CTDB_NO_MEMORY(ctdb, nodep);
88
89         ctdb->nodes = nodep;
90         nodep = &ctdb->nodes[ctdb->num_nodes];
91         (*nodep) = talloc_zero(ctdb->nodes, struct ctdb_node);
92         CTDB_NO_MEMORY(ctdb, *nodep);
93         node = *nodep;
94
95         if (ctdb_parse_address(ctdb, node, nstr, &node->address) != 0) {
96                 return -1;
97         }
98         node->ctdb = ctdb;
99         node->name = talloc_asprintf(node, "%s:%u", 
100                                      node->address.address, 
101                                      node->address.port);
102         /* for now we just set the vnn to the line in the file - this
103            will change! */
104         node->vnn = ctdb->num_nodes;
105
106         if (ctdb_same_address(&ctdb->address, &node->address)) {
107                 ctdb->vnn = node->vnn;
108                 node->flags |= NODE_FLAGS_CONNECTED;
109         }
110
111         ctdb->num_nodes++;
112
113         return 0;
114 }
115
116 /*
117   setup the node list from a file
118 */
119 int ctdb_set_nlist(struct ctdb_context *ctdb, const char *nlist)
120 {
121         char **lines;
122         int nlines;
123         int i;
124
125         lines = file_lines_load(nlist, &nlines, ctdb);
126         if (lines == NULL) {
127                 ctdb_set_error(ctdb, "Failed to load nlist '%s'\n", nlist);
128                 return -1;
129         }
130
131         for (i=0;i<nlines;i++) {
132                 if (ctdb_add_node(ctdb, lines[i]) != 0) {
133                         talloc_free(lines);
134                         return -1;
135                 }
136         }
137         
138         talloc_free(lines);
139         return 0;
140 }
141
142 /*
143   setup the local node address
144 */
145 int ctdb_set_address(struct ctdb_context *ctdb, const char *address)
146 {
147         if (ctdb_parse_address(ctdb, ctdb, address, &ctdb->address) != 0) {
148                 return -1;
149         }
150         
151         ctdb->name = talloc_asprintf(ctdb, "%s:%u", 
152                                      ctdb->address.address, 
153                                      ctdb->address.port);
154         return 0;
155 }
156
157
158 /*
159   setup the local socket name
160 */
161 int ctdb_set_socketname(struct ctdb_context *ctdb, const char *socketname)
162 {
163         ctdb->daemon.name = talloc_strdup(ctdb, socketname);
164         return 0;
165 }
166
167 /*
168   add a node to the list of active nodes
169 */
170 int ctdb_set_call(struct ctdb_db_context *ctdb_db, ctdb_fn_t fn, int id)
171 {
172         struct ctdb_registered_call *call;
173
174         call = talloc(ctdb_db, struct ctdb_registered_call);
175         call->fn = fn;
176         call->id = id;
177
178         DLIST_ADD(ctdb_db->calls, call);        
179         return 0;
180 }
181
182 /*
183   return the vnn of this node
184 */
185 uint32_t ctdb_get_vnn(struct ctdb_context *ctdb)
186 {
187         return ctdb->vnn;
188 }
189
190 /*
191   return the number of nodes
192 */
193 uint32_t ctdb_get_num_nodes(struct ctdb_context *ctdb)
194 {
195         return ctdb->num_nodes;
196 }
197
198
199 /*
200   called by the transport layer when a packet comes in
201 */
202 void ctdb_recv_pkt(struct ctdb_context *ctdb, uint8_t *data, uint32_t length)
203 {
204         struct ctdb_req_header *hdr = (struct ctdb_req_header *)data;
205         TALLOC_CTX *tmp_ctx;
206
207         ctdb->status.node_packets_recv++;
208
209         /* place the packet as a child of the tmp_ctx. We then use
210            talloc_free() below to free it. If any of the calls want
211            to keep it, then they will steal it somewhere else, and the
212            talloc_free() will only free the tmp_ctx */
213         tmp_ctx = talloc_new(ctdb);
214         talloc_steal(tmp_ctx, hdr);
215
216         if (length < sizeof(*hdr)) {
217                 ctdb_set_error(ctdb, "Bad packet length %d\n", length);
218                 goto done;
219         }
220         if (length != hdr->length) {
221                 ctdb_set_error(ctdb, "Bad header length %d expected %d\n", 
222                                hdr->length, length);
223                 goto done;
224         }
225
226         if (hdr->ctdb_magic != CTDB_MAGIC) {
227                 ctdb_set_error(ctdb, "Non CTDB packet rejected\n");
228                 goto done;
229         }
230
231         if (hdr->ctdb_version != CTDB_VERSION) {
232                 ctdb_set_error(ctdb, "Bad CTDB version 0x%x rejected\n", hdr->ctdb_version);
233                 goto done;
234         }
235
236         DEBUG(3,(__location__ " ctdb request %d of type %d length %d from "
237                  "node %d to %d\n", hdr->reqid, hdr->operation, hdr->length,
238                  hdr->srcnode, hdr->destnode));
239
240         switch (hdr->operation) {
241         case CTDB_REQ_CALL:
242                 /* verify that the remote node that sent us the call
243                    is running in the same generation instance as this node
244                 */
245                 if (ctdb->vnn_map->generation != hdr->generation) {
246                         DEBUG(0,(__location__ " ctdb request %d of type"
247                                 " %d length %d from node %d to %d had an"
248                                 " invalid generation id:%d while our"
249                                 " generation id is:%d\n", 
250                                 hdr->reqid, hdr->operation, hdr->length, 
251                                 hdr->srcnode, hdr->destnode, 
252                                 ctdb->vnn_map->generation, 
253                                 hdr->generation));
254                         break;
255                 }
256                 ctdb->status.count.req_call++;
257                 ctdb_request_call(ctdb, hdr);
258                 break;
259
260         case CTDB_REPLY_CALL:
261                 ctdb->status.count.reply_call++;
262                 ctdb_reply_call(ctdb, hdr);
263                 break;
264
265         case CTDB_REPLY_ERROR:
266                 ctdb->status.count.reply_error++;
267                 ctdb_reply_error(ctdb, hdr);
268                 break;
269
270         case CTDB_REPLY_REDIRECT:
271                 ctdb->status.count.reply_redirect++;
272                 ctdb_reply_redirect(ctdb, hdr);
273                 break;
274
275         case CTDB_REQ_DMASTER:
276                 ctdb->status.count.req_dmaster++;
277                 ctdb_request_dmaster(ctdb, hdr);
278                 break;
279
280         case CTDB_REPLY_DMASTER:
281                 ctdb->status.count.reply_dmaster++;
282                 ctdb_reply_dmaster(ctdb, hdr);
283                 break;
284
285         case CTDB_REQ_MESSAGE:
286                 ctdb->status.count.req_message++;
287                 ctdb_request_message(ctdb, hdr);
288                 break;
289
290         case CTDB_REQ_FINISHED:
291                 ctdb->status.count.req_finished++;
292                 ctdb_request_finished(ctdb, hdr);
293                 break;
294
295         case CTDB_REQ_CONTROL:
296                 ctdb->status.count.req_control++;
297                 ctdb_request_control(ctdb, hdr);
298                 break;
299
300         case CTDB_REPLY_CONTROL:
301                 ctdb->status.count.reply_control++;
302                 ctdb_reply_control(ctdb, hdr);
303                 break;
304
305         default:
306                 DEBUG(0,("%s: Packet with unknown operation %d\n", 
307                          __location__, hdr->operation));
308                 break;
309         }
310
311 done:
312         talloc_free(tmp_ctx);
313 }
314
315 /*
316   called by the transport layer when a packet comes in
317 */
318 void ctdb_recv_raw_pkt(void *p, uint8_t *data, uint32_t length)
319 {
320         struct ctdb_context *ctdb = talloc_get_type(p, struct ctdb_context);
321         ctdb_recv_pkt(ctdb, data, length);
322 }
323
324 /*
325   called by the transport layer when a node is dead
326 */
327 static void ctdb_node_dead(struct ctdb_node *node)
328 {
329         node->ctdb->num_connected--;
330         node->flags &= ~NODE_FLAGS_CONNECTED;
331         DEBUG(1,("%s: node %s is dead: %d connected\n", 
332                  node->ctdb->name, node->name, node->ctdb->num_connected));
333 }
334
335 /*
336   called by the transport layer when a node is connected
337 */
338 static void ctdb_node_connected(struct ctdb_node *node)
339 {
340         node->ctdb->num_connected++;
341         node->flags |= NODE_FLAGS_CONNECTED;
342         DEBUG(1,("%s: connected to %s - %d connected\n", 
343                  node->ctdb->name, node->name, node->ctdb->num_connected));
344 }
345
346 /*
347   wait for all nodes to be connected
348 */
349 void ctdb_daemon_connect_wait(struct ctdb_context *ctdb)
350 {
351         int expected = ctdb->num_nodes - 1;
352         if (ctdb->flags & CTDB_FLAG_SELF_CONNECT) {
353                 expected++;
354         }
355         while (ctdb->num_connected != expected) {
356                 DEBUG(3,("ctdb_connect_wait: waiting for %d nodes (have %d)\n", 
357                          expected, ctdb->num_connected));
358                 event_loop_once(ctdb->ev);
359         }
360         DEBUG(3,("ctdb_connect_wait: got all %d nodes\n", expected));
361 }
362
363 struct queue_next {
364         struct ctdb_context *ctdb;
365         struct ctdb_req_header *hdr;
366 };
367
368
369 /*
370   trigered when a deferred packet is due
371  */
372 static void queue_next_trigger(struct event_context *ev, struct timed_event *te, 
373                                struct timeval t, void *private_data)
374 {
375         struct queue_next *q = talloc_get_type(private_data, struct queue_next);
376         ctdb_recv_pkt(q->ctdb, (uint8_t *)q->hdr, q->hdr->length);
377         talloc_free(q);
378 }       
379
380 /*
381   defer a packet, so it is processed on the next event loop
382   this is used for sending packets to ourselves
383  */
384 static void ctdb_defer_packet(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
385 {
386         struct queue_next *q;
387         q = talloc(ctdb, struct queue_next);
388         if (q == NULL) {
389                 DEBUG(0,(__location__ " Failed to allocate deferred packet\n"));
390                 return;
391         }
392         q->ctdb = ctdb;
393         q->hdr = talloc_memdup(ctdb, hdr, hdr->length);
394         if (q->hdr == NULL) {
395                 DEBUG(0,("Error copying deferred packet to self\n"));
396                 return;
397         }
398 #if 0
399         /* use this to put packets directly into our recv function */
400         ctdb_recv_pkt(q->ctdb, (uint8_t *)q->hdr, q->hdr->length);
401         talloc_free(q);
402 #else
403         event_add_timed(ctdb->ev, q, timeval_zero(), queue_next_trigger, q);
404 #endif
405 }
406
407 /*
408   queue a packet or die
409 */
410 void ctdb_queue_packet(struct ctdb_context *ctdb, struct ctdb_req_header *hdr)
411 {
412         struct ctdb_node *node;
413         ctdb->status.node_packets_sent++;
414
415         if (!ctdb_validate_vnn(ctdb, hdr->destnode)) {
416                 DEBUG(0,(__location__ " cant send to node %u that does not exist\n", 
417                          hdr->destnode));
418                 return;
419         }
420
421         node = ctdb->nodes[hdr->destnode];
422
423         if (hdr->destnode == ctdb->vnn && !(ctdb->flags & CTDB_FLAG_SELF_CONNECT)) {
424                 ctdb_defer_packet(ctdb, hdr);
425         } else if (ctdb->methods->queue_pkt(node, (uint8_t *)hdr, hdr->length) != 0) {
426                 ctdb_fatal(ctdb, "Unable to queue packet\n");
427         }
428 }
429
430
431 static const struct ctdb_upcalls ctdb_upcalls = {
432         .recv_pkt       = ctdb_recv_pkt,
433         .node_dead      = ctdb_node_dead,
434         .node_connected = ctdb_node_connected
435 };
436
437 /*
438   initialise the ctdb daemon. 
439
440   NOTE: In current code the daemon does not fork. This is for testing purposes only
441   and to simplify the code.
442 */
443 struct ctdb_context *ctdb_init(struct event_context *ev)
444 {
445         struct ctdb_context *ctdb;
446
447         ctdb = talloc_zero(ev, struct ctdb_context);
448         ctdb->ev = ev;
449         ctdb->upcalls = &ctdb_upcalls;
450         ctdb->idr = idr_init(ctdb);
451         ctdb->max_lacount = CTDB_DEFAULT_MAX_LACOUNT;
452
453         return ctdb;
454 }
455