add control and logging of very high latencies.
[sahlberg/ctdb.git] / server / ctdb_daemon.c
1 /* 
2    ctdb daemon code
3
4    Copyright (C) Andrew Tridgell  2006
5
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.
10    
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.
15    
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/>.
18 */
19
20 #include "includes.h"
21 #include "db_wrap.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 "system/wait.h"
28 #include "../include/ctdb.h"
29 #include "../include/ctdb_private.h"
30 #include <sys/socket.h>
31
32 static void daemon_incoming_packet(void *, struct ctdb_req_header *);
33
34 /*
35   handler for when a node changes its flags
36 */
37 static void flag_change_handler(struct ctdb_context *ctdb, uint64_t srvid, 
38                                 TDB_DATA data, void *private_data)
39 {
40         struct ctdb_node_flag_change *c = (struct ctdb_node_flag_change *)data.dptr;
41
42         if (data.dsize != sizeof(*c) || !ctdb_validate_pnn(ctdb, c->pnn)) {
43                 DEBUG(DEBUG_CRIT,(__location__ "Invalid data in ctdb_node_flag_change\n"));
44                 return;
45         }
46
47         if (!ctdb_validate_pnn(ctdb, c->pnn)) {
48                 DEBUG(DEBUG_CRIT,("Bad pnn %u in flag_change_handler\n", c->pnn));
49                 return;
50         }
51
52         /* don't get the disconnected flag from the other node */
53         ctdb->nodes[c->pnn]->flags = 
54                 (ctdb->nodes[c->pnn]->flags&NODE_FLAGS_DISCONNECTED) 
55                 | (c->new_flags & ~NODE_FLAGS_DISCONNECTED);    
56         DEBUG(DEBUG_DEBUG,("Node flags for node %u are now 0x%x\n", c->pnn, ctdb->nodes[c->pnn]->flags));
57
58         /* make sure we don't hold any IPs when we shouldn't */
59         if (c->pnn == ctdb->pnn &&
60             (ctdb->nodes[c->pnn]->flags & (NODE_FLAGS_INACTIVE|NODE_FLAGS_BANNED))) {
61                 ctdb_release_all_ips(ctdb);
62         }
63 }
64
65 static void print_exit_message(void)
66 {
67         DEBUG(DEBUG_NOTICE,("CTDB daemon shutting down\n"));
68 }
69
70
71 /* called when the "startup" event script has finished */
72 static void ctdb_start_transport(struct ctdb_context *ctdb)
73 {
74         if (ctdb->methods == NULL) {
75                 DEBUG(DEBUG_ALERT,(__location__ " startup event finished but transport is DOWN.\n"));
76                 ctdb_fatal(ctdb, "transport is not initialized but startup completed");
77         }
78
79         /* start the transport running */
80         if (ctdb->methods->start(ctdb) != 0) {
81                 DEBUG(DEBUG_ALERT,("transport failed to start!\n"));
82                 ctdb_fatal(ctdb, "transport failed to start");
83         }
84
85         /* start the recovery daemon process */
86         if (ctdb_start_recoverd(ctdb) != 0) {
87                 DEBUG(DEBUG_ALERT,("Failed to start recovery daemon\n"));
88                 exit(11);
89         }
90
91         /* Make sure we log something when the daemon terminates */
92         atexit(print_exit_message);
93
94         /* a handler for when nodes are disabled/enabled */
95         ctdb_register_message_handler(ctdb, ctdb, CTDB_SRVID_NODE_FLAGS_CHANGED, 
96                                       flag_change_handler, NULL);
97
98         /* start monitoring for connected/disconnected nodes */
99         ctdb_start_keepalive(ctdb);
100
101         /* start monitoring for node health */
102         ctdb_start_monitoring(ctdb);
103
104         /* start periodic update of tcp tickle lists */
105         ctdb_start_tcp_tickle_update(ctdb);
106
107         /* start listening for recovery daemon pings */
108         ctdb_control_recd_ping(ctdb);
109 }
110
111 static void block_signal(int signum)
112 {
113         struct sigaction act;
114
115         memset(&act, 0, sizeof(act));
116
117         act.sa_handler = SIG_IGN;
118         sigemptyset(&act.sa_mask);
119         sigaddset(&act.sa_mask, signum);
120         sigaction(signum, &act, NULL);
121 }
122
123
124 /*
125   send a packet to a client
126  */
127 static int daemon_queue_send(struct ctdb_client *client, struct ctdb_req_header *hdr)
128 {
129         client->ctdb->statistics.client_packets_sent++;
130         return ctdb_queue_send(client->queue, (uint8_t *)hdr, hdr->length);
131 }
132
133 /*
134   message handler for when we are in daemon mode. This redirects the message
135   to the right client
136  */
137 static void daemon_message_handler(struct ctdb_context *ctdb, uint64_t srvid, 
138                                     TDB_DATA data, void *private_data)
139 {
140         struct ctdb_client *client = talloc_get_type(private_data, struct ctdb_client);
141         struct ctdb_req_message *r;
142         int len;
143
144         /* construct a message to send to the client containing the data */
145         len = offsetof(struct ctdb_req_message, data) + data.dsize;
146         r = ctdbd_allocate_pkt(ctdb, ctdb, CTDB_REQ_MESSAGE, 
147                                len, struct ctdb_req_message);
148         CTDB_NO_MEMORY_VOID(ctdb, r);
149
150         talloc_set_name_const(r, "req_message packet");
151
152         r->srvid         = srvid;
153         r->datalen       = data.dsize;
154         memcpy(&r->data[0], data.dptr, data.dsize);
155
156         daemon_queue_send(client, &r->hdr);
157
158         talloc_free(r);
159 }
160                                            
161
162 /*
163   this is called when the ctdb daemon received a ctdb request to 
164   set the srvid from the client
165  */
166 int daemon_register_message_handler(struct ctdb_context *ctdb, uint32_t client_id, uint64_t srvid)
167 {
168         struct ctdb_client *client = ctdb_reqid_find(ctdb, client_id, struct ctdb_client);
169         int res;
170         if (client == NULL) {
171                 DEBUG(DEBUG_ERR,("Bad client_id in daemon_request_register_message_handler\n"));
172                 return -1;
173         }
174         res = ctdb_register_message_handler(ctdb, client, srvid, daemon_message_handler, client);
175         if (res != 0) {
176                 DEBUG(DEBUG_ERR,(__location__ " Failed to register handler %llu in daemon\n", 
177                          (unsigned long long)srvid));
178         } else {
179                 DEBUG(DEBUG_INFO,(__location__ " Registered message handler for srvid=%llu\n", 
180                          (unsigned long long)srvid));
181         }
182
183         /* this is a hack for Samba - we now know the pid of the Samba client */
184         if ((srvid & 0xFFFFFFFF) == srvid &&
185             kill(srvid, 0) == 0) {
186                 client->pid = srvid;
187                 DEBUG(DEBUG_INFO,(__location__ " Registered PID %u for client %u\n",
188                          (unsigned)client->pid, client_id));
189         }
190         return res;
191 }
192
193 /*
194   this is called when the ctdb daemon received a ctdb request to 
195   remove a srvid from the client
196  */
197 int daemon_deregister_message_handler(struct ctdb_context *ctdb, uint32_t client_id, uint64_t srvid)
198 {
199         struct ctdb_client *client = ctdb_reqid_find(ctdb, client_id, struct ctdb_client);
200         if (client == NULL) {
201                 DEBUG(DEBUG_ERR,("Bad client_id in daemon_request_deregister_message_handler\n"));
202                 return -1;
203         }
204         return ctdb_deregister_message_handler(ctdb, srvid, client);
205 }
206
207
208 /*
209   destroy a ctdb_client
210 */
211 static int ctdb_client_destructor(struct ctdb_client *client)
212 {
213         ctdb_takeover_client_destructor_hook(client);
214         ctdb_reqid_remove(client->ctdb, client->client_id);
215         client->ctdb->statistics.num_clients--;
216
217         if (client->num_persistent_updates != 0) {
218                 DEBUG(DEBUG_ERR,(__location__ " Client disconnecting with %u persistent updates in flight. Starting recovery\n", client->num_persistent_updates));
219                 client->ctdb->recovery_mode = CTDB_RECOVERY_ACTIVE;
220         }
221
222         return 0;
223 }
224
225
226 /*
227   this is called when the ctdb daemon received a ctdb request message
228   from a local client over the unix domain socket
229  */
230 static void daemon_request_message_from_client(struct ctdb_client *client, 
231                                                struct ctdb_req_message *c)
232 {
233         TDB_DATA data;
234         int res;
235
236         /* maybe the message is for another client on this node */
237         if (ctdb_get_pnn(client->ctdb)==c->hdr.destnode) {
238                 ctdb_request_message(client->ctdb, (struct ctdb_req_header *)c);
239                 return;
240         }
241
242         /* its for a remote node */
243         data.dptr = &c->data[0];
244         data.dsize = c->datalen;
245         res = ctdb_daemon_send_message(client->ctdb, c->hdr.destnode,
246                                        c->srvid, data);
247         if (res != 0) {
248                 DEBUG(DEBUG_ERR,(__location__ " Failed to send message to remote node %u\n",
249                          c->hdr.destnode));
250         }
251 }
252
253
254 struct daemon_call_state {
255         struct ctdb_client *client;
256         uint32_t reqid;
257         struct ctdb_call *call;
258         struct timeval start_time;
259 };
260
261 /* 
262    complete a call from a client 
263 */
264 static void daemon_call_from_client_callback(struct ctdb_call_state *state)
265 {
266         struct daemon_call_state *dstate = talloc_get_type(state->async.private_data, 
267                                                            struct daemon_call_state);
268         struct ctdb_reply_call *r;
269         int res;
270         uint32_t length;
271         struct ctdb_client *client = dstate->client;
272
273         talloc_steal(client, dstate);
274         talloc_steal(dstate, dstate->call);
275
276         res = ctdb_daemon_call_recv(state, dstate->call);
277         if (res != 0) {
278                 DEBUG(DEBUG_ERR, (__location__ " ctdbd_call_recv() returned error\n"));
279                 client->ctdb->statistics.pending_calls--;
280                 ctdb_latency(state->ctdb_db, "call_from_client_cb 1", &client->ctdb->statistics.max_call_latency, dstate->start_time);
281                 return;
282         }
283
284         length = offsetof(struct ctdb_reply_call, data) + dstate->call->reply_data.dsize;
285         r = ctdbd_allocate_pkt(client->ctdb, dstate, CTDB_REPLY_CALL, 
286                                length, struct ctdb_reply_call);
287         if (r == NULL) {
288                 DEBUG(DEBUG_ERR, (__location__ " Failed to allocate reply_call in ctdb daemon\n"));
289                 client->ctdb->statistics.pending_calls--;
290                 ctdb_latency(state->ctdb_db, "call_from_client_cb 2", &client->ctdb->statistics.max_call_latency, dstate->start_time);
291                 return;
292         }
293         r->hdr.reqid        = dstate->reqid;
294         r->datalen          = dstate->call->reply_data.dsize;
295         memcpy(&r->data[0], dstate->call->reply_data.dptr, r->datalen);
296
297         res = daemon_queue_send(client, &r->hdr);
298         if (res != 0) {
299                 DEBUG(DEBUG_ERR, (__location__ " Failed to queue packet from daemon to client\n"));
300         }
301         ctdb_latency(state->ctdb_db, "call_from_client_cb 3", &client->ctdb->statistics.max_call_latency, dstate->start_time);
302         talloc_free(dstate);
303         client->ctdb->statistics.pending_calls--;
304 }
305
306 struct ctdb_daemon_packet_wrap {
307         struct ctdb_context *ctdb;
308         uint32_t client_id;
309 };
310
311 /*
312   a wrapper to catch disconnected clients
313  */
314 static void daemon_incoming_packet_wrap(void *p, struct ctdb_req_header *hdr)
315 {
316         struct ctdb_client *client;
317         struct ctdb_daemon_packet_wrap *w = talloc_get_type(p, 
318                                                             struct ctdb_daemon_packet_wrap);
319         if (w == NULL) {
320                 DEBUG(DEBUG_CRIT,(__location__ " Bad packet type '%s'\n", talloc_get_name(p)));
321                 return;
322         }
323
324         client = ctdb_reqid_find(w->ctdb, w->client_id, struct ctdb_client);
325         if (client == NULL) {
326                 DEBUG(DEBUG_ERR,(__location__ " Packet for disconnected client %u\n",
327                          w->client_id));
328                 talloc_free(w);
329                 return;
330         }
331         talloc_free(w);
332
333         /* process it */
334         daemon_incoming_packet(client, hdr);    
335 }
336
337
338 /*
339   this is called when the ctdb daemon received a ctdb request call
340   from a local client over the unix domain socket
341  */
342 static void daemon_request_call_from_client(struct ctdb_client *client, 
343                                             struct ctdb_req_call *c)
344 {
345         struct ctdb_call_state *state;
346         struct ctdb_db_context *ctdb_db;
347         struct daemon_call_state *dstate;
348         struct ctdb_call *call;
349         struct ctdb_ltdb_header header;
350         TDB_DATA key, data;
351         int ret;
352         struct ctdb_context *ctdb = client->ctdb;
353         struct ctdb_daemon_packet_wrap *w;
354
355         ctdb->statistics.total_calls++;
356         ctdb->statistics.pending_calls++;
357
358         ctdb_db = find_ctdb_db(client->ctdb, c->db_id);
359         if (!ctdb_db) {
360                 DEBUG(DEBUG_ERR, (__location__ " Unknown database in request. db_id==0x%08x",
361                           c->db_id));
362                 ctdb->statistics.pending_calls--;
363                 return;
364         }
365
366         key.dptr = c->data;
367         key.dsize = c->keylen;
368
369         w = talloc(ctdb, struct ctdb_daemon_packet_wrap);
370         CTDB_NO_MEMORY_VOID(ctdb, w);   
371
372         w->ctdb = ctdb;
373         w->client_id = client->client_id;
374
375         ret = ctdb_ltdb_lock_fetch_requeue(ctdb_db, key, &header, 
376                                            (struct ctdb_req_header *)c, &data,
377                                            daemon_incoming_packet_wrap, w, True);
378         if (ret == -2) {
379                 /* will retry later */
380                 ctdb->statistics.pending_calls--;
381                 return;
382         }
383
384         talloc_free(w);
385
386         if (ret != 0) {
387                 DEBUG(DEBUG_ERR,(__location__ " Unable to fetch record\n"));
388                 ctdb->statistics.pending_calls--;
389                 return;
390         }
391
392         dstate = talloc(client, struct daemon_call_state);
393         if (dstate == NULL) {
394                 ctdb_ltdb_unlock(ctdb_db, key);
395                 DEBUG(DEBUG_ERR,(__location__ " Unable to allocate dstate\n"));
396                 ctdb->statistics.pending_calls--;
397                 return;
398         }
399         dstate->start_time = timeval_current();
400         dstate->client = client;
401         dstate->reqid  = c->hdr.reqid;
402         talloc_steal(dstate, data.dptr);
403
404         call = dstate->call = talloc_zero(dstate, struct ctdb_call);
405         if (call == NULL) {
406                 ctdb_ltdb_unlock(ctdb_db, key);
407                 DEBUG(DEBUG_ERR,(__location__ " Unable to allocate call\n"));
408                 ctdb->statistics.pending_calls--;
409                 ctdb_latency(ctdb_db, "call_from_client 1", &ctdb->statistics.max_call_latency, dstate->start_time);
410                 return;
411         }
412
413         call->call_id = c->callid;
414         call->key = key;
415         call->call_data.dptr = c->data + c->keylen;
416         call->call_data.dsize = c->calldatalen;
417         call->flags = c->flags;
418
419         if (header.dmaster == ctdb->pnn) {
420                 state = ctdb_call_local_send(ctdb_db, call, &header, &data);
421         } else {
422                 state = ctdb_daemon_call_send_remote(ctdb_db, call, &header);
423         }
424
425         ctdb_ltdb_unlock(ctdb_db, key);
426
427         if (state == NULL) {
428                 DEBUG(DEBUG_ERR,(__location__ " Unable to setup call send\n"));
429                 ctdb->statistics.pending_calls--;
430                 ctdb_latency(ctdb_db, "call_from_client 2", &ctdb->statistics.max_call_latency, dstate->start_time);
431                 return;
432         }
433         talloc_steal(state, dstate);
434         talloc_steal(client, state);
435
436         state->async.fn = daemon_call_from_client_callback;
437         state->async.private_data = dstate;
438 }
439
440
441 static void daemon_request_control_from_client(struct ctdb_client *client, 
442                                                struct ctdb_req_control *c);
443
444 /* data contains a packet from the client */
445 static void daemon_incoming_packet(void *p, struct ctdb_req_header *hdr)
446 {
447         struct ctdb_client *client = talloc_get_type(p, struct ctdb_client);
448         TALLOC_CTX *tmp_ctx;
449         struct ctdb_context *ctdb = client->ctdb;
450
451         /* place the packet as a child of a tmp_ctx. We then use
452            talloc_free() below to free it. If any of the calls want
453            to keep it, then they will steal it somewhere else, and the
454            talloc_free() will be a no-op */
455         tmp_ctx = talloc_new(client);
456         talloc_steal(tmp_ctx, hdr);
457
458         if (hdr->ctdb_magic != CTDB_MAGIC) {
459                 ctdb_set_error(client->ctdb, "Non CTDB packet rejected in daemon\n");
460                 goto done;
461         }
462
463         if (hdr->ctdb_version != CTDB_VERSION) {
464                 ctdb_set_error(client->ctdb, "Bad CTDB version 0x%x rejected in daemon\n", hdr->ctdb_version);
465                 goto done;
466         }
467
468         switch (hdr->operation) {
469         case CTDB_REQ_CALL:
470                 ctdb->statistics.client.req_call++;
471                 daemon_request_call_from_client(client, (struct ctdb_req_call *)hdr);
472                 break;
473
474         case CTDB_REQ_MESSAGE:
475                 ctdb->statistics.client.req_message++;
476                 daemon_request_message_from_client(client, (struct ctdb_req_message *)hdr);
477                 break;
478
479         case CTDB_REQ_CONTROL:
480                 ctdb->statistics.client.req_control++;
481                 daemon_request_control_from_client(client, (struct ctdb_req_control *)hdr);
482                 break;
483
484         default:
485                 DEBUG(DEBUG_CRIT,(__location__ " daemon: unrecognized operation %u\n",
486                          hdr->operation));
487         }
488
489 done:
490         talloc_free(tmp_ctx);
491 }
492
493 /*
494   called when the daemon gets a incoming packet
495  */
496 static void ctdb_daemon_read_cb(uint8_t *data, size_t cnt, void *args)
497 {
498         struct ctdb_client *client = talloc_get_type(args, struct ctdb_client);
499         struct ctdb_req_header *hdr;
500
501         if (cnt == 0) {
502                 talloc_free(client);
503                 return;
504         }
505
506         client->ctdb->statistics.client_packets_recv++;
507
508         if (cnt < sizeof(*hdr)) {
509                 ctdb_set_error(client->ctdb, "Bad packet length %u in daemon\n", 
510                                (unsigned)cnt);
511                 return;
512         }
513         hdr = (struct ctdb_req_header *)data;
514         if (cnt != hdr->length) {
515                 ctdb_set_error(client->ctdb, "Bad header length %u expected %u\n in daemon", 
516                                (unsigned)hdr->length, (unsigned)cnt);
517                 return;
518         }
519
520         if (hdr->ctdb_magic != CTDB_MAGIC) {
521                 ctdb_set_error(client->ctdb, "Non CTDB packet rejected\n");
522                 return;
523         }
524
525         if (hdr->ctdb_version != CTDB_VERSION) {
526                 ctdb_set_error(client->ctdb, "Bad CTDB version 0x%x rejected in daemon\n", hdr->ctdb_version);
527                 return;
528         }
529
530         DEBUG(DEBUG_DEBUG,(__location__ " client request %u of type %u length %u from "
531                  "node %u to %u\n", hdr->reqid, hdr->operation, hdr->length,
532                  hdr->srcnode, hdr->destnode));
533
534         /* it is the responsibility of the incoming packet function to free 'data' */
535         daemon_incoming_packet(client, hdr);
536 }
537
538 static void ctdb_accept_client(struct event_context *ev, struct fd_event *fde, 
539                          uint16_t flags, void *private_data)
540 {
541         struct sockaddr_un addr;
542         socklen_t len;
543         int fd;
544         struct ctdb_context *ctdb = talloc_get_type(private_data, struct ctdb_context);
545         struct ctdb_client *client;
546 #ifdef _AIX
547         struct peercred_struct cr;
548         socklen_t crl = sizeof(struct peercred_struct);
549 #else
550         struct ucred cr;
551         socklen_t crl = sizeof(struct ucred);
552 #endif
553
554         memset(&addr, 0, sizeof(addr));
555         len = sizeof(addr);
556         fd = accept(ctdb->daemon.sd, (struct sockaddr *)&addr, &len);
557         if (fd == -1) {
558                 return;
559         }
560
561         set_nonblocking(fd);
562         set_close_on_exec(fd);
563
564         client = talloc_zero(ctdb, struct ctdb_client);
565 #ifdef _AIX
566         if (getsockopt(fd, SOL_SOCKET, SO_PEERID, &cr, &crl) == 0) {
567 #else
568         if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &cr, &crl) == 0) {
569 #endif
570                 talloc_asprintf(client, "struct ctdb_client: pid:%u", (unsigned)cr.pid);
571         }
572
573         client->ctdb = ctdb;
574         client->fd = fd;
575         client->client_id = ctdb_reqid_new(ctdb, client);
576         ctdb->statistics.num_clients++;
577
578         client->queue = ctdb_queue_setup(ctdb, client, fd, CTDB_DS_ALIGNMENT, 
579                                          ctdb_daemon_read_cb, client);
580
581         talloc_set_destructor(client, ctdb_client_destructor);
582 }
583
584
585
586 /*
587   create a unix domain socket and bind it
588   return a file descriptor open on the socket 
589 */
590 static int ux_socket_bind(struct ctdb_context *ctdb)
591 {
592         struct sockaddr_un addr;
593
594         ctdb->daemon.sd = socket(AF_UNIX, SOCK_STREAM, 0);
595         if (ctdb->daemon.sd == -1) {
596                 return -1;
597         }
598
599         set_close_on_exec(ctdb->daemon.sd);
600         set_nonblocking(ctdb->daemon.sd);
601
602         memset(&addr, 0, sizeof(addr));
603         addr.sun_family = AF_UNIX;
604         strncpy(addr.sun_path, ctdb->daemon.name, sizeof(addr.sun_path));
605
606         if (bind(ctdb->daemon.sd, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
607                 DEBUG(DEBUG_CRIT,("Unable to bind on ctdb socket '%s'\n", ctdb->daemon.name));
608                 goto failed;
609         }       
610
611         if (chown(ctdb->daemon.name, geteuid(), getegid()) != 0 ||
612             chmod(ctdb->daemon.name, 0700) != 0) {
613                 DEBUG(DEBUG_CRIT,("Unable to secure ctdb socket '%s', ctdb->daemon.name\n", ctdb->daemon.name));
614                 goto failed;
615         } 
616
617
618         if (listen(ctdb->daemon.sd, 10) != 0) {
619                 DEBUG(DEBUG_CRIT,("Unable to listen on ctdb socket '%s'\n", ctdb->daemon.name));
620                 goto failed;
621         }
622
623         return 0;
624
625 failed:
626         close(ctdb->daemon.sd);
627         ctdb->daemon.sd = -1;
628         return -1;      
629 }
630
631 /*
632   delete the socket on exit - called on destruction of autofree context
633  */
634 static int unlink_destructor(const char *name)
635 {
636         unlink(name);
637         return 0;
638 }
639
640 static void sig_child_handler(struct event_context *ev,
641         struct signal_event *se, int signum, int count,
642         void *dont_care, 
643         void *private_data)
644 {
645 //      struct ctdb_context *ctdb = talloc_get_type(private_data, struct ctdb_context);
646         int status;
647         pid_t pid = -1;
648
649         while (pid != 0) {
650                 pid = waitpid(-1, &status, WNOHANG);
651                 if (pid == -1) {
652                         DEBUG(DEBUG_ERR, (__location__ " waitpid() returned error. errno:%d\n", errno));
653                         return;
654                 }
655                 if (pid > 0) {
656                         DEBUG(DEBUG_DEBUG, ("SIGCHLD from %d\n", (int)pid));
657                 }
658         }
659 }
660
661 /*
662   start the protocol going as a daemon
663 */
664 int ctdb_start_daemon(struct ctdb_context *ctdb, bool do_fork)
665 {
666         int res, ret = -1;
667         struct fd_event *fde;
668         const char *domain_socket_name;
669         struct signal_event *se;
670
671         /* get rid of any old sockets */
672         unlink(ctdb->daemon.name);
673
674         /* create a unix domain stream socket to listen to */
675         res = ux_socket_bind(ctdb);
676         if (res!=0) {
677                 DEBUG(DEBUG_ALERT,(__location__ " Failed to open CTDB unix domain socket\n"));
678                 exit(10);
679         }
680
681         if (do_fork && fork()) {
682                 return 0;
683         }
684
685         tdb_reopen_all(False);
686
687         if (do_fork) {
688                 setsid();
689                 close(0);
690                 if (open("/dev/null", O_RDONLY) != 0) {
691                         DEBUG(DEBUG_ALERT,(__location__ " Failed to setup stdin on /dev/null\n"));
692                         exit(11);
693                 }
694         }
695         block_signal(SIGPIPE);
696
697         if (ctdb->do_setsched) {
698                 /* try to set us up as realtime */
699                 ctdb_set_scheduler(ctdb);
700         }
701
702         /* ensure the socket is deleted on exit of the daemon */
703         domain_socket_name = talloc_strdup(talloc_autofree_context(), ctdb->daemon.name);
704         talloc_set_destructor(domain_socket_name, unlink_destructor);   
705
706         ctdb->ev = event_context_init(NULL);
707
708         ctdb_set_child_logging(ctdb);
709
710         /* force initial recovery for election */
711         ctdb->recovery_mode = CTDB_RECOVERY_ACTIVE;
712
713         if (strcmp(ctdb->transport, "tcp") == 0) {
714                 int ctdb_tcp_init(struct ctdb_context *);
715                 ret = ctdb_tcp_init(ctdb);
716         }
717 #ifdef USE_INFINIBAND
718         if (strcmp(ctdb->transport, "ib") == 0) {
719                 int ctdb_ibw_init(struct ctdb_context *);
720                 ret = ctdb_ibw_init(ctdb);
721         }
722 #endif
723         if (ret != 0) {
724                 DEBUG(DEBUG_ERR,("Failed to initialise transport '%s'\n", ctdb->transport));
725                 return -1;
726         }
727
728         if (ctdb->methods == NULL) {
729                 DEBUG(DEBUG_ALERT,(__location__ " Can not initialize transport. ctdb->methods is NULL\n"));
730                 ctdb_fatal(ctdb, "transport is unavailable. can not initialize.");
731         }
732
733         /* initialise the transport  */
734         if (ctdb->methods->initialise(ctdb) != 0) {
735                 ctdb_fatal(ctdb, "transport failed to initialise");
736         }
737
738         /* attach to any existing persistent databases */
739         if (ctdb_attach_persistent(ctdb) != 0) {
740                 ctdb_fatal(ctdb, "Failed to attach to persistent databases\n");         
741         }
742
743         /* start frozen, then let the first election sort things out */
744         if (!ctdb_blocking_freeze(ctdb)) {
745                 ctdb_fatal(ctdb, "Failed to get initial freeze\n");
746         }
747
748         /* now start accepting clients, only can do this once frozen */
749         fde = event_add_fd(ctdb->ev, ctdb, ctdb->daemon.sd, 
750                            EVENT_FD_READ|EVENT_FD_AUTOCLOSE, 
751                            ctdb_accept_client, ctdb);
752
753         /* tell all other nodes we've just started up */
754         ctdb_daemon_send_control(ctdb, CTDB_BROADCAST_ALL,
755                                  0, CTDB_CONTROL_STARTUP, 0,
756                                  CTDB_CTRL_FLAG_NOREPLY,
757                                  tdb_null, NULL, NULL);
758
759         /* release any IPs we hold from previous runs of the daemon */
760         ctdb_release_all_ips(ctdb);
761
762         /* start the transport going */
763         ctdb_start_transport(ctdb);
764
765         /* set up a handler to pick up sigchld */
766         se = event_add_signal(ctdb->ev, ctdb,
767                                      SIGCHLD, 0,
768                                      sig_child_handler,
769                                      ctdb);
770         if (se == NULL) {
771                 DEBUG(DEBUG_CRIT,("Failed to set up signal handler for SIGCHLD\n"));
772                 exit(1);
773         }
774           
775         /* go into a wait loop to allow other nodes to complete */
776         event_loop_wait(ctdb->ev);
777
778         DEBUG(DEBUG_CRIT,("event_loop_wait() returned. this should not happen\n"));
779         exit(1);
780 }
781
782 /*
783   allocate a packet for use in daemon<->daemon communication
784  */
785 struct ctdb_req_header *_ctdb_transport_allocate(struct ctdb_context *ctdb,
786                                                  TALLOC_CTX *mem_ctx, 
787                                                  enum ctdb_operation operation, 
788                                                  size_t length, size_t slength,
789                                                  const char *type)
790 {
791         int size;
792         struct ctdb_req_header *hdr;
793
794         length = MAX(length, slength);
795         size = (length+(CTDB_DS_ALIGNMENT-1)) & ~(CTDB_DS_ALIGNMENT-1);
796
797         if (ctdb->methods == NULL) {
798                 DEBUG(DEBUG_ERR,(__location__ " Unable to allocate transport packet for operation %u of length %u. Transport is DOWN.\n",
799                          operation, (unsigned)length));
800                 return NULL;
801         }
802
803         hdr = (struct ctdb_req_header *)ctdb->methods->allocate_pkt(mem_ctx, size);
804         if (hdr == NULL) {
805                 DEBUG(DEBUG_ERR,("Unable to allocate transport packet for operation %u of length %u\n",
806                          operation, (unsigned)length));
807                 return NULL;
808         }
809         talloc_set_name_const(hdr, type);
810         memset(hdr, 0, slength);
811         hdr->length       = length;
812         hdr->operation    = operation;
813         hdr->ctdb_magic   = CTDB_MAGIC;
814         hdr->ctdb_version = CTDB_VERSION;
815         hdr->generation   = ctdb->vnn_map->generation;
816         hdr->srcnode      = ctdb->pnn;
817
818         return hdr;     
819 }
820
821 struct daemon_control_state {
822         struct daemon_control_state *next, *prev;
823         struct ctdb_client *client;
824         struct ctdb_req_control *c;
825         uint32_t reqid;
826         struct ctdb_node *node;
827 };
828
829 /*
830   callback when a control reply comes in
831  */
832 static void daemon_control_callback(struct ctdb_context *ctdb,
833                                     int32_t status, TDB_DATA data, 
834                                     const char *errormsg,
835                                     void *private_data)
836 {
837         struct daemon_control_state *state = talloc_get_type(private_data, 
838                                                              struct daemon_control_state);
839         struct ctdb_client *client = state->client;
840         struct ctdb_reply_control *r;
841         size_t len;
842
843         /* construct a message to send to the client containing the data */
844         len = offsetof(struct ctdb_reply_control, data) + data.dsize;
845         if (errormsg) {
846                 len += strlen(errormsg);
847         }
848         r = ctdbd_allocate_pkt(ctdb, state, CTDB_REPLY_CONTROL, len, 
849                                struct ctdb_reply_control);
850         CTDB_NO_MEMORY_VOID(ctdb, r);
851
852         r->hdr.reqid     = state->reqid;
853         r->status        = status;
854         r->datalen       = data.dsize;
855         r->errorlen = 0;
856         memcpy(&r->data[0], data.dptr, data.dsize);
857         if (errormsg) {
858                 r->errorlen = strlen(errormsg);
859                 memcpy(&r->data[r->datalen], errormsg, r->errorlen);
860         }
861
862         daemon_queue_send(client, &r->hdr);
863
864         talloc_free(state);
865 }
866
867 /*
868   fail all pending controls to a disconnected node
869  */
870 void ctdb_daemon_cancel_controls(struct ctdb_context *ctdb, struct ctdb_node *node)
871 {
872         struct daemon_control_state *state;
873         while ((state = node->pending_controls)) {
874                 DLIST_REMOVE(node->pending_controls, state);
875                 daemon_control_callback(ctdb, (uint32_t)-1, tdb_null, 
876                                         "node is disconnected", state);
877         }
878 }
879
880 /*
881   destroy a daemon_control_state
882  */
883 static int daemon_control_destructor(struct daemon_control_state *state)
884 {
885         if (state->node) {
886                 DLIST_REMOVE(state->node->pending_controls, state);
887         }
888         return 0;
889 }
890
891 /*
892   this is called when the ctdb daemon received a ctdb request control
893   from a local client over the unix domain socket
894  */
895 static void daemon_request_control_from_client(struct ctdb_client *client, 
896                                                struct ctdb_req_control *c)
897 {
898         TDB_DATA data;
899         int res;
900         struct daemon_control_state *state;
901         TALLOC_CTX *tmp_ctx = talloc_new(client);
902
903         if (c->hdr.destnode == CTDB_CURRENT_NODE) {
904                 c->hdr.destnode = client->ctdb->pnn;
905         }
906
907         state = talloc(client, struct daemon_control_state);
908         CTDB_NO_MEMORY_VOID(client->ctdb, state);
909
910         state->client = client;
911         state->c = talloc_steal(state, c);
912         state->reqid = c->hdr.reqid;
913         if (ctdb_validate_pnn(client->ctdb, c->hdr.destnode)) {
914                 state->node = client->ctdb->nodes[c->hdr.destnode];
915                 DLIST_ADD(state->node->pending_controls, state);
916         } else {
917                 state->node = NULL;
918         }
919
920         talloc_set_destructor(state, daemon_control_destructor);
921
922         if (c->flags & CTDB_CTRL_FLAG_NOREPLY) {
923                 talloc_steal(tmp_ctx, state);
924         }
925         
926         data.dptr = &c->data[0];
927         data.dsize = c->datalen;
928         res = ctdb_daemon_send_control(client->ctdb, c->hdr.destnode,
929                                        c->srvid, c->opcode, client->client_id,
930                                        c->flags,
931                                        data, daemon_control_callback,
932                                        state);
933         if (res != 0) {
934                 DEBUG(DEBUG_ERR,(__location__ " Failed to send control to remote node %u\n",
935                          c->hdr.destnode));
936         }
937
938         talloc_free(tmp_ctx);
939 }
940
941 /*
942   register a call function
943 */
944 int ctdb_daemon_set_call(struct ctdb_context *ctdb, uint32_t db_id,
945                          ctdb_fn_t fn, int id)
946 {
947         struct ctdb_registered_call *call;
948         struct ctdb_db_context *ctdb_db;
949
950         ctdb_db = find_ctdb_db(ctdb, db_id);
951         if (ctdb_db == NULL) {
952                 return -1;
953         }
954
955         call = talloc(ctdb_db, struct ctdb_registered_call);
956         call->fn = fn;
957         call->id = id;
958
959         DLIST_ADD(ctdb_db->calls, call);        
960         return 0;
961 }
962
963
964
965 /*
966   this local messaging handler is ugly, but is needed to prevent
967   recursion in ctdb_send_message() when the destination node is the
968   same as the source node
969  */
970 struct ctdb_local_message {
971         struct ctdb_context *ctdb;
972         uint64_t srvid;
973         TDB_DATA data;
974 };
975
976 static void ctdb_local_message_trigger(struct event_context *ev, struct timed_event *te, 
977                                        struct timeval t, void *private_data)
978 {
979         struct ctdb_local_message *m = talloc_get_type(private_data, 
980                                                        struct ctdb_local_message);
981         int res;
982
983         res = ctdb_dispatch_message(m->ctdb, m->srvid, m->data);
984         if (res != 0) {
985                 DEBUG(DEBUG_ERR, (__location__ " Failed to dispatch message for srvid=%llu\n", 
986                           (unsigned long long)m->srvid));
987         }
988         talloc_free(m);
989 }
990
991 static int ctdb_local_message(struct ctdb_context *ctdb, uint64_t srvid, TDB_DATA data)
992 {
993         struct ctdb_local_message *m;
994         m = talloc(ctdb, struct ctdb_local_message);
995         CTDB_NO_MEMORY(ctdb, m);
996
997         m->ctdb = ctdb;
998         m->srvid = srvid;
999         m->data  = data;
1000         m->data.dptr = talloc_memdup(m, m->data.dptr, m->data.dsize);
1001         if (m->data.dptr == NULL) {
1002                 talloc_free(m);
1003                 return -1;
1004         }
1005
1006         /* this needs to be done as an event to prevent recursion */
1007         event_add_timed(ctdb->ev, m, timeval_zero(), ctdb_local_message_trigger, m);
1008         return 0;
1009 }
1010
1011 /*
1012   send a ctdb message
1013 */
1014 int ctdb_daemon_send_message(struct ctdb_context *ctdb, uint32_t pnn,
1015                              uint64_t srvid, TDB_DATA data)
1016 {
1017         struct ctdb_req_message *r;
1018         int len;
1019
1020         /* see if this is a message to ourselves */
1021         if (pnn == ctdb->pnn) {
1022                 return ctdb_local_message(ctdb, srvid, data);
1023         }
1024
1025         len = offsetof(struct ctdb_req_message, data) + data.dsize;
1026         r = ctdb_transport_allocate(ctdb, ctdb, CTDB_REQ_MESSAGE, len,
1027                                     struct ctdb_req_message);
1028         CTDB_NO_MEMORY(ctdb, r);
1029
1030         r->hdr.destnode  = pnn;
1031         r->srvid         = srvid;
1032         r->datalen       = data.dsize;
1033         memcpy(&r->data[0], data.dptr, data.dsize);
1034
1035         ctdb_queue_packet(ctdb, &r->hdr);
1036
1037         talloc_free(r);
1038         return 0;
1039 }
1040