s3: Remove superfluous ;
[mat/samba.git] / source3 / lib / ctdbd_conn.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba internal messaging functions
4    Copyright (C) 2007 by Volker Lendecke
5    Copyright (C) 2007 by Andrew Tridgell
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22
23 #ifdef CLUSTER_SUPPORT
24
25 #include "librpc/gen_ndr/messaging.h"
26 #include "librpc/gen_ndr/ndr_messaging.h"
27 #include "ctdbd_conn.h"
28
29 /* paths to these include files come from --with-ctdb= in configure */
30 #include "ctdb.h"
31 #include "ctdb_private.h"
32
33 struct ctdbd_connection {
34         struct messaging_context *msg_ctx;
35         uint32 reqid;
36         uint32 our_vnn;
37         uint64 rand_srvid;
38         struct packet_context *pkt;
39         struct fd_event *fde;
40
41         void (*release_ip_handler)(const char *ip_addr, void *private_data);
42         void *release_ip_priv;
43 };
44
45 static NTSTATUS ctdbd_control(struct ctdbd_connection *conn,
46                               uint32_t vnn, uint32 opcode, 
47                               uint64_t srvid, uint32_t flags, TDB_DATA data, 
48                               TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
49                               int *cstatus);
50
51 /*
52  * exit on fatal communications errors with the ctdbd daemon
53  */
54 static void cluster_fatal(const char *why)
55 {
56         DEBUG(0,("cluster fatal event: %s - exiting immediately\n", why));
57         /* we don't use smb_panic() as we don't want to delay to write
58            a core file. We need to release this process id immediately
59            so that someone else can take over without getting sharing
60            violations */
61         _exit(1);
62 }
63
64 /*
65  *
66  */
67 static void ctdb_packet_dump(struct ctdb_req_header *hdr)
68 {
69         if (DEBUGLEVEL < 10) {
70                 return;
71         }
72         DEBUGADD(10, ("len=%d, magic=%x, vers=%d, gen=%d, op=%d, reqid=%d\n",
73                       (int)hdr->length, (int)hdr->ctdb_magic,
74                       (int)hdr->ctdb_version, (int)hdr->generation,
75                       (int)hdr->operation, (int)hdr->reqid));
76 }
77
78 /*
79  * Register a srvid with ctdbd
80  */
81 static NTSTATUS register_with_ctdbd(struct ctdbd_connection *conn,
82                                     uint64_t srvid)
83 {
84
85         int cstatus;
86         return ctdbd_control(conn, CTDB_CURRENT_NODE,
87                              CTDB_CONTROL_REGISTER_SRVID, srvid, 0,
88                              tdb_null, NULL, NULL, &cstatus);
89 }
90
91 /*
92  * get our vnn from the cluster
93  */
94 static NTSTATUS get_cluster_vnn(struct ctdbd_connection *conn, uint32 *vnn)
95 {
96         int32_t cstatus=-1;
97         NTSTATUS status;
98         status = ctdbd_control(conn,
99                                CTDB_CURRENT_NODE, CTDB_CONTROL_GET_PNN, 0, 0,
100                                tdb_null, NULL, NULL, &cstatus);
101         if (!NT_STATUS_IS_OK(status)) {
102                 cluster_fatal("ctdbd_control failed\n");
103         }
104         *vnn = (uint32_t)cstatus;
105         return status;
106 }
107
108 /*
109  * Are we active (i.e. not banned or stopped?)
110  */
111 static bool ctdbd_working(struct ctdbd_connection *conn, uint32_t vnn)
112 {
113         int32_t cstatus=-1;
114         NTSTATUS status;
115         TDB_DATA outdata;
116         struct ctdb_node_map *m;
117         uint32_t failure_flags;
118         bool ret = false;
119         int i;
120
121         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
122                                CTDB_CONTROL_GET_NODEMAP, 0, 0,
123                                tdb_null, talloc_tos(), &outdata, &cstatus);
124         if (!NT_STATUS_IS_OK(status)) {
125                 cluster_fatal("ctdbd_control failed\n");
126         }
127         if ((cstatus != 0) || (outdata.dptr == NULL)) {
128                 DEBUG(2, ("Received invalid ctdb data\n"));
129                 return false;
130         }
131
132         m = (struct ctdb_node_map *)outdata.dptr;
133
134         for (i=0; i<m->num; i++) {
135                 if (vnn == m->nodes[i].pnn) {
136                         break;
137                 }
138         }
139
140         if (i == m->num) {
141                 DEBUG(2, ("Did not find ourselves (node %d) in nodemap\n",
142                           (int)vnn));
143                 goto fail;
144         }
145
146         failure_flags = NODE_FLAGS_BANNED | NODE_FLAGS_DISCONNECTED
147                 | NODE_FLAGS_PERMANENTLY_DISABLED | NODE_FLAGS_STOPPED;
148
149         if ((m->nodes[i].flags & failure_flags) != 0) {
150                 DEBUG(2, ("Node has status %x, not active\n",
151                           (int)m->nodes[i].flags));
152                 goto fail;
153         }
154
155         ret = true;
156 fail:
157         TALLOC_FREE(outdata.dptr);
158         return ret;
159 }
160
161 uint32 ctdbd_vnn(const struct ctdbd_connection *conn)
162 {
163         return conn->our_vnn;
164 }
165
166 /*
167  * Get us a ctdb connection
168  */
169
170 static NTSTATUS ctdbd_connect(TALLOC_CTX *mem_ctx,
171                               struct packet_context **presult)
172 {
173         struct packet_context *result;
174         const char *sockname = lp_ctdbd_socket();
175         struct sockaddr_un addr;
176         int fd;
177
178         if (!sockname || !*sockname) {
179                 sockname = CTDB_PATH;
180         }
181
182         fd = socket(AF_UNIX, SOCK_STREAM, 0);
183         if (fd == -1) {
184                 DEBUG(3, ("Could not create socket: %s\n", strerror(errno)));
185                 return map_nt_error_from_unix(errno);
186         }
187
188         ZERO_STRUCT(addr);
189         addr.sun_family = AF_UNIX;
190         strncpy(addr.sun_path, sockname, sizeof(addr.sun_path));
191
192         if (sys_connect(fd, (struct sockaddr *)(void *)&addr) == -1) {
193                 DEBUG(1, ("connect(%s) failed: %s\n", sockname,
194                           strerror(errno)));
195                 close(fd);
196                 return map_nt_error_from_unix(errno);
197         }
198
199         if (!(result = packet_init(mem_ctx, fd))) {
200                 close(fd);
201                 return NT_STATUS_NO_MEMORY;
202         }
203
204         *presult = result;
205         return NT_STATUS_OK;
206 }
207
208 /*
209  * Do we have a complete ctdb packet in the queue?
210  */
211
212 static bool ctdb_req_complete(const uint8_t *buf, size_t available,
213                               size_t *length,
214                               void *private_data)
215 {
216         uint32 msglen;
217
218         if (available < sizeof(msglen)) {
219                 return False;
220         }
221
222         msglen = *((uint32 *)buf);
223
224         DEBUG(10, ("msglen = %d\n", msglen));
225
226         if (msglen < sizeof(struct ctdb_req_header)) {
227                 DEBUG(0, ("Got invalid msglen: %d, expected at least %d for "
228                           "the req_header\n", (int)msglen,
229                           (int)sizeof(struct ctdb_req_header)));
230                 cluster_fatal("ctdbd protocol error\n");
231         }
232
233         if (available < msglen) {
234                 return false;
235         }
236
237         *length = msglen;
238         return true;
239 }
240
241 /*
242  * State necessary to defer an incoming message while we are waiting for a
243  * ctdb reply.
244  */
245
246 struct deferred_msg_state {
247         struct messaging_context *msg_ctx;
248         struct messaging_rec *rec;
249 };
250
251 /*
252  * Timed event handler for the deferred message
253  */
254
255 static void deferred_message_dispatch(struct event_context *event_ctx,
256                                       struct timed_event *te,
257                                       struct timeval now,
258                                       void *private_data)
259 {
260         struct deferred_msg_state *state = talloc_get_type_abort(
261                 private_data, struct deferred_msg_state);
262
263         messaging_dispatch_rec(state->msg_ctx, state->rec);
264         TALLOC_FREE(state);
265         TALLOC_FREE(te);
266 }
267
268 struct req_pull_state {
269         TALLOC_CTX *mem_ctx;
270         DATA_BLOB req;
271 };
272
273 /*
274  * Pull a ctdb request out of the incoming packet queue
275  */
276
277 static NTSTATUS ctdb_req_pull(uint8_t *buf, size_t length,
278                               void *private_data)
279 {
280         struct req_pull_state *state = (struct req_pull_state *)private_data;
281
282         state->req.data = talloc_move(state->mem_ctx, &buf);
283         state->req.length = length;
284         return NT_STATUS_OK;
285 }
286
287 /*
288  * Fetch a messaging_rec from an incoming ctdb style message
289  */
290
291 static struct messaging_rec *ctdb_pull_messaging_rec(TALLOC_CTX *mem_ctx,
292                                                      size_t overall_length,
293                                                      struct ctdb_req_message *msg)
294 {
295         struct messaging_rec *result;
296         DATA_BLOB blob;
297         enum ndr_err_code ndr_err;
298
299         if ((overall_length < offsetof(struct ctdb_req_message, data))
300             || (overall_length
301                 < offsetof(struct ctdb_req_message, data) + msg->datalen)) {
302
303                 cluster_fatal("got invalid msg length");
304         }
305
306         if (!(result = TALLOC_P(mem_ctx, struct messaging_rec))) {
307                 DEBUG(0, ("talloc failed\n"));
308                 return NULL;
309         }
310
311         blob = data_blob_const(msg->data, msg->datalen);
312
313         ndr_err = ndr_pull_struct_blob(
314                 &blob, result, result,
315                 (ndr_pull_flags_fn_t)ndr_pull_messaging_rec);
316
317         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
318                 DEBUG(0, ("ndr_pull_struct_blob failed: %s\n",
319                           ndr_errstr(ndr_err)));
320                 TALLOC_FREE(result);
321                 return NULL;
322         }
323
324         if (DEBUGLEVEL >= 10) {
325                 DEBUG(10, ("ctdb_pull_messaging_rec:\n"));
326                 NDR_PRINT_DEBUG(messaging_rec, result);
327         }
328
329         return result;
330 }
331
332 static NTSTATUS ctdb_packet_fd_read_sync(struct packet_context *ctx)
333 {
334         struct timeval timeout;
335         struct timeval *ptimeout;
336
337         timeout = timeval_set(lp_ctdb_timeout(), 0);
338         ptimeout = (timeout.tv_sec != 0) ? &timeout : NULL;
339
340         return packet_fd_read_sync(ctx, ptimeout);
341 }
342
343 /*
344  * Read a full ctdbd request. If we have a messaging context, defer incoming
345  * messages that might come in between.
346  */
347
348 static NTSTATUS ctdb_read_req(struct ctdbd_connection *conn, uint32 reqid,
349                               TALLOC_CTX *mem_ctx, void *result)
350 {
351         struct ctdb_req_header *hdr;
352         struct req_pull_state state;
353         NTSTATUS status;
354
355  again:
356
357         status = ctdb_packet_fd_read_sync(conn->pkt);
358
359         if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_BUSY)) {
360                 /* EAGAIN */
361                 goto again;
362         } else if (NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
363                 /* EAGAIN */
364                 goto again;
365         }
366
367         if (!NT_STATUS_IS_OK(status)) {
368                 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status)));
369                 cluster_fatal("ctdbd died\n");
370         }
371
372  next_pkt:
373
374         ZERO_STRUCT(state);
375         state.mem_ctx = mem_ctx;
376
377         if (!packet_handler(conn->pkt, ctdb_req_complete, ctdb_req_pull,
378                             &state, &status)) {
379                 /*
380                  * Not enough data
381                  */
382                 DEBUG(10, ("not enough data from ctdb socket, retrying\n"));
383                 goto again;
384         }
385
386         if (!NT_STATUS_IS_OK(status)) {
387                 DEBUG(0, ("Could not read packet: %s\n", nt_errstr(status)));
388                 cluster_fatal("ctdbd died\n");
389         }
390
391         hdr = (struct ctdb_req_header *)state.req.data;
392
393         DEBUG(10, ("Received ctdb packet\n"));
394         ctdb_packet_dump(hdr);
395
396         if (hdr->operation == CTDB_REQ_MESSAGE) {
397                 struct timed_event *evt;
398                 struct deferred_msg_state *msg_state;
399                 struct ctdb_req_message *msg = (struct ctdb_req_message *)hdr;
400
401                 if (conn->msg_ctx == NULL) {
402                         DEBUG(1, ("Got a message without having a msg ctx, "
403                                   "dropping msg %llu\n",
404                                   (long long unsigned)msg->srvid));
405                         goto next_pkt;
406                 }
407
408                 if ((conn->release_ip_handler != NULL)
409                     && (msg->srvid == CTDB_SRVID_RELEASE_IP)) {
410                         /* must be dispatched immediately */
411                         DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
412                         conn->release_ip_handler((const char *)msg->data,
413                                                  conn->release_ip_priv);
414                         TALLOC_FREE(hdr);
415                         goto next_pkt;
416                 }
417
418                 if ((msg->srvid == CTDB_SRVID_RECONFIGURE)
419                     || (msg->srvid == CTDB_SRVID_SAMBA_NOTIFY)) {
420
421                         DEBUG(1, ("ctdb_read_req: Got %s message\n",
422                                   (msg->srvid == CTDB_SRVID_RECONFIGURE)
423                                   ? "cluster reconfigure" : "SAMBA_NOTIFY"));
424
425                         messaging_send(conn->msg_ctx,
426                                        messaging_server_id(conn->msg_ctx),
427                                        MSG_SMB_BRL_VALIDATE, &data_blob_null);
428                         messaging_send(conn->msg_ctx,
429                                        messaging_server_id(conn->msg_ctx),
430                                        MSG_DBWRAP_G_LOCK_RETRY,
431                                        &data_blob_null);
432                         TALLOC_FREE(hdr);
433                         goto next_pkt;
434                 }
435
436                 msg_state = TALLOC_P(NULL, struct deferred_msg_state);
437                 if (msg_state == NULL) {
438                         DEBUG(0, ("talloc failed\n"));
439                         TALLOC_FREE(hdr);
440                         goto next_pkt;
441                 }
442
443                 if (!(msg_state->rec = ctdb_pull_messaging_rec(
444                               msg_state, state.req.length, msg))) {
445                         DEBUG(0, ("ctdbd_pull_messaging_rec failed\n"));
446                         TALLOC_FREE(msg_state);
447                         TALLOC_FREE(hdr);
448                         goto next_pkt;
449                 }
450
451                 TALLOC_FREE(hdr);
452
453                 msg_state->msg_ctx = conn->msg_ctx;
454
455                 /*
456                  * We're waiting for a call reply, but an async message has
457                  * crossed. Defer dispatching to the toplevel event loop.
458                  */
459                 evt = event_add_timed(conn->msg_ctx->event_ctx,
460                                       conn->msg_ctx->event_ctx,
461                                       timeval_zero(),
462                                       deferred_message_dispatch,
463                                       msg_state);
464                 if (evt == NULL) {
465                         DEBUG(0, ("event_add_timed failed\n"));
466                         TALLOC_FREE(msg_state);
467                         TALLOC_FREE(hdr);
468                         goto next_pkt;
469                 }
470
471                 goto next_pkt;
472         }
473
474         if (hdr->reqid != reqid) {
475                 /* we got the wrong reply */
476                 DEBUG(0,("Discarding mismatched ctdb reqid %u should have "
477                          "been %u\n", hdr->reqid, reqid));
478                 TALLOC_FREE(hdr);
479                 goto again;
480         }
481
482         *((void **)result) = talloc_move(mem_ctx, &hdr);
483
484         return NT_STATUS_OK;
485 }
486
487 /*
488  * Get us a ctdbd connection
489  */
490
491 static NTSTATUS ctdbd_init_connection(TALLOC_CTX *mem_ctx,
492                                       struct ctdbd_connection **pconn)
493 {
494         struct ctdbd_connection *conn;
495         NTSTATUS status;
496
497         if (!(conn = TALLOC_ZERO_P(mem_ctx, struct ctdbd_connection))) {
498                 DEBUG(0, ("talloc failed\n"));
499                 return NT_STATUS_NO_MEMORY;
500         }
501
502         status = ctdbd_connect(conn, &conn->pkt);
503
504         if (!NT_STATUS_IS_OK(status)) {
505                 DEBUG(10, ("ctdbd_connect failed: %s\n", nt_errstr(status)));
506                 goto fail;
507         }
508
509         status = get_cluster_vnn(conn, &conn->our_vnn);
510
511         if (!NT_STATUS_IS_OK(status)) {
512                 DEBUG(10, ("get_cluster_vnn failed: %s\n", nt_errstr(status)));
513                 goto fail;
514         }
515
516         if (!ctdbd_working(conn, conn->our_vnn)) {
517                 DEBUG(2, ("Node is not working, can not connect\n"));
518                 status = NT_STATUS_INTERNAL_DB_ERROR;
519                 goto fail;
520         }
521
522         generate_random_buffer((unsigned char *)&conn->rand_srvid,
523                                sizeof(conn->rand_srvid));
524
525         status = register_with_ctdbd(conn, conn->rand_srvid);
526
527         if (!NT_STATUS_IS_OK(status)) {
528                 DEBUG(5, ("Could not register random srvid: %s\n",
529                           nt_errstr(status)));
530                 goto fail;
531         }
532
533         *pconn = conn;
534         return NT_STATUS_OK;
535
536  fail:
537         TALLOC_FREE(conn);
538         return status;
539 }
540
541 /*
542  * Get us a ctdbd connection and register us as a process
543  */
544
545 NTSTATUS ctdbd_messaging_connection(TALLOC_CTX *mem_ctx,
546                                     struct ctdbd_connection **pconn)
547 {
548         struct ctdbd_connection *conn;
549         NTSTATUS status;
550
551         status = ctdbd_init_connection(mem_ctx, &conn);
552
553         if (!NT_STATUS_IS_OK(status)) {
554                 return status;
555         }
556
557         status = register_with_ctdbd(conn, (uint64_t)sys_getpid());
558         if (!NT_STATUS_IS_OK(status)) {
559                 goto fail;
560         }
561
562         status = register_with_ctdbd(conn, MSG_SRVID_SAMBA);
563         if (!NT_STATUS_IS_OK(status)) {
564                 goto fail;
565         }
566
567         status = register_with_ctdbd(conn, CTDB_SRVID_SAMBA_NOTIFY);
568         if (!NT_STATUS_IS_OK(status)) {
569                 goto fail;
570         }
571
572         *pconn = conn;
573         return NT_STATUS_OK;
574
575  fail:
576         TALLOC_FREE(conn);
577         return status;
578 }
579
580 struct messaging_context *ctdb_conn_msg_ctx(struct ctdbd_connection *conn)
581 {
582         return conn->msg_ctx;
583 }
584
585 int ctdbd_conn_get_fd(struct ctdbd_connection *conn)
586 {
587         return packet_get_fd(conn->pkt);
588 }
589
590 /*
591  * Packet handler to receive and handle a ctdb message
592  */
593 static NTSTATUS ctdb_handle_message(uint8_t *buf, size_t length,
594                                     void *private_data)
595 {
596         struct ctdbd_connection *conn = talloc_get_type_abort(
597                 private_data, struct ctdbd_connection);
598         struct ctdb_req_message *msg;
599         struct messaging_rec *msg_rec;
600
601         msg = (struct ctdb_req_message *)buf;
602
603         if (msg->hdr.operation != CTDB_REQ_MESSAGE) {
604                 DEBUG(0, ("Received async msg of type %u, discarding\n",
605                           msg->hdr.operation));
606                 TALLOC_FREE(buf);
607                 return NT_STATUS_INVALID_PARAMETER;
608         }
609
610         if ((conn->release_ip_handler != NULL)
611             && (msg->srvid == CTDB_SRVID_RELEASE_IP)) {
612                 /* must be dispatched immediately */
613                 DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
614                 conn->release_ip_handler((const char *)msg->data,
615                                          conn->release_ip_priv);
616                 TALLOC_FREE(buf);
617                 return NT_STATUS_OK;
618         }
619
620         SMB_ASSERT(conn->msg_ctx != NULL);
621
622         if ((msg->srvid == CTDB_SRVID_RECONFIGURE)
623             || (msg->srvid == CTDB_SRVID_SAMBA_NOTIFY)){
624                 DEBUG(0,("Got cluster reconfigure message\n"));
625                 /*
626                  * when the cluster is reconfigured or someone of the
627                  * family has passed away (SAMBA_NOTIFY), we need to
628                  * clean the brl database
629                  */
630                 messaging_send(conn->msg_ctx,
631                                messaging_server_id(conn->msg_ctx),
632                                MSG_SMB_BRL_VALIDATE, &data_blob_null);
633
634                 messaging_send(conn->msg_ctx,
635                                messaging_server_id(conn->msg_ctx),
636                                MSG_DBWRAP_G_LOCK_RETRY,
637                                &data_blob_null);
638
639                 TALLOC_FREE(buf);
640                 return NT_STATUS_OK;
641         }
642
643         /* only messages to our pid or the broadcast are valid here */
644         if (msg->srvid != sys_getpid() && msg->srvid != MSG_SRVID_SAMBA) {
645                 DEBUG(0,("Got unexpected message with srvid=%llu\n", 
646                          (unsigned long long)msg->srvid));
647                 TALLOC_FREE(buf);
648                 return NT_STATUS_OK;
649         }
650
651         if (!(msg_rec = ctdb_pull_messaging_rec(NULL, length, msg))) {
652                 DEBUG(10, ("ctdb_pull_messaging_rec failed\n"));
653                 TALLOC_FREE(buf);
654                 return NT_STATUS_NO_MEMORY;
655         }
656
657         messaging_dispatch_rec(conn->msg_ctx, msg_rec);
658
659         TALLOC_FREE(msg_rec);
660         TALLOC_FREE(buf);
661         return NT_STATUS_OK;
662 }
663
664 /*
665  * The ctdbd socket is readable asynchronuously
666  */
667
668 static void ctdbd_socket_handler(struct event_context *event_ctx,
669                                  struct fd_event *event,
670                                  uint16 flags,
671                                  void *private_data)
672 {
673         struct ctdbd_connection *conn = talloc_get_type_abort(
674                 private_data, struct ctdbd_connection);
675
676         NTSTATUS status;
677
678         status = packet_fd_read(conn->pkt);
679
680         if (!NT_STATUS_IS_OK(status)) {
681                 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status)));
682                 cluster_fatal("ctdbd died\n");
683         }
684
685         while (packet_handler(conn->pkt, ctdb_req_complete,
686                               ctdb_handle_message, conn, &status)) {
687                 if (!NT_STATUS_IS_OK(status)) {
688                         DEBUG(10, ("could not handle incoming message: %s\n",
689                                    nt_errstr(status)));
690                 }
691         }
692 }
693
694 /*
695  * Prepare a ctdbd connection to receive messages
696  */
697
698 NTSTATUS ctdbd_register_msg_ctx(struct ctdbd_connection *conn,
699                                 struct messaging_context *msg_ctx)
700 {
701         SMB_ASSERT(conn->msg_ctx == NULL);
702         SMB_ASSERT(conn->fde == NULL);
703
704         if (!(conn->fde = event_add_fd(msg_ctx->event_ctx, conn,
705                                        packet_get_fd(conn->pkt),
706                                        EVENT_FD_READ,
707                                        ctdbd_socket_handler,
708                                        conn))) {
709                 DEBUG(0, ("event_add_fd failed\n"));
710                 return NT_STATUS_NO_MEMORY;
711         }
712
713         conn->msg_ctx = msg_ctx;
714
715         return NT_STATUS_OK;
716 }
717
718 /*
719  * Send a messaging message across a ctdbd
720  */
721
722 NTSTATUS ctdbd_messaging_send(struct ctdbd_connection *conn,
723                               uint32 dst_vnn, uint64 dst_srvid,
724                               struct messaging_rec *msg)
725 {
726         struct ctdb_req_message r;
727         TALLOC_CTX *mem_ctx;
728         DATA_BLOB blob;
729         NTSTATUS status;
730         enum ndr_err_code ndr_err;
731
732         if (!(mem_ctx = talloc_init("ctdbd_messaging_send"))) {
733                 DEBUG(0, ("talloc failed\n"));
734                 return NT_STATUS_NO_MEMORY;
735         }
736
737         ndr_err = ndr_push_struct_blob(
738                 &blob, mem_ctx, msg,
739                 (ndr_push_flags_fn_t)ndr_push_messaging_rec);
740
741         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
742                 DEBUG(0, ("ndr_push_struct_blob failed: %s\n",
743                           ndr_errstr(ndr_err)));
744                 status = ndr_map_error2ntstatus(ndr_err);
745                 goto fail;
746         }
747
748         r.hdr.length = offsetof(struct ctdb_req_message, data) + blob.length;
749         r.hdr.ctdb_magic = CTDB_MAGIC;
750         r.hdr.ctdb_version = CTDB_VERSION;
751         r.hdr.generation = 1;
752         r.hdr.operation  = CTDB_REQ_MESSAGE;
753         r.hdr.destnode   = dst_vnn;
754         r.hdr.srcnode    = conn->our_vnn;
755         r.hdr.reqid      = 0;
756         r.srvid          = dst_srvid;
757         r.datalen        = blob.length;
758
759         DEBUG(10, ("ctdbd_messaging_send: Sending ctdb packet\n"));
760         ctdb_packet_dump(&r.hdr);
761
762         status = packet_send(
763                 conn->pkt, 2,
764                 data_blob_const(&r, offsetof(struct ctdb_req_message, data)),
765                 blob);
766
767         if (!NT_STATUS_IS_OK(status)) {
768                 DEBUG(0, ("packet_send failed: %s\n", nt_errstr(status)));
769                 goto fail;
770         }
771
772         status = packet_flush(conn->pkt);
773
774         if (!NT_STATUS_IS_OK(status)) {
775                 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
776                 cluster_fatal("cluster dispatch daemon msg write error\n");
777         }
778
779         status = NT_STATUS_OK;
780  fail:
781         TALLOC_FREE(mem_ctx);
782         return status;
783 }
784
785 /*
786  * send/recv a generic ctdb control message
787  */
788 static NTSTATUS ctdbd_control(struct ctdbd_connection *conn,
789                               uint32_t vnn, uint32 opcode, 
790                               uint64_t srvid, uint32_t flags, 
791                               TDB_DATA data, 
792                               TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
793                               int *cstatus)
794 {
795         struct ctdb_req_control req;
796         struct ctdb_reply_control *reply = NULL;
797         struct ctdbd_connection *new_conn = NULL;
798         NTSTATUS status;
799
800         /* the samba3 ctdb code can't handle NOREPLY yet */
801         flags &= ~CTDB_CTRL_FLAG_NOREPLY;
802
803         if (conn == NULL) {
804                 status = ctdbd_init_connection(NULL, &new_conn);
805
806                 if (!NT_STATUS_IS_OK(status)) {
807                         DEBUG(10, ("Could not init temp connection: %s\n",
808                                    nt_errstr(status)));
809                         goto fail;
810                 }
811
812                 conn = new_conn;
813         }
814
815         ZERO_STRUCT(req);
816         req.hdr.length = offsetof(struct ctdb_req_control, data) + data.dsize;
817         req.hdr.ctdb_magic   = CTDB_MAGIC;
818         req.hdr.ctdb_version = CTDB_VERSION;
819         req.hdr.operation    = CTDB_REQ_CONTROL;
820         req.hdr.reqid        = ++conn->reqid;
821         req.hdr.destnode     = vnn;
822         req.opcode           = opcode;
823         req.srvid            = srvid;
824         req.datalen          = data.dsize;
825
826         DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
827         ctdb_packet_dump(&req.hdr);
828
829         status = packet_send(
830                 conn->pkt, 2,
831                 data_blob_const(&req, offsetof(struct ctdb_req_control, data)),
832                 data_blob_const(data.dptr, data.dsize));
833
834         if (!NT_STATUS_IS_OK(status)) {
835                 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status)));
836                 goto fail;
837         }
838
839         status = packet_flush(conn->pkt);
840
841         if (!NT_STATUS_IS_OK(status)) {
842                 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
843                 cluster_fatal("cluster dispatch daemon control write error\n");
844         }
845
846         if (flags & CTDB_CTRL_FLAG_NOREPLY) {
847                 TALLOC_FREE(new_conn);
848                 return NT_STATUS_OK;
849         }
850
851         status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
852
853         if (!NT_STATUS_IS_OK(status)) {
854                 DEBUG(10, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
855                 goto fail;
856         }
857
858         if (reply->hdr.operation != CTDB_REPLY_CONTROL) {
859                 DEBUG(0, ("received invalid reply\n"));
860                 goto fail;
861         }
862
863         if (outdata) {
864                 if (!(outdata->dptr = (uint8 *)talloc_memdup(
865                               mem_ctx, reply->data, reply->datalen))) {
866                         TALLOC_FREE(reply);
867                         return NT_STATUS_NO_MEMORY;
868                 }
869                 outdata->dsize = reply->datalen;
870         }
871         if (cstatus) {
872                 (*cstatus) = reply->status;
873         }
874
875         status = NT_STATUS_OK;
876
877  fail:
878         TALLOC_FREE(new_conn);
879         TALLOC_FREE(reply);
880         return status;
881 }
882
883 /*
884  * see if a remote process exists
885  */
886 bool ctdbd_process_exists(struct ctdbd_connection *conn, uint32 vnn, pid_t pid)
887 {
888         NTSTATUS status;
889         TDB_DATA data;
890         int32_t cstatus;
891
892         data.dptr = (uint8_t*)&pid;
893         data.dsize = sizeof(pid);
894
895         status = ctdbd_control(conn, vnn, CTDB_CONTROL_PROCESS_EXISTS, 0, 0,
896                                data, NULL, NULL, &cstatus);
897         if (!NT_STATUS_IS_OK(status)) {
898                 DEBUG(0, (__location__ " ctdb_control for process_exists "
899                           "failed\n"));
900                 return False;
901         }
902
903         return cstatus == 0;
904 }
905
906 /*
907  * Get a db path
908  */
909 char *ctdbd_dbpath(struct ctdbd_connection *conn,
910                    TALLOC_CTX *mem_ctx, uint32_t db_id)
911 {
912         NTSTATUS status;
913         TDB_DATA data;
914         int32_t cstatus;
915
916         data.dptr = (uint8_t*)&db_id;
917         data.dsize = sizeof(db_id);
918
919         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
920                                CTDB_CONTROL_GETDBPATH, 0, 0, data, 
921                                mem_ctx, &data, &cstatus);
922         if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
923                 DEBUG(0,(__location__ " ctdb_control for getdbpath failed\n"));
924                 return NULL;
925         }
926
927         return (char *)data.dptr;
928 }
929
930 /*
931  * attach to a ctdb database
932  */
933 NTSTATUS ctdbd_db_attach(struct ctdbd_connection *conn,
934                          const char *name, uint32_t *db_id, int tdb_flags)
935 {
936         NTSTATUS status;
937         TDB_DATA data;
938         int32_t cstatus;
939         bool persistent = (tdb_flags & TDB_CLEAR_IF_FIRST) == 0;
940
941         data.dptr = (uint8_t*)name;
942         data.dsize = strlen(name)+1;
943
944         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
945                                persistent
946                                ? CTDB_CONTROL_DB_ATTACH_PERSISTENT
947                                : CTDB_CONTROL_DB_ATTACH,
948                                tdb_flags, 0, data, NULL, &data, &cstatus);
949         if (!NT_STATUS_IS_OK(status)) {
950                 DEBUG(0, (__location__ " ctdb_control for db_attach "
951                           "failed: %s\n", nt_errstr(status)));
952                 return status;
953         }
954
955         if (cstatus != 0 || data.dsize != sizeof(uint32_t)) {
956                 DEBUG(0,(__location__ " ctdb_control for db_attach failed\n"));
957                 return NT_STATUS_INTERNAL_ERROR;
958         }
959
960         *db_id = *(uint32_t *)data.dptr;
961         talloc_free(data.dptr);
962
963         if (!(tdb_flags & TDB_SEQNUM)) {
964                 return NT_STATUS_OK;
965         }
966
967         data.dptr = (uint8_t *)db_id;
968         data.dsize = sizeof(*db_id);
969
970         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
971                                CTDB_CONTROL_ENABLE_SEQNUM, 0, 0, data, 
972                                NULL, NULL, &cstatus);
973         if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
974                 DEBUG(0,(__location__ " ctdb_control for enable seqnum "
975                          "failed\n"));
976                 return NT_STATUS_IS_OK(status) ? NT_STATUS_INTERNAL_ERROR :
977                         status;
978         }
979
980         return NT_STATUS_OK;
981 }
982
983 /*
984  * force the migration of a record to this node
985  */
986 NTSTATUS ctdbd_migrate(struct ctdbd_connection *conn, uint32 db_id,
987                        TDB_DATA key)
988 {
989         struct ctdb_req_call req;
990         struct ctdb_reply_call *reply;
991         NTSTATUS status;
992
993         ZERO_STRUCT(req);
994
995         req.hdr.length = offsetof(struct ctdb_req_call, data) + key.dsize;
996         req.hdr.ctdb_magic   = CTDB_MAGIC;
997         req.hdr.ctdb_version = CTDB_VERSION;
998         req.hdr.operation    = CTDB_REQ_CALL;
999         req.hdr.reqid        = ++conn->reqid;
1000         req.flags            = CTDB_IMMEDIATE_MIGRATION;
1001         req.callid           = CTDB_NULL_FUNC;
1002         req.db_id            = db_id;
1003         req.keylen           = key.dsize;
1004
1005         DEBUG(10, ("ctdbd_migrate: Sending ctdb packet\n"));
1006         ctdb_packet_dump(&req.hdr);
1007
1008         status = packet_send(
1009                 conn->pkt, 2,
1010                 data_blob_const(&req, offsetof(struct ctdb_req_call, data)),
1011                 data_blob_const(key.dptr, key.dsize));
1012
1013         if (!NT_STATUS_IS_OK(status)) {
1014                 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status)));
1015                 return status;
1016         }
1017
1018         status = packet_flush(conn->pkt);
1019
1020         if (!NT_STATUS_IS_OK(status)) {
1021                 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
1022                 cluster_fatal("cluster dispatch daemon control write error\n");
1023         }
1024
1025         status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
1026
1027         if (!NT_STATUS_IS_OK(status)) {
1028                 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
1029                 goto fail;
1030         }
1031
1032         if (reply->hdr.operation != CTDB_REPLY_CALL) {
1033                 DEBUG(0, ("received invalid reply\n"));
1034                 status = NT_STATUS_INTERNAL_ERROR;
1035                 goto fail;
1036         }
1037
1038         status = NT_STATUS_OK;
1039  fail:
1040
1041         TALLOC_FREE(reply);
1042         return status;
1043 }
1044
1045 /*
1046  * remotely fetch a record without locking it or forcing a migration
1047  */
1048 NTSTATUS ctdbd_fetch(struct ctdbd_connection *conn, uint32 db_id,
1049                      TDB_DATA key, TALLOC_CTX *mem_ctx, TDB_DATA *data)
1050 {
1051         struct ctdb_req_call req;
1052         struct ctdb_reply_call *reply;
1053         NTSTATUS status;
1054
1055         ZERO_STRUCT(req);
1056
1057         req.hdr.length = offsetof(struct ctdb_req_call, data) + key.dsize;
1058         req.hdr.ctdb_magic   = CTDB_MAGIC;
1059         req.hdr.ctdb_version = CTDB_VERSION;
1060         req.hdr.operation    = CTDB_REQ_CALL;
1061         req.hdr.reqid        = ++conn->reqid;
1062         req.flags            = 0;
1063         req.callid           = CTDB_FETCH_FUNC;
1064         req.db_id            = db_id;
1065         req.keylen           = key.dsize;
1066
1067         status = packet_send(
1068                 conn->pkt, 2,
1069                 data_blob_const(&req, offsetof(struct ctdb_req_call, data)),
1070                 data_blob_const(key.dptr, key.dsize));
1071
1072         if (!NT_STATUS_IS_OK(status)) {
1073                 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status)));
1074                 return status;
1075         }
1076
1077         status = packet_flush(conn->pkt);
1078
1079         if (!NT_STATUS_IS_OK(status)) {
1080                 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
1081                 cluster_fatal("cluster dispatch daemon control write error\n");
1082         }
1083
1084         status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
1085
1086         if (!NT_STATUS_IS_OK(status)) {
1087                 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
1088                 goto fail;
1089         }
1090
1091         if (reply->hdr.operation != CTDB_REPLY_CALL) {
1092                 DEBUG(0, ("received invalid reply\n"));
1093                 status = NT_STATUS_INTERNAL_ERROR;
1094                 goto fail;
1095         }
1096
1097         data->dsize = reply->datalen;
1098         if (data->dsize == 0) {
1099                 data->dptr = NULL;
1100                 goto done;
1101         }
1102
1103         data->dptr = (uint8 *)talloc_memdup(mem_ctx, &reply->data[0],
1104                                             reply->datalen);
1105         if (data->dptr == NULL) {
1106                 DEBUG(0, ("talloc failed\n"));
1107                 status = NT_STATUS_NO_MEMORY;
1108                 goto fail;
1109         }
1110
1111  done:
1112         status = NT_STATUS_OK;
1113  fail:
1114         TALLOC_FREE(reply);
1115         return status;
1116 }
1117
1118 struct ctdbd_traverse_state {
1119         void (*fn)(TDB_DATA key, TDB_DATA data, void *private_data);
1120         void *private_data;
1121 };
1122
1123 /*
1124  * Handle a traverse record coming in on the ctdbd connection
1125  */
1126
1127 static NTSTATUS ctdb_traverse_handler(uint8_t *buf, size_t length,
1128                                       void *private_data)
1129 {
1130         struct ctdbd_traverse_state *state =
1131                 (struct ctdbd_traverse_state *)private_data;
1132
1133         struct ctdb_req_message *m;
1134         struct ctdb_rec_data *d;
1135         TDB_DATA key, data;
1136
1137         m = (struct ctdb_req_message *)buf;
1138
1139         if (length < sizeof(*m) || m->hdr.length != length) {
1140                 DEBUG(0, ("Got invalid message of length %d\n", (int)length));
1141                 TALLOC_FREE(buf);
1142                 return NT_STATUS_UNEXPECTED_IO_ERROR;
1143         }
1144
1145         d = (struct ctdb_rec_data *)&m->data[0];
1146         if (m->datalen < sizeof(uint32_t) || m->datalen != d->length) {
1147                 DEBUG(0, ("Got invalid traverse data of length %d\n",
1148                           (int)m->datalen));
1149                 TALLOC_FREE(buf);
1150                 return NT_STATUS_UNEXPECTED_IO_ERROR;
1151         }
1152
1153         key.dsize = d->keylen;
1154         key.dptr  = &d->data[0];
1155         data.dsize = d->datalen;
1156         data.dptr = &d->data[d->keylen];                
1157
1158         if (key.dsize == 0 && data.dsize == 0) {
1159                 /* end of traverse */
1160                 return NT_STATUS_END_OF_FILE;
1161         }
1162
1163         if (data.dsize < sizeof(struct ctdb_ltdb_header)) {
1164                 DEBUG(0, ("Got invalid ltdb header length %d\n",
1165                           (int)data.dsize));
1166                 TALLOC_FREE(buf);
1167                 return NT_STATUS_UNEXPECTED_IO_ERROR;
1168         }
1169         data.dsize -= sizeof(struct ctdb_ltdb_header);
1170         data.dptr += sizeof(struct ctdb_ltdb_header);
1171
1172         if (state->fn) {
1173                 state->fn(key, data, state->private_data);
1174         }
1175
1176         TALLOC_FREE(buf);
1177         return NT_STATUS_OK;
1178 }
1179
1180 /*
1181   Traverse a ctdb database. This uses a kind-of hackish way to open a second
1182   connection to ctdbd to avoid the hairy recursive and async problems with
1183   everything in-line.
1184 */
1185
1186 NTSTATUS ctdbd_traverse(uint32 db_id,
1187                         void (*fn)(TDB_DATA key, TDB_DATA data,
1188                                    void *private_data),
1189                         void *private_data)
1190 {
1191         struct ctdbd_connection *conn;
1192         NTSTATUS status;
1193
1194         TDB_DATA data;
1195         struct ctdb_traverse_start t;
1196         int cstatus;
1197         struct ctdbd_traverse_state state;
1198
1199         status = ctdbd_init_connection(NULL, &conn);
1200         if (!NT_STATUS_IS_OK(status)) {
1201                 DEBUG(0, ("ctdbd_init_connection failed: %s\n",
1202                           nt_errstr(status)));
1203                 return status;
1204         }
1205
1206         t.db_id = db_id;
1207         t.srvid = conn->rand_srvid;
1208         t.reqid = ++conn->reqid;
1209
1210         data.dptr = (uint8_t *)&t;
1211         data.dsize = sizeof(t);
1212
1213         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1214                                CTDB_CONTROL_TRAVERSE_START, conn->rand_srvid, 0,
1215                                data, NULL, NULL, &cstatus);
1216
1217         if (!NT_STATUS_IS_OK(status) || (cstatus != 0)) {
1218
1219                 DEBUG(0,("ctdbd_control failed: %s, %d\n", nt_errstr(status),
1220                          cstatus));
1221
1222                 if (NT_STATUS_IS_OK(status)) {
1223                         /*
1224                          * We need a mapping here
1225                          */
1226                         status = NT_STATUS_UNSUCCESSFUL;
1227                 }
1228                 goto done;
1229         }
1230
1231         state.fn = fn;
1232         state.private_data = private_data;
1233
1234         while (True) {
1235
1236                 status = NT_STATUS_OK;
1237
1238                 if (packet_handler(conn->pkt, ctdb_req_complete,
1239                                    ctdb_traverse_handler, &state, &status)) {
1240
1241                         if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
1242                                 status = NT_STATUS_OK;
1243                                 break;
1244                         }
1245
1246                         /*
1247                          * There might be more in the queue
1248                          */
1249                         continue;
1250                 }
1251
1252                 if (!NT_STATUS_IS_OK(status)) {
1253                         break;
1254                 }
1255
1256                 status = ctdb_packet_fd_read_sync(conn->pkt);
1257
1258                 if (NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
1259                         /*
1260                          * There might be more in the queue
1261                          */
1262                         continue;
1263                 }
1264
1265                 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
1266                         status = NT_STATUS_OK;
1267                         break;
1268                 }
1269
1270                 if (!NT_STATUS_IS_OK(status)) {
1271                         DEBUG(0, ("packet_fd_read_sync failed: %s\n", nt_errstr(status)));
1272                         cluster_fatal("ctdbd died\n");
1273                 }
1274         }
1275
1276  done:
1277         TALLOC_FREE(conn);
1278         return status;
1279 }
1280
1281 /*
1282    This is used to canonicalize a ctdb_sock_addr structure.
1283 */
1284 static void smbd_ctdb_canonicalize_ip(const struct sockaddr_storage *in,
1285                                       struct sockaddr_storage *out)
1286 {
1287         memcpy(out, in, sizeof (*out));
1288
1289 #ifdef HAVE_IPV6
1290         if (in->ss_family == AF_INET6) {
1291                 const char prefix[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
1292                 const struct sockaddr_in6 *in6 = (struct sockaddr_in6 *)in;
1293                 struct sockaddr_in *out4 = (struct sockaddr_in *)out;
1294                 if (memcmp(&in6->sin6_addr, prefix, 12) == 0) {
1295                         memset(out, 0, sizeof(*out));
1296 #ifdef HAVE_SOCK_SIN_LEN
1297                         out4->sin_len = sizeof(*out);
1298 #endif
1299                         out4->sin_family = AF_INET;
1300                         out4->sin_port   = in6->sin6_port;
1301                         memcpy(&out4->sin_addr, &in6->sin6_addr.s6_addr32[3], 4);
1302                 }
1303         }
1304 #endif
1305 }
1306
1307 /*
1308  * Register us as a server for a particular tcp connection
1309  */
1310
1311 NTSTATUS ctdbd_register_ips(struct ctdbd_connection *conn,
1312                             const struct sockaddr_storage *_server,
1313                             const struct sockaddr_storage *_client,
1314                             void (*release_ip_handler)(const char *ip_addr,
1315                                                        void *private_data),
1316                             void *private_data)
1317 {
1318         /*
1319          * we still use ctdb_control_tcp for ipv4
1320          * because we want to work against older ctdb
1321          * versions at runtime
1322          */
1323         struct ctdb_control_tcp p4;
1324 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1325         struct ctdb_control_tcp_addr p;
1326 #endif
1327         TDB_DATA data;
1328         NTSTATUS status;
1329         struct sockaddr_storage client;
1330         struct sockaddr_storage server;
1331
1332         /*
1333          * Only one connection so far
1334          */
1335         SMB_ASSERT(conn->release_ip_handler == NULL);
1336
1337         smbd_ctdb_canonicalize_ip(_client, &client);
1338         smbd_ctdb_canonicalize_ip(_server, &server);
1339
1340         switch (client.ss_family) {
1341         case AF_INET:
1342                 p4.dest = *(struct sockaddr_in *)(void *)&server;
1343                 p4.src = *(struct sockaddr_in *)(void *)&client;
1344                 data.dptr = (uint8_t *)&p4;
1345                 data.dsize = sizeof(p4);
1346                 break;
1347 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1348         case AF_INET6:
1349                 p.dest.ip6 = *(struct sockaddr_in6 *)(void *)&server;
1350                 p.src.ip6 = *(struct sockaddr_in6 *)(void *)&client;
1351                 data.dptr = (uint8_t *)&p;
1352                 data.dsize = sizeof(p);
1353                 break;
1354 #endif
1355         default:
1356                 return NT_STATUS_INTERNAL_ERROR;
1357         }
1358
1359         conn->release_ip_handler = release_ip_handler;
1360
1361         /*
1362          * We want to be told about IP releases
1363          */
1364
1365         status = register_with_ctdbd(conn, CTDB_SRVID_RELEASE_IP);
1366         if (!NT_STATUS_IS_OK(status)) {
1367                 return status;
1368         }
1369
1370         /*
1371          * inform ctdb of our tcp connection, so if IP takeover happens ctdb
1372          * can send an extra ack to trigger a reset for our client, so it
1373          * immediately reconnects
1374          */
1375         return ctdbd_control(conn, CTDB_CURRENT_NODE, 
1376                              CTDB_CONTROL_TCP_CLIENT, 0,
1377                              CTDB_CTRL_FLAG_NOREPLY, data, NULL, NULL, NULL);
1378 }
1379
1380 /*
1381  * We want to handle reconfigure events
1382  */
1383 NTSTATUS ctdbd_register_reconfigure(struct ctdbd_connection *conn)
1384 {
1385         return register_with_ctdbd(conn, CTDB_SRVID_RECONFIGURE);
1386 }
1387
1388 /*
1389   call a control on the local node
1390  */
1391 NTSTATUS ctdbd_control_local(struct ctdbd_connection *conn, uint32 opcode, 
1392                              uint64_t srvid, uint32_t flags, TDB_DATA data, 
1393                              TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
1394                              int *cstatus)
1395 {
1396         return ctdbd_control(conn, CTDB_CURRENT_NODE, opcode, srvid, flags, data, mem_ctx, outdata, cstatus);
1397 }
1398
1399 NTSTATUS ctdb_watch_us(struct ctdbd_connection *conn)
1400 {
1401         struct ctdb_client_notify_register reg_data;
1402         size_t struct_len;
1403         NTSTATUS status;
1404         int cstatus;
1405
1406         reg_data.srvid = CTDB_SRVID_SAMBA_NOTIFY;
1407         reg_data.len = 1;
1408         reg_data.notify_data[0] = 0;
1409
1410         struct_len = offsetof(struct ctdb_client_notify_register,
1411                               notify_data) + reg_data.len;
1412
1413         status = ctdbd_control_local(
1414                 conn, CTDB_CONTROL_REGISTER_NOTIFY, conn->rand_srvid, 0,
1415                 make_tdb_data((uint8_t *)&reg_data, struct_len),
1416                 NULL, NULL, &cstatus);
1417         if (!NT_STATUS_IS_OK(status)) {
1418                 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1419                           nt_errstr(status)));
1420         }
1421         return status;
1422 }
1423
1424 NTSTATUS ctdb_unwatch(struct ctdbd_connection *conn)
1425 {
1426         struct ctdb_client_notify_deregister dereg_data;
1427         NTSTATUS status;
1428         int cstatus;
1429
1430         dereg_data.srvid = CTDB_SRVID_SAMBA_NOTIFY;
1431
1432         status = ctdbd_control_local(
1433                 conn, CTDB_CONTROL_DEREGISTER_NOTIFY, conn->rand_srvid, 0,
1434                 make_tdb_data((uint8_t *)&dereg_data, sizeof(dereg_data)),
1435                 NULL, NULL, &cstatus);
1436         if (!NT_STATUS_IS_OK(status)) {
1437                 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1438                           nt_errstr(status)));
1439         }
1440         return status;
1441 }
1442
1443 #endif