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