2000-04-26 20:54:23 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2004-06-07 00:00:09 +08:00
|
|
|
* (c) 2000--2004 Ondrej Filip <feela@network.cz>
|
2000-04-26 20:54:23 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ospf.h"
|
2004-06-07 00:00:09 +08:00
|
|
|
static void add_cand(list * l, struct top_hash_entry *en,
|
|
|
|
struct top_hash_entry *par, u16 dist,
|
|
|
|
struct ospf_area *oa);
|
|
|
|
static void calc_next_hop(struct top_hash_entry *en,
|
|
|
|
struct top_hash_entry *par, struct ospf_area *oa);
|
|
|
|
static void ospf_ext_spfa(struct proto_ospf *po);
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2000-05-03 03:27:57 +08:00
|
|
|
void
|
2000-05-04 09:23:03 +08:00
|
|
|
init_infib(struct fib_node *fn)
|
2000-05-03 03:27:57 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
struct infib *f = (struct infib *) fn;
|
2000-05-03 03:27:57 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
f->metric = LSINFINITY;
|
|
|
|
f->oldmetric = LSINFINITY;
|
|
|
|
f->en = NULL;
|
|
|
|
f->olden = NULL;
|
2000-05-03 03:27:57 +08:00
|
|
|
}
|
|
|
|
|
2000-05-10 18:47:17 +08:00
|
|
|
void
|
|
|
|
init_efib(struct fib_node *fn)
|
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
struct extfib *f = (struct extfib *) fn;
|
|
|
|
|
|
|
|
f->metric = LSINFINITY;
|
|
|
|
f->metric2 = LSINFINITY;
|
|
|
|
f->nh = ipa_from_u32(0);
|
|
|
|
f->nhi = NULL;
|
|
|
|
f->oldmetric = LSINFINITY;
|
|
|
|
f->oldmetric2 = LSINFINITY;
|
|
|
|
f->oldnh = ipa_from_u32(0);
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
|
2000-06-08 07:23:37 +08:00
|
|
|
/**
|
2004-06-07 00:00:09 +08:00
|
|
|
* ospf_rt_spf - calculate internal routes
|
|
|
|
* @po: OSPF protocol
|
2000-06-08 07:23:37 +08:00
|
|
|
*
|
2003-08-23 18:42:41 +08:00
|
|
|
* Calculation of internal paths in an area is described in 16.1 of RFC 2328.
|
|
|
|
* It's based on Dijkstra's shortest path tree algorithms.
|
2000-06-08 07:23:37 +08:00
|
|
|
* RFC recommends to add ASBR routers into routing table. I don't do this
|
2003-08-23 18:42:41 +08:00
|
|
|
* and latter parts of routing table calculation look directly into LSA
|
2004-06-07 00:00:09 +08:00
|
|
|
* Database. This function is invoked from ospf_disp().
|
2000-06-08 07:23:37 +08:00
|
|
|
*/
|
2000-04-26 20:54:23 +08:00
|
|
|
void
|
2000-05-04 06:23:41 +08:00
|
|
|
ospf_rt_spfa(struct ospf_area *oa)
|
2000-04-26 20:54:23 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
u32 i, *rts;
|
2000-04-27 04:16:36 +08:00
|
|
|
struct ospf_lsa_rt *rt;
|
2004-06-06 17:37:54 +08:00
|
|
|
struct ospf_lsa_rt_link *rtl, *rr;
|
|
|
|
struct fib *in = &oa->infib;
|
2000-05-04 09:23:03 +08:00
|
|
|
struct infib *nf;
|
2000-05-10 18:47:17 +08:00
|
|
|
struct fib_iterator fit;
|
2004-06-06 17:37:54 +08:00
|
|
|
struct proto *p = &oa->po->proto;
|
|
|
|
struct proto_ospf *po = oa->po;
|
2000-05-04 09:23:03 +08:00
|
|
|
ip_addr ip;
|
|
|
|
struct ospf_lsa_net *ln;
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Starting routing table calculation for area %I",
|
2004-06-06 17:37:54 +08:00
|
|
|
oa->areaid);
|
2000-05-10 03:38:34 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (oa->rt == NULL)
|
|
|
|
return;
|
2000-06-05 01:51:52 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
FIB_WALK(in, nftmp)
|
2000-05-04 09:23:03 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
nf = (struct infib *) nftmp;
|
|
|
|
nf->metric = LSINFINITY;
|
|
|
|
nf->en = NULL;
|
2000-05-04 09:23:03 +08:00
|
|
|
}
|
|
|
|
FIB_WALK_END;
|
|
|
|
|
2000-04-26 20:54:23 +08:00
|
|
|
init_list(&oa->cand); /* Empty list of candidates */
|
2004-06-06 17:37:54 +08:00
|
|
|
oa->trcap = 0;
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2000-05-01 06:14:31 +08:00
|
|
|
DBG("LSA db prepared, adding me into candidate list.\n");
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
oa->rt->dist = 0;
|
|
|
|
oa->rt->color = CANDIDATE;
|
2000-05-01 06:14:31 +08:00
|
|
|
add_head(&oa->cand, &oa->rt->cn);
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("RT LSA: rt: %I, id: %I, type: %u\n", oa->rt->lsa.rt,
|
|
|
|
oa->rt->lsa.id, oa->rt->lsa.type);
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
while (!EMPTY_LIST(oa->cand))
|
2000-04-26 20:54:23 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
struct top_hash_entry *act, *tmp;
|
2000-04-26 20:54:23 +08:00
|
|
|
node *n;
|
2000-05-04 09:23:03 +08:00
|
|
|
u16 met;
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
n = HEAD(oa->cand);
|
|
|
|
act = SKIP_BACK(struct top_hash_entry, cn, n);
|
2000-04-26 20:54:23 +08:00
|
|
|
rem_node(n);
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("Working on LSA: rt: %I, id: %I, type: %u\n", act->lsa.rt,
|
|
|
|
act->lsa.id, act->lsa.type);
|
2000-05-01 06:14:31 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
act->color = INSPF;
|
|
|
|
switch (act->lsa.type)
|
2000-04-26 20:54:23 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
case LSA_T_RT:
|
|
|
|
rt = (struct ospf_lsa_rt *) act->lsa_body;
|
|
|
|
if (rt->veb.bit.v)
|
|
|
|
oa->trcap = 1;
|
|
|
|
rr = (struct ospf_lsa_rt_link *) (rt + 1);
|
|
|
|
DBG(" Number of links: %u\n", rt->links);
|
|
|
|
for (i = 0; i < rt->links; i++)
|
|
|
|
{
|
|
|
|
tmp = NULL;
|
|
|
|
rtl = (rr + i);
|
|
|
|
DBG(" Working on link: %I (type: %u) ", rtl->id, rtl->type);
|
|
|
|
switch (rtl->type)
|
2000-04-26 20:54:23 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
case LSART_STUB:
|
|
|
|
/* This violates rfc2328! but I hope it's also correct. */
|
|
|
|
DBG("\n");
|
|
|
|
ip = ipa_from_u32(rtl->id);
|
|
|
|
nf = fib_get(in, &ip, ipa_mklen(ipa_from_u32(rtl->data)));
|
|
|
|
if (nf->metric > (met = act->dist + rtl->metric))
|
2000-04-26 20:54:23 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG(" Adding stub route....\n");
|
|
|
|
if (oa->rt == act)
|
2000-04-26 20:54:23 +08:00
|
|
|
break;
|
2004-06-06 17:37:54 +08:00
|
|
|
if (act->nhi == NULL)
|
2000-04-26 20:54:23 +08:00
|
|
|
break;
|
2004-06-06 17:37:54 +08:00
|
|
|
nf->metric = met;
|
|
|
|
nf->en = act;
|
|
|
|
DBG(" Adding stub route: %I\n", ip);
|
|
|
|
DBG(" Next hop=%I\n", nf->en->nh);
|
2000-04-26 20:54:23 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
else
|
|
|
|
DBG(" NOT adding stub route: %I\n", ip);
|
|
|
|
break;
|
|
|
|
case LSART_VLNK:
|
|
|
|
DBG("Ignoring\n");
|
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
case LSART_NET:
|
|
|
|
tmp = ospf_hash_find(oa->gr, rtl->id, rtl->id, LSA_T_NET);
|
|
|
|
if (tmp == NULL)
|
|
|
|
DBG("Not found!\n");
|
|
|
|
else
|
|
|
|
DBG("Found. :-)\n");
|
|
|
|
break;
|
|
|
|
case LSART_PTP:
|
|
|
|
tmp = ospf_hash_find(oa->gr, rtl->id, rtl->id, LSA_T_RT);
|
|
|
|
DBG("PTP found.\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log("Unknown link type in router lsa.");
|
|
|
|
break;
|
2000-04-26 20:54:23 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
if (tmp)
|
|
|
|
DBG("Going to add cand, Mydist: %u, Req: %u\n",
|
|
|
|
tmp->dist, act->dist + rtl->metric);
|
|
|
|
add_cand(&oa->cand, tmp, act, act->dist + rtl->metric, oa);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LSA_T_NET:
|
|
|
|
ln = act->lsa_body;
|
|
|
|
ip = ipa_and(ipa_from_u32(act->lsa.id), ln->netmask);
|
|
|
|
nf = fib_get(in, &ip, ipa_mklen(ln->netmask));
|
|
|
|
if (nf->metric > act->dist)
|
|
|
|
{
|
|
|
|
nf->metric = act->dist;
|
|
|
|
nf->en = act;
|
|
|
|
DBG(" Adding into routing table\n");
|
|
|
|
}
|
|
|
|
rts = (u32 *) (ln + 1);
|
|
|
|
for (i = 0; i < (act->lsa.length - sizeof(struct ospf_lsa_header) -
|
|
|
|
sizeof(struct ospf_lsa_net)) / sizeof(u32); i++)
|
|
|
|
{
|
|
|
|
DBG(" Working on router %I ", *(rts + i));
|
|
|
|
tmp = ospf_hash_find(oa->gr, *(rts + i), *(rts + i), LSA_T_RT);
|
|
|
|
if (tmp != NULL)
|
|
|
|
DBG("Found :-)\n");
|
|
|
|
else
|
|
|
|
DBG("Not found!\n");
|
|
|
|
add_cand(&oa->cand, tmp, act, act->dist, oa);
|
|
|
|
}
|
|
|
|
break;
|
2000-04-26 20:54:23 +08:00
|
|
|
}
|
2000-05-04 09:23:03 +08:00
|
|
|
}
|
|
|
|
/* Now sync our fib with nest's */
|
2000-06-08 07:34:43 +08:00
|
|
|
DBG("Now syncing my rt table with nest's\n");
|
2004-06-06 17:37:54 +08:00
|
|
|
FIB_ITERATE_INIT(&fit, in);
|
2000-05-04 09:23:03 +08:00
|
|
|
again:
|
2004-06-06 17:37:54 +08:00
|
|
|
FIB_ITERATE_START(in, &fit, nftmp)
|
2000-05-04 09:23:03 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
nf = (struct infib *) nftmp;
|
|
|
|
if (nf->metric == LSINFINITY)
|
2000-04-30 19:31:05 +08:00
|
|
|
{
|
|
|
|
net *ne;
|
2004-06-06 17:37:54 +08:00
|
|
|
struct top_hash_entry *en = nf->en;
|
|
|
|
ln = en->lsa_body;
|
|
|
|
|
|
|
|
ne = net_get(p->table, nf->fn.prefix, nf->fn.pxlen);
|
|
|
|
if ((en != NULL) && (en->nhi != NULL))
|
|
|
|
DBG("Deleting rt entry %I\n (P: %x, GW: %I, Iface: %s)\n",
|
|
|
|
nf->fn.prefix, en, en->nh, en->nhi->name);
|
2000-05-04 09:23:03 +08:00
|
|
|
rte_update(p->table, ne, p, NULL);
|
|
|
|
|
|
|
|
/* Now delete my fib */
|
|
|
|
FIB_ITERATE_PUT(&fit, nftmp);
|
|
|
|
fib_delete(in, nftmp);
|
|
|
|
goto again;
|
2000-04-30 19:31:05 +08:00
|
|
|
}
|
2000-05-01 06:14:31 +08:00
|
|
|
else
|
|
|
|
{
|
2000-05-04 09:23:03 +08:00
|
|
|
/* Update routing table */
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ipa_equal(nf->en->nh, ipa_from_u32(0)))
|
2000-05-09 06:03:29 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
struct top_hash_entry *en = nf->en;
|
|
|
|
struct ospf_neighbor *neigh;
|
|
|
|
neighbor *nn;
|
2000-05-09 06:03:29 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((neigh = find_neigh_noifa(po, en->lsa.rt)) == NULL)
|
2000-05-09 06:03:29 +08:00
|
|
|
{
|
|
|
|
goto skip;
|
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
nn = neigh_find(p, &neigh->ip, 0);
|
|
|
|
DBG(" Next hop calculated: %I\n", nn->addr);
|
|
|
|
en->nh = nn->addr;
|
|
|
|
en->nhi = nn->iface;
|
2000-05-09 06:03:29 +08:00
|
|
|
}
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((nf->en != nf->olden) || (nf->metric != nf->oldmetric))
|
2000-05-01 06:14:31 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
net *ne;
|
|
|
|
rta a0;
|
|
|
|
rte *e;
|
|
|
|
struct top_hash_entry *en = nf->en;
|
|
|
|
ln = en->lsa_body;
|
|
|
|
|
|
|
|
bzero(&a0, sizeof(a0));
|
|
|
|
|
|
|
|
a0.proto = p;
|
|
|
|
a0.source = RTS_OSPF;
|
|
|
|
a0.scope = SCOPE_UNIVERSE;
|
|
|
|
a0.cast = RTC_UNICAST;
|
|
|
|
if (ipa_to_u32(en->nh) == 0)
|
|
|
|
a0.dest = RTD_DEVICE;
|
|
|
|
else
|
|
|
|
a0.dest = RTD_ROUTER;
|
|
|
|
a0.flags = 0;
|
|
|
|
a0.aflags = 0;
|
|
|
|
a0.iface = en->nhi;
|
|
|
|
a0.gw = en->nh;
|
|
|
|
|
|
|
|
ne = net_get(p->table, nf->fn.prefix, nf->fn.pxlen);
|
|
|
|
e = rte_get_temp(&a0);
|
|
|
|
e->u.ospf.metric1 = nf->metric;
|
|
|
|
e->u.ospf.metric2 = LSINFINITY;
|
|
|
|
e->u.ospf.tag = 0;
|
|
|
|
e->pflags = 0;
|
|
|
|
e->net = ne;
|
2000-05-08 18:40:00 +08:00
|
|
|
e->pref = p->preference;
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("Modifying rt entry %I\n (GW: %I, Iface: %s)\n",
|
|
|
|
nf->fn.prefix, en->nh, en->nhi->name);
|
|
|
|
rte_update(p->table, ne, p, e);
|
2001-06-13 05:10:30 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
nf->olden = nf->en;
|
|
|
|
nf->oldmetric = nf->metric;
|
2000-05-01 06:14:31 +08:00
|
|
|
}
|
|
|
|
}
|
2000-05-03 03:27:57 +08:00
|
|
|
|
2000-04-27 04:16:36 +08:00
|
|
|
}
|
2000-05-09 06:03:29 +08:00
|
|
|
skip:
|
2000-05-04 09:23:03 +08:00
|
|
|
FIB_ITERATE_END(nftmp);
|
2000-05-12 08:22:43 +08:00
|
|
|
ospf_ext_spfa(po);
|
2000-05-09 08:03:08 +08:00
|
|
|
}
|
|
|
|
|
2004-06-07 00:00:09 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
ospf_rt_spf(struct proto_ospf *po)
|
|
|
|
{
|
|
|
|
struct ospf_area *oa;
|
|
|
|
WALK_LIST(oa, po->area_list)
|
|
|
|
{
|
|
|
|
ospf_rt_spfa(oa);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-08 07:23:37 +08:00
|
|
|
/**
|
|
|
|
* ospf_ext_spfa - calculate external paths
|
|
|
|
* @po: protocol
|
|
|
|
*
|
|
|
|
* After routing table for any area is calculated, calculation of external
|
|
|
|
* path is invoked. This process is described in 16.6 of RFC 2328.
|
|
|
|
* Inter- and Intra-area paths are always prefered over externals.
|
|
|
|
*/
|
2004-06-07 00:00:09 +08:00
|
|
|
static void
|
2000-05-10 18:47:17 +08:00
|
|
|
ospf_ext_spfa(struct proto_ospf *po) /* FIXME looking into inter-area */
|
2000-05-09 08:03:08 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
struct top_hash_entry *en, *etmp, *absr;
|
|
|
|
struct fib *ef = &po->efib;
|
2000-05-10 18:47:17 +08:00
|
|
|
struct extfib *nf;
|
2000-08-19 00:44:37 +08:00
|
|
|
struct infib *inf;
|
2000-05-12 08:22:43 +08:00
|
|
|
struct fib_iterator fit;
|
2004-06-06 17:37:54 +08:00
|
|
|
struct ospf_area *oa = NULL, *atmp, *absroa;
|
|
|
|
struct proto *p = &po->proto;
|
2000-05-10 18:47:17 +08:00
|
|
|
struct ospf_lsa_ext *le;
|
|
|
|
struct ospf_lsa_ext_tos *lt;
|
|
|
|
int mlen;
|
2004-06-06 17:37:54 +08:00
|
|
|
ip_addr ip, nnh;
|
|
|
|
struct iface *nnhi = NULL;
|
|
|
|
u16 met, met2;
|
2000-05-31 20:07:09 +08:00
|
|
|
u32 tag;
|
2000-05-17 07:24:50 +08:00
|
|
|
neighbor *nn;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Starting routing table calculation for ext routes");
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
FIB_WALK(ef, nftmp)
|
2000-05-12 08:22:43 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
nf = (struct extfib *) nftmp;
|
|
|
|
nf->metric = LSINFINITY;
|
|
|
|
nf->metric2 = LSINFINITY;
|
2000-05-12 08:22:43 +08:00
|
|
|
}
|
|
|
|
FIB_WALK_END;
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
WALK_LIST(oa, po->area_list)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (!oa->stub)
|
|
|
|
break;
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (oa == NULL)
|
|
|
|
return;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
WALK_SLIST(en, oa->lsal)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en->lsa.type != LSA_T_EXT)
|
|
|
|
continue;
|
|
|
|
if (en->lsa.age == LSA_MAXAGE)
|
|
|
|
continue;
|
|
|
|
if (en->lsa.rt == p->cf->global->router_id)
|
|
|
|
continue;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
le = en->lsa_body;
|
|
|
|
lt = (struct ospf_lsa_ext_tos *) (le + 1);
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2000-06-05 10:23:20 +08:00
|
|
|
DBG("%s: Working on LSA. ID: %I, RT: %I, Type: %u, Mask %I\n",
|
2004-06-06 17:37:54 +08:00
|
|
|
p->name, en->lsa.id, en->lsa.rt, en->lsa.type, le->netmask);
|
2000-06-05 10:23:20 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (lt->metric == LSINFINITY)
|
|
|
|
continue;
|
|
|
|
ip = ipa_and(ipa_from_u32(en->lsa.id), le->netmask);
|
|
|
|
mlen = ipa_mklen(le->netmask);
|
|
|
|
if ((mlen < 0) || (mlen > 32))
|
2000-05-17 06:34:49 +08:00
|
|
|
{
|
2000-06-05 03:56:06 +08:00
|
|
|
log("%s: Invalid mask in LSA. ID: %I, RT: %I, Type: %u, Mask %I",
|
2004-06-06 17:37:54 +08:00
|
|
|
p->name, en->lsa.id, en->lsa.rt, en->lsa.type, le->netmask);
|
2000-05-17 08:28:45 +08:00
|
|
|
continue;
|
2000-05-17 06:34:49 +08:00
|
|
|
}
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
nf = NULL;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
WALK_LIST(atmp, po->area_list)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((nf = fib_find(&atmp->infib, &ip, mlen)) != NULL)
|
|
|
|
break;
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
2000-05-04 09:23:03 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (nf != NULL)
|
|
|
|
continue; /* Some intra area path exists */
|
2000-08-18 03:42:52 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
absr = NULL;
|
|
|
|
absroa = NULL;
|
|
|
|
nnhi = NULL;
|
|
|
|
nnh = IPA_NONE;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
met = 0;
|
|
|
|
met2 = 0;
|
|
|
|
tag = 0;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
WALK_LIST(atmp, po->area_list) /*
|
2000-08-18 03:42:52 +08:00
|
|
|
* Find shortest path
|
|
|
|
* to advertising router
|
|
|
|
*/
|
2000-05-17 06:34:49 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((etmp =
|
|
|
|
ospf_hash_find(atmp->gr, en->lsa.rt, en->lsa.rt,
|
|
|
|
LSA_T_RT)) != NULL)
|
2000-05-17 06:34:49 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((absr == NULL) || (absr->dist > etmp->dist) ||
|
|
|
|
((etmp->dist == absr->dist) && (absroa->areaid < atmp->areaid)))
|
|
|
|
{
|
|
|
|
absr = etmp;
|
|
|
|
absroa = atmp;
|
2000-05-17 06:34:49 +08:00
|
|
|
break;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2000-05-17 06:34:49 +08:00
|
|
|
}
|
|
|
|
}
|
2000-11-22 07:47:51 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((absr == NULL) || (absr->dist == LSINFINITY) ||
|
|
|
|
(((struct ospf_lsa_rt *) (absr->lsa_body))->veb.bit.e == 0))
|
2000-06-05 10:23:20 +08:00
|
|
|
{
|
2000-08-18 03:42:52 +08:00
|
|
|
DBG("ASBR is null or its dist=INF\n");
|
2000-06-05 10:23:20 +08:00
|
|
|
continue;
|
|
|
|
}
|
2000-05-17 06:34:49 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ipa_compare(lt->fwaddr, ipa_from_u32(0)) == 0)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (lt->etos > 0) /* FW address == 0 */
|
2000-05-17 06:34:49 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
met = absr->dist;
|
|
|
|
met2 = lt->metric;
|
2000-05-17 06:34:49 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
met = absr->dist + lt->metric;
|
|
|
|
met2 = LSINFINITY;
|
2000-05-17 06:34:49 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
tag = lt->tag;
|
2000-05-17 06:34:49 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
else /* FW address !=0 */
|
2000-05-17 06:34:49 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
inf = NULL;
|
|
|
|
WALK_LIST(atmp, po->area_list)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((inf = fib_route(&atmp->infib, lt->fwaddr, 32)) != NULL)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2000-05-17 06:34:49 +08:00
|
|
|
break;
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
}
|
2000-06-05 10:23:20 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (inf == NULL)
|
2000-06-05 10:23:20 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("Cannot find network route (GW=%I)\n", lt->fwaddr);
|
|
|
|
continue;
|
2000-06-05 10:23:20 +08:00
|
|
|
}
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (lt->etos > 0)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
met = inf->metric;
|
|
|
|
met2 = lt->metric;
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
met = inf->metric + lt->metric;
|
|
|
|
met2 = LSINFINITY;
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
tag = lt->tag;
|
2000-05-17 07:24:50 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((nn = neigh_find(p, <->fwaddr, 0)) != NULL)
|
2000-05-17 07:24:50 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
nnh = lt->fwaddr;
|
|
|
|
nnhi = nn->iface;
|
2000-05-17 07:24:50 +08:00
|
|
|
}
|
2000-08-18 03:42:52 +08:00
|
|
|
else
|
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
nnh = inf->en->nh;
|
|
|
|
nnhi = inf->en->nhi;
|
2000-08-18 03:42:52 +08:00
|
|
|
}
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
2000-05-17 06:34:49 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
nf = fib_get(ef, &ip, mlen);
|
|
|
|
if ((nf->metric == LSINFINITY) || /* nf is new */
|
|
|
|
((met < nf->metric) && (nf->metric2 == met2)) || /* both E1 or E2
|
|
|
|
* with same metric */
|
|
|
|
((met2 < nf->metric2) && (nf->metric2 != LSINFINITY)) || /* E2 smaller and
|
|
|
|
* 1st is not E1 */
|
|
|
|
((nf->metric2 != LSINFINITY) && (met2 == LSINFINITY))) /* 2nd is E1 and
|
|
|
|
* 1st is E2 */
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (nf->metric != LSINFINITY)
|
|
|
|
OSPF_TRACE(D_EVENTS,
|
|
|
|
"Rewriting %I/%d met=%d, met2=%d, nmet=%d, nmet2=%d",
|
|
|
|
ip, mlen, nf->metric, nf->metric2, met, met2);
|
|
|
|
nf->metric = met;
|
|
|
|
nf->metric2 = met2;
|
|
|
|
nf->tag = tag;
|
|
|
|
|
|
|
|
if (nnhi != NULL)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
nf->nh = nnh;
|
|
|
|
nf->nhi = nnhi;
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ipa_compare(absr->nh, ipa_from_u32(0)) == 0)
|
|
|
|
{
|
|
|
|
struct ospf_neighbor *neigh;
|
2000-05-17 07:24:50 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((neigh = find_neigh_noifa(po, absr->lsa.rt)) == NULL)
|
2000-05-17 07:24:50 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("Cannot find neighbor\n");
|
|
|
|
nf->metric = LSINFINITY; /* delete this route */
|
|
|
|
continue;
|
2000-05-17 07:24:50 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
nn = neigh_find(p, &neigh->ip, 0);
|
|
|
|
DBG(" Next hop calculated: %I\n", nn->addr);
|
|
|
|
nf->nh = nn->addr;
|
|
|
|
nf->nhi = nn->iface;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nf->nh = absr->nh;
|
|
|
|
nf->nhi = absr->nhi;
|
|
|
|
}
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-08 07:34:43 +08:00
|
|
|
DBG("Now syncing my rt table with nest's\n");
|
2004-06-06 17:37:54 +08:00
|
|
|
FIB_ITERATE_INIT(&fit, ef);
|
2000-05-12 08:22:43 +08:00
|
|
|
noch:
|
2004-06-06 17:37:54 +08:00
|
|
|
FIB_ITERATE_START(ef, &fit, nftmp)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
nf = (struct extfib *) nftmp;
|
|
|
|
if (nf->metric == LSINFINITY)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
|
|
|
net *ne;
|
2004-06-06 17:37:54 +08:00
|
|
|
|
|
|
|
ne = net_get(p->table, nf->fn.prefix, nf->fn.pxlen);
|
2000-05-12 08:22:43 +08:00
|
|
|
DBG("Deleting rt entry %I\n (IP: %I, GW: %I)\n",
|
2004-06-06 17:37:54 +08:00
|
|
|
nf->fn.prefix, ip, nf->nh);
|
2000-05-10 18:47:17 +08:00
|
|
|
rte_update(p->table, ne, p, NULL);
|
|
|
|
|
|
|
|
/* Now delete my fib */
|
2000-05-12 08:22:43 +08:00
|
|
|
FIB_ITERATE_PUT(&fit, nftmp);
|
|
|
|
fib_delete(ef, nftmp);
|
|
|
|
goto noch;
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
else
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((nf->metric != nf->oldmetric) || (nf->metric2 != nf->oldmetric2) ||
|
|
|
|
(!ipa_equal(nf->nh, nf->oldnh)) || (nf->tag != nf->oldtag))
|
|
|
|
{
|
|
|
|
net *ne;
|
|
|
|
rta a0;
|
|
|
|
rte *e;
|
|
|
|
|
|
|
|
bzero(&a0, sizeof(a0));
|
|
|
|
|
|
|
|
a0.proto = p;
|
|
|
|
a0.source = RTS_OSPF_EXT;
|
|
|
|
a0.scope = SCOPE_UNIVERSE;
|
|
|
|
a0.cast = RTC_UNICAST;
|
|
|
|
a0.dest = RTD_ROUTER;
|
|
|
|
a0.flags = 0;
|
|
|
|
a0.aflags = 0;
|
|
|
|
a0.iface = nf->nhi;
|
|
|
|
a0.gw = nf->nh;
|
|
|
|
ne = net_get(p->table, nf->fn.prefix, nf->fn.pxlen);
|
|
|
|
e = rte_get_temp(&a0);
|
|
|
|
e->u.ospf.metric1 = nf->metric;
|
|
|
|
e->u.ospf.metric2 = nf->metric2;
|
|
|
|
e->u.ospf.tag = nf->tag;
|
|
|
|
e->pflags = 0;
|
|
|
|
e->net = ne;
|
|
|
|
e->pref = p->preference;
|
|
|
|
DBG("Modifying rt entry %I\n (IP: %I, GW: %I)\n",
|
|
|
|
nf->fn.prefix, ip, nf->nh);
|
|
|
|
rte_update(p->table, ne, p, e);
|
|
|
|
|
|
|
|
nf->oldmetric = nf->metric;
|
|
|
|
nf->oldmetric2 = nf->metric2;
|
|
|
|
nf->oldnh = nf->nh;
|
|
|
|
nf->oldtag = nf->tag;
|
|
|
|
}
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
2000-05-12 08:22:43 +08:00
|
|
|
FIB_ITERATE_END(nftmp);
|
2000-04-26 20:54:23 +08:00
|
|
|
}
|
|
|
|
|
2003-08-23 18:42:41 +08:00
|
|
|
/* Add LSA into list of candidates in Dijkstra's algorithm */
|
2004-06-07 00:00:09 +08:00
|
|
|
static void
|
2004-06-06 17:37:54 +08:00
|
|
|
add_cand(list * l, struct top_hash_entry *en, struct top_hash_entry *par,
|
|
|
|
u16 dist, struct ospf_area *oa)
|
2000-04-26 20:54:23 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
node *prev, *n;
|
|
|
|
int added = 0;
|
2000-04-30 17:32:41 +08:00
|
|
|
struct top_hash_entry *act;
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en == NULL)
|
|
|
|
return;
|
|
|
|
if (en->lsa.age == LSA_MAXAGE)
|
|
|
|
return;
|
2000-04-26 20:54:23 +08:00
|
|
|
/* FIXME Does it have link back? Test it! */
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en->color == INSPF)
|
|
|
|
return;
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (dist >= en->dist)
|
|
|
|
return;
|
2000-04-30 17:32:41 +08:00
|
|
|
/*
|
|
|
|
* FIXME The line above is not a bug, but we don't support
|
|
|
|
* multiple next hops. I'll start as soon as nest will
|
|
|
|
*/
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG(" Adding candidate: rt: %I, id: %I, type: %u\n", en->lsa.rt,
|
|
|
|
en->lsa.id, en->lsa.type);
|
|
|
|
|
|
|
|
en->nhi = NULL;
|
|
|
|
en->nh = IPA_NONE;
|
2000-04-30 19:31:05 +08:00
|
|
|
|
2001-06-09 22:55:10 +08:00
|
|
|
calc_next_hop(en, par, oa);
|
2000-04-30 17:32:41 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (!en->nhi)
|
|
|
|
return; /* We cannot find next hop, ignore it */
|
2004-06-02 17:14:03 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en->color == CANDIDATE) /* We found a shorter path */
|
2000-04-26 20:54:23 +08:00
|
|
|
{
|
2000-04-30 17:32:41 +08:00
|
|
|
rem_node(&en->cn);
|
2000-04-26 20:54:23 +08:00
|
|
|
}
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
en->dist = dist;
|
|
|
|
en->color = CANDIDATE;
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
prev = NULL;
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (EMPTY_LIST(*l))
|
2000-04-30 17:32:41 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
add_head(l, &en->cn);
|
2000-05-01 06:14:31 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
WALK_LIST(n, *l)
|
2000-04-26 20:54:23 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
act = SKIP_BACK(struct top_hash_entry, cn, n);
|
|
|
|
if ((act->dist > dist) ||
|
|
|
|
((act->dist == dist) && (act->lsa.type == LSA_T_NET)))
|
2000-05-01 06:14:31 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (prev == NULL)
|
|
|
|
add_head(l, &en->cn);
|
|
|
|
else
|
|
|
|
insert_node(&en->cn, prev);
|
|
|
|
added = 1;
|
|
|
|
break;
|
2000-05-01 06:14:31 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
prev = n;
|
2000-05-01 06:14:31 +08:00
|
|
|
}
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (!added)
|
2000-05-01 06:14:31 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
add_tail(l, &en->cn);
|
2000-04-26 20:54:23 +08:00
|
|
|
}
|
|
|
|
}
|
2001-06-09 22:55:10 +08:00
|
|
|
/* FIXME Some VLINK stuff should be here */
|
2000-04-26 20:54:23 +08:00
|
|
|
}
|
2000-04-29 23:57:14 +08:00
|
|
|
|
2004-06-07 00:00:09 +08:00
|
|
|
static void
|
2001-06-09 22:55:10 +08:00
|
|
|
calc_next_hop(struct top_hash_entry *en, struct top_hash_entry *par,
|
2004-06-06 17:37:54 +08:00
|
|
|
struct ospf_area *oa)
|
2000-04-29 23:57:14 +08:00
|
|
|
{
|
2000-04-30 19:31:05 +08:00
|
|
|
struct ospf_neighbor *neigh;
|
2004-06-06 17:37:54 +08:00
|
|
|
struct proto *p = &oa->po->proto;
|
|
|
|
struct proto_ospf *po = oa->po;
|
2000-06-05 10:23:20 +08:00
|
|
|
struct ospf_iface *ifa;
|
2004-06-06 17:37:54 +08:00
|
|
|
u32 myrid = p->cf->global->router_id;
|
2000-06-19 23:12:50 +08:00
|
|
|
|
2001-06-09 22:55:10 +08:00
|
|
|
DBG(" Next hop called.\n");
|
2004-06-06 17:37:54 +08:00
|
|
|
if (ipa_equal(par->nh, IPA_NONE))
|
2000-04-29 23:57:14 +08:00
|
|
|
{
|
2000-04-30 19:31:05 +08:00
|
|
|
neighbor *nn;
|
2000-06-19 23:12:50 +08:00
|
|
|
DBG(" Next hop calculating for id: %I rt: %I type: %u\n",
|
2004-06-06 17:37:54 +08:00
|
|
|
en->lsa.id, en->lsa.rt, en->lsa.type);
|
2000-06-19 23:12:50 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (par == oa->rt)
|
2000-06-05 10:23:20 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en->lsa.type == LSA_T_NET)
|
2000-06-05 10:23:20 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en->lsa.rt == myrid)
|
|
|
|
{
|
|
|
|
WALK_LIST(ifa, po->iface_list)
|
2004-06-07 00:00:09 +08:00
|
|
|
if (ipa_compare
|
|
|
|
(ifa->iface->addr->ip, ipa_from_u32(en->lsa.id)) == 0)
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
|
|
|
en->nhi = ifa->iface;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
log(L_ERR "I didn't find interface for my self originated LSA!\n");
|
|
|
|
/* This could sometimes happen */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ip_addr ip = ipa_from_u32(en->lsa.id);
|
|
|
|
nn = neigh_find(p, &ip, 0);
|
|
|
|
if (nn)
|
|
|
|
en->nhi = nn->iface;
|
|
|
|
return;
|
|
|
|
}
|
2000-06-19 23:12:50 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if ((neigh = find_neigh_noifa(po, en->lsa.rt)) == NULL)
|
|
|
|
return;
|
|
|
|
en->nhi = neigh->ifa->iface;
|
|
|
|
en->nh = neigh->ip; /* Yes, neighbor is it's own next hop */
|
|
|
|
return;
|
2000-06-05 10:23:20 +08:00
|
|
|
}
|
2000-06-19 23:12:50 +08:00
|
|
|
}
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (par->lsa.type == LSA_T_NET)
|
2000-06-19 23:12:50 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en->lsa.type == LSA_T_NET)
|
|
|
|
bug("Parent for net is net?");
|
|
|
|
if ((en->nhi = par->nhi) == NULL)
|
|
|
|
bug("Did not find next hop interface for INSPF lsa!");
|
|
|
|
if ((neigh = find_neigh_noifa(po, en->lsa.rt)) == NULL)
|
|
|
|
return;
|
|
|
|
en->nhi = neigh->ifa->iface;
|
|
|
|
en->nh = neigh->ip; /* Yes, neighbor is it's own next hop */
|
2000-06-19 23:12:50 +08:00
|
|
|
return;
|
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
else /* Parent is some RT neighbor */
|
2000-06-19 23:12:50 +08:00
|
|
|
{
|
2004-06-06 17:37:54 +08:00
|
|
|
log(L_ERR "Router's parent has no next hop. (EN=%I, PAR=%I)",
|
|
|
|
en->lsa.id, par->lsa.id);
|
|
|
|
/* I hoped this would never happen */
|
2004-06-02 17:14:03 +08:00
|
|
|
return;
|
2000-06-05 10:23:20 +08:00
|
|
|
}
|
2000-05-03 03:27:57 +08:00
|
|
|
}
|
2004-06-06 17:37:54 +08:00
|
|
|
en->nh = par->nh;
|
|
|
|
en->nhi = par->nhi;
|
2001-06-09 22:55:10 +08:00
|
|
|
DBG(" Next hop calculated: %I.\n", en->nh);
|
2000-05-03 03:27:57 +08:00
|
|
|
}
|