2012-05-04 22:38:25 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Linux Netlink Interface
|
|
|
|
*
|
|
|
|
* (c) 1999--2000 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2013-09-26 23:33:00 +08:00
|
|
|
#include <unistd.h>
|
2012-05-04 22:38:25 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#undef LOCAL_DEBUG
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/route.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "lib/alloca.h"
|
|
|
|
#include "lib/timer.h"
|
|
|
|
#include "lib/unix.h"
|
|
|
|
#include "lib/krt.h"
|
|
|
|
#include "lib/socket.h"
|
|
|
|
#include "lib/string.h"
|
2015-11-03 21:42:41 +08:00
|
|
|
#include "lib/hash.h"
|
2012-05-04 22:38:25 +08:00
|
|
|
#include "conf/conf.h"
|
|
|
|
|
|
|
|
#include <asm/types.h>
|
|
|
|
#include <linux/if.h>
|
|
|
|
#include <linux/netlink.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
|
2015-11-03 21:42:41 +08:00
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
#ifndef MSG_TRUNC /* Hack: Several versions of glibc miss this one :( */
|
|
|
|
#define MSG_TRUNC 0x20
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef IFF_LOWER_UP
|
|
|
|
#define IFF_LOWER_UP 0x10000
|
|
|
|
#endif
|
|
|
|
|
2015-11-03 21:42:41 +08:00
|
|
|
#ifndef RTA_TABLE
|
|
|
|
#define RTA_TABLE 15
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
/*
|
|
|
|
* Synchronous Netlink interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct nl_sock
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
u32 seq;
|
|
|
|
byte *rx_buffer; /* Receive buffer */
|
|
|
|
struct nlmsghdr *last_hdr; /* Recently received packet */
|
2015-05-19 14:53:34 +08:00
|
|
|
uint last_size;
|
2012-05-04 22:38:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define NL_RX_SIZE 8192
|
|
|
|
|
|
|
|
static struct nl_sock nl_scan = {.fd = -1}; /* Netlink socket for synchronous scan */
|
|
|
|
static struct nl_sock nl_req = {.fd = -1}; /* Netlink socket for requests */
|
|
|
|
|
|
|
|
static void
|
|
|
|
nl_open_sock(struct nl_sock *nl)
|
|
|
|
{
|
|
|
|
if (nl->fd < 0)
|
|
|
|
{
|
|
|
|
nl->fd = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
|
|
|
|
if (nl->fd < 0)
|
|
|
|
die("Unable to open rtnetlink socket: %m");
|
|
|
|
nl->seq = now;
|
|
|
|
nl->rx_buffer = xmalloc(NL_RX_SIZE);
|
|
|
|
nl->last_hdr = NULL;
|
|
|
|
nl->last_size = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nl_open(void)
|
|
|
|
{
|
|
|
|
nl_open_sock(&nl_scan);
|
|
|
|
nl_open_sock(&nl_req);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nl_send(struct nl_sock *nl, struct nlmsghdr *nh)
|
|
|
|
{
|
|
|
|
struct sockaddr_nl sa;
|
|
|
|
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sa.nl_family = AF_NETLINK;
|
|
|
|
nh->nlmsg_pid = 0;
|
|
|
|
nh->nlmsg_seq = ++(nl->seq);
|
|
|
|
if (sendto(nl->fd, nh, nh->nlmsg_len, 0, (struct sockaddr *)&sa, sizeof(sa)) < 0)
|
|
|
|
die("rtnetlink sendto: %m");
|
|
|
|
nl->last_hdr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-02-22 04:19:49 +08:00
|
|
|
nl_request_dump(int af, int cmd)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
|
|
|
struct {
|
|
|
|
struct nlmsghdr nh;
|
|
|
|
struct rtgenmsg g;
|
2015-07-28 18:35:12 +08:00
|
|
|
} req = {
|
|
|
|
.nh.nlmsg_type = cmd,
|
|
|
|
.nh.nlmsg_len = sizeof(req),
|
|
|
|
.nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP,
|
|
|
|
.g.rtgen_family = af
|
|
|
|
};
|
2012-05-04 22:38:25 +08:00
|
|
|
nl_send(&nl_scan, &req.nh);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nlmsghdr *
|
|
|
|
nl_get_reply(struct nl_sock *nl)
|
|
|
|
{
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
if (!nl->last_hdr)
|
|
|
|
{
|
|
|
|
struct iovec iov = { nl->rx_buffer, NL_RX_SIZE };
|
|
|
|
struct sockaddr_nl sa;
|
|
|
|
struct msghdr m = { (struct sockaddr *) &sa, sizeof(sa), &iov, 1, NULL, 0, 0 };
|
|
|
|
int x = recvmsg(nl->fd, &m, 0);
|
|
|
|
if (x < 0)
|
|
|
|
die("nl_get_reply: %m");
|
|
|
|
if (sa.nl_pid) /* It isn't from the kernel */
|
|
|
|
{
|
|
|
|
DBG("Non-kernel packet\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
nl->last_size = x;
|
|
|
|
nl->last_hdr = (void *) nl->rx_buffer;
|
|
|
|
if (m.msg_flags & MSG_TRUNC)
|
|
|
|
bug("nl_get_reply: got truncated reply which should be impossible");
|
|
|
|
}
|
|
|
|
if (NLMSG_OK(nl->last_hdr, nl->last_size))
|
|
|
|
{
|
|
|
|
struct nlmsghdr *h = nl->last_hdr;
|
|
|
|
nl->last_hdr = NLMSG_NEXT(h, nl->last_size);
|
|
|
|
if (h->nlmsg_seq != nl->seq)
|
|
|
|
{
|
|
|
|
log(L_WARN "nl_get_reply: Ignoring out of sequence netlink packet (%x != %x)",
|
|
|
|
h->nlmsg_seq, nl->seq);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
if (nl->last_size)
|
|
|
|
log(L_WARN "nl_get_reply: Found packet remnant of size %d", nl->last_size);
|
|
|
|
nl->last_hdr = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-02 17:41:34 +08:00
|
|
|
static struct tbf rl_netlink_err = TBF_DEFAULT_LOG_LIMITS;
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
static int
|
|
|
|
nl_error(struct nlmsghdr *h)
|
|
|
|
{
|
|
|
|
struct nlmsgerr *e;
|
|
|
|
int ec;
|
|
|
|
|
|
|
|
if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr)))
|
|
|
|
{
|
|
|
|
log(L_WARN "Netlink: Truncated error message received");
|
|
|
|
return ENOBUFS;
|
|
|
|
}
|
|
|
|
e = (struct nlmsgerr *) NLMSG_DATA(h);
|
|
|
|
ec = -e->error;
|
|
|
|
if (ec)
|
|
|
|
log_rl(&rl_netlink_err, L_WARN "Netlink: %s", strerror(ec));
|
|
|
|
return ec;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nlmsghdr *
|
|
|
|
nl_get_scan(void)
|
|
|
|
{
|
|
|
|
struct nlmsghdr *h = nl_get_reply(&nl_scan);
|
|
|
|
|
|
|
|
if (h->nlmsg_type == NLMSG_DONE)
|
|
|
|
return NULL;
|
|
|
|
if (h->nlmsg_type == NLMSG_ERROR)
|
|
|
|
{
|
|
|
|
nl_error(h);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nl_exchange(struct nlmsghdr *pkt)
|
|
|
|
{
|
|
|
|
struct nlmsghdr *h;
|
|
|
|
|
|
|
|
nl_send(&nl_req, pkt);
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
h = nl_get_reply(&nl_req);
|
|
|
|
if (h->nlmsg_type == NLMSG_ERROR)
|
|
|
|
break;
|
|
|
|
log(L_WARN "nl_exchange: Unexpected reply received");
|
|
|
|
}
|
|
|
|
return nl_error(h) ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Netlink attributes
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int nl_attr_len;
|
|
|
|
|
|
|
|
static void *
|
|
|
|
nl_checkin(struct nlmsghdr *h, int lsize)
|
|
|
|
{
|
|
|
|
nl_attr_len = h->nlmsg_len - NLMSG_LENGTH(lsize);
|
|
|
|
if (nl_attr_len < 0)
|
|
|
|
{
|
|
|
|
log(L_ERR "nl_checkin: underrun by %d bytes", -nl_attr_len);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return NLMSG_DATA(h);
|
|
|
|
}
|
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
struct nl_want_attrs {
|
|
|
|
u8 defined:1;
|
|
|
|
u8 checksize:1;
|
|
|
|
u8 size;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define BIRD_IFLA_MAX (IFLA_WIRELESS+1)
|
|
|
|
|
|
|
|
static struct nl_want_attrs ifla_attr_want[BIRD_IFLA_MAX] = {
|
|
|
|
[IFLA_IFNAME] = { 1, 0, 0 },
|
|
|
|
[IFLA_MTU] = { 1, 1, sizeof(u32) },
|
|
|
|
[IFLA_WIRELESS] = { 1, 0, 0 },
|
|
|
|
};
|
|
|
|
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
#define BIRD_IFA_MAX (IFA_ANYCAST+1)
|
|
|
|
|
|
|
|
static struct nl_want_attrs ifa_attr_want4[BIRD_IFA_MAX] = {
|
|
|
|
[IFA_ADDRESS] = { 1, 1, sizeof(ip4_addr) },
|
|
|
|
[IFA_LOCAL] = { 1, 1, sizeof(ip4_addr) },
|
|
|
|
[IFA_BROADCAST] = { 1, 1, sizeof(ip4_addr) },
|
|
|
|
};
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
static struct nl_want_attrs ifa_attr_want6[BIRD_IFA_MAX] = {
|
|
|
|
[IFA_ADDRESS] = { 1, 1, sizeof(ip6_addr) },
|
|
|
|
[IFA_LOCAL] = { 1, 1, sizeof(ip6_addr) },
|
|
|
|
};
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
|
|
|
|
#define BIRD_RTA_MAX (RTA_TABLE+1)
|
|
|
|
|
|
|
|
static struct nl_want_attrs mpnh_attr_want4[BIRD_RTA_MAX] = {
|
|
|
|
[RTA_GATEWAY] = { 1, 1, sizeof(ip4_addr) },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct nl_want_attrs rtm_attr_want4[BIRD_RTA_MAX] = {
|
|
|
|
[RTA_DST] = { 1, 1, sizeof(ip4_addr) },
|
|
|
|
[RTA_OIF] = { 1, 1, sizeof(u32) },
|
|
|
|
[RTA_GATEWAY] = { 1, 1, sizeof(ip4_addr) },
|
|
|
|
[RTA_PRIORITY] = { 1, 1, sizeof(u32) },
|
|
|
|
[RTA_PREFSRC] = { 1, 1, sizeof(ip4_addr) },
|
|
|
|
[RTA_METRICS] = { 1, 0, 0 },
|
|
|
|
[RTA_MULTIPATH] = { 1, 0, 0 },
|
|
|
|
[RTA_FLOW] = { 1, 1, sizeof(u32) },
|
|
|
|
[RTA_TABLE] = { 1, 1, sizeof(u32) },
|
|
|
|
};
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
static struct nl_want_attrs rtm_attr_want6[BIRD_RTA_MAX] = {
|
|
|
|
[RTA_DST] = { 1, 1, sizeof(ip6_addr) },
|
|
|
|
[RTA_IIF] = { 1, 1, sizeof(u32) },
|
|
|
|
[RTA_OIF] = { 1, 1, sizeof(u32) },
|
|
|
|
[RTA_GATEWAY] = { 1, 1, sizeof(ip6_addr) },
|
|
|
|
[RTA_PRIORITY] = { 1, 1, sizeof(u32) },
|
|
|
|
[RTA_PREFSRC] = { 1, 1, sizeof(ip6_addr) },
|
|
|
|
[RTA_METRICS] = { 1, 0, 0 },
|
|
|
|
[RTA_FLOW] = { 1, 1, sizeof(u32) },
|
|
|
|
[RTA_TABLE] = { 1, 1, sizeof(u32) },
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
static int
|
2015-11-10 21:59:41 +08:00
|
|
|
nl_parse_attrs(struct rtattr *a, struct nl_want_attrs *want, struct rtattr **k, int ksize)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
|
|
|
int max = ksize / sizeof(struct rtattr *);
|
|
|
|
bzero(k, ksize);
|
2015-11-10 21:59:41 +08:00
|
|
|
|
|
|
|
for ( ; RTA_OK(a, nl_attr_len); a = RTA_NEXT(a, nl_attr_len))
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-11-10 21:59:41 +08:00
|
|
|
if ((a->rta_type >= max) || !want[a->rta_type].defined)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (want[a->rta_type].checksize && (RTA_PAYLOAD(a) != want[a->rta_type].size))
|
|
|
|
{
|
2015-12-07 23:24:18 +08:00
|
|
|
log(L_ERR "nl_parse_attrs: Malformed attribute received");
|
2015-11-10 21:59:41 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
k[a->rta_type] = a;
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
2015-11-10 21:59:41 +08:00
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
if (nl_attr_len)
|
|
|
|
{
|
|
|
|
log(L_ERR "nl_parse_attrs: remnant of size %d", nl_attr_len);
|
|
|
|
return 0;
|
|
|
|
}
|
2015-11-10 21:59:41 +08:00
|
|
|
|
|
|
|
return 1;
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
2015-11-09 16:14:26 +08:00
|
|
|
static inline u32 rta_get_u32(struct rtattr *a)
|
2015-10-17 20:36:53 +08:00
|
|
|
{ return *(u32 *) RTA_DATA(a); }
|
|
|
|
|
|
|
|
static inline ip4_addr rta_get_ip4(struct rtattr *a)
|
|
|
|
{ return ip4_ntoh(*(ip4_addr *) RTA_DATA(a)); }
|
|
|
|
|
|
|
|
static inline ip6_addr rta_get_ip6(struct rtattr *a)
|
|
|
|
{ return ip6_ntoh(*(ip6_addr *) RTA_DATA(a)); }
|
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
static inline ip_addr rta_get_ipa(struct rtattr *a)
|
|
|
|
{
|
|
|
|
if (RTA_PAYLOAD(a) == sizeof(ip4_addr))
|
|
|
|
return ipa_from_ip4(rta_get_ip4(a));
|
|
|
|
else
|
|
|
|
return ipa_from_ip6(rta_get_ip6(a));
|
|
|
|
}
|
2015-10-17 20:36:53 +08:00
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
struct rtattr *
|
|
|
|
nl_add_attr(struct nlmsghdr *h, uint bufsize, uint code, const void *data, uint dlen)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
uint pos = NLMSG_ALIGN(h->nlmsg_len);
|
|
|
|
uint len = RTA_LENGTH(dlen);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
if (pos + len > bufsize)
|
|
|
|
bug("nl_add_attr: packet buffer overflow");
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
|
|
|
|
struct rtattr *a = (struct rtattr *)((char *)h + pos);
|
2012-05-04 22:38:25 +08:00
|
|
|
a->rta_type = code;
|
|
|
|
a->rta_len = len;
|
|
|
|
h->nlmsg_len = pos + len;
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
|
|
|
|
if (dlen > 0)
|
|
|
|
memcpy(RTA_DATA(a), data, dlen);
|
|
|
|
|
|
|
|
return a;
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2015-12-20 23:58:37 +08:00
|
|
|
nl_add_attr_u32(struct nlmsghdr *h, uint bufsize, int code, u32 data)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
|
|
|
nl_add_attr(h, bufsize, code, &data, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2015-12-20 23:58:37 +08:00
|
|
|
nl_add_attr_ip4(struct nlmsghdr *h, uint bufsize, int code, ip4_addr ip4)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-12-20 23:58:37 +08:00
|
|
|
ip4 = ip4_hton(ip4);
|
|
|
|
nl_add_attr(h, bufsize, code, &ip4, sizeof(ip4));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
nl_add_attr_ip6(struct nlmsghdr *h, uint bufsize, int code, ip6_addr ip6)
|
|
|
|
{
|
|
|
|
ip6 = ip6_hton(ip6);
|
|
|
|
nl_add_attr(h, bufsize, code, &ip6, sizeof(ip6));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
nl_add_attr_ipa(struct nlmsghdr *h, uint bufsize, int code, ip_addr ipa)
|
|
|
|
{
|
|
|
|
if (ipa_is_ip4(ipa))
|
|
|
|
nl_add_attr_ip4(h, bufsize, code, ipa_to_ip4(ipa));
|
2015-12-07 23:24:18 +08:00
|
|
|
else
|
2015-12-20 23:58:37 +08:00
|
|
|
nl_add_attr_ip6(h, bufsize, code, ipa_to_ip6(ipa));
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
static inline struct rtattr *
|
|
|
|
nl_open_attr(struct nlmsghdr *h, uint bufsize, uint code)
|
|
|
|
{
|
|
|
|
return nl_add_attr(h, bufsize, code, NULL, 0);
|
|
|
|
}
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
static inline void
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
nl_close_attr(struct nlmsghdr *h, struct rtattr *a)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
a->rta_len = (void *)h + NLMSG_ALIGN(h->nlmsg_len) - (void *)a;
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
static inline struct rtnexthop *
|
|
|
|
nl_open_nexthop(struct nlmsghdr *h, uint bufsize)
|
|
|
|
{
|
|
|
|
uint pos = NLMSG_ALIGN(h->nlmsg_len);
|
|
|
|
uint len = RTNH_LENGTH(0);
|
|
|
|
|
|
|
|
if (pos + len > bufsize)
|
|
|
|
bug("nl_open_nexthop: packet buffer overflow");
|
|
|
|
|
|
|
|
h->nlmsg_len = pos + len;
|
|
|
|
|
|
|
|
return (void *)h + pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
nl_close_nexthop(struct nlmsghdr *h, struct rtnexthop *nh)
|
|
|
|
{
|
|
|
|
nh->rtnh_len = (void *)h + NLMSG_ALIGN(h->nlmsg_len) - (void *)nh;
|
|
|
|
}
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
static void
|
2015-12-20 23:58:37 +08:00
|
|
|
nl_add_multipath(struct nlmsghdr *h, uint bufsize, struct mpnh *nh)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
struct rtattr *a = nl_open_attr(h, bufsize, RTA_MULTIPATH);
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
for (; nh; nh = nh->next)
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
{
|
|
|
|
struct rtnexthop *rtnh = nl_open_nexthop(h, bufsize);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
rtnh->rtnh_flags = 0;
|
|
|
|
rtnh->rtnh_hops = nh->weight;
|
|
|
|
rtnh->rtnh_ifindex = nh->iface->index;
|
2012-05-04 22:38:25 +08:00
|
|
|
|
2015-12-20 23:58:37 +08:00
|
|
|
nl_add_attr_ipa(h, bufsize, RTA_GATEWAY, nh->gw);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
nl_close_nexthop(h, rtnh);
|
|
|
|
}
|
|
|
|
|
|
|
|
nl_close_attr(h, a);
|
|
|
|
}
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
static struct mpnh *
|
|
|
|
nl_parse_multipath(struct krt_proto *p, struct rtattr *ra)
|
|
|
|
{
|
|
|
|
/* Temporary buffer for multicast nexthops */
|
|
|
|
static struct mpnh *nh_buffer;
|
|
|
|
static int nh_buf_size; /* in number of structures */
|
|
|
|
static int nh_buf_used;
|
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
struct rtattr *a[BIRD_RTA_MAX];
|
2012-05-04 22:38:25 +08:00
|
|
|
struct rtnexthop *nh = RTA_DATA(ra);
|
|
|
|
struct mpnh *rv, *first, **last;
|
|
|
|
int len = RTA_PAYLOAD(ra);
|
|
|
|
|
|
|
|
first = NULL;
|
|
|
|
last = &first;
|
|
|
|
nh_buf_used = 0;
|
|
|
|
|
|
|
|
while (len)
|
|
|
|
{
|
|
|
|
/* Use RTNH_OK(nh,len) ?? */
|
|
|
|
if ((len < sizeof(*nh)) || (len < nh->rtnh_len))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (nh_buf_used == nh_buf_size)
|
|
|
|
{
|
|
|
|
nh_buf_size = nh_buf_size ? (nh_buf_size * 2) : 4;
|
|
|
|
nh_buffer = xrealloc(nh_buffer, nh_buf_size * sizeof(struct mpnh));
|
|
|
|
}
|
|
|
|
*last = rv = nh_buffer + nh_buf_used++;
|
|
|
|
rv->next = NULL;
|
|
|
|
last = &(rv->next);
|
|
|
|
|
|
|
|
rv->weight = nh->rtnh_hops;
|
|
|
|
rv->iface = if_find_by_index(nh->rtnh_ifindex);
|
|
|
|
if (!rv->iface)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Nonexistent RTNH_PAYLOAD ?? */
|
|
|
|
nl_attr_len = nh->rtnh_len - RTNH_LENGTH(0);
|
2015-11-10 21:59:41 +08:00
|
|
|
nl_parse_attrs(RTNH_DATA(nh), mpnh_attr_want4, a, sizeof(a));
|
2012-05-04 22:38:25 +08:00
|
|
|
if (a[RTA_GATEWAY])
|
|
|
|
{
|
2015-12-21 10:27:41 +08:00
|
|
|
rv->gw = rta_get_ipa(a[RTA_GATEWAY]);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
2015-12-21 10:27:41 +08:00
|
|
|
neighbor *nbr;
|
|
|
|
nbr = neigh_find2(&p->p, &rv->gw, rv->iface,
|
|
|
|
(nh->rtnh_flags & RTNH_F_ONLINK) ? NEF_ONLINK : 0);
|
|
|
|
if (!nbr || (nbr->scope == SCOPE_HOST))
|
2012-05-04 22:38:25 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len -= NLMSG_ALIGN(nh->rtnh_len);
|
|
|
|
nh = RTNH_NEXT(nh);
|
|
|
|
}
|
|
|
|
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
static void
|
|
|
|
nl_add_metrics(struct nlmsghdr *h, uint bufsize, u32 *metrics, int max)
|
|
|
|
{
|
|
|
|
struct rtattr *a = nl_open_attr(h, bufsize, RTA_METRICS);
|
|
|
|
int t;
|
|
|
|
|
|
|
|
for (t = 1; t < max; t++)
|
|
|
|
if (metrics[0] & (1 << t))
|
|
|
|
nl_add_attr_u32(h, bufsize, t, metrics[t]);
|
|
|
|
|
|
|
|
nl_close_attr(h, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nl_parse_metrics(struct rtattr *hdr, u32 *metrics, int max)
|
|
|
|
{
|
|
|
|
struct rtattr *a = RTA_DATA(hdr);
|
|
|
|
int len = RTA_PAYLOAD(hdr);
|
|
|
|
|
|
|
|
metrics[0] = 0;
|
|
|
|
for (; RTA_OK(a, len); a = RTA_NEXT(a, len))
|
|
|
|
{
|
|
|
|
if (a->rta_type == RTA_UNSPEC)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (a->rta_type >= max)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (RTA_PAYLOAD(a) != 4)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
metrics[0] |= 1 << a->rta_type;
|
2015-10-17 20:36:53 +08:00
|
|
|
metrics[a->rta_type] = rta_get_u32(a);
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (len > 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Scanning of interfaces
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
nl_parse_link(struct nlmsghdr *h, int scan)
|
|
|
|
{
|
|
|
|
struct ifinfomsg *i;
|
2015-11-10 21:59:41 +08:00
|
|
|
struct rtattr *a[BIRD_IFLA_MAX];
|
2012-05-04 22:38:25 +08:00
|
|
|
int new = h->nlmsg_type == RTM_NEWLINK;
|
|
|
|
struct iface f = {};
|
|
|
|
struct iface *ifi;
|
|
|
|
char *name;
|
|
|
|
u32 mtu;
|
2015-05-19 14:53:34 +08:00
|
|
|
uint fl;
|
2012-05-04 22:38:25 +08:00
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
if (!(i = nl_checkin(h, sizeof(*i))) || !nl_parse_attrs(IFLA_RTA(i), ifla_attr_want, a, sizeof(a)))
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
2015-11-10 21:59:41 +08:00
|
|
|
if (!a[IFLA_IFNAME] || (RTA_PAYLOAD(a[IFLA_IFNAME]) < 2) || !a[IFLA_MTU])
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-11-10 21:59:41 +08:00
|
|
|
/*
|
|
|
|
* IFLA_IFNAME and IFLA_MTU are required, in fact, but there may also come
|
|
|
|
* a message with IFLA_WIRELESS set, where (e.g.) no IFLA_IFNAME exists.
|
|
|
|
* We simply ignore all such messages with IFLA_WIRELESS without notice.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (a[IFLA_WIRELESS])
|
|
|
|
return;
|
|
|
|
|
|
|
|
log(L_ERR "KIF: Malformed message received");
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-11-10 21:59:41 +08:00
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
name = RTA_DATA(a[IFLA_IFNAME]);
|
2015-10-17 20:36:53 +08:00
|
|
|
mtu = rta_get_u32(a[IFLA_MTU]);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
ifi = if_find_by_index(i->ifi_index);
|
|
|
|
if (!new)
|
|
|
|
{
|
|
|
|
DBG("KIF: IF%d(%s) goes down\n", i->ifi_index, name);
|
|
|
|
if (!ifi)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if_delete(ifi);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DBG("KIF: IF%d(%s) goes up (mtu=%d,flg=%x)\n", i->ifi_index, name, mtu, i->ifi_flags);
|
|
|
|
if (ifi && strncmp(ifi->name, name, sizeof(ifi->name)-1))
|
|
|
|
if_delete(ifi);
|
|
|
|
|
|
|
|
strncpy(f.name, name, sizeof(f.name)-1);
|
|
|
|
f.index = i->ifi_index;
|
|
|
|
f.mtu = mtu;
|
|
|
|
|
|
|
|
fl = i->ifi_flags;
|
|
|
|
if (fl & IFF_UP)
|
|
|
|
f.flags |= IF_ADMIN_UP;
|
|
|
|
if (fl & IFF_LOWER_UP)
|
|
|
|
f.flags |= IF_LINK_UP;
|
|
|
|
if (fl & IFF_LOOPBACK) /* Loopback */
|
|
|
|
f.flags |= IF_MULTIACCESS | IF_LOOPBACK | IF_IGNORE;
|
|
|
|
else if (fl & IFF_POINTOPOINT) /* PtP */
|
|
|
|
f.flags |= IF_MULTICAST;
|
|
|
|
else if (fl & IFF_BROADCAST) /* Broadcast */
|
|
|
|
f.flags |= IF_MULTIACCESS | IF_BROADCAST | IF_MULTICAST;
|
|
|
|
else
|
|
|
|
f.flags |= IF_MULTIACCESS; /* NBMA */
|
2014-02-26 19:52:00 +08:00
|
|
|
|
2015-04-01 05:59:40 +08:00
|
|
|
if (fl & IFF_MULTICAST)
|
|
|
|
f.flags |= IF_MULTICAST;
|
|
|
|
|
2014-02-26 19:52:00 +08:00
|
|
|
ifi = if_update(&f);
|
|
|
|
|
|
|
|
if (!scan)
|
|
|
|
if_end_partial_update(ifi);
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-12-07 23:24:18 +08:00
|
|
|
nl_parse_addr4(struct ifaddrmsg *i, int scan, int new)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-11-10 21:59:41 +08:00
|
|
|
struct rtattr *a[BIRD_IFA_MAX];
|
2012-05-04 22:38:25 +08:00
|
|
|
struct iface *ifi;
|
|
|
|
int scope;
|
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
if (!nl_parse_attrs(IFA_RTA(i), ifa_attr_want4, a, sizeof(a)))
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
2015-11-10 21:59:41 +08:00
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
if (!a[IFA_LOCAL])
|
2015-11-10 21:59:41 +08:00
|
|
|
{
|
2015-12-07 23:24:18 +08:00
|
|
|
log(L_ERR "KIF: Malformed message received (missing IFA_LOCAL)");
|
|
|
|
return;
|
2015-11-10 21:59:41 +08:00
|
|
|
}
|
|
|
|
if (!a[IFA_ADDRESS])
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-11-10 21:59:41 +08:00
|
|
|
log(L_ERR "KIF: Malformed message received (missing IFA_ADDRESS)");
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifi = if_find_by_index(i->ifa_index);
|
|
|
|
if (!ifi)
|
|
|
|
{
|
|
|
|
log(L_ERR "KIF: Received address message for unknown interface %d", i->ifa_index);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
struct ifa ifa;
|
2012-05-04 22:38:25 +08:00
|
|
|
bzero(&ifa, sizeof(ifa));
|
|
|
|
ifa.iface = ifi;
|
|
|
|
if (i->ifa_flags & IFA_F_SECONDARY)
|
|
|
|
ifa.flags |= IA_SECONDARY;
|
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
ifa.ip = rta_get_ipa(a[IFA_LOCAL]);
|
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
if (i->ifa_prefixlen > IP4_MAX_PREFIX_LENGTH)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
|
|
|
log(L_ERR "KIF: Invalid prefix length for interface %s: %d", ifi->name, i->ifa_prefixlen);
|
|
|
|
new = 0;
|
|
|
|
}
|
2015-12-11 22:35:37 +08:00
|
|
|
if (i->ifa_prefixlen == IP4_MAX_PREFIX_LENGTH)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-12-07 23:24:18 +08:00
|
|
|
ifa.brd = rta_get_ipa(a[IFA_ADDRESS]);
|
|
|
|
net_fill_ip4(&ifa.prefix, rta_get_ip4(a[IFA_ADDRESS]), i->ifa_prefixlen);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
/* It is either a host address or a peer address */
|
2015-12-07 23:24:18 +08:00
|
|
|
if (ipa_equal(ifa.ip, ifa.brd))
|
2012-05-04 22:38:25 +08:00
|
|
|
ifa.flags |= IA_HOST;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ifa.flags |= IA_PEER;
|
2015-12-07 23:24:18 +08:00
|
|
|
ifa.opposite = ifa.brd;
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-12-07 23:24:18 +08:00
|
|
|
net_fill_ip4(&ifa.prefix, ipa_to_ip4(ifa.ip), i->ifa_prefixlen);
|
|
|
|
net_normalize(&ifa.prefix);
|
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
if (i->ifa_prefixlen == IP4_MAX_PREFIX_LENGTH - 1)
|
2012-05-04 22:38:25 +08:00
|
|
|
ifa.opposite = ipa_opposite_m1(ifa.ip);
|
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
if (i->ifa_prefixlen == IP4_MAX_PREFIX_LENGTH - 2)
|
2012-05-04 22:38:25 +08:00
|
|
|
ifa.opposite = ipa_opposite_m2(ifa.ip);
|
|
|
|
|
|
|
|
if ((ifi->flags & IF_BROADCAST) && a[IFA_BROADCAST])
|
|
|
|
{
|
2015-12-07 23:24:18 +08:00
|
|
|
ip4_addr xbrd = rta_get_ip4(a[IFA_BROADCAST]);
|
|
|
|
ip4_addr ybrd = ip4_or(ipa_to_ip4(ifa.ip), ip4_not(ip4_mkmask(i->ifa_prefixlen)));
|
|
|
|
|
|
|
|
if (ip4_equal(xbrd, net4_prefix(&ifa.prefix)) || ip4_equal(xbrd, ybrd))
|
|
|
|
ifa.brd = ipa_from_ip4(xbrd);
|
2012-05-04 22:38:25 +08:00
|
|
|
else if (ifi->flags & IF_TMP_DOWN) /* Complain only during the first scan */
|
2015-12-07 23:24:18 +08:00
|
|
|
{
|
2015-12-30 00:12:47 +08:00
|
|
|
log(L_ERR "KIF: Invalid broadcast address %I4 for %s", xbrd, ifi->name);
|
2015-12-07 23:24:18 +08:00
|
|
|
ifa.brd = ipa_from_ip4(ybrd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scope = ipa_classify(ifa.ip);
|
|
|
|
if (scope < 0)
|
|
|
|
{
|
|
|
|
log(L_ERR "KIF: Invalid interface address %I for %s", ifa.ip, ifi->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ifa.scope = scope & IADDR_SCOPE_MASK;
|
|
|
|
|
|
|
|
DBG("KIF: IF%d(%s): %s IPA %I, flg %x, net %N, brd %I, opp %I\n",
|
|
|
|
ifi->index, ifi->name,
|
|
|
|
new ? "added" : "removed",
|
|
|
|
ifa.ip, ifa.flags, ifa.prefix, ifa.brd, ifa.opposite);
|
|
|
|
|
|
|
|
if (new)
|
|
|
|
ifa_update(&ifa);
|
|
|
|
else
|
|
|
|
ifa_delete(&ifa);
|
|
|
|
|
|
|
|
if (!scan)
|
|
|
|
if_end_partial_update(ifi);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nl_parse_addr6(struct ifaddrmsg *i, int scan, int new)
|
|
|
|
{
|
|
|
|
struct rtattr *a[BIRD_IFA_MAX];
|
|
|
|
struct iface *ifi;
|
|
|
|
int scope;
|
|
|
|
|
|
|
|
if (!nl_parse_attrs(IFA_RTA(i), ifa_attr_want6, a, sizeof(a)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!a[IFA_ADDRESS])
|
|
|
|
{
|
|
|
|
log(L_ERR "KIF: Malformed message received (missing IFA_ADDRESS)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifi = if_find_by_index(i->ifa_index);
|
|
|
|
if (!ifi)
|
|
|
|
{
|
|
|
|
log(L_ERR "KIF: Received address message for unknown interface %d", i->ifa_index);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ifa ifa;
|
|
|
|
bzero(&ifa, sizeof(ifa));
|
|
|
|
ifa.iface = ifi;
|
|
|
|
if (i->ifa_flags & IFA_F_SECONDARY)
|
|
|
|
ifa.flags |= IA_SECONDARY;
|
|
|
|
|
|
|
|
/* IFA_LOCAL can be unset for IPv6 interfaces */
|
|
|
|
|
|
|
|
ifa.ip = rta_get_ipa(a[IFA_LOCAL] ? : a[IFA_ADDRESS]);
|
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
if (i->ifa_prefixlen > IP6_MAX_PREFIX_LENGTH)
|
2015-12-07 23:24:18 +08:00
|
|
|
{
|
|
|
|
log(L_ERR "KIF: Invalid prefix length for interface %s: %d", ifi->name, i->ifa_prefixlen);
|
|
|
|
new = 0;
|
|
|
|
}
|
2015-12-11 22:35:37 +08:00
|
|
|
if (i->ifa_prefixlen == IP6_MAX_PREFIX_LENGTH)
|
2015-12-07 23:24:18 +08:00
|
|
|
{
|
|
|
|
ifa.brd = rta_get_ipa(a[IFA_ADDRESS]);
|
|
|
|
net_fill_ip6(&ifa.prefix, rta_get_ip6(a[IFA_ADDRESS]), i->ifa_prefixlen);
|
|
|
|
|
|
|
|
/* It is either a host address or a peer address */
|
|
|
|
if (ipa_equal(ifa.ip, ifa.brd))
|
|
|
|
ifa.flags |= IA_HOST;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ifa.flags |= IA_PEER;
|
|
|
|
ifa.opposite = ifa.brd;
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
2015-12-07 23:24:18 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
net_fill_ip6(&ifa.prefix, ipa_to_ip6(ifa.ip), i->ifa_prefixlen);
|
|
|
|
net_normalize(&ifa.prefix);
|
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
if (i->ifa_prefixlen == IP6_MAX_PREFIX_LENGTH - 1)
|
2015-12-07 23:24:18 +08:00
|
|
|
ifa.opposite = ipa_opposite_m1(ifa.ip);
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
scope = ipa_classify(ifa.ip);
|
|
|
|
if (scope < 0)
|
|
|
|
{
|
|
|
|
log(L_ERR "KIF: Invalid interface address %I for %s", ifa.ip, ifi->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ifa.scope = scope & IADDR_SCOPE_MASK;
|
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
DBG("KIF: IF%d(%s): %s IPA %I, flg %x, net %N, brd %I, opp %I\n",
|
2012-05-04 22:38:25 +08:00
|
|
|
ifi->index, ifi->name,
|
|
|
|
new ? "added" : "removed",
|
2015-12-07 23:24:18 +08:00
|
|
|
ifa.ip, ifa.flags, ifa.prefix, ifa.brd, ifa.opposite);
|
2014-02-26 19:52:00 +08:00
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
if (new)
|
|
|
|
ifa_update(&ifa);
|
|
|
|
else
|
|
|
|
ifa_delete(&ifa);
|
2014-02-26 19:52:00 +08:00
|
|
|
|
|
|
|
if (!scan)
|
|
|
|
if_end_partial_update(ifi);
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
static void
|
|
|
|
nl_parse_addr(struct nlmsghdr *h, int scan)
|
|
|
|
{
|
|
|
|
struct ifaddrmsg *i;
|
|
|
|
|
|
|
|
if (!(i = nl_checkin(h, sizeof(*i))))
|
|
|
|
return;
|
|
|
|
|
|
|
|
int new = (h->nlmsg_type == RTM_NEWADDR);
|
|
|
|
|
|
|
|
switch (i->ifa_family)
|
|
|
|
{
|
|
|
|
case AF_INET:
|
|
|
|
return nl_parse_addr4(i, scan, new);
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
case AF_INET6:
|
|
|
|
return nl_parse_addr6(i, scan, new);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
void
|
|
|
|
kif_do_scan(struct kif_proto *p UNUSED)
|
|
|
|
{
|
|
|
|
struct nlmsghdr *h;
|
|
|
|
|
|
|
|
if_start_update();
|
|
|
|
|
2015-02-22 04:19:49 +08:00
|
|
|
nl_request_dump(AF_UNSPEC, RTM_GETLINK);
|
2012-05-04 22:38:25 +08:00
|
|
|
while (h = nl_get_scan())
|
|
|
|
if (h->nlmsg_type == RTM_NEWLINK || h->nlmsg_type == RTM_DELLINK)
|
|
|
|
nl_parse_link(h, 1);
|
|
|
|
else
|
|
|
|
log(L_DEBUG "nl_scan_ifaces: Unknown packet received (type=%d)", h->nlmsg_type);
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
nl_request_dump(AF_INET, RTM_GETADDR);
|
2012-05-04 22:38:25 +08:00
|
|
|
while (h = nl_get_scan())
|
|
|
|
if (h->nlmsg_type == RTM_NEWADDR || h->nlmsg_type == RTM_DELADDR)
|
2014-02-26 19:52:00 +08:00
|
|
|
nl_parse_addr(h, 1);
|
2012-05-04 22:38:25 +08:00
|
|
|
else
|
|
|
|
log(L_DEBUG "nl_scan_ifaces: Unknown packet received (type=%d)", h->nlmsg_type);
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
nl_request_dump(AF_INET6, RTM_GETADDR);
|
|
|
|
while (h = nl_get_scan())
|
|
|
|
if (h->nlmsg_type == RTM_NEWADDR || h->nlmsg_type == RTM_DELADDR)
|
|
|
|
nl_parse_addr(h, 1);
|
|
|
|
else
|
|
|
|
log(L_DEBUG "nl_scan_ifaces: Unknown packet received (type=%d)", h->nlmsg_type);
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
if_end_update();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Routes
|
|
|
|
*/
|
|
|
|
|
2015-11-03 21:42:41 +08:00
|
|
|
static inline u32
|
|
|
|
krt_table_id(struct krt_proto *p)
|
|
|
|
{
|
|
|
|
return KRT_CF->sys.table_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HASH(struct krt_proto) nl_table_map;
|
|
|
|
|
2015-12-20 23:58:37 +08:00
|
|
|
#define RTH_KEY(p) p->af, krt_table_id(p)
|
|
|
|
#define RTH_NEXT(p) p->sys.hash_next
|
|
|
|
#define RTH_EQ(a1,i1,a2,i2) a1 == a2 && i1 == i2
|
|
|
|
#define RTH_FN(a,i) a ^ u32_hash(i)
|
2015-11-03 21:42:41 +08:00
|
|
|
|
|
|
|
#define RTH_REHASH rth_rehash
|
|
|
|
#define RTH_PARAMS /8, *2, 2, 2, 6, 20
|
|
|
|
|
|
|
|
HASH_DEFINE_REHASH_FN(RTH, struct krt_proto)
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
krt_capable(rte *e)
|
|
|
|
{
|
|
|
|
rta *a = e->attrs;
|
|
|
|
|
|
|
|
if (a->cast != RTC_UNICAST)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (a->dest)
|
|
|
|
{
|
|
|
|
case RTD_ROUTER:
|
|
|
|
case RTD_DEVICE:
|
|
|
|
if (a->iface == NULL)
|
|
|
|
return 0;
|
|
|
|
case RTD_BLACKHOLE:
|
|
|
|
case RTD_UNREACHABLE:
|
|
|
|
case RTD_PROHIBIT:
|
|
|
|
case RTD_MULTIPATH:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
nh_bufsize(struct mpnh *nh)
|
|
|
|
{
|
|
|
|
int rv = 0;
|
|
|
|
for (; nh != NULL; nh = nh->next)
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
rv += RTNH_LENGTH(RTA_LENGTH(sizeof(ip_addr)));
|
2012-05-04 22:38:25 +08:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nl_send_route(struct krt_proto *p, rte *e, struct ea_list *eattrs, int new)
|
|
|
|
{
|
|
|
|
eattr *ea;
|
|
|
|
net *net = e->net;
|
|
|
|
rta *a = e->attrs;
|
|
|
|
struct {
|
|
|
|
struct nlmsghdr h;
|
|
|
|
struct rtmsg r;
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
char buf[128 + KRT_METRICS_MAX*8 + nh_bufsize(a->nexthops)];
|
2012-05-04 22:38:25 +08:00
|
|
|
} r;
|
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
DBG("nl_send_route(%N,new=%d)\n", net->n.addr, new);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
bzero(&r.h, sizeof(r.h));
|
|
|
|
bzero(&r.r, sizeof(r.r));
|
|
|
|
r.h.nlmsg_type = new ? RTM_NEWROUTE : RTM_DELROUTE;
|
|
|
|
r.h.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
|
|
|
|
r.h.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | (new ? NLM_F_CREATE|NLM_F_EXCL : 0);
|
|
|
|
|
2015-12-20 23:58:37 +08:00
|
|
|
r.r.rtm_family = p->af;
|
2015-12-07 23:24:18 +08:00
|
|
|
r.r.rtm_dst_len = net_pxlen(net->n.addr);
|
2012-05-04 22:38:25 +08:00
|
|
|
r.r.rtm_protocol = RTPROT_BIRD;
|
|
|
|
r.r.rtm_scope = RT_SCOPE_UNIVERSE;
|
2015-12-20 23:58:37 +08:00
|
|
|
nl_add_attr_ipa(&r.h, sizeof(r), RTA_DST, net_prefix(net->n.addr));
|
2012-05-04 22:38:25 +08:00
|
|
|
|
2015-11-03 21:42:41 +08:00
|
|
|
if (krt_table_id(p) < 256)
|
|
|
|
r.r.rtm_table = krt_table_id(p);
|
|
|
|
else
|
|
|
|
nl_add_attr_u32(&r.h, sizeof(r), RTA_TABLE, krt_table_id(p));
|
|
|
|
|
2015-06-03 17:58:46 +08:00
|
|
|
/* For route delete, we do not specify route attributes */
|
|
|
|
if (!new)
|
|
|
|
return nl_exchange(&r.h);
|
|
|
|
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
if (ea = ea_find(eattrs, EA_KRT_METRIC))
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
nl_add_attr_u32(&r.h, sizeof(r), RTA_PRIORITY, ea->u.data);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
if (ea = ea_find(eattrs, EA_KRT_PREFSRC))
|
2015-12-20 23:58:37 +08:00
|
|
|
nl_add_attr_ipa(&r.h, sizeof(r), RTA_PREFSRC, *(ip_addr *)ea->u.ptr->data);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
if (ea = ea_find(eattrs, EA_KRT_REALM))
|
|
|
|
nl_add_attr_u32(&r.h, sizeof(r), RTA_FLOW, ea->u.data);
|
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
|
|
|
|
u32 metrics[KRT_METRICS_MAX];
|
|
|
|
metrics[0] = 0;
|
|
|
|
|
|
|
|
struct ea_walk_state ews = { .eattrs = eattrs };
|
|
|
|
while (ea = ea_walk(&ews, EA_KRT_METRICS, KRT_METRICS_MAX))
|
|
|
|
{
|
|
|
|
int id = ea->id - EA_KRT_METRICS;
|
|
|
|
metrics[0] |= 1 << id;
|
|
|
|
metrics[id] = ea->u.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (metrics[0])
|
|
|
|
nl_add_metrics(&r.h, sizeof(r), metrics, KRT_METRICS_MAX);
|
|
|
|
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
/* a->iface != NULL checked in krt_capable() for router and device routes */
|
|
|
|
|
|
|
|
switch (a->dest)
|
|
|
|
{
|
|
|
|
case RTD_ROUTER:
|
|
|
|
r.r.rtm_type = RTN_UNICAST;
|
|
|
|
nl_add_attr_u32(&r.h, sizeof(r), RTA_OIF, a->iface->index);
|
2015-12-20 23:58:37 +08:00
|
|
|
nl_add_attr_ipa(&r.h, sizeof(r), RTA_GATEWAY, a->gw);
|
2012-05-04 22:38:25 +08:00
|
|
|
break;
|
|
|
|
case RTD_DEVICE:
|
|
|
|
r.r.rtm_type = RTN_UNICAST;
|
|
|
|
nl_add_attr_u32(&r.h, sizeof(r), RTA_OIF, a->iface->index);
|
|
|
|
break;
|
|
|
|
case RTD_BLACKHOLE:
|
|
|
|
r.r.rtm_type = RTN_BLACKHOLE;
|
|
|
|
break;
|
|
|
|
case RTD_UNREACHABLE:
|
|
|
|
r.r.rtm_type = RTN_UNREACHABLE;
|
|
|
|
break;
|
|
|
|
case RTD_PROHIBIT:
|
|
|
|
r.r.rtm_type = RTN_PROHIBIT;
|
|
|
|
break;
|
|
|
|
case RTD_MULTIPATH:
|
|
|
|
r.r.rtm_type = RTN_UNICAST;
|
|
|
|
nl_add_multipath(&r.h, sizeof(r), a->nexthops);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
bug("krt_capable inconsistent with nl_send_route");
|
|
|
|
}
|
|
|
|
|
|
|
|
return nl_exchange(&r.h);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
krt_replace_rte(struct krt_proto *p, net *n, rte *new, rte *old, struct ea_list *eattrs)
|
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NULL for eattr of the old route is a little hack, but we don't
|
|
|
|
* get proper eattrs for old in rt_notify() anyway. NULL means no
|
|
|
|
* extended route attributes and therefore matches if the kernel
|
|
|
|
* route has any of them.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (old)
|
|
|
|
nl_send_route(p, old, NULL, 0);
|
|
|
|
|
|
|
|
if (new)
|
|
|
|
err = nl_send_route(p, new, eattrs, 1);
|
|
|
|
|
|
|
|
if (err < 0)
|
|
|
|
n->n.flags |= KRF_SYNC_ERROR;
|
|
|
|
else
|
|
|
|
n->n.flags &= ~KRF_SYNC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define SKIP(ARG...) do { DBG("KRT: Ignoring route - " ARG); return; } while(0)
|
|
|
|
|
|
|
|
static void
|
|
|
|
nl_parse_route(struct nlmsghdr *h, int scan)
|
|
|
|
{
|
|
|
|
struct krt_proto *p;
|
|
|
|
struct rtmsg *i;
|
2015-11-10 21:59:41 +08:00
|
|
|
struct rtattr *a[BIRD_RTA_MAX];
|
2012-05-04 22:38:25 +08:00
|
|
|
int new = h->nlmsg_type == RTM_NEWROUTE;
|
|
|
|
|
2015-12-20 23:58:37 +08:00
|
|
|
net_addr dst;
|
2012-05-04 22:38:25 +08:00
|
|
|
u32 oif = ~0;
|
2015-12-20 23:58:37 +08:00
|
|
|
u32 table_id;
|
2012-05-04 22:38:25 +08:00
|
|
|
int src;
|
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
if (!(i = nl_checkin(h, sizeof(*i))))
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
2015-11-10 21:59:41 +08:00
|
|
|
|
|
|
|
switch (i->rtm_family)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-12-20 23:58:37 +08:00
|
|
|
case AF_INET:
|
|
|
|
if (!nl_parse_attrs(RTM_RTA(i), rtm_attr_want4, a, sizeof(a)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (a[RTA_DST])
|
|
|
|
net_fill_ip4(&dst, rta_get_ip4(a[RTA_DST]), i->rtm_dst_len);
|
|
|
|
else
|
|
|
|
net_fill_ip4(&dst, IP4_NONE, 0);
|
|
|
|
break;
|
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
case AF_INET6:
|
|
|
|
if (!nl_parse_attrs(RTM_RTA(i), rtm_attr_want6, a, sizeof(a)))
|
|
|
|
return;
|
2015-12-20 23:58:37 +08:00
|
|
|
|
|
|
|
if (a[RTA_DST])
|
|
|
|
net_fill_ip6(&dst, rta_get_ip6(a[RTA_DST]), i->rtm_dst_len);
|
|
|
|
else
|
|
|
|
net_fill_ip6(&dst, IP6_NONE, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return;
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (a[RTA_OIF])
|
2015-10-17 20:36:53 +08:00
|
|
|
oif = rta_get_u32(a[RTA_OIF]);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
2015-11-03 21:42:41 +08:00
|
|
|
if (a[RTA_TABLE])
|
2015-12-20 23:58:37 +08:00
|
|
|
table_id = rta_get_u32(a[RTA_TABLE]);
|
2015-11-03 21:42:41 +08:00
|
|
|
else
|
2015-12-20 23:58:37 +08:00
|
|
|
table_id = i->rtm_table;
|
2015-11-03 21:42:41 +08:00
|
|
|
|
2015-12-20 23:58:37 +08:00
|
|
|
/* Do we know this table? */
|
|
|
|
p = HASH_FIND(nl_table_map, RTH, i->rtm_family, table_id);
|
2012-05-04 22:38:25 +08:00
|
|
|
if (!p)
|
2015-11-03 21:42:41 +08:00
|
|
|
SKIP("unknown table %d\n", table);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
if (a[RTA_IIF])
|
|
|
|
SKIP("IIF set\n");
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
if (i->rtm_tos != 0) /* We don't support TOS */
|
|
|
|
SKIP("TOS %02x\n", i->rtm_tos);
|
|
|
|
|
|
|
|
if (scan && !new)
|
|
|
|
SKIP("RTM_DELROUTE in scan\n");
|
|
|
|
|
2015-12-07 23:24:18 +08:00
|
|
|
int c = net_classify(&dst);
|
2012-05-04 22:38:25 +08:00
|
|
|
if ((c < 0) || !(c & IADDR_HOST) || ((c & IADDR_SCOPE_MASK) <= SCOPE_LINK))
|
|
|
|
SKIP("strange class/scope\n");
|
|
|
|
|
|
|
|
// ignore rtm_scope, it is not a real scope
|
|
|
|
// if (i->rtm_scope != RT_SCOPE_UNIVERSE)
|
|
|
|
// SKIP("scope %u\n", i->rtm_scope);
|
|
|
|
|
|
|
|
switch (i->rtm_protocol)
|
|
|
|
{
|
|
|
|
case RTPROT_UNSPEC:
|
|
|
|
SKIP("proto unspec\n");
|
|
|
|
|
|
|
|
case RTPROT_REDIRECT:
|
|
|
|
src = KRT_SRC_REDIRECT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RTPROT_KERNEL:
|
|
|
|
src = KRT_SRC_KERNEL;
|
|
|
|
return;
|
|
|
|
|
|
|
|
case RTPROT_BIRD:
|
|
|
|
if (!scan)
|
|
|
|
SKIP("echo\n");
|
|
|
|
src = KRT_SRC_BIRD;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RTPROT_BOOT:
|
|
|
|
default:
|
|
|
|
src = KRT_SRC_ALIEN;
|
|
|
|
}
|
|
|
|
|
2016-01-26 18:48:58 +08:00
|
|
|
net *net = net_get(p->p.main_channel->table, &dst);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
rta ra = {
|
2012-08-14 22:25:22 +08:00
|
|
|
.src= p->p.main_source,
|
2012-05-04 22:38:25 +08:00
|
|
|
.source = RTS_INHERIT,
|
|
|
|
.scope = SCOPE_UNIVERSE,
|
|
|
|
.cast = RTC_UNICAST
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (i->rtm_type)
|
|
|
|
{
|
|
|
|
case RTN_UNICAST:
|
|
|
|
|
2015-11-10 21:59:41 +08:00
|
|
|
if (a[RTA_MULTIPATH] && (i->rtm_family == AF_INET))
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
|
|
|
ra.dest = RTD_MULTIPATH;
|
|
|
|
ra.nexthops = nl_parse_multipath(p, a[RTA_MULTIPATH]);
|
|
|
|
if (!ra.nexthops)
|
|
|
|
{
|
2015-11-05 19:48:52 +08:00
|
|
|
log(L_ERR "KRT: Received strange multipath route %N", net->n.addr);
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
|
|
|
}
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ra.iface = if_find_by_index(oif);
|
|
|
|
if (!ra.iface)
|
|
|
|
{
|
2015-11-05 19:48:52 +08:00
|
|
|
log(L_ERR "KRT: Received route %N with unknown ifindex %u", net->n.addr, oif);
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (a[RTA_GATEWAY])
|
|
|
|
{
|
|
|
|
ra.dest = RTD_ROUTER;
|
2015-12-21 10:27:41 +08:00
|
|
|
ra.gw = rta_get_ipa(a[RTA_GATEWAY]);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
/* Silently skip strange 6to4 routes */
|
2015-12-22 00:17:21 +08:00
|
|
|
const net_addr_ip6 sit = NET_ADDR_IP6(IP6_NONE, 96);
|
|
|
|
if ((i->rtm_family == AF_INET6) && ipa_in_netX(ra.gw, (net_addr *) &sit))
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
|
|
|
|
2015-12-21 10:27:41 +08:00
|
|
|
neighbor *nbr;
|
|
|
|
nbr = neigh_find2(&p->p, &ra.gw, ra.iface,
|
|
|
|
(i->rtm_flags & RTNH_F_ONLINK) ? NEF_ONLINK : 0);
|
|
|
|
if (!nbr || (nbr->scope == SCOPE_HOST))
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-11-05 19:48:52 +08:00
|
|
|
log(L_ERR "KRT: Received route %N with strange next-hop %I", net->n.addr, ra.gw);
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ra.dest = RTD_DEVICE;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case RTN_BLACKHOLE:
|
|
|
|
ra.dest = RTD_BLACKHOLE;
|
|
|
|
break;
|
|
|
|
case RTN_UNREACHABLE:
|
|
|
|
ra.dest = RTD_UNREACHABLE;
|
|
|
|
break;
|
|
|
|
case RTN_PROHIBIT:
|
|
|
|
ra.dest = RTD_PROHIBIT;
|
|
|
|
break;
|
|
|
|
/* FIXME: What about RTN_THROW? */
|
|
|
|
default:
|
|
|
|
SKIP("type %d\n", i->rtm_type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rte *e = rte_get_temp(&ra);
|
|
|
|
e->net = net;
|
|
|
|
e->u.krt.src = src;
|
|
|
|
e->u.krt.proto = i->rtm_protocol;
|
2016-03-24 01:25:15 +08:00
|
|
|
e->u.krt.seen = 0;
|
|
|
|
e->u.krt.best = 0;
|
2015-10-17 20:36:53 +08:00
|
|
|
e->u.krt.metric = 0;
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
if (a[RTA_PRIORITY])
|
2015-10-17 20:36:53 +08:00
|
|
|
e->u.krt.metric = rta_get_u32(a[RTA_PRIORITY]);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
if (a[RTA_PREFSRC])
|
|
|
|
{
|
2015-12-07 23:24:18 +08:00
|
|
|
ip_addr ps = rta_get_ipa(a[RTA_PREFSRC]);
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
ea_list *ea = alloca(sizeof(ea_list) + sizeof(eattr));
|
|
|
|
ea->next = ra.eattrs;
|
|
|
|
ra.eattrs = ea;
|
|
|
|
ea->flags = EALF_SORTED;
|
|
|
|
ea->count = 1;
|
|
|
|
ea->attrs[0].id = EA_KRT_PREFSRC;
|
|
|
|
ea->attrs[0].flags = 0;
|
|
|
|
ea->attrs[0].type = EAF_TYPE_IP_ADDRESS;
|
|
|
|
ea->attrs[0].u.ptr = alloca(sizeof(struct adata) + sizeof(ps));
|
|
|
|
ea->attrs[0].u.ptr->length = sizeof(ps);
|
|
|
|
memcpy(ea->attrs[0].u.ptr->data, &ps, sizeof(ps));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (a[RTA_FLOW])
|
|
|
|
{
|
|
|
|
ea_list *ea = alloca(sizeof(ea_list) + sizeof(eattr));
|
|
|
|
ea->next = ra.eattrs;
|
|
|
|
ra.eattrs = ea;
|
|
|
|
ea->flags = EALF_SORTED;
|
|
|
|
ea->count = 1;
|
|
|
|
ea->attrs[0].id = EA_KRT_REALM;
|
|
|
|
ea->attrs[0].flags = 0;
|
|
|
|
ea->attrs[0].type = EAF_TYPE_INT;
|
2015-10-17 20:36:53 +08:00
|
|
|
ea->attrs[0].u.data = rta_get_u32(a[RTA_FLOW]);
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
if (a[RTA_METRICS])
|
|
|
|
{
|
|
|
|
u32 metrics[KRT_METRICS_MAX];
|
|
|
|
ea_list *ea = alloca(sizeof(ea_list) + KRT_METRICS_MAX * sizeof(eattr));
|
|
|
|
int t, n = 0;
|
|
|
|
|
|
|
|
if (nl_parse_metrics(a[RTA_METRICS], metrics, ARRAY_SIZE(metrics)) < 0)
|
|
|
|
{
|
2015-11-05 19:48:52 +08:00
|
|
|
log(L_ERR "KRT: Received route %N with strange RTA_METRICS attribute", net->n.addr);
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (t = 1; t < KRT_METRICS_MAX; t++)
|
|
|
|
if (metrics[0] & (1 << t))
|
|
|
|
{
|
|
|
|
ea->attrs[n].id = EA_CODE(EAP_KRT, KRT_METRICS_OFFSET + t);
|
|
|
|
ea->attrs[n].flags = 0;
|
|
|
|
ea->attrs[n].type = EAF_TYPE_INT; /* FIXME: Some are EAF_TYPE_BITFIELD */
|
|
|
|
ea->attrs[n].u.data = metrics[t];
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n > 0)
|
|
|
|
{
|
|
|
|
ea->next = ra.eattrs;
|
|
|
|
ea->flags = EALF_SORTED;
|
|
|
|
ea->count = n;
|
|
|
|
ra.eattrs = ea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
if (scan)
|
|
|
|
krt_got_route(p, e);
|
|
|
|
else
|
|
|
|
krt_got_route_async(p, e, new);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
krt_do_scan(struct krt_proto *p UNUSED) /* CONFIG_ALL_TABLES_AT_ONCE => p is NULL */
|
|
|
|
{
|
|
|
|
struct nlmsghdr *h;
|
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
nl_request_dump(AF_INET, RTM_GETROUTE);
|
2012-05-04 22:38:25 +08:00
|
|
|
while (h = nl_get_scan())
|
|
|
|
if (h->nlmsg_type == RTM_NEWROUTE || h->nlmsg_type == RTM_DELROUTE)
|
|
|
|
nl_parse_route(h, 1);
|
|
|
|
else
|
|
|
|
log(L_DEBUG "nl_scan_fire: Unknown packet received (type=%d)", h->nlmsg_type);
|
2015-12-20 23:58:37 +08:00
|
|
|
|
2015-12-11 22:35:37 +08:00
|
|
|
nl_request_dump(AF_INET6, RTM_GETROUTE);
|
|
|
|
while (h = nl_get_scan())
|
|
|
|
if (h->nlmsg_type == RTM_NEWROUTE || h->nlmsg_type == RTM_DELROUTE)
|
|
|
|
nl_parse_route(h, 1);
|
|
|
|
else
|
|
|
|
log(L_DEBUG "nl_scan_fire: Unknown packet received (type=%d)", h->nlmsg_type);
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Asynchronous Netlink interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
static sock *nl_async_sk; /* BIRD socket for asynchronous notifications */
|
|
|
|
static byte *nl_async_rx_buffer; /* Receive buffer */
|
|
|
|
|
|
|
|
static void
|
|
|
|
nl_async_msg(struct nlmsghdr *h)
|
|
|
|
{
|
|
|
|
switch (h->nlmsg_type)
|
|
|
|
{
|
|
|
|
case RTM_NEWROUTE:
|
|
|
|
case RTM_DELROUTE:
|
|
|
|
DBG("KRT: Received async route notification (%d)\n", h->nlmsg_type);
|
|
|
|
nl_parse_route(h, 0);
|
|
|
|
break;
|
|
|
|
case RTM_NEWLINK:
|
|
|
|
case RTM_DELLINK:
|
|
|
|
DBG("KRT: Received async link notification (%d)\n", h->nlmsg_type);
|
2015-11-23 18:13:40 +08:00
|
|
|
if (kif_proto)
|
|
|
|
nl_parse_link(h, 0);
|
2012-05-04 22:38:25 +08:00
|
|
|
break;
|
|
|
|
case RTM_NEWADDR:
|
|
|
|
case RTM_DELADDR:
|
|
|
|
DBG("KRT: Received async address notification (%d)\n", h->nlmsg_type);
|
2015-11-23 18:13:40 +08:00
|
|
|
if (kif_proto)
|
|
|
|
nl_parse_addr(h, 0);
|
2012-05-04 22:38:25 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DBG("KRT: Received unknown async notification (%d)\n", h->nlmsg_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
nl_async_hook(sock *sk, int size UNUSED)
|
|
|
|
{
|
|
|
|
struct iovec iov = { nl_async_rx_buffer, NL_RX_SIZE };
|
|
|
|
struct sockaddr_nl sa;
|
|
|
|
struct msghdr m = { (struct sockaddr *) &sa, sizeof(sa), &iov, 1, NULL, 0, 0 };
|
|
|
|
struct nlmsghdr *h;
|
|
|
|
int x;
|
2015-05-19 14:53:34 +08:00
|
|
|
uint len;
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
x = recvmsg(sk->fd, &m, 0);
|
|
|
|
if (x < 0)
|
|
|
|
{
|
|
|
|
if (errno == ENOBUFS)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Netlink reports some packets have been thrown away.
|
|
|
|
* One day we might react to it by asking for route table
|
|
|
|
* scan in near future.
|
|
|
|
*/
|
|
|
|
return 1; /* More data are likely to be ready */
|
|
|
|
}
|
|
|
|
else if (errno != EWOULDBLOCK)
|
|
|
|
log(L_ERR "Netlink recvmsg: %m");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (sa.nl_pid) /* It isn't from the kernel */
|
|
|
|
{
|
|
|
|
DBG("Non-kernel packet\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
h = (void *) nl_async_rx_buffer;
|
|
|
|
len = x;
|
|
|
|
if (m.msg_flags & MSG_TRUNC)
|
|
|
|
{
|
|
|
|
log(L_WARN "Netlink got truncated asynchronous message");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
while (NLMSG_OK(h, len))
|
|
|
|
{
|
|
|
|
nl_async_msg(h);
|
|
|
|
h = NLMSG_NEXT(h, len);
|
|
|
|
}
|
|
|
|
if (len)
|
|
|
|
log(L_WARN "nl_async_hook: Found packet remnant of size %d", len);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nl_open_async(void)
|
|
|
|
{
|
|
|
|
sock *sk;
|
|
|
|
struct sockaddr_nl sa;
|
|
|
|
int fd;
|
|
|
|
|
2013-09-26 23:33:00 +08:00
|
|
|
if (nl_async_sk)
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
DBG("KRT: Opening async netlink socket\n");
|
|
|
|
|
|
|
|
fd = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
log(L_ERR "Unable to open asynchronous rtnetlink socket: %m");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bzero(&sa, sizeof(sa));
|
|
|
|
sa.nl_family = AF_NETLINK;
|
2015-12-20 23:58:37 +08:00
|
|
|
sa.nl_groups = RTMGRP_LINK |
|
|
|
|
RTMGRP_IPV4_IFADDR | RTMGRP_IPV4_ROUTE |
|
|
|
|
RTMGRP_IPV6_IFADDR | RTMGRP_IPV6_ROUTE;
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
if (bind(fd, (struct sockaddr *) &sa, sizeof(sa)) < 0)
|
|
|
|
{
|
|
|
|
log(L_ERR "Unable to bind asynchronous rtnetlink socket: %m");
|
2013-09-26 23:33:00 +08:00
|
|
|
close(fd);
|
2012-05-04 22:38:25 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-26 23:33:00 +08:00
|
|
|
nl_async_rx_buffer = xmalloc(NL_RX_SIZE);
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
sk = nl_async_sk = sk_new(krt_pool);
|
|
|
|
sk->type = SK_MAGIC;
|
|
|
|
sk->rx_hook = nl_async_hook;
|
|
|
|
sk->fd = fd;
|
2014-05-18 17:42:26 +08:00
|
|
|
if (sk_open(sk) < 0)
|
2012-05-04 22:38:25 +08:00
|
|
|
bug("Netlink: sk_open failed");
|
|
|
|
}
|
|
|
|
|
2015-11-03 21:42:41 +08:00
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
/*
|
|
|
|
* Interface to the UNIX krt module
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2015-11-03 21:42:41 +08:00
|
|
|
krt_sys_io_init(void)
|
|
|
|
{
|
|
|
|
HASH_INIT(nl_table_map, krt_pool, 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2013-06-30 04:55:41 +08:00
|
|
|
krt_sys_start(struct krt_proto *p)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-12-20 23:58:37 +08:00
|
|
|
struct krt_proto *old = HASH_FIND(nl_table_map, RTH, p->af, krt_table_id(p));
|
2015-11-03 21:42:41 +08:00
|
|
|
|
|
|
|
if (old)
|
|
|
|
{
|
|
|
|
log(L_ERR "%s: Kernel table %u already registered by %s",
|
|
|
|
p->p.name, krt_table_id(p), old->p.name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
HASH_INSERT2(nl_table_map, RTH, krt_pool, p);
|
2013-06-30 04:55:41 +08:00
|
|
|
|
|
|
|
nl_open();
|
|
|
|
nl_open_async();
|
2015-11-03 21:42:41 +08:00
|
|
|
|
|
|
|
return 1;
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-11-03 21:42:41 +08:00
|
|
|
krt_sys_shutdown(struct krt_proto *p)
|
2012-05-04 22:38:25 +08:00
|
|
|
{
|
2015-11-03 21:42:41 +08:00
|
|
|
HASH_REMOVE2(nl_table_map, RTH, krt_pool, p);
|
2012-05-04 22:38:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
krt_sys_reconfigure(struct krt_proto *p UNUSED, struct krt_config *n, struct krt_config *o)
|
|
|
|
{
|
|
|
|
return n->sys.table_id == o->sys.table_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
krt_sys_init_config(struct krt_config *cf)
|
|
|
|
{
|
|
|
|
cf->sys.table_id = RT_TABLE_MAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
krt_sys_copy_config(struct krt_config *d, struct krt_config *s)
|
|
|
|
{
|
|
|
|
d->sys.table_id = s->sys.table_id;
|
|
|
|
}
|
|
|
|
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 22:42:22 +08:00
|
|
|
static const char *krt_metrics_names[KRT_METRICS_MAX] = {
|
|
|
|
NULL, "lock", "mtu", "window", "rtt", "rttvar", "sstresh", "cwnd", "advmss",
|
|
|
|
"reordering", "hoplimit", "initcwnd", "features", "rto_min", "initrwnd", "quickack"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *krt_features_names[KRT_FEATURES_MAX] = {
|
|
|
|
"ecn", NULL, NULL, "allfrag"
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
krt_sys_get_attr(eattr *a, byte *buf, int buflen UNUSED)
|
|
|
|
{
|
|
|
|
switch (a->id)
|
|
|
|
{
|
|
|
|
case EA_KRT_PREFSRC:
|
|
|
|
bsprintf(buf, "prefsrc");
|
|
|
|
return GA_NAME;
|
|
|
|
|
|
|
|
case EA_KRT_REALM:
|
|
|
|
bsprintf(buf, "realm");
|
|
|
|
return GA_NAME;
|
|
|
|
|
|
|
|
case EA_KRT_LOCK:
|
|
|
|
buf += bsprintf(buf, "lock:");
|
|
|
|
ea_format_bitfield(a, buf, buflen, krt_metrics_names, 2, KRT_METRICS_MAX);
|
|
|
|
return GA_FULL;
|
|
|
|
|
|
|
|
case EA_KRT_FEATURES:
|
|
|
|
buf += bsprintf(buf, "features:");
|
|
|
|
ea_format_bitfield(a, buf, buflen, krt_features_names, 0, KRT_FEATURES_MAX);
|
|
|
|
return GA_FULL;
|
|
|
|
|
|
|
|
default:;
|
|
|
|
int id = (int)EA_ID(a->id) - KRT_METRICS_OFFSET;
|
|
|
|
if (id > 0 && id < KRT_METRICS_MAX)
|
|
|
|
{
|
|
|
|
bsprintf(buf, "%s", krt_metrics_names[id]);
|
|
|
|
return GA_NAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GA_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-04 22:38:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
kif_sys_start(struct kif_proto *p UNUSED)
|
|
|
|
{
|
|
|
|
nl_open();
|
|
|
|
nl_open_async();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
kif_sys_shutdown(struct kif_proto *p UNUSED)
|
|
|
|
{
|
|
|
|
}
|