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/>.
24 #ifdef CLUSTER_SUPPORT
26 #include "ctdbd_conn.h"
27 #include "ctdb_packet.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
40 #ifdef typesafe_cb_preargs
41 #undef typesafe_cb_preargs
44 #ifdef typesafe_cb_postargs
45 #undef typesafe_cb_postargs
48 /* paths to these include files come from --with-ctdb= in configure */
51 #include "ctdb_private.h"
53 struct ctdbd_connection
{
54 struct messaging_context
*msg_ctx
;
58 struct ctdb_packet_context
*pkt
;
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
)
68 if (conn
->reqid
== 0) {
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
,
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
96 static void ctdb_packet_dump(struct ctdb_req_header
*hdr
)
98 if (DEBUGLEVEL
< 10) {
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
)
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
)
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
;
137 * Are we active (i.e. not banned or stopped?)
139 static bool ctdbd_working(struct ctdbd_connection
*conn
, uint32_t vnn
)
144 struct ctdb_node_map
*m
;
145 uint32_t failure_flags
;
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"));
160 m
= (struct ctdb_node_map
*)outdata
.dptr
;
162 for (i
=0; i
<m
->num
; i
++) {
163 if (vnn
== m
->nodes
[i
].pnn
) {
169 DEBUG(2, ("Did not find ourselves (node %d) in nodemap\n",
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
));
185 TALLOC_FREE(outdata
.dptr
);
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
;
206 if (!sockname
|| !*sockname
) {
207 sockname
= CTDB_PATH
;
210 fd
= socket(AF_UNIX
, SOCK_STREAM
, 0);
212 DEBUG(3, ("Could not create socket: %s\n", strerror(errno
)));
213 return map_nt_error_from_unix(errno
);
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
,
224 return map_nt_error_from_unix(errno
);
227 if (!(result
= ctdb_packet_init(mem_ctx
, fd
))) {
229 return NT_STATUS_NO_MEMORY
;
237 * Do we have a complete ctdb packet in the queue?
240 static bool ctdb_req_complete(const uint8_t *buf
, size_t available
,
246 if (available
< sizeof(msglen
)) {
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
) {
270 * State necessary to defer an incoming message while we are waiting for a
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
,
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
);
296 struct req_pull_state
{
302 * Pull a ctdb request out of the incoming ctdb_packet queue
305 static NTSTATUS
ctdb_req_pull(uint8_t *buf
, size_t length
,
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
;
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
;
325 enum ndr_err_code ndr_err
;
327 if ((overall_length
< offsetof(struct ctdb_req_message
, data
))
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"));
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
)));
352 if (DEBUGLEVEL
>= 10) {
353 DEBUG(10, ("ctdb_pull_messaging_rec:\n"));
354 NDR_PRINT_DEBUG(messaging_rec
, result
);
360 static NTSTATUS
ctdb_packet_fd_read_sync(struct ctdb_packet_context
*ctx
)
362 int timeout
= lp_ctdb_timeout();
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
;
384 state
.mem_ctx
= mem_ctx
;
386 while (!ctdb_packet_handler(conn
->pkt
, ctdb_req_complete
,
387 ctdb_req_pull
, &state
, &status
)) {
391 status
= ctdb_packet_fd_read_sync(conn
->pkt
);
393 if (NT_STATUS_EQUAL(status
, NT_STATUS_NETWORK_BUSY
)) {
396 } else if (NT_STATUS_EQUAL(status
, NT_STATUS_RETRY
)) {
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
));
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
);
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
,
457 msg_state
= talloc(NULL
, struct deferred_msg_state
);
458 if (msg_state
== NULL
) {
459 DEBUG(0, ("talloc failed\n"));
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
);
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
,
483 deferred_message_dispatch
,
486 DEBUG(0, ("event_add_timed failed\n"));
487 TALLOC_FREE(msg_state
);
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
));
503 *((void **)result
) = talloc_move(mem_ctx
, &hdr
);
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
;
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
)));
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
)));
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
;
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",
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
;
572 status
= ctdbd_init_connection(mem_ctx
, &conn
);
574 if (!NT_STATUS_IS_OK(status
)) {
578 status
= register_with_ctdbd(conn
, (uint64_t)sys_getpid());
579 if (!NT_STATUS_IS_OK(status
)) {
583 status
= register_with_ctdbd(conn
, MSG_SRVID_SAMBA
);
584 if (!NT_STATUS_IS_OK(status
)) {
588 status
= register_with_ctdbd(conn
, CTDB_SRVID_SAMBA_NOTIFY
);
589 if (!NT_STATUS_IS_OK(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
,
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
));
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
);
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
,
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
));
672 if (!(msg_rec
= ctdb_pull_messaging_rec(NULL
, length
, msg
))) {
673 DEBUG(10, ("ctdb_pull_messaging_rec failed\n"));
675 return NT_STATUS_NO_MEMORY
;
678 messaging_dispatch_rec(conn
->msg_ctx
, msg_rec
);
680 TALLOC_FREE(msg_rec
);
686 * The ctdbd socket is readable asynchronuously
689 static void ctdbd_socket_handler(struct event_context
*event_ctx
,
690 struct fd_event
*event
,
694 struct ctdbd_connection
*conn
= talloc_get_type_abort(
695 private_data
, struct ctdbd_connection
);
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",
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
),
728 ctdbd_socket_handler
,
730 DEBUG(0, ("event_add_fd failed\n"));
731 return NT_STATUS_NO_MEMORY
;
734 conn
->msg_ctx
= msg_ctx
;
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
;
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(
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
);
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
;
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(
785 data_blob_const(&r
, offsetof(struct ctdb_req_message
, data
)),
788 if (!NT_STATUS_IS_OK(status
)) {
789 DEBUG(0, ("ctdb_packet_send failed: %s\n", nt_errstr(status
)));
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
;
802 TALLOC_FREE(mem_ctx
);
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
,
813 TALLOC_CTX
*mem_ctx
, TDB_DATA
*outdata
,
816 struct ctdb_req_control req
;
817 struct ctdb_reply_control
*reply
= NULL
;
818 struct ctdbd_connection
*new_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",
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
;
842 req
.datalen
= data
.dsize
;
845 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
846 ctdb_packet_dump(&req
.hdr
);
848 status
= ctdb_packet_send(
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
)));
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
);
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
)));
880 if (reply
->hdr
.operation
!= CTDB_REPLY_CONTROL
) {
881 DEBUG(0, ("received invalid reply\n"));
886 if (!(outdata
->dptr
= (uint8
*)talloc_memdup(
887 mem_ctx
, reply
->data
, reply
->datalen
))) {
889 return NT_STATUS_NO_MEMORY
;
891 outdata
->dsize
= reply
->datalen
;
894 (*cstatus
) = reply
->status
;
897 status
= NT_STATUS_OK
;
900 TALLOC_FREE(new_conn
);
906 * see if a remote process exists
908 bool ctdbd_process_exists(struct ctdbd_connection
*conn
, uint32 vnn
, pid_t pid
)
916 if (!ctdb_processes_exist(conn
, &id
, 1, &result
)) {
917 DEBUG(10, ("ctdb_processes_exist failed\n"));
923 bool ctdb_processes_exist(struct ctdbd_connection
*conn
,
924 const struct server_id
*pids
, int num_pids
,
927 TALLOC_CTX
*frame
= talloc_stackframe();
933 reqids
= talloc_array(talloc_tos(), uint32_t, num_pids
);
934 if (reqids
== NULL
) {
938 for (i
=0; i
<num_pids
; i
++) {
939 struct ctdb_req_control req
;
943 reqids
[i
] = ctdbd_next_reqid(conn
);
948 * pids[i].pid is uint64_t, scale down to pid_t which
949 * is the wire protocol towards ctdb.
953 DEBUG(10, ("Requesting PID %d/%d, reqid=%d\n",
954 (int)pids
[i
].vnn
, (int)pid
,
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
;
966 req
.datalen
= sizeof(pid
);
969 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
970 ctdb_packet_dump(&req
.hdr
);
972 status
= ctdb_packet_send(
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",
984 status
= ctdb_packet_flush(conn
->pkt
);
985 if (!NT_STATUS_IS_OK(status
)) {
986 DEBUG(10, ("ctdb_packet_flush failed: %s\n",
993 while (num_received
< num_pids
) {
994 struct ctdb_reply_control
*reply
= NULL
;
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
)));
1004 if (reply
->hdr
.operation
!= CTDB_REPLY_CONTROL
) {
1005 DEBUG(10, ("Received invalid reply\n"));
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
]) {
1018 if (i
== num_pids
) {
1019 DEBUG(10, ("Received unknown record number %u\n",
1023 results
[i
] = ((reply
->status
) == 0);
1034 struct ctdb_vnn_list
{
1037 unsigned num_srvids
;
1038 unsigned num_filled
;
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
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
) {
1062 for (i
=0; i
<num_pids
; i
++) {
1064 uint32_t vnn
= pids
[i
].vnn
;
1066 for (j
=0; j
<num_vnns
; j
++) {
1067 if (vnn
== vnns
[j
].vnn
) {
1075 * Already in the array
1077 vnns
[j
].num_srvids
+= 1;
1080 vnns
= talloc_realloc(mem_ctx
, vnns
, struct ctdb_vnn_list
,
1085 vnns
[num_vnns
].vnn
= vnn
;
1086 vnns
[num_vnns
].num_srvids
= 1;
1087 vnns
[num_vnns
].num_filled
= 0;
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
) {
1097 vnn
->pid_indexes
= talloc_array(vnns
, unsigned,
1099 if (vnn
->pid_indexes
== NULL
) {
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
);
1112 *pnum_vnns
= num_vnns
;
1116 TALLOC_FREE(vnn_indexes
);
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
,
1126 unsigned i
, num_received
;
1128 struct ctdb_vnn_list
*vnns
= NULL
;
1130 bool result
= false;
1132 if (!ctdb_collect_vnns(talloc_tos(), pids
, num_pids
,
1133 &vnns
, &num_vnns
)) {
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
);
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
;
1156 req
.datalen
= sizeof(uint64_t) * vnn
->num_srvids
;
1157 req
.hdr
.length
+= req
.datalen
;
1160 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
1161 ctdb_packet_dump(&req
.hdr
);
1163 status
= ctdb_packet_send(
1166 &req
, offsetof(struct ctdb_req_control
,
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
)));
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
)));
1185 while (num_received
< num_vnns
) {
1186 struct ctdb_reply_control
*reply
= NULL
;
1187 struct ctdb_vnn_list
*vnn
;
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
)));
1197 if (reply
->hdr
.operation
!= CTDB_REPLY_CONTROL
) {
1198 DEBUG(10, ("Received invalid reply\n"));
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
) {
1211 if (i
== num_vnns
) {
1212 DEBUG(10, ("Received unknown reqid number %u\n",
1217 DEBUG(10, ("Found index %u\n", 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"));
1230 for (i
=0; i
<vnn
->num_srvids
; i
++) {
1231 results
[vnn
->pid_indexes
[i
]] =
1232 ((reply
->data
[i
/8] & (1<<(i
%8))) != 0);
1245 #endif /* HAVE_CTDB_CONTROL_CHECK_SRVIDS_DECL */
1250 char *ctdbd_dbpath(struct ctdbd_connection
*conn
,
1251 TALLOC_CTX
*mem_ctx
, uint32_t db_id
)
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"));
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
)
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
,
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
)));
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 "
1317 return NT_STATUS_IS_OK(status
) ? NT_STATUS_INTERNAL_ERROR
:
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
,
1330 struct ctdb_req_call req
;
1331 struct ctdb_reply_call
*reply
;
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
;
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(
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
)));
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
)));
1373 if (reply
->hdr
.operation
!= CTDB_REPLY_CALL
) {
1374 DEBUG(0, ("received invalid reply\n"));
1375 status
= NT_STATUS_INTERNAL_ERROR
;
1379 status
= NT_STATUS_OK
;
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
;
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
);
1404 req
.callid
= CTDB_FETCH_FUNC
;
1406 req
.keylen
= key
.dsize
;
1408 status
= ctdb_packet_send(
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
)));
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
)));
1432 if (reply
->hdr
.operation
!= CTDB_REPLY_CALL
) {
1433 DEBUG(0, ("received invalid reply\n"));
1434 status
= NT_STATUS_INTERNAL_ERROR
;
1438 data
->dsize
= reply
->datalen
;
1439 if (data
->dsize
== 0) {
1444 data
->dptr
= (uint8
*)talloc_memdup(mem_ctx
, &reply
->data
[0],
1446 if (data
->dptr
== NULL
) {
1447 DEBUG(0, ("talloc failed\n"));
1448 status
= NT_STATUS_NO_MEMORY
;
1453 status
= NT_STATUS_OK
;
1459 struct ctdbd_traverse_state
{
1460 void (*fn
)(TDB_DATA key
, TDB_DATA data
, 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
,
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
;
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
));
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",
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",
1508 return NT_STATUS_UNEXPECTED_IO_ERROR
;
1510 data
.dsize
-= sizeof(struct ctdb_ltdb_header
);
1511 data
.dptr
+= sizeof(struct ctdb_ltdb_header
);
1514 state
->fn(key
, data
, state
->private_data
);
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
1527 NTSTATUS
ctdbd_traverse(uint32 db_id
,
1528 void (*fn
)(TDB_DATA key
, TDB_DATA data
,
1529 void *private_data
),
1532 struct ctdbd_connection
*conn
;
1536 struct ctdb_traverse_start t
;
1538 struct ctdbd_traverse_state state
;
1541 status
= ctdbd_init_connection(NULL
, &conn
);
1543 if (!NT_STATUS_IS_OK(status
)) {
1544 DEBUG(0, ("ctdbd_init_connection failed: %s\n",
1545 nt_errstr(status
)));
1550 t
.srvid
= conn
->rand_srvid
;
1551 t
.reqid
= ctdbd_next_reqid(conn
);
1553 data
.dptr
= (uint8_t *)&t
;
1554 data
.dsize
= sizeof(t
);
1556 status
= ctdbd_control(conn
, CTDB_CURRENT_NODE
,
1557 CTDB_CONTROL_TRAVERSE_START
, conn
->rand_srvid
, 0,
1558 data
, NULL
, NULL
, &cstatus
);
1560 if (!NT_STATUS_IS_OK(status
) || (cstatus
!= 0)) {
1562 DEBUG(0,("ctdbd_control failed: %s, %d\n", nt_errstr(status
),
1565 if (NT_STATUS_IS_OK(status
)) {
1567 * We need a mapping here
1569 status
= NT_STATUS_UNSUCCESSFUL
;
1575 state
.private_data
= private_data
;
1579 status
= NT_STATUS_OK
;
1581 if (ctdb_packet_handler(conn
->pkt
, ctdb_req_complete
,
1582 ctdb_traverse_handler
, &state
, &status
)) {
1584 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
1585 status
= NT_STATUS_OK
;
1590 * There might be more in the queue
1595 if (!NT_STATUS_IS_OK(status
)) {
1599 status
= ctdb_packet_fd_read_sync(conn
->pkt
);
1601 if (NT_STATUS_EQUAL(status
, NT_STATUS_RETRY
)) {
1603 * There might be more in the queue
1608 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
1609 status
= NT_STATUS_OK
;
1613 if (!NT_STATUS_IS_OK(status
)) {
1614 DEBUG(0, ("ctdb_packet_fd_read_sync failed: %s\n", nt_errstr(status
)));
1615 cluster_fatal("ctdbd died\n");
1625 This is used to canonicalize a ctdb_sock_addr structure.
1627 static void smbd_ctdb_canonicalize_ip(const struct sockaddr_storage
*in
,
1628 struct sockaddr_storage
*out
)
1630 memcpy(out
, in
, sizeof (*out
));
1633 if (in
->ss_family
== AF_INET6
) {
1634 const char prefix
[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
1635 const struct sockaddr_in6
*in6
= (struct sockaddr_in6
*)in
;
1636 struct sockaddr_in
*out4
= (struct sockaddr_in
*)out
;
1637 if (memcmp(&in6
->sin6_addr
, prefix
, 12) == 0) {
1638 memset(out
, 0, sizeof(*out
));
1639 #ifdef HAVE_SOCK_SIN_LEN
1640 out4
->sin_len
= sizeof(*out
);
1642 out4
->sin_family
= AF_INET
;
1643 out4
->sin_port
= in6
->sin6_port
;
1644 memcpy(&out4
->sin_addr
, &in6
->sin6_addr
.s6_addr32
[3], 4);
1651 * Register us as a server for a particular tcp connection
1654 NTSTATUS
ctdbd_register_ips(struct ctdbd_connection
*conn
,
1655 const struct sockaddr_storage
*_server
,
1656 const struct sockaddr_storage
*_client
,
1657 void (*release_ip_handler
)(const char *ip_addr
,
1658 void *private_data
),
1662 * we still use ctdb_control_tcp for ipv4
1663 * because we want to work against older ctdb
1664 * versions at runtime
1666 struct ctdb_control_tcp p4
;
1667 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1668 struct ctdb_control_tcp_addr p
;
1672 struct sockaddr_storage client
;
1673 struct sockaddr_storage server
;
1676 * Only one connection so far
1678 SMB_ASSERT(conn
->release_ip_handler
== NULL
);
1680 smbd_ctdb_canonicalize_ip(_client
, &client
);
1681 smbd_ctdb_canonicalize_ip(_server
, &server
);
1683 switch (client
.ss_family
) {
1685 memcpy(&p4
.dest
, &server
, sizeof(p4
.dest
));
1686 memcpy(&p4
.src
, &client
, sizeof(p4
.src
));
1687 data
.dptr
= (uint8_t *)&p4
;
1688 data
.dsize
= sizeof(p4
);
1690 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1692 memcpy(&p
.dest
.ip6
, &server
, sizeof(p
.dest
.ip6
));
1693 memcpy(&p
.src
.ip6
, &client
, sizeof(p
.src
.ip6
));
1694 data
.dptr
= (uint8_t *)&p
;
1695 data
.dsize
= sizeof(p
);
1699 return NT_STATUS_INTERNAL_ERROR
;
1702 conn
->release_ip_handler
= release_ip_handler
;
1703 conn
->release_ip_priv
= private_data
;
1706 * We want to be told about IP releases
1709 status
= register_with_ctdbd(conn
, CTDB_SRVID_RELEASE_IP
);
1710 if (!NT_STATUS_IS_OK(status
)) {
1715 * inform ctdb of our tcp connection, so if IP takeover happens ctdb
1716 * can send an extra ack to trigger a reset for our client, so it
1717 * immediately reconnects
1719 return ctdbd_control(conn
, CTDB_CURRENT_NODE
,
1720 CTDB_CONTROL_TCP_CLIENT
, 0,
1721 CTDB_CTRL_FLAG_NOREPLY
, data
, NULL
, NULL
, NULL
);
1725 * We want to handle reconfigure events
1727 NTSTATUS
ctdbd_register_reconfigure(struct ctdbd_connection
*conn
)
1729 return register_with_ctdbd(conn
, CTDB_SRVID_RECONFIGURE
);
1733 call a control on the local node
1735 NTSTATUS
ctdbd_control_local(struct ctdbd_connection
*conn
, uint32 opcode
,
1736 uint64_t srvid
, uint32_t flags
, TDB_DATA data
,
1737 TALLOC_CTX
*mem_ctx
, TDB_DATA
*outdata
,
1740 return ctdbd_control(conn
, CTDB_CURRENT_NODE
, opcode
, srvid
, flags
, data
, mem_ctx
, outdata
, cstatus
);
1743 NTSTATUS
ctdb_watch_us(struct ctdbd_connection
*conn
)
1745 struct ctdb_client_notify_register reg_data
;
1750 reg_data
.srvid
= CTDB_SRVID_SAMBA_NOTIFY
;
1752 reg_data
.notify_data
[0] = 0;
1754 struct_len
= offsetof(struct ctdb_client_notify_register
,
1755 notify_data
) + reg_data
.len
;
1757 status
= ctdbd_control_local(
1758 conn
, CTDB_CONTROL_REGISTER_NOTIFY
, conn
->rand_srvid
, 0,
1759 make_tdb_data((uint8_t *)®_data
, struct_len
),
1760 NULL
, NULL
, &cstatus
);
1761 if (!NT_STATUS_IS_OK(status
)) {
1762 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1763 nt_errstr(status
)));
1768 NTSTATUS
ctdb_unwatch(struct ctdbd_connection
*conn
)
1770 struct ctdb_client_notify_deregister dereg_data
;
1774 dereg_data
.srvid
= CTDB_SRVID_SAMBA_NOTIFY
;
1776 status
= ctdbd_control_local(
1777 conn
, CTDB_CONTROL_DEREGISTER_NOTIFY
, conn
->rand_srvid
, 0,
1778 make_tdb_data((uint8_t *)&dereg_data
, sizeof(dereg_data
)),
1779 NULL
, NULL
, &cstatus
);
1780 if (!NT_STATUS_IS_OK(status
)) {
1781 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1782 nt_errstr(status
)));