2 Unix SMB/CIFS implementation.
3 Samba internal messaging functions
4 Copyright (C) Andrew Tridgell 2000
5 Copyright (C) 2001 by Martin Pool
6 Copyright (C) 2002 by Jeremy Allison
7 Copyright (C) 2007 by Volker Lendecke
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 @defgroup messages Internal messaging framework
28 @brief Module for internal messaging between Samba daemons.
30 The idea is that if a part of Samba wants to do communication with
31 another Samba process then it will do a message_register() of a
32 dispatch function, and use message_send_pid() to send messages to
35 The dispatch function is given the pid of the sender, and it can
36 use that to reply by message_send_pid(). See ping_message() for a
39 @caution Dispatch functions must be able to cope with incoming
40 messages on an *odd* byte boundary.
42 This system doesn't have any inherent size limitations but is not
43 very efficient for large messages or when messages are sent in very
49 #include "dbwrap/dbwrap.h"
53 struct messaging_callback
{
54 struct messaging_callback
*prev
, *next
;
56 void (*fn
)(struct messaging_context
*msg
, void *private_data
,
58 struct server_id server_id
, DATA_BLOB
*data
);
62 /****************************************************************************
63 A useful function for testing the message system.
64 ****************************************************************************/
66 static void ping_message(struct messaging_context
*msg_ctx
,
72 const char *msg
= "none";
75 if (data
->data
!= NULL
) {
76 free_me
= talloc_strndup(talloc_tos(), (char *)data
->data
,
80 DEBUG(1,("INFO: Received PING message from PID %s [%s]\n",
81 procid_str_static(&src
), msg
));
83 messaging_send(msg_ctx
, src
, MSG_PONG
, data
);
86 /****************************************************************************
87 Register/replace a dispatch function for a particular message type.
88 JRA changed Dec 13 2006. Only one message handler now permitted per type.
89 *NOTE*: Dispatch functions must be able to cope with incoming
90 messages on an *odd* byte boundary.
91 ****************************************************************************/
94 struct messaging_context
*msg_ctx
;
102 /****************************************************************************
103 Send one of the messages for the broadcast.
104 ****************************************************************************/
106 static int traverse_fn(struct db_record
*rec
, const struct server_id
*id
,
107 uint32_t msg_flags
, void *state
)
109 struct msg_all
*msg_all
= (struct msg_all
*)state
;
112 /* Don't send if the receiver hasn't registered an interest. */
114 if((msg_flags
& msg_all
->msg_flag
) == 0) {
118 /* If the msg send fails because the pid was not found (i.e. smbd died),
119 * the msg has already been deleted from the messages.tdb.*/
121 status
= messaging_send_buf(msg_all
->msg_ctx
, *id
, msg_all
->msg_type
,
122 (const uint8
*)msg_all
->buf
, msg_all
->len
);
124 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_HANDLE
)) {
127 * If the pid was not found delete the entry from
131 DEBUG(2, ("pid %s doesn't exist\n", procid_str_static(id
)));
133 dbwrap_record_delete(rec
);
140 * Send a message to all smbd processes.
142 * It isn't very efficient, but should be OK for the sorts of
143 * applications that use it. When we need efficient broadcast we can add
146 * @param n_sent Set to the number of messages sent. This should be
147 * equal to the number of processes, but be careful for races.
149 * @retval True for success.
151 bool message_send_all(struct messaging_context
*msg_ctx
,
153 const void *buf
, size_t len
,
156 struct msg_all msg_all
;
158 msg_all
.msg_type
= msg_type
;
159 if (msg_type
< 0x100) {
160 msg_all
.msg_flag
= FLAG_MSG_GENERAL
;
161 } else if (msg_type
> 0x100 && msg_type
< 0x200) {
162 msg_all
.msg_flag
= FLAG_MSG_NMBD
;
163 } else if (msg_type
> 0x200 && msg_type
< 0x300) {
164 msg_all
.msg_flag
= FLAG_MSG_PRINT_GENERAL
;
165 } else if (msg_type
> 0x300 && msg_type
< 0x400) {
166 msg_all
.msg_flag
= FLAG_MSG_SMBD
;
167 } else if (msg_type
> 0x400 && msg_type
< 0x600) {
168 msg_all
.msg_flag
= FLAG_MSG_WINBIND
;
169 } else if (msg_type
> 4000 && msg_type
< 5000) {
170 msg_all
.msg_flag
= FLAG_MSG_DBWRAP
;
178 msg_all
.msg_ctx
= msg_ctx
;
180 serverid_traverse(traverse_fn
, &msg_all
);
182 *n_sent
= msg_all
.n_sent
;
186 struct messaging_context
*messaging_init(TALLOC_CTX
*mem_ctx
,
187 struct event_context
*ev
)
189 struct messaging_context
*ctx
;
192 if (!(ctx
= talloc_zero(mem_ctx
, struct messaging_context
))) {
196 ctx
->id
= procid_self();
199 status
= messaging_tdb_init(ctx
, ctx
, &ctx
->local
);
201 if (!NT_STATUS_IS_OK(status
)) {
202 DEBUG(2, ("messaging_tdb_init failed: %s\n",
208 #ifdef CLUSTER_SUPPORT
209 if (lp_clustering()) {
210 status
= messaging_ctdbd_init(ctx
, ctx
, &ctx
->remote
);
212 if (!NT_STATUS_IS_OK(status
)) {
213 DEBUG(2, ("messaging_ctdbd_init failed: %s\n",
219 ctx
->id
.vnn
= get_my_vnn();
222 messaging_register(ctx
, NULL
, MSG_PING
, ping_message
);
224 /* Register some debugging related messages */
226 register_msg_pool_usage(ctx
);
227 register_dmalloc_msgs(ctx
);
228 debug_register_msgs(ctx
);
233 struct server_id
messaging_server_id(const struct messaging_context
*msg_ctx
)
239 * re-init after a fork
241 NTSTATUS
messaging_reinit(struct messaging_context
*msg_ctx
)
245 TALLOC_FREE(msg_ctx
->local
);
247 msg_ctx
->id
= procid_self();
249 status
= messaging_tdb_init(msg_ctx
, msg_ctx
, &msg_ctx
->local
);
250 if (!NT_STATUS_IS_OK(status
)) {
251 DEBUG(0, ("messaging_tdb_init failed: %s\n",
256 #ifdef CLUSTER_SUPPORT
257 TALLOC_FREE(msg_ctx
->remote
);
259 if (lp_clustering()) {
260 status
= messaging_ctdbd_init(msg_ctx
, msg_ctx
,
263 if (!NT_STATUS_IS_OK(status
)) {
264 DEBUG(1, ("messaging_ctdbd_init failed: %s\n",
277 * Register a dispatch function for a particular message type. Allow multiple
280 NTSTATUS
messaging_register(struct messaging_context
*msg_ctx
,
283 void (*fn
)(struct messaging_context
*msg
,
286 struct server_id server_id
,
289 struct messaging_callback
*cb
;
291 DEBUG(5, ("Registering messaging pointer for type %u - "
293 (unsigned)msg_type
, private_data
));
296 * Only one callback per type
299 for (cb
= msg_ctx
->callbacks
; cb
!= NULL
; cb
= cb
->next
) {
300 /* we allow a second registration of the same message
301 type if it has a different private pointer. This is
302 needed in, for example, the internal notify code,
303 which creates a new notify context for each tree
304 connect, and expects to receive messages to each of
306 if (cb
->msg_type
== msg_type
&& private_data
== cb
->private_data
) {
307 DEBUG(5,("Overriding messaging pointer for type %u - private_data=%p\n",
308 (unsigned)msg_type
, private_data
));
310 cb
->private_data
= private_data
;
315 if (!(cb
= talloc(msg_ctx
, struct messaging_callback
))) {
316 return NT_STATUS_NO_MEMORY
;
319 cb
->msg_type
= msg_type
;
321 cb
->private_data
= private_data
;
323 DLIST_ADD(msg_ctx
->callbacks
, cb
);
328 De-register the function for a particular message type.
330 void messaging_deregister(struct messaging_context
*ctx
, uint32_t msg_type
,
333 struct messaging_callback
*cb
, *next
;
335 for (cb
= ctx
->callbacks
; cb
; cb
= next
) {
337 if ((cb
->msg_type
== msg_type
)
338 && (cb
->private_data
== private_data
)) {
339 DEBUG(5,("Deregistering messaging pointer for type %u - private_data=%p\n",
340 (unsigned)msg_type
, private_data
));
341 DLIST_REMOVE(ctx
->callbacks
, cb
);
348 Send a message to a particular server
350 NTSTATUS
messaging_send(struct messaging_context
*msg_ctx
,
351 struct server_id server
, uint32_t msg_type
,
352 const DATA_BLOB
*data
)
354 #ifdef CLUSTER_SUPPORT
355 if (!procid_is_local(&server
)) {
356 return msg_ctx
->remote
->send_fn(msg_ctx
, server
,
361 return msg_ctx
->local
->send_fn(msg_ctx
, server
, msg_type
, data
,
365 NTSTATUS
messaging_send_buf(struct messaging_context
*msg_ctx
,
366 struct server_id server
, uint32_t msg_type
,
367 const uint8
*buf
, size_t len
)
369 DATA_BLOB blob
= data_blob_const(buf
, len
);
370 return messaging_send(msg_ctx
, server
, msg_type
, &blob
);
374 Dispatch one messaging_rec
376 void messaging_dispatch_rec(struct messaging_context
*msg_ctx
,
377 struct messaging_rec
*rec
)
379 struct messaging_callback
*cb
, *next
;
381 for (cb
= msg_ctx
->callbacks
; cb
!= NULL
; cb
= next
) {
383 if (cb
->msg_type
== rec
->msg_type
) {
384 cb
->fn(msg_ctx
, cb
->private_data
, rec
->msg_type
,
385 rec
->src
, &rec
->buf
);
386 /* we continue looking for matching messages
387 after finding one. This matters for
388 subsystems like the internal notify code
389 which register more than one handler for
390 the same message type */