Imported Upstream version 1.9.3
[deb_libnfs.git] / lib / socket.c
CommitLineData
dabf4152
AM
1/*
2 Copyright (C) 2010 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>.
16*/
ee872606
RRS
17#ifdef HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#ifdef AROS
22#include "aros_compat.h"
23#endif
24
5670ec6e
AM
25#ifdef WIN32
26#include "win32_compat.h"
ee872606
RRS
27#endif
28
29#ifdef HAVE_ARPA_INET_H
5670ec6e 30#include <arpa/inet.h>
ee872606
RRS
31#endif
32
33#ifdef HAVE_POLL_H
34#include <poll.h>
35#endif
36
37#ifdef HAVE_UNISTD_H
38#include <unistd.h>
39#endif
40
41#ifdef HAVE_SYS_IOCTL_H
5670ec6e 42#include <sys/ioctl.h>
ee872606
RRS
43#endif
44
45#ifdef HAVE_SYS_SOCKET_H
5670ec6e 46#include <sys/socket.h>
ee872606 47#endif
dabf4152 48
ee872606
RRS
49#ifdef HAVE_NETINET_TCP_H
50#include <netinet/tcp.h>
dabf4152 51#endif
ee872606
RRS
52
53#ifdef HAVE_NETDB_H
54#include <netdb.h>
55#endif
56
dabf4152
AM
57#ifdef HAVE_SYS_FILIO_H
58#include <sys/filio.h>
59#endif
ee872606 60
5670ec6e
AM
61#ifdef HAVE_SYS_SOCKIO_H
62#include <sys/sockio.h>
63#endif
ee872606
RRS
64
65#include <stdio.h>
66#include <stdlib.h>
67#include <assert.h>
68#include <fcntl.h>
69#include <string.h>
70#include <errno.h>
dabf4152 71#include <sys/types.h>
ee872606 72#include "libnfs-zdr.h"
dabf4152
AM
73#include "libnfs.h"
74#include "libnfs-raw.h"
75#include "libnfs-private.h"
76#include "slist.h"
77
5670ec6e
AM
78#ifdef WIN32
79//has to be included after stdlib!!
80#include "win32_errnowrapper.h"
81#endif
82
83
84static int rpc_reconnect_requeue(struct rpc_context *rpc);
85static int rpc_connect_sockaddr_async(struct rpc_context *rpc, struct sockaddr_storage *s);
86
dabf4152
AM
87static void set_nonblocking(int fd)
88{
5670ec6e
AM
89 int v = 0;
90#if defined(WIN32)
91 long nonblocking=1;
ee872606 92 v = ioctl(fd, FIONBIO, &nonblocking);
5670ec6e 93#else
dabf4152
AM
94 v = fcntl(fd, F_GETFL, 0);
95 fcntl(fd, F_SETFL, v | O_NONBLOCK);
5670ec6e 96#endif //FIXME
dabf4152
AM
97}
98
ee872606
RRS
99#ifdef HAVE_NETINET_TCP_H
100int set_tcp_sockopt(int sockfd, int optname, int value)
101{
102 int level;
103
104 #if defined(__FreeBSD__) || defined(__sun) || (defined(__APPLE__) && defined(__MACH__))
105 struct protoent *buf;
106
107 if ((buf = getprotobyname("tcp")) != NULL)
108 level = buf->p_proto;
109 else
110 return -1;
111 #else
112 level = SOL_TCP;
113 #endif
114
115 return setsockopt(sockfd, level, optname, (char *)&value, sizeof(value));
116}
117#endif
118
dabf4152
AM
119int rpc_get_fd(struct rpc_context *rpc)
120{
ee872606
RRS
121 assert(rpc->magic == RPC_CONTEXT_MAGIC);
122
dabf4152
AM
123 return rpc->fd;
124}
125
126int rpc_which_events(struct rpc_context *rpc)
127{
ee872606
RRS
128 int events;
129
130 assert(rpc->magic == RPC_CONTEXT_MAGIC);
131
132 events = rpc->is_connected ? POLLIN : POLLOUT;
dabf4152
AM
133
134 if (rpc->is_udp != 0) {
135 /* for udp sockets we only wait for pollin */
136 return POLLIN;
137 }
138
139 if (rpc->outqueue) {
140 events |= POLLOUT;
141 }
142 return events;
143}
144
145static int rpc_write_to_socket(struct rpc_context *rpc)
146{
ee872606
RRS
147 int32_t count;
148
149 assert(rpc->magic == RPC_CONTEXT_MAGIC);
dabf4152 150
dabf4152
AM
151 if (rpc->fd == -1) {
152 rpc_set_error(rpc, "trying to write but not connected");
153 return -1;
154 }
155
156 while (rpc->outqueue != NULL) {
5670ec6e 157 int64_t total;
dabf4152
AM
158
159 total = rpc->outqueue->outdata.size;
160
5670ec6e 161 count = send(rpc->fd, rpc->outqueue->outdata.data + rpc->outqueue->written, total - rpc->outqueue->written, 0);
dabf4152
AM
162 if (count == -1) {
163 if (errno == EAGAIN || errno == EWOULDBLOCK) {
164 return 0;
165 }
166 rpc_set_error(rpc, "Error when writing to socket :%s(%d)", strerror(errno), errno);
167 return -1;
168 }
169
170 rpc->outqueue->written += count;
171 if (rpc->outqueue->written == total) {
172 struct rpc_pdu *pdu = rpc->outqueue;
173
174 SLIST_REMOVE(&rpc->outqueue, pdu);
175 SLIST_ADD_END(&rpc->waitpdu, pdu);
176 }
177 }
178 return 0;
179}
180
181static int rpc_read_from_socket(struct rpc_context *rpc)
182{
183 int available;
184 int size;
185 int pdu_size;
ee872606
RRS
186 int32_t count;
187
188 assert(rpc->magic == RPC_CONTEXT_MAGIC);
dabf4152
AM
189
190 if (ioctl(rpc->fd, FIONREAD, &available) != 0) {
191 rpc_set_error(rpc, "Ioctl FIONREAD returned error : %d. Closing socket.", errno);
192 return -1;
193 }
5670ec6e 194
dabf4152
AM
195 if (available == 0) {
196 rpc_set_error(rpc, "Socket has been closed");
197 return -1;
198 }
199
200 if (rpc->is_udp) {
201 char *buf;
202 socklen_t socklen = sizeof(rpc->udp_src);
203
204 buf = malloc(available);
205 if (buf == NULL) {
206 rpc_set_error(rpc, "Failed to malloc buffer for recvfrom");
207 return -1;
208 }
209 count = recvfrom(rpc->fd, buf, available, MSG_DONTWAIT, (struct sockaddr *)&rpc->udp_src, &socklen);
210 if (count < 0) {
211 rpc_set_error(rpc, "Failed recvfrom: %s", strerror(errno));
212 free(buf);
ee872606 213 return -1;
dabf4152
AM
214 }
215 if (rpc_process_pdu(rpc, buf, count) != 0) {
216 rpc_set_error(rpc, "Invalid/garbage pdu received from server. Ignoring PDU");
217 free(buf);
218 return -1;
219 }
220 free(buf);
221 return 0;
222 }
223
224 /* read record marker, 4 bytes at the beginning of every pdu */
225 if (rpc->inbuf == NULL) {
226 rpc->insize = 4;
227 rpc->inbuf = malloc(rpc->insize);
228 if (rpc->inbuf == NULL) {
229 rpc_set_error(rpc, "Failed to allocate buffer for record marker, errno:%d. Closing socket.", errno);
230 return -1;
231 }
232 }
233 if (rpc->inpos < 4) {
234 size = 4 - rpc->inpos;
235
5670ec6e 236 count = recv(rpc->fd, rpc->inbuf + rpc->inpos, size, 0);
dabf4152
AM
237 if (count == -1) {
238 if (errno == EINTR) {
239 return 0;
240 }
241 rpc_set_error(rpc, "Read from socket failed, errno:%d. Closing socket.", errno);
242 return -1;
243 }
244 available -= count;
245 rpc->inpos += count;
246 }
247
248 if (available == 0) {
249 return 0;
250 }
251
252 pdu_size = rpc_get_pdu_size(rpc->inbuf);
253 if (rpc->insize < pdu_size) {
254 unsigned char *buf;
ee872606 255
dabf4152
AM
256 buf = malloc(pdu_size);
257 if (buf == NULL) {
258 rpc_set_error(rpc, "Failed to allocate buffer of %d bytes for pdu, errno:%d. Closing socket.", pdu_size, errno);
259 return -1;
260 }
261 memcpy(buf, rpc->inbuf, rpc->insize);
262 free(rpc->inbuf);
263 rpc->inbuf = buf;
264 rpc->insize = rpc_get_pdu_size(rpc->inbuf);
265 }
266
267 size = available;
268 if (size > rpc->insize - rpc->inpos) {
269 size = rpc->insize - rpc->inpos;
270 }
271
5670ec6e 272 count = recv(rpc->fd, rpc->inbuf + rpc->inpos, size, 0);
dabf4152
AM
273 if (count == -1) {
274 if (errno == EINTR) {
275 return 0;
276 }
277 rpc_set_error(rpc, "Read from socket failed, errno:%d. Closing socket.", errno);
278 return -1;
279 }
280 available -= count;
281 rpc->inpos += count;
282
283 if (rpc->inpos == rpc->insize) {
ee872606
RRS
284 char *buf = rpc->inbuf;
285
dabf4152
AM
286 rpc->inbuf = NULL;
287 rpc->insize = 0;
288 rpc->inpos = 0;
ee872606
RRS
289
290 if (rpc_process_pdu(rpc, buf, pdu_size) != 0) {
291 rpc_set_error(rpc, "Invalid/garbage pdu received from server. Closing socket");
292 return -1;
293 }
294 free(buf);
dabf4152
AM
295 }
296
297 return 0;
298}
299
300
301
302int rpc_service(struct rpc_context *rpc, int revents)
303{
ee872606
RRS
304 assert(rpc->magic == RPC_CONTEXT_MAGIC);
305
dabf4152 306 if (revents & POLLERR) {
5670ec6e
AM
307#ifdef WIN32
308 char err = 0;
309#else
dabf4152 310 int err = 0;
5670ec6e 311#endif
dabf4152
AM
312 socklen_t err_size = sizeof(err);
313
314 if (getsockopt(rpc->fd, SOL_SOCKET, SO_ERROR,
5670ec6e 315 (char *)&err, &err_size) != 0 || err != 0) {
dabf4152
AM
316 if (err == 0) {
317 err = errno;
318 }
319 rpc_set_error(rpc, "rpc_service: socket error "
320 "%s(%d).",
321 strerror(err), err);
322 } else {
323 rpc_set_error(rpc, "rpc_service: POLLERR, "
324 "Unknown socket error.");
325 }
5670ec6e
AM
326 if (rpc->connect_cb != NULL) {
327 rpc->connect_cb(rpc, RPC_STATUS_ERROR, rpc->error_string, rpc->connect_data);
328 }
dabf4152
AM
329 return -1;
330 }
331 if (revents & POLLHUP) {
332 rpc_set_error(rpc, "Socket failed with POLLHUP");
5670ec6e
AM
333 if (rpc->connect_cb != NULL) {
334 rpc->connect_cb(rpc, RPC_STATUS_ERROR, rpc->error_string, rpc->connect_data);
335 }
dabf4152
AM
336 return -1;
337 }
338
339 if (rpc->is_connected == 0 && rpc->fd != -1 && revents&POLLOUT) {
340 int err = 0;
341 socklen_t err_size = sizeof(err);
342
343 if (getsockopt(rpc->fd, SOL_SOCKET, SO_ERROR,
5670ec6e 344 (char *)&err, &err_size) != 0 || err != 0) {
dabf4152
AM
345 if (err == 0) {
346 err = errno;
347 }
348 rpc_set_error(rpc, "rpc_service: socket error "
349 "%s(%d) while connecting.",
350 strerror(err), err);
5670ec6e
AM
351 if (rpc->connect_cb != NULL) {
352 rpc->connect_cb(rpc, RPC_STATUS_ERROR,
dabf4152 353 NULL, rpc->connect_data);
5670ec6e 354 }
dabf4152
AM
355 return -1;
356 }
357
358 rpc->is_connected = 1;
5670ec6e
AM
359 if (rpc->connect_cb != NULL) {
360 rpc->connect_cb(rpc, RPC_STATUS_SUCCESS, NULL, rpc->connect_data);
361 }
dabf4152
AM
362 return 0;
363 }
364
5670ec6e
AM
365 if (revents & POLLIN) {
366 if (rpc_read_from_socket(rpc) != 0) {
367 rpc_reconnect_requeue(rpc);
368 return 0;
369 }
370 }
371
dabf4152
AM
372 if (revents & POLLOUT && rpc->outqueue != NULL) {
373 if (rpc_write_to_socket(rpc) != 0) {
374 rpc_set_error(rpc, "write to socket failed");
375 return -1;
376 }
377 }
378
5670ec6e
AM
379 return 0;
380}
381
382void rpc_set_autoreconnect(struct rpc_context *rpc)
383{
ee872606
RRS
384 assert(rpc->magic == RPC_CONTEXT_MAGIC);
385
5670ec6e
AM
386 rpc->auto_reconnect = 1;
387}
388
389void rpc_unset_autoreconnect(struct rpc_context *rpc)
390{
ee872606
RRS
391 assert(rpc->magic == RPC_CONTEXT_MAGIC);
392
5670ec6e
AM
393 rpc->auto_reconnect = 0;
394}
395
ee872606
RRS
396void rpc_set_tcp_syncnt(struct rpc_context *rpc, int v)
397{
398 assert(rpc->magic == RPC_CONTEXT_MAGIC);
399
400 rpc->tcp_syncnt = v;
401}
402
403#ifndef TCP_SYNCNT
404#define TCP_SYNCNT 7
405#endif
406
5670ec6e
AM
407static int rpc_connect_sockaddr_async(struct rpc_context *rpc, struct sockaddr_storage *s)
408{
409 int socksize;
410
ee872606
RRS
411 assert(rpc->magic == RPC_CONTEXT_MAGIC);
412
5670ec6e
AM
413 switch (s->ss_family) {
414 case AF_INET:
415 socksize = sizeof(struct sockaddr_in);
416 rpc->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
ee872606
RRS
417#ifdef HAVE_NETINET_TCP_H
418 if (rpc->tcp_syncnt != RPC_PARAM_UNDEFINED) {
419 set_tcp_sockopt(rpc->fd, TCP_SYNCNT, rpc->tcp_syncnt);
420 }
421#endif
5670ec6e
AM
422 break;
423 default:
424 rpc_set_error(rpc, "Can not handle AF_FAMILY:%d", s->ss_family);
425 return -1;
426 }
427
428 if (rpc->fd == -1) {
429 rpc_set_error(rpc, "Failed to open socket");
430 return -1;
431 }
432
5670ec6e
AM
433 /* Some systems allow you to set capabilities on an executable
434 * to allow the file to be executed with privilege to bind to
435 * privileged system ports, even if the user is not root.
436 *
437 * Opportunistically try to bind the socket to a low numbered
438 * system port in the hope that the user is either root or the
439 * executable has the CAP_NET_BIND_SERVICE.
440 *
441 * As soon as we fail the bind() with EACCES we know we will never
442 * be able to bind to a system port so we terminate the loop.
443 *
444 * On linux, use
445 * sudo setcap 'cap_net_bind_service=+ep' /path/executable
446 * to make the executable able to bind to a system port.
ee872606
RRS
447 *
448 * On Windows, there is no concept of privileged ports. Thus
449 * binding will usually succeed.
5670ec6e 450 */
ee872606
RRS
451 {
452 struct sockaddr_in sin;
453 static int portOfs = 0;
454 const int firstPort = 512; /* >= 512 according to Sun docs */
455 const int portCount = IPPORT_RESERVED - firstPort;
456 int startOfs, port, rc;
457
458 if (portOfs == 0) {
459 portOfs = time(NULL) % 400;
dabf4152 460 }
ee872606
RRS
461 startOfs = portOfs;
462 do {
463 rc = -1;
464 port = htons(firstPort + portOfs);
465 portOfs = (portOfs + 1) % portCount;
466
467 /* skip well-known ports */
468 if (!getservbyport(port, "tcp")) {
469 memset(&sin, 0, sizeof(sin));
470 sin.sin_port = port;
471 sin.sin_family = AF_INET;
472 sin.sin_addr.s_addr = 0;
473
474 rc = bind(rpc->fd, (struct sockaddr *)&sin, sizeof(struct sockaddr_in));
475#if !defined(WIN32)
476 /* we got EACCES, so don't try again */
477 if (rc != 0 && errno == EACCES)
478 break;
5670ec6e 479#endif
ee872606
RRS
480 }
481 } while (rc != 0 && portOfs != startOfs);
482 }
dabf4152 483
5670ec6e 484 set_nonblocking(rpc->fd);
dabf4152 485
ee872606
RRS
486 if (connect(rpc->fd, (struct sockaddr *)s, socksize) != 0 && errno != EINPROGRESS) {
487 rpc_set_error(rpc, "connect() to server failed. %s(%d)", strerror(errno), errno);
5670ec6e 488 return -1;
ee872606 489 }
5670ec6e
AM
490
491 return 0;
ee872606 492}
dabf4152
AM
493
494int rpc_connect_async(struct rpc_context *rpc, const char *server, int port, rpc_cb cb, void *private_data)
495{
5670ec6e 496 struct sockaddr_in *sin = (struct sockaddr_in *)&rpc->s;
dabf4152 497
ee872606
RRS
498 assert(rpc->magic == RPC_CONTEXT_MAGIC);
499
dabf4152
AM
500 if (rpc->fd != -1) {
501 rpc_set_error(rpc, "Trying to connect while already connected");
502 return -1;
503 }
504
505 if (rpc->is_udp != 0) {
506 rpc_set_error(rpc, "Trying to connect on UDP socket");
507 return -1;
508 }
509
5670ec6e
AM
510 rpc->auto_reconnect = 0;
511
dabf4152
AM
512 sin->sin_family = AF_INET;
513 sin->sin_port = htons(port);
514 if (inet_pton(AF_INET, server, &sin->sin_addr) != 1) {
515 rpc_set_error(rpc, "Not a valid server ip address");
516 return -1;
517 }
518
5670ec6e
AM
519
520 switch (rpc->s.ss_family) {
dabf4152 521 case AF_INET:
dabf4152 522#ifdef HAVE_SOCKADDR_LEN
5670ec6e 523 sin->sin_len = sizeof(struct sockaddr_in);
dabf4152 524#endif
dabf4152
AM
525 break;
526 }
527
dabf4152
AM
528 rpc->connect_cb = cb;
529 rpc->connect_data = private_data;
530
5670ec6e 531 if (rpc_connect_sockaddr_async(rpc, &rpc->s) != 0) {
dabf4152 532 return -1;
5670ec6e 533 }
dabf4152
AM
534
535 return 0;
ee872606 536}
dabf4152
AM
537
538int rpc_disconnect(struct rpc_context *rpc, char *error)
539{
ee872606
RRS
540 assert(rpc->magic == RPC_CONTEXT_MAGIC);
541
5670ec6e
AM
542 rpc_unset_autoreconnect(rpc);
543
dabf4152
AM
544 if (rpc->fd != -1) {
545 close(rpc->fd);
546 }
547 rpc->fd = -1;
548
549 rpc->is_connected = 0;
550
551 rpc_error_all_pdus(rpc, error);
552
553 return 0;
554}
555
5670ec6e
AM
556static void reconnect_cb(struct rpc_context *rpc, int status, void *data _U_, void *private_data)
557{
ee872606
RRS
558 assert(rpc->magic == RPC_CONTEXT_MAGIC);
559
5670ec6e
AM
560 if (status != RPC_STATUS_SUCCESS) {
561 rpc_error_all_pdus(rpc, "RPC ERROR: Failed to reconnect async");
562 return;
563 }
564
565 rpc->is_connected = 1;
566 rpc->connect_cb = NULL;
567}
568
569/* disconnect but do not error all PDUs, just move pdus in-flight back to the outqueue and reconnect */
570static int rpc_reconnect_requeue(struct rpc_context *rpc)
571{
572 struct rpc_pdu *pdu;
573
ee872606
RRS
574 assert(rpc->magic == RPC_CONTEXT_MAGIC);
575
5670ec6e 576 if (rpc->fd != -1) {
5670ec6e 577 close(rpc->fd);
5670ec6e
AM
578 }
579 rpc->fd = -1;
580
581 rpc->is_connected = 0;
582
583 /* socket is closed so we will not get any replies to any commands
584 * in flight. Move them all over from the waitpdu queue back to the out queue
585 */
586 for (pdu=rpc->waitpdu; pdu; pdu=pdu->next) {
587 SLIST_REMOVE(&rpc->waitpdu, pdu);
588 SLIST_ADD(&rpc->outqueue, pdu);
589 /* we have to re-send the whole pdu again */
590 pdu->written = 0;
591 }
592
593 if (rpc->auto_reconnect != 0) {
594 rpc->connect_cb = reconnect_cb;
595
596 if (rpc_connect_sockaddr_async(rpc, &rpc->s) != 0) {
597 rpc_error_all_pdus(rpc, "RPC ERROR: Failed to reconnect async");
598 return -1;
599 }
600 }
601
602 return 0;
603}
604
dabf4152
AM
605
606int rpc_bind_udp(struct rpc_context *rpc, char *addr, int port)
607{
608 struct addrinfo *ai = NULL;
609 char service[6];
610
ee872606
RRS
611 assert(rpc->magic == RPC_CONTEXT_MAGIC);
612
dabf4152
AM
613 if (rpc->is_udp == 0) {
614 rpc_set_error(rpc, "Cant not bind UDP. Not UDP context");
615 return -1;
616 }
617
5670ec6e 618 sprintf(service, "%d", port);
dabf4152
AM
619 if (getaddrinfo(addr, service, NULL, &ai) != 0) {
620 rpc_set_error(rpc, "Invalid address:%s. "
ee872606 621 "Can not resolv into IPv4/v6 structure.", addr);
dabf4152
AM
622 return -1;
623 }
624
625 switch(ai->ai_family) {
626 case AF_INET:
627 rpc->fd = socket(ai->ai_family, SOCK_DGRAM, 0);
628 if (rpc->fd == -1) {
ee872606 629 rpc_set_error(rpc, "Failed to create UDP socket: %s", strerror(errno));
dabf4152
AM
630 freeaddrinfo(ai);
631 return -1;
632 }
633
634 if (bind(rpc->fd, (struct sockaddr *)ai->ai_addr, sizeof(struct sockaddr_in)) != 0) {
ee872606 635 rpc_set_error(rpc, "Failed to bind to UDP socket: %s",strerror(errno));
dabf4152
AM
636 freeaddrinfo(ai);
637 return -1;
638 }
639 break;
640 default:
641 rpc_set_error(rpc, "Can not handle UPD sockets of family %d yet", ai->ai_family);
642 freeaddrinfo(ai);
643 return -1;
644 }
645
646 freeaddrinfo(ai);
647
648 return 0;
649}
650
651int rpc_set_udp_destination(struct rpc_context *rpc, char *addr, int port, int is_broadcast)
652{
653 struct addrinfo *ai = NULL;
654 char service[6];
655
ee872606
RRS
656 assert(rpc->magic == RPC_CONTEXT_MAGIC);
657
dabf4152
AM
658 if (rpc->is_udp == 0) {
659 rpc_set_error(rpc, "Can not set destination sockaddr. Not UDP context");
660 return -1;
661 }
662
5670ec6e 663 sprintf(service, "%d", port);
dabf4152
AM
664 if (getaddrinfo(addr, service, NULL, &ai) != 0) {
665 rpc_set_error(rpc, "Invalid address:%s. "
ee872606 666 "Can not resolv into IPv4/v6 structure.", addr);
dabf4152
AM
667 return -1;
668 }
669
670 if (rpc->udp_dest) {
671 free(rpc->udp_dest);
672 rpc->udp_dest = NULL;
673 }
674 rpc->udp_dest = malloc(ai->ai_addrlen);
675 if (rpc->udp_dest == NULL) {
676 rpc_set_error(rpc, "Out of memory. Failed to allocate sockaddr structure");
ee872606 677 freeaddrinfo(ai);
dabf4152
AM
678 return -1;
679 }
680 memcpy(rpc->udp_dest, ai->ai_addr, ai->ai_addrlen);
681 freeaddrinfo(ai);
682
683 rpc->is_broadcast = is_broadcast;
5670ec6e 684 setsockopt(rpc->fd, SOL_SOCKET, SO_BROADCAST, (char *)&is_broadcast, sizeof(is_broadcast));
dabf4152
AM
685
686 return 0;
687}
688
689struct sockaddr *rpc_get_recv_sockaddr(struct rpc_context *rpc)
690{
ee872606
RRS
691 assert(rpc->magic == RPC_CONTEXT_MAGIC);
692
dabf4152
AM
693 return (struct sockaddr *)&rpc->udp_src;
694}
5670ec6e
AM
695
696int rpc_queue_length(struct rpc_context *rpc)
697{
698 int i=0;
699 struct rpc_pdu *pdu;
700
ee872606
RRS
701 assert(rpc->magic == RPC_CONTEXT_MAGIC);
702
5670ec6e
AM
703 for(pdu = rpc->outqueue; pdu; pdu = pdu->next) {
704 i++;
705 }
706 for(pdu = rpc->waitpdu; pdu; pdu = pdu->next) {
707 i++;
708 }
709 return i;
710}
ee872606
RRS
711
712void rpc_set_fd(struct rpc_context *rpc, int fd)
713{
714 assert(rpc->magic == RPC_CONTEXT_MAGIC);
715
716 rpc->fd = fd;
717}