2 Unix SMB/CIFS implementation.
4 Copyright (C) Volker Lendecke 2008
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "lib/talloc/talloc.h"
22 #include "lib/tevent/tevent.h"
23 #include "lib/async_req/async_sock.h"
24 #include "lib/util/tevent_unix.h"
28 #define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0)
31 struct async_send_state {
39 static void async_send_handler(struct tevent_context *ev,
40 struct tevent_fd *fde,
41 uint16_t flags, void *private_data);
43 struct tevent_req *async_send_send(TALLOC_CTX *mem_ctx,
44 struct tevent_context *ev,
45 int fd, const void *buf, size_t len,
48 struct tevent_req *result;
49 struct async_send_state *state;
50 struct tevent_fd *fde;
52 result = tevent_req_create(mem_ctx, &state, struct async_send_state);
61 fde = tevent_add_fd(ev, state, fd, TEVENT_FD_WRITE, async_send_handler,
70 static void async_send_handler(struct tevent_context *ev,
71 struct tevent_fd *fde,
72 uint16_t flags, void *private_data)
74 struct tevent_req *req = talloc_get_type_abort(
75 private_data, struct tevent_req);
76 struct async_send_state *state =
77 tevent_req_data(req, struct async_send_state);
79 state->sent = send(state->fd, state->buf, state->len, state->flags);
80 if (state->sent == -1) {
81 tevent_req_error(req, errno);
87 ssize_t async_send_recv(struct tevent_req *req, int *perrno)
89 struct async_send_state *state =
90 tevent_req_data(req, struct async_send_state);
92 if (tevent_req_is_unix_error(req, perrno)) {
98 struct async_recv_state {
106 static void async_recv_handler(struct tevent_context *ev,
107 struct tevent_fd *fde,
108 uint16_t flags, void *private_data);
110 struct tevent_req *async_recv_send(TALLOC_CTX *mem_ctx,
111 struct tevent_context *ev,
112 int fd, void *buf, size_t len, int flags)
114 struct tevent_req *result;
115 struct async_recv_state *state;
116 struct tevent_fd *fde;
118 result = tevent_req_create(mem_ctx, &state, struct async_recv_state);
119 if (result == NULL) {
125 state->flags = flags;
127 fde = tevent_add_fd(ev, state, fd, TEVENT_FD_READ, async_recv_handler,
136 static void async_recv_handler(struct tevent_context *ev,
137 struct tevent_fd *fde,
138 uint16_t flags, void *private_data)
140 struct tevent_req *req = talloc_get_type_abort(
141 private_data, struct tevent_req);
142 struct async_recv_state *state =
143 tevent_req_data(req, struct async_recv_state);
145 state->received = recv(state->fd, state->buf, state->len,
147 if (state->received == -1) {
148 tevent_req_error(req, errno);
151 tevent_req_done(req);
154 ssize_t async_recv_recv(struct tevent_req *req, int *perrno)
156 struct async_recv_state *state =
157 tevent_req_data(req, struct async_recv_state);
159 if (tevent_req_is_unix_error(req, perrno)) {
162 return state->received;
165 struct async_connect_state {
170 socklen_t address_len;
171 struct sockaddr_storage address;
174 static void async_connect_connected(struct tevent_context *ev,
175 struct tevent_fd *fde, uint16_t flags,
179 * @brief async version of connect(2)
180 * @param[in] mem_ctx The memory context to hang the result off
181 * @param[in] ev The event context to work from
182 * @param[in] fd The socket to recv from
183 * @param[in] address Where to connect?
184 * @param[in] address_len Length of *address
185 * @retval The async request
187 * This function sets the socket into non-blocking state to be able to call
188 * connect in an async state. This will be reset when the request is finished.
191 struct tevent_req *async_connect_send(TALLOC_CTX *mem_ctx,
192 struct tevent_context *ev,
193 int fd, const struct sockaddr *address,
194 socklen_t address_len)
196 struct tevent_req *result;
197 struct async_connect_state *state;
198 struct tevent_fd *fde;
200 result = tevent_req_create(
201 mem_ctx, &state, struct async_connect_state);
202 if (result == NULL) {
207 * We have to set the socket to nonblocking for async connect(2). Keep
208 * the old sockflags around.
212 state->sys_errno = 0;
214 state->address_len = address_len;
215 if (address_len > sizeof(state->address)) {
219 memcpy(&state->address, address, address_len);
221 state->old_sockflags = fcntl(fd, F_GETFL, 0);
222 if (state->old_sockflags == -1) {
226 set_blocking(fd, false);
228 state->result = connect(fd, address, address_len);
229 if (state->result == 0) {
230 tevent_req_done(result);
235 * A number of error messages show that something good is progressing
236 * and that we have to wait for readability.
238 * If none of them are present, bail out.
241 if (!(errno == EINPROGRESS || errno == EALREADY ||
245 errno == EAGAIN || errno == EINTR)) {
246 state->sys_errno = errno;
250 fde = tevent_add_fd(ev, state, fd, TEVENT_FD_READ | TEVENT_FD_WRITE,
251 async_connect_connected, result);
253 state->sys_errno = ENOMEM;
259 tevent_req_error(result, state->sys_errno);
261 fcntl(fd, F_SETFL, state->old_sockflags);
262 return tevent_req_post(result, ev);
266 * fde event handler for connect(2)
267 * @param[in] ev The event context that sent us here
268 * @param[in] fde The file descriptor event associated with the connect
269 * @param[in] flags Indicate read/writeability of the socket
270 * @param[in] priv private data, "struct async_req *" in this case
273 static void async_connect_connected(struct tevent_context *ev,
274 struct tevent_fd *fde, uint16_t flags,
277 struct tevent_req *req = talloc_get_type_abort(
278 priv, struct tevent_req);
279 struct async_connect_state *state =
280 tevent_req_data(req, struct async_connect_state);
283 * Stevens, Network Programming says that if there's a
284 * successful connect, the socket is only writable. Upon an
285 * error, it's both readable and writable.
287 if ((flags & (TEVENT_FD_READ|TEVENT_FD_WRITE))
288 == (TEVENT_FD_READ|TEVENT_FD_WRITE)) {
291 ret = connect(state->fd,
292 (struct sockaddr *)(void *)&state->address,
296 tevent_req_done(req);
300 if (errno == EINPROGRESS) {
301 /* Try again later, leave the fde around */
305 tevent_req_error(req, errno);
309 state->sys_errno = 0;
310 tevent_req_done(req);
313 int async_connect_recv(struct tevent_req *req, int *perrno)
315 struct async_connect_state *state =
316 tevent_req_data(req, struct async_connect_state);
319 fcntl(state->fd, F_SETFL, state->old_sockflags);
321 if (tevent_req_is_unix_error(req, &err)) {
326 if (state->sys_errno == 0) {
330 *perrno = state->sys_errno;
334 struct writev_state {
335 struct tevent_context *ev;
343 static void writev_trigger(struct tevent_req *req, void *private_data);
344 static void writev_handler(struct tevent_context *ev, struct tevent_fd *fde,
345 uint16_t flags, void *private_data);
347 struct tevent_req *writev_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
348 struct tevent_queue *queue, int fd,
349 bool err_on_readability,
350 struct iovec *iov, int count)
352 struct tevent_req *req;
353 struct writev_state *state;
355 req = tevent_req_create(mem_ctx, &state, struct writev_state);
361 state->total_size = 0;
362 state->count = count;
363 state->iov = (struct iovec *)talloc_memdup(
364 state, iov, sizeof(struct iovec) * count);
365 if (state->iov == NULL) {
368 state->flags = TEVENT_FD_WRITE;
369 if (err_on_readability) {
370 state->flags |= TEVENT_FD_READ;
374 struct tevent_fd *fde;
375 fde = tevent_add_fd(state->ev, state, state->fd,
376 state->flags, writev_handler, req);
377 if (tevent_req_nomem(fde, req)) {
378 return tevent_req_post(req, ev);
383 if (!tevent_queue_add(queue, ev, req, writev_trigger, NULL)) {
392 static void writev_trigger(struct tevent_req *req, void *private_data)
394 struct writev_state *state = tevent_req_data(req, struct writev_state);
395 struct tevent_fd *fde;
397 fde = tevent_add_fd(state->ev, state, state->fd, state->flags,
398 writev_handler, req);
400 tevent_req_error(req, ENOMEM);
404 static void writev_handler(struct tevent_context *ev, struct tevent_fd *fde,
405 uint16_t flags, void *private_data)
407 struct tevent_req *req = talloc_get_type_abort(
408 private_data, struct tevent_req);
409 struct writev_state *state =
410 tevent_req_data(req, struct writev_state);
411 size_t to_write, written;
416 if (flags & TEVENT_FD_READ) {
417 tevent_req_error(req, EPIPE);
421 for (i=0; i<state->count; i++) {
422 to_write += state->iov[i].iov_len;
425 written = sys_writev(state->fd, state->iov, state->count);
427 tevent_req_error(req, errno);
431 tevent_req_error(req, EPIPE);
434 state->total_size += written;
436 if (written == to_write) {
437 tevent_req_done(req);
442 * We've written less than we were asked to, drop stuff from
446 while (written > 0) {
447 if (written < state->iov[0].iov_len) {
448 state->iov[0].iov_base =
449 (char *)state->iov[0].iov_base + written;
450 state->iov[0].iov_len -= written;
453 written -= state->iov[0].iov_len;
459 ssize_t writev_recv(struct tevent_req *req, int *perrno)
461 struct writev_state *state =
462 tevent_req_data(req, struct writev_state);
464 if (tevent_req_is_unix_error(req, perrno)) {
467 return state->total_size;
470 struct read_packet_state {
474 ssize_t (*more)(uint8_t *buf, size_t buflen, void *private_data);
478 static void read_packet_handler(struct tevent_context *ev,
479 struct tevent_fd *fde,
480 uint16_t flags, void *private_data);
482 struct tevent_req *read_packet_send(TALLOC_CTX *mem_ctx,
483 struct tevent_context *ev,
484 int fd, size_t initial,
485 ssize_t (*more)(uint8_t *buf,
490 struct tevent_req *result;
491 struct read_packet_state *state;
492 struct tevent_fd *fde;
494 result = tevent_req_create(mem_ctx, &state, struct read_packet_state);
495 if (result == NULL) {
501 state->private_data = private_data;
503 state->buf = talloc_array(state, uint8_t, initial);
504 if (state->buf == NULL) {
508 fde = tevent_add_fd(ev, state, fd, TEVENT_FD_READ, read_packet_handler,
519 static void read_packet_handler(struct tevent_context *ev,
520 struct tevent_fd *fde,
521 uint16_t flags, void *private_data)
523 struct tevent_req *req = talloc_get_type_abort(
524 private_data, struct tevent_req);
525 struct read_packet_state *state =
526 tevent_req_data(req, struct read_packet_state);
527 size_t total = talloc_get_size(state->buf);
531 nread = recv(state->fd, state->buf+state->nread, total-state->nread,
534 tevent_req_error(req, errno);
538 tevent_req_error(req, EPIPE);
542 state->nread += nread;
543 if (state->nread < total) {
544 /* Come back later */
549 * We got what was initially requested. See if "more" asks for -- more.
551 if (state->more == NULL) {
552 /* Nobody to ask, this is a async read_data */
553 tevent_req_done(req);
557 more = state->more(state->buf, total, state->private_data);
559 /* We got an invalid packet, tell the caller */
560 tevent_req_error(req, EIO);
564 /* We're done, full packet received */
565 tevent_req_done(req);
569 tmp = TALLOC_REALLOC_ARRAY(state, state->buf, uint8_t, total+more);
570 if (tevent_req_nomem(tmp, req)) {
576 ssize_t read_packet_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
577 uint8_t **pbuf, int *perrno)
579 struct read_packet_state *state =
580 tevent_req_data(req, struct read_packet_state);
582 if (tevent_req_is_unix_error(req, perrno)) {
585 *pbuf = talloc_move(mem_ctx, &state->buf);
586 return talloc_get_size(*pbuf);