s3-ctdb: fix the build w/o HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL
[Samba/id10ts.git] / source3 / lib / ctdbd_conn.c
blob9d4af18ac59d15fb4280964f802c75a6bb095e5c
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
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.
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.
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/>.
21 #include "includes.h"
22 #include "util_tdb.h"
24 #ifdef CLUSTER_SUPPORT
26 #include "ctdbd_conn.h"
27 #include "ctdb_packet.h"
28 #include "messages.h"
31 * It is not possible to include ctdb.h and tdb_compat.h (included via
32 * some other include above) without warnings. This fixes those
33 * warnings.
36 #ifdef typesafe_cb
37 #undef typesafe_cb
38 #endif
40 #ifdef typesafe_cb_preargs
41 #undef typesafe_cb_preargs
42 #endif
44 #ifdef typesafe_cb_postargs
45 #undef typesafe_cb_postargs
46 #endif
48 /* paths to these include files come from --with-ctdb= in configure */
50 #include "ctdb.h"
51 #include "ctdb_private.h"
53 struct ctdbd_connection {
54 struct messaging_context *msg_ctx;
55 uint32 reqid;
56 uint32 our_vnn;
57 uint64 rand_srvid;
58 struct ctdb_packet_context *pkt;
59 struct fd_event *fde;
61 void (*release_ip_handler)(const char *ip_addr, void *private_data);
62 void *release_ip_priv;
65 static uint32_t ctdbd_next_reqid(struct ctdbd_connection *conn)
67 conn->reqid += 1;
68 if (conn->reqid == 0) {
69 conn->reqid += 1;
71 return conn->reqid;
74 static NTSTATUS ctdbd_control(struct ctdbd_connection *conn,
75 uint32_t vnn, uint32 opcode,
76 uint64_t srvid, uint32_t flags, TDB_DATA data,
77 TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
78 int *cstatus);
81 * exit on fatal communications errors with the ctdbd daemon
83 static void cluster_fatal(const char *why)
85 DEBUG(0,("cluster fatal event: %s - exiting immediately\n", why));
86 /* we don't use smb_panic() as we don't want to delay to write
87 a core file. We need to release this process id immediately
88 so that someone else can take over without getting sharing
89 violations */
90 _exit(1);
96 static void ctdb_packet_dump(struct ctdb_req_header *hdr)
98 if (DEBUGLEVEL < 10) {
99 return;
101 DEBUGADD(10, ("len=%d, magic=%x, vers=%d, gen=%d, op=%d, reqid=%d\n",
102 (int)hdr->length, (int)hdr->ctdb_magic,
103 (int)hdr->ctdb_version, (int)hdr->generation,
104 (int)hdr->operation, (int)hdr->reqid));
108 * Register a srvid with ctdbd
110 NTSTATUS register_with_ctdbd(struct ctdbd_connection *conn, uint64_t srvid)
113 int cstatus;
114 return ctdbd_control(conn, CTDB_CURRENT_NODE,
115 CTDB_CONTROL_REGISTER_SRVID, srvid, 0,
116 tdb_null, NULL, NULL, &cstatus);
120 * get our vnn from the cluster
122 static NTSTATUS get_cluster_vnn(struct ctdbd_connection *conn, uint32 *vnn)
124 int32_t cstatus=-1;
125 NTSTATUS status;
126 status = ctdbd_control(conn,
127 CTDB_CURRENT_NODE, CTDB_CONTROL_GET_PNN, 0, 0,
128 tdb_null, NULL, NULL, &cstatus);
129 if (!NT_STATUS_IS_OK(status)) {
130 cluster_fatal("ctdbd_control failed\n");
132 *vnn = (uint32_t)cstatus;
133 return status;
137 * Are we active (i.e. not banned or stopped?)
139 static bool ctdbd_working(struct ctdbd_connection *conn, uint32_t vnn)
141 int32_t cstatus=-1;
142 NTSTATUS status;
143 TDB_DATA outdata;
144 struct ctdb_node_map *m;
145 uint32_t failure_flags;
146 bool ret = false;
147 int i;
149 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
150 CTDB_CONTROL_GET_NODEMAP, 0, 0,
151 tdb_null, talloc_tos(), &outdata, &cstatus);
152 if (!NT_STATUS_IS_OK(status)) {
153 cluster_fatal("ctdbd_control failed\n");
155 if ((cstatus != 0) || (outdata.dptr == NULL)) {
156 DEBUG(2, ("Received invalid ctdb data\n"));
157 return false;
160 m = (struct ctdb_node_map *)outdata.dptr;
162 for (i=0; i<m->num; i++) {
163 if (vnn == m->nodes[i].pnn) {
164 break;
168 if (i == m->num) {
169 DEBUG(2, ("Did not find ourselves (node %d) in nodemap\n",
170 (int)vnn));
171 goto fail;
174 failure_flags = NODE_FLAGS_BANNED | NODE_FLAGS_DISCONNECTED
175 | NODE_FLAGS_PERMANENTLY_DISABLED | NODE_FLAGS_STOPPED;
177 if ((m->nodes[i].flags & failure_flags) != 0) {
178 DEBUG(2, ("Node has status %x, not active\n",
179 (int)m->nodes[i].flags));
180 goto fail;
183 ret = true;
184 fail:
185 TALLOC_FREE(outdata.dptr);
186 return ret;
189 uint32 ctdbd_vnn(const struct ctdbd_connection *conn)
191 return conn->our_vnn;
195 * Get us a ctdb connection
198 static NTSTATUS ctdbd_connect(TALLOC_CTX *mem_ctx,
199 struct ctdb_packet_context **presult)
201 struct ctdb_packet_context *result;
202 const char *sockname = lp_ctdbd_socket();
203 struct sockaddr_un addr;
204 int fd;
206 if (!sockname || !*sockname) {
207 sockname = CTDB_PATH;
210 fd = socket(AF_UNIX, SOCK_STREAM, 0);
211 if (fd == -1) {
212 DEBUG(3, ("Could not create socket: %s\n", strerror(errno)));
213 return map_nt_error_from_unix(errno);
216 ZERO_STRUCT(addr);
217 addr.sun_family = AF_UNIX;
218 strncpy(addr.sun_path, sockname, sizeof(addr.sun_path));
220 if (sys_connect(fd, (struct sockaddr *)(void *)&addr) == -1) {
221 DEBUG(1, ("connect(%s) failed: %s\n", sockname,
222 strerror(errno)));
223 close(fd);
224 return map_nt_error_from_unix(errno);
227 if (!(result = ctdb_packet_init(mem_ctx, fd))) {
228 close(fd);
229 return NT_STATUS_NO_MEMORY;
232 *presult = result;
233 return NT_STATUS_OK;
237 * Do we have a complete ctdb packet in the queue?
240 static bool ctdb_req_complete(const uint8_t *buf, size_t available,
241 size_t *length,
242 void *private_data)
244 uint32 msglen;
246 if (available < sizeof(msglen)) {
247 return False;
250 msglen = *((uint32 *)buf);
252 DEBUG(10, ("msglen = %d\n", msglen));
254 if (msglen < sizeof(struct ctdb_req_header)) {
255 DEBUG(0, ("Got invalid msglen: %d, expected at least %d for "
256 "the req_header\n", (int)msglen,
257 (int)sizeof(struct ctdb_req_header)));
258 cluster_fatal("ctdbd protocol error\n");
261 if (available < msglen) {
262 return false;
265 *length = msglen;
266 return true;
270 * State necessary to defer an incoming message while we are waiting for a
271 * ctdb reply.
274 struct deferred_msg_state {
275 struct messaging_context *msg_ctx;
276 struct messaging_rec *rec;
280 * Timed event handler for the deferred message
283 static void deferred_message_dispatch(struct event_context *event_ctx,
284 struct timed_event *te,
285 struct timeval now,
286 void *private_data)
288 struct deferred_msg_state *state = talloc_get_type_abort(
289 private_data, struct deferred_msg_state);
291 messaging_dispatch_rec(state->msg_ctx, state->rec);
292 TALLOC_FREE(state);
293 TALLOC_FREE(te);
296 struct req_pull_state {
297 TALLOC_CTX *mem_ctx;
298 DATA_BLOB req;
302 * Pull a ctdb request out of the incoming ctdb_packet queue
305 static NTSTATUS ctdb_req_pull(uint8_t *buf, size_t length,
306 void *private_data)
308 struct req_pull_state *state = (struct req_pull_state *)private_data;
310 state->req.data = talloc_move(state->mem_ctx, &buf);
311 state->req.length = length;
312 return NT_STATUS_OK;
316 * Fetch a messaging_rec from an incoming ctdb style message
319 static struct messaging_rec *ctdb_pull_messaging_rec(TALLOC_CTX *mem_ctx,
320 size_t overall_length,
321 struct ctdb_req_message *msg)
323 struct messaging_rec *result;
324 DATA_BLOB blob;
325 enum ndr_err_code ndr_err;
327 if ((overall_length < offsetof(struct ctdb_req_message, data))
328 || (overall_length
329 < offsetof(struct ctdb_req_message, data) + msg->datalen)) {
331 cluster_fatal("got invalid msg length");
334 if (!(result = talloc(mem_ctx, struct messaging_rec))) {
335 DEBUG(0, ("talloc failed\n"));
336 return NULL;
339 blob = data_blob_const(msg->data, msg->datalen);
341 ndr_err = ndr_pull_struct_blob(
342 &blob, result, result,
343 (ndr_pull_flags_fn_t)ndr_pull_messaging_rec);
345 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
346 DEBUG(0, ("ndr_pull_struct_blob failed: %s\n",
347 ndr_errstr(ndr_err)));
348 TALLOC_FREE(result);
349 return NULL;
352 if (DEBUGLEVEL >= 10) {
353 DEBUG(10, ("ctdb_pull_messaging_rec:\n"));
354 NDR_PRINT_DEBUG(messaging_rec, result);
357 return result;
360 static NTSTATUS ctdb_packet_fd_read_sync(struct ctdb_packet_context *ctx)
362 int timeout = lp_ctdb_timeout();
364 if (timeout == 0) {
365 timeout = -1;
367 return ctdb_packet_fd_read_sync_timeout(ctx, timeout);
371 * Read a full ctdbd request. If we have a messaging context, defer incoming
372 * messages that might come in between.
375 static NTSTATUS ctdb_read_req(struct ctdbd_connection *conn, uint32 reqid,
376 TALLOC_CTX *mem_ctx, void *result)
378 struct ctdb_req_header *hdr;
379 struct req_pull_state state;
380 NTSTATUS status;
382 next_pkt:
383 ZERO_STRUCT(state);
384 state.mem_ctx = mem_ctx;
386 while (!ctdb_packet_handler(conn->pkt, ctdb_req_complete,
387 ctdb_req_pull, &state, &status)) {
389 * Not enough data
391 status = ctdb_packet_fd_read_sync(conn->pkt);
393 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_BUSY)) {
394 /* EAGAIN */
395 continue;
396 } else if (NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
397 /* EAGAIN */
398 continue;
401 if (!NT_STATUS_IS_OK(status)) {
402 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status)));
403 cluster_fatal("ctdbd died\n");
407 if (!NT_STATUS_IS_OK(status)) {
408 DEBUG(0, ("Could not read ctdb_packet: %s\n", nt_errstr(status)));
409 cluster_fatal("ctdbd died\n");
412 hdr = (struct ctdb_req_header *)state.req.data;
414 DEBUG(10, ("Received ctdb packet\n"));
415 ctdb_packet_dump(hdr);
417 if (hdr->operation == CTDB_REQ_MESSAGE) {
418 struct timed_event *evt;
419 struct deferred_msg_state *msg_state;
420 struct ctdb_req_message *msg = (struct ctdb_req_message *)hdr;
422 if (conn->msg_ctx == NULL) {
423 DEBUG(1, ("Got a message without having a msg ctx, "
424 "dropping msg %llu\n",
425 (long long unsigned)msg->srvid));
426 goto next_pkt;
429 if ((conn->release_ip_handler != NULL)
430 && (msg->srvid == CTDB_SRVID_RELEASE_IP)) {
431 /* must be dispatched immediately */
432 DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
433 conn->release_ip_handler((const char *)msg->data,
434 conn->release_ip_priv);
435 TALLOC_FREE(hdr);
436 goto next_pkt;
439 if ((msg->srvid == CTDB_SRVID_RECONFIGURE)
440 || (msg->srvid == CTDB_SRVID_SAMBA_NOTIFY)) {
442 DEBUG(1, ("ctdb_read_req: Got %s message\n",
443 (msg->srvid == CTDB_SRVID_RECONFIGURE)
444 ? "cluster reconfigure" : "SAMBA_NOTIFY"));
446 messaging_send(conn->msg_ctx,
447 messaging_server_id(conn->msg_ctx),
448 MSG_SMB_BRL_VALIDATE, &data_blob_null);
449 messaging_send(conn->msg_ctx,
450 messaging_server_id(conn->msg_ctx),
451 MSG_DBWRAP_G_LOCK_RETRY,
452 &data_blob_null);
453 TALLOC_FREE(hdr);
454 goto next_pkt;
457 msg_state = talloc(NULL, struct deferred_msg_state);
458 if (msg_state == NULL) {
459 DEBUG(0, ("talloc failed\n"));
460 TALLOC_FREE(hdr);
461 goto next_pkt;
464 if (!(msg_state->rec = ctdb_pull_messaging_rec(
465 msg_state, state.req.length, msg))) {
466 DEBUG(0, ("ctdbd_pull_messaging_rec failed\n"));
467 TALLOC_FREE(msg_state);
468 TALLOC_FREE(hdr);
469 goto next_pkt;
472 TALLOC_FREE(hdr);
474 msg_state->msg_ctx = conn->msg_ctx;
477 * We're waiting for a call reply, but an async message has
478 * crossed. Defer dispatching to the toplevel event loop.
480 evt = event_add_timed(conn->msg_ctx->event_ctx,
481 conn->msg_ctx->event_ctx,
482 timeval_zero(),
483 deferred_message_dispatch,
484 msg_state);
485 if (evt == NULL) {
486 DEBUG(0, ("event_add_timed failed\n"));
487 TALLOC_FREE(msg_state);
488 TALLOC_FREE(hdr);
489 goto next_pkt;
492 goto next_pkt;
495 if ((reqid != 0) && (hdr->reqid != reqid)) {
496 /* we got the wrong reply */
497 DEBUG(0,("Discarding mismatched ctdb reqid %u should have "
498 "been %u\n", hdr->reqid, reqid));
499 TALLOC_FREE(hdr);
500 goto next_pkt;
503 *((void **)result) = talloc_move(mem_ctx, &hdr);
505 return NT_STATUS_OK;
509 * Get us a ctdbd connection
512 static NTSTATUS ctdbd_init_connection(TALLOC_CTX *mem_ctx,
513 struct ctdbd_connection **pconn)
515 struct ctdbd_connection *conn;
516 NTSTATUS status;
518 if (!(conn = talloc_zero(mem_ctx, struct ctdbd_connection))) {
519 DEBUG(0, ("talloc failed\n"));
520 return NT_STATUS_NO_MEMORY;
523 status = ctdbd_connect(conn, &conn->pkt);
525 if (!NT_STATUS_IS_OK(status)) {
526 DEBUG(10, ("ctdbd_connect failed: %s\n", nt_errstr(status)));
527 goto fail;
530 status = get_cluster_vnn(conn, &conn->our_vnn);
532 if (!NT_STATUS_IS_OK(status)) {
533 DEBUG(10, ("get_cluster_vnn failed: %s\n", nt_errstr(status)));
534 goto fail;
537 if (!ctdbd_working(conn, conn->our_vnn)) {
538 DEBUG(2, ("Node is not working, can not connect\n"));
539 status = NT_STATUS_INTERNAL_DB_ERROR;
540 goto fail;
543 generate_random_buffer((unsigned char *)&conn->rand_srvid,
544 sizeof(conn->rand_srvid));
546 status = register_with_ctdbd(conn, conn->rand_srvid);
548 if (!NT_STATUS_IS_OK(status)) {
549 DEBUG(5, ("Could not register random srvid: %s\n",
550 nt_errstr(status)));
551 goto fail;
554 *pconn = conn;
555 return NT_STATUS_OK;
557 fail:
558 TALLOC_FREE(conn);
559 return status;
563 * Get us a ctdbd connection and register us as a process
566 NTSTATUS ctdbd_messaging_connection(TALLOC_CTX *mem_ctx,
567 struct ctdbd_connection **pconn)
569 struct ctdbd_connection *conn;
570 NTSTATUS status;
572 status = ctdbd_init_connection(mem_ctx, &conn);
574 if (!NT_STATUS_IS_OK(status)) {
575 return status;
578 status = register_with_ctdbd(conn, (uint64_t)sys_getpid());
579 if (!NT_STATUS_IS_OK(status)) {
580 goto fail;
583 status = register_with_ctdbd(conn, MSG_SRVID_SAMBA);
584 if (!NT_STATUS_IS_OK(status)) {
585 goto fail;
588 status = register_with_ctdbd(conn, CTDB_SRVID_SAMBA_NOTIFY);
589 if (!NT_STATUS_IS_OK(status)) {
590 goto fail;
593 *pconn = conn;
594 return NT_STATUS_OK;
596 fail:
597 TALLOC_FREE(conn);
598 return status;
601 struct messaging_context *ctdb_conn_msg_ctx(struct ctdbd_connection *conn)
603 return conn->msg_ctx;
606 int ctdbd_conn_get_fd(struct ctdbd_connection *conn)
608 return ctdb_packet_get_fd(conn->pkt);
612 * Packet handler to receive and handle a ctdb message
614 static NTSTATUS ctdb_handle_message(uint8_t *buf, size_t length,
615 void *private_data)
617 struct ctdbd_connection *conn = talloc_get_type_abort(
618 private_data, struct ctdbd_connection);
619 struct ctdb_req_message *msg;
620 struct messaging_rec *msg_rec;
622 msg = (struct ctdb_req_message *)buf;
624 if (msg->hdr.operation != CTDB_REQ_MESSAGE) {
625 DEBUG(0, ("Received async msg of type %u, discarding\n",
626 msg->hdr.operation));
627 TALLOC_FREE(buf);
628 return NT_STATUS_INVALID_PARAMETER;
631 if ((conn->release_ip_handler != NULL)
632 && (msg->srvid == CTDB_SRVID_RELEASE_IP)) {
633 /* must be dispatched immediately */
634 DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
635 conn->release_ip_handler((const char *)msg->data,
636 conn->release_ip_priv);
637 TALLOC_FREE(buf);
638 return NT_STATUS_OK;
641 SMB_ASSERT(conn->msg_ctx != NULL);
643 if ((msg->srvid == CTDB_SRVID_RECONFIGURE)
644 || (msg->srvid == CTDB_SRVID_SAMBA_NOTIFY)){
645 DEBUG(0,("Got cluster reconfigure message\n"));
647 * when the cluster is reconfigured or someone of the
648 * family has passed away (SAMBA_NOTIFY), we need to
649 * clean the brl database
651 messaging_send(conn->msg_ctx,
652 messaging_server_id(conn->msg_ctx),
653 MSG_SMB_BRL_VALIDATE, &data_blob_null);
655 messaging_send(conn->msg_ctx,
656 messaging_server_id(conn->msg_ctx),
657 MSG_DBWRAP_G_LOCK_RETRY,
658 &data_blob_null);
660 TALLOC_FREE(buf);
661 return NT_STATUS_OK;
664 /* only messages to our pid or the broadcast are valid here */
665 if (msg->srvid != sys_getpid() && msg->srvid != MSG_SRVID_SAMBA) {
666 DEBUG(0,("Got unexpected message with srvid=%llu\n",
667 (unsigned long long)msg->srvid));
668 TALLOC_FREE(buf);
669 return NT_STATUS_OK;
672 if (!(msg_rec = ctdb_pull_messaging_rec(NULL, length, msg))) {
673 DEBUG(10, ("ctdb_pull_messaging_rec failed\n"));
674 TALLOC_FREE(buf);
675 return NT_STATUS_NO_MEMORY;
678 messaging_dispatch_rec(conn->msg_ctx, msg_rec);
680 TALLOC_FREE(msg_rec);
681 TALLOC_FREE(buf);
682 return NT_STATUS_OK;
686 * The ctdbd socket is readable asynchronuously
689 static void ctdbd_socket_handler(struct event_context *event_ctx,
690 struct fd_event *event,
691 uint16 flags,
692 void *private_data)
694 struct ctdbd_connection *conn = talloc_get_type_abort(
695 private_data, struct ctdbd_connection);
697 NTSTATUS status;
699 status = ctdb_packet_fd_read(conn->pkt);
701 if (!NT_STATUS_IS_OK(status)) {
702 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status)));
703 cluster_fatal("ctdbd died\n");
706 while (ctdb_packet_handler(conn->pkt, ctdb_req_complete,
707 ctdb_handle_message, conn, &status)) {
708 if (!NT_STATUS_IS_OK(status)) {
709 DEBUG(10, ("could not handle incoming message: %s\n",
710 nt_errstr(status)));
716 * Prepare a ctdbd connection to receive messages
719 NTSTATUS ctdbd_register_msg_ctx(struct ctdbd_connection *conn,
720 struct messaging_context *msg_ctx)
722 SMB_ASSERT(conn->msg_ctx == NULL);
723 SMB_ASSERT(conn->fde == NULL);
725 if (!(conn->fde = event_add_fd(msg_ctx->event_ctx, conn,
726 ctdb_packet_get_fd(conn->pkt),
727 EVENT_FD_READ,
728 ctdbd_socket_handler,
729 conn))) {
730 DEBUG(0, ("event_add_fd failed\n"));
731 return NT_STATUS_NO_MEMORY;
734 conn->msg_ctx = msg_ctx;
736 return NT_STATUS_OK;
740 * Send a messaging message across a ctdbd
743 NTSTATUS ctdbd_messaging_send(struct ctdbd_connection *conn,
744 uint32 dst_vnn, uint64 dst_srvid,
745 struct messaging_rec *msg)
747 struct ctdb_req_message r;
748 TALLOC_CTX *mem_ctx;
749 DATA_BLOB blob;
750 NTSTATUS status;
751 enum ndr_err_code ndr_err;
753 if (!(mem_ctx = talloc_init("ctdbd_messaging_send"))) {
754 DEBUG(0, ("talloc failed\n"));
755 return NT_STATUS_NO_MEMORY;
758 ndr_err = ndr_push_struct_blob(
759 &blob, mem_ctx, msg,
760 (ndr_push_flags_fn_t)ndr_push_messaging_rec);
762 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
763 DEBUG(0, ("ndr_push_struct_blob failed: %s\n",
764 ndr_errstr(ndr_err)));
765 status = ndr_map_error2ntstatus(ndr_err);
766 goto fail;
769 r.hdr.length = offsetof(struct ctdb_req_message, data) + blob.length;
770 r.hdr.ctdb_magic = CTDB_MAGIC;
771 r.hdr.ctdb_version = CTDB_VERSION;
772 r.hdr.generation = 1;
773 r.hdr.operation = CTDB_REQ_MESSAGE;
774 r.hdr.destnode = dst_vnn;
775 r.hdr.srcnode = conn->our_vnn;
776 r.hdr.reqid = 0;
777 r.srvid = dst_srvid;
778 r.datalen = blob.length;
780 DEBUG(10, ("ctdbd_messaging_send: Sending ctdb packet\n"));
781 ctdb_packet_dump(&r.hdr);
783 status = ctdb_packet_send(
784 conn->pkt, 2,
785 data_blob_const(&r, offsetof(struct ctdb_req_message, data)),
786 blob);
788 if (!NT_STATUS_IS_OK(status)) {
789 DEBUG(0, ("ctdb_packet_send failed: %s\n", nt_errstr(status)));
790 goto fail;
793 status = ctdb_packet_flush(conn->pkt);
795 if (!NT_STATUS_IS_OK(status)) {
796 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
797 cluster_fatal("cluster dispatch daemon msg write error\n");
800 status = NT_STATUS_OK;
801 fail:
802 TALLOC_FREE(mem_ctx);
803 return status;
807 * send/recv a generic ctdb control message
809 static NTSTATUS ctdbd_control(struct ctdbd_connection *conn,
810 uint32_t vnn, uint32 opcode,
811 uint64_t srvid, uint32_t flags,
812 TDB_DATA data,
813 TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
814 int *cstatus)
816 struct ctdb_req_control req;
817 struct ctdb_reply_control *reply = NULL;
818 struct ctdbd_connection *new_conn = NULL;
819 NTSTATUS status;
821 if (conn == NULL) {
822 status = ctdbd_init_connection(NULL, &new_conn);
824 if (!NT_STATUS_IS_OK(status)) {
825 DEBUG(10, ("Could not init temp connection: %s\n",
826 nt_errstr(status)));
827 goto fail;
830 conn = new_conn;
833 ZERO_STRUCT(req);
834 req.hdr.length = offsetof(struct ctdb_req_control, data) + data.dsize;
835 req.hdr.ctdb_magic = CTDB_MAGIC;
836 req.hdr.ctdb_version = CTDB_VERSION;
837 req.hdr.operation = CTDB_REQ_CONTROL;
838 req.hdr.reqid = ctdbd_next_reqid(conn);
839 req.hdr.destnode = vnn;
840 req.opcode = opcode;
841 req.srvid = srvid;
842 req.datalen = data.dsize;
843 req.flags = flags;
845 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
846 ctdb_packet_dump(&req.hdr);
848 status = ctdb_packet_send(
849 conn->pkt, 2,
850 data_blob_const(&req, offsetof(struct ctdb_req_control, data)),
851 data_blob_const(data.dptr, data.dsize));
853 if (!NT_STATUS_IS_OK(status)) {
854 DEBUG(3, ("ctdb_packet_send failed: %s\n", nt_errstr(status)));
855 goto fail;
858 status = ctdb_packet_flush(conn->pkt);
860 if (!NT_STATUS_IS_OK(status)) {
861 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
862 cluster_fatal("cluster dispatch daemon control write error\n");
865 if (flags & CTDB_CTRL_FLAG_NOREPLY) {
866 TALLOC_FREE(new_conn);
867 if (cstatus) {
868 *cstatus = 0;
870 return NT_STATUS_OK;
873 status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
875 if (!NT_STATUS_IS_OK(status)) {
876 DEBUG(10, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
877 goto fail;
880 if (reply->hdr.operation != CTDB_REPLY_CONTROL) {
881 DEBUG(0, ("received invalid reply\n"));
882 goto fail;
885 if (outdata) {
886 if (!(outdata->dptr = (uint8 *)talloc_memdup(
887 mem_ctx, reply->data, reply->datalen))) {
888 TALLOC_FREE(reply);
889 return NT_STATUS_NO_MEMORY;
891 outdata->dsize = reply->datalen;
893 if (cstatus) {
894 (*cstatus) = reply->status;
897 status = NT_STATUS_OK;
899 fail:
900 TALLOC_FREE(new_conn);
901 TALLOC_FREE(reply);
902 return status;
906 * see if a remote process exists
908 bool ctdbd_process_exists(struct ctdbd_connection *conn, uint32 vnn, pid_t pid)
910 struct server_id id;
911 bool result;
913 id.pid = pid;
914 id.vnn = vnn;
916 if (!ctdb_processes_exist(conn, &id, 1, &result)) {
917 DEBUG(10, ("ctdb_processes_exist failed\n"));
918 return false;
920 return result;
923 bool ctdb_processes_exist(struct ctdbd_connection *conn,
924 const struct server_id *pids, int num_pids,
925 bool *results)
927 TALLOC_CTX *frame = talloc_stackframe();
928 int i, num_received;
929 NTSTATUS status;
930 uint32_t *reqids;
931 bool result = false;
933 reqids = talloc_array(talloc_tos(), uint32_t, num_pids);
934 if (reqids == NULL) {
935 goto fail;
938 for (i=0; i<num_pids; i++) {
939 struct ctdb_req_control req;
940 pid_t pid;
942 results[i] = false;
943 reqids[i] = ctdbd_next_reqid(conn);
945 ZERO_STRUCT(req);
948 * pids[i].pid is uint64_t, scale down to pid_t which
949 * is the wire protocol towards ctdb.
951 pid = pids[i].pid;
953 DEBUG(10, ("Requesting PID %d/%d, reqid=%d\n",
954 (int)pids[i].vnn, (int)pid,
955 (int)reqids[i]));
957 req.hdr.length = offsetof(struct ctdb_req_control, data);
958 req.hdr.length += sizeof(pid);
959 req.hdr.ctdb_magic = CTDB_MAGIC;
960 req.hdr.ctdb_version = CTDB_VERSION;
961 req.hdr.operation = CTDB_REQ_CONTROL;
962 req.hdr.reqid = reqids[i];
963 req.hdr.destnode = pids[i].vnn;
964 req.opcode = CTDB_CONTROL_PROCESS_EXISTS;
965 req.srvid = 0;
966 req.datalen = sizeof(pid);
967 req.flags = 0;
969 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
970 ctdb_packet_dump(&req.hdr);
972 status = ctdb_packet_send(
973 conn->pkt, 2,
974 data_blob_const(
975 &req, offsetof(struct ctdb_req_control, data)),
976 data_blob_const(&pid, sizeof(pid)));
977 if (!NT_STATUS_IS_OK(status)) {
978 DEBUG(10, ("ctdb_packet_send failed: %s\n",
979 nt_errstr(status)));
980 goto fail;
984 status = ctdb_packet_flush(conn->pkt);
985 if (!NT_STATUS_IS_OK(status)) {
986 DEBUG(10, ("ctdb_packet_flush failed: %s\n",
987 nt_errstr(status)));
988 goto fail;
991 num_received = 0;
993 while (num_received < num_pids) {
994 struct ctdb_reply_control *reply = NULL;
995 uint32_t reqid;
997 status = ctdb_read_req(conn, 0, talloc_tos(), (void *)&reply);
998 if (!NT_STATUS_IS_OK(status)) {
999 DEBUG(10, ("ctdb_read_req failed: %s\n",
1000 nt_errstr(status)));
1001 goto fail;
1004 if (reply->hdr.operation != CTDB_REPLY_CONTROL) {
1005 DEBUG(10, ("Received invalid reply\n"));
1006 goto fail;
1009 reqid = reply->hdr.reqid;
1011 DEBUG(10, ("Received reqid %d\n", (int)reqid));
1013 for (i=0; i<num_pids; i++) {
1014 if (reqid == reqids[i]) {
1015 break;
1018 if (i == num_pids) {
1019 DEBUG(10, ("Received unknown record number %u\n",
1020 (unsigned)reqid));
1021 goto fail;
1023 results[i] = ((reply->status) == 0);
1024 TALLOC_FREE(reply);
1025 num_received += 1;
1028 result = true;
1029 fail:
1030 TALLOC_FREE(frame);
1031 return result;
1034 struct ctdb_vnn_list {
1035 uint32_t vnn;
1036 uint32_t reqid;
1037 unsigned num_srvids;
1038 unsigned num_filled;
1039 uint64_t *srvids;
1040 unsigned *pid_indexes;
1044 * Get a list of all vnns mentioned in a list of
1045 * server_ids. vnn_indexes tells where in the vnns array we have to
1046 * place the pids.
1048 static bool ctdb_collect_vnns(TALLOC_CTX *mem_ctx,
1049 const struct server_id *pids, unsigned num_pids,
1050 struct ctdb_vnn_list **pvnns,
1051 unsigned *pnum_vnns)
1053 struct ctdb_vnn_list *vnns = NULL;
1054 unsigned *vnn_indexes = NULL;
1055 unsigned i, num_vnns = 0;
1057 vnn_indexes = talloc_array(mem_ctx, unsigned, num_pids);
1058 if (vnn_indexes == NULL) {
1059 goto fail;
1062 for (i=0; i<num_pids; i++) {
1063 unsigned j;
1064 uint32_t vnn = pids[i].vnn;
1066 for (j=0; j<num_vnns; j++) {
1067 if (vnn == vnns[j].vnn) {
1068 break;
1071 vnn_indexes[i] = j;
1073 if (j < num_vnns) {
1075 * Already in the array
1077 vnns[j].num_srvids += 1;
1078 continue;
1080 vnns = talloc_realloc(mem_ctx, vnns, struct ctdb_vnn_list,
1081 num_vnns+1);
1082 if (vnns == NULL) {
1083 goto fail;
1085 vnns[num_vnns].vnn = vnn;
1086 vnns[num_vnns].num_srvids = 1;
1087 vnns[num_vnns].num_filled = 0;
1088 num_vnns += 1;
1090 for (i=0; i<num_vnns; i++) {
1091 struct ctdb_vnn_list *vnn = &vnns[i];
1093 vnn->srvids = talloc_array(vnns, uint64_t, vnn->num_srvids);
1094 if (vnn->srvids == NULL) {
1095 goto fail;
1097 vnn->pid_indexes = talloc_array(vnns, unsigned,
1098 vnn->num_srvids);
1099 if (vnn->pid_indexes == NULL) {
1100 goto fail;
1103 for (i=0; i<num_pids; i++) {
1104 struct ctdb_vnn_list *vnn = &vnns[vnn_indexes[i]];
1105 vnn->srvids[vnn->num_filled] = pids[i].unique_id;
1106 vnn->pid_indexes[vnn->num_filled] = i;
1107 vnn->num_filled += 1;
1110 TALLOC_FREE(vnn_indexes);
1111 *pvnns = vnns;
1112 *pnum_vnns = num_vnns;
1113 return true;
1114 fail:
1115 TALLOC_FREE(vnns);
1116 TALLOC_FREE(vnn_indexes);
1117 return false;
1120 #ifdef HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL
1122 bool ctdb_serverids_exist(struct ctdbd_connection *conn,
1123 const struct server_id *pids, unsigned num_pids,
1124 bool *results)
1126 unsigned i, num_received;
1127 NTSTATUS status;
1128 struct ctdb_vnn_list *vnns = NULL;
1129 unsigned num_vnns;
1130 bool result = false;
1132 if (!ctdb_collect_vnns(talloc_tos(), pids, num_pids,
1133 &vnns, &num_vnns)) {
1134 goto fail;
1137 for (i=0; i<num_vnns; i++) {
1138 struct ctdb_vnn_list *vnn = &vnns[i];
1139 struct ctdb_req_control req;
1141 vnn->reqid = ctdbd_next_reqid(conn);
1143 ZERO_STRUCT(req);
1145 DEBUG(10, ("Requesting VNN %d, reqid=%d, num_srvids=%u\n",
1146 (int)vnn->vnn, (int)vnn->reqid, vnn->num_srvids));
1148 req.hdr.length = offsetof(struct ctdb_req_control, data);
1149 req.hdr.ctdb_magic = CTDB_MAGIC;
1150 req.hdr.ctdb_version = CTDB_VERSION;
1151 req.hdr.operation = CTDB_REQ_CONTROL;
1152 req.hdr.reqid = vnn->reqid;
1153 req.hdr.destnode = vnn->vnn;
1154 req.opcode = CTDB_CONTROL_CHECK_SRVIDS;
1155 req.srvid = 0;
1156 req.datalen = sizeof(uint64_t) * vnn->num_srvids;
1157 req.hdr.length += req.datalen;
1158 req.flags = 0;
1160 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
1161 ctdb_packet_dump(&req.hdr);
1163 status = ctdb_packet_send(
1164 conn->pkt, 2,
1165 data_blob_const(
1166 &req, offsetof(struct ctdb_req_control,
1167 data)),
1168 data_blob_const(vnn->srvids, req.datalen));
1169 if (!NT_STATUS_IS_OK(status)) {
1170 DEBUG(10, ("ctdb_packet_send failed: %s\n",
1171 nt_errstr(status)));
1172 goto fail;
1176 status = ctdb_packet_flush(conn->pkt);
1177 if (!NT_STATUS_IS_OK(status)) {
1178 DEBUG(10, ("ctdb_packet_flush failed: %s\n",
1179 nt_errstr(status)));
1180 goto fail;
1183 num_received = 0;
1185 while (num_received < num_vnns) {
1186 struct ctdb_reply_control *reply = NULL;
1187 struct ctdb_vnn_list *vnn;
1188 uint32_t reqid;
1190 status = ctdb_read_req(conn, 0, talloc_tos(), (void *)&reply);
1191 if (!NT_STATUS_IS_OK(status)) {
1192 DEBUG(10, ("ctdb_read_req failed: %s\n",
1193 nt_errstr(status)));
1194 goto fail;
1197 if (reply->hdr.operation != CTDB_REPLY_CONTROL) {
1198 DEBUG(10, ("Received invalid reply\n"));
1199 goto fail;
1202 reqid = reply->hdr.reqid;
1204 DEBUG(10, ("Received reqid %d\n", (int)reqid));
1206 for (i=0; i<num_vnns; i++) {
1207 if (reqid == vnns[i].reqid) {
1208 break;
1211 if (i == num_vnns) {
1212 DEBUG(10, ("Received unknown reqid number %u\n",
1213 (unsigned)reqid));
1214 goto fail;
1217 DEBUG(10, ("Found index %u\n", i));
1219 vnn = &vnns[i];
1221 DEBUG(10, ("Received vnn %u, vnn->num_srvids %u, datalen %u\n",
1222 (unsigned)vnn->vnn, vnn->num_srvids,
1223 (unsigned)reply->datalen));
1225 if (reply->datalen < ((vnn->num_srvids+7)/8)) {
1226 DEBUG(10, ("Received short reply\n"));
1227 goto fail;
1230 for (i=0; i<vnn->num_srvids; i++) {
1231 results[vnn->pid_indexes[i]] =
1232 ((reply->data[i/8] & (1<<(i%8))) != 0);
1235 TALLOC_FREE(reply);
1236 num_received += 1;
1239 result = true;
1240 fail:
1241 TALLOC_FREE(vnns);
1242 return result;
1245 #endif /* HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL */
1248 * Get a db path
1250 char *ctdbd_dbpath(struct ctdbd_connection *conn,
1251 TALLOC_CTX *mem_ctx, uint32_t db_id)
1253 NTSTATUS status;
1254 TDB_DATA data;
1255 int32_t cstatus;
1257 data.dptr = (uint8_t*)&db_id;
1258 data.dsize = sizeof(db_id);
1260 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1261 CTDB_CONTROL_GETDBPATH, 0, 0, data,
1262 mem_ctx, &data, &cstatus);
1263 if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
1264 DEBUG(0,(__location__ " ctdb_control for getdbpath failed\n"));
1265 return NULL;
1268 return (char *)data.dptr;
1272 * attach to a ctdb database
1274 NTSTATUS ctdbd_db_attach(struct ctdbd_connection *conn,
1275 const char *name, uint32_t *db_id, int tdb_flags)
1277 NTSTATUS status;
1278 TDB_DATA data;
1279 int32_t cstatus;
1280 bool persistent = (tdb_flags & TDB_CLEAR_IF_FIRST) == 0;
1282 data.dptr = (uint8_t*)name;
1283 data.dsize = strlen(name)+1;
1285 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1286 persistent
1287 ? CTDB_CONTROL_DB_ATTACH_PERSISTENT
1288 : CTDB_CONTROL_DB_ATTACH,
1289 tdb_flags, 0, data, NULL, &data, &cstatus);
1290 if (!NT_STATUS_IS_OK(status)) {
1291 DEBUG(0, (__location__ " ctdb_control for db_attach "
1292 "failed: %s\n", nt_errstr(status)));
1293 return status;
1296 if (cstatus != 0 || data.dsize != sizeof(uint32_t)) {
1297 DEBUG(0,(__location__ " ctdb_control for db_attach failed\n"));
1298 return NT_STATUS_INTERNAL_ERROR;
1301 *db_id = *(uint32_t *)data.dptr;
1302 talloc_free(data.dptr);
1304 if (!(tdb_flags & TDB_SEQNUM)) {
1305 return NT_STATUS_OK;
1308 data.dptr = (uint8_t *)db_id;
1309 data.dsize = sizeof(*db_id);
1311 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1312 CTDB_CONTROL_ENABLE_SEQNUM, 0, 0, data,
1313 NULL, NULL, &cstatus);
1314 if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
1315 DEBUG(0,(__location__ " ctdb_control for enable seqnum "
1316 "failed\n"));
1317 return NT_STATUS_IS_OK(status) ? NT_STATUS_INTERNAL_ERROR :
1318 status;
1321 return NT_STATUS_OK;
1325 * force the migration of a record to this node
1327 NTSTATUS ctdbd_migrate(struct ctdbd_connection *conn, uint32 db_id,
1328 TDB_DATA key)
1330 struct ctdb_req_call req;
1331 struct ctdb_reply_call *reply;
1332 NTSTATUS status;
1334 ZERO_STRUCT(req);
1336 req.hdr.length = offsetof(struct ctdb_req_call, data) + key.dsize;
1337 req.hdr.ctdb_magic = CTDB_MAGIC;
1338 req.hdr.ctdb_version = CTDB_VERSION;
1339 req.hdr.operation = CTDB_REQ_CALL;
1340 req.hdr.reqid = ctdbd_next_reqid(conn);
1341 req.flags = CTDB_IMMEDIATE_MIGRATION;
1342 req.callid = CTDB_NULL_FUNC;
1343 req.db_id = db_id;
1344 req.keylen = key.dsize;
1346 DEBUG(10, ("ctdbd_migrate: Sending ctdb packet\n"));
1347 ctdb_packet_dump(&req.hdr);
1349 status = ctdb_packet_send(
1350 conn->pkt, 2,
1351 data_blob_const(&req, offsetof(struct ctdb_req_call, data)),
1352 data_blob_const(key.dptr, key.dsize));
1354 if (!NT_STATUS_IS_OK(status)) {
1355 DEBUG(3, ("ctdb_packet_send failed: %s\n", nt_errstr(status)));
1356 return status;
1359 status = ctdb_packet_flush(conn->pkt);
1361 if (!NT_STATUS_IS_OK(status)) {
1362 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
1363 cluster_fatal("cluster dispatch daemon control write error\n");
1366 status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
1368 if (!NT_STATUS_IS_OK(status)) {
1369 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
1370 goto fail;
1373 if (reply->hdr.operation != CTDB_REPLY_CALL) {
1374 DEBUG(0, ("received invalid reply\n"));
1375 status = NT_STATUS_INTERNAL_ERROR;
1376 goto fail;
1379 status = NT_STATUS_OK;
1380 fail:
1382 TALLOC_FREE(reply);
1383 return status;
1387 * remotely fetch a record without locking it or forcing a migration
1389 NTSTATUS ctdbd_fetch(struct ctdbd_connection *conn, uint32 db_id,
1390 TDB_DATA key, TALLOC_CTX *mem_ctx, TDB_DATA *data)
1392 struct ctdb_req_call req;
1393 struct ctdb_reply_call *reply;
1394 NTSTATUS status;
1396 ZERO_STRUCT(req);
1398 req.hdr.length = offsetof(struct ctdb_req_call, data) + key.dsize;
1399 req.hdr.ctdb_magic = CTDB_MAGIC;
1400 req.hdr.ctdb_version = CTDB_VERSION;
1401 req.hdr.operation = CTDB_REQ_CALL;
1402 req.hdr.reqid = ctdbd_next_reqid(conn);
1403 req.flags = 0;
1404 req.callid = CTDB_FETCH_FUNC;
1405 req.db_id = db_id;
1406 req.keylen = key.dsize;
1408 status = ctdb_packet_send(
1409 conn->pkt, 2,
1410 data_blob_const(&req, offsetof(struct ctdb_req_call, data)),
1411 data_blob_const(key.dptr, key.dsize));
1413 if (!NT_STATUS_IS_OK(status)) {
1414 DEBUG(3, ("ctdb_packet_send failed: %s\n", nt_errstr(status)));
1415 return status;
1418 status = ctdb_packet_flush(conn->pkt);
1420 if (!NT_STATUS_IS_OK(status)) {
1421 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
1422 cluster_fatal("cluster dispatch daemon control write error\n");
1425 status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
1427 if (!NT_STATUS_IS_OK(status)) {
1428 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
1429 goto fail;
1432 if (reply->hdr.operation != CTDB_REPLY_CALL) {
1433 DEBUG(0, ("received invalid reply\n"));
1434 status = NT_STATUS_INTERNAL_ERROR;
1435 goto fail;
1438 data->dsize = reply->datalen;
1439 if (data->dsize == 0) {
1440 data->dptr = NULL;
1441 goto done;
1444 data->dptr = (uint8 *)talloc_memdup(mem_ctx, &reply->data[0],
1445 reply->datalen);
1446 if (data->dptr == NULL) {
1447 DEBUG(0, ("talloc failed\n"));
1448 status = NT_STATUS_NO_MEMORY;
1449 goto fail;
1452 done:
1453 status = NT_STATUS_OK;
1454 fail:
1455 TALLOC_FREE(reply);
1456 return status;
1459 struct ctdbd_traverse_state {
1460 void (*fn)(TDB_DATA key, TDB_DATA data, void *private_data);
1461 void *private_data;
1465 * Handle a traverse record coming in on the ctdbd connection
1468 static NTSTATUS ctdb_traverse_handler(uint8_t *buf, size_t length,
1469 void *private_data)
1471 struct ctdbd_traverse_state *state =
1472 (struct ctdbd_traverse_state *)private_data;
1474 struct ctdb_req_message *m;
1475 struct ctdb_rec_data *d;
1476 TDB_DATA key, data;
1478 m = (struct ctdb_req_message *)buf;
1480 if (length < sizeof(*m) || m->hdr.length != length) {
1481 DEBUG(0, ("Got invalid message of length %d\n", (int)length));
1482 TALLOC_FREE(buf);
1483 return NT_STATUS_UNEXPECTED_IO_ERROR;
1486 d = (struct ctdb_rec_data *)&m->data[0];
1487 if (m->datalen < sizeof(uint32_t) || m->datalen != d->length) {
1488 DEBUG(0, ("Got invalid traverse data of length %d\n",
1489 (int)m->datalen));
1490 TALLOC_FREE(buf);
1491 return NT_STATUS_UNEXPECTED_IO_ERROR;
1494 key.dsize = d->keylen;
1495 key.dptr = &d->data[0];
1496 data.dsize = d->datalen;
1497 data.dptr = &d->data[d->keylen];
1499 if (key.dsize == 0 && data.dsize == 0) {
1500 /* end of traverse */
1501 return NT_STATUS_END_OF_FILE;
1504 if (data.dsize < sizeof(struct ctdb_ltdb_header)) {
1505 DEBUG(0, ("Got invalid ltdb header length %d\n",
1506 (int)data.dsize));
1507 TALLOC_FREE(buf);
1508 return NT_STATUS_UNEXPECTED_IO_ERROR;
1510 data.dsize -= sizeof(struct ctdb_ltdb_header);
1511 data.dptr += sizeof(struct ctdb_ltdb_header);
1513 if (state->fn) {
1514 state->fn(key, data, state->private_data);
1517 TALLOC_FREE(buf);
1518 return NT_STATUS_OK;
1522 Traverse a ctdb database. This uses a kind-of hackish way to open a second
1523 connection to ctdbd to avoid the hairy recursive and async problems with
1524 everything in-line.
1527 NTSTATUS ctdbd_traverse(uint32 db_id,
1528 void (*fn)(TDB_DATA key, TDB_DATA data,
1529 void *private_data),
1530 void *private_data)
1532 struct ctdbd_connection *conn;
1533 NTSTATUS status;
1535 TDB_DATA data;
1536 struct ctdb_traverse_start t;
1537 int cstatus;
1538 struct ctdbd_traverse_state state;
1540 status = ctdbd_init_connection(NULL, &conn);
1541 if (!NT_STATUS_IS_OK(status)) {
1542 DEBUG(0, ("ctdbd_init_connection failed: %s\n",
1543 nt_errstr(status)));
1544 return status;
1547 t.db_id = db_id;
1548 t.srvid = conn->rand_srvid;
1549 t.reqid = ctdbd_next_reqid(conn);
1551 data.dptr = (uint8_t *)&t;
1552 data.dsize = sizeof(t);
1554 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1555 CTDB_CONTROL_TRAVERSE_START, conn->rand_srvid, 0,
1556 data, NULL, NULL, &cstatus);
1558 if (!NT_STATUS_IS_OK(status) || (cstatus != 0)) {
1560 DEBUG(0,("ctdbd_control failed: %s, %d\n", nt_errstr(status),
1561 cstatus));
1563 if (NT_STATUS_IS_OK(status)) {
1565 * We need a mapping here
1567 status = NT_STATUS_UNSUCCESSFUL;
1569 goto done;
1572 state.fn = fn;
1573 state.private_data = private_data;
1575 while (True) {
1577 status = NT_STATUS_OK;
1579 if (ctdb_packet_handler(conn->pkt, ctdb_req_complete,
1580 ctdb_traverse_handler, &state, &status)) {
1582 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
1583 status = NT_STATUS_OK;
1584 break;
1588 * There might be more in the queue
1590 continue;
1593 if (!NT_STATUS_IS_OK(status)) {
1594 break;
1597 status = ctdb_packet_fd_read_sync(conn->pkt);
1599 if (NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
1601 * There might be more in the queue
1603 continue;
1606 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
1607 status = NT_STATUS_OK;
1608 break;
1611 if (!NT_STATUS_IS_OK(status)) {
1612 DEBUG(0, ("ctdb_packet_fd_read_sync failed: %s\n", nt_errstr(status)));
1613 cluster_fatal("ctdbd died\n");
1617 done:
1618 TALLOC_FREE(conn);
1619 return status;
1623 This is used to canonicalize a ctdb_sock_addr structure.
1625 static void smbd_ctdb_canonicalize_ip(const struct sockaddr_storage *in,
1626 struct sockaddr_storage *out)
1628 memcpy(out, in, sizeof (*out));
1630 #ifdef HAVE_IPV6
1631 if (in->ss_family == AF_INET6) {
1632 const char prefix[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
1633 const struct sockaddr_in6 *in6 = (struct sockaddr_in6 *)in;
1634 struct sockaddr_in *out4 = (struct sockaddr_in *)out;
1635 if (memcmp(&in6->sin6_addr, prefix, 12) == 0) {
1636 memset(out, 0, sizeof(*out));
1637 #ifdef HAVE_SOCK_SIN_LEN
1638 out4->sin_len = sizeof(*out);
1639 #endif
1640 out4->sin_family = AF_INET;
1641 out4->sin_port = in6->sin6_port;
1642 memcpy(&out4->sin_addr, &in6->sin6_addr.s6_addr32[3], 4);
1645 #endif
1649 * Register us as a server for a particular tcp connection
1652 NTSTATUS ctdbd_register_ips(struct ctdbd_connection *conn,
1653 const struct sockaddr_storage *_server,
1654 const struct sockaddr_storage *_client,
1655 void (*release_ip_handler)(const char *ip_addr,
1656 void *private_data),
1657 void *private_data)
1660 * we still use ctdb_control_tcp for ipv4
1661 * because we want to work against older ctdb
1662 * versions at runtime
1664 struct ctdb_control_tcp p4;
1665 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1666 struct ctdb_control_tcp_addr p;
1667 #endif
1668 TDB_DATA data;
1669 NTSTATUS status;
1670 struct sockaddr_storage client;
1671 struct sockaddr_storage server;
1674 * Only one connection so far
1676 SMB_ASSERT(conn->release_ip_handler == NULL);
1678 smbd_ctdb_canonicalize_ip(_client, &client);
1679 smbd_ctdb_canonicalize_ip(_server, &server);
1681 switch (client.ss_family) {
1682 case AF_INET:
1683 memcpy(&p4.dest, &server, sizeof(p4.dest));
1684 memcpy(&p4.src, &client, sizeof(p4.src));
1685 data.dptr = (uint8_t *)&p4;
1686 data.dsize = sizeof(p4);
1687 break;
1688 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1689 case AF_INET6:
1690 memcpy(&p.dest.ip6, &server, sizeof(p.dest.ip6));
1691 memcpy(&p.src.ip6, &client, sizeof(p.src.ip6));
1692 data.dptr = (uint8_t *)&p;
1693 data.dsize = sizeof(p);
1694 break;
1695 #endif
1696 default:
1697 return NT_STATUS_INTERNAL_ERROR;
1700 conn->release_ip_handler = release_ip_handler;
1701 conn->release_ip_priv = private_data;
1704 * We want to be told about IP releases
1707 status = register_with_ctdbd(conn, CTDB_SRVID_RELEASE_IP);
1708 if (!NT_STATUS_IS_OK(status)) {
1709 return status;
1713 * inform ctdb of our tcp connection, so if IP takeover happens ctdb
1714 * can send an extra ack to trigger a reset for our client, so it
1715 * immediately reconnects
1717 return ctdbd_control(conn, CTDB_CURRENT_NODE,
1718 CTDB_CONTROL_TCP_CLIENT, 0,
1719 CTDB_CTRL_FLAG_NOREPLY, data, NULL, NULL, NULL);
1723 * We want to handle reconfigure events
1725 NTSTATUS ctdbd_register_reconfigure(struct ctdbd_connection *conn)
1727 return register_with_ctdbd(conn, CTDB_SRVID_RECONFIGURE);
1731 call a control on the local node
1733 NTSTATUS ctdbd_control_local(struct ctdbd_connection *conn, uint32 opcode,
1734 uint64_t srvid, uint32_t flags, TDB_DATA data,
1735 TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
1736 int *cstatus)
1738 return ctdbd_control(conn, CTDB_CURRENT_NODE, opcode, srvid, flags, data, mem_ctx, outdata, cstatus);
1741 NTSTATUS ctdb_watch_us(struct ctdbd_connection *conn)
1743 struct ctdb_client_notify_register reg_data;
1744 size_t struct_len;
1745 NTSTATUS status;
1746 int cstatus;
1748 reg_data.srvid = CTDB_SRVID_SAMBA_NOTIFY;
1749 reg_data.len = 1;
1750 reg_data.notify_data[0] = 0;
1752 struct_len = offsetof(struct ctdb_client_notify_register,
1753 notify_data) + reg_data.len;
1755 status = ctdbd_control_local(
1756 conn, CTDB_CONTROL_REGISTER_NOTIFY, conn->rand_srvid, 0,
1757 make_tdb_data((uint8_t *)&reg_data, struct_len),
1758 NULL, NULL, &cstatus);
1759 if (!NT_STATUS_IS_OK(status)) {
1760 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1761 nt_errstr(status)));
1763 return status;
1766 NTSTATUS ctdb_unwatch(struct ctdbd_connection *conn)
1768 struct ctdb_client_notify_deregister dereg_data;
1769 NTSTATUS status;
1770 int cstatus;
1772 dereg_data.srvid = CTDB_SRVID_SAMBA_NOTIFY;
1774 status = ctdbd_control_local(
1775 conn, CTDB_CONTROL_DEREGISTER_NOTIFY, conn->rand_srvid, 0,
1776 make_tdb_data((uint8_t *)&dereg_data, sizeof(dereg_data)),
1777 NULL, NULL, &cstatus);
1778 if (!NT_STATUS_IS_OK(status)) {
1779 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1780 nt_errstr(status)));
1782 return status;
1785 #endif