1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
|
/*
Unix SMB/CIFS implementation.
Samba3 message channels
Copyright (C) Volker Lendecke 2012
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "msg_channel.h"
#include "ctdb_conn.h"
#include "lib/util/tevent_unix.h"
struct msg_channel {
struct ctdb_msg_channel *ctdb_channel;
struct messaging_context *msg;
uint32_t msg_type;
struct tevent_req *pending_req;
struct tevent_context *ev;
struct messaging_rec **msgs;
};
struct msg_channel_init_state {
struct msg_channel *channel;
};
static void msg_channel_init_got_ctdb(struct tevent_req *subreq);
static void msg_channel_init_got_msg(struct messaging_context *msg,
void *priv, uint32_t msg_type,
struct server_id server_id, DATA_BLOB *data);
static int msg_channel_destructor(struct msg_channel *s);
struct tevent_req *msg_channel_init_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct messaging_context *msg,
uint32_t msg_type)
{
struct tevent_req *req, *subreq;
struct msg_channel_init_state *state;
struct server_id pid;
req = tevent_req_create(mem_ctx, &state,
struct msg_channel_init_state);
if (req == NULL) {
return NULL;
}
state->channel = talloc_zero(state, struct msg_channel);
if (tevent_req_nomem(state->channel, req)) {
return tevent_req_post(req, ev);
}
state->channel->msg = msg;
state->channel->msg_type = msg_type;
pid = messaging_server_id(msg);
subreq = ctdb_msg_channel_init_send(state, ev, lp_ctdbd_socket(),
pid.pid);
if (tevent_req_nomem(subreq, req)) {
return tevent_req_post(req, ev);
}
tevent_req_set_callback(subreq, msg_channel_init_got_ctdb, req);
return req;
}
static void msg_channel_init_got_ctdb(struct tevent_req *subreq)
{
struct tevent_req *req = tevent_req_callback_data(
subreq, struct tevent_req);
struct msg_channel_init_state *state = tevent_req_data(
req, struct msg_channel_init_state);
struct msg_channel *s = state->channel;
NTSTATUS status;
int ret;
ret = ctdb_msg_channel_init_recv(subreq, s, &s->ctdb_channel);
TALLOC_FREE(subreq);
if (ret == ENOSYS) {
s->ctdb_channel = NULL;
ret = 0;
}
if (tevent_req_error(req, ret)) {
return;
}
status = messaging_register(s->msg, s, s->msg_type,
msg_channel_init_got_msg);
if (!NT_STATUS_IS_OK(status)) {
tevent_req_error(req, map_errno_from_nt_status(status));
return;
}
talloc_set_destructor(s, msg_channel_destructor);
tevent_req_done(req);
}
static int msg_channel_destructor(struct msg_channel *s)
{
messaging_deregister(s->msg, s->msg_type, s);
return 0;
}
int msg_channel_init_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
struct msg_channel **pchannel)
{
struct msg_channel_init_state *state = tevent_req_data(
req, struct msg_channel_init_state);
int err;
if (tevent_req_is_unix_error(req, &err)) {
return err;
}
*pchannel = talloc_move(mem_ctx, &state->channel);
return 0;
}
int msg_channel_init(TALLOC_CTX *mem_ctx, struct messaging_context *msg,
uint32_t msgtype, struct msg_channel **pchannel)
{
TALLOC_CTX *frame = talloc_stackframe();
struct tevent_context *ev;
struct tevent_req *req;
int err = ENOMEM;
bool ok;
ev = samba_tevent_context_init(frame);
if (ev == NULL) {
goto fail;
}
req = msg_channel_init_send(frame, ev, msg, msgtype);
if (req == NULL) {
goto fail;
}
ok = tevent_req_poll(req, ev);
if (!ok) {
err = errno;
goto fail;
}
err = msg_channel_init_recv(req, mem_ctx, pchannel);
fail:
TALLOC_FREE(frame);
return err;
}
struct msg_read_state {
struct tevent_context *ev;
struct msg_channel *channel;
struct messaging_rec *rec;
};
static void msg_channel_init_got_msg(struct messaging_context *msg,
void *priv, uint32_t msg_type,
struct server_id server_id,
DATA_BLOB *data)
{
struct msg_channel *s = talloc_get_type_abort(
priv, struct msg_channel);
struct messaging_rec *rec;
struct messaging_rec **msgs;
size_t num_msgs;
rec = talloc(s, struct messaging_rec);
if (rec == NULL) {
goto fail;
}
rec->msg_version = 1;
rec->msg_type = msg_type;
rec->dest = server_id;
rec->src = messaging_server_id(msg);
rec->buf.data = (uint8_t *)talloc_memdup(rec, data->data,
data->length);
if (rec->buf.data == NULL) {
goto fail;
}
rec->buf.length = data->length;
if (s->pending_req != NULL) {
struct tevent_req *req = s->pending_req;
struct msg_read_state *state = tevent_req_data(
req, struct msg_read_state);
s->pending_req = NULL;
state->rec = talloc_move(state, &rec);
tevent_req_defer_callback(req, s->ev);
tevent_req_done(req);
return;
}
num_msgs = talloc_array_length(s->msgs);
msgs = talloc_realloc(s, s->msgs, struct messaging_rec *, num_msgs+1);
if (msgs == NULL) {
goto fail;
}
s->msgs = msgs;
s->msgs[num_msgs] = talloc_move(s->msgs, &rec);
return;
fail:
TALLOC_FREE(rec);
}
static void msg_read_got_ctdb(struct tevent_req *subreq);
static int msg_read_state_destructor(struct msg_read_state *s);
struct tevent_req *msg_read_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct msg_channel *channel)
{
struct tevent_req *req;
struct msg_read_state *state;
void *msg_tdb_event;
size_t num_msgs;
req = tevent_req_create(mem_ctx, &state, struct msg_read_state);
if (req == NULL) {
return NULL;
}
state->ev = ev;
state->channel = channel;
if (channel->pending_req != NULL) {
tevent_req_error(req, EBUSY);
return tevent_req_post(req, ev);
}
num_msgs = talloc_array_length(channel->msgs);
if (num_msgs != 0) {
state->rec = talloc_move(state, &channel->msgs[0]);
memmove(channel->msgs, channel->msgs+1,
sizeof(struct messaging_rec *) * (num_msgs-1));
channel->msgs = talloc_realloc(
channel, channel->msgs, struct messaging_rec *,
num_msgs - 1);
tevent_req_done(req);
return tevent_req_post(req, ev);
}
channel->pending_req = req;
talloc_set_destructor(state, msg_read_state_destructor);
channel->ev = ev;
msg_tdb_event = messaging_tdb_event(state, channel->msg, ev);
if (tevent_req_nomem(msg_tdb_event, req)) {
return tevent_req_post(req, ev);
}
if (channel->ctdb_channel != NULL) {
struct tevent_req *subreq;
subreq = ctdb_msg_read_send(state, ev,
channel->ctdb_channel);
if (tevent_req_nomem(subreq, req)) {
return tevent_req_post(req, ev);
}
tevent_req_set_callback(subreq, msg_read_got_ctdb, req);
}
return req;
}
static int msg_read_state_destructor(struct msg_read_state *s)
{
s->channel->pending_req = NULL;
return 0;
}
static void msg_read_got_ctdb(struct tevent_req *subreq)
{
struct tevent_req *req = tevent_req_callback_data(
subreq, struct tevent_req);
struct msg_read_state *state = tevent_req_data(
req, struct msg_read_state);
DATA_BLOB blob;
enum ndr_err_code ndr_err;
int ret;
state->channel->pending_req = NULL;
ret = ctdb_msg_read_recv(subreq, talloc_tos(),
&blob.data, &blob.length);
TALLOC_FREE(subreq);
if (tevent_req_error(req, ret)) {
return;
}
state->rec = talloc(state, struct messaging_rec);
if (tevent_req_nomem(state->rec, req)) {
return;
}
ndr_err = ndr_pull_struct_blob(
&blob, state->rec, state->rec,
(ndr_pull_flags_fn_t)ndr_pull_messaging_rec);
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
DEBUG(1, ("ndr_pull_struct_blob failed: %s\n",
ndr_errstr(ndr_err)));
tevent_req_error(req, ndr_map_error2errno(ndr_err));
return;
}
if (DEBUGLEVEL >= 10) {
NDR_PRINT_DEBUG(messaging_rec, state->rec);
}
if (state->rec->msg_type == state->channel->msg_type) {
tevent_req_done(req);
return;
}
/*
* Got some unexpected msg type, wait for the next one
*/
subreq = ctdb_msg_read_send(state, state->ev,
state->channel->ctdb_channel);
if (tevent_req_nomem(subreq, req)) {
return;
}
tevent_req_set_callback(subreq, msg_read_got_ctdb, req);
state->channel->pending_req = req;
}
int msg_read_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
struct messaging_rec **prec)
{
struct msg_read_state *state = tevent_req_data(
req, struct msg_read_state);
int err;
if (tevent_req_is_unix_error(req, &err)) {
return err;
}
*prec = talloc_move(mem_ctx, &state->rec);
tevent_req_received(req);
return 0;
}
|