25#include <freeradius-devel/bio/fd_priv.h>
26#include <freeradius-devel/bio/null.h>
33# define SOL_IP IPPROTO_IP
47# ifdef IPV6_RECVPKTINFO
48# include <linux/version.h>
49# if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,14)
50# ifdef IPV6_2292PKTINFO
51# undef IPV6_RECVPKTINFO
53# define IPV6_RECVPKTINFO IPV6_2292PKTINFO
54# define IPV6_PKTINFO IPV6_2292PKTINFO
58# elif defined(IPV6_2292PKTINFO)
59# define IPV6_RECVPKTINFO IPV6_2292PKTINFO
72# if !defined(IPV6_RECVPKTINFO) && defined(IPV6_PKTINFO)
73# define IPV6_RECVPKTINFO IPV6_PKTINFO
79# elif !defined(IPV6_PKTINFO)
80# undef IPV6_RECVPKTINFO
84#define ADDR_INIT do { \
85 addr->when = fr_time(); \
86 addr->socket.type = my->info.socket.type; \
87 addr->socket.fd = -1; \
88 addr->socket.inet.ifindex = my->info.socket.inet.ifindex; \
103 if (
my->connect.ev) {
105 my->connect.ev = NULL;
108 if (
my->connect.el) {
110 my->connect.el = NULL;
113 if (
my->cb.shutdown)
my->cb.shutdown(&
my->bio);
137 my->info.write_blocked =
false;
154 rcode = read(
my->info.socket.fd,
buffer, size);
191 rcode = read(
my->info.socket.fd,
buffer, size);
192 if (rcode == 0)
return rcode;
207 struct sockaddr_storage sockaddr;
210 salen =
sizeof(sockaddr);
212 rcode = recvfrom(
my->info.socket.fd,
buffer, size, 0, (
struct sockaddr *) &sockaddr, &salen);
218 addr->
socket.inet.dst_ipaddr =
my->info.socket.inet.src_ipaddr;
219 addr->
socket.inet.dst_port =
my->info.socket.inet.src_port;
225 if (rcode == 0)
return rcode;
262 rcode = write(
my->info.socket.fd,
buffer, size);
279 struct sockaddr_storage sockaddr;
290 rcode = sendto(
my->info.socket.fd,
buffer, size, 0, (
struct sockaddr *) &sockaddr, salen);
298#if defined(IP_PKTINFO) || defined(IP_RECVDSTADDR) || defined(IPV6_PKTINFO)
303 struct sockaddr_storage from;
306#ifdef STATIC_ANALYZER
307 from.ss_family = AF_UNSPEC;
310 memset(&
my->cbuf, 0,
sizeof(
my->cbuf));
311 memset(&
my->msgh, 0,
sizeof(
struct msghdr));
313 my->iov = (
struct iovec) {
318 my->msgh = (
struct msghdr) {
319 .msg_control =
my->cbuf,
320 .msg_controllen =
sizeof(
my->cbuf),
322 .msg_namelen =
sizeof(from),
329 rcode = recvmsg(
my->info.socket.fd, &
my->msgh, 0);
334 &from,
my->msgh.msg_namelen);
337 if (rcode == 0)
return rcode;
345#if defined(IP_PKTINFO) || defined(IP_RECVDSTADDR)
352 struct cmsghdr *cmsg;
357 rcode = fd_fd_recvfromto_common(
my, packet_ctx,
buffer, size);
358 if (rcode <= 0)
return rcode;
362 for (cmsg = CMSG_FIRSTHDR(&
my->msgh);
364 cmsg = CMSG_NXTHDR(&
my->msgh, cmsg)) {
368 if ((cmsg->cmsg_level ==
SOL_IP) &&
369 (cmsg->cmsg_type == IP_PKTINFO)) {
370 struct in_pktinfo *i = (
struct in_pktinfo *) CMSG_DATA(cmsg);
371 struct sockaddr_in to;
373 to.sin_addr = i->ipi_addr;
376 (
struct sockaddr_storage *) &to,
sizeof(
struct sockaddr_in));
377 addr->
socket.inet.ifindex = i->ipi_ifindex;
383 if ((cmsg->cmsg_level == IPPROTO_IP) &&
384 (cmsg->cmsg_type == IP_RECVDSTADDR)) {
385 struct in_addr *i = (
struct in_addr *) CMSG_DATA(cmsg);
386 struct sockaddr_in to;
390 (
struct sockaddr_storage *) &to,
sizeof(
struct sockaddr_in));
396 if ((cmsg->cmsg_level ==
SOL_IP) && (cmsg->cmsg_type == SO_TIMESTAMPNS)) {
400#elif defined(SO_TIMESTAMP)
401 if ((cmsg->cmsg_level ==
SOL_IP) && (cmsg->cmsg_type == SO_TIMESTAMP)) {
416static
ssize_t fr_bio_fd_sendfromto4(
fr_bio_t *bio,
void *packet_ctx, const
void *
buffer,
size_t size)
420 struct cmsghdr *cmsg;
421 struct sockaddr_storage to;
426 memset(&
my->cbuf, 0,
sizeof(
my->cbuf));
427 memset(&
my->msgh, 0,
sizeof(
struct msghdr));
431 my->iov = (
struct iovec) {
436 my->msgh = (
struct msghdr) {
437 .msg_control =
my->cbuf,
440 .msg_namelen = to_len,
448 struct in_pktinfo *pkt;
450 my->msgh.msg_controllen = CMSG_SPACE(
sizeof(*pkt));
452 cmsg = CMSG_FIRSTHDR(&
my->msgh);
453 cmsg->cmsg_level =
SOL_IP;
454 cmsg->cmsg_type = IP_PKTINFO;
455 cmsg->cmsg_len = CMSG_LEN(
sizeof(*pkt));
457 pkt = (
struct in_pktinfo *) CMSG_DATA(cmsg);
458 memset(pkt, 0,
sizeof(*pkt));
459 pkt->ipi_spec_dst = addr->
socket.inet.src_ipaddr.addr.v4;
460 pkt->ipi_ifindex = addr->
socket.inet.ifindex;
462#elif defined(IP_SENDSRCADDR)
465 my->msgh.msg_controllen = CMSG_SPACE(
sizeof(*
in));
467 cmsg = CMSG_FIRSTHDR(&
my->msgh);
468 cmsg->cmsg_level = IPPROTO_IP;
469 cmsg->cmsg_type = IP_SENDSRCADDR;
470 cmsg->cmsg_len = CMSG_LEN(
sizeof(*
in));
472 in = (
struct in_addr *) CMSG_DATA(cmsg);
473 *
in = addr->
socket.inet.src_ipaddr.addr.v4;
478 rcode = sendmsg(
my->info.socket.fd, &
my->msgh, 0);
485static inline int fr_bio_fd_udpfromto_init4(
int fd)
487 int proto = 0, flag = 0, opt = 1;
489#ifdef HAVE_IP_PKTINFO
496#elif defined(IP_RECVDSTADDR)
502 flag = IP_RECVDSTADDR;
505 return setsockopt(fd, proto, flag, &opt,
sizeof(opt));
509#if defined(IPV6_PKTINFO)
515 struct cmsghdr *cmsg;
520 rcode = fd_fd_recvfromto_common(
my, packet_ctx,
buffer, size);
521 if (rcode <= 0)
return rcode;
525 for (cmsg = CMSG_FIRSTHDR(&
my->msgh);
527 cmsg = CMSG_NXTHDR(&
my->msgh, cmsg)) {
530 if ((cmsg->cmsg_level == IPPROTO_IPV6) &&
531 (cmsg->cmsg_type == IPV6_PKTINFO)) {
532 struct in6_pktinfo *i = (
struct in6_pktinfo *) CMSG_DATA(cmsg);
533 struct sockaddr_in6 to;
535 to.sin6_addr = i->ipi6_addr;
538 (
struct sockaddr_storage *) &to,
sizeof(
struct sockaddr_in6));
539 addr->
socket.inet.ifindex = i->ipi6_ifindex;
544 if ((cmsg->cmsg_level ==
SOL_IP) && (cmsg->cmsg_type == SO_TIMESTAMPNS)) {
548#elif defined(SO_TIMESTAMP)
549 if ((cmsg->cmsg_level ==
SOL_IP) && (cmsg->cmsg_type == SO_TIMESTAMP)) {
564static
ssize_t fr_bio_fd_sendfromto6(
fr_bio_t *bio,
void *packet_ctx, const
void *
buffer,
size_t size)
568 struct cmsghdr *cmsg;
569 struct sockaddr_storage to;
574 memset(&
my->cbuf, 0,
sizeof(
my->cbuf));
575 memset(&
my->msgh, 0,
sizeof(
struct msghdr));
579 my->iov = (
struct iovec) {
584 my->msgh = (
struct msghdr) {
585 .msg_control =
my->cbuf,
588 .msg_namelen = to_len,
595 struct in6_pktinfo *pkt;
597 my->msgh.msg_controllen = CMSG_SPACE(
sizeof(*pkt));
599 cmsg = CMSG_FIRSTHDR(&
my->msgh);
600 cmsg->cmsg_level = IPPROTO_IPV6;
601 cmsg->cmsg_type = IPV6_PKTINFO;
602 cmsg->cmsg_len = CMSG_LEN(
sizeof(*pkt));
604 pkt = (
struct in6_pktinfo *) CMSG_DATA(cmsg);
605 memset(pkt, 0,
sizeof(*pkt));
606 pkt->ipi6_addr = addr->
socket.inet.src_ipaddr.addr.v6;
607 pkt->ipi6_ifindex = addr->
socket.inet.ifindex;
611 rcode = sendmsg(
my->info.socket.fd, &
my->msgh, 0);
619static inline int fr_bio_fd_udpfromto_init6(
int fd)
623 return setsockopt(fd, IPPROTO_IPV6, IPV6_RECVPKTINFO, &opt,
sizeof(opt));
631 len = strlen(filename);
632 if (len >=
sizeof(sun->sun_path)) {
633 fr_strerror_const(
"Failed parsing unix domain socket filename: Name is too long");
637 sun->sun_family = AF_LOCAL;
638 memcpy(sun->sun_path, filename, len + 1);
640 *sunlen = SUN_LEN(sun);
648 struct sockaddr_storage salocal;
654 (
my->info.socket.inet.src_port != 0)) {
663 salen =
sizeof(salocal);
664 memset(&salocal, 0, salen);
665 if (getsockname(
my->info.socket.fd, (
struct sockaddr *) &salocal, &salen) < 0) {
673 my->info.socket.inet.ifindex =
my->info.socket.inet.src_ipaddr.scope_id;
681 my->info.eof =
false;
682 my->info.read_blocked =
false;
683 my->info.write_blocked =
false;
688 if (
my->cb.connected)
my->cb.connected(&
my->bio);
702 struct sockaddr_storage sockaddr;
704 if (
my->info.socket.af != AF_LOCAL) {
718 if (connect(
my->info.socket.fd, (
struct sockaddr *) &sockaddr, salen) == 0) {
734 if (tries <= my->max_tries)
goto retry;
748 if (!
my->info.write_blocked) {
749 my->info.write_blocked =
true;
752 if (rcode < 0)
return rcode;
777 switch (
my->info.cfg->flags & (O_RDONLY | O_WRONLY | O_RDWR)) {
825 my->info.eof =
false;
827 my->info.read_blocked =
false;
828 my->info.write_blocked =
false;
841 setsockopt(
my->info.socket.fd, SOL_SOCKET, SO_NOSIGPIPE, &on,
sizeof(on));
848 if (!
my->info.cfg->async)
return 0;
851 if (rcode == 0)
return 0;
853 if (rcode !=
fr_bio_error(IO_WOULD_BLOCK))
return rcode;
866 if (
my->info.socket.type == SOCK_STREAM) {
878#if defined(IP_PKTINFO) || defined(IP_RECVDSTADDR)
879 }
else if (
my->info.socket.inet.src_ipaddr.af == AF_INET) {
880 if (fr_bio_fd_udpfromto_init4(
my->info.socket.fd) < 0)
return -1;
882 my->bio.read = fr_bio_fd_recvfromto4;
883 my->bio.write = fr_bio_fd_sendfromto4;
886#if defined(IPV6_PKTINFO)
887 }
else if (
my->info.socket.inet.src_ipaddr.af == AF_INET6) {
889 if (fr_bio_fd_udpfromto_init6(
my->info.socket.fd) < 0)
return -1;
891 my->bio.read = fr_bio_fd_recvfromto6;
892 my->bio.write = fr_bio_fd_sendfromto6;
914 struct sockaddr_storage sockaddr;
916 if (size <
sizeof(
int))
return fr_bio_error(BUFFER_TOO_SMALL);
918 salen =
sizeof(sockaddr);
925 fd = accept4(
my->info.socket.fd, (
struct sockaddr *) &sockaddr, &salen, SOCK_NONBLOCK | SOCK_CLOEXEC);
927 fd = accept(
my->info.socket.fd, (
struct sockaddr *) &sockaddr, &salen);
937 addr->
socket.inet.dst_ipaddr =
my->info.socket.inet.src_ipaddr;
938 addr->
socket.inet.dst_port =
my->info.socket.inet.src_port;
951 if (tries <= my->max_tries)
goto retry;
958#if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
987 if (listen(
my->info.socket.fd, 8) < 0) {
1035 if (!
my)
return NULL;
1038 my->offset = offset;
1049 .read_blocked =
false,
1050 .write_blocked =
false,
1088 if (rcode < 0)
return rcode;
1105 (void) shutdown(
my->info.socket.fd, SHUT_RDWR);
1109 rcode =
close(
my->info.socket.fd);
1115 if (tries < my->max_tries)
goto retry;
1127 my->info.read_blocked =
true;
1128 my->info.write_blocked =
true;
1129 my->info.eof =
true;
1141 my->info.connect_errno = fd_errno;
1143 if (
my->connect.error) {
1144 my->connect.error(&
my->bio);
1171 socklen_t socklen =
sizeof(error);
1186 if (getsockopt(
my->info.socket.fd, SOL_SOCKET, SO_ERROR, (
void *)&error, &socklen) < 0) {
1210 if (
my->connect.ev) {
1212 my->connect.ev = NULL;
1214 my->connect.el = NULL;
1219 my->connect.success(&
my->bio);
1231 my->connect.timeout(&
my->bio);
1265 my->info.connect_errno = ECONNABORTED;
1267 my->info.connect_errno = ECONNREFUSED;
1269 if (error_cb) error_cb(bio);
1280 if (connected_cb) connected_cb(bio);
1302 if (!connected_cb) {
1307 if (error_cb) error_cb(bio);
1322 my->connect.success = connected_cb;
1323 my->connect.error = error_cb;
1324 my->connect.timeout = timeout_cb;
1342 my->connect.el =
el;
1367 rcode = read(
my->info.socket.fd,
buffer, size);
1368 if (rcode >= 0)
return 0;
1371#define flag_blocked read_blocked
1384 switch (
my->info.type) {
1389 if (
my->info.socket.type != SOCK_DGRAM) {
1393 goto set_recv_buff_zero;
1400 if (shutdown(
my->info.socket.fd, SHUT_RD) < 0) {
1415 if (setsockopt(
my->info.socket.fd, SOL_SOCKET, SO_RCVBUF, &opt,
sizeof(opt)) < 0) {
1446 struct sockaddr_storage sockaddr;
1450 salen =
sizeof(sockaddr);
1461 fd = accept4(
my->info.socket.fd, (
struct sockaddr *) &sockaddr, &salen, SOCK_NONBLOCK | SOCK_CLOEXEC);
1463 fd = accept(
my->info.socket.fd, (
struct sockaddr *) &sockaddr, &salen);
1472 if (tries <= my->max_tries)
goto retry;
1479#if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
1514 cfg = talloc_memdup(
out,
my->info.cfg,
sizeof(*
my->info.cfg));
1526 out->info.socket.fd = fd;
static int const char char buffer[256]
fr_bio_write_t _CONST write
write to the underlying bio
static fr_bio_t * fr_bio_prev(fr_bio_t *bio)
fr_bio_read_t _CONST read
read from the underlying bio
static fr_bio_t * fr_bio_next(fr_bio_t *bio)
void(* fr_bio_callback_t)(fr_bio_t *bio)
#define UNCONST(_type, _ptr)
Remove const qualification from a pointer.
#define FALL_THROUGH
clang 10 doesn't recognised the FALL-THROUGH comment anymore
#define fr_event_fd_insert(...)
@ FR_EVENT_FILTER_IO
Combined filter for read/write functions/.
int fr_bio_fd_connect_full(fr_bio_t *bio, fr_event_list_t *el, fr_bio_callback_t connected_cb, fr_bio_callback_t error_cb, fr_time_delta_t *timeout, fr_bio_callback_t timeout_cb)
Finalize a connect()
static ssize_t fr_bio_fd_read_discard(fr_bio_t *bio, UNUSED void *packet_ctx, void *buffer, size_t size)
Discard all reads from a UDP socket.
static ssize_t fr_bio_fd_write(fr_bio_t *bio, UNUSED void *packet_ctx, const void *buffer, size_t size)
Write to fd.
int fr_bio_fd_socket_name(fr_bio_fd_t *my)
static void fr_bio_fd_el_connect(NDEBUG_UNUSED fr_event_list_t *el, NDEBUG_UNUSED int fd, NDEBUG_UNUSED int flags, void *uctx)
Connect callback for when the socket is writable.
static int fr_bio_fd_write_resume(fr_bio_t *bio)
fr_bio_t * fr_bio_fd_alloc(TALLOC_CTX *ctx, fr_bio_fd_config_t const *cfg, size_t offset)
Allocate a FD bio.
int fr_bio_fd_init_connected(fr_bio_fd_t *my)
static ssize_t fr_bio_fd_read_connected_datagram(fr_bio_t *bio, UNUSED void *packet_ctx, void *buffer, size_t size)
Connected datagram read.
static ssize_t fr_bio_fd_try_connect(fr_bio_fd_t *my)
Try to connect().
static ssize_t fr_bio_fd_recvfrom(fr_bio_t *bio, void *packet_ctx, void *buffer, size_t size)
Read from a UDP socket where we know our IP.
static int fr_bio_fd_eof(fr_bio_t *bio)
static ssize_t fr_bio_fd_sendto(fr_bio_t *bio, void *packet_ctx, const void *buffer, size_t size)
Write to a UDP socket where we know our IP.
int fr_filename_to_sockaddr(struct sockaddr_un *sun, socklen_t *sunlen, char const *filename)
int fr_bio_fd_init_listen(fr_bio_fd_t *my)
int fr_bio_fd_accept(TALLOC_CTX *ctx, fr_bio_t **out_p, fr_bio_t *bio)
Alternative to calling fr_bio_read() on new socket.
fr_bio_fd_info_t const * fr_bio_fd_info(fr_bio_t *bio)
Returns a pointer to the bio-specific information.
static ssize_t fr_bio_fd_read_accept(fr_bio_t *bio, void *packet_ctx, void *buffer, size_t size)
Return an fd on read()
static int fr_bio_fd_init_file(fr_bio_fd_t *my)
Files are a special case of connected sockets.
static void fr_bio_fd_el_timeout(UNUSED fr_timer_list_t *tl, UNUSED fr_time_t now, void *uctx)
We have a timeout on the conenction.
static int fr_bio_fd_destructor(fr_bio_fd_t *my)
int fr_bio_fd_init_common(fr_bio_fd_t *my)
int fr_bio_fd_write_only(fr_bio_t *bio)
Mark up a bio as write-only.
static void fr_bio_fd_el_error(UNUSED fr_event_list_t *el, UNUSED int fd, UNUSED int flags, int fd_errno, void *uctx)
FD error when trying to connect, give up on the BIO.
int fr_bio_fd_close(fr_bio_t *bio)
Close the FD, but leave the bio allocated and alive.
static void fr_bio_fd_set_open(fr_bio_fd_t *my)
static ssize_t fr_bio_fd_read_stream(fr_bio_t *bio, UNUSED void *packet_ctx, void *buffer, size_t size)
Stream read.
@ FR_BIO_FD_ACCEPTED
temporarily until it's connected.
@ FR_BIO_FD_CONNECTED
connected client sockets (UDP or TCP)
@ FR_BIO_FD_INVALID
not set
@ FR_BIO_FD_UNCONNECTED
unconnected UDP / datagram only
@ FR_BIO_FD_LISTEN
returns new fd in buffer on fr_bio_read() or fr_bio_fd_accept()
@ FR_BIO_FD_STATE_CONNECTING
@ FR_BIO_FD_STATE_OPEN
error states must be before this
fr_bio_fd_type_t type
accept, connected, unconnected, etc.
int fr_bio_fd_open(fr_bio_t *bio, fr_bio_fd_config_t const *cfg)
Opens a socket and updates sock->fd.
fr_socket_t socket
socket information, including FD.
Configuration for sockets.
Run-time status of the socket.
#define fr_bio_fd_packet_ctx(_my, _packet_ctx)
void fr_ipaddr_get_scope_id(fr_ipaddr_t *ipaddr)
int fr_ipaddr_from_sockaddr(fr_ipaddr_t *ipaddr, uint16_t *port, struct sockaddr_storage const *sa, socklen_t salen)
Convert sockaddr to our internal ip address representation.
int fr_ipaddr_is_inaddr_any(fr_ipaddr_t const *ipaddr)
Determine if an address is the INADDR_ANY address for its address family.
int fr_ipaddr_to_sockaddr(struct sockaddr_storage *sa, socklen_t *salen, fr_ipaddr_t const *ipaddr, uint16_t port)
Convert our internal ip address representation to a sockaddr.
int fr_bio_write_blocked(fr_bio_t *bio)
Internal BIO function to tell all BIOs that it's blocked.
void fr_bio_eof(fr_bio_t *bio)
Internal BIO function to run EOF callbacks.
int fr_bio_shutdown(fr_bio_t *bio)
Shut down a set of BIOs.
int fr_event_fd_delete(fr_event_list_t *el, int fd, fr_event_filter_t filter)
Remove a file descriptor from the event loop.
Stores all information relating to an event list.
ssize_t fr_bio_null_write(UNUSED fr_bio_t *bio, UNUSED void *packet_ctx, UNUSED void const *buffer, UNUSED size_t size)
Always return 0 on write.
ssize_t fr_bio_null_read(UNUSED fr_bio_t *bio, UNUSED void *packet_ctx, UNUSED void *buffer, UNUSED size_t size)
Always return 0 on read.
ssize_t fr_bio_fail_read(UNUSED fr_bio_t *bio, UNUSED void *packet_ctx, UNUSED void *buffer, UNUSED size_t size)
Always return error on read.
ssize_t fr_bio_fail_write(UNUSED fr_bio_t *bio, UNUSED void *packet_ctx, UNUSED void const *buffer, UNUSED size_t size)
Always return 0 on write.
#define fr_time()
Allow us to arbitrarily manipulate time.
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.
static int talloc_const_free(void const *ptr)
Free const'd memory.
static fr_time_t fr_time_from_timeval(struct timeval const *when_tv)
Convert a timeval (wallclock time) to a fr_time_t (internal time)
#define fr_time_wrap(_time)
#define fr_time_eq(_a, _b)
static fr_time_t fr_time_from_timespec(struct timespec const *when_ts)
Convert a timespec (wallclock time) to a fr_time_t (internal time)
A time delta, a difference in time measured in nanoseconds.
static fr_event_list_t * el
int fd
File descriptor if this is a live socket.
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
#define fr_strerror_const(_msg)
static size_t char ** out