s3:smbd: fix NULL dereference in case of readlink failure
[Samba.git] / lib / tsocket / tsocket.c
blobb589959f771a2ed796d4c5462a94a7ff32152866
1 /*
2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan Metzmacher 2009
6 ** NOTE! The following LGPL license applies to the tsocket
7 ** library. This does NOT imply that all of Samba is released
8 ** under the LGPL
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 3 of the License, or (at your option) any later version.
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 #include "replace.h"
25 #include "system/filesys.h"
26 #include "tsocket.h"
27 #include "tsocket_internal.h"
28 #include "lib/util/iov_buf.h"
30 int tsocket_simple_int_recv(struct tevent_req *req, int *perrno)
32 enum tevent_req_state state;
33 uint64_t error;
35 if (!tevent_req_is_error(req, &state, &error)) {
36 return 0;
39 switch (state) {
40 case TEVENT_REQ_NO_MEMORY:
41 *perrno = ENOMEM;
42 return -1;
43 case TEVENT_REQ_TIMED_OUT:
44 *perrno = ETIMEDOUT;
45 return -1;
46 case TEVENT_REQ_USER_ERROR:
47 *perrno = (int)error;
48 return -1;
49 default:
50 break;
53 *perrno = EIO;
54 return -1;
57 struct tsocket_address *_tsocket_address_create(TALLOC_CTX *mem_ctx,
58 const struct tsocket_address_ops *ops,
59 void *pstate,
60 size_t psize,
61 const char *type,
62 const char *location)
64 void **ppstate = (void **)pstate;
65 struct tsocket_address *addr;
67 addr = talloc_zero(mem_ctx, struct tsocket_address);
68 if (!addr) {
69 return NULL;
71 addr->ops = ops;
72 addr->location = location;
73 addr->private_data = talloc_size(addr, psize);
74 if (!addr->private_data) {
75 talloc_free(addr);
76 return NULL;
78 talloc_set_name_const(addr->private_data, type);
80 *ppstate = addr->private_data;
81 return addr;
84 char *tsocket_address_string(const struct tsocket_address *addr,
85 TALLOC_CTX *mem_ctx)
87 if (!addr) {
88 return talloc_strdup(mem_ctx, "NULL");
90 return addr->ops->string(addr, mem_ctx);
93 struct tsocket_address *_tsocket_address_copy(const struct tsocket_address *addr,
94 TALLOC_CTX *mem_ctx,
95 const char *location)
97 return addr->ops->copy(addr, mem_ctx, location);
100 struct tdgram_context {
101 const char *location;
102 const struct tdgram_context_ops *ops;
103 void *private_data;
105 struct tevent_req *recvfrom_req;
106 struct tevent_req *sendto_req;
109 static int tdgram_context_destructor(struct tdgram_context *dgram)
111 if (dgram->recvfrom_req) {
112 tevent_req_received(dgram->recvfrom_req);
115 if (dgram->sendto_req) {
116 tevent_req_received(dgram->sendto_req);
119 return 0;
122 struct tdgram_context *_tdgram_context_create(TALLOC_CTX *mem_ctx,
123 const struct tdgram_context_ops *ops,
124 void *pstate,
125 size_t psize,
126 const char *type,
127 const char *location)
129 struct tdgram_context *dgram;
130 void **ppstate = (void **)pstate;
131 void *state;
133 dgram = talloc(mem_ctx, struct tdgram_context);
134 if (dgram == NULL) {
135 return NULL;
137 dgram->location = location;
138 dgram->ops = ops;
139 dgram->recvfrom_req = NULL;
140 dgram->sendto_req = NULL;
142 state = talloc_size(dgram, psize);
143 if (state == NULL) {
144 talloc_free(dgram);
145 return NULL;
147 talloc_set_name_const(state, type);
149 dgram->private_data = state;
151 talloc_set_destructor(dgram, tdgram_context_destructor);
153 *ppstate = state;
154 return dgram;
157 void *_tdgram_context_data(struct tdgram_context *dgram)
159 return dgram->private_data;
162 struct tdgram_recvfrom_state {
163 const struct tdgram_context_ops *ops;
164 struct tdgram_context *dgram;
165 uint8_t *buf;
166 size_t len;
167 struct tsocket_address *src;
170 static int tdgram_recvfrom_destructor(struct tdgram_recvfrom_state *state)
172 if (state->dgram) {
173 state->dgram->recvfrom_req = NULL;
176 return 0;
179 static void tdgram_recvfrom_done(struct tevent_req *subreq);
181 struct tevent_req *tdgram_recvfrom_send(TALLOC_CTX *mem_ctx,
182 struct tevent_context *ev,
183 struct tdgram_context *dgram)
185 struct tevent_req *req;
186 struct tdgram_recvfrom_state *state;
187 struct tevent_req *subreq;
189 req = tevent_req_create(mem_ctx, &state,
190 struct tdgram_recvfrom_state);
191 if (req == NULL) {
192 return NULL;
195 state->ops = dgram->ops;
196 state->dgram = dgram;
197 state->buf = NULL;
198 state->len = 0;
199 state->src = NULL;
201 if (dgram->recvfrom_req) {
202 tevent_req_error(req, EBUSY);
203 goto post;
205 dgram->recvfrom_req = req;
207 talloc_set_destructor(state, tdgram_recvfrom_destructor);
209 subreq = state->ops->recvfrom_send(state, ev, dgram);
210 if (tevent_req_nomem(subreq, req)) {
211 goto post;
213 tevent_req_set_callback(subreq, tdgram_recvfrom_done, req);
215 return req;
217 post:
218 tevent_req_post(req, ev);
219 return req;
222 static void tdgram_recvfrom_done(struct tevent_req *subreq)
224 struct tevent_req *req = tevent_req_callback_data(subreq,
225 struct tevent_req);
226 struct tdgram_recvfrom_state *state = tevent_req_data(req,
227 struct tdgram_recvfrom_state);
228 ssize_t ret;
229 int sys_errno;
231 ret = state->ops->recvfrom_recv(subreq, &sys_errno, state,
232 &state->buf, &state->src);
233 if (ret == -1) {
234 tevent_req_error(req, sys_errno);
235 return;
238 state->len = ret;
240 tevent_req_done(req);
243 ssize_t tdgram_recvfrom_recv(struct tevent_req *req,
244 int *perrno,
245 TALLOC_CTX *mem_ctx,
246 uint8_t **buf,
247 struct tsocket_address **src)
249 struct tdgram_recvfrom_state *state = tevent_req_data(req,
250 struct tdgram_recvfrom_state);
251 ssize_t ret;
253 ret = tsocket_simple_int_recv(req, perrno);
254 if (ret == 0) {
255 *buf = talloc_move(mem_ctx, &state->buf);
256 ret = state->len;
257 if (src) {
258 *src = talloc_move(mem_ctx, &state->src);
262 tevent_req_received(req);
263 return ret;
266 struct tdgram_sendto_state {
267 const struct tdgram_context_ops *ops;
268 struct tdgram_context *dgram;
269 ssize_t ret;
272 static int tdgram_sendto_destructor(struct tdgram_sendto_state *state)
274 if (state->dgram) {
275 state->dgram->sendto_req = NULL;
278 return 0;
281 static void tdgram_sendto_done(struct tevent_req *subreq);
283 struct tevent_req *tdgram_sendto_send(TALLOC_CTX *mem_ctx,
284 struct tevent_context *ev,
285 struct tdgram_context *dgram,
286 const uint8_t *buf, size_t len,
287 const struct tsocket_address *dst)
289 struct tevent_req *req;
290 struct tdgram_sendto_state *state;
291 struct tevent_req *subreq;
293 req = tevent_req_create(mem_ctx, &state,
294 struct tdgram_sendto_state);
295 if (req == NULL) {
296 return NULL;
299 state->ops = dgram->ops;
300 state->dgram = dgram;
301 state->ret = -1;
303 if (len == 0) {
304 tevent_req_error(req, EINVAL);
305 goto post;
308 if (dgram->sendto_req) {
309 tevent_req_error(req, EBUSY);
310 goto post;
312 dgram->sendto_req = req;
314 talloc_set_destructor(state, tdgram_sendto_destructor);
316 subreq = state->ops->sendto_send(state, ev, dgram,
317 buf, len, dst);
318 if (tevent_req_nomem(subreq, req)) {
319 goto post;
321 tevent_req_set_callback(subreq, tdgram_sendto_done, req);
323 return req;
325 post:
326 tevent_req_post(req, ev);
327 return req;
330 static void tdgram_sendto_done(struct tevent_req *subreq)
332 struct tevent_req *req = tevent_req_callback_data(subreq,
333 struct tevent_req);
334 struct tdgram_sendto_state *state = tevent_req_data(req,
335 struct tdgram_sendto_state);
336 ssize_t ret;
337 int sys_errno;
339 ret = state->ops->sendto_recv(subreq, &sys_errno);
340 if (ret == -1) {
341 tevent_req_error(req, sys_errno);
342 return;
345 state->ret = ret;
347 tevent_req_done(req);
350 ssize_t tdgram_sendto_recv(struct tevent_req *req,
351 int *perrno)
353 struct tdgram_sendto_state *state = tevent_req_data(req,
354 struct tdgram_sendto_state);
355 ssize_t ret;
357 ret = tsocket_simple_int_recv(req, perrno);
358 if (ret == 0) {
359 ret = state->ret;
362 tevent_req_received(req);
363 return ret;
366 struct tdgram_disconnect_state {
367 const struct tdgram_context_ops *ops;
370 static void tdgram_disconnect_done(struct tevent_req *subreq);
372 struct tevent_req *tdgram_disconnect_send(TALLOC_CTX *mem_ctx,
373 struct tevent_context *ev,
374 struct tdgram_context *dgram)
376 struct tevent_req *req;
377 struct tdgram_disconnect_state *state;
378 struct tevent_req *subreq;
380 req = tevent_req_create(mem_ctx, &state,
381 struct tdgram_disconnect_state);
382 if (req == NULL) {
383 return NULL;
386 state->ops = dgram->ops;
388 if (dgram->recvfrom_req || dgram->sendto_req) {
389 tevent_req_error(req, EBUSY);
390 goto post;
393 subreq = state->ops->disconnect_send(state, ev, dgram);
394 if (tevent_req_nomem(subreq, req)) {
395 goto post;
397 tevent_req_set_callback(subreq, tdgram_disconnect_done, req);
399 return req;
401 post:
402 tevent_req_post(req, ev);
403 return req;
406 static void tdgram_disconnect_done(struct tevent_req *subreq)
408 struct tevent_req *req = tevent_req_callback_data(subreq,
409 struct tevent_req);
410 struct tdgram_disconnect_state *state = tevent_req_data(req,
411 struct tdgram_disconnect_state);
412 int ret;
413 int sys_errno;
415 ret = state->ops->disconnect_recv(subreq, &sys_errno);
416 if (ret == -1) {
417 tevent_req_error(req, sys_errno);
418 return;
421 tevent_req_done(req);
424 int tdgram_disconnect_recv(struct tevent_req *req,
425 int *perrno)
427 int ret;
429 ret = tsocket_simple_int_recv(req, perrno);
431 tevent_req_received(req);
432 return ret;
435 struct tstream_context {
436 const char *location;
437 const struct tstream_context_ops *ops;
438 void *private_data;
440 struct tevent_req *readv_req;
441 struct tevent_req *writev_req;
444 static int tstream_context_destructor(struct tstream_context *stream)
446 if (stream->readv_req) {
447 tevent_req_received(stream->readv_req);
450 if (stream->writev_req) {
451 tevent_req_received(stream->writev_req);
454 return 0;
457 struct tstream_context *_tstream_context_create(TALLOC_CTX *mem_ctx,
458 const struct tstream_context_ops *ops,
459 void *pstate,
460 size_t psize,
461 const char *type,
462 const char *location)
464 struct tstream_context *stream;
465 void **ppstate = (void **)pstate;
466 void *state;
468 stream = talloc(mem_ctx, struct tstream_context);
469 if (stream == NULL) {
470 return NULL;
472 stream->location = location;
473 stream->ops = ops;
474 stream->readv_req = NULL;
475 stream->writev_req = NULL;
477 state = talloc_size(stream, psize);
478 if (state == NULL) {
479 talloc_free(stream);
480 return NULL;
482 talloc_set_name_const(state, type);
484 stream->private_data = state;
486 talloc_set_destructor(stream, tstream_context_destructor);
488 *ppstate = state;
489 return stream;
492 void *_tstream_context_data(struct tstream_context *stream)
494 return stream->private_data;
497 ssize_t tstream_pending_bytes(struct tstream_context *stream)
499 return stream->ops->pending_bytes(stream);
502 struct tstream_readv_state {
503 const struct tstream_context_ops *ops;
504 struct tstream_context *stream;
505 int ret;
508 static int tstream_readv_destructor(struct tstream_readv_state *state)
510 if (state->stream) {
511 state->stream->readv_req = NULL;
514 return 0;
517 static void tstream_readv_done(struct tevent_req *subreq);
519 struct tevent_req *tstream_readv_send(TALLOC_CTX *mem_ctx,
520 struct tevent_context *ev,
521 struct tstream_context *stream,
522 struct iovec *vector,
523 size_t count)
525 struct tevent_req *req;
526 struct tstream_readv_state *state;
527 struct tevent_req *subreq;
528 ssize_t to_read;
530 req = tevent_req_create(mem_ctx, &state,
531 struct tstream_readv_state);
532 if (req == NULL) {
533 return NULL;
536 state->ops = stream->ops;
537 state->stream = stream;
538 state->ret = -1;
540 /* first check if the input is ok */
541 #ifdef IOV_MAX
542 if (count > IOV_MAX) {
543 tevent_req_error(req, EMSGSIZE);
544 goto post;
546 #endif
548 to_read = iov_buflen(vector, count);
550 if (to_read < 0) {
551 tevent_req_error(req, EMSGSIZE);
552 goto post;
555 if (to_read == 0) {
556 tevent_req_error(req, EINVAL);
557 goto post;
560 if (stream->readv_req) {
561 tevent_req_error(req, EBUSY);
562 goto post;
564 stream->readv_req = req;
566 talloc_set_destructor(state, tstream_readv_destructor);
568 subreq = state->ops->readv_send(state, ev, stream, vector, count);
569 if (tevent_req_nomem(subreq, req)) {
570 goto post;
572 tevent_req_set_callback(subreq, tstream_readv_done, req);
574 return req;
576 post:
577 tevent_req_post(req, ev);
578 return req;
581 static void tstream_readv_done(struct tevent_req *subreq)
583 struct tevent_req *req = tevent_req_callback_data(subreq,
584 struct tevent_req);
585 struct tstream_readv_state *state = tevent_req_data(req,
586 struct tstream_readv_state);
587 ssize_t ret;
588 int sys_errno;
590 ret = state->ops->readv_recv(subreq, &sys_errno);
591 TALLOC_FREE(subreq);
592 if (ret == -1) {
593 tevent_req_error(req, sys_errno);
594 return;
597 state->ret = ret;
599 tevent_req_done(req);
602 int tstream_readv_recv(struct tevent_req *req,
603 int *perrno)
605 struct tstream_readv_state *state = tevent_req_data(req,
606 struct tstream_readv_state);
607 int ret;
609 ret = tsocket_simple_int_recv(req, perrno);
610 if (ret == 0) {
611 ret = state->ret;
614 tevent_req_received(req);
615 return ret;
618 struct tstream_writev_state {
619 const struct tstream_context_ops *ops;
620 struct tstream_context *stream;
621 int ret;
624 static int tstream_writev_destructor(struct tstream_writev_state *state)
626 if (state->stream) {
627 state->stream->writev_req = NULL;
630 return 0;
633 static void tstream_writev_done(struct tevent_req *subreq);
635 struct tevent_req *tstream_writev_send(TALLOC_CTX *mem_ctx,
636 struct tevent_context *ev,
637 struct tstream_context *stream,
638 const struct iovec *vector,
639 size_t count)
641 struct tevent_req *req;
642 struct tstream_writev_state *state;
643 struct tevent_req *subreq;
644 ssize_t to_write;
646 req = tevent_req_create(mem_ctx, &state,
647 struct tstream_writev_state);
648 if (req == NULL) {
649 return NULL;
652 state->ops = stream->ops;
653 state->stream = stream;
654 state->ret = -1;
656 /* first check if the input is ok */
657 #ifdef IOV_MAX
658 if (count > IOV_MAX) {
659 tevent_req_error(req, EMSGSIZE);
660 goto post;
662 #endif
664 to_write = iov_buflen(vector, count);
665 if (to_write < 0) {
666 tevent_req_error(req, EMSGSIZE);
667 goto post;
670 if (to_write == 0) {
671 tevent_req_error(req, EINVAL);
672 goto post;
675 if (stream->writev_req) {
676 tevent_req_error(req, EBUSY);
677 goto post;
679 stream->writev_req = req;
681 talloc_set_destructor(state, tstream_writev_destructor);
683 subreq = state->ops->writev_send(state, ev, stream, vector, count);
684 if (tevent_req_nomem(subreq, req)) {
685 goto post;
687 tevent_req_set_callback(subreq, tstream_writev_done, req);
689 return req;
691 post:
692 tevent_req_post(req, ev);
693 return req;
696 static void tstream_writev_done(struct tevent_req *subreq)
698 struct tevent_req *req = tevent_req_callback_data(subreq,
699 struct tevent_req);
700 struct tstream_writev_state *state = tevent_req_data(req,
701 struct tstream_writev_state);
702 ssize_t ret;
703 int sys_errno;
705 ret = state->ops->writev_recv(subreq, &sys_errno);
706 if (ret == -1) {
707 tevent_req_error(req, sys_errno);
708 return;
711 state->ret = ret;
713 tevent_req_done(req);
716 int tstream_writev_recv(struct tevent_req *req,
717 int *perrno)
719 struct tstream_writev_state *state = tevent_req_data(req,
720 struct tstream_writev_state);
721 int ret;
723 ret = tsocket_simple_int_recv(req, perrno);
724 if (ret == 0) {
725 ret = state->ret;
728 tevent_req_received(req);
729 return ret;
732 struct tstream_disconnect_state {
733 const struct tstream_context_ops *ops;
736 static void tstream_disconnect_done(struct tevent_req *subreq);
738 struct tevent_req *tstream_disconnect_send(TALLOC_CTX *mem_ctx,
739 struct tevent_context *ev,
740 struct tstream_context *stream)
742 struct tevent_req *req;
743 struct tstream_disconnect_state *state;
744 struct tevent_req *subreq;
746 req = tevent_req_create(mem_ctx, &state,
747 struct tstream_disconnect_state);
748 if (req == NULL) {
749 return NULL;
752 state->ops = stream->ops;
754 if (stream->readv_req || stream->writev_req) {
755 tevent_req_error(req, EBUSY);
756 goto post;
759 subreq = state->ops->disconnect_send(state, ev, stream);
760 if (tevent_req_nomem(subreq, req)) {
761 goto post;
763 tevent_req_set_callback(subreq, tstream_disconnect_done, req);
765 return req;
767 post:
768 tevent_req_post(req, ev);
769 return req;
772 static void tstream_disconnect_done(struct tevent_req *subreq)
774 struct tevent_req *req = tevent_req_callback_data(subreq,
775 struct tevent_req);
776 struct tstream_disconnect_state *state = tevent_req_data(req,
777 struct tstream_disconnect_state);
778 int ret;
779 int sys_errno;
781 ret = state->ops->disconnect_recv(subreq, &sys_errno);
782 if (ret == -1) {
783 tevent_req_error(req, sys_errno);
784 return;
787 tevent_req_done(req);
790 int tstream_disconnect_recv(struct tevent_req *req,
791 int *perrno)
793 int ret;
795 ret = tsocket_simple_int_recv(req, perrno);
797 tevent_req_received(req);
798 return ret;