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/>.
23 #ifdef CLUSTER_SUPPORT
25 #include "librpc/gen_ndr/messaging.h"
26 #include "librpc/gen_ndr/ndr_messaging.h"
28 /* paths to these include files come from --with-ctdb= in configure */
30 #include "ctdb_private.h"
32 struct ctdbd_connection
{
33 struct messaging_context
*msg_ctx
;
37 struct packet_context
*pkt
;
40 void (*release_ip_handler
)(const char *ip_addr
, void *private_data
);
41 void *release_ip_priv
;
44 static NTSTATUS
ctdbd_control(struct ctdbd_connection
*conn
,
45 uint32_t vnn
, uint32 opcode
,
46 uint64_t srvid
, uint32_t flags
, TDB_DATA data
,
47 TALLOC_CTX
*mem_ctx
, TDB_DATA
*outdata
,
51 * exit on fatal communications errors with the ctdbd daemon
53 static void cluster_fatal(const char *why
)
55 DEBUG(0,("cluster fatal event: %s - exiting immediately\n", why
));
56 /* we don't use smb_panic() as we don't want to delay to write
57 a core file. We need to release this process id immediately
58 so that someone else can take over without getting sharing
66 static void ctdb_packet_dump(struct ctdb_req_header
*hdr
)
68 if (DEBUGLEVEL
< 10) {
71 DEBUGADD(10, ("len=%d, magic=%x, vers=%d, gen=%d, op=%d, reqid=%d\n",
72 (int)hdr
->length
, (int)hdr
->ctdb_magic
,
73 (int)hdr
->ctdb_version
, (int)hdr
->generation
,
74 (int)hdr
->operation
, (int)hdr
->reqid
));
78 * Register a srvid with ctdbd
80 static NTSTATUS
register_with_ctdbd(struct ctdbd_connection
*conn
,
85 return ctdbd_control(conn
, CTDB_CURRENT_NODE
,
86 CTDB_CONTROL_REGISTER_SRVID
, srvid
, 0,
87 tdb_null
, NULL
, NULL
, &cstatus
);
91 * get our vnn from the cluster
93 static NTSTATUS
get_cluster_vnn(struct ctdbd_connection
*conn
, uint32
*vnn
)
97 status
= ctdbd_control(conn
,
98 CTDB_CURRENT_NODE
, CTDB_CONTROL_GET_PNN
, 0, 0,
99 tdb_null
, NULL
, NULL
, &cstatus
);
100 if (!NT_STATUS_IS_OK(status
)) {
101 cluster_fatal("ctdbd_control failed\n");
103 *vnn
= (uint32_t)cstatus
;
107 uint32
ctdbd_vnn(const struct ctdbd_connection
*conn
)
109 return conn
->our_vnn
;
113 * Get us a ctdb connection
116 static NTSTATUS
ctdbd_connect(TALLOC_CTX
*mem_ctx
,
117 struct packet_context
**presult
)
119 struct packet_context
*result
;
120 const char *sockname
= lp_ctdbd_socket();
121 struct sockaddr_un addr
;
124 if (!sockname
|| !*sockname
) {
125 sockname
= CTDB_PATH
;
128 fd
= socket(AF_UNIX
, SOCK_STREAM
, 0);
130 DEBUG(3, ("Could not create socket: %s\n", strerror(errno
)));
131 return map_nt_error_from_unix(errno
);
135 addr
.sun_family
= AF_UNIX
;
136 strncpy(addr
.sun_path
, sockname
, sizeof(addr
.sun_path
));
138 if (sys_connect(fd
, (struct sockaddr
*)&addr
) == -1) {
139 DEBUG(1, ("connect(%s) failed: %s\n", sockname
,
142 return map_nt_error_from_unix(errno
);
145 if (!(result
= packet_init(mem_ctx
, fd
))) {
147 return NT_STATUS_NO_MEMORY
;
155 * Do we have a complete ctdb packet in the queue?
158 static bool ctdb_req_complete(const uint8_t *buf
, size_t available
,
164 if (available
< sizeof(msglen
)) {
168 msglen
= *((uint32
*)buf
);
170 DEBUG(10, ("msglen = %d\n", msglen
));
172 if (msglen
< sizeof(struct ctdb_req_header
)) {
173 DEBUG(0, ("Got invalid msglen: %d, expected at least %d for "
174 "the req_header\n", (int)msglen
,
175 (int)sizeof(struct ctdb_req_header
)));
176 cluster_fatal("ctdbd protocol error\n");
179 if (available
< msglen
) {
188 * State necessary to defer an incoming message while we are waiting for a
192 struct deferred_msg_state
{
193 struct messaging_context
*msg_ctx
;
194 struct messaging_rec
*rec
;
198 * Timed event handler for the deferred message
201 static void deferred_message_dispatch(struct event_context
*event_ctx
,
202 struct timed_event
*te
,
206 struct deferred_msg_state
*state
= talloc_get_type_abort(
207 private_data
, struct deferred_msg_state
);
209 messaging_dispatch_rec(state
->msg_ctx
, state
->rec
);
214 struct req_pull_state
{
220 * Pull a ctdb request out of the incoming packet queue
223 static NTSTATUS
ctdb_req_pull(uint8_t *buf
, size_t length
,
226 struct req_pull_state
*state
= (struct req_pull_state
*)private_data
;
228 state
->req
.data
= talloc_move(state
->mem_ctx
, &buf
);
229 state
->req
.length
= length
;
234 * Fetch a messaging_rec from an incoming ctdb style message
237 static struct messaging_rec
*ctdb_pull_messaging_rec(TALLOC_CTX
*mem_ctx
,
238 size_t overall_length
,
239 struct ctdb_req_message
*msg
)
241 struct messaging_rec
*result
;
243 enum ndr_err_code ndr_err
;
245 if ((overall_length
< offsetof(struct ctdb_req_message
, data
))
247 < offsetof(struct ctdb_req_message
, data
) + msg
->datalen
)) {
249 cluster_fatal("got invalid msg length");
252 if (!(result
= TALLOC_P(mem_ctx
, struct messaging_rec
))) {
253 DEBUG(0, ("talloc failed\n"));
257 blob
= data_blob_const(msg
->data
, msg
->datalen
);
259 ndr_err
= ndr_pull_struct_blob(
260 &blob
, result
, NULL
, result
,
261 (ndr_pull_flags_fn_t
)ndr_pull_messaging_rec
);
263 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
264 DEBUG(0, ("ndr_pull_struct_blob failed: %s\n",
265 ndr_errstr(ndr_err
)));
270 if (DEBUGLEVEL
>= 10) {
271 DEBUG(10, ("ctdb_pull_messaging_rec:\n"));
272 NDR_PRINT_DEBUG(messaging_rec
, result
);
278 static NTSTATUS
ctdb_packet_fd_read_sync(struct packet_context
*ctx
)
280 struct timeval timeout
;
281 struct timeval
*ptimeout
;
283 timeout
= timeval_set(lp_ctdb_timeout(), 0);
284 ptimeout
= (timeout
.tv_sec
!= 0) ? &timeout
: NULL
;
286 return packet_fd_read_sync(ctx
, ptimeout
);
290 * Read a full ctdbd request. If we have a messaging context, defer incoming
291 * messages that might come in between.
294 static NTSTATUS
ctdb_read_req(struct ctdbd_connection
*conn
, uint32 reqid
,
295 TALLOC_CTX
*mem_ctx
, void *result
)
297 struct ctdb_req_header
*hdr
;
298 struct req_pull_state state
;
303 status
= ctdb_packet_fd_read_sync(conn
->pkt
);
305 if (NT_STATUS_EQUAL(status
, NT_STATUS_NETWORK_BUSY
)) {
308 } else if (NT_STATUS_EQUAL(status
, NT_STATUS_RETRY
)) {
313 if (!NT_STATUS_IS_OK(status
)) {
314 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status
)));
315 cluster_fatal("ctdbd died\n");
321 state
.mem_ctx
= mem_ctx
;
323 if (!packet_handler(conn
->pkt
, ctdb_req_complete
, ctdb_req_pull
,
328 DEBUG(10, ("not enough data from ctdb socket, retrying\n"));
332 if (!NT_STATUS_IS_OK(status
)) {
333 DEBUG(0, ("Could not read packet: %s\n", nt_errstr(status
)));
334 cluster_fatal("ctdbd died\n");
337 hdr
= (struct ctdb_req_header
*)state
.req
.data
;
339 DEBUG(10, ("Received ctdb packet\n"));
340 ctdb_packet_dump(hdr
);
342 if (hdr
->operation
== CTDB_REQ_MESSAGE
) {
343 struct timed_event
*evt
;
344 struct deferred_msg_state
*msg_state
;
345 struct ctdb_req_message
*msg
= (struct ctdb_req_message
*)hdr
;
347 if (conn
->msg_ctx
== NULL
) {
348 DEBUG(1, ("Got a message without having a msg ctx, "
349 "dropping msg %llu\n",
350 (long long unsigned)msg
->srvid
));
354 if ((conn
->release_ip_handler
!= NULL
)
355 && (msg
->srvid
== CTDB_SRVID_RELEASE_IP
)) {
356 /* must be dispatched immediately */
357 DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
358 conn
->release_ip_handler((const char *)msg
->data
,
359 conn
->release_ip_priv
);
364 if ((msg
->srvid
== CTDB_SRVID_RECONFIGURE
)
365 || (msg
->srvid
== CTDB_SRVID_SAMBA_NOTIFY
)) {
367 DEBUG(1, ("ctdb_read_req: Got %s message\n",
368 (msg
->srvid
== CTDB_SRVID_RECONFIGURE
)
369 ? "cluster reconfigure" : "SAMBA_NOTIFY"));
371 messaging_send(conn
->msg_ctx
, procid_self(),
372 MSG_SMB_BRL_VALIDATE
, &data_blob_null
);
373 messaging_send(conn
->msg_ctx
, procid_self(),
374 MSG_DBWRAP_G_LOCK_RETRY
,
380 if (!(msg_state
= TALLOC_P(talloc_autofree_context(), struct deferred_msg_state
))) {
381 DEBUG(0, ("talloc failed\n"));
386 if (!(msg_state
->rec
= ctdb_pull_messaging_rec(
387 msg_state
, state
.req
.length
, msg
))) {
388 DEBUG(0, ("ctdbd_pull_messaging_rec failed\n"));
389 TALLOC_FREE(msg_state
);
396 msg_state
->msg_ctx
= conn
->msg_ctx
;
399 * We're waiting for a call reply, but an async message has
400 * crossed. Defer dispatching to the toplevel event loop.
402 evt
= event_add_timed(conn
->msg_ctx
->event_ctx
,
403 conn
->msg_ctx
->event_ctx
,
405 deferred_message_dispatch
,
408 DEBUG(0, ("event_add_timed failed\n"));
409 TALLOC_FREE(msg_state
);
417 if (hdr
->reqid
!= reqid
) {
418 /* we got the wrong reply */
419 DEBUG(0,("Discarding mismatched ctdb reqid %u should have "
420 "been %u\n", hdr
->reqid
, reqid
));
425 *((void **)result
) = talloc_move(mem_ctx
, &hdr
);
431 * Get us a ctdbd connection
434 NTSTATUS
ctdbd_init_connection(TALLOC_CTX
*mem_ctx
,
435 struct ctdbd_connection
**pconn
)
437 struct ctdbd_connection
*conn
;
440 if (!(conn
= TALLOC_ZERO_P(mem_ctx
, struct ctdbd_connection
))) {
441 DEBUG(0, ("talloc failed\n"));
442 return NT_STATUS_NO_MEMORY
;
445 status
= ctdbd_connect(conn
, &conn
->pkt
);
447 if (!NT_STATUS_IS_OK(status
)) {
448 DEBUG(10, ("ctdbd_connect failed: %s\n", nt_errstr(status
)));
452 status
= get_cluster_vnn(conn
, &conn
->our_vnn
);
454 if (!NT_STATUS_IS_OK(status
)) {
455 DEBUG(10, ("get_cluster_vnn failed: %s\n", nt_errstr(status
)));
459 generate_random_buffer((unsigned char *)&conn
->rand_srvid
,
460 sizeof(conn
->rand_srvid
));
462 status
= register_with_ctdbd(conn
, conn
->rand_srvid
);
464 if (!NT_STATUS_IS_OK(status
)) {
465 DEBUG(5, ("Could not register random srvid: %s\n",
479 * Get us a ctdbd connection and register us as a process
482 NTSTATUS
ctdbd_messaging_connection(TALLOC_CTX
*mem_ctx
,
483 struct ctdbd_connection
**pconn
)
485 struct ctdbd_connection
*conn
;
488 status
= ctdbd_init_connection(mem_ctx
, &conn
);
490 if (!NT_STATUS_IS_OK(status
)) {
494 status
= register_with_ctdbd(conn
, (uint64_t)sys_getpid());
495 if (!NT_STATUS_IS_OK(status
)) {
499 status
= register_with_ctdbd(conn
, MSG_SRVID_SAMBA
);
500 if (!NT_STATUS_IS_OK(status
)) {
504 status
= register_with_ctdbd(conn
, CTDB_SRVID_SAMBA_NOTIFY
);
505 if (!NT_STATUS_IS_OK(status
)) {
517 struct messaging_context
*ctdb_conn_msg_ctx(struct ctdbd_connection
*conn
)
519 return conn
->msg_ctx
;
522 int ctdbd_conn_get_fd(struct ctdbd_connection
*conn
)
524 return packet_get_fd(conn
->pkt
);
528 * Packet handler to receive and handle a ctdb message
530 static NTSTATUS
ctdb_handle_message(uint8_t *buf
, size_t length
,
533 struct ctdbd_connection
*conn
= talloc_get_type_abort(
534 private_data
, struct ctdbd_connection
);
535 struct ctdb_req_message
*msg
;
536 struct messaging_rec
*msg_rec
;
538 msg
= (struct ctdb_req_message
*)buf
;
540 if (msg
->hdr
.operation
!= CTDB_REQ_MESSAGE
) {
541 DEBUG(0, ("Received async msg of type %u, discarding\n",
542 msg
->hdr
.operation
));
544 return NT_STATUS_INVALID_PARAMETER
;
547 if ((conn
->release_ip_handler
!= NULL
)
548 && (msg
->srvid
== CTDB_SRVID_RELEASE_IP
)) {
549 /* must be dispatched immediately */
550 DEBUG(10, ("received CTDB_SRVID_RELEASE_IP\n"));
551 conn
->release_ip_handler((const char *)msg
->data
,
552 conn
->release_ip_priv
);
557 SMB_ASSERT(conn
->msg_ctx
!= NULL
);
559 if ((msg
->srvid
== CTDB_SRVID_RECONFIGURE
)
560 || (msg
->srvid
== CTDB_SRVID_SAMBA_NOTIFY
)){
561 DEBUG(0,("Got cluster reconfigure message\n"));
563 * when the cluster is reconfigured or someone of the
564 * family has passed away (SAMBA_NOTIFY), we need to
565 * clean the brl database
567 messaging_send(conn
->msg_ctx
, procid_self(),
568 MSG_SMB_BRL_VALIDATE
, &data_blob_null
);
570 messaging_send(conn
->msg_ctx
, procid_self(),
571 MSG_DBWRAP_G_LOCK_RETRY
,
578 /* only messages to our pid or the broadcast are valid here */
579 if (msg
->srvid
!= sys_getpid() && msg
->srvid
!= MSG_SRVID_SAMBA
) {
580 DEBUG(0,("Got unexpected message with srvid=%llu\n",
581 (unsigned long long)msg
->srvid
));
586 if (!(msg_rec
= ctdb_pull_messaging_rec(NULL
, length
, msg
))) {
587 DEBUG(10, ("ctdb_pull_messaging_rec failed\n"));
589 return NT_STATUS_NO_MEMORY
;
592 messaging_dispatch_rec(conn
->msg_ctx
, msg_rec
);
594 TALLOC_FREE(msg_rec
);
600 * The ctdbd socket is readable asynchronuously
603 static void ctdbd_socket_handler(struct event_context
*event_ctx
,
604 struct fd_event
*event
,
608 struct ctdbd_connection
*conn
= talloc_get_type_abort(
609 private_data
, struct ctdbd_connection
);
613 status
= packet_fd_read(conn
->pkt
);
615 if (!NT_STATUS_IS_OK(status
)) {
616 DEBUG(0, ("packet_fd_read failed: %s\n", nt_errstr(status
)));
617 cluster_fatal("ctdbd died\n");
620 while (packet_handler(conn
->pkt
, ctdb_req_complete
,
621 ctdb_handle_message
, conn
, &status
)) {
622 if (!NT_STATUS_IS_OK(status
)) {
623 DEBUG(10, ("could not handle incoming message: %s\n",
630 * Prepare a ctdbd connection to receive messages
633 NTSTATUS
ctdbd_register_msg_ctx(struct ctdbd_connection
*conn
,
634 struct messaging_context
*msg_ctx
)
636 SMB_ASSERT(conn
->msg_ctx
== NULL
);
637 SMB_ASSERT(conn
->fde
== NULL
);
639 if (!(conn
->fde
= event_add_fd(msg_ctx
->event_ctx
, conn
,
640 packet_get_fd(conn
->pkt
),
642 ctdbd_socket_handler
,
644 DEBUG(0, ("event_add_fd failed\n"));
645 return NT_STATUS_NO_MEMORY
;
648 conn
->msg_ctx
= msg_ctx
;
654 * Send a messaging message across a ctdbd
657 NTSTATUS
ctdbd_messaging_send(struct ctdbd_connection
*conn
,
658 uint32 dst_vnn
, uint64 dst_srvid
,
659 struct messaging_rec
*msg
)
661 struct ctdb_req_message r
;
665 enum ndr_err_code ndr_err
;
667 if (!(mem_ctx
= talloc_init("ctdbd_messaging_send"))) {
668 DEBUG(0, ("talloc failed\n"));
669 return NT_STATUS_NO_MEMORY
;
672 ndr_err
= ndr_push_struct_blob(
673 &blob
, mem_ctx
, NULL
, msg
,
674 (ndr_push_flags_fn_t
)ndr_push_messaging_rec
);
676 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
677 DEBUG(0, ("ndr_push_struct_blob failed: %s\n",
678 ndr_errstr(ndr_err
)));
679 status
= ndr_map_error2ntstatus(ndr_err
);
683 r
.hdr
.length
= offsetof(struct ctdb_req_message
, data
) + blob
.length
;
684 r
.hdr
.ctdb_magic
= CTDB_MAGIC
;
685 r
.hdr
.ctdb_version
= CTDB_VERSION
;
686 r
.hdr
.generation
= 1;
687 r
.hdr
.operation
= CTDB_REQ_MESSAGE
;
688 r
.hdr
.destnode
= dst_vnn
;
689 r
.hdr
.srcnode
= conn
->our_vnn
;
692 r
.datalen
= blob
.length
;
694 DEBUG(10, ("ctdbd_messaging_send: Sending ctdb packet\n"));
695 ctdb_packet_dump(&r
.hdr
);
697 status
= packet_send(
699 data_blob_const(&r
, offsetof(struct ctdb_req_message
, data
)),
702 if (!NT_STATUS_IS_OK(status
)) {
703 DEBUG(0, ("packet_send failed: %s\n", nt_errstr(status
)));
707 status
= packet_flush(conn
->pkt
);
709 if (!NT_STATUS_IS_OK(status
)) {
710 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status
)));
711 cluster_fatal("cluster dispatch daemon msg write error\n");
714 status
= NT_STATUS_OK
;
716 TALLOC_FREE(mem_ctx
);
721 * send/recv a generic ctdb control message
723 static NTSTATUS
ctdbd_control(struct ctdbd_connection
*conn
,
724 uint32_t vnn
, uint32 opcode
,
725 uint64_t srvid
, uint32_t flags
,
727 TALLOC_CTX
*mem_ctx
, TDB_DATA
*outdata
,
730 struct ctdb_req_control req
;
731 struct ctdb_reply_control
*reply
= NULL
;
732 struct ctdbd_connection
*new_conn
= NULL
;
735 /* the samba3 ctdb code can't handle NOREPLY yet */
736 flags
&= ~CTDB_CTRL_FLAG_NOREPLY
;
739 status
= ctdbd_init_connection(NULL
, &new_conn
);
741 if (!NT_STATUS_IS_OK(status
)) {
742 DEBUG(10, ("Could not init temp connection: %s\n",
751 req
.hdr
.length
= offsetof(struct ctdb_req_control
, data
) + data
.dsize
;
752 req
.hdr
.ctdb_magic
= CTDB_MAGIC
;
753 req
.hdr
.ctdb_version
= CTDB_VERSION
;
754 req
.hdr
.operation
= CTDB_REQ_CONTROL
;
755 req
.hdr
.reqid
= ++conn
->reqid
;
756 req
.hdr
.destnode
= vnn
;
759 req
.datalen
= data
.dsize
;
761 DEBUG(10, ("ctdbd_control: Sending ctdb packet\n"));
762 ctdb_packet_dump(&req
.hdr
);
764 status
= packet_send(
766 data_blob_const(&req
, offsetof(struct ctdb_req_control
, data
)),
767 data_blob_const(data
.dptr
, data
.dsize
));
769 if (!NT_STATUS_IS_OK(status
)) {
770 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status
)));
774 status
= packet_flush(conn
->pkt
);
776 if (!NT_STATUS_IS_OK(status
)) {
777 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status
)));
778 cluster_fatal("cluster dispatch daemon control write error\n");
781 if (flags
& CTDB_CTRL_FLAG_NOREPLY
) {
782 TALLOC_FREE(new_conn
);
786 status
= ctdb_read_req(conn
, req
.hdr
.reqid
, NULL
, (void *)&reply
);
788 if (!NT_STATUS_IS_OK(status
)) {
789 DEBUG(10, ("ctdb_read_req failed: %s\n", nt_errstr(status
)));
793 if (reply
->hdr
.operation
!= CTDB_REPLY_CONTROL
) {
794 DEBUG(0, ("received invalid reply\n"));
799 if (!(outdata
->dptr
= (uint8
*)talloc_memdup(
800 mem_ctx
, reply
->data
, reply
->datalen
))) {
802 return NT_STATUS_NO_MEMORY
;
804 outdata
->dsize
= reply
->datalen
;
807 (*cstatus
) = reply
->status
;
810 status
= NT_STATUS_OK
;
813 TALLOC_FREE(new_conn
);
819 * see if a remote process exists
821 bool ctdbd_process_exists(struct ctdbd_connection
*conn
, uint32 vnn
, pid_t pid
)
827 data
.dptr
= (uint8_t*)&pid
;
828 data
.dsize
= sizeof(pid
);
830 status
= ctdbd_control(conn
, vnn
, CTDB_CONTROL_PROCESS_EXISTS
, 0, 0,
831 data
, NULL
, NULL
, &cstatus
);
832 if (!NT_STATUS_IS_OK(status
)) {
833 DEBUG(0, (__location__
" ctdb_control for process_exists "
844 char *ctdbd_dbpath(struct ctdbd_connection
*conn
,
845 TALLOC_CTX
*mem_ctx
, uint32_t db_id
)
851 data
.dptr
= (uint8_t*)&db_id
;
852 data
.dsize
= sizeof(db_id
);
854 status
= ctdbd_control(conn
, CTDB_CURRENT_NODE
,
855 CTDB_CONTROL_GETDBPATH
, 0, 0, data
,
856 mem_ctx
, &data
, &cstatus
);
857 if (!NT_STATUS_IS_OK(status
) || cstatus
!= 0) {
858 DEBUG(0,(__location__
" ctdb_control for getdbpath failed\n"));
862 return (char *)data
.dptr
;
866 * attach to a ctdb database
868 NTSTATUS
ctdbd_db_attach(struct ctdbd_connection
*conn
,
869 const char *name
, uint32_t *db_id
, int tdb_flags
)
874 bool persistent
= (tdb_flags
& TDB_CLEAR_IF_FIRST
) == 0;
876 data
.dptr
= (uint8_t*)name
;
877 data
.dsize
= strlen(name
)+1;
879 status
= ctdbd_control(conn
, CTDB_CURRENT_NODE
,
881 ? CTDB_CONTROL_DB_ATTACH_PERSISTENT
882 : CTDB_CONTROL_DB_ATTACH
,
883 0, 0, data
, NULL
, &data
, &cstatus
);
884 if (!NT_STATUS_IS_OK(status
)) {
885 DEBUG(0, (__location__
" ctdb_control for db_attach "
886 "failed: %s\n", nt_errstr(status
)));
890 if (cstatus
!= 0 || data
.dsize
!= sizeof(uint32_t)) {
891 DEBUG(0,(__location__
" ctdb_control for db_attach failed\n"));
892 return NT_STATUS_INTERNAL_ERROR
;
895 *db_id
= *(uint32_t *)data
.dptr
;
896 talloc_free(data
.dptr
);
898 if (!(tdb_flags
& TDB_SEQNUM
)) {
902 data
.dptr
= (uint8_t *)db_id
;
903 data
.dsize
= sizeof(*db_id
);
905 status
= ctdbd_control(conn
, CTDB_CURRENT_NODE
,
906 CTDB_CONTROL_ENABLE_SEQNUM
, 0, 0, data
,
907 NULL
, NULL
, &cstatus
);
908 if (!NT_STATUS_IS_OK(status
) || cstatus
!= 0) {
909 DEBUG(0,(__location__
" ctdb_control for enable seqnum "
911 return NT_STATUS_IS_OK(status
) ? NT_STATUS_INTERNAL_ERROR
:
919 * force the migration of a record to this node
921 NTSTATUS
ctdbd_migrate(struct ctdbd_connection
*conn
, uint32 db_id
,
924 struct ctdb_req_call req
;
925 struct ctdb_reply_call
*reply
;
930 req
.hdr
.length
= offsetof(struct ctdb_req_call
, data
) + key
.dsize
;
931 req
.hdr
.ctdb_magic
= CTDB_MAGIC
;
932 req
.hdr
.ctdb_version
= CTDB_VERSION
;
933 req
.hdr
.operation
= CTDB_REQ_CALL
;
934 req
.hdr
.reqid
= ++conn
->reqid
;
935 req
.flags
= CTDB_IMMEDIATE_MIGRATION
;
936 req
.callid
= CTDB_NULL_FUNC
;
938 req
.keylen
= key
.dsize
;
940 DEBUG(10, ("ctdbd_migrate: Sending ctdb packet\n"));
941 ctdb_packet_dump(&req
.hdr
);
943 status
= packet_send(
945 data_blob_const(&req
, offsetof(struct ctdb_req_call
, data
)),
946 data_blob_const(key
.dptr
, key
.dsize
));
948 if (!NT_STATUS_IS_OK(status
)) {
949 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status
)));
953 status
= packet_flush(conn
->pkt
);
955 if (!NT_STATUS_IS_OK(status
)) {
956 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status
)));
957 cluster_fatal("cluster dispatch daemon control write error\n");
960 status
= ctdb_read_req(conn
, req
.hdr
.reqid
, NULL
, (void *)&reply
);
962 if (!NT_STATUS_IS_OK(status
)) {
963 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status
)));
967 if (reply
->hdr
.operation
!= CTDB_REPLY_CALL
) {
968 DEBUG(0, ("received invalid reply\n"));
969 status
= NT_STATUS_INTERNAL_ERROR
;
973 status
= NT_STATUS_OK
;
981 * remotely fetch a record without locking it or forcing a migration
983 NTSTATUS
ctdbd_fetch(struct ctdbd_connection
*conn
, uint32 db_id
,
984 TDB_DATA key
, TALLOC_CTX
*mem_ctx
, TDB_DATA
*data
)
986 struct ctdb_req_call req
;
987 struct ctdb_reply_call
*reply
;
992 req
.hdr
.length
= offsetof(struct ctdb_req_call
, data
) + key
.dsize
;
993 req
.hdr
.ctdb_magic
= CTDB_MAGIC
;
994 req
.hdr
.ctdb_version
= CTDB_VERSION
;
995 req
.hdr
.operation
= CTDB_REQ_CALL
;
996 req
.hdr
.reqid
= ++conn
->reqid
;
998 req
.callid
= CTDB_FETCH_FUNC
;
1000 req
.keylen
= key
.dsize
;
1002 status
= packet_send(
1004 data_blob_const(&req
, offsetof(struct ctdb_req_call
, data
)),
1005 data_blob_const(key
.dptr
, key
.dsize
));
1007 if (!NT_STATUS_IS_OK(status
)) {
1008 DEBUG(3, ("packet_send failed: %s\n", nt_errstr(status
)));
1012 status
= packet_flush(conn
->pkt
);
1014 if (!NT_STATUS_IS_OK(status
)) {
1015 DEBUG(3, ("write to ctdbd failed: %s\n", nt_errstr(status
)));
1016 cluster_fatal("cluster dispatch daemon control write error\n");
1019 status
= ctdb_read_req(conn
, req
.hdr
.reqid
, NULL
, (void *)&reply
);
1021 if (!NT_STATUS_IS_OK(status
)) {
1022 DEBUG(0, ("ctdb_read_req failed: %s\n", nt_errstr(status
)));
1026 if (reply
->hdr
.operation
!= CTDB_REPLY_CALL
) {
1027 DEBUG(0, ("received invalid reply\n"));
1028 status
= NT_STATUS_INTERNAL_ERROR
;
1032 data
->dsize
= reply
->datalen
;
1033 if (data
->dsize
== 0) {
1038 data
->dptr
= (uint8
*)talloc_memdup(mem_ctx
, &reply
->data
[0],
1040 if (data
->dptr
== NULL
) {
1041 DEBUG(0, ("talloc failed\n"));
1042 status
= NT_STATUS_NO_MEMORY
;
1047 status
= NT_STATUS_OK
;
1053 struct ctdbd_traverse_state
{
1054 void (*fn
)(TDB_DATA key
, TDB_DATA data
, void *private_data
);
1059 * Handle a traverse record coming in on the ctdbd connection
1062 static NTSTATUS
ctdb_traverse_handler(uint8_t *buf
, size_t length
,
1065 struct ctdbd_traverse_state
*state
=
1066 (struct ctdbd_traverse_state
*)private_data
;
1068 struct ctdb_req_message
*m
;
1069 struct ctdb_rec_data
*d
;
1072 m
= (struct ctdb_req_message
*)buf
;
1074 if (length
< sizeof(*m
) || m
->hdr
.length
!= length
) {
1075 DEBUG(0, ("Got invalid message of length %d\n", (int)length
));
1077 return NT_STATUS_UNEXPECTED_IO_ERROR
;
1080 d
= (struct ctdb_rec_data
*)&m
->data
[0];
1081 if (m
->datalen
< sizeof(uint32_t) || m
->datalen
!= d
->length
) {
1082 DEBUG(0, ("Got invalid traverse data of length %d\n",
1085 return NT_STATUS_UNEXPECTED_IO_ERROR
;
1088 key
.dsize
= d
->keylen
;
1089 key
.dptr
= &d
->data
[0];
1090 data
.dsize
= d
->datalen
;
1091 data
.dptr
= &d
->data
[d
->keylen
];
1093 if (key
.dsize
== 0 && data
.dsize
== 0) {
1094 /* end of traverse */
1095 return NT_STATUS_END_OF_FILE
;
1098 if (data
.dsize
< sizeof(struct ctdb_ltdb_header
)) {
1099 DEBUG(0, ("Got invalid ltdb header length %d\n",
1102 return NT_STATUS_UNEXPECTED_IO_ERROR
;
1104 data
.dsize
-= sizeof(struct ctdb_ltdb_header
);
1105 data
.dptr
+= sizeof(struct ctdb_ltdb_header
);
1108 state
->fn(key
, data
, state
->private_data
);
1112 return NT_STATUS_OK
;
1116 Traverse a ctdb database. This uses a kind-of hackish way to open a second
1117 connection to ctdbd to avoid the hairy recursive and async problems with
1121 NTSTATUS
ctdbd_traverse(uint32 db_id
,
1122 void (*fn
)(TDB_DATA key
, TDB_DATA data
,
1123 void *private_data
),
1126 struct ctdbd_connection
*conn
;
1130 struct ctdb_traverse_start t
;
1132 struct ctdbd_traverse_state state
;
1134 status
= ctdbd_init_connection(NULL
, &conn
);
1135 if (!NT_STATUS_IS_OK(status
)) {
1136 DEBUG(0, ("ctdbd_init_connection failed: %s\n",
1137 nt_errstr(status
)));
1142 t
.srvid
= conn
->rand_srvid
;
1143 t
.reqid
= ++conn
->reqid
;
1145 data
.dptr
= (uint8_t *)&t
;
1146 data
.dsize
= sizeof(t
);
1148 status
= ctdbd_control(conn
, CTDB_CURRENT_NODE
,
1149 CTDB_CONTROL_TRAVERSE_START
, conn
->rand_srvid
, 0,
1150 data
, NULL
, NULL
, &cstatus
);
1152 if (!NT_STATUS_IS_OK(status
) || (cstatus
!= 0)) {
1154 DEBUG(0,("ctdbd_control failed: %s, %d\n", nt_errstr(status
),
1157 if (NT_STATUS_IS_OK(status
)) {
1159 * We need a mapping here
1161 status
= NT_STATUS_UNSUCCESSFUL
;
1167 state
.private_data
= private_data
;
1171 status
= NT_STATUS_OK
;
1173 if (packet_handler(conn
->pkt
, ctdb_req_complete
,
1174 ctdb_traverse_handler
, &state
, &status
)) {
1176 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
1177 status
= NT_STATUS_OK
;
1182 * There might be more in the queue
1187 if (!NT_STATUS_IS_OK(status
)) {
1191 status
= ctdb_packet_fd_read_sync(conn
->pkt
);
1193 if (NT_STATUS_EQUAL(status
, NT_STATUS_RETRY
)) {
1195 * There might be more in the queue
1200 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
1201 status
= NT_STATUS_OK
;
1205 if (!NT_STATUS_IS_OK(status
)) {
1206 DEBUG(0, ("packet_fd_read_sync failed: %s\n", nt_errstr(status
)));
1207 cluster_fatal("ctdbd died\n");
1217 This is used to canonicalize a ctdb_sock_addr structure.
1219 static void smbd_ctdb_canonicalize_ip(const struct sockaddr_storage
*in
,
1220 struct sockaddr_storage
*out
)
1222 memcpy(out
, in
, sizeof (*out
));
1225 if (in
->ss_family
== AF_INET6
) {
1226 const char prefix
[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
1227 const struct sockaddr_in6
*in6
= (struct sockaddr_in6
*)in
;
1228 struct sockaddr_in
*out4
= (struct sockaddr_in
*)out
;
1229 if (memcmp(&in6
->sin6_addr
, prefix
, 12) == 0) {
1230 memset(out
, 0, sizeof(*out
));
1231 #ifdef HAVE_SOCK_SIN_LEN
1232 out4
->sin_len
= sizeof(*out
);
1234 out4
->sin_family
= AF_INET
;
1235 out4
->sin_port
= in6
->sin6_port
;
1236 memcpy(&out4
->sin_addr
, &in6
->sin6_addr
.s6_addr32
[3], 4);
1243 * Register us as a server for a particular tcp connection
1246 NTSTATUS
ctdbd_register_ips(struct ctdbd_connection
*conn
,
1247 const struct sockaddr_storage
*_server
,
1248 const struct sockaddr_storage
*_client
,
1249 void (*release_ip_handler
)(const char *ip_addr
,
1250 void *private_data
),
1254 * we still use ctdb_control_tcp for ipv4
1255 * because we want to work against older ctdb
1256 * versions at runtime
1258 struct ctdb_control_tcp p4
;
1259 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1260 struct ctdb_control_tcp_addr p
;
1264 struct sockaddr_storage client
;
1265 struct sockaddr_storage server
;
1268 * Only one connection so far
1270 SMB_ASSERT(conn
->release_ip_handler
== NULL
);
1272 smbd_ctdb_canonicalize_ip(_client
, &client
);
1273 smbd_ctdb_canonicalize_ip(_server
, &server
);
1275 switch (client
.ss_family
) {
1277 p4
.dest
= *(struct sockaddr_in
*)&server
;
1278 p4
.src
= *(struct sockaddr_in
*)&client
;
1279 data
.dptr
= (uint8_t *)&p4
;
1280 data
.dsize
= sizeof(p4
);
1282 #ifdef HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR
1284 p
.dest
.ip6
= *(struct sockaddr_in6
*)&server
;
1285 p
.src
.ip6
= *(struct sockaddr_in6
*)&client
;
1286 data
.dptr
= (uint8_t *)&p
;
1287 data
.dsize
= sizeof(p
);
1291 return NT_STATUS_INTERNAL_ERROR
;
1294 conn
->release_ip_handler
= release_ip_handler
;
1297 * We want to be told about IP releases
1300 status
= register_with_ctdbd(conn
, CTDB_SRVID_RELEASE_IP
);
1301 if (!NT_STATUS_IS_OK(status
)) {
1306 * inform ctdb of our tcp connection, so if IP takeover happens ctdb
1307 * can send an extra ack to trigger a reset for our client, so it
1308 * immediately reconnects
1310 return ctdbd_control(conn
, CTDB_CURRENT_NODE
,
1311 CTDB_CONTROL_TCP_CLIENT
, 0,
1312 CTDB_CTRL_FLAG_NOREPLY
, data
, NULL
, NULL
, NULL
);
1316 * We want to handle reconfigure events
1318 NTSTATUS
ctdbd_register_reconfigure(struct ctdbd_connection
*conn
)
1320 return register_with_ctdbd(conn
, CTDB_SRVID_RECONFIGURE
);
1324 call a control on the local node
1326 NTSTATUS
ctdbd_control_local(struct ctdbd_connection
*conn
, uint32 opcode
,
1327 uint64_t srvid
, uint32_t flags
, TDB_DATA data
,
1328 TALLOC_CTX
*mem_ctx
, TDB_DATA
*outdata
,
1331 return ctdbd_control(conn
, CTDB_CURRENT_NODE
, opcode
, srvid
, flags
, data
, mem_ctx
, outdata
, cstatus
);
1334 NTSTATUS
ctdb_watch_us(struct ctdbd_connection
*conn
)
1336 struct ctdb_client_notify_register reg_data
;
1341 reg_data
.srvid
= CTDB_SRVID_SAMBA_NOTIFY
;
1343 reg_data
.notify_data
[0] = 0;
1345 struct_len
= offsetof(struct ctdb_client_notify_register
,
1346 notify_data
) + reg_data
.len
;
1348 status
= ctdbd_control_local(
1349 conn
, CTDB_CONTROL_REGISTER_NOTIFY
, conn
->rand_srvid
, 0,
1350 make_tdb_data((uint8_t *)®_data
, struct_len
),
1351 NULL
, NULL
, &cstatus
);
1352 if (!NT_STATUS_IS_OK(status
)) {
1353 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1354 nt_errstr(status
)));
1359 NTSTATUS
ctdb_unwatch(struct ctdbd_connection
*conn
)
1361 struct ctdb_client_notify_deregister dereg_data
;
1365 dereg_data
.srvid
= CTDB_SRVID_SAMBA_NOTIFY
;
1367 status
= ctdbd_control_local(
1368 conn
, CTDB_CONTROL_DEREGISTER_NOTIFY
, conn
->rand_srvid
, 0,
1369 make_tdb_data((uint8_t *)&dereg_data
, sizeof(dereg_data
)),
1370 NULL
, NULL
, &cstatus
);
1371 if (!NT_STATUS_IS_OK(status
)) {
1372 DEBUG(1, ("ctdbd_control_local failed: %s\n",
1373 nt_errstr(status
)));
1380 NTSTATUS
ctdbd_init_connection(TALLOC_CTX
*mem_ctx
,
1381 struct ctdbd_connection
**pconn
)
1383 return NT_STATUS_NOT_IMPLEMENTED
;