s3:ctdb: correctly handle cstatus if CTDB_CTRL_FLAG_NOREPLY is set.
[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 "ctdbd_conn.h"
26 #include "packet.h"
27 #include "messages.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         int timeout = lp_ctdb_timeout();
335
336         if (timeout == 0) {
337                 timeout = -1;
338         }
339         return packet_fd_read_sync(ctx, timeout);
340 }
341
342 /*
343  * Read a full ctdbd request. If we have a messaging context, defer incoming
344  * messages that might come in between.
345  */
346
347 static NTSTATUS ctdb_read_req(struct ctdbd_connection *conn, uint32 reqid,
348                               TALLOC_CTX *mem_ctx, void *result)
349 {
350         struct ctdb_req_header *hdr;
351         struct req_pull_state state;
352         NTSTATUS status;
353
354  again:
355
356         status = ctdb_packet_fd_read_sync(conn->pkt);
357
358         if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_BUSY)) {
359                 /* EAGAIN */
360                 goto again;
361         } else if (NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
362                 /* EAGAIN */
363                 goto again;
364         }
365
366         if (!NT_STATUS_IS_OK(status)) {
367                 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status)));
368                 cluster_fatal("ctdbd died\n");
369         }
370
371  next_pkt:
372
373         ZERO_STRUCT(state);
374         state.mem_ctx = mem_ctx;
375
376         if (!packet_handler(conn->pkt, ctdb_req_complete, ctdb_req_pull,
377                             &state, &status)) {
378                 /*
379                  * Not enough data
380                  */
381                 DEBUG(10, ("not enough data from ctdb socket, retrying\n"));
382                 goto again;
383         }
384
385         if (!NT_STATUS_IS_OK(status)) {
386                 DEBUG(0, ("Could not read packet: %s\n", nt_errstr(status)));
387                 cluster_fatal("ctdbd died\n");
388         }
389
390         hdr = (struct ctdb_req_header *)state.req.data;
391
392         DEBUG(10, ("Received ctdb packet\n"));
393         ctdb_packet_dump(hdr);
394
395         if (hdr->operation == CTDB_REQ_MESSAGE) {
396                 struct timed_event *evt;
397                 struct deferred_msg_state *msg_state;
398                 struct ctdb_req_message *msg = (struct ctdb_req_message *)hdr;
399
400                 if (conn->msg_ctx == NULL) {
401                         DEBUG(1, ("Got a message without having a msg ctx, "
402                                   "dropping msg %llu\n",
403                                   (long long unsigned)msg->srvid));
404                         goto next_pkt;
405                 }
406
407                 if ((conn->release_ip_handler != NULL)
408                     && (msg->srvid == CTDB_SRVID_RELEASE_IP)) {
409                         /* must be dispatched immediately */
410                         DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
411                         conn->release_ip_handler((const char *)msg->data,
412                                                  conn->release_ip_priv);
413                         TALLOC_FREE(hdr);
414                         goto next_pkt;
415                 }
416
417                 if ((msg->srvid == CTDB_SRVID_RECONFIGURE)
418                     || (msg->srvid == CTDB_SRVID_SAMBA_NOTIFY)) {
419
420                         DEBUG(1, ("ctdb_read_req: Got %s message\n",
421                                   (msg->srvid == CTDB_SRVID_RECONFIGURE)
422                                   ? "cluster reconfigure" : "SAMBA_NOTIFY"));
423
424                         messaging_send(conn->msg_ctx,
425                                        messaging_server_id(conn->msg_ctx),
426                                        MSG_SMB_BRL_VALIDATE, &data_blob_null);
427                         messaging_send(conn->msg_ctx,
428                                        messaging_server_id(conn->msg_ctx),
429                                        MSG_DBWRAP_G_LOCK_RETRY,
430                                        &data_blob_null);
431                         TALLOC_FREE(hdr);
432                         goto next_pkt;
433                 }
434
435                 msg_state = TALLOC_P(NULL, struct deferred_msg_state);
436                 if (msg_state == NULL) {
437                         DEBUG(0, ("talloc failed\n"));
438                         TALLOC_FREE(hdr);
439                         goto next_pkt;
440                 }
441
442                 if (!(msg_state->rec = ctdb_pull_messaging_rec(
443                               msg_state, state.req.length, msg))) {
444                         DEBUG(0, ("ctdbd_pull_messaging_rec failed\n"));
445                         TALLOC_FREE(msg_state);
446                         TALLOC_FREE(hdr);
447                         goto next_pkt;
448                 }
449
450                 TALLOC_FREE(hdr);
451
452                 msg_state->msg_ctx = conn->msg_ctx;
453
454                 /*
455                  * We're waiting for a call reply, but an async message has
456                  * crossed. Defer dispatching to the toplevel event loop.
457                  */
458                 evt = event_add_timed(conn->msg_ctx->event_ctx,
459                                       conn->msg_ctx->event_ctx,
460                                       timeval_zero(),
461                                       deferred_message_dispatch,
462                                       msg_state);
463                 if (evt == NULL) {
464                         DEBUG(0, ("event_add_timed failed\n"));
465                         TALLOC_FREE(msg_state);
466                         TALLOC_FREE(hdr);
467                         goto next_pkt;
468                 }
469
470                 goto next_pkt;
471         }
472
473         if (hdr->reqid != reqid) {
474                 /* we got the wrong reply */
475                 DEBUG(0,("Discarding mismatched ctdb reqid %u should have "
476                          "been %u\n", hdr->reqid, reqid));
477                 TALLOC_FREE(hdr);
478                 goto again;
479         }
480
481         *((void **)result) = talloc_move(mem_ctx, &hdr);
482
483         return NT_STATUS_OK;
484 }
485
486 /*
487  * Get us a ctdbd connection
488  */
489
490 static NTSTATUS ctdbd_init_connection(TALLOC_CTX *mem_ctx,
491                                       struct ctdbd_connection **pconn)
492 {
493         struct ctdbd_connection *conn;
494         NTSTATUS status;
495
496         if (!(conn = TALLOC_ZERO_P(mem_ctx, struct ctdbd_connection))) {
497                 DEBUG(0, ("talloc failed\n"));
498                 return NT_STATUS_NO_MEMORY;
499         }
500
501         status = ctdbd_connect(conn, &conn->pkt);
502
503         if (!NT_STATUS_IS_OK(status)) {
504                 DEBUG(10, ("ctdbd_connect failed: %s\n", nt_errstr(status)));
505                 goto fail;
506         }
507
508         status = get_cluster_vnn(conn, &conn->our_vnn);
509
510         if (!NT_STATUS_IS_OK(status)) {
511                 DEBUG(10, ("get_cluster_vnn failed: %s\n", nt_errstr(status)));
512                 goto fail;
513         }
514
515         if (!ctdbd_working(conn, conn->our_vnn)) {
516                 DEBUG(2, ("Node is not working, can not connect\n"));
517                 status = NT_STATUS_INTERNAL_DB_ERROR;
518                 goto fail;
519         }
520
521         generate_random_buffer((unsigned char *)&conn->rand_srvid,
522                                sizeof(conn->rand_srvid));
523
524         status = register_with_ctdbd(conn, conn->rand_srvid);
525
526         if (!NT_STATUS_IS_OK(status)) {
527                 DEBUG(5, ("Could not register random srvid: %s\n",
528                           nt_errstr(status)));
529                 goto fail;
530         }
531
532         *pconn = conn;
533         return NT_STATUS_OK;
534
535  fail:
536         TALLOC_FREE(conn);
537         return status;
538 }
539
540 /*
541  * Get us a ctdbd connection and register us as a process
542  */
543
544 NTSTATUS ctdbd_messaging_connection(TALLOC_CTX *mem_ctx,
545                                     struct ctdbd_connection **pconn)
546 {
547         struct ctdbd_connection *conn;
548         NTSTATUS status;
549
550         status = ctdbd_init_connection(mem_ctx, &conn);
551
552         if (!NT_STATUS_IS_OK(status)) {
553                 return status;
554         }
555
556         status = register_with_ctdbd(conn, (uint64_t)sys_getpid());
557         if (!NT_STATUS_IS_OK(status)) {
558                 goto fail;
559         }
560
561         status = register_with_ctdbd(conn, MSG_SRVID_SAMBA);
562         if (!NT_STATUS_IS_OK(status)) {
563                 goto fail;
564         }
565
566         status = register_with_ctdbd(conn, CTDB_SRVID_SAMBA_NOTIFY);
567         if (!NT_STATUS_IS_OK(status)) {
568                 goto fail;
569         }
570
571         *pconn = conn;
572         return NT_STATUS_OK;
573
574  fail:
575         TALLOC_FREE(conn);
576         return status;
577 }
578
579 struct messaging_context *ctdb_conn_msg_ctx(struct ctdbd_connection *conn)
580 {
581         return conn->msg_ctx;
582 }
583
584 int ctdbd_conn_get_fd(struct ctdbd_connection *conn)
585 {
586         return packet_get_fd(conn->pkt);
587 }
588
589 /*
590  * Packet handler to receive and handle a ctdb message
591  */
592 static NTSTATUS ctdb_handle_message(uint8_t *buf, size_t length,
593                                     void *private_data)
594 {
595         struct ctdbd_connection *conn = talloc_get_type_abort(
596                 private_data, struct ctdbd_connection);
597         struct ctdb_req_message *msg;
598         struct messaging_rec *msg_rec;
599
600         msg = (struct ctdb_req_message *)buf;
601
602         if (msg->hdr.operation != CTDB_REQ_MESSAGE) {
603                 DEBUG(0, ("Received async msg of type %u, discarding\n",
604                           msg->hdr.operation));
605                 TALLOC_FREE(buf);
606                 return NT_STATUS_INVALID_PARAMETER;
607         }
608
609         if ((conn->release_ip_handler != NULL)
610             && (msg->srvid == CTDB_SRVID_RELEASE_IP)) {
611                 /* must be dispatched immediately */
612                 DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
613                 conn->release_ip_handler((const char *)msg->data,
614                                          conn->release_ip_priv);
615                 TALLOC_FREE(buf);
616                 return NT_STATUS_OK;
617         }
618
619         SMB_ASSERT(conn->msg_ctx != NULL);
620
621         if ((msg->srvid == CTDB_SRVID_RECONFIGURE)
622             || (msg->srvid == CTDB_SRVID_SAMBA_NOTIFY)){
623                 DEBUG(0,("Got cluster reconfigure message\n"));
624                 /*
625                  * when the cluster is reconfigured or someone of the
626                  * family has passed away (SAMBA_NOTIFY), we need to
627                  * clean the brl database
628                  */
629                 messaging_send(conn->msg_ctx,
630                                messaging_server_id(conn->msg_ctx),
631                                MSG_SMB_BRL_VALIDATE, &data_blob_null);
632
633                 messaging_send(conn->msg_ctx,
634                                messaging_server_id(conn->msg_ctx),
635                                MSG_DBWRAP_G_LOCK_RETRY,
636                                &data_blob_null);
637
638                 TALLOC_FREE(buf);
639                 return NT_STATUS_OK;
640         }
641
642         /* only messages to our pid or the broadcast are valid here */
643         if (msg->srvid != sys_getpid() && msg->srvid != MSG_SRVID_SAMBA) {
644                 DEBUG(0,("Got unexpected message with srvid=%llu\n", 
645                          (unsigned long long)msg->srvid));
646                 TALLOC_FREE(buf);
647                 return NT_STATUS_OK;
648         }
649
650         if (!(msg_rec = ctdb_pull_messaging_rec(NULL, length, msg))) {
651                 DEBUG(10, ("ctdb_pull_messaging_rec failed\n"));
652                 TALLOC_FREE(buf);
653                 return NT_STATUS_NO_MEMORY;
654         }
655
656         messaging_dispatch_rec(conn->msg_ctx, msg_rec);
657
658         TALLOC_FREE(msg_rec);
659         TALLOC_FREE(buf);
660         return NT_STATUS_OK;
661 }
662
663 /*
664  * The ctdbd socket is readable asynchronuously
665  */
666
667 static void ctdbd_socket_handler(struct event_context *event_ctx,
668                                  struct fd_event *event,
669                                  uint16 flags,
670                                  void *private_data)
671 {
672         struct ctdbd_connection *conn = talloc_get_type_abort(
673                 private_data, struct ctdbd_connection);
674
675         NTSTATUS status;
676
677         status = packet_fd_read(conn->pkt);
678
679         if (!NT_STATUS_IS_OK(status)) {
680                 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status)));
681                 cluster_fatal("ctdbd died\n");
682         }
683
684         while (packet_handler(conn->pkt, ctdb_req_complete,
685                               ctdb_handle_message, conn, &status)) {
686                 if (!NT_STATUS_IS_OK(status)) {
687                         DEBUG(10, ("could not handle incoming message: %s\n",
688                                    nt_errstr(status)));
689                 }
690         }
691 }
692
693 /*
694  * Prepare a ctdbd connection to receive messages
695  */
696
697 NTSTATUS ctdbd_register_msg_ctx(struct ctdbd_connection *conn,
698                                 struct messaging_context *msg_ctx)
699 {
700         SMB_ASSERT(conn->msg_ctx == NULL);
701         SMB_ASSERT(conn->fde == NULL);
702
703         if (!(conn->fde = event_add_fd(msg_ctx->event_ctx, conn,
704                                        packet_get_fd(conn->pkt),
705                                        EVENT_FD_READ,
706                                        ctdbd_socket_handler,
707                                        conn))) {
708                 DEBUG(0, ("event_add_fd failed\n"));
709                 return NT_STATUS_NO_MEMORY;
710         }
711
712         conn->msg_ctx = msg_ctx;
713
714         return NT_STATUS_OK;
715 }
716
717 /*
718  * Send a messaging message across a ctdbd
719  */
720
721 NTSTATUS ctdbd_messaging_send(struct ctdbd_connection *conn,
722                               uint32 dst_vnn, uint64 dst_srvid,
723                               struct messaging_rec *msg)
724 {
725         struct ctdb_req_message r;
726         TALLOC_CTX *mem_ctx;
727         DATA_BLOB blob;
728         NTSTATUS status;
729         enum ndr_err_code ndr_err;
730
731         if (!(mem_ctx = talloc_init("ctdbd_messaging_send"))) {
732                 DEBUG(0, ("talloc failed\n"));
733                 return NT_STATUS_NO_MEMORY;
734         }
735
736         ndr_err = ndr_push_struct_blob(
737                 &blob, mem_ctx, msg,
738                 (ndr_push_flags_fn_t)ndr_push_messaging_rec);
739
740         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
741                 DEBUG(0, ("ndr_push_struct_blob failed: %s\n",
742                           ndr_errstr(ndr_err)));
743                 status = ndr_map_error2ntstatus(ndr_err);
744                 goto fail;
745         }
746
747         r.hdr.length = offsetof(struct ctdb_req_message, data) + blob.length;
748         r.hdr.ctdb_magic = CTDB_MAGIC;
749         r.hdr.ctdb_version = CTDB_VERSION;
750         r.hdr.generation = 1;
751         r.hdr.operation  = CTDB_REQ_MESSAGE;
752         r.hdr.destnode   = dst_vnn;
753         r.hdr.srcnode    = conn->our_vnn;
754         r.hdr.reqid      = 0;
755         r.srvid          = dst_srvid;
756         r.datalen        = blob.length;
757
758         DEBUG(10, ("ctdbd_messaging_send: Sending ctdb packet\n"));
759         ctdb_packet_dump(&r.hdr);
760
761         status = packet_send(
762                 conn->pkt, 2,
763                 data_blob_const(&r, offsetof(struct ctdb_req_message, data)),
764                 blob);
765
766         if (!NT_STATUS_IS_OK(status)) {
767                 DEBUG(0, ("packet_send failed: %s\n", nt_errstr(status)));
768                 goto fail;
769         }
770
771         status = packet_flush(conn->pkt);
772
773         if (!NT_STATUS_IS_OK(status)) {
774                 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
775                 cluster_fatal("cluster dispatch daemon msg write error\n");
776         }
777
778         status = NT_STATUS_OK;
779  fail:
780         TALLOC_FREE(mem_ctx);
781         return status;
782 }
783
784 /*
785  * send/recv a generic ctdb control message
786  */
787 static NTSTATUS ctdbd_control(struct ctdbd_connection *conn,
788                               uint32_t vnn, uint32 opcode, 
789                               uint64_t srvid, uint32_t flags, 
790                               TDB_DATA data, 
791                               TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
792                               int *cstatus)
793 {
794         struct ctdb_req_control req;
795         struct ctdb_reply_control *reply = NULL;
796         struct ctdbd_connection *new_conn = NULL;
797         NTSTATUS status;
798
799         /* the samba3 ctdb code can't handle NOREPLY yet */
800         flags &= ~CTDB_CTRL_FLAG_NOREPLY;
801
802         if (conn == NULL) {
803                 status = ctdbd_init_connection(NULL, &new_conn);
804
805                 if (!NT_STATUS_IS_OK(status)) {
806                         DEBUG(10, ("Could not init temp connection: %s\n",
807                                    nt_errstr(status)));
808                         goto fail;
809                 }
810
811                 conn = new_conn;
812         }
813
814         ZERO_STRUCT(req);
815         req.hdr.length = offsetof(struct ctdb_req_control, data) + data.dsize;
816         req.hdr.ctdb_magic   = CTDB_MAGIC;
817         req.hdr.ctdb_version = CTDB_VERSION;
818         req.hdr.operation    = CTDB_REQ_CONTROL;
819         req.hdr.reqid        = ++conn->reqid;
820         req.hdr.destnode     = vnn;
821         req.opcode           = opcode;
822         req.srvid            = srvid;
823         req.datalen          = data.dsize;
824
825         DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
826         ctdb_packet_dump(&req.hdr);
827
828         status = packet_send(
829                 conn->pkt, 2,
830                 data_blob_const(&req, offsetof(struct ctdb_req_control, data)),
831                 data_blob_const(data.dptr, data.dsize));
832
833         if (!NT_STATUS_IS_OK(status)) {
834                 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status)));
835                 goto fail;
836         }
837
838         status = packet_flush(conn->pkt);
839
840         if (!NT_STATUS_IS_OK(status)) {
841                 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
842                 cluster_fatal("cluster dispatch daemon control write error\n");
843         }
844
845         if (flags & CTDB_CTRL_FLAG_NOREPLY) {
846                 TALLOC_FREE(new_conn);
847                 if (cstatus) {
848                         *cstatus = 0;
849                 }
850                 return NT_STATUS_OK;
851         }
852
853         status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
854
855         if (!NT_STATUS_IS_OK(status)) {
856                 DEBUG(10, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
857                 goto fail;
858         }
859
860         if (reply->hdr.operation != CTDB_REPLY_CONTROL) {
861                 DEBUG(0, ("received invalid reply\n"));
862                 goto fail;
863         }
864
865         if (outdata) {
866                 if (!(outdata->dptr = (uint8 *)talloc_memdup(
867                               mem_ctx, reply->data, reply->datalen))) {
868                         TALLOC_FREE(reply);
869                         return NT_STATUS_NO_MEMORY;
870                 }
871                 outdata->dsize = reply->datalen;
872         }
873         if (cstatus) {
874                 (*cstatus) = reply->status;
875         }
876
877         status = NT_STATUS_OK;
878
879  fail:
880         TALLOC_FREE(new_conn);
881         TALLOC_FREE(reply);
882         return status;
883 }
884
885 /*
886  * see if a remote process exists
887  */
888 bool ctdbd_process_exists(struct ctdbd_connection *conn, uint32 vnn, pid_t pid)
889 {
890         NTSTATUS status;
891         TDB_DATA data;
892         int32_t cstatus;
893
894         data.dptr = (uint8_t*)&pid;
895         data.dsize = sizeof(pid);
896
897         status = ctdbd_control(conn, vnn, CTDB_CONTROL_PROCESS_EXISTS, 0, 0,
898                                data, NULL, NULL, &cstatus);
899         if (!NT_STATUS_IS_OK(status)) {
900                 DEBUG(0, (__location__ " ctdb_control for process_exists "
901                           "failed\n"));
902                 return False;
903         }
904
905         return cstatus == 0;
906 }
907
908 /*
909  * Get a db path
910  */
911 char *ctdbd_dbpath(struct ctdbd_connection *conn,
912                    TALLOC_CTX *mem_ctx, uint32_t db_id)
913 {
914         NTSTATUS status;
915         TDB_DATA data;
916         int32_t cstatus;
917
918         data.dptr = (uint8_t*)&db_id;
919         data.dsize = sizeof(db_id);
920
921         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
922                                CTDB_CONTROL_GETDBPATH, 0, 0, data, 
923                                mem_ctx, &data, &cstatus);
924         if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
925                 DEBUG(0,(__location__ " ctdb_control for getdbpath failed\n"));
926                 return NULL;
927         }
928
929         return (char *)data.dptr;
930 }
931
932 /*
933  * attach to a ctdb database
934  */
935 NTSTATUS ctdbd_db_attach(struct ctdbd_connection *conn,
936                          const char *name, uint32_t *db_id, int tdb_flags)
937 {
938         NTSTATUS status;
939         TDB_DATA data;
940         int32_t cstatus;
941         bool persistent = (tdb_flags & TDB_CLEAR_IF_FIRST) == 0;
942
943         data.dptr = (uint8_t*)name;
944         data.dsize = strlen(name)+1;
945
946         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
947                                persistent
948                                ? CTDB_CONTROL_DB_ATTACH_PERSISTENT
949                                : CTDB_CONTROL_DB_ATTACH,
950                                tdb_flags, 0, data, NULL, &data, &cstatus);
951         if (!NT_STATUS_IS_OK(status)) {
952                 DEBUG(0, (__location__ " ctdb_control for db_attach "
953                           "failed: %s\n", nt_errstr(status)));
954                 return status;
955         }
956
957         if (cstatus != 0 || data.dsize != sizeof(uint32_t)) {
958                 DEBUG(0,(__location__ " ctdb_control for db_attach failed\n"));
959                 return NT_STATUS_INTERNAL_ERROR;
960         }
961
962         *db_id = *(uint32_t *)data.dptr;
963         talloc_free(data.dptr);
964
965         if (!(tdb_flags & TDB_SEQNUM)) {
966                 return NT_STATUS_OK;
967         }
968
969         data.dptr = (uint8_t *)db_id;
970         data.dsize = sizeof(*db_id);
971
972         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
973                                CTDB_CONTROL_ENABLE_SEQNUM, 0, 0, data, 
974                                NULL, NULL, &cstatus);
975         if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
976                 DEBUG(0,(__location__ " ctdb_control for enable seqnum "
977                          "failed\n"));
978                 return NT_STATUS_IS_OK(status) ? NT_STATUS_INTERNAL_ERROR :
979                         status;
980         }
981
982         return NT_STATUS_OK;
983 }
984
985 /*
986  * force the migration of a record to this node
987  */
988 NTSTATUS ctdbd_migrate(struct ctdbd_connection *conn, uint32 db_id,
989                        TDB_DATA key)
990 {
991         struct ctdb_req_call req;
992         struct ctdb_reply_call *reply;
993         NTSTATUS status;
994
995         ZERO_STRUCT(req);
996
997         req.hdr.length = offsetof(struct ctdb_req_call, data) + key.dsize;
998         req.hdr.ctdb_magic   = CTDB_MAGIC;
999         req.hdr.ctdb_version = CTDB_VERSION;
1000         req.hdr.operation    = CTDB_REQ_CALL;
1001         req.hdr.reqid        = ++conn->reqid;
1002         req.flags            = CTDB_IMMEDIATE_MIGRATION;
1003         req.callid           = CTDB_NULL_FUNC;
1004         req.db_id            = db_id;
1005         req.keylen           = key.dsize;
1006
1007         DEBUG(10, ("ctdbd_migrate: Sending ctdb packet\n"));
1008         ctdb_packet_dump(&req.hdr);
1009
1010         status = packet_send(
1011                 conn->pkt, 2,
1012                 data_blob_const(&req, offsetof(struct ctdb_req_call, data)),
1013                 data_blob_const(key.dptr, key.dsize));
1014
1015         if (!NT_STATUS_IS_OK(status)) {
1016                 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status)));
1017                 return status;
1018         }
1019
1020         status = packet_flush(conn->pkt);
1021
1022         if (!NT_STATUS_IS_OK(status)) {
1023                 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
1024                 cluster_fatal("cluster dispatch daemon control write error\n");
1025         }
1026
1027         status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
1028
1029         if (!NT_STATUS_IS_OK(status)) {
1030                 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
1031                 goto fail;
1032         }
1033
1034         if (reply->hdr.operation != CTDB_REPLY_CALL) {
1035                 DEBUG(0, ("received invalid reply\n"));
1036                 status = NT_STATUS_INTERNAL_ERROR;
1037                 goto fail;
1038         }
1039
1040         status = NT_STATUS_OK;
1041  fail:
1042
1043         TALLOC_FREE(reply);
1044         return status;
1045 }
1046
1047 /*
1048  * remotely fetch a record without locking it or forcing a migration
1049  */
1050 NTSTATUS ctdbd_fetch(struct ctdbd_connection *conn, uint32 db_id,
1051                      TDB_DATA key, TALLOC_CTX *mem_ctx, TDB_DATA *data)
1052 {
1053         struct ctdb_req_call req;
1054         struct ctdb_reply_call *reply;
1055         NTSTATUS status;
1056
1057         ZERO_STRUCT(req);
1058
1059         req.hdr.length = offsetof(struct ctdb_req_call, data) + key.dsize;
1060         req.hdr.ctdb_magic   = CTDB_MAGIC;
1061         req.hdr.ctdb_version = CTDB_VERSION;
1062         req.hdr.operation    = CTDB_REQ_CALL;
1063         req.hdr.reqid        = ++conn->reqid;
1064         req.flags            = 0;
1065         req.callid           = CTDB_FETCH_FUNC;
1066         req.db_id            = db_id;
1067         req.keylen           = key.dsize;
1068
1069         status = packet_send(
1070                 conn->pkt, 2,
1071                 data_blob_const(&req, offsetof(struct ctdb_req_call, data)),
1072                 data_blob_const(key.dptr, key.dsize));
1073
1074         if (!NT_STATUS_IS_OK(status)) {
1075                 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status)));
1076                 return status;
1077         }
1078
1079         status = packet_flush(conn->pkt);
1080
1081         if (!NT_STATUS_IS_OK(status)) {
1082                 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
1083                 cluster_fatal("cluster dispatch daemon control write error\n");
1084         }
1085
1086         status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
1087
1088         if (!NT_STATUS_IS_OK(status)) {
1089                 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
1090                 goto fail;
1091         }
1092
1093         if (reply->hdr.operation != CTDB_REPLY_CALL) {
1094                 DEBUG(0, ("received invalid reply\n"));
1095                 status = NT_STATUS_INTERNAL_ERROR;
1096                 goto fail;
1097         }
1098
1099         data->dsize = reply->datalen;
1100         if (data->dsize == 0) {
1101                 data->dptr = NULL;
1102                 goto done;
1103         }
1104
1105         data->dptr = (uint8 *)talloc_memdup(mem_ctx, &reply->data[0],
1106                                             reply->datalen);
1107         if (data->dptr == NULL) {
1108                 DEBUG(0, ("talloc failed\n"));
1109                 status = NT_STATUS_NO_MEMORY;
1110                 goto fail;
1111         }
1112
1113  done:
1114         status = NT_STATUS_OK;
1115  fail:
1116         TALLOC_FREE(reply);
1117         return status;
1118 }
1119
1120 struct ctdbd_traverse_state {
1121         void (*fn)(TDB_DATA key, TDB_DATA data, void *private_data);
1122         void *private_data;
1123 };
1124
1125 /*
1126  * Handle a traverse record coming in on the ctdbd connection
1127  */
1128
1129 static NTSTATUS ctdb_traverse_handler(uint8_t *buf, size_t length,
1130                                       void *private_data)
1131 {
1132         struct ctdbd_traverse_state *state =
1133                 (struct ctdbd_traverse_state *)private_data;
1134
1135         struct ctdb_req_message *m;
1136         struct ctdb_rec_data *d;
1137         TDB_DATA key, data;
1138
1139         m = (struct ctdb_req_message *)buf;
1140
1141         if (length < sizeof(*m) || m->hdr.length != length) {
1142                 DEBUG(0, ("Got invalid message of length %d\n", (int)length));
1143                 TALLOC_FREE(buf);
1144                 return NT_STATUS_UNEXPECTED_IO_ERROR;
1145         }
1146
1147         d = (struct ctdb_rec_data *)&m->data[0];
1148         if (m->datalen < sizeof(uint32_t) || m->datalen != d->length) {
1149                 DEBUG(0, ("Got invalid traverse data of length %d\n",
1150                           (int)m->datalen));
1151                 TALLOC_FREE(buf);
1152                 return NT_STATUS_UNEXPECTED_IO_ERROR;
1153         }
1154
1155         key.dsize = d->keylen;
1156         key.dptr  = &d->data[0];
1157         data.dsize = d->datalen;
1158         data.dptr = &d->data[d->keylen];                
1159
1160         if (key.dsize == 0 && data.dsize == 0) {
1161                 /* end of traverse */
1162                 return NT_STATUS_END_OF_FILE;
1163         }
1164
1165         if (data.dsize < sizeof(struct ctdb_ltdb_header)) {
1166                 DEBUG(0, ("Got invalid ltdb header length %d\n",
1167                           (int)data.dsize));
1168                 TALLOC_FREE(buf);
1169                 return NT_STATUS_UNEXPECTED_IO_ERROR;
1170         }
1171         data.dsize -= sizeof(struct ctdb_ltdb_header);
1172         data.dptr += sizeof(struct ctdb_ltdb_header);
1173
1174         if (state->fn) {
1175                 state->fn(key, data, state->private_data);
1176         }
1177
1178         TALLOC_FREE(buf);
1179         return NT_STATUS_OK;
1180 }
1181
1182 /*
1183   Traverse a ctdb database. This uses a kind-of hackish way to open a second
1184   connection to ctdbd to avoid the hairy recursive and async problems with
1185   everything in-line.
1186 */
1187
1188 NTSTATUS ctdbd_traverse(uint32 db_id,
1189                         void (*fn)(TDB_DATA key, TDB_DATA data,
1190                                    void *private_data),
1191                         void *private_data)
1192 {
1193         struct ctdbd_connection *conn;
1194         NTSTATUS status;
1195
1196         TDB_DATA data;
1197         struct ctdb_traverse_start t;
1198         int cstatus;
1199         struct ctdbd_traverse_state state;
1200
1201         status = ctdbd_init_connection(NULL, &conn);
1202         if (!NT_STATUS_IS_OK(status)) {
1203                 DEBUG(0, ("ctdbd_init_connection failed: %s\n",
1204                           nt_errstr(status)));
1205                 return status;
1206         }
1207
1208         t.db_id = db_id;
1209         t.srvid = conn->rand_srvid;
1210         t.reqid = ++conn->reqid;
1211
1212         data.dptr = (uint8_t *)&t;
1213         data.dsize = sizeof(t);
1214
1215         status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1216                                CTDB_CONTROL_TRAVERSE_START, conn->rand_srvid, 0,
1217                                data, NULL, NULL, &cstatus);
1218
1219         if (!NT_STATUS_IS_OK(status) || (cstatus != 0)) {
1220
1221                 DEBUG(0,("ctdbd_control failed: %s, %d\n", nt_errstr(status),
1222                          cstatus));
1223
1224                 if (NT_STATUS_IS_OK(status)) {
1225                         /*
1226                          * We need a mapping here
1227                          */
1228                         status = NT_STATUS_UNSUCCESSFUL;
1229                 }
1230                 goto done;
1231         }
1232
1233         state.fn = fn;
1234         state.private_data = private_data;
1235
1236         while (True) {
1237
1238                 status = NT_STATUS_OK;
1239
1240                 if (packet_handler(conn->pkt, ctdb_req_complete,
1241                                    ctdb_traverse_handler, &state, &status)) {
1242
1243                         if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
1244                                 status = NT_STATUS_OK;
1245                                 break;
1246                         }
1247
1248                         /*
1249                          * There might be more in the queue
1250                          */
1251                         continue;
1252                 }
1253
1254                 if (!NT_STATUS_IS_OK(status)) {
1255                         break;
1256                 }
1257
1258                 status = ctdb_packet_fd_read_sync(conn->pkt);
1259
1260                 if (NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
1261                         /*
1262                          * There might be more in the queue
1263                          */
1264                         continue;
1265                 }
1266
1267                 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
1268                         status = NT_STATUS_OK;
1269                         break;
1270                 }
1271
1272                 if (!NT_STATUS_IS_OK(status)) {
1273                         DEBUG(0, ("packet_fd_read_sync failed: %s\n", nt_errstr(status)));
1274                         cluster_fatal("ctdbd died\n");
1275                 }
1276         }
1277
1278  done:
1279         TALLOC_FREE(conn);
1280         return status;
1281 }
1282
1283 /*
1284    This is used to canonicalize a ctdb_sock_addr structure.
1285 */
1286 static void smbd_ctdb_canonicalize_ip(const struct sockaddr_storage *in,
1287                                       struct sockaddr_storage *out)
1288 {
1289         memcpy(out, in, sizeof (*out));
1290
1291 #ifdef HAVE_IPV6
1292         if (in->ss_family == AF_INET6) {
1293                 const char prefix[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
1294                 const struct sockaddr_in6 *in6 = (struct sockaddr_in6 *)in;
1295                 struct sockaddr_in *out4 = (struct sockaddr_in *)out;
1296                 if (memcmp(&in6->sin6_addr, prefix, 12) == 0) {
1297                         memset(out, 0, sizeof(*out));
1298 #ifdef HAVE_SOCK_SIN_LEN
1299                         out4->sin_len = sizeof(*out);
1300 #endif
1301                         out4->sin_family = AF_INET;
1302                         out4->sin_port   = in6->sin6_port;
1303                         memcpy(&out4->sin_addr, &in6->sin6_addr.s6_addr32[3], 4);
1304                 }
1305         }
1306 #endif
1307 }
1308
1309 /*
1310  * Register us as a server for a particular tcp connection
1311  */
1312
1313 NTSTATUS ctdbd_register_ips(struct ctdbd_connection *conn,
1314                             const struct sockaddr_storage *_server,
1315                             const struct sockaddr_storage *_client,
1316                             void (*release_ip_handler)(const char *ip_addr,
1317                                                        void *private_data),
1318                             void *private_data)
1319 {
1320         /*
1321          * we still use ctdb_control_tcp for ipv4
1322          * because we want to work against older ctdb
1323          * versions at runtime
1324          */
1325         struct ctdb_control_tcp p4;
1326 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1327         struct ctdb_control_tcp_addr p;
1328 #endif
1329         TDB_DATA data;
1330         NTSTATUS status;
1331         struct sockaddr_storage client;
1332         struct sockaddr_storage server;
1333
1334         /*
1335          * Only one connection so far
1336          */
1337         SMB_ASSERT(conn->release_ip_handler == NULL);
1338
1339         smbd_ctdb_canonicalize_ip(_client, &client);
1340         smbd_ctdb_canonicalize_ip(_server, &server);
1341
1342         switch (client.ss_family) {
1343         case AF_INET:
1344                 p4.dest = *(struct sockaddr_in *)(void *)&server;
1345                 p4.src = *(struct sockaddr_in *)(void *)&client;
1346                 data.dptr = (uint8_t *)&p4;
1347                 data.dsize = sizeof(p4);
1348                 break;
1349 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1350         case AF_INET6:
1351                 p.dest.ip6 = *(struct sockaddr_in6 *)(void *)&server;
1352                 p.src.ip6 = *(struct sockaddr_in6 *)(void *)&client;
1353                 data.dptr = (uint8_t *)&p;
1354                 data.dsize = sizeof(p);
1355                 break;
1356 #endif
1357         default:
1358                 return NT_STATUS_INTERNAL_ERROR;
1359         }
1360
1361         conn->release_ip_handler = release_ip_handler;
1362
1363         /*
1364          * We want to be told about IP releases
1365          */
1366
1367         status = register_with_ctdbd(conn, CTDB_SRVID_RELEASE_IP);
1368         if (!NT_STATUS_IS_OK(status)) {
1369                 return status;
1370         }
1371
1372         /*
1373          * inform ctdb of our tcp connection, so if IP takeover happens ctdb
1374          * can send an extra ack to trigger a reset for our client, so it
1375          * immediately reconnects
1376          */
1377         return ctdbd_control(conn, CTDB_CURRENT_NODE, 
1378                              CTDB_CONTROL_TCP_CLIENT, 0,
1379                              CTDB_CTRL_FLAG_NOREPLY, data, NULL, NULL, NULL);
1380 }
1381
1382 /*
1383  * We want to handle reconfigure events
1384  */
1385 NTSTATUS ctdbd_register_reconfigure(struct ctdbd_connection *conn)
1386 {
1387         return register_with_ctdbd(conn, CTDB_SRVID_RECONFIGURE);
1388 }
1389
1390 /*
1391   call a control on the local node
1392  */
1393 NTSTATUS ctdbd_control_local(struct ctdbd_connection *conn, uint32 opcode, 
1394                              uint64_t srvid, uint32_t flags, TDB_DATA data, 
1395                              TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
1396                              int *cstatus)
1397 {
1398         return ctdbd_control(conn, CTDB_CURRENT_NODE, opcode, srvid, flags, data, mem_ctx, outdata, cstatus);
1399 }
1400
1401 NTSTATUS ctdb_watch_us(struct ctdbd_connection *conn)
1402 {
1403         struct ctdb_client_notify_register reg_data;
1404         size_t struct_len;
1405         NTSTATUS status;
1406         int cstatus;
1407
1408         reg_data.srvid = CTDB_SRVID_SAMBA_NOTIFY;
1409         reg_data.len = 1;
1410         reg_data.notify_data[0] = 0;
1411
1412         struct_len = offsetof(struct ctdb_client_notify_register,
1413                               notify_data) + reg_data.len;
1414
1415         status = ctdbd_control_local(
1416                 conn, CTDB_CONTROL_REGISTER_NOTIFY, conn->rand_srvid, 0,
1417                 make_tdb_data((uint8_t *)&reg_data, struct_len),
1418                 NULL, NULL, &cstatus);
1419         if (!NT_STATUS_IS_OK(status)) {
1420                 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1421                           nt_errstr(status)));
1422         }
1423         return status;
1424 }
1425
1426 NTSTATUS ctdb_unwatch(struct ctdbd_connection *conn)
1427 {
1428         struct ctdb_client_notify_deregister dereg_data;
1429         NTSTATUS status;
1430         int cstatus;
1431
1432         dereg_data.srvid = CTDB_SRVID_SAMBA_NOTIFY;
1433
1434         status = ctdbd_control_local(
1435                 conn, CTDB_CONTROL_DEREGISTER_NOTIFY, conn->rand_srvid, 0,
1436                 make_tdb_data((uint8_t *)&dereg_data, sizeof(dereg_data)),
1437                 NULL, NULL, &cstatus);
1438         if (!NT_STATUS_IS_OK(status)) {
1439                 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1440                           nt_errstr(status)));
1441         }
1442         return status;
1443 }
1444
1445 #endif