lib: Make messaging_send_iov_from return 0/errno
[Samba.git] / source3 / include / messages.h
blob9a3ea25b6494d4ee6f663354453e6a77842e8014
1 /*
2 Unix SMB/CIFS implementation.
3 messages.c header
4 Copyright (C) Andrew Tridgell 2000
5 Copyright (C) 2001, 2002 by Martin Pool
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 #ifndef _MESSAGES_H_
22 #define _MESSAGES_H_
24 /* change the message version with any incompatible changes in the protocol */
25 #define MESSAGE_VERSION 2
28 * Special flags passed to message_send. Allocated from the top, lets see when
29 * it collides with the message types in the lower 16 bits :-)
33 * Under high load, this message can be dropped. Use for notify-style
34 * messages that are not critical for correct operation.
36 #define MSG_FLAG_LOWPRIORITY 0x80000000
39 /* Flags to classify messages - used in message_send_all() */
40 /* Sender will filter by flag. */
42 #define FLAG_MSG_GENERAL 0x0001
43 #define FLAG_MSG_SMBD 0x0002
44 #define FLAG_MSG_NMBD 0x0004
45 #define FLAG_MSG_WINBIND 0x0008
46 #define FLAG_MSG_PRINT_GENERAL 0x0010
47 /* dbwrap messages 4001-4999 */
48 #define FLAG_MSG_DBWRAP 0x0020
51 * ctdb gives us 64-bit server ids for messaging_send. This is done to avoid
52 * pid clashes and to be able to register for special messages like "all
53 * smbds".
55 * Normal individual server id's have the upper 32 bits to 0, I picked "1" for
56 * Samba, other subsystems might use something else.
59 #define MSG_SRVID_SAMBA 0x0000000100000000LL
61 #include "librpc/gen_ndr/server_id.h"
63 #define MSG_BROADCAST_PID_STR "0:0"
65 struct messaging_context;
66 struct messaging_rec;
68 struct messaging_backend {
69 int (*send_fn)(struct server_id src,
70 struct server_id pid, int msg_type,
71 const struct iovec *iov, int iovlen,
72 const int *fds, size_t num_fds,
73 struct messaging_backend *backend);
74 void *private_data;
77 int messaging_ctdbd_init(struct messaging_context *msg_ctx,
78 TALLOC_CTX *mem_ctx,
79 struct messaging_backend **presult);
80 struct ctdbd_connection *messaging_ctdbd_connection(void);
82 bool message_send_all(struct messaging_context *msg_ctx,
83 int msg_type,
84 const void *buf, size_t len,
85 int *n_sent);
86 struct messaging_context *messaging_init(TALLOC_CTX *mem_ctx,
87 struct tevent_context *ev);
89 struct server_id messaging_server_id(const struct messaging_context *msg_ctx);
90 struct tevent_context *messaging_tevent_context(
91 struct messaging_context *msg_ctx);
92 struct server_id_db *messaging_names_db(struct messaging_context *msg_ctx);
95 * re-init after a fork
97 NTSTATUS messaging_reinit(struct messaging_context *msg_ctx);
99 NTSTATUS messaging_register(struct messaging_context *msg_ctx,
100 void *private_data,
101 uint32_t msg_type,
102 void (*fn)(struct messaging_context *msg,
103 void *private_data,
104 uint32_t msg_type,
105 struct server_id server_id,
106 DATA_BLOB *data));
107 void messaging_deregister(struct messaging_context *ctx, uint32_t msg_type,
108 void *private_data);
111 * CAVEAT:
113 * While the messaging_send*() functions are synchronuous by API,
114 * they trigger a tevent-based loop upon sending bigger messages.
116 * Hence callers should not use these in purely synchonous code,
117 * but run a tevent_loop instead.
119 NTSTATUS messaging_send(struct messaging_context *msg_ctx,
120 struct server_id server,
121 uint32_t msg_type, const DATA_BLOB *data);
123 NTSTATUS messaging_send_buf(struct messaging_context *msg_ctx,
124 struct server_id server, uint32_t msg_type,
125 const uint8_t *buf, size_t len);
126 int messaging_send_iov_from(struct messaging_context *msg_ctx,
127 struct server_id src, struct server_id dst,
128 uint32_t msg_type,
129 const struct iovec *iov, int iovlen,
130 const int *fds, size_t num_fds);
131 NTSTATUS messaging_send_iov(struct messaging_context *msg_ctx,
132 struct server_id server, uint32_t msg_type,
133 const struct iovec *iov, int iovlen,
134 const int *fds, size_t num_fds);
136 struct tevent_req *messaging_filtered_read_send(
137 TALLOC_CTX *mem_ctx, struct tevent_context *ev,
138 struct messaging_context *msg_ctx,
139 bool (*filter)(struct messaging_rec *rec, void *private_data),
140 void *private_data);
141 int messaging_filtered_read_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
142 struct messaging_rec **presult);
144 struct tevent_req *messaging_read_send(TALLOC_CTX *mem_ctx,
145 struct tevent_context *ev,
146 struct messaging_context *msg,
147 uint32_t msg_type);
148 int messaging_read_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
149 struct messaging_rec **presult);
151 struct tevent_req *messaging_handler_send(
152 TALLOC_CTX *mem_ctx, struct tevent_context *ev,
153 struct messaging_context *msg_ctx, uint32_t msg_type,
154 bool (*handler)(struct messaging_context *msg_ctx,
155 struct messaging_rec **rec, void *private_data),
156 void *private_data);
157 int messaging_handler_recv(struct tevent_req *req);
159 int messaging_cleanup(struct messaging_context *msg_ctx, pid_t pid);
161 bool messaging_parent_dgm_cleanup_init(struct messaging_context *msg);
163 #include "librpc/gen_ndr/ndr_messaging.h"
165 #endif