lib: Introduce iov_buflen
[Samba.git] / source3 / lib / ctdbd_conn.c
blobbde9dae76bb98d3ee11e57b1a21f43f9d17953a7
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"
23 #include "serverid.h"
24 #include "ctdbd_conn.h"
26 #include "ctdb_packet.h"
27 #include "messages.h"
30 * It is not possible to include ctdb.h and tdb_compat.h (included via
31 * some other include above) without warnings. This fixes those
32 * warnings.
35 #ifdef typesafe_cb
36 #undef typesafe_cb
37 #endif
39 #ifdef typesafe_cb_preargs
40 #undef typesafe_cb_preargs
41 #endif
43 #ifdef typesafe_cb_postargs
44 #undef typesafe_cb_postargs
45 #endif
47 /* paths to these include files come from --with-ctdb= in configure */
49 #include "ctdb.h"
50 #include "ctdb_private.h"
52 struct ctdbd_connection {
53 struct messaging_context *msg_ctx;
54 uint32_t reqid;
55 uint32_t our_vnn;
56 uint64_t rand_srvid;
57 struct ctdb_packet_context *pkt;
58 struct tevent_fd *fde;
60 bool (*release_ip_handler)(const char *ip_addr, void *private_data);
61 void *release_ip_priv;
64 static uint32_t ctdbd_next_reqid(struct ctdbd_connection *conn)
66 conn->reqid += 1;
67 if (conn->reqid == 0) {
68 conn->reqid += 1;
70 return conn->reqid;
73 static NTSTATUS ctdbd_control(struct ctdbd_connection *conn,
74 uint32_t vnn, uint32_t opcode,
75 uint64_t srvid, uint32_t flags, TDB_DATA data,
76 TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
77 int *cstatus);
80 * exit on fatal communications errors with the ctdbd daemon
82 static void cluster_fatal(const char *why)
84 DEBUG(0,("cluster fatal event: %s - exiting immediately\n", why));
85 /* we don't use smb_panic() as we don't want to delay to write
86 a core file. We need to release this process id immediately
87 so that someone else can take over without getting sharing
88 violations */
89 _exit(1);
95 static void ctdb_packet_dump(struct ctdb_req_header *hdr)
97 if (DEBUGLEVEL < 11) {
98 return;
100 DEBUGADD(11, ("len=%d, magic=%x, vers=%d, gen=%d, op=%d, reqid=%d\n",
101 (int)hdr->length, (int)hdr->ctdb_magic,
102 (int)hdr->ctdb_version, (int)hdr->generation,
103 (int)hdr->operation, (int)hdr->reqid));
107 * Register a srvid with ctdbd
109 NTSTATUS register_with_ctdbd(struct ctdbd_connection *conn, uint64_t srvid)
112 int cstatus;
113 return ctdbd_control(conn, CTDB_CURRENT_NODE,
114 CTDB_CONTROL_REGISTER_SRVID, srvid, 0,
115 tdb_null, NULL, NULL, &cstatus);
119 * get our vnn from the cluster
121 static NTSTATUS get_cluster_vnn(struct ctdbd_connection *conn, uint32_t *vnn)
123 int32_t cstatus=-1;
124 NTSTATUS status;
125 status = ctdbd_control(conn,
126 CTDB_CURRENT_NODE, CTDB_CONTROL_GET_PNN, 0, 0,
127 tdb_null, NULL, NULL, &cstatus);
128 if (!NT_STATUS_IS_OK(status)) {
129 DEBUG(1, ("ctdbd_control failed: %s\n", nt_errstr(status)));
130 return status;
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 DEBUG(1, ("ctdbd_control failed: %s\n", nt_errstr(status)));
154 return false;
156 if ((cstatus != 0) || (outdata.dptr == NULL)) {
157 DEBUG(2, ("Received invalid ctdb data\n"));
158 return false;
161 m = (struct ctdb_node_map *)outdata.dptr;
163 for (i=0; i<m->num; i++) {
164 if (vnn == m->nodes[i].pnn) {
165 break;
169 if (i == m->num) {
170 DEBUG(2, ("Did not find ourselves (node %d) in nodemap\n",
171 (int)vnn));
172 goto fail;
175 failure_flags = NODE_FLAGS_BANNED | NODE_FLAGS_DISCONNECTED
176 | NODE_FLAGS_PERMANENTLY_DISABLED | NODE_FLAGS_STOPPED;
178 if ((m->nodes[i].flags & failure_flags) != 0) {
179 DEBUG(2, ("Node has status %x, not active\n",
180 (int)m->nodes[i].flags));
181 goto fail;
184 ret = true;
185 fail:
186 TALLOC_FREE(outdata.dptr);
187 return ret;
190 uint32_t ctdbd_vnn(const struct ctdbd_connection *conn)
192 return conn->our_vnn;
195 const char *lp_ctdbd_socket(void)
197 const char *ret;
199 ret = lp__ctdbd_socket();
200 if (ret != NULL && strlen(ret) > 0) {
201 return ret;
204 return CTDB_PATH;
208 * Get us a ctdb connection
211 static NTSTATUS ctdbd_connect(TALLOC_CTX *mem_ctx,
212 struct ctdb_packet_context **presult)
214 struct ctdb_packet_context *result;
215 const char *sockname = lp_ctdbd_socket();
216 struct sockaddr_un addr = { 0, };
217 int fd;
218 socklen_t salen;
220 fd = socket(AF_UNIX, SOCK_STREAM, 0);
221 if (fd == -1) {
222 DEBUG(3, ("Could not create socket: %s\n", strerror(errno)));
223 return map_nt_error_from_unix(errno);
226 addr.sun_family = AF_UNIX;
227 snprintf(addr.sun_path, sizeof(addr.sun_path), "%s", sockname);
229 salen = sizeof(struct sockaddr_un);
230 if (connect(fd, (struct sockaddr *)(void *)&addr, salen) == -1) {
231 DEBUG(1, ("connect(%s) failed: %s\n", sockname,
232 strerror(errno)));
233 close(fd);
234 return map_nt_error_from_unix(errno);
237 if (!(result = ctdb_packet_init(mem_ctx, fd))) {
238 close(fd);
239 return NT_STATUS_NO_MEMORY;
242 *presult = result;
243 return NT_STATUS_OK;
247 * Do we have a complete ctdb packet in the queue?
250 static bool ctdb_req_complete(const uint8_t *buf, size_t available,
251 size_t *length,
252 void *private_data)
254 uint32_t msglen;
256 if (available < sizeof(msglen)) {
257 return False;
260 msglen = *((const uint32_t *)buf);
262 DEBUG(11, ("msglen = %d\n", msglen));
264 if (msglen < sizeof(struct ctdb_req_header)) {
265 DEBUG(0, ("Got invalid msglen: %d, expected at least %d for "
266 "the req_header\n", (int)msglen,
267 (int)sizeof(struct ctdb_req_header)));
268 cluster_fatal("ctdbd protocol error\n");
271 if (available < msglen) {
272 return false;
275 *length = msglen;
276 return true;
280 * State necessary to defer an incoming message while we are waiting for a
281 * ctdb reply.
284 struct deferred_msg_state {
285 struct messaging_context *msg_ctx;
286 struct messaging_rec *rec;
290 * Timed event handler for the deferred message
293 static void deferred_message_dispatch(struct tevent_context *event_ctx,
294 struct tevent_timer *te,
295 struct timeval now,
296 void *private_data)
298 struct deferred_msg_state *state = talloc_get_type_abort(
299 private_data, struct deferred_msg_state);
301 messaging_dispatch_rec(state->msg_ctx, state->rec);
302 TALLOC_FREE(state);
303 TALLOC_FREE(te);
306 struct req_pull_state {
307 TALLOC_CTX *mem_ctx;
308 DATA_BLOB req;
312 * Pull a ctdb request out of the incoming ctdb_packet queue
315 static NTSTATUS ctdb_req_pull(uint8_t *buf, size_t length,
316 void *private_data)
318 struct req_pull_state *state = (struct req_pull_state *)private_data;
320 state->req.data = talloc_move(state->mem_ctx, &buf);
321 state->req.length = length;
322 return NT_STATUS_OK;
326 * Fetch a messaging_rec from an incoming ctdb style message
329 static struct messaging_rec *ctdb_pull_messaging_rec(TALLOC_CTX *mem_ctx,
330 size_t overall_length,
331 struct ctdb_req_message *msg)
333 struct messaging_rec *result;
334 DATA_BLOB blob;
335 enum ndr_err_code ndr_err;
337 if ((overall_length < offsetof(struct ctdb_req_message, data))
338 || (overall_length
339 < offsetof(struct ctdb_req_message, data) + msg->datalen)) {
341 cluster_fatal("got invalid msg length");
344 if (!(result = talloc(mem_ctx, struct messaging_rec))) {
345 DEBUG(0, ("talloc failed\n"));
346 return NULL;
349 blob = data_blob_const(msg->data, msg->datalen);
351 ndr_err = ndr_pull_struct_blob(
352 &blob, result, result,
353 (ndr_pull_flags_fn_t)ndr_pull_messaging_rec);
355 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
356 DEBUG(0, ("ndr_pull_struct_blob failed: %s\n",
357 ndr_errstr(ndr_err)));
358 TALLOC_FREE(result);
359 return NULL;
362 if (DEBUGLEVEL >= 11) {
363 DEBUG(11, ("ctdb_pull_messaging_rec:\n"));
364 NDR_PRINT_DEBUG(messaging_rec, result);
367 return result;
370 static NTSTATUS ctdb_packet_fd_read_sync(struct ctdb_packet_context *ctx)
372 int timeout = lp_ctdb_timeout();
374 if (timeout == 0) {
375 timeout = -1;
377 return ctdb_packet_fd_read_sync_timeout(ctx, timeout);
381 * Read a full ctdbd request. If we have a messaging context, defer incoming
382 * messages that might come in between.
385 static NTSTATUS ctdb_read_req(struct ctdbd_connection *conn, uint32_t reqid,
386 TALLOC_CTX *mem_ctx, void *result)
388 struct ctdb_req_header *hdr;
389 struct req_pull_state state;
390 NTSTATUS status;
392 next_pkt:
393 ZERO_STRUCT(state);
394 state.mem_ctx = mem_ctx;
396 while (!ctdb_packet_handler(conn->pkt, ctdb_req_complete,
397 ctdb_req_pull, &state, &status)) {
399 * Not enough data
401 status = ctdb_packet_fd_read_sync(conn->pkt);
403 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_BUSY)) {
404 /* EAGAIN */
405 continue;
406 } else if (NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
407 /* EAGAIN */
408 continue;
411 if (!NT_STATUS_IS_OK(status)) {
412 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status)));
413 cluster_fatal("ctdbd died\n");
417 if (!NT_STATUS_IS_OK(status)) {
418 DEBUG(0, ("Could not read ctdb_packet: %s\n", nt_errstr(status)));
419 cluster_fatal("ctdbd died\n");
422 hdr = (struct ctdb_req_header *)state.req.data;
424 DEBUG(11, ("Received ctdb packet\n"));
425 ctdb_packet_dump(hdr);
427 if (hdr->operation == CTDB_REQ_MESSAGE) {
428 struct tevent_timer *evt;
429 struct deferred_msg_state *msg_state;
430 struct ctdb_req_message *msg = (struct ctdb_req_message *)hdr;
432 if (conn->msg_ctx == NULL) {
433 DEBUG(1, ("Got a message without having a msg ctx, "
434 "dropping msg %llu\n",
435 (long long unsigned)msg->srvid));
436 goto next_pkt;
439 if ((conn->release_ip_handler != NULL)
440 && (msg->srvid == CTDB_SRVID_RELEASE_IP)) {
441 bool ret;
443 /* must be dispatched immediately */
444 DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
445 ret = conn->release_ip_handler((const char *)msg->data,
446 conn->release_ip_priv);
447 if (ret) {
449 * We need to release the ip,
450 * so return an error to the upper layers.
452 * We make sure we don't trigger this again.
454 conn->release_ip_handler = NULL;
455 conn->release_ip_priv = NULL;
456 return NT_STATUS_ADDRESS_CLOSED;
458 TALLOC_FREE(hdr);
459 goto next_pkt;
462 if ((msg->srvid == CTDB_SRVID_RECONFIGURE)
463 || (msg->srvid == CTDB_SRVID_SAMBA_NOTIFY)) {
465 DEBUG(1, ("ctdb_read_req: Got %s message\n",
466 (msg->srvid == CTDB_SRVID_RECONFIGURE)
467 ? "cluster reconfigure" : "SAMBA_NOTIFY"));
469 messaging_send(conn->msg_ctx,
470 messaging_server_id(conn->msg_ctx),
471 MSG_SMB_BRL_VALIDATE, &data_blob_null);
472 messaging_send(conn->msg_ctx,
473 messaging_server_id(conn->msg_ctx),
474 MSG_DBWRAP_G_LOCK_RETRY,
475 &data_blob_null);
476 TALLOC_FREE(hdr);
477 goto next_pkt;
480 msg_state = talloc(NULL, struct deferred_msg_state);
481 if (msg_state == NULL) {
482 DEBUG(0, ("talloc failed\n"));
483 TALLOC_FREE(hdr);
484 goto next_pkt;
487 if (!(msg_state->rec = ctdb_pull_messaging_rec(
488 msg_state, state.req.length, msg))) {
489 DEBUG(0, ("ctdbd_pull_messaging_rec failed\n"));
490 TALLOC_FREE(msg_state);
491 TALLOC_FREE(hdr);
492 goto next_pkt;
495 TALLOC_FREE(hdr);
497 msg_state->msg_ctx = conn->msg_ctx;
500 * We're waiting for a call reply, but an async message has
501 * crossed. Defer dispatching to the toplevel event loop.
503 evt = tevent_add_timer(conn->msg_ctx->event_ctx,
504 conn->msg_ctx->event_ctx,
505 timeval_zero(),
506 deferred_message_dispatch,
507 msg_state);
508 if (evt == NULL) {
509 DEBUG(0, ("event_add_timed failed\n"));
510 TALLOC_FREE(msg_state);
511 TALLOC_FREE(hdr);
512 goto next_pkt;
515 goto next_pkt;
518 if ((reqid != 0) && (hdr->reqid != reqid)) {
519 /* we got the wrong reply */
520 DEBUG(0,("Discarding mismatched ctdb reqid %u should have "
521 "been %u\n", hdr->reqid, reqid));
522 TALLOC_FREE(hdr);
523 goto next_pkt;
526 *((void **)result) = talloc_move(mem_ctx, &hdr);
528 return NT_STATUS_OK;
532 * Get us a ctdbd connection
535 static NTSTATUS ctdbd_init_connection(TALLOC_CTX *mem_ctx,
536 struct ctdbd_connection **pconn)
538 struct ctdbd_connection *conn;
539 NTSTATUS status;
541 if (!(conn = talloc_zero(mem_ctx, struct ctdbd_connection))) {
542 DEBUG(0, ("talloc failed\n"));
543 return NT_STATUS_NO_MEMORY;
546 status = ctdbd_connect(conn, &conn->pkt);
548 if (!NT_STATUS_IS_OK(status)) {
549 DEBUG(10, ("ctdbd_connect failed: %s\n", nt_errstr(status)));
550 goto fail;
553 status = get_cluster_vnn(conn, &conn->our_vnn);
555 if (!NT_STATUS_IS_OK(status)) {
556 DEBUG(10, ("get_cluster_vnn failed: %s\n", nt_errstr(status)));
557 goto fail;
560 if (!ctdbd_working(conn, conn->our_vnn)) {
561 DEBUG(2, ("Node is not working, can not connect\n"));
562 status = NT_STATUS_INTERNAL_DB_ERROR;
563 goto fail;
566 generate_random_buffer((unsigned char *)&conn->rand_srvid,
567 sizeof(conn->rand_srvid));
569 status = register_with_ctdbd(conn, conn->rand_srvid);
571 if (!NT_STATUS_IS_OK(status)) {
572 DEBUG(5, ("Could not register random srvid: %s\n",
573 nt_errstr(status)));
574 goto fail;
577 *pconn = conn;
578 return NT_STATUS_OK;
580 fail:
581 TALLOC_FREE(conn);
582 return status;
586 * Get us a ctdbd connection and register us as a process
589 NTSTATUS ctdbd_messaging_connection(TALLOC_CTX *mem_ctx,
590 struct ctdbd_connection **pconn)
592 struct ctdbd_connection *conn;
593 NTSTATUS status;
595 status = ctdbd_init_connection(mem_ctx, &conn);
597 if (!NT_STATUS_IS_OK(status)) {
598 return status;
601 status = register_with_ctdbd(conn, (uint64_t)getpid());
602 if (!NT_STATUS_IS_OK(status)) {
603 goto fail;
606 status = register_with_ctdbd(conn, MSG_SRVID_SAMBA);
607 if (!NT_STATUS_IS_OK(status)) {
608 goto fail;
611 status = register_with_ctdbd(conn, CTDB_SRVID_SAMBA_NOTIFY);
612 if (!NT_STATUS_IS_OK(status)) {
613 goto fail;
616 *pconn = conn;
617 return NT_STATUS_OK;
619 fail:
620 TALLOC_FREE(conn);
621 return status;
624 struct messaging_context *ctdb_conn_msg_ctx(struct ctdbd_connection *conn)
626 return conn->msg_ctx;
629 int ctdbd_conn_get_fd(struct ctdbd_connection *conn)
631 return ctdb_packet_get_fd(conn->pkt);
635 * Packet handler to receive and handle a ctdb message
637 static NTSTATUS ctdb_handle_message(uint8_t *buf, size_t length,
638 void *private_data)
640 struct ctdbd_connection *conn = talloc_get_type_abort(
641 private_data, struct ctdbd_connection);
642 struct ctdb_req_message *msg;
643 struct messaging_rec *msg_rec;
645 msg = (struct ctdb_req_message *)buf;
647 if (msg->hdr.operation != CTDB_REQ_MESSAGE) {
648 DEBUG(0, ("Received async msg of type %u, discarding\n",
649 msg->hdr.operation));
650 TALLOC_FREE(buf);
651 return NT_STATUS_INVALID_PARAMETER;
654 if ((conn->release_ip_handler != NULL)
655 && (msg->srvid == CTDB_SRVID_RELEASE_IP)) {
656 bool ret;
658 /* must be dispatched immediately */
659 DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
660 ret = conn->release_ip_handler((const char *)msg->data,
661 conn->release_ip_priv);
662 if (ret) {
664 * We need to release the ip.
666 * We make sure we don't trigger this again.
668 conn->release_ip_handler = NULL;
669 conn->release_ip_priv = NULL;
671 TALLOC_FREE(buf);
672 return NT_STATUS_OK;
675 SMB_ASSERT(conn->msg_ctx != NULL);
677 if ((msg->srvid == CTDB_SRVID_RECONFIGURE)
678 || (msg->srvid == CTDB_SRVID_SAMBA_NOTIFY)){
679 DEBUG(0,("Got cluster reconfigure message\n"));
681 * when the cluster is reconfigured or someone of the
682 * family has passed away (SAMBA_NOTIFY), we need to
683 * clean the brl database
685 messaging_send(conn->msg_ctx,
686 messaging_server_id(conn->msg_ctx),
687 MSG_SMB_BRL_VALIDATE, &data_blob_null);
689 messaging_send(conn->msg_ctx,
690 messaging_server_id(conn->msg_ctx),
691 MSG_DBWRAP_G_LOCK_RETRY,
692 &data_blob_null);
694 TALLOC_FREE(buf);
695 return NT_STATUS_OK;
698 /* only messages to our pid or the broadcast are valid here */
699 if (msg->srvid != getpid() && msg->srvid != MSG_SRVID_SAMBA) {
700 DEBUG(0,("Got unexpected message with srvid=%llu\n",
701 (unsigned long long)msg->srvid));
702 TALLOC_FREE(buf);
703 return NT_STATUS_OK;
706 if (!(msg_rec = ctdb_pull_messaging_rec(NULL, length, msg))) {
707 DEBUG(10, ("ctdb_pull_messaging_rec failed\n"));
708 TALLOC_FREE(buf);
709 return NT_STATUS_NO_MEMORY;
712 messaging_dispatch_rec(conn->msg_ctx, msg_rec);
714 TALLOC_FREE(msg_rec);
715 TALLOC_FREE(buf);
716 return NT_STATUS_OK;
720 * The ctdbd socket is readable asynchronuously
723 static void ctdbd_socket_handler(struct tevent_context *event_ctx,
724 struct tevent_fd *event,
725 uint16 flags,
726 void *private_data)
728 struct ctdbd_connection *conn = talloc_get_type_abort(
729 private_data, struct ctdbd_connection);
731 NTSTATUS status;
733 status = ctdb_packet_fd_read(conn->pkt);
735 if (!NT_STATUS_IS_OK(status)) {
736 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status)));
737 cluster_fatal("ctdbd died\n");
740 while (ctdb_packet_handler(conn->pkt, ctdb_req_complete,
741 ctdb_handle_message, conn, &status)) {
742 if (!NT_STATUS_IS_OK(status)) {
743 DEBUG(10, ("could not handle incoming message: %s\n",
744 nt_errstr(status)));
750 * Prepare a ctdbd connection to receive messages
753 NTSTATUS ctdbd_register_msg_ctx(struct ctdbd_connection *conn,
754 struct messaging_context *msg_ctx)
756 SMB_ASSERT(conn->msg_ctx == NULL);
757 SMB_ASSERT(conn->fde == NULL);
759 if (!(conn->fde = tevent_add_fd(msg_ctx->event_ctx, conn,
760 ctdb_packet_get_fd(conn->pkt),
761 TEVENT_FD_READ,
762 ctdbd_socket_handler,
763 conn))) {
764 DEBUG(0, ("event_add_fd failed\n"));
765 return NT_STATUS_NO_MEMORY;
768 conn->msg_ctx = msg_ctx;
770 return NT_STATUS_OK;
774 * Send a messaging message across a ctdbd
777 NTSTATUS ctdbd_messaging_send(struct ctdbd_connection *conn,
778 uint32_t dst_vnn, uint64_t dst_srvid,
779 struct messaging_rec *msg)
781 DATA_BLOB blob;
782 NTSTATUS status;
783 enum ndr_err_code ndr_err;
785 ndr_err = ndr_push_struct_blob(
786 &blob, talloc_tos(), msg,
787 (ndr_push_flags_fn_t)ndr_push_messaging_rec);
789 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
790 DEBUG(0, ("ndr_push_struct_blob failed: %s\n",
791 ndr_errstr(ndr_err)));
792 return ndr_map_error2ntstatus(ndr_err);
795 status = ctdbd_messaging_send_blob(conn, dst_vnn, dst_srvid,
796 blob.data, blob.length);
797 TALLOC_FREE(blob.data);
798 return status;
801 NTSTATUS ctdbd_messaging_send_blob(struct ctdbd_connection *conn,
802 uint32_t dst_vnn, uint64_t dst_srvid,
803 const uint8_t *buf, size_t buflen)
805 struct ctdb_req_message r;
806 NTSTATUS status;
808 r.hdr.length = offsetof(struct ctdb_req_message, data) + buflen;
809 r.hdr.ctdb_magic = CTDB_MAGIC;
810 r.hdr.ctdb_version = CTDB_VERSION;
811 r.hdr.generation = 1;
812 r.hdr.operation = CTDB_REQ_MESSAGE;
813 r.hdr.destnode = dst_vnn;
814 r.hdr.srcnode = conn->our_vnn;
815 r.hdr.reqid = 0;
816 r.srvid = dst_srvid;
817 r.datalen = buflen;
819 DEBUG(10, ("ctdbd_messaging_send: Sending ctdb packet\n"));
820 ctdb_packet_dump(&r.hdr);
822 status = ctdb_packet_send(
823 conn->pkt, 2,
824 data_blob_const(&r, offsetof(struct ctdb_req_message, data)),
825 data_blob_const(buf, buflen));
827 if (!NT_STATUS_IS_OK(status)) {
828 DEBUG(0, ("ctdb_packet_send failed: %s\n", nt_errstr(status)));
829 return status;
832 status = ctdb_packet_flush(conn->pkt);
833 if (!NT_STATUS_IS_OK(status)) {
834 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
835 cluster_fatal("cluster dispatch daemon msg write error\n");
837 return NT_STATUS_OK;
841 * send/recv a generic ctdb control message
843 static NTSTATUS ctdbd_control(struct ctdbd_connection *conn,
844 uint32_t vnn, uint32_t opcode,
845 uint64_t srvid, uint32_t flags,
846 TDB_DATA data,
847 TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
848 int *cstatus)
850 struct ctdb_req_control req;
851 struct ctdb_reply_control *reply = NULL;
852 struct ctdbd_connection *new_conn = NULL;
853 NTSTATUS status;
855 if (conn == NULL) {
856 status = ctdbd_init_connection(NULL, &new_conn);
858 if (!NT_STATUS_IS_OK(status)) {
859 DEBUG(10, ("Could not init temp connection: %s\n",
860 nt_errstr(status)));
861 goto fail;
864 conn = new_conn;
867 ZERO_STRUCT(req);
868 req.hdr.length = offsetof(struct ctdb_req_control, data) + data.dsize;
869 req.hdr.ctdb_magic = CTDB_MAGIC;
870 req.hdr.ctdb_version = CTDB_VERSION;
871 req.hdr.operation = CTDB_REQ_CONTROL;
872 req.hdr.reqid = ctdbd_next_reqid(conn);
873 req.hdr.destnode = vnn;
874 req.opcode = opcode;
875 req.srvid = srvid;
876 req.datalen = data.dsize;
877 req.flags = flags;
879 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
880 ctdb_packet_dump(&req.hdr);
882 status = ctdb_packet_send(
883 conn->pkt, 2,
884 data_blob_const(&req, offsetof(struct ctdb_req_control, data)),
885 data_blob_const(data.dptr, data.dsize));
887 if (!NT_STATUS_IS_OK(status)) {
888 DEBUG(3, ("ctdb_packet_send failed: %s\n", nt_errstr(status)));
889 goto fail;
892 status = ctdb_packet_flush(conn->pkt);
894 if (!NT_STATUS_IS_OK(status)) {
895 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
896 cluster_fatal("cluster dispatch daemon control write error\n");
899 if (flags & CTDB_CTRL_FLAG_NOREPLY) {
900 TALLOC_FREE(new_conn);
901 if (cstatus) {
902 *cstatus = 0;
904 return NT_STATUS_OK;
907 status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
909 if (!NT_STATUS_IS_OK(status)) {
910 DEBUG(10, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
911 goto fail;
914 if (reply->hdr.operation != CTDB_REPLY_CONTROL) {
915 DEBUG(0, ("received invalid reply\n"));
916 goto fail;
919 if (outdata) {
920 if (!(outdata->dptr = (uint8 *)talloc_memdup(
921 mem_ctx, reply->data, reply->datalen))) {
922 TALLOC_FREE(reply);
923 return NT_STATUS_NO_MEMORY;
925 outdata->dsize = reply->datalen;
927 if (cstatus) {
928 (*cstatus) = reply->status;
931 status = NT_STATUS_OK;
933 fail:
934 TALLOC_FREE(new_conn);
935 TALLOC_FREE(reply);
936 return status;
940 * see if a remote process exists
942 bool ctdbd_process_exists(struct ctdbd_connection *conn, uint32_t vnn, pid_t pid)
944 struct server_id id;
945 bool result;
947 id.pid = pid;
948 id.vnn = vnn;
950 if (!ctdb_processes_exist(conn, &id, 1, &result)) {
951 DEBUG(10, ("ctdb_processes_exist failed\n"));
952 return false;
954 return result;
957 bool ctdb_processes_exist(struct ctdbd_connection *conn,
958 const struct server_id *pids, int num_pids,
959 bool *results)
961 TALLOC_CTX *frame = talloc_stackframe();
962 int i, num_received;
963 NTSTATUS status;
964 uint32_t *reqids;
965 bool result = false;
967 reqids = talloc_array(talloc_tos(), uint32_t, num_pids);
968 if (reqids == NULL) {
969 goto fail;
972 for (i=0; i<num_pids; i++) {
973 struct ctdb_req_control req;
974 pid_t pid;
976 results[i] = false;
977 reqids[i] = ctdbd_next_reqid(conn);
979 ZERO_STRUCT(req);
982 * pids[i].pid is uint64_t, scale down to pid_t which
983 * is the wire protocol towards ctdb.
985 pid = pids[i].pid;
987 DEBUG(10, ("Requesting PID %d/%d, reqid=%d\n",
988 (int)pids[i].vnn, (int)pid,
989 (int)reqids[i]));
991 req.hdr.length = offsetof(struct ctdb_req_control, data);
992 req.hdr.length += sizeof(pid);
993 req.hdr.ctdb_magic = CTDB_MAGIC;
994 req.hdr.ctdb_version = CTDB_VERSION;
995 req.hdr.operation = CTDB_REQ_CONTROL;
996 req.hdr.reqid = reqids[i];
997 req.hdr.destnode = pids[i].vnn;
998 req.opcode = CTDB_CONTROL_PROCESS_EXISTS;
999 req.srvid = 0;
1000 req.datalen = sizeof(pid);
1001 req.flags = 0;
1003 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
1004 ctdb_packet_dump(&req.hdr);
1006 status = ctdb_packet_send(
1007 conn->pkt, 2,
1008 data_blob_const(
1009 &req, offsetof(struct ctdb_req_control, data)),
1010 data_blob_const(&pid, sizeof(pid)));
1011 if (!NT_STATUS_IS_OK(status)) {
1012 DEBUG(10, ("ctdb_packet_send failed: %s\n",
1013 nt_errstr(status)));
1014 goto fail;
1018 status = ctdb_packet_flush(conn->pkt);
1019 if (!NT_STATUS_IS_OK(status)) {
1020 DEBUG(10, ("ctdb_packet_flush failed: %s\n",
1021 nt_errstr(status)));
1022 goto fail;
1025 num_received = 0;
1027 while (num_received < num_pids) {
1028 struct ctdb_reply_control *reply = NULL;
1029 uint32_t reqid;
1031 status = ctdb_read_req(conn, 0, talloc_tos(), (void *)&reply);
1032 if (!NT_STATUS_IS_OK(status)) {
1033 DEBUG(10, ("ctdb_read_req failed: %s\n",
1034 nt_errstr(status)));
1035 goto fail;
1038 if (reply->hdr.operation != CTDB_REPLY_CONTROL) {
1039 DEBUG(10, ("Received invalid reply\n"));
1040 goto fail;
1043 reqid = reply->hdr.reqid;
1045 DEBUG(10, ("Received reqid %d\n", (int)reqid));
1047 for (i=0; i<num_pids; i++) {
1048 if (reqid == reqids[i]) {
1049 break;
1052 if (i == num_pids) {
1053 DEBUG(10, ("Received unknown record number %u\n",
1054 (unsigned)reqid));
1055 goto fail;
1057 results[i] = ((reply->status) == 0);
1058 TALLOC_FREE(reply);
1059 num_received += 1;
1062 result = true;
1063 fail:
1064 TALLOC_FREE(frame);
1065 return result;
1068 struct ctdb_vnn_list {
1069 uint32_t vnn;
1070 uint32_t reqid;
1071 unsigned num_srvids;
1072 unsigned num_filled;
1073 uint64_t *srvids;
1074 unsigned *pid_indexes;
1078 * Get a list of all vnns mentioned in a list of
1079 * server_ids. vnn_indexes tells where in the vnns array we have to
1080 * place the pids.
1082 static bool ctdb_collect_vnns(TALLOC_CTX *mem_ctx,
1083 const struct server_id *pids, unsigned num_pids,
1084 struct ctdb_vnn_list **pvnns,
1085 unsigned *pnum_vnns)
1087 struct ctdb_vnn_list *vnns = NULL;
1088 unsigned *vnn_indexes = NULL;
1089 unsigned i, num_vnns = 0;
1091 vnn_indexes = talloc_array(mem_ctx, unsigned, num_pids);
1092 if (vnn_indexes == NULL) {
1093 DEBUG(1, ("talloc_array failed\n"));
1094 goto fail;
1097 for (i=0; i<num_pids; i++) {
1098 unsigned j;
1099 uint32_t vnn = pids[i].vnn;
1101 for (j=0; j<num_vnns; j++) {
1102 if (vnn == vnns[j].vnn) {
1103 break;
1106 vnn_indexes[i] = j;
1108 if (j < num_vnns) {
1110 * Already in the array
1112 vnns[j].num_srvids += 1;
1113 continue;
1115 vnns = talloc_realloc(mem_ctx, vnns, struct ctdb_vnn_list,
1116 num_vnns+1);
1117 if (vnns == NULL) {
1118 DEBUG(1, ("talloc_realloc failed\n"));
1119 goto fail;
1121 vnns[num_vnns].vnn = vnn;
1122 vnns[num_vnns].num_srvids = 1;
1123 vnns[num_vnns].num_filled = 0;
1124 num_vnns += 1;
1126 for (i=0; i<num_vnns; i++) {
1127 struct ctdb_vnn_list *vnn = &vnns[i];
1129 vnn->srvids = talloc_array(vnns, uint64_t, vnn->num_srvids);
1130 if (vnn->srvids == NULL) {
1131 DEBUG(1, ("talloc_array failed\n"));
1132 goto fail;
1134 vnn->pid_indexes = talloc_array(vnns, unsigned,
1135 vnn->num_srvids);
1136 if (vnn->pid_indexes == NULL) {
1137 DEBUG(1, ("talloc_array failed\n"));
1138 goto fail;
1141 for (i=0; i<num_pids; i++) {
1142 struct ctdb_vnn_list *vnn = &vnns[vnn_indexes[i]];
1143 vnn->srvids[vnn->num_filled] = pids[i].unique_id;
1144 vnn->pid_indexes[vnn->num_filled] = i;
1145 vnn->num_filled += 1;
1148 TALLOC_FREE(vnn_indexes);
1149 *pvnns = vnns;
1150 *pnum_vnns = num_vnns;
1151 return true;
1152 fail:
1153 TALLOC_FREE(vnns);
1154 TALLOC_FREE(vnn_indexes);
1155 return false;
1158 bool ctdb_serverids_exist_supported(struct ctdbd_connection *conn)
1160 #ifndef HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL
1161 return false;
1162 #else /* HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL */
1163 return true;
1164 #endif /* HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL */
1167 bool ctdb_serverids_exist(struct ctdbd_connection *conn,
1168 const struct server_id *pids, unsigned num_pids,
1169 bool *results)
1171 #ifndef HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL
1172 return false;
1173 #else /* HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL */
1174 unsigned i, num_received;
1175 NTSTATUS status;
1176 struct ctdb_vnn_list *vnns = NULL;
1177 unsigned num_vnns;
1178 bool result = false;
1180 if (!ctdb_collect_vnns(talloc_tos(), pids, num_pids,
1181 &vnns, &num_vnns)) {
1182 DEBUG(1, ("ctdb_collect_vnns failed\n"));
1183 goto fail;
1186 for (i=0; i<num_vnns; i++) {
1187 struct ctdb_vnn_list *vnn = &vnns[i];
1188 struct ctdb_req_control req;
1190 vnn->reqid = ctdbd_next_reqid(conn);
1192 ZERO_STRUCT(req);
1194 DEBUG(10, ("Requesting VNN %d, reqid=%d, num_srvids=%u\n",
1195 (int)vnn->vnn, (int)vnn->reqid, vnn->num_srvids));
1197 req.hdr.length = offsetof(struct ctdb_req_control, data);
1198 req.hdr.ctdb_magic = CTDB_MAGIC;
1199 req.hdr.ctdb_version = CTDB_VERSION;
1200 req.hdr.operation = CTDB_REQ_CONTROL;
1201 req.hdr.reqid = vnn->reqid;
1202 req.hdr.destnode = vnn->vnn;
1203 req.opcode = CTDB_CONTROL_CHECK_SRVIDS;
1204 req.srvid = 0;
1205 req.datalen = sizeof(uint64_t) * vnn->num_srvids;
1206 req.hdr.length += req.datalen;
1207 req.flags = 0;
1209 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
1210 ctdb_packet_dump(&req.hdr);
1212 status = ctdb_packet_send(
1213 conn->pkt, 2,
1214 data_blob_const(
1215 &req, offsetof(struct ctdb_req_control,
1216 data)),
1217 data_blob_const(vnn->srvids, req.datalen));
1218 if (!NT_STATUS_IS_OK(status)) {
1219 DEBUG(1, ("ctdb_packet_send failed: %s\n",
1220 nt_errstr(status)));
1221 goto fail;
1225 status = ctdb_packet_flush(conn->pkt);
1226 if (!NT_STATUS_IS_OK(status)) {
1227 DEBUG(1, ("ctdb_packet_flush failed: %s\n",
1228 nt_errstr(status)));
1229 goto fail;
1232 num_received = 0;
1234 while (num_received < num_vnns) {
1235 struct ctdb_reply_control *reply = NULL;
1236 struct ctdb_vnn_list *vnn;
1237 uint32_t reqid;
1238 uint8_t *reply_data;
1240 status = ctdb_read_req(conn, 0, talloc_tos(), (void *)&reply);
1241 if (!NT_STATUS_IS_OK(status)) {
1242 DEBUG(1, ("ctdb_read_req failed: %s\n",
1243 nt_errstr(status)));
1244 goto fail;
1247 if (reply->hdr.operation != CTDB_REPLY_CONTROL) {
1248 DEBUG(1, ("Received invalid reply %u\n",
1249 (unsigned)reply->hdr.operation));
1250 goto fail;
1253 reqid = reply->hdr.reqid;
1255 DEBUG(10, ("Received reqid %d\n", (int)reqid));
1257 for (i=0; i<num_vnns; i++) {
1258 if (reqid == vnns[i].reqid) {
1259 break;
1262 if (i == num_vnns) {
1263 DEBUG(1, ("Received unknown reqid number %u\n",
1264 (unsigned)reqid));
1265 goto fail;
1268 DEBUG(10, ("Found index %u\n", i));
1270 vnn = &vnns[i];
1272 DEBUG(10, ("Received vnn %u, vnn->num_srvids %u, datalen %u\n",
1273 (unsigned)vnn->vnn, vnn->num_srvids,
1274 (unsigned)reply->datalen));
1276 if (reply->datalen >= ((vnn->num_srvids+7)/8)) {
1278 * Got a real reply
1280 reply_data = reply->data;
1281 } else {
1283 * Got an error reply
1285 DEBUG(5, ("Received short reply len %d, status %u, "
1286 "errorlen %u\n",
1287 (unsigned)reply->datalen,
1288 (unsigned)reply->status,
1289 (unsigned)reply->errorlen));
1290 dump_data(5, reply->data, reply->errorlen);
1293 * This will trigger everything set to false
1295 reply_data = NULL;
1298 for (i=0; i<vnn->num_srvids; i++) {
1299 int idx = vnn->pid_indexes[i];
1301 if (pids[i].unique_id ==
1302 SERVERID_UNIQUE_ID_NOT_TO_VERIFY) {
1303 results[idx] = true;
1304 continue;
1306 results[idx] =
1307 (reply_data != NULL) &&
1308 ((reply_data[i/8] & (1<<(i%8))) != 0);
1311 TALLOC_FREE(reply);
1312 num_received += 1;
1315 result = true;
1316 fail:
1317 TALLOC_FREE(vnns);
1318 return result;
1319 #endif /* HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL */
1323 * Get a db path
1325 char *ctdbd_dbpath(struct ctdbd_connection *conn,
1326 TALLOC_CTX *mem_ctx, uint32_t db_id)
1328 NTSTATUS status;
1329 TDB_DATA data;
1330 int32_t cstatus;
1332 data.dptr = (uint8_t*)&db_id;
1333 data.dsize = sizeof(db_id);
1335 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1336 CTDB_CONTROL_GETDBPATH, 0, 0, data,
1337 mem_ctx, &data, &cstatus);
1338 if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
1339 DEBUG(0,(__location__ " ctdb_control for getdbpath failed\n"));
1340 return NULL;
1343 return (char *)data.dptr;
1347 * attach to a ctdb database
1349 NTSTATUS ctdbd_db_attach(struct ctdbd_connection *conn,
1350 const char *name, uint32_t *db_id, int tdb_flags)
1352 NTSTATUS status;
1353 TDB_DATA data;
1354 int32_t cstatus;
1355 bool persistent = (tdb_flags & TDB_CLEAR_IF_FIRST) == 0;
1357 data = string_term_tdb_data(name);
1359 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1360 persistent
1361 ? CTDB_CONTROL_DB_ATTACH_PERSISTENT
1362 : CTDB_CONTROL_DB_ATTACH,
1363 tdb_flags, 0, data, NULL, &data, &cstatus);
1364 if (!NT_STATUS_IS_OK(status)) {
1365 DEBUG(0, (__location__ " ctdb_control for db_attach "
1366 "failed: %s\n", nt_errstr(status)));
1367 return status;
1370 if (cstatus != 0 || data.dsize != sizeof(uint32_t)) {
1371 DEBUG(0,(__location__ " ctdb_control for db_attach failed\n"));
1372 return NT_STATUS_INTERNAL_ERROR;
1375 *db_id = *(uint32_t *)data.dptr;
1376 talloc_free(data.dptr);
1378 if (!(tdb_flags & TDB_SEQNUM)) {
1379 return NT_STATUS_OK;
1382 data.dptr = (uint8_t *)db_id;
1383 data.dsize = sizeof(*db_id);
1385 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1386 CTDB_CONTROL_ENABLE_SEQNUM, 0, 0, data,
1387 NULL, NULL, &cstatus);
1388 if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
1389 DEBUG(0,(__location__ " ctdb_control for enable seqnum "
1390 "failed\n"));
1391 return NT_STATUS_IS_OK(status) ? NT_STATUS_INTERNAL_ERROR :
1392 status;
1395 return NT_STATUS_OK;
1399 * force the migration of a record to this node
1401 NTSTATUS ctdbd_migrate(struct ctdbd_connection *conn, uint32_t db_id,
1402 TDB_DATA key)
1404 struct ctdb_req_call req;
1405 struct ctdb_reply_call *reply;
1406 NTSTATUS status;
1408 ZERO_STRUCT(req);
1410 req.hdr.length = offsetof(struct ctdb_req_call, data) + key.dsize;
1411 req.hdr.ctdb_magic = CTDB_MAGIC;
1412 req.hdr.ctdb_version = CTDB_VERSION;
1413 req.hdr.operation = CTDB_REQ_CALL;
1414 req.hdr.reqid = ctdbd_next_reqid(conn);
1415 req.flags = CTDB_IMMEDIATE_MIGRATION;
1416 req.callid = CTDB_NULL_FUNC;
1417 req.db_id = db_id;
1418 req.keylen = key.dsize;
1420 DEBUG(10, ("ctdbd_migrate: Sending ctdb packet\n"));
1421 ctdb_packet_dump(&req.hdr);
1423 status = ctdb_packet_send(
1424 conn->pkt, 2,
1425 data_blob_const(&req, offsetof(struct ctdb_req_call, data)),
1426 data_blob_const(key.dptr, key.dsize));
1428 if (!NT_STATUS_IS_OK(status)) {
1429 DEBUG(3, ("ctdb_packet_send failed: %s\n", nt_errstr(status)));
1430 return status;
1433 status = ctdb_packet_flush(conn->pkt);
1435 if (!NT_STATUS_IS_OK(status)) {
1436 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
1437 cluster_fatal("cluster dispatch daemon control write error\n");
1440 status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
1442 if (!NT_STATUS_IS_OK(status)) {
1443 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
1444 goto fail;
1447 if (reply->hdr.operation != CTDB_REPLY_CALL) {
1448 DEBUG(0, ("received invalid reply\n"));
1449 status = NT_STATUS_INTERNAL_ERROR;
1450 goto fail;
1453 status = NT_STATUS_OK;
1454 fail:
1456 TALLOC_FREE(reply);
1457 return status;
1461 * Fetch a record and parse it
1463 NTSTATUS ctdbd_parse(struct ctdbd_connection *conn, uint32_t db_id,
1464 TDB_DATA key, bool local_copy,
1465 void (*parser)(TDB_DATA key, TDB_DATA data,
1466 void *private_data),
1467 void *private_data)
1469 struct ctdb_req_call req;
1470 struct ctdb_reply_call *reply;
1471 NTSTATUS status;
1472 uint32_t flags;
1474 #ifdef HAVE_CTDB_WANT_READONLY_DECL
1475 flags = local_copy ? CTDB_WANT_READONLY : 0;
1476 #else
1477 flags = 0;
1478 #endif
1480 ZERO_STRUCT(req);
1482 req.hdr.length = offsetof(struct ctdb_req_call, data) + key.dsize;
1483 req.hdr.ctdb_magic = CTDB_MAGIC;
1484 req.hdr.ctdb_version = CTDB_VERSION;
1485 req.hdr.operation = CTDB_REQ_CALL;
1486 req.hdr.reqid = ctdbd_next_reqid(conn);
1487 req.flags = flags;
1488 req.callid = CTDB_FETCH_FUNC;
1489 req.db_id = db_id;
1490 req.keylen = key.dsize;
1492 status = ctdb_packet_send(
1493 conn->pkt, 2,
1494 data_blob_const(&req, offsetof(struct ctdb_req_call, data)),
1495 data_blob_const(key.dptr, key.dsize));
1497 if (!NT_STATUS_IS_OK(status)) {
1498 DEBUG(3, ("ctdb_packet_send failed: %s\n", nt_errstr(status)));
1499 return status;
1502 status = ctdb_packet_flush(conn->pkt);
1504 if (!NT_STATUS_IS_OK(status)) {
1505 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status)));
1506 cluster_fatal("cluster dispatch daemon control write error\n");
1509 status = ctdb_read_req(conn, req.hdr.reqid, NULL, (void *)&reply);
1511 if (!NT_STATUS_IS_OK(status)) {
1512 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status)));
1513 goto fail;
1516 if (reply->hdr.operation != CTDB_REPLY_CALL) {
1517 DEBUG(0, ("received invalid reply\n"));
1518 status = NT_STATUS_INTERNAL_ERROR;
1519 goto fail;
1522 if (reply->datalen == 0) {
1524 * Treat an empty record as non-existing
1526 status = NT_STATUS_NOT_FOUND;
1527 goto fail;
1530 parser(key, make_tdb_data(&reply->data[0], reply->datalen),
1531 private_data);
1533 status = NT_STATUS_OK;
1534 fail:
1535 TALLOC_FREE(reply);
1536 return status;
1539 struct ctdbd_traverse_state {
1540 void (*fn)(TDB_DATA key, TDB_DATA data, void *private_data);
1541 void *private_data;
1545 * Handle a traverse record coming in on the ctdbd connection
1548 static NTSTATUS ctdb_traverse_handler(uint8_t *buf, size_t length,
1549 void *private_data)
1551 struct ctdbd_traverse_state *state =
1552 (struct ctdbd_traverse_state *)private_data;
1554 struct ctdb_req_message *m;
1555 struct ctdb_rec_data *d;
1556 TDB_DATA key, data;
1558 m = (struct ctdb_req_message *)buf;
1560 if (length < sizeof(*m) || m->hdr.length != length) {
1561 DEBUG(0, ("Got invalid message of length %d\n", (int)length));
1562 TALLOC_FREE(buf);
1563 return NT_STATUS_UNEXPECTED_IO_ERROR;
1566 d = (struct ctdb_rec_data *)&m->data[0];
1567 if (m->datalen < sizeof(uint32_t) || m->datalen != d->length) {
1568 DEBUG(0, ("Got invalid traverse data of length %d\n",
1569 (int)m->datalen));
1570 TALLOC_FREE(buf);
1571 return NT_STATUS_UNEXPECTED_IO_ERROR;
1574 key.dsize = d->keylen;
1575 key.dptr = &d->data[0];
1576 data.dsize = d->datalen;
1577 data.dptr = &d->data[d->keylen];
1579 if (key.dsize == 0 && data.dsize == 0) {
1580 /* end of traverse */
1581 return NT_STATUS_END_OF_FILE;
1584 if (data.dsize < sizeof(struct ctdb_ltdb_header)) {
1585 DEBUG(0, ("Got invalid ltdb header length %d\n",
1586 (int)data.dsize));
1587 TALLOC_FREE(buf);
1588 return NT_STATUS_UNEXPECTED_IO_ERROR;
1590 data.dsize -= sizeof(struct ctdb_ltdb_header);
1591 data.dptr += sizeof(struct ctdb_ltdb_header);
1593 if (state->fn) {
1594 state->fn(key, data, state->private_data);
1597 TALLOC_FREE(buf);
1598 return NT_STATUS_OK;
1602 Traverse a ctdb database. This uses a kind-of hackish way to open a second
1603 connection to ctdbd to avoid the hairy recursive and async problems with
1604 everything in-line.
1607 NTSTATUS ctdbd_traverse(uint32_t db_id,
1608 void (*fn)(TDB_DATA key, TDB_DATA data,
1609 void *private_data),
1610 void *private_data)
1612 struct ctdbd_connection *conn;
1613 NTSTATUS status;
1615 TDB_DATA data;
1616 struct ctdb_traverse_start t;
1617 int cstatus;
1618 struct ctdbd_traverse_state state;
1620 become_root();
1621 status = ctdbd_init_connection(NULL, &conn);
1622 unbecome_root();
1623 if (!NT_STATUS_IS_OK(status)) {
1624 DEBUG(0, ("ctdbd_init_connection failed: %s\n",
1625 nt_errstr(status)));
1626 return status;
1629 t.db_id = db_id;
1630 t.srvid = conn->rand_srvid;
1631 t.reqid = ctdbd_next_reqid(conn);
1633 data.dptr = (uint8_t *)&t;
1634 data.dsize = sizeof(t);
1636 status = ctdbd_control(conn, CTDB_CURRENT_NODE,
1637 CTDB_CONTROL_TRAVERSE_START, conn->rand_srvid, 0,
1638 data, NULL, NULL, &cstatus);
1640 if (!NT_STATUS_IS_OK(status) || (cstatus != 0)) {
1642 DEBUG(0,("ctdbd_control failed: %s, %d\n", nt_errstr(status),
1643 cstatus));
1645 if (NT_STATUS_IS_OK(status)) {
1647 * We need a mapping here
1649 status = NT_STATUS_UNSUCCESSFUL;
1651 goto done;
1654 state.fn = fn;
1655 state.private_data = private_data;
1657 while (True) {
1659 status = NT_STATUS_OK;
1661 if (ctdb_packet_handler(conn->pkt, ctdb_req_complete,
1662 ctdb_traverse_handler, &state, &status)) {
1664 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
1665 status = NT_STATUS_OK;
1666 break;
1670 * There might be more in the queue
1672 continue;
1675 if (!NT_STATUS_IS_OK(status)) {
1676 break;
1679 status = ctdb_packet_fd_read_sync(conn->pkt);
1681 if (NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
1683 * There might be more in the queue
1685 continue;
1688 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
1689 status = NT_STATUS_OK;
1690 break;
1693 if (!NT_STATUS_IS_OK(status)) {
1694 DEBUG(0, ("ctdb_packet_fd_read_sync failed: %s\n", nt_errstr(status)));
1695 cluster_fatal("ctdbd died\n");
1699 done:
1700 TALLOC_FREE(conn);
1701 return status;
1705 This is used to canonicalize a ctdb_sock_addr structure.
1707 static void smbd_ctdb_canonicalize_ip(const struct sockaddr_storage *in,
1708 struct sockaddr_storage *out)
1710 memcpy(out, in, sizeof (*out));
1712 #ifdef HAVE_IPV6
1713 if (in->ss_family == AF_INET6) {
1714 const char prefix[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
1715 const struct sockaddr_in6 *in6 =
1716 (const struct sockaddr_in6 *)in;
1717 struct sockaddr_in *out4 = (struct sockaddr_in *)out;
1718 if (memcmp(&in6->sin6_addr, prefix, 12) == 0) {
1719 memset(out, 0, sizeof(*out));
1720 #ifdef HAVE_SOCK_SIN_LEN
1721 out4->sin_len = sizeof(*out);
1722 #endif
1723 out4->sin_family = AF_INET;
1724 out4->sin_port = in6->sin6_port;
1725 memcpy(&out4->sin_addr, &in6->sin6_addr.s6_addr[12], 4);
1728 #endif
1732 * Register us as a server for a particular tcp connection
1735 NTSTATUS ctdbd_register_ips(struct ctdbd_connection *conn,
1736 const struct sockaddr_storage *_server,
1737 const struct sockaddr_storage *_client,
1738 bool (*release_ip_handler)(const char *ip_addr,
1739 void *private_data),
1740 void *private_data)
1743 * we still use ctdb_control_tcp for ipv4
1744 * because we want to work against older ctdb
1745 * versions at runtime
1747 struct ctdb_control_tcp p4;
1748 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1749 struct ctdb_control_tcp_addr p;
1750 #endif
1751 TDB_DATA data;
1752 NTSTATUS status;
1753 struct sockaddr_storage client;
1754 struct sockaddr_storage server;
1757 * Only one connection so far
1759 SMB_ASSERT(conn->release_ip_handler == NULL);
1761 smbd_ctdb_canonicalize_ip(_client, &client);
1762 smbd_ctdb_canonicalize_ip(_server, &server);
1764 switch (client.ss_family) {
1765 case AF_INET:
1766 memcpy(&p4.dest, &server, sizeof(p4.dest));
1767 memcpy(&p4.src, &client, sizeof(p4.src));
1768 data.dptr = (uint8_t *)&p4;
1769 data.dsize = sizeof(p4);
1770 break;
1771 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1772 case AF_INET6:
1773 memcpy(&p.dest.ip6, &server, sizeof(p.dest.ip6));
1774 memcpy(&p.src.ip6, &client, sizeof(p.src.ip6));
1775 data.dptr = (uint8_t *)&p;
1776 data.dsize = sizeof(p);
1777 break;
1778 #endif
1779 default:
1780 return NT_STATUS_INTERNAL_ERROR;
1783 conn->release_ip_handler = release_ip_handler;
1784 conn->release_ip_priv = private_data;
1787 * We want to be told about IP releases
1790 status = register_with_ctdbd(conn, CTDB_SRVID_RELEASE_IP);
1791 if (!NT_STATUS_IS_OK(status)) {
1792 return status;
1796 * inform ctdb of our tcp connection, so if IP takeover happens ctdb
1797 * can send an extra ack to trigger a reset for our client, so it
1798 * immediately reconnects
1800 return ctdbd_control(conn, CTDB_CURRENT_NODE,
1801 CTDB_CONTROL_TCP_CLIENT, 0,
1802 CTDB_CTRL_FLAG_NOREPLY, data, NULL, NULL, NULL);
1806 * We want to handle reconfigure events
1808 NTSTATUS ctdbd_register_reconfigure(struct ctdbd_connection *conn)
1810 return register_with_ctdbd(conn, CTDB_SRVID_RECONFIGURE);
1814 call a control on the local node
1816 NTSTATUS ctdbd_control_local(struct ctdbd_connection *conn, uint32_t opcode,
1817 uint64_t srvid, uint32_t flags, TDB_DATA data,
1818 TALLOC_CTX *mem_ctx, TDB_DATA *outdata,
1819 int *cstatus)
1821 return ctdbd_control(conn, CTDB_CURRENT_NODE, opcode, srvid, flags, data, mem_ctx, outdata, cstatus);
1824 NTSTATUS ctdb_watch_us(struct ctdbd_connection *conn)
1826 struct ctdb_client_notify_register reg_data;
1827 size_t struct_len;
1828 NTSTATUS status;
1829 int cstatus;
1831 reg_data.srvid = CTDB_SRVID_SAMBA_NOTIFY;
1832 reg_data.len = 1;
1833 reg_data.notify_data[0] = 0;
1835 struct_len = offsetof(struct ctdb_client_notify_register,
1836 notify_data) + reg_data.len;
1838 status = ctdbd_control_local(
1839 conn, CTDB_CONTROL_REGISTER_NOTIFY, conn->rand_srvid, 0,
1840 make_tdb_data((uint8_t *)&reg_data, struct_len),
1841 NULL, NULL, &cstatus);
1842 if (!NT_STATUS_IS_OK(status)) {
1843 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1844 nt_errstr(status)));
1846 return status;
1849 NTSTATUS ctdb_unwatch(struct ctdbd_connection *conn)
1851 struct ctdb_client_notify_deregister dereg_data;
1852 NTSTATUS status;
1853 int cstatus;
1855 dereg_data.srvid = CTDB_SRVID_SAMBA_NOTIFY;
1857 status = ctdbd_control_local(
1858 conn, CTDB_CONTROL_DEREGISTER_NOTIFY, conn->rand_srvid, 0,
1859 make_tdb_data((uint8_t *)&dereg_data, sizeof(dereg_data)),
1860 NULL, NULL, &cstatus);
1861 if (!NT_STATUS_IS_OK(status)) {
1862 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1863 nt_errstr(status)));
1865 return status;
1868 NTSTATUS ctdbd_probe(void)
1871 * Do a very early check if ctdbd is around to avoid an abort and core
1872 * later
1874 struct ctdbd_connection *conn = NULL;
1875 NTSTATUS status;
1877 status = ctdbd_messaging_connection(talloc_tos(), &conn);
1880 * We only care if we can connect.
1882 TALLOC_FREE(conn);
1884 return status;