#include "defs.h"
#include <md5.h>
#include <alloca.h>
uint_t update_seqno;
static struct {
struct sockaddr_in to;
in_addr_t to_mask;
in_addr_t to_net;
in_addr_t to_std_mask;
in_addr_t to_std_net;
struct interface *ifp;
struct auth *a;
uint8_t metric;
uint32_t npackets;
uint32_t gen_limit;
#define WS_GEN_LIMIT_MAX 1024
uint16_t state;
#define WS_ST_FLASH 0x001
#define WS_ST_RIP2_ALL 0x002
#define WS_ST_AG 0x004
#define WS_ST_SUPER_AG 0x008
#define WS_ST_QUERY 0x010
#define WS_ST_TO_ON_NET 0x020
#define WS_ST_DEFAULT 0x040
} ws;
struct ws_buf v12buf;
static union pkt_buf ripv12_buf;
static struct ws_buf v2buf;
static union pkt_buf rip_v2_buf;
void
bufinit(void)
{
ripv12_buf.rip.rip_cmd = RIPCMD_RESPONSE;
v12buf.buf = &ripv12_buf.rip;
v12buf.base = &v12buf.buf->rip_nets[0];
rip_v2_buf.rip.rip_cmd = RIPCMD_RESPONSE;
rip_v2_buf.rip.rip_vers = RIPv2;
v2buf.buf = &rip_v2_buf.rip;
v2buf.base = &v2buf.buf->rip_nets[0];
}
int
output(enum output_type type,
struct sockaddr_in *dst,
struct interface *ifp,
struct rip *buf,
int size)
{
struct sockaddr_in sin;
int flags;
const char *msg;
int res;
int ifindex;
struct in_addr addr;
sin = *dst;
if (sin.sin_port == 0)
sin.sin_port = htons(RIP_PORT);
flags = 0;
if (ifp == NULL && type == OUT_MULTICAST) {
msglog("Cannot send RIP message to %s",
inet_ntoa(sin.sin_addr));
return (-1);
}
switch (type) {
case OUT_QUERY:
msg = "Answer Query";
break;
case OUT_UNICAST:
msg = "Send";
flags = MSG_DONTROUTE;
break;
case OUT_BROADCAST:
msg = "Send bcast";
break;
case OUT_MULTICAST:
msg = "Send mcast";
break;
case NO_OUT_MULTICAST:
case NO_OUT_RIPV2:
default:
#ifdef DEBUG
abort();
#endif
return (-1);
}
ifindex = (type != OUT_MULTICAST && type != OUT_QUERY &&
ifp != NULL && ifp->int_phys != NULL) ?
ifp->int_phys->phyi_index : 0;
if (rip_sock_interface != ifp) {
if (ifp != NULL) {
addr.s_addr = (ifp->int_if_flags & IFF_POINTOPOINT) ?
ifp->int_dstaddr : ifp->int_addr;
if (type == OUT_MULTICAST &&
setsockopt(rip_sock, IPPROTO_IP,
IP_MULTICAST_IF, &addr, sizeof (addr)) == -1) {
LOGERR("setsockopt(rip_sock, IP_MULTICAST_IF)");
return (-1);
}
}
rip_sock_interface = ifp;
}
trace_rip(msg, "to", &sin, ifp, buf, size);
res = sendtoif(rip_sock, buf, size, flags, &sin, ifindex);
if (res < 0 && (ifp == NULL || !(ifp->int_state & IS_BROKE))) {
writelog(LOG_WARNING, "%s sendto(%s%s%s.%d): %s", msg,
ifp != NULL ? ifp->int_name : "",
ifp != NULL ? ", " : "",
inet_ntoa(sin.sin_addr),
ntohs(sin.sin_port),
rip_strerror(errno));
}
return (res);
}
int
sendtoif(int fd, const void *buf, uint_t bufsize, uint_t flags,
struct sockaddr_in *sinp, uint_t ifindex)
{
struct iovec iov;
struct msghdr msg;
struct cmsghdr *cmsgp;
struct in_pktinfo *ipip;
iov.iov_base = (void *)buf;
iov.iov_len = bufsize;
(void) memset(&msg, 0, sizeof (struct msghdr));
msg.msg_name = (struct sockaddr *)sinp;
msg.msg_namelen = sizeof (struct sockaddr_in);
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
if (ifindex != 0) {
msg.msg_controllen = sizeof (*cmsgp) + _MAX_ALIGNMENT +
sizeof (*ipip) + _MAX_ALIGNMENT + sizeof (*cmsgp);
msg.msg_control = alloca(msg.msg_controllen);
cmsgp = CMSG_FIRSTHDR(&msg);
ipip = (void *)CMSG_DATA(cmsgp);
(void) memset(ipip, 0, sizeof (struct in_pktinfo));
ipip->ipi_ifindex = ifindex;
cmsgp->cmsg_len = (caddr_t)(ipip + 1) - (caddr_t)cmsgp;
cmsgp->cmsg_type = IP_PKTINFO;
cmsgp->cmsg_level = IPPROTO_IP;
cmsgp = CMSG_NXTHDR(&msg, cmsgp);
msg.msg_controllen = (caddr_t)cmsgp - (caddr_t)msg.msg_control;
}
return (sendmsg(fd, &msg, flags));
}
struct auth *
find_auth(struct interface *ifp)
{
struct auth *ap, *res = NULL;
int i;
if (ifp == NULL)
return (NULL);
if ((ap = ifp->int_auth) == NULL)
return (NULL);
for (i = 0; i < MAX_AUTH_KEYS; i++, ap++) {
if (ap->type == RIP_AUTH_NONE)
break;
if ((ulong_t)ap->start > (ulong_t)clk.tv_sec)
continue;
if ((ulong_t)ap->end < (ulong_t)clk.tv_sec) {
if (res == NULL ||
(((ulong_t)ap->end > (ulong_t)res->end)) &&
((ulong_t)res->end < (ulong_t)clk.tv_sec))
res = ap;
continue;
}
if (res == NULL || (ulong_t)res->end < (ulong_t)ap->end)
res = ap;
}
return (res);
}
void
clr_ws_buf(struct ws_buf *wb, struct auth *ap)
{
struct netauth *na;
wb->lim = wb->base + NETS_LEN;
wb->n = wb->base;
(void) memset(wb->n, 0, NETS_LEN*sizeof (*wb->n));
if (ap == NULL)
return;
na = (struct netauth *)wb->n;
if (ap->type == RIP_AUTH_PW) {
na->a_family = RIP_AF_AUTH;
na->a_type = RIP_AUTH_PW;
(void) memcpy(na->au.au_pw, ap->key, sizeof (na->au.au_pw));
wb->n++;
} else if (ap->type == RIP_AUTH_MD5) {
na->a_family = RIP_AF_AUTH;
na->a_type = RIP_AUTH_MD5;
na->au.a_md5.md5_keyid = ap->keyid;
na->au.a_md5.md5_auth_len = RIP_AUTH_MD5_LEN;
na->au.a_md5.md5_seqno = htonl(clk.tv_sec);
wb->n++;
wb->lim--;
}
}
void
end_md5_auth(struct ws_buf *wb, struct auth *ap)
{
struct netauth *na, *na2;
MD5_CTX md5_ctx;
int len;
na = (struct netauth *)wb->base;
na2 = (struct netauth *)wb->n;
len = (char *)na2-(char *)wb->buf;
na2->a_family = RIP_AF_AUTH;
na2->a_type = RIP_AUTH_TRAILER;
na->au.a_md5.md5_pkt_len = htons(len);
MD5Init(&md5_ctx);
MD5Update(&md5_ctx, (uchar_t *)wb->buf, len + 4);
MD5Update(&md5_ctx, ap->key, RIP_AUTH_MD5_LEN);
MD5Final(na2->au.au_pw, &md5_ctx);
wb->n++;
}
static void
supply_write(struct ws_buf *wb)
{
switch (wb->type) {
case NO_OUT_MULTICAST:
trace_pkt("skip multicast to %s because impossible",
naddr_ntoa(ws.to.sin_addr.s_addr));
break;
case NO_OUT_RIPV2:
break;
default:
if (ws.a != NULL && ws.a->type == RIP_AUTH_MD5)
end_md5_auth(wb, ws.a);
if (output(wb->type, &ws.to, ws.ifp, wb->buf,
((char *)wb->n - (char *)wb->buf)) < 0 && ws.ifp != NULL)
if_sick(ws.ifp, _B_FALSE);
ws.npackets++;
break;
}
clr_ws_buf(wb, ws.a);
}
static void
supply_out(struct ag_info *ag)
{
uint32_t dstcount;
in_addr_t mask, v1_mask, dst_h, ddst_h = 0;
struct ws_buf *wb;
if (ag->ag_seqno < update_seqno && (ws.state & WS_ST_FLASH))
return;
dst_h = ag->ag_dst_h;
mask = ag->ag_mask;
v1_mask = ripv1_mask_host(htonl(dst_h),
(ws.state & WS_ST_TO_ON_NET) ? ws.ifp : NULL);
dstcount = 0;
if ((ws.state & WS_ST_RIP2_ALL) ||
((ag->ag_state & AGS_RIPV2) && v1_mask != mask)) {
wb = &v2buf;
} else {
wb = &v12buf;
if (v1_mask > mask &&
mask + (mask & -mask) == 0) {
ddst_h = v1_mask & -v1_mask;
dstcount = (v1_mask & ~mask)/ddst_h;
if (dstcount > ws.gen_limit) {
if (TRACECONTENTS)
trace_misc("sending %s-->%s as 1"
" instead of %d routes",
addrname(htonl(dst_h), mask, 1),
naddr_ntoa(ws.to.sin_addr.s_addr),
dstcount + 1);
dstcount = 0;
} else {
mask = v1_mask;
ws.gen_limit -= dstcount;
}
}
}
do {
wb->n->n_family = RIP_AF_INET;
wb->n->n_dst = htonl(dst_h);
wb->n->n_metric = ((stopint || ag->ag_metric < 1 ||
(ag->ag_ifp && (ag->ag_ifp->int_state &
(IS_BROKE|IS_SICK)))) ? HOPCNT_INFINITY : ag->ag_metric);
wb->n->n_metric = htonl(wb->n->n_metric);
if (ws.state & WS_ST_RIP2_ALL) {
if (ag->ag_nhop != 0 &&
((ws.state & WS_ST_QUERY) ||
(ag->ag_nhop != ws.ifp->int_addr &&
on_net(ag->ag_nhop, ws.ifp->int_net,
ws.ifp->int_mask)) &&
ifwithaddr(ag->ag_nhop, _B_FALSE, _B_FALSE) ==
NULL))
wb->n->n_nhop = ag->ag_nhop;
wb->n->n_mask = htonl(mask);
wb->n->n_tag = ag->ag_tag;
}
dst_h += ddst_h;
if (++wb->n >= wb->lim)
supply_write(wb);
} while (dstcount-- > 0);
}
static int
walk_supply(struct radix_node *rn, void *argp)
{
#define RT ((struct rt_entry *)rn)
ushort_t ags;
uint8_t metric, pref;
in_addr_t dst, nhop;
struct rt_spare *rts;
uint_t sparecount;
if ((RT->rt_state & RS_IF) && RT->rt_ifp != NULL &&
(RT->rt_ifp->int_state & IS_PASSIVE) &&
!(RT->rt_state & RS_MHOME))
return (0);
if (RT->rt_spares[0].rts_origin == RO_FILE)
return (0);
if (RT->rt_state & RS_NOPROPAGATE)
return (0);
if (!should_supply(NULL) && !(ws.state & WS_ST_QUERY) &&
!(RT->rt_state & RS_MHOME))
return (0);
dst = RT->rt_dst;
if (dst == RIP_DEFAULT && (ws.state & WS_ST_DEFAULT))
return (0);
if (RT->rt_state & RS_NET_SYN) {
if (RT->rt_state & RS_NET_INT) {
if (on_net(ws.to.sin_addr.s_addr,
ntohl(dst), RT->rt_mask))
return (0);
} else {
if (ws.state & WS_ST_RIP2_ALL)
return (0);
if (on_net(ws.to.sin_addr.s_addr,
ntohl(dst), RT->rt_mask))
return (0);
}
nhop = 0;
} else {
if (!(RT->rt_state & RS_IF) && !(RT->rt_state & RS_MHOME) &&
RT->rt_gate != loopaddr)
nhop = RT->rt_gate;
else
nhop = 0;
}
metric = RT->rt_metric;
ags = 0;
if (!RT_ISHOST(RT)) {
ags |= AGS_SUPPRESS;
if ((ws.state & WS_ST_AG) && ((RT->rt_state & RS_SUBNET) ||
(ws.state & WS_ST_SUPER_AG)))
ags |= AGS_AGGREGATE;
} else if (!(RT->rt_state & RS_MHOME)) {
if ((RT->rt_state & RS_LOCAL) || ridhosts ||
on_net(dst, ws.to_net, ws.to_mask))
ags |= AGS_SUPPRESS;
if ((ws.state & WS_ST_AG) && (ws.state & WS_ST_RIP2_ALL))
ags |= AGS_AGGREGATE;
}
if ((RT->rt_state & RS_SUBNET) && !(ws.state & WS_ST_RIP2_ALL) &&
!on_net(dst, ws.to_std_net, ws.to_std_mask))
ags |= AGS_RIPV2 | AGS_AGGREGATE;
if (ws.ifp != NULL && !(ws.state & WS_ST_QUERY) &&
(ws.state & WS_ST_TO_ON_NET) && (!(RT->rt_state & RS_IF) ||
(ws.ifp->int_if_flags & IFF_POINTOPOINT))) {
for (rts = RT->rt_spares, sparecount = 0;
sparecount < RT->rt_num_spares; sparecount++, rts++) {
if (rts->rts_metric > metric || rts->rts_ifp != ws.ifp)
continue;
if (RT->rt_poison_time < now_expire ||
RT->rt_poison_metric >= metric ||
RT->rt_spares[1].rts_gate == 0) {
ags |= AGS_SPLIT_HZ;
ags &= ~AGS_SUPPRESS;
}
metric = HOPCNT_INFINITY;
break;
}
}
if (RT->rt_poison_metric >= metric ||
RT->rt_poison_time < now_expire) {
RT->rt_poison_time = now.tv_sec;
RT->rt_poison_metric = metric;
}
pref = RT->rt_poison_metric + ws.metric;
metric += ws.metric;
if ((RT->rt_state & RS_STATIC) && (ws.ifp == RT->rt_ifp))
pref = (HOPCNT_INFINITY+1);
if (metric >= HOPCNT_INFINITY) {
if (!(ws.state & WS_ST_QUERY) && (pref >= HOPCNT_INFINITY ||
RT->rt_poison_time < now_garbage))
return (0);
metric = HOPCNT_INFINITY;
}
ag_check(dst, RT->rt_mask, 0, RT->rt_ifp, nhop, metric, pref,
RT->rt_seqno, RT->rt_tag, ags, supply_out);
return (0);
#undef RT
}
void
supply(struct sockaddr_in *dst,
struct interface *ifp,
enum output_type type,
int flash,
int vers,
boolean_t passwd_ok)
{
struct rt_entry *rt;
uint8_t def_metric;
ws.state = 0;
ws.gen_limit = WS_GEN_LIMIT_MAX;
ws.to = *dst;
ws.to_std_mask = std_mask(ws.to.sin_addr.s_addr);
ws.to_std_net = ntohl(ws.to.sin_addr.s_addr) & ws.to_std_mask;
if (ifp != NULL) {
ws.to_mask = ifp->int_mask;
ws.to_net = ifp->int_net;
if (on_net(ws.to.sin_addr.s_addr, ws.to_net, ws.to_mask) ||
type == OUT_MULTICAST)
ws.state |= WS_ST_TO_ON_NET;
} else {
ws.to_mask = ripv1_mask_net(ws.to.sin_addr.s_addr, NULL);
ws.to_net = ntohl(ws.to.sin_addr.s_addr) & ws.to_mask;
rt = rtfind(dst->sin_addr.s_addr);
if (rt != NULL)
ifp = rt->rt_ifp;
else
return;
}
ws.npackets = 0;
if (flash)
ws.state |= WS_ST_FLASH;
ws.ifp = ifp;
ws.metric = 1;
ripv12_buf.rip.rip_vers = vers;
switch (type) {
case OUT_MULTICAST:
if (ifp->int_if_flags & IFF_MULTICAST)
v2buf.type = OUT_MULTICAST;
else
v2buf.type = NO_OUT_MULTICAST;
v12buf.type = OUT_BROADCAST;
break;
case OUT_QUERY:
ws.state |= WS_ST_QUERY;
case OUT_BROADCAST:
case OUT_UNICAST:
v2buf.type = (vers == RIPv2) ? type : NO_OUT_RIPV2;
v12buf.type = type;
break;
case NO_OUT_MULTICAST:
case NO_OUT_RIPV2:
return;
}
if (vers == RIPv2) {
if (type != OUT_BROADCAST)
ws.state |= WS_ST_RIP2_ALL;
if ((ws.state & WS_ST_QUERY) || !(ws.state & WS_ST_TO_ON_NET)) {
ws.state |= (WS_ST_AG | WS_ST_SUPER_AG);
} else if (ifp == NULL || !(ifp->int_state & IS_NO_AG)) {
ws.state |= WS_ST_AG;
if (type != OUT_BROADCAST && (ifp == NULL ||
!(ifp->int_state & IS_NO_SUPER_AG)))
ws.state |= WS_ST_SUPER_AG;
}
ws.a = find_auth(ifp);
if (!passwd_ok && ws.a != NULL && ws.a->type == RIP_AUTH_PW)
ws.a = NULL;
if (ws.a != NULL && (ulong_t)ws.a->end < (ulong_t)clk.tv_sec &&
!ws.a->warnedflag) {
writelog(LOG_WARNING,
"Using expired auth while transmitting to %s",
naddr_ntoa(ws.to.sin_addr.s_addr));
ws.a->warnedflag = 1;
}
} else {
ws.a = NULL;
}
clr_ws_buf(&v12buf, ws.a);
clr_ws_buf(&v2buf, ws.a);
if (should_supply(NULL) && (def_metric = ifp->int_d_metric) != 0) {
if (NULL == (rt = rtget(RIP_DEFAULT, 0)) ||
rt->rt_metric+ws.metric >= def_metric) {
ws.state |= WS_ST_DEFAULT;
ag_check(0, 0, 0, NULL, 0, def_metric, def_metric,
0, 0, 0, supply_out);
} else {
def_metric = rt->rt_metric+ws.metric;
}
if ((ws.state & WS_ST_RIP2_ALL) &&
(ifp->int_state & IS_PM_RDISC)) {
ripv12_buf.rip.rip_vers = RIPv1;
v12buf.n->n_family = RIP_AF_INET;
v12buf.n->n_dst = htonl(RIP_DEFAULT);
v12buf.n->n_metric = htonl(def_metric);
v12buf.n++;
}
}
(void) rn_walktree(rhead, walk_supply, NULL);
ag_flush(0, 0, supply_out);
if (v12buf.n != v12buf.base &&
(v12buf.n > v12buf.base+1 ||
v12buf.base->n_family != RIP_AF_AUTH))
supply_write(&v12buf);
if (v2buf.n != v2buf.base && (v2buf.n > v2buf.base+1 ||
v2buf.base->n_family != RIP_AF_AUTH))
supply_write(&v2buf);
if (ws.npackets == 0 && (ws.state & WS_ST_QUERY)) {
supply_write(&v2buf);
if (ws.npackets == 0)
supply_write(&v12buf);
}
}
void
rip_bcast(int flash)
{
static struct sockaddr_in dst = {AF_INET};
struct interface *ifp;
enum output_type type;
int vers;
struct timeval rtime;
need_flash = _B_FALSE;
intvl_random(&rtime, MIN_WAITTIME, MAX_WAITTIME);
no_flash = rtime;
timevaladd(&no_flash, &now);
if (!rip_enabled)
return;
trace_act("send %s and inhibit dynamic updates for %.3f sec",
flash ? "dynamic update" : "all routes",
rtime.tv_sec + ((double)rtime.tv_usec)/1000000.0);
for (ifp = ifnet; ifp != NULL; ifp = ifp->int_next) {
if (IS_RIP_OUT_OFF(ifp->int_state) ||
(ifp->int_state & IS_DUP) ||
!IS_IFF_ROUTING(ifp->int_if_flags))
continue;
if (!IS_IFF_UP(ifp->int_if_flags))
continue;
if (IS_IFF_QUIET(ifp->int_if_flags))
continue;
vers = (ifp->int_state & IS_NO_RIPV1_OUT) ? RIPv2 : RIPv1;
dst.sin_addr.s_addr = ifp->int_ripout_addr;
if (!(ifp->int_if_flags & (IFF_BROADCAST | IFF_POINTOPOINT)) &&
!(ifp->int_state & IS_REMOTE))
continue;
type = (ifp->int_if_flags & IFF_BROADCAST) ?
OUT_BROADCAST : OUT_UNICAST;
if (vers == RIPv2 && (ifp->int_if_flags & IFF_MULTICAST) &&
!(ifp->int_state & IS_NO_RIP_MCAST))
type = OUT_MULTICAST;
supply(&dst, ifp, type, flash, vers, _B_TRUE);
}
update_seqno++;
}
void
rip_query(void)
{
static struct sockaddr_in dst = {AF_INET};
struct interface *ifp;
struct rip buf;
enum output_type type;
if (!rip_enabled)
return;
(void) memset(&buf, 0, sizeof (buf));
for (ifp = ifnet; ifp; ifp = ifp->int_next) {
if (IS_RIP_IN_OFF(ifp->int_state) ||
(ifp->int_state & IS_DUP) ||
ifp->int_query_time != NEVER)
continue;
if (!IS_IFF_UP(ifp->int_if_flags))
continue;
if (IS_IFF_QUIET(ifp->int_if_flags))
continue;
if (!(ifp->int_if_flags & (IFF_BROADCAST | IFF_POINTOPOINT)) &&
!(ifp->int_state & IS_REMOTE))
continue;
buf.rip_cmd = RIPCMD_REQUEST;
buf.rip_nets[0].n_family = RIP_AF_UNSPEC;
buf.rip_nets[0].n_metric = htonl(HOPCNT_INFINITY);
if ((ifp->int_state & IS_NO_RIPV1_OUT) ||
(ifp->int_state & IS_NO_RIPV1_IN)) {
buf.rip_vers = RIPv2;
} else {
buf.rip_vers = RIPv1;
}
dst.sin_addr.s_addr = ifp->int_ripout_addr;
type = (ifp->int_if_flags & IFF_BROADCAST) ?
OUT_BROADCAST : OUT_UNICAST;
if (buf.rip_vers == RIPv2 &&
(ifp->int_if_flags & IFF_MULTICAST) &&
!(ifp->int_state & IS_NO_RIP_MCAST))
type = OUT_MULTICAST;
ifp->int_query_time = now.tv_sec+SUPPLY_INTERVAL;
if (output(type, &dst, ifp, &buf, sizeof (buf)) < 0)
if_sick(ifp, _B_FALSE);
}
}