2004-05-31 21:25:00 +08:00
|
|
|
/*
|
|
|
|
* BIRD Internet Routing Daemon -- NetBSD Multicasting and Network Includes
|
|
|
|
*
|
|
|
|
* (c) 2004 Ondrej Filip <feela@network.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef IPV6
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
set_inaddr(struct in6_addr * ia, ip_addr a)
|
|
|
|
{
|
2010-02-11 17:23:35 +08:00
|
|
|
ipa_hton(a);
|
|
|
|
memcpy(ia, &a, sizeof(a));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
get_inaddr(ip_addr *a, struct in6_addr *ia)
|
|
|
|
{
|
|
|
|
memcpy(a, ia, sizeof(*a));
|
|
|
|
ipa_ntoh(*a);
|
2004-05-31 21:25:00 +08:00
|
|
|
}
|
|
|
|
|
2010-04-02 22:11:46 +08:00
|
|
|
static inline char *
|
|
|
|
sysio_bind_to_iface(sock *s)
|
|
|
|
{
|
|
|
|
/* Unfortunately not available */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-31 21:25:00 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
#include <net/if.h>
|
2010-02-11 17:23:35 +08:00
|
|
|
#include <net/if_dl.h>
|
2004-05-31 21:25:00 +08:00
|
|
|
|
|
|
|
static inline void
|
|
|
|
set_inaddr(struct in_addr * ia, ip_addr a)
|
|
|
|
{
|
2010-02-11 17:23:35 +08:00
|
|
|
ipa_hton(a);
|
|
|
|
memcpy(&ia->s_addr, &a, sizeof(a));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
get_inaddr(ip_addr *a, struct in_addr *ia)
|
|
|
|
{
|
|
|
|
memcpy(a, &ia->s_addr, sizeof(*a));
|
|
|
|
ipa_ntoh(*a);
|
2004-05-31 21:25:00 +08:00
|
|
|
}
|
|
|
|
|
2010-02-11 17:23:35 +08:00
|
|
|
|
|
|
|
/* BSD Multicast handling for IPv4 */
|
|
|
|
|
2004-05-31 21:25:00 +08:00
|
|
|
static inline char *
|
2009-09-04 17:06:51 +08:00
|
|
|
sysio_setup_multicast(sock *s)
|
2004-05-31 21:25:00 +08:00
|
|
|
{
|
2009-09-04 17:06:51 +08:00
|
|
|
struct in_addr m;
|
|
|
|
u8 zero = 0;
|
|
|
|
u8 ttl = s->ttl;
|
2004-05-31 21:25:00 +08:00
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
if (setsockopt(s->fd, IPPROTO_IP, IP_MULTICAST_LOOP, &zero, sizeof(zero)) < 0)
|
|
|
|
return "IP_MULTICAST_LOOP";
|
2004-05-31 21:25:00 +08:00
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
if (setsockopt(s->fd, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl)) < 0)
|
|
|
|
return "IP_MULTICAST_TTL";
|
|
|
|
|
|
|
|
/* This defines where should we send _outgoing_ multicasts */
|
|
|
|
set_inaddr(&m, s->iface->addr->ip);
|
|
|
|
if (setsockopt(s->fd, IPPROTO_IP, IP_MULTICAST_IF, &m, sizeof(m)) < 0)
|
|
|
|
return "IP_MULTICAST_IF";
|
2004-05-31 21:25:00 +08:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline char *
|
2009-09-04 17:06:51 +08:00
|
|
|
sysio_join_group(sock *s, ip_addr maddr)
|
2004-05-31 21:25:00 +08:00
|
|
|
{
|
|
|
|
struct ip_mreq mreq;
|
|
|
|
|
2004-06-01 17:07:16 +08:00
|
|
|
bzero(&mreq, sizeof(mreq));
|
2004-05-31 21:25:00 +08:00
|
|
|
set_inaddr(&mreq.imr_interface, s->iface->addr->ip);
|
2009-09-04 17:06:51 +08:00
|
|
|
set_inaddr(&mreq.imr_multiaddr, maddr);
|
2004-05-31 21:25:00 +08:00
|
|
|
|
|
|
|
/* And this one sets interface for _receiving_ multicasts from */
|
2009-09-04 17:06:51 +08:00
|
|
|
if (setsockopt(s->fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq)) < 0)
|
2004-05-31 21:25:00 +08:00
|
|
|
return "IP_ADD_MEMBERSHIP";
|
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2004-05-31 21:25:00 +08:00
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
static inline char *
|
|
|
|
sysio_leave_group(sock *s, ip_addr maddr)
|
|
|
|
{
|
|
|
|
struct ip_mreq mreq;
|
2004-05-31 21:25:00 +08:00
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
bzero(&mreq, sizeof(mreq));
|
|
|
|
set_inaddr(&mreq.imr_interface, s->iface->addr->ip);
|
|
|
|
set_inaddr(&mreq.imr_multiaddr, maddr);
|
|
|
|
|
|
|
|
/* And this one sets interface for _receiving_ multicasts from */
|
|
|
|
if (setsockopt(s->fd, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq)) < 0)
|
|
|
|
return "IP_DROP_MEMBERSHIP";
|
2004-05-31 21:25:00 +08:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-02-11 17:23:35 +08:00
|
|
|
|
|
|
|
/* BSD RX/TX packet info handling for IPv4 */
|
|
|
|
/* it uses IP_RECVDSTADDR / IP_RECVIF socket options instead of IP_PKTINFO */
|
|
|
|
|
|
|
|
#define CMSG_RX_SPACE (CMSG_SPACE(sizeof(struct in_addr)) + CMSG_SPACE(sizeof(struct sockaddr_dl)))
|
|
|
|
#define CMSG_TX_SPACE CMSG_SPACE(sizeof(struct in_addr))
|
|
|
|
|
|
|
|
static char *
|
|
|
|
sysio_register_cmsgs(sock *s)
|
|
|
|
{
|
|
|
|
int ok = 1;
|
|
|
|
if (s->flags & SKF_LADDR_RX)
|
|
|
|
{
|
|
|
|
if (setsockopt(s->fd, IPPROTO_IP, IP_RECVDSTADDR, &ok, sizeof(ok)) < 0)
|
|
|
|
return "IP_RECVDSTADDR";
|
|
|
|
|
|
|
|
if (setsockopt(s->fd, IPPROTO_IP, IP_RECVIF, &ok, sizeof(ok)) < 0)
|
|
|
|
return "IP_RECVIF";
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sysio_process_rx_cmsgs(sock *s, struct msghdr *msg)
|
|
|
|
{
|
|
|
|
struct cmsghdr *cm;
|
|
|
|
|
|
|
|
if (!(s->flags & SKF_LADDR_RX))
|
|
|
|
return;
|
|
|
|
|
|
|
|
s->laddr = IPA_NONE;
|
|
|
|
s->lifindex = 0;
|
|
|
|
|
|
|
|
for (cm = CMSG_FIRSTHDR(msg); cm != NULL; cm = CMSG_NXTHDR(msg, cm))
|
|
|
|
{
|
|
|
|
if (cm->cmsg_level == IPPROTO_IP && cm->cmsg_type == IP_RECVDSTADDR)
|
|
|
|
{
|
|
|
|
struct in_addr *ra = (struct in_addr *) CMSG_DATA(cm);
|
|
|
|
get_inaddr(&s->laddr, ra);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cm->cmsg_level == IPPROTO_IP && cm->cmsg_type == IP_RECVIF)
|
|
|
|
{
|
|
|
|
struct sockaddr_dl *ri = (struct sockaddr_dl *) CMSG_DATA(cm);
|
|
|
|
s->lifindex = ri->sdl_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// log(L_WARN "RX %I %d", s->laddr, s->lifindex);
|
|
|
|
}
|
|
|
|
|
2010-04-02 17:31:20 +08:00
|
|
|
/* Unfortunately, IP_SENDSRCADDR does not work for raw IP sockets on BSD kernels */
|
2010-04-08 05:15:56 +08:00
|
|
|
/*
|
2010-04-02 17:31:20 +08:00
|
|
|
static void
|
|
|
|
sysio_prepare_tx_cmsgs(sock *s, struct msghdr *msg, void *cbuf, size_t cbuflen)
|
2010-02-11 17:23:35 +08:00
|
|
|
{
|
|
|
|
struct cmsghdr *cm;
|
|
|
|
struct in_addr *sa;
|
|
|
|
|
|
|
|
if (!(s->flags & SKF_LADDR_TX))
|
2010-04-02 17:31:20 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
msg->msg_control = cbuf;
|
|
|
|
msg->msg_controllen = cbuflen;
|
2010-02-11 17:23:35 +08:00
|
|
|
|
|
|
|
if (s->iface)
|
|
|
|
{
|
|
|
|
struct in_addr m;
|
|
|
|
set_inaddr(&m, s->saddr);
|
|
|
|
setsockopt(s->fd, IPPROTO_IP, IP_MULTICAST_IF, &m, sizeof(m));
|
|
|
|
}
|
|
|
|
|
|
|
|
cm = CMSG_FIRSTHDR(msg);
|
|
|
|
cm->cmsg_level = IPPROTO_IP;
|
|
|
|
cm->cmsg_type = IP_SENDSRCADDR;
|
|
|
|
cm->cmsg_len = CMSG_LEN(sizeof(*sa));
|
|
|
|
|
|
|
|
sa = (struct in_addr *) CMSG_DATA(cm);
|
|
|
|
set_inaddr(sa, s->saddr);
|
|
|
|
|
|
|
|
msg->msg_controllen = cm->cmsg_len;
|
|
|
|
}
|
2010-04-08 05:15:56 +08:00
|
|
|
*/
|
2010-02-11 17:23:35 +08:00
|
|
|
|
2004-05-31 21:25:00 +08:00
|
|
|
#endif
|
2009-05-05 00:17:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#ifndef TCP_KEYLEN_MAX
|
|
|
|
#define TCP_KEYLEN_MAX 80
|
|
|
|
#endif
|
|
|
|
#ifndef TCP_SIG_SPI
|
|
|
|
#define TCP_SIG_SPI 0x1000
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: Passwords has to be set by setkey(8) command. This is the same
|
|
|
|
* behaviour like Quagga. We need to add code for SA/SP entries
|
|
|
|
* management.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
sk_set_md5_auth_int(sock *s, sockaddr *sa, char *passwd)
|
|
|
|
{
|
|
|
|
int enable = 0;
|
|
|
|
if (passwd)
|
|
|
|
{
|
|
|
|
int len = strlen(passwd);
|
|
|
|
|
|
|
|
enable = len ? TCP_SIG_SPI : 0;
|
|
|
|
|
|
|
|
if (len > TCP_KEYLEN_MAX)
|
|
|
|
{
|
|
|
|
log(L_ERR "MD5 password too long");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int rv = setsockopt(s->fd, IPPROTO_TCP, TCP_MD5SIG, &enable, sizeof(enable));
|
|
|
|
|
|
|
|
if (rv < 0)
|
|
|
|
{
|
|
|
|
if (errno == ENOPROTOOPT)
|
|
|
|
log(L_ERR "Kernel does not support TCP MD5 signatures");
|
|
|
|
else
|
|
|
|
log(L_ERR "sk_set_md5_auth_int: setsockopt: %m");
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2011-08-17 05:05:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef IPV6
|
|
|
|
|
2011-09-04 16:39:10 +08:00
|
|
|
#ifdef IP_MINTTL
|
|
|
|
|
2011-08-17 05:05:35 +08:00
|
|
|
static int
|
|
|
|
sk_set_min_ttl4(sock *s, int ttl)
|
|
|
|
{
|
|
|
|
if (setsockopt(s->fd, IPPROTO_IP, IP_MINTTL, &ttl, sizeof(ttl)) < 0)
|
|
|
|
{
|
|
|
|
if (errno == ENOPROTOOPT)
|
|
|
|
log(L_ERR "Kernel does not support IPv4 TTL security");
|
|
|
|
else
|
|
|
|
log(L_ERR "sk_set_min_ttl4: setsockopt: %m");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-04 16:39:10 +08:00
|
|
|
#else /* no IP_MINTTL */
|
|
|
|
|
|
|
|
static int
|
|
|
|
sk_set_min_ttl4(sock *s, int ttl)
|
|
|
|
{
|
|
|
|
log(L_ERR "IPv4 TTL security not supported");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else /* IPv6 */
|
2011-08-17 05:05:35 +08:00
|
|
|
|
|
|
|
static int
|
|
|
|
sk_set_min_ttl6(sock *s, int ttl)
|
|
|
|
{
|
|
|
|
log(L_ERR "IPv6 TTL security not supported");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|