2003-11-10 09:53:38 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001-2003
|
|
|
|
* Fraunhofer Institute for Open Communication Systems (FhG Fokus).
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Harti Brandt <harti@freebsd.org>
|
2016-12-28 00:32:54 +01:00
|
|
|
*
|
2004-08-06 15:38:30 +02:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2003-11-10 09:53:38 +01:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2016-12-28 00:32:54 +01:00
|
|
|
*
|
2004-08-06 15:38:30 +02:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2003-11-10 09:53:38 +01:00
|
|
|
*
|
2006-02-27 17:16:18 +01:00
|
|
|
* $Begemot: bsnmp/snmp_mibII/mibII_route.c,v 1.9 2005/10/06 07:15:00 brandt_h Exp $
|
2003-11-10 09:53:38 +01:00
|
|
|
*
|
|
|
|
* Routing table
|
|
|
|
*/
|
2006-02-27 17:16:18 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_TREE_H
|
2005-10-04 16:41:06 +02:00
|
|
|
#include <sys/tree.h>
|
2006-02-27 17:16:18 +01:00
|
|
|
#else
|
|
|
|
#include "tree.h"
|
|
|
|
#endif
|
|
|
|
|
2003-11-10 09:53:38 +01:00
|
|
|
#include "mibII.h"
|
|
|
|
#include "mibII_oid.h"
|
|
|
|
|
|
|
|
struct sroute {
|
2005-10-04 16:41:06 +02:00
|
|
|
RB_ENTRY(sroute) link;
|
|
|
|
uint32_t ifindex;
|
|
|
|
uint8_t index[13];
|
|
|
|
uint8_t type;
|
|
|
|
uint8_t proto;
|
2003-11-10 09:53:38 +01:00
|
|
|
};
|
2018-07-03 10:44:40 +02:00
|
|
|
static RB_HEAD(sroutes, sroute) sroutes = RB_INITIALIZER(&sroutes);
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
RB_PROTOTYPE(sroutes, sroute, link, sroute_compare);
|
|
|
|
|
|
|
|
#define ROUTE_UPDATE_INTERVAL (100 * 60 * 10) /* 10 min */
|
2005-05-23 13:19:11 +02:00
|
|
|
static uint64_t route_tick;
|
2003-11-10 09:53:38 +01:00
|
|
|
static u_int route_total;
|
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
/*
|
|
|
|
* Compare two routes
|
|
|
|
*/
|
2003-11-10 09:53:38 +01:00
|
|
|
static int
|
2005-10-04 16:41:06 +02:00
|
|
|
sroute_compare(struct sroute *s1, struct sroute *s2)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (memcmp(s1->index, s2->index, 13));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sroute_index_append(struct asn_oid *oid, u_int sub, const struct sroute *s)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
oid->len = sub + 13;
|
|
|
|
for (i = 0; i < 13; i++)
|
|
|
|
oid->subs[sub + i] = s->index[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static void
|
|
|
|
sroute_print(const struct sroute *r)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 13 - 1; i++)
|
|
|
|
printf("%u.", r->index[i]);
|
|
|
|
printf("%u proto=%u type=%u", r->index[i], r->proto, r->type);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* process routing message
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
mib_sroute_process(struct rt_msghdr *rtm, struct sockaddr *gw,
|
|
|
|
struct sockaddr *dst, struct sockaddr *mask)
|
|
|
|
{
|
|
|
|
struct sockaddr_in *in_dst, *in_gw;
|
|
|
|
struct in_addr in_mask;
|
|
|
|
struct mibif *ifp;
|
|
|
|
struct sroute key;
|
|
|
|
struct sroute *r, *r1;
|
|
|
|
in_addr_t ha;
|
|
|
|
|
|
|
|
if (dst == NULL || gw == NULL || dst->sa_family != AF_INET ||
|
|
|
|
gw->sa_family != AF_INET)
|
|
|
|
return;
|
|
|
|
|
|
|
|
in_dst = (struct sockaddr_in *)(void *)dst;
|
|
|
|
in_gw = (struct sockaddr_in *)(void *)gw;
|
|
|
|
|
|
|
|
if (rtm->rtm_flags & RTF_HOST)
|
|
|
|
in_mask.s_addr = 0xffffffff;
|
|
|
|
else if (mask == NULL || mask->sa_len == 0)
|
|
|
|
in_mask.s_addr = 0;
|
|
|
|
else
|
|
|
|
in_mask = ((struct sockaddr_in *)(void *)mask)->sin_addr;
|
|
|
|
|
|
|
|
/* build the index */
|
|
|
|
ha = ntohl(in_dst->sin_addr.s_addr);
|
|
|
|
key.index[0] = (ha >> 24) & 0xff;
|
|
|
|
key.index[1] = (ha >> 16) & 0xff;
|
|
|
|
key.index[2] = (ha >> 8) & 0xff;
|
|
|
|
key.index[3] = (ha >> 0) & 0xff;
|
|
|
|
|
|
|
|
ha = ntohl(in_mask.s_addr);
|
|
|
|
key.index[4] = (ha >> 24) & 0xff;
|
|
|
|
key.index[5] = (ha >> 16) & 0xff;
|
|
|
|
key.index[6] = (ha >> 8) & 0xff;
|
|
|
|
key.index[7] = (ha >> 0) & 0xff;
|
|
|
|
|
|
|
|
/* ToS */
|
|
|
|
key.index[8] = 0;
|
|
|
|
|
|
|
|
ha = ntohl(in_gw->sin_addr.s_addr);
|
|
|
|
key.index[9] = (ha >> 24) & 0xff;
|
|
|
|
key.index[10] = (ha >> 16) & 0xff;
|
|
|
|
key.index[11] = (ha >> 8) & 0xff;
|
|
|
|
key.index[12] = (ha >> 0) & 0xff;
|
|
|
|
|
|
|
|
if (rtm->rtm_type == RTM_DELETE) {
|
|
|
|
r = RB_FIND(sroutes, &sroutes, &key);
|
|
|
|
if (r == 0) {
|
|
|
|
#ifdef DEBUG_ROUTE
|
|
|
|
syslog(LOG_WARNING, "%s: DELETE: %u.%u.%u.%u "
|
|
|
|
"%u.%u.%u.%u %u %u.%u.%u.%u not found", __func__,
|
|
|
|
key.index[0], key.index[1], key.index[2],
|
|
|
|
key.index[3], key.index[4], key.index[5],
|
|
|
|
key.index[6], key.index[7], key.index[8],
|
|
|
|
key.index[9], key.index[10], key.index[11],
|
|
|
|
key.index[12]);
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
RB_REMOVE(sroutes, &sroutes, r);
|
|
|
|
free(r);
|
|
|
|
route_total--;
|
|
|
|
#ifdef DEBUG_ROUTE
|
|
|
|
printf("%s: DELETE: %u.%u.%u.%u "
|
|
|
|
"%u.%u.%u.%u %u %u.%u.%u.%u\n", __func__,
|
|
|
|
key.index[0], key.index[1], key.index[2],
|
|
|
|
key.index[3], key.index[4], key.index[5],
|
|
|
|
key.index[6], key.index[7], key.index[8],
|
|
|
|
key.index[9], key.index[10], key.index[11],
|
|
|
|
key.index[12]);
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GET or ADD */
|
|
|
|
ifp = NULL;
|
|
|
|
if ((ifp = mib_find_if_sys(rtm->rtm_index)) == NULL) {
|
|
|
|
if (rtm->rtm_type == RTM_ADD) {
|
|
|
|
/* make it a get so the kernel fills the index */
|
|
|
|
mib_send_rtmsg(rtm, gw, dst, mask);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mib_iflist_bad = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((r = malloc(sizeof(*r))) == NULL) {
|
|
|
|
syslog(LOG_ERR, "%m");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(r->index, key.index, sizeof(r->index));
|
|
|
|
r->ifindex = (ifp == NULL) ? 0 : ifp->index;
|
|
|
|
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 07:10:57 +01:00
|
|
|
r->type = (rtm->rtm_flags & RTF_REJECT) ? 2 : 4;
|
2005-10-04 16:41:06 +02:00
|
|
|
|
|
|
|
/* cannot really know, what protocol it runs */
|
|
|
|
r->proto = (rtm->rtm_flags & RTF_LOCAL) ? 2 :
|
|
|
|
(rtm->rtm_flags & RTF_STATIC) ? 3 :
|
|
|
|
(rtm->rtm_flags & RTF_DYNAMIC) ? 4 : 10;
|
|
|
|
|
|
|
|
r1 = RB_INSERT(sroutes, &sroutes, r);
|
|
|
|
if (r1 != NULL) {
|
|
|
|
#ifdef DEBUG_ROUTE
|
|
|
|
syslog(LOG_WARNING, "%s: %u.%u.%u.%u "
|
|
|
|
"%u.%u.%u.%u %u %u.%u.%u.%u duplicate route", __func__,
|
|
|
|
key.index[0], key.index[1], key.index[2],
|
|
|
|
key.index[3], key.index[4], key.index[5],
|
|
|
|
key.index[6], key.index[7], key.index[8],
|
|
|
|
key.index[9], key.index[10], key.index[11],
|
|
|
|
key.index[12]);
|
|
|
|
#endif
|
|
|
|
r1->ifindex = r->ifindex;
|
|
|
|
r1->type = r->type;
|
|
|
|
r1->proto = r->proto;
|
|
|
|
free(r);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
route_total++;
|
|
|
|
#ifdef DEBUG_ROUTE
|
|
|
|
printf("%s: ADD/GET: %u.%u.%u.%u "
|
|
|
|
"%u.%u.%u.%u %u %u.%u.%u.%u\n", __func__,
|
|
|
|
key.index[0], key.index[1], key.index[2],
|
|
|
|
key.index[3], key.index[4], key.index[5],
|
|
|
|
key.index[6], key.index[7], key.index[8],
|
|
|
|
key.index[9], key.index[10], key.index[11],
|
|
|
|
key.index[12]);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
mib_fetch_route(void)
|
2003-11-10 09:53:38 +01:00
|
|
|
{
|
|
|
|
u_char *rtab, *next;
|
|
|
|
size_t len;
|
2005-10-04 16:41:06 +02:00
|
|
|
struct sroute *r, *r1;
|
2003-11-10 09:53:38 +01:00
|
|
|
struct rt_msghdr *rtm;
|
|
|
|
struct sockaddr *addrs[RTAX_MAX];
|
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
if (route_tick != 0 && route_tick + ROUTE_UPDATE_INTERVAL > this_tick)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove all routes
|
|
|
|
*/
|
|
|
|
r = RB_MIN(sroutes, &sroutes);
|
|
|
|
while (r != NULL) {
|
|
|
|
r1 = RB_NEXT(sroutes, &sroutes, r);
|
|
|
|
RB_REMOVE(sroutes, &sroutes, r);
|
2003-11-10 09:53:38 +01:00
|
|
|
free(r);
|
2005-10-04 16:41:06 +02:00
|
|
|
r = r1;
|
2003-11-10 09:53:38 +01:00
|
|
|
}
|
|
|
|
route_total = 0;
|
|
|
|
|
|
|
|
if ((rtab = mib_fetch_rtab(AF_INET, NET_RT_DUMP, 0, &len)) == NULL)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
next = rtab;
|
|
|
|
for (next = rtab; next < rtab + len; next += rtm->rtm_msglen) {
|
|
|
|
rtm = (struct rt_msghdr *)(void *)next;
|
|
|
|
if (rtm->rtm_type != RTM_GET ||
|
|
|
|
!(rtm->rtm_flags & RTF_UP))
|
|
|
|
continue;
|
|
|
|
mib_extract_addrs(rtm->rtm_addrs, (u_char *)(rtm + 1), addrs);
|
|
|
|
|
2016-12-28 00:32:54 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
mib_sroute_process(rtm, addrs[RTAX_GATEWAY], addrs[RTAX_DST],
|
|
|
|
addrs[RTAX_NETMASK]);
|
|
|
|
}
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
#if 0
|
|
|
|
u_int n = 0;
|
|
|
|
r = RB_MIN(sroutes, &sroutes);
|
|
|
|
while (r != NULL) {
|
|
|
|
printf("%u: ", n++);
|
|
|
|
sroute_print(r);
|
|
|
|
printf("\n");
|
|
|
|
r = RB_NEXT(sroutes, &sroutes, r);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
free(rtab);
|
|
|
|
route_tick = get_ticks();
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
return (0);
|
|
|
|
}
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
/**
|
|
|
|
* Find a route in the table.
|
|
|
|
*/
|
|
|
|
static struct sroute *
|
|
|
|
sroute_get(const struct asn_oid *oid, u_int sub)
|
|
|
|
{
|
|
|
|
struct sroute key;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (oid->len - sub != 13)
|
|
|
|
return (NULL);
|
|
|
|
for (i = 0; i < 13; i++)
|
|
|
|
key.index[i] = oid->subs[sub + i];
|
|
|
|
return (RB_FIND(sroutes, &sroutes, &key));
|
|
|
|
}
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
/**
|
|
|
|
* Find next route in the table. There is no such RB_ macro, so must
|
|
|
|
* dig into the innards of the RB stuff.
|
|
|
|
*/
|
|
|
|
static struct sroute *
|
|
|
|
sroute_getnext(struct asn_oid *oid, u_int sub)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
int comp;
|
|
|
|
struct sroute key;
|
|
|
|
struct sroute *best;
|
|
|
|
struct sroute *s;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We now, that the OID is at least the tableEntry OID. If it is,
|
|
|
|
* the user wants the first route.
|
|
|
|
*/
|
|
|
|
if (oid->len == sub)
|
|
|
|
return (RB_MIN(sroutes, &sroutes));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is also true for any index that consists of zeros and is
|
|
|
|
* shorter than the full index.
|
|
|
|
*/
|
|
|
|
if (oid->len < sub + 13) {
|
|
|
|
for (i = sub; i < oid->len; i++)
|
|
|
|
if (oid->subs[i] != 0)
|
|
|
|
break;
|
|
|
|
if (i == oid->len)
|
|
|
|
return (RB_MIN(sroutes, &sroutes));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now if the index is too short, we fill it with zeros and then
|
|
|
|
* subtract one from the index. We can do this, because we now,
|
|
|
|
* that there is at least one index element that is not zero.
|
|
|
|
*/
|
|
|
|
for (i = oid->len; i < sub + 13; i++)
|
|
|
|
oid->subs[i] = 0;
|
|
|
|
|
|
|
|
for (i = sub + 13 - 1; i >= sub; i--) {
|
|
|
|
if (oid->subs[i] != 0) {
|
|
|
|
oid->subs[i]--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
oid->subs[i] = ASN_MAXID;
|
|
|
|
}
|
|
|
|
oid->len = sub + 13;
|
|
|
|
}
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
/* build the index */
|
|
|
|
for (i = sub; i < sub + 13; i++)
|
|
|
|
key.index[i - sub] = oid->subs[i];
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
/* now find the element */
|
|
|
|
best = NULL;
|
|
|
|
s = RB_ROOT(&sroutes);
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
while (s != NULL) {
|
|
|
|
comp = sroute_compare(&key, s);
|
|
|
|
if (comp >= 0) {
|
|
|
|
/* The current element is smaller than what we search.
|
|
|
|
* Forget about it and move to the right subtree. */
|
|
|
|
s = RB_RIGHT(s, link);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* the current element is larger than what we search.
|
|
|
|
* forget about the right subtree (its even larger), but
|
|
|
|
* the current element may be what we need. */
|
|
|
|
if (best == NULL || sroute_compare(s, best) < 0)
|
|
|
|
/* this one's better */
|
|
|
|
best = s;
|
|
|
|
|
|
|
|
s = RB_LEFT(s, link);
|
2003-11-10 09:53:38 +01:00
|
|
|
}
|
2005-10-04 16:41:06 +02:00
|
|
|
return (best);
|
2003-11-10 09:53:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Table
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
op_route_table(struct snmp_context *ctx __unused, struct snmp_value *value,
|
|
|
|
u_int sub, u_int iidx __unused, enum snmp_op op)
|
|
|
|
{
|
2005-10-04 16:41:06 +02:00
|
|
|
struct sroute *r;
|
2003-11-10 09:53:38 +01:00
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
if (mib_fetch_route() == -1)
|
|
|
|
return (SNMP_ERR_GENERR);
|
2003-11-10 09:53:38 +01:00
|
|
|
|
|
|
|
switch (op) {
|
|
|
|
|
|
|
|
case SNMP_OP_GETNEXT:
|
2005-10-04 16:41:06 +02:00
|
|
|
if ((r = sroute_getnext(&value->var, sub)) == NULL)
|
2003-11-10 09:53:38 +01:00
|
|
|
return (SNMP_ERR_NOSUCHNAME);
|
2005-10-04 16:41:06 +02:00
|
|
|
sroute_index_append(&value->var, sub, r);
|
2003-11-10 09:53:38 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SNMP_OP_GET:
|
2005-10-04 16:41:06 +02:00
|
|
|
if ((r = sroute_get(&value->var, sub)) == NULL)
|
2003-11-10 09:53:38 +01:00
|
|
|
return (SNMP_ERR_NOSUCHNAME);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SNMP_OP_SET:
|
2005-10-04 16:41:06 +02:00
|
|
|
if ((r = sroute_get(&value->var, sub)) == NULL)
|
|
|
|
return (SNMP_ERR_NOSUCHNAME);
|
2003-11-10 09:53:38 +01:00
|
|
|
return (SNMP_ERR_NOT_WRITEABLE);
|
|
|
|
|
|
|
|
case SNMP_OP_ROLLBACK:
|
|
|
|
case SNMP_OP_COMMIT:
|
|
|
|
abort();
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (value->var.subs[sub - 1]) {
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteDest:
|
2005-10-04 16:41:06 +02:00
|
|
|
value->v.ipaddress[0] = r->index[0];
|
|
|
|
value->v.ipaddress[1] = r->index[1];
|
|
|
|
value->v.ipaddress[2] = r->index[2];
|
|
|
|
value->v.ipaddress[3] = r->index[3];
|
2003-11-10 09:53:38 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteMask:
|
2005-10-04 16:41:06 +02:00
|
|
|
value->v.ipaddress[0] = r->index[4];
|
|
|
|
value->v.ipaddress[1] = r->index[5];
|
|
|
|
value->v.ipaddress[2] = r->index[6];
|
|
|
|
value->v.ipaddress[3] = r->index[7];
|
2003-11-10 09:53:38 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteTos:
|
2005-10-04 16:41:06 +02:00
|
|
|
value->v.integer = r->index[8];
|
2003-11-10 09:53:38 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteNextHop:
|
2005-10-04 16:41:06 +02:00
|
|
|
value->v.ipaddress[0] = r->index[9];
|
|
|
|
value->v.ipaddress[1] = r->index[10];
|
|
|
|
value->v.ipaddress[2] = r->index[11];
|
|
|
|
value->v.ipaddress[3] = r->index[12];
|
2003-11-10 09:53:38 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteIfIndex:
|
|
|
|
value->v.integer = r->ifindex;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteType:
|
|
|
|
value->v.integer = r->type;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteProto:
|
|
|
|
value->v.integer = r->proto;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteAge:
|
|
|
|
value->v.integer = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteInfo:
|
|
|
|
value->v.oid = oid_zeroDotZero;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteNextHopAS:
|
|
|
|
value->v.integer = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteMetric1:
|
|
|
|
case LEAF_ipCidrRouteMetric2:
|
|
|
|
case LEAF_ipCidrRouteMetric3:
|
|
|
|
case LEAF_ipCidrRouteMetric4:
|
|
|
|
case LEAF_ipCidrRouteMetric5:
|
|
|
|
value->v.integer = -1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteStatus:
|
|
|
|
value->v.integer = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (SNMP_ERR_NOERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scalars
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
op_route(struct snmp_context *ctx __unused, struct snmp_value *value,
|
|
|
|
u_int sub, u_int iidx __unused, enum snmp_op op)
|
|
|
|
{
|
|
|
|
switch (op) {
|
|
|
|
|
|
|
|
case SNMP_OP_GETNEXT:
|
|
|
|
abort();
|
|
|
|
|
|
|
|
case SNMP_OP_GET:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SNMP_OP_SET:
|
|
|
|
return (SNMP_ERR_NOT_WRITEABLE);
|
|
|
|
|
|
|
|
case SNMP_OP_ROLLBACK:
|
|
|
|
case SNMP_OP_COMMIT:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2005-10-04 16:41:06 +02:00
|
|
|
if (mib_fetch_route() == -1)
|
|
|
|
return (SNMP_ERR_GENERR);
|
2003-11-10 09:53:38 +01:00
|
|
|
|
|
|
|
switch (value->var.subs[sub - 1]) {
|
|
|
|
|
|
|
|
case LEAF_ipCidrRouteNumber:
|
|
|
|
value->v.uint32 = route_total;
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
return (SNMP_ERR_NOERROR);
|
|
|
|
}
|
2005-10-04 16:41:06 +02:00
|
|
|
|
|
|
|
RB_GENERATE(sroutes, sroute, link, sroute_compare);
|