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