2000-04-26 20:54:23 +08:00
|
|
|
/*
|
2004-06-11 17:36:50 +08:00
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
|
|
|
* (c) 2000--2004 Ondrej Filip <feela@network.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
2000-04-26 20:54:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ospf.h"
|
2005-02-14 07:36:31 +08:00
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
static void add_cand(list * l, struct top_hash_entry *en,
|
|
|
|
struct top_hash_entry *par, u32 dist,
|
|
|
|
struct ospf_area *oa);
|
2009-12-05 05:20:13 +08:00
|
|
|
static int calc_next_hop(struct ospf_area *oa,
|
|
|
|
struct top_hash_entry *en,
|
|
|
|
struct top_hash_entry *par);
|
2004-07-16 00:37:52 +08:00
|
|
|
static void ospf_ext_spf(struct proto_ospf *po);
|
2004-06-11 17:36:50 +08:00
|
|
|
static void rt_sync(struct proto_ospf *po);
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* In ospf_area->rtr we store paths to routers, but we use RID (and not IP address)
|
2009-10-08 04:10:29 +08:00
|
|
|
as index, so we need to encapsulate RID to IP address */
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
#define ipa_from_rid(x) _MI(x)
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
#define ipa_from_rid(x) _MI(0,0,0,x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
static void
|
|
|
|
fill_ri(orta * orta)
|
|
|
|
{
|
|
|
|
orta->type = RTS_DUMMY;
|
2009-08-21 15:27:52 +08:00
|
|
|
orta->options = 0;
|
2004-06-11 17:36:50 +08:00
|
|
|
orta->oa = NULL;
|
|
|
|
orta->metric1 = LSINFINITY;
|
|
|
|
orta->metric2 = LSINFINITY;
|
2004-07-15 05:46:20 +08:00
|
|
|
orta->nh = IPA_NONE;
|
2004-06-11 17:36:50 +08:00
|
|
|
orta->ifa = NULL;
|
|
|
|
orta->ar = NULL;
|
|
|
|
orta->tag = 0;
|
|
|
|
}
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2000-05-03 03:27:57 +08:00
|
|
|
void
|
2004-06-11 17:36:50 +08:00
|
|
|
ospf_rt_initort(struct fib_node *fn)
|
2000-05-03 03:27:57 +08:00
|
|
|
{
|
2004-06-11 17:36:50 +08:00
|
|
|
ort *ri = (ort *) fn;
|
|
|
|
fill_ri(&ri->n);
|
|
|
|
memcpy(&ri->o, &ri->n, sizeof(orta));
|
2004-06-26 00:39:53 +08:00
|
|
|
ri->efn = NULL;
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|
2000-05-03 03:27:57 +08:00
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
/* If new is better return 1 */
|
2004-06-26 00:39:53 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is hard to understand:
|
|
|
|
* If rfc1583 is set to 1, it work likes normal route_better()
|
2005-03-14 18:59:52 +08:00
|
|
|
* But if it is set to 0, it prunes number of AS boundary
|
2004-06-26 00:39:53 +08:00
|
|
|
* routes before it starts the router decision
|
|
|
|
*/
|
2004-06-11 17:36:50 +08:00
|
|
|
static int
|
2004-06-26 00:39:53 +08:00
|
|
|
ri_better(struct proto_ospf *po, orta * new, ort *nefn, orta * old, ort *oefn, int rfc1583)
|
2004-06-11 17:36:50 +08:00
|
|
|
{
|
|
|
|
int newtype = new->type;
|
|
|
|
int oldtype = old->type;
|
|
|
|
|
|
|
|
if (old->type == RTS_DUMMY)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (old->metric1 == LSINFINITY)
|
|
|
|
return 1;
|
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (!rfc1583)
|
2004-06-11 17:36:50 +08:00
|
|
|
{
|
2005-03-14 18:59:52 +08:00
|
|
|
if ((new->type < RTS_OSPF_EXT1) && (new->oa->areaid == 0)) newtype = RTS_OSPF_IA;
|
2010-01-07 18:46:11 +08:00
|
|
|
if ((old->type < RTS_OSPF_EXT1) && (old->oa->areaid == 0)) oldtype = RTS_OSPF_IA;
|
2004-07-15 05:46:20 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (newtype < oldtype)
|
2004-06-11 17:36:50 +08:00
|
|
|
return 1;
|
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (newtype > oldtype)
|
2004-06-26 00:39:53 +08:00
|
|
|
return 0;
|
2004-06-11 17:36:50 +08:00
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
/* Same type */
|
2005-03-14 18:59:52 +08:00
|
|
|
if (new->type == RTS_OSPF_EXT2)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
if (new->metric2 < old->metric2) return 1;
|
|
|
|
if (new->metric2 > old->metric2) return 0;
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (((new->type == RTS_OSPF_EXT2) || (new->type == RTS_OSPF_EXT1)) && (!po->rfc1583))
|
2004-06-11 17:36:50 +08:00
|
|
|
{
|
2005-03-14 18:59:52 +08:00
|
|
|
newtype = nefn->n.type;
|
|
|
|
oldtype = oefn->n.type;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (nefn->n.oa->areaid == 0) newtype = RTS_OSPF_IA;
|
|
|
|
if (oefn->n.oa->areaid == 0) oldtype = RTS_OSPF_IA;
|
2004-06-11 17:36:50 +08:00
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (newtype < oldtype) return 1;
|
|
|
|
if (newtype > oldtype) return 0;
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (new->metric1 < old->metric1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (new->metric1 > old->metric1)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (new->oa->areaid > old->oa->areaid) return 1; /* Larger AREAID is preffered */
|
|
|
|
|
|
|
|
return 0; /* Old is shorter or same */
|
2000-05-03 03:27:57 +08:00
|
|
|
}
|
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
static void
|
|
|
|
ri_install(struct proto_ospf *po, ip_addr prefix, int pxlen, int dest,
|
2004-06-26 00:39:53 +08:00
|
|
|
orta * new, ort * ipath)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-26 00:39:53 +08:00
|
|
|
struct ospf_area *oa = new->oa;
|
|
|
|
ort *old;
|
2004-06-11 17:36:50 +08:00
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
if (dest == ORT_NET)
|
2004-06-11 17:36:50 +08:00
|
|
|
{
|
2004-06-26 00:39:53 +08:00
|
|
|
struct area_net *anet;
|
|
|
|
old = (ort *) fib_get(&po->rtf, &prefix, pxlen);
|
|
|
|
if (ri_better(po, new, ipath, &old->n, old->efn, 1))
|
|
|
|
{
|
|
|
|
memcpy(&old->n, new, sizeof(orta));
|
|
|
|
old->efn = ipath;
|
2005-02-20 11:37:47 +08:00
|
|
|
if ((new->type == RTS_OSPF) && (anet = (struct area_net *)fib_route(&oa->net_fib, prefix, pxlen)))
|
|
|
|
{
|
|
|
|
anet->active = 1;
|
|
|
|
if (new->metric1 > anet->metric) anet->metric = new->metric1;
|
|
|
|
}
|
2005-02-19 02:51:42 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
old = (ort *) fib_get(&oa->rtr, &prefix, pxlen);
|
|
|
|
|
|
|
|
if (ri_better(po, new, ipath, &old->n, old->efn, 1))
|
|
|
|
{
|
|
|
|
memcpy(&old->n, new, sizeof(orta));
|
|
|
|
old->efn = ipath;
|
|
|
|
}
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
static void
|
|
|
|
add_network(struct ospf_area *oa, ip_addr px, int pxlen, int metric, struct top_hash_entry *en)
|
|
|
|
{
|
|
|
|
orta nf;
|
|
|
|
nf.type = RTS_OSPF;
|
|
|
|
nf.options = 0;
|
|
|
|
nf.metric1 = metric;
|
|
|
|
nf.metric2 = LSINFINITY;
|
|
|
|
nf.tag = 0;
|
|
|
|
nf.oa = oa;
|
|
|
|
nf.ar = en;
|
|
|
|
nf.nh = en->nh;
|
|
|
|
nf.ifa = en->nhi;
|
|
|
|
|
|
|
|
/* FIXME check nf.ifa on stubs */
|
|
|
|
ri_install(oa->po, px, pxlen, ORT_NET, &nf, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef OSPFv3
|
|
|
|
static void
|
|
|
|
process_prefixes(struct ospf_area *oa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct top_hash_entry *en, *src;
|
|
|
|
struct ospf_lsa_prefix *px;
|
|
|
|
ip_addr pxa;
|
|
|
|
int pxlen;
|
|
|
|
u8 pxopts;
|
|
|
|
u16 metric;
|
|
|
|
u32 *buf;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
WALK_SLIST(en, po->lsal)
|
|
|
|
{
|
|
|
|
if (en->lsa.type != LSA_T_PREFIX)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (en->domain != oa->areaid)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (en->lsa.age == LSA_MAXAGE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
px = en->lsa_body;
|
2009-09-17 18:18:03 +08:00
|
|
|
|
|
|
|
/* For router prefix-LSA, we would like to find the first router-LSA */
|
|
|
|
if (px->ref_type == LSA_T_RT)
|
|
|
|
src = ospf_hash_find_rt(po->gr, oa->areaid, px->ref_rt);
|
|
|
|
else
|
|
|
|
src = ospf_hash_find(po->gr, oa->areaid, px->ref_id, px->ref_rt, px->ref_type);
|
2009-08-25 22:42:14 +08:00
|
|
|
|
|
|
|
if (!src)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (src->lsa.age == LSA_MAXAGE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((src->lsa.type != LSA_T_RT) && (src->lsa.type != LSA_T_NET))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
buf = px->rest;
|
|
|
|
for (i = 0; i < px->pxcount; i++)
|
|
|
|
{
|
2009-10-15 06:28:04 +08:00
|
|
|
buf = lsa_get_ipv6_prefix(buf, &pxa, &pxlen, &pxopts, &metric);
|
2009-08-25 22:42:14 +08:00
|
|
|
|
|
|
|
if (pxopts & OPT_PX_NU)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
add_network(oa, pxa, pxlen, src->dist + metric, src);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-17 18:18:03 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
ospf_rt_spfa_rtlinks(struct ospf_area *oa, struct top_hash_entry *act, struct top_hash_entry *en)
|
|
|
|
{
|
|
|
|
struct proto *p = &oa->po->proto;
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
orta nf;
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
struct ospf_lsa_rt *rt = en->lsa_body;
|
|
|
|
struct ospf_lsa_rt_link *rr = (struct ospf_lsa_rt_link *) (rt + 1);
|
|
|
|
|
|
|
|
for (i = 0; i < lsa_rt_count(&en->lsa); i++)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_rt_link *rtl = rr + i;
|
|
|
|
struct top_hash_entry *tmp = NULL;
|
|
|
|
|
|
|
|
DBG(" Working on link: %R (type: %u) ", rtl->id, rtl->type);
|
|
|
|
switch (rtl->type)
|
|
|
|
{
|
|
|
|
#ifdef OSPFv2
|
|
|
|
case LSART_STUB:
|
|
|
|
/*
|
|
|
|
* This violates rfc2328! But it is mostly harmless.
|
|
|
|
*/
|
|
|
|
DBG("\n");
|
|
|
|
|
|
|
|
nf.type = RTS_OSPF;
|
|
|
|
nf.options = 0;
|
|
|
|
nf.metric1 = act->dist + rtl->metric;
|
|
|
|
nf.metric2 = LSINFINITY;
|
|
|
|
nf.tag = 0;
|
|
|
|
nf.oa = oa;
|
|
|
|
nf.ar = act;
|
|
|
|
nf.nh = act->nh;
|
|
|
|
nf.ifa = act->nhi;
|
|
|
|
|
|
|
|
if (act == oa->rt)
|
|
|
|
{
|
|
|
|
struct ospf_iface *iff;
|
|
|
|
|
|
|
|
WALK_LIST(iff, po->iface_list) /* Try to find corresponding interface */
|
|
|
|
{
|
|
|
|
if (iff->iface && (iff->type != OSPF_IT_VLINK) &&
|
|
|
|
(rtl->id == (ipa_to_u32(ipa_mkmask(iff->iface->addr->pxlen))
|
|
|
|
& ipa_to_u32(iff->iface->addr->prefix)))) /* No VLINK and IP must match */
|
|
|
|
{
|
|
|
|
nf.ifa = iff;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!nf.ifa)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ri_install(po, ipa_from_u32(rtl->id),
|
|
|
|
ipa_mklen(ipa_from_u32(rtl->data)), ORT_NET, &nf, NULL);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case LSART_NET:
|
|
|
|
#ifdef OSPFv2
|
|
|
|
/* In OSPFv2, rtl->id is IP addres of DR, Router ID is not known */
|
|
|
|
tmp = ospf_hash_find_net(po->gr, oa->areaid, rtl->id);
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
tmp = ospf_hash_find(po->gr, oa->areaid, rtl->nif, rtl->id, LSA_T_NET);
|
|
|
|
#endif
|
|
|
|
if (tmp == NULL)
|
|
|
|
DBG("Not found!\n");
|
|
|
|
else
|
|
|
|
DBG("Found. :-)\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LSART_VLNK:
|
|
|
|
case LSART_PTP:
|
|
|
|
tmp = ospf_hash_find_rt(po->gr, oa->areaid, rtl->id);
|
|
|
|
DBG("PTP found.\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log("Unknown link type in router lsa. (rid = %R)", act->lsa.id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
static 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
|
|
|
struct proto *p = &oa->po->proto;
|
|
|
|
struct proto_ospf *po = oa->po;
|
2009-09-17 18:18:03 +08:00
|
|
|
struct ospf_lsa_rt *rt;
|
2000-05-04 09:23:03 +08:00
|
|
|
struct ospf_lsa_net *ln;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct ospf_iface *iface;
|
|
|
|
struct top_hash_entry *act, *tmp;
|
2009-09-17 18:18:03 +08:00
|
|
|
u32 i, *rts;
|
|
|
|
orta nf;
|
2004-06-26 00:39:53 +08:00
|
|
|
node *n;
|
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
if (oa->rt == NULL)
|
|
|
|
return;
|
2000-06-05 01:51:52 +08:00
|
|
|
|
2009-07-23 22:51:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Starting routing table calculation for area %R", oa->areaid);
|
2004-06-11 17:36:50 +08:00
|
|
|
|
2004-06-07 01:03:56 +08:00
|
|
|
if (oa->rt->dist != LSINFINITY)
|
2004-07-15 05:46:20 +08:00
|
|
|
bug("Aging was not processed.");
|
2004-06-07 01:03:56 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16.1. (1) */
|
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);
|
2009-07-23 22:51:28 +08:00
|
|
|
DBG("RT LSA: rt: %R, id: %R, 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
|
|
|
n = HEAD(oa->cand);
|
|
|
|
act = SKIP_BACK(struct top_hash_entry, cn, n);
|
2000-04-26 20:54:23 +08:00
|
|
|
rem_node(n);
|
|
|
|
|
2009-07-23 22:51:28 +08:00
|
|
|
DBG("Working on LSA: rt: %R, id: %R, 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;
|
2009-08-21 15:27:52 +08:00
|
|
|
if (rt->options & OPT_RT_V)
|
2004-06-06 17:37:54 +08:00
|
|
|
oa->trcap = 1;
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2009-11-17 17:31:33 +08:00
|
|
|
/* In OSPFv2, just ASBRs and ABRs are needed to add to oa->rtr table */
|
|
|
|
// ((rt->options & OPT_RT_V) || (rt->options & OPT_RT_E))
|
|
|
|
|
|
|
|
nf.type = RTS_OSPF;
|
|
|
|
nf.options = rt->options;
|
|
|
|
nf.metric1 = act->dist;
|
|
|
|
nf.metric2 = LSINFINITY;
|
|
|
|
nf.tag = 0;
|
|
|
|
nf.oa = oa;
|
|
|
|
nf.ar = act;
|
|
|
|
nf.nh = act->nh;
|
|
|
|
nf.ifa = act->nhi;
|
|
|
|
ri_install(po, ipa_from_rid(act->lsa.rt), MAX_PREFIX_LENGTH, ORT_ROUTER, &nf, NULL);
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
2009-09-17 18:18:03 +08:00
|
|
|
ospf_rt_spfa_rtlinks(oa, act, act);
|
2009-08-21 15:27:52 +08:00
|
|
|
#else /* OSPFv3 */
|
2009-09-17 18:18:03 +08:00
|
|
|
for (tmp = ospf_hash_find_rt_first(po->gr, act->domain, act->lsa.rt);
|
|
|
|
tmp; tmp = ospf_hash_find_rt_next(tmp))
|
|
|
|
ospf_rt_spfa_rtlinks(oa, act, tmp);
|
2009-08-21 15:27:52 +08:00
|
|
|
#endif
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
break;
|
|
|
|
case LSA_T_NET:
|
|
|
|
ln = act->lsa_body;
|
2009-08-25 22:42:14 +08:00
|
|
|
|
|
|
|
#ifdef OSPFv2
|
|
|
|
add_network(oa, ipa_and(ipa_from_u32(act->lsa.id), ln->netmask),
|
|
|
|
ipa_mklen(ln->netmask), act->dist, act);
|
|
|
|
#endif
|
2004-06-11 17:36:50 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
rts = (u32 *) (ln + 1);
|
2009-08-21 15:27:52 +08:00
|
|
|
for (i = 0; i < lsa_net_count(&act->lsa); i++)
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
2009-07-23 22:51:28 +08:00
|
|
|
DBG(" Working on router %R ", rts[i]);
|
2009-09-17 18:18:03 +08:00
|
|
|
tmp = ospf_hash_find_rt(po->gr, oa->areaid, rts[i]);
|
2004-06-06 17:37:54 +08:00
|
|
|
if (tmp != NULL)
|
|
|
|
DBG("Found :-)\n");
|
|
|
|
else
|
|
|
|
DBG("Not found!\n");
|
2005-02-14 07:36:31 +08:00
|
|
|
add_cand(&oa->cand, tmp, act, act->dist, oa);
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
|
|
|
break;
|
2000-04-26 20:54:23 +08:00
|
|
|
}
|
2000-05-04 09:23:03 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
#ifdef OSPFv3
|
|
|
|
process_prefixes(oa);
|
|
|
|
#endif
|
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
/* Find new/lost VLINK peers */
|
|
|
|
WALK_LIST(iface, po->iface_list)
|
|
|
|
{
|
|
|
|
if ((iface->type == OSPF_IT_VLINK) && (iface->voa == oa))
|
|
|
|
{
|
2009-09-17 18:18:03 +08:00
|
|
|
if ((tmp = ospf_hash_find_rt(po->gr, oa->areaid, iface->vid)) &&
|
|
|
|
(!ipa_equal(tmp->lb, IPA_NONE)))
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
2005-02-14 07:36:31 +08:00
|
|
|
if ((iface->state != OSPF_IS_PTP) || (iface->iface != tmp->nhi->iface) || (!ipa_equal(iface->vip, tmp->lb)))
|
2004-07-15 05:46:20 +08:00
|
|
|
{
|
2009-07-23 22:51:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Vlink peer %R found", tmp->lsa.id);
|
2004-07-15 05:46:20 +08:00
|
|
|
ospf_iface_sm(iface, ISM_DOWN);
|
2005-02-14 07:36:31 +08:00
|
|
|
iface->iface = tmp->nhi->iface;
|
2004-07-15 05:46:20 +08:00
|
|
|
iface->vip = tmp->lb;
|
|
|
|
ospf_iface_sm(iface, ISM_UP);
|
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
if (iface->state > OSPF_IS_DOWN)
|
|
|
|
{
|
2009-07-23 22:51:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Vlink peer %R lost", iface->vid);
|
2004-07-15 05:46:20 +08:00
|
|
|
ospf_iface_sm(iface, ISM_DOWN);
|
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2009-12-07 05:05:50 +08:00
|
|
|
link_back(struct ospf_area *oa, struct top_hash_entry *en, struct top_hash_entry *par)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
u32 i, *rts;
|
|
|
|
struct ospf_lsa_net *ln;
|
|
|
|
struct ospf_lsa_rt *rt;
|
|
|
|
struct ospf_lsa_rt_link *rtl, *rr;
|
2009-12-07 05:05:50 +08:00
|
|
|
struct top_hash_entry *tmp;
|
2004-07-16 00:37:52 +08:00
|
|
|
struct proto_ospf *po = oa->po;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-12-07 05:05:50 +08:00
|
|
|
if (!en || !par) return 0;
|
|
|
|
|
|
|
|
// FIXME lb should be properly set for vlinks */
|
|
|
|
en->lb = IPA_NONE;
|
|
|
|
switch (en->lsa.type)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
case LSA_T_RT:
|
2009-12-07 05:05:50 +08:00
|
|
|
rt = (struct ospf_lsa_rt *) en->lsa_body;
|
2004-06-26 00:39:53 +08:00
|
|
|
rr = (struct ospf_lsa_rt_link *) (rt + 1);
|
2009-12-07 05:05:50 +08:00
|
|
|
for (i = 0; i < lsa_rt_count(&en->lsa); i++)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
rtl = (rr + i);
|
|
|
|
switch (rtl->type)
|
|
|
|
{
|
|
|
|
case LSART_STUB:
|
|
|
|
break;
|
|
|
|
case LSART_NET:
|
2009-12-07 05:05:50 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
/* In OSPFv2, rtl->id is IP addres of DR, Router ID is not known */
|
|
|
|
tmp = ospf_hash_find_net(po->gr, oa->areaid, rtl->id);
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
tmp = ospf_hash_find(po->gr, oa->areaid, rtl->nif, rtl->id, LSA_T_NET);
|
|
|
|
#endif
|
|
|
|
if (tmp == par)
|
2004-06-26 00:39:53 +08:00
|
|
|
return 1;
|
2009-12-07 05:05:50 +08:00
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
break;
|
|
|
|
case LSART_VLNK:
|
|
|
|
case LSART_PTP:
|
2009-12-07 05:05:50 +08:00
|
|
|
tmp = ospf_hash_find_rt(po->gr, oa->areaid, rtl->id);
|
|
|
|
if (tmp == par)
|
2004-06-26 00:39:53 +08:00
|
|
|
return 1;
|
2009-12-07 05:05:50 +08:00
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
break;
|
|
|
|
default:
|
2009-12-07 05:05:50 +08:00
|
|
|
log(L_WARN "Unknown link type in router lsa. (rid = %R)", en->lsa.rt);
|
2004-06-26 00:39:53 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LSA_T_NET:
|
2009-12-07 05:05:50 +08:00
|
|
|
ln = en->lsa_body;
|
2004-06-26 00:39:53 +08:00
|
|
|
rts = (u32 *) (ln + 1);
|
2009-12-07 05:05:50 +08:00
|
|
|
for (i = 0; i < lsa_net_count(&en->lsa); i++)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
2009-12-07 05:05:50 +08:00
|
|
|
tmp = ospf_hash_find_rt(po->gr, oa->areaid, rts[i]);
|
|
|
|
if (tmp == par)
|
2004-06-26 00:39:53 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2009-12-07 05:05:50 +08:00
|
|
|
bug("Unknown lsa type %x.", en->lsa.type);
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ospf_rt_sum_tr(struct ospf_area *oa)
|
|
|
|
{
|
|
|
|
struct proto *p = &oa->po->proto;
|
|
|
|
struct proto_ospf *po = oa->po;
|
2004-07-15 05:46:20 +08:00
|
|
|
struct ospf_area *bb = po->backbone;
|
2009-08-21 15:27:52 +08:00
|
|
|
ip_addr ip, abrip;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct top_hash_entry *en;
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 dst_rid, metric, options;
|
|
|
|
int pxlen = -1, type = -1;
|
2004-06-26 00:39:53 +08:00
|
|
|
ort *re = NULL, *abr;
|
|
|
|
orta nf;
|
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (!bb) return;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2004-07-16 00:37:52 +08:00
|
|
|
WALK_SLIST(en, po->lsal)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
if ((en->lsa.type != LSA_T_SUM_RT) && (en->lsa.type != LSA_T_SUM_NET))
|
2004-07-16 00:37:52 +08:00
|
|
|
continue;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
if (en->domain != oa->areaid)
|
|
|
|
continue;
|
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
if (en->lsa.age == LSA_MAXAGE)
|
|
|
|
continue;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
if (en->dist == LSINFINITY)
|
|
|
|
continue;
|
|
|
|
|
2009-12-11 08:20:53 +08:00
|
|
|
if (en->lsa.rt == po->router_id)
|
2004-06-26 00:39:53 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (en->lsa.type == LSA_T_SUM_NET)
|
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
struct ospf_lsa_sum *ls = en->lsa_body;
|
|
|
|
pxlen = ipa_mklen(ls->netmask);
|
|
|
|
ip = ipa_and(ipa_from_u32(en->lsa.id), ls->netmask);
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
u8 pxopts;
|
2009-08-25 22:42:14 +08:00
|
|
|
u16 rest;
|
2009-08-21 15:27:52 +08:00
|
|
|
struct ospf_lsa_sum_net *ls = en->lsa_body;
|
2009-10-15 06:28:04 +08:00
|
|
|
lsa_get_ipv6_prefix(ls->prefix, &ip, &pxlen, &pxopts, &rest);
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
if (pxopts & OPT_PX_NU)
|
|
|
|
continue;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
metric = ls->metric & METRIC_MASK;
|
|
|
|
options = 0;
|
2004-06-26 00:39:53 +08:00
|
|
|
type = ORT_NET;
|
2009-08-21 15:27:52 +08:00
|
|
|
re = (ort *) fib_find(&po->rtf, &ip, pxlen);
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
else if (en->lsa.type == LSA_T_SUM_RT)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
struct ospf_lsa_sum *ls = en->lsa_body;
|
|
|
|
dst_rid = en->lsa.id;
|
|
|
|
options = 0;
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
struct ospf_lsa_sum_rt *ls = en->lsa_body;
|
|
|
|
dst_rid = ls->drid;
|
|
|
|
options = ls->options & OPTIONS_MASK;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ip = ipa_from_rid(dst_rid);
|
2009-08-28 00:25:46 +08:00
|
|
|
pxlen = MAX_PREFIX_LENGTH;
|
2009-08-21 15:27:52 +08:00
|
|
|
metric = ls->metric & METRIC_MASK;
|
|
|
|
options |= ORTA_ASBR;
|
2004-06-26 00:39:53 +08:00
|
|
|
type = ORT_ROUTER;
|
2009-08-21 15:27:52 +08:00
|
|
|
re = (ort *) fib_find(&bb->rtr, &ip, pxlen);
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (!re) continue;
|
|
|
|
if (re->n.oa->areaid != 0) continue;
|
|
|
|
if ((re->n.type != RTS_OSPF) && (re->n.type != RTS_OSPF_IA)) continue;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
abrip = ipa_from_rid(en->lsa.rt);
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-08-28 00:25:46 +08:00
|
|
|
abr = fib_find(&oa->rtr, &abrip, MAX_PREFIX_LENGTH);
|
2005-03-14 18:59:52 +08:00
|
|
|
if (!abr) continue;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
|
|
|
nf.type = re->n.type;
|
2009-08-21 15:27:52 +08:00
|
|
|
nf.options = options;
|
|
|
|
nf.metric1 = abr->n.metric1 + metric;
|
2004-06-26 00:39:53 +08:00
|
|
|
nf.metric2 = LSINFINITY;
|
2008-11-15 04:13:56 +08:00
|
|
|
nf.tag = 0;
|
2004-06-26 00:39:53 +08:00
|
|
|
nf.oa = oa;
|
|
|
|
nf.ar = abr->n.ar;
|
|
|
|
nf.nh = abr->n.nh;
|
|
|
|
nf.ifa = abr->n.ifa;
|
2009-08-21 15:27:52 +08:00
|
|
|
ri_install(po, ip, pxlen, type, &nf, NULL);
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
2000-05-09 08:03:08 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
ospf_rt_sum(struct ospf_area *oa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct top_hash_entry *en;
|
2009-08-21 15:27:52 +08:00
|
|
|
ip_addr ip, abrip; /* abrIP is actually ID */
|
|
|
|
u32 dst_rid, metric, options;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct area_net *anet;
|
|
|
|
orta nf;
|
2005-02-21 02:56:06 +08:00
|
|
|
ort *abr;
|
2009-08-21 15:27:52 +08:00
|
|
|
int pxlen = -1, type = -1;
|
2000-05-09 08:03:08 +08:00
|
|
|
|
2009-07-23 22:51:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Starting routing table calculation for inter-area (area %R)", oa->areaid);
|
2004-06-07 00:00:09 +08:00
|
|
|
|
2004-07-16 00:37:52 +08:00
|
|
|
WALK_SLIST(en, po->lsal)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
if ((en->lsa.type != LSA_T_SUM_RT) && (en->lsa.type != LSA_T_SUM_NET))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (en->domain != oa->areaid)
|
2004-07-16 00:37:52 +08:00
|
|
|
continue;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
/* Page 169 (1) */
|
|
|
|
if (en->lsa.age == LSA_MAXAGE)
|
|
|
|
continue;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
/* Page 169 (2) */
|
2009-12-11 08:20:53 +08:00
|
|
|
if (en->lsa.rt == po->router_id)
|
2004-06-26 00:39:53 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
if (en->lsa.type == LSA_T_SUM_NET)
|
|
|
|
{
|
2005-02-14 07:36:31 +08:00
|
|
|
struct ospf_area *oaa;
|
|
|
|
int skip = 0;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
#ifdef OSPFv2
|
|
|
|
struct ospf_lsa_sum *ls = en->lsa_body;
|
|
|
|
pxlen = ipa_mklen(ls->netmask);
|
|
|
|
ip = ipa_and(ipa_from_u32(en->lsa.id), ls->netmask);
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
u8 pxopts;
|
2009-08-25 22:42:14 +08:00
|
|
|
u16 rest;
|
2009-08-21 15:27:52 +08:00
|
|
|
struct ospf_lsa_sum_net *ls = en->lsa_body;
|
2009-10-15 06:28:04 +08:00
|
|
|
lsa_get_ipv6_prefix(ls->prefix, &ip, &pxlen, &pxopts, &rest);
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
if (pxopts & OPT_PX_NU)
|
|
|
|
continue;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
metric = ls->metric & METRIC_MASK;
|
|
|
|
options = 0;
|
|
|
|
type = ORT_NET;
|
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
/* Page 169 (3) */
|
2005-02-14 07:36:31 +08:00
|
|
|
WALK_LIST(oaa, po->area_list)
|
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
if ((anet = fib_find(&oaa->net_fib, &ip, pxlen)) && anet->active)
|
2005-02-14 07:36:31 +08:00
|
|
|
{
|
|
|
|
skip = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (skip) continue;
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
2004-06-27 04:15:34 +08:00
|
|
|
else
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
struct ospf_lsa_sum *ls = en->lsa_body;
|
|
|
|
dst_rid = en->lsa.id;
|
|
|
|
options = 0;
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
struct ospf_lsa_sum_rt *ls = en->lsa_body;
|
|
|
|
dst_rid = ls->drid;
|
|
|
|
options = ls->options & OPTIONS_MASK;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ip = ipa_from_rid(dst_rid);
|
2009-08-28 00:25:46 +08:00
|
|
|
pxlen = MAX_PREFIX_LENGTH;
|
2009-08-21 15:27:52 +08:00
|
|
|
metric = ls->metric & METRIC_MASK;
|
|
|
|
options |= ORTA_ASBR;
|
2004-06-26 00:39:53 +08:00
|
|
|
type = ORT_ROUTER;
|
|
|
|
}
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* Page 169 (1) */
|
|
|
|
if (metric == LSINFINITY)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Page 169 (4) */
|
|
|
|
abrip = ipa_from_rid(en->lsa.rt);
|
2009-08-28 00:25:46 +08:00
|
|
|
if (!(abr = (ort *) fib_find(&oa->rtr, &abrip, MAX_PREFIX_LENGTH))) continue;
|
2004-06-26 00:39:53 +08:00
|
|
|
if (abr->n.metric1 == LSINFINITY) continue;
|
2009-08-21 15:27:52 +08:00
|
|
|
if (!(abr->n.options & ORTA_ABR)) continue;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
|
|
|
nf.type = RTS_OSPF_IA;
|
2009-08-21 15:27:52 +08:00
|
|
|
nf.options = options;
|
|
|
|
nf.metric1 = abr->n.metric1 + metric;
|
2004-06-26 00:39:53 +08:00
|
|
|
nf.metric2 = LSINFINITY;
|
2008-11-15 04:13:56 +08:00
|
|
|
nf.tag = 0;
|
2004-06-26 00:39:53 +08:00
|
|
|
nf.oa = oa;
|
|
|
|
nf.ar = abr->n.ar;
|
|
|
|
nf.nh = abr->n.nh;
|
|
|
|
nf.ifa = abr->n.ifa;
|
2009-08-21 15:27:52 +08:00
|
|
|
ri_install(po, ip, pxlen, type, &nf, NULL);
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ospf_rt_spf - calculate internal routes
|
|
|
|
* @po: OSPF protocol
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* This function is invoked from ospf_disp().
|
|
|
|
*/
|
2004-06-07 00:00:09 +08:00
|
|
|
void
|
|
|
|
ospf_rt_spf(struct proto_ospf *po)
|
|
|
|
{
|
2004-06-11 17:36:50 +08:00
|
|
|
struct proto *p = &po->proto;
|
2004-06-07 00:00:09 +08:00
|
|
|
struct ospf_area *oa;
|
2004-06-11 17:36:50 +08:00
|
|
|
ort *ri;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct area_net *anet;
|
|
|
|
|
|
|
|
if (po->areano == 0) return;
|
2004-06-11 17:36:50 +08:00
|
|
|
|
2004-07-16 00:37:52 +08:00
|
|
|
po->cleanup = 1;
|
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Starting routing table calculation");
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16. (1) - Invalidate old routing table */
|
2004-06-26 00:39:53 +08:00
|
|
|
FIB_WALK(&po->rtf, nftmp)
|
2004-06-11 17:36:50 +08:00
|
|
|
{
|
|
|
|
ri = (ort *) nftmp;
|
|
|
|
memcpy(&ri->o, &ri->n, sizeof(orta)); /* Backup old data */
|
|
|
|
fill_ri(&ri->n);
|
|
|
|
}
|
|
|
|
FIB_WALK_END;
|
|
|
|
|
|
|
|
|
2004-06-07 00:00:09 +08:00
|
|
|
WALK_LIST(oa, po->area_list)
|
|
|
|
{
|
2004-06-26 00:39:53 +08:00
|
|
|
FIB_WALK(&oa->rtr, nftmp)
|
|
|
|
{
|
|
|
|
ri = (ort *) nftmp;
|
|
|
|
memcpy(&ri->o, &ri->n, sizeof(orta)); /* Backup old data */
|
|
|
|
fill_ri(&ri->n);
|
|
|
|
}
|
|
|
|
FIB_WALK_END;
|
|
|
|
|
|
|
|
FIB_WALK(&oa->net_fib, nftmp)
|
|
|
|
{
|
|
|
|
anet = (struct area_net *) nftmp;
|
|
|
|
anet->active = 0;
|
2005-02-19 03:36:32 +08:00
|
|
|
anet->metric = 1;
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
FIB_WALK_END;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
/* 16. (2) */
|
2004-06-07 00:00:09 +08:00
|
|
|
ospf_rt_spfa(oa);
|
|
|
|
}
|
2004-06-11 17:36:50 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16. (3) */
|
2005-02-14 07:36:31 +08:00
|
|
|
if ((po->areano == 1) || (!po->backbone))
|
2004-06-11 17:36:50 +08:00
|
|
|
{
|
2004-06-26 00:39:53 +08:00
|
|
|
ospf_rt_sum(HEAD(po->area_list));
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-02-14 07:36:31 +08:00
|
|
|
ospf_rt_sum(po->backbone);
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
2004-06-11 17:36:50 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16. (4) */
|
2004-06-26 00:39:53 +08:00
|
|
|
WALK_LIST(oa, po->area_list)
|
|
|
|
{
|
|
|
|
if (oa->trcap && (oa->areaid != 0))
|
2004-06-11 17:36:50 +08:00
|
|
|
{
|
2004-06-26 00:39:53 +08:00
|
|
|
ospf_rt_sum_tr(oa);
|
|
|
|
break;
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16. (5) */
|
2004-07-16 00:37:52 +08:00
|
|
|
ospf_ext_spf(po);
|
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
rt_sync(po);
|
2004-07-16 00:37:52 +08:00
|
|
|
|
|
|
|
po->calcrt = 0;
|
2004-06-07 00:00:09 +08:00
|
|
|
}
|
|
|
|
|
2000-06-08 07:23:37 +08:00
|
|
|
/**
|
2004-07-16 00:37:52 +08:00
|
|
|
* ospf_ext_spf - calculate external paths
|
2000-06-08 07:23:37 +08:00
|
|
|
* @po: protocol
|
|
|
|
*
|
|
|
|
* After routing table for any area is calculated, calculation of external
|
2009-08-21 15:27:52 +08:00
|
|
|
* path is invoked. This process is described in 16.4 of RFC 2328.
|
2000-06-08 07:23:37 +08:00
|
|
|
* Inter- and Intra-area paths are always prefered over externals.
|
|
|
|
*/
|
2004-06-07 00:00:09 +08:00
|
|
|
static void
|
2004-07-16 00:37:52 +08:00
|
|
|
ospf_ext_spf(struct proto_ospf *po)
|
2000-05-09 08:03:08 +08:00
|
|
|
{
|
2004-06-26 00:39:53 +08:00
|
|
|
ort *nf1, *nf2, *nfh;
|
2004-06-11 17:36:50 +08:00
|
|
|
orta nfa;
|
|
|
|
struct top_hash_entry *en;
|
2004-06-06 17:37:54 +08:00
|
|
|
struct proto *p = &po->proto;
|
2000-05-10 18:47:17 +08:00
|
|
|
struct ospf_lsa_ext *le;
|
2009-08-21 15:27:52 +08:00
|
|
|
int pxlen, ebit, rt_fwaddr_valid;
|
|
|
|
ip_addr ip, nh, rtid, rt_fwaddr;
|
2005-02-14 07:36:31 +08:00
|
|
|
struct ospf_iface *nhi = NULL;
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 br_metric, rt_metric, rt_tag;
|
2000-05-17 07:24:50 +08:00
|
|
|
neighbor *nn;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct ospf_area *atmp;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Starting routing table calculation for ext routes");
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-07-16 00:37:52 +08:00
|
|
|
WALK_SLIST(en, po->lsal)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16.4. (1) */
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en->lsa.type != LSA_T_EXT)
|
|
|
|
continue;
|
|
|
|
if (en->lsa.age == LSA_MAXAGE)
|
|
|
|
continue;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
/* 16.4. (2) */
|
2009-12-11 08:20:53 +08:00
|
|
|
if (en->lsa.rt == po->router_id)
|
2004-06-06 17:37:54 +08:00
|
|
|
continue;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
DBG("%s: Working on LSA. ID: %R, RT: %R, Type: %u\n",
|
|
|
|
p->name, en->lsa.id, en->lsa.rt, en->lsa.type);
|
2000-06-05 10:23:20 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
le = en->lsa_body;
|
|
|
|
|
|
|
|
rt_metric = le->metric & METRIC_MASK;
|
|
|
|
ebit = le->metric & LSA_EXT_EBIT;
|
|
|
|
|
|
|
|
if (rt_metric == LSINFINITY)
|
2004-06-06 17:37:54 +08:00
|
|
|
continue;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
#ifdef OSPFv2
|
2004-06-06 17:37:54 +08:00
|
|
|
ip = ipa_and(ipa_from_u32(en->lsa.id), le->netmask);
|
2009-08-21 15:27:52 +08:00
|
|
|
pxlen = ipa_mklen(le->netmask);
|
|
|
|
rt_fwaddr = le->fwaddr;
|
|
|
|
rt_fwaddr_valid = !ipa_equal(rt_fwaddr, IPA_NONE);
|
|
|
|
rt_tag = le->tag;
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
u8 pxopts;
|
2009-08-25 22:42:14 +08:00
|
|
|
u16 rest;
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 *buf = le->rest;
|
2009-10-15 06:28:04 +08:00
|
|
|
buf = lsa_get_ipv6_prefix(buf, &ip, &pxlen, &pxopts, &rest);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
if (pxopts & OPT_PX_NU)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
rt_fwaddr_valid = le->metric & LSA_EXT_FBIT;
|
|
|
|
if (rt_fwaddr_valid)
|
2009-10-15 06:28:04 +08:00
|
|
|
buf = lsa_get_ipv6_addr(buf, &rt_fwaddr);
|
2009-08-21 15:27:52 +08:00
|
|
|
else
|
|
|
|
rt_fwaddr = IPA_NONE;
|
|
|
|
|
|
|
|
if (le->metric & LSA_EXT_TBIT)
|
|
|
|
rt_tag = *buf++;
|
|
|
|
else
|
|
|
|
rt_tag = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (pxlen < 0)
|
2000-05-17 06:34:49 +08:00
|
|
|
{
|
2009-12-15 00:29:33 +08:00
|
|
|
log(L_WARN "%s: Invalid mask in LSA (Type: %04x, Id: %R, Rt: %R)",
|
|
|
|
p->name, en->lsa.type, en->lsa.id, en->lsa.rt);
|
2000-05-17 08:28:45 +08:00
|
|
|
continue;
|
2000-05-17 06:34:49 +08:00
|
|
|
}
|
2004-06-11 17:36:50 +08:00
|
|
|
nhi = NULL;
|
|
|
|
nh = IPA_NONE;
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16.4. (3) */
|
|
|
|
rtid = ipa_from_rid(en->lsa.rt);
|
2004-06-26 00:39:53 +08:00
|
|
|
nf1 = NULL;
|
|
|
|
WALK_LIST(atmp, po->area_list)
|
|
|
|
{
|
2009-08-28 00:25:46 +08:00
|
|
|
nfh = fib_find(&atmp->rtr, &rtid, MAX_PREFIX_LENGTH);
|
2005-03-14 18:59:52 +08:00
|
|
|
if (nfh == NULL) continue;
|
|
|
|
if (nf1 == NULL) nf1 = nfh;
|
|
|
|
else if (ri_better(po, &nfh->n, NULL, &nf1->n, NULL, po->rfc1583)) nf1 = nfh;
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!nf1)
|
2004-06-11 17:36:50 +08:00
|
|
|
continue; /* No AS boundary router found */
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
if (nf1->n.metric1 == LSINFINITY)
|
|
|
|
continue; /* distance is INF */
|
2000-05-10 18:47:17 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
if (!(nf1->n.options & ORTA_ASBR))
|
2004-06-11 17:36:50 +08:00
|
|
|
continue; /* It is not ASBR */
|
2000-05-17 06:34:49 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
if (!rt_fwaddr_valid)
|
2000-05-10 18:47:17 +08:00
|
|
|
{
|
2004-06-11 17:36:50 +08:00
|
|
|
nh = nf1->n.nh;
|
|
|
|
nhi = nf1->n.ifa;
|
2004-06-26 00:39:53 +08:00
|
|
|
nfh = nf1;
|
2009-08-21 15:27:52 +08:00
|
|
|
br_metric = nf1->n.metric1;
|
2000-05-17 06:34:49 +08:00
|
|
|
}
|
2004-06-11 17:36:50 +08:00
|
|
|
else
|
2009-08-21 15:27:52 +08:00
|
|
|
{
|
2009-08-28 00:25:46 +08:00
|
|
|
nf2 = fib_route(&po->rtf, rt_fwaddr, MAX_PREFIX_LENGTH);
|
2004-06-26 00:39:53 +08:00
|
|
|
|
|
|
|
if (!nf2)
|
2000-06-05 10:23:20 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
DBG("Cannot find network route (GW=%I)\n", rt_fwaddr);
|
2004-06-06 17:37:54 +08:00
|
|
|
continue;
|
2000-06-05 10:23:20 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
if ((nn = neigh_find(p, &rt_fwaddr, 0)) != NULL)
|
2000-05-17 07:24:50 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
nh = rt_fwaddr;
|
2005-02-14 07:36:31 +08:00
|
|
|
nhi = ospf_iface_find(po, nn->iface);
|
2000-05-17 07:24:50 +08:00
|
|
|
}
|
2000-08-18 03:42:52 +08:00
|
|
|
else
|
|
|
|
{
|
2004-06-11 17:36:50 +08:00
|
|
|
nh = nf2->n.nh;
|
|
|
|
nhi = nf2->n.ifa;
|
2000-08-18 03:42:52 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
br_metric = nf2->n.metric1;
|
|
|
|
if (br_metric == LSINFINITY)
|
2005-03-14 18:59:52 +08:00
|
|
|
continue; /* distance is INF */
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
2000-05-17 06:34:49 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
if (ebit)
|
|
|
|
{
|
|
|
|
nfa.type = RTS_OSPF_EXT2;
|
|
|
|
nfa.metric1 = br_metric;
|
|
|
|
nfa.metric2 = rt_metric;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nfa.type = RTS_OSPF_EXT1;
|
|
|
|
nfa.metric1 = br_metric + rt_metric;
|
|
|
|
nfa.metric2 = LSINFINITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
nfa.options = 0;
|
|
|
|
nfa.tag = rt_tag;
|
2005-03-14 18:59:52 +08:00
|
|
|
nfa.oa = (po->backbone == NULL) ? HEAD(po->area_list) : po->backbone;
|
2004-06-11 17:36:50 +08:00
|
|
|
nfa.ar = nf1->n.ar;
|
|
|
|
nfa.nh = nh;
|
|
|
|
nfa.ifa = nhi;
|
2009-08-21 15:27:52 +08:00
|
|
|
ri_install(po, ip, pxlen, ORT_NET, &nfa, nfh);
|
2000-05-10 18:47:17 +08:00
|
|
|
}
|
|
|
|
|
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,
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 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
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
/* 16.1. (2b) */
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en == NULL)
|
|
|
|
return;
|
|
|
|
if (en->lsa.age == LSA_MAXAGE)
|
|
|
|
return;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
#ifdef OSPFv3
|
|
|
|
if (en->lsa.type == LSA_T_RT)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_rt *rt = en->lsa_body;
|
|
|
|
if (!(rt->options & OPT_V6) || !(rt->options & OPT_R))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16.1. (2c) */
|
2004-06-06 17:37:54 +08:00
|
|
|
if (en->color == INSPF)
|
|
|
|
return;
|
2000-04-26 20:54:23 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16.1. (2d) */
|
2004-06-06 17:37:54 +08:00
|
|
|
if (dist >= en->dist)
|
|
|
|
return;
|
2000-04-30 17:32:41 +08:00
|
|
|
/*
|
2004-06-26 00:39:53 +08:00
|
|
|
* FIXME The line above (=) is not a bug, but we don't support multiple
|
2004-06-11 17:36:50 +08:00
|
|
|
* next hops. I'll start as soon as nest will
|
2000-04-30 17:32:41 +08:00
|
|
|
*/
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-12-07 05:05:50 +08:00
|
|
|
/* We should check whether there is a reverse link from en to par, */
|
2004-06-26 00:39:53 +08:00
|
|
|
if (!link_back(oa, en, par))
|
|
|
|
return;
|
|
|
|
|
2009-12-05 05:20:13 +08:00
|
|
|
if (!calc_next_hop(oa, en, par))
|
|
|
|
{
|
|
|
|
log(L_WARN "Cannot find next hop for LSA (Type: %04x, Id: %R, Rt: %R)",
|
|
|
|
en->lsa.type, en->lsa.id, en->lsa.rt);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-23 22:51:28 +08:00
|
|
|
DBG(" Adding candidate: rt: %R, id: %R, type: %u\n",
|
|
|
|
en->lsa.rt, en->lsa.id, en->lsa.type);
|
2004-06-06 17:37:54 +08:00
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
if (en->color == CANDIDATE)
|
|
|
|
{ /* We found a shorter path */
|
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)))
|
2009-08-21 15:27:52 +08:00
|
|
|
/* FIXME - shouldn't be here LSA_T_RT ??? */
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-04-29 23:57:14 +08:00
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
|
|
|
|
static inline int
|
|
|
|
match_dr(struct ospf_iface *ifa, struct top_hash_entry *en)
|
|
|
|
{
|
|
|
|
#ifdef OSPFv2
|
2009-09-04 17:06:51 +08:00
|
|
|
return (ifa->drid == en->lsa.rt) && (ipa_to_u32(ifa->drip) == en->lsa.id);
|
2009-08-25 22:42:14 +08:00
|
|
|
#else /* OSPFv3 */
|
|
|
|
return (ifa->drid == en->lsa.rt) && (ifa->dr_iface_id == en->lsa.id);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-12-05 05:20:13 +08:00
|
|
|
static int
|
2009-08-25 22:42:14 +08:00
|
|
|
calc_next_hop(struct ospf_area *oa, struct top_hash_entry *en,
|
|
|
|
struct top_hash_entry *par)
|
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;
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* 16.1.1. The next hop calculation */
|
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
|
|
|
{
|
2009-07-23 22:51:28 +08:00
|
|
|
DBG(" Next hop calculating for id: %R rt: %R type: %u\n",
|
|
|
|
en->lsa.id, en->lsa.rt, en->lsa.type);
|
2000-06-19 23:12:50 +08:00
|
|
|
|
2009-12-05 05:20:13 +08:00
|
|
|
/*
|
|
|
|
* There are three cases:
|
|
|
|
* 1) en is a local network (and par is root)
|
|
|
|
* 2) en is a ptp or ptmp neighbor (and par is root)
|
|
|
|
* 3) en is a bcast or nbma neighbor (and par is local network)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* The first case - local network */
|
|
|
|
if ((en->lsa.type == LSA_T_NET) && (par == oa->rt))
|
2000-06-05 10:23:20 +08:00
|
|
|
{
|
2009-12-05 05:20:13 +08:00
|
|
|
WALK_LIST(ifa, po->iface_list)
|
|
|
|
if (match_dr(ifa, en))
|
2004-06-06 17:37:54 +08:00
|
|
|
{
|
2009-12-05 05:20:13 +08:00
|
|
|
en->nh = IPA_NONE;
|
|
|
|
en->nhi = ifa;
|
|
|
|
return 1;
|
2004-06-06 17:37:54 +08:00
|
|
|
}
|
2009-12-05 05:20:13 +08:00
|
|
|
return 0;
|
2000-06-19 23:12:50 +08:00
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-12-05 05:20:13 +08:00
|
|
|
/*
|
|
|
|
* Remaining cases - local neighbours.
|
|
|
|
* There are two problems with this code:
|
|
|
|
* 1) we use IP address from HELLO packet
|
|
|
|
* and not the one from LSA (router or link).
|
|
|
|
* This may break NBMA networks
|
|
|
|
* 2) we use find_neigh_noifa() and does not
|
|
|
|
* take into account associated iface.
|
|
|
|
* This breaks neighbors connected by more links.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((en->lsa.type == LSA_T_RT) &&
|
|
|
|
((par == oa->rt) || (par->lsa.type == LSA_T_NET)))
|
2000-06-19 23:12:50 +08:00
|
|
|
{
|
2009-12-05 05:20:13 +08:00
|
|
|
if ((neigh = find_neigh_noifa(po, en->lsa.rt)) != NULL)
|
|
|
|
{
|
|
|
|
en->nh = neigh->ip;
|
|
|
|
en->nhi = neigh->ifa;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2000-06-05 10:23:20 +08:00
|
|
|
}
|
2009-12-05 05:20:13 +08:00
|
|
|
|
|
|
|
/* Probably bug or some race condition, we log it */
|
|
|
|
log(L_ERR "Unexpected case in next hop calculation");
|
|
|
|
|
|
|
|
return 0;
|
2000-05-03 03:27:57 +08:00
|
|
|
}
|
2009-12-05 05:20:13 +08:00
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
en->nh = par->nh;
|
2009-12-05 05:20:13 +08:00
|
|
|
en->nhi = par->nhi;
|
|
|
|
return 1;
|
2000-05-03 03:27:57 +08:00
|
|
|
}
|
2004-06-11 17:36:50 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
rt_sync(struct proto_ospf *po)
|
|
|
|
{
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct fib_iterator fit;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct fib *fib = &po->rtf;
|
2004-06-11 17:36:50 +08:00
|
|
|
ort *nf;
|
2004-07-15 05:46:20 +08:00
|
|
|
struct ospf_area *oa, *oaa;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct area_net *anet;
|
2004-07-15 05:46:20 +08:00
|
|
|
int flush;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-12-15 04:17:15 +08:00
|
|
|
/* This is used for forced reload of routes */
|
|
|
|
int reload = (po->calcrt == 2);
|
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Starting routing table synchronisation");
|
2004-06-11 17:36:50 +08:00
|
|
|
|
|
|
|
DBG("Now syncing my rt table with nest's\n");
|
|
|
|
FIB_ITERATE_INIT(&fit, fib);
|
2004-06-26 00:39:53 +08:00
|
|
|
again1:
|
2004-06-11 17:36:50 +08:00
|
|
|
FIB_ITERATE_START(fib, &fit, nftmp)
|
|
|
|
{
|
|
|
|
nf = (ort *) nftmp;
|
2005-02-14 07:36:31 +08:00
|
|
|
check_sum_lsa(po, nf, ORT_NET);
|
2009-12-15 04:17:15 +08:00
|
|
|
if (reload || memcmp(&nf->n, &nf->o, sizeof(orta)))
|
2004-06-11 17:36:50 +08:00
|
|
|
{ /* Some difference */
|
|
|
|
net *ne;
|
|
|
|
rta a0;
|
|
|
|
rte *e;
|
|
|
|
|
|
|
|
bzero(&a0, sizeof(a0));
|
|
|
|
|
|
|
|
a0.proto = p;
|
|
|
|
a0.source = nf->n.type;
|
|
|
|
a0.scope = SCOPE_UNIVERSE;
|
|
|
|
a0.cast = RTC_UNICAST;
|
|
|
|
a0.dest = RTD_ROUTER;
|
|
|
|
a0.flags = 0;
|
|
|
|
a0.aflags = 0;
|
2005-02-14 07:36:31 +08:00
|
|
|
a0.iface = NULL;
|
|
|
|
if (nf->n.ifa) a0.iface = nf->n.ifa->iface;
|
2004-06-11 17:36:50 +08:00
|
|
|
a0.gw = nf->n.nh;
|
2005-02-13 06:22:18 +08:00
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
if (ipa_nonzero(nf->n.nh) && (!neigh_find2(p, &nf->n.nh, nf->n.ifa->iface, 0)))
|
2004-07-15 05:46:20 +08:00
|
|
|
{
|
|
|
|
int found = 0;
|
|
|
|
struct ospf_iface *ifa;
|
|
|
|
struct top_hash_entry *en;
|
2009-08-28 00:25:46 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Trying to find correct next hop %I/%d via %I", nf->fn.prefix, nf->fn.pxlen, nf->n.nh);
|
2004-07-15 05:46:20 +08:00
|
|
|
WALK_LIST(ifa, po->iface_list)
|
|
|
|
{
|
|
|
|
if ((ifa->type == OSPF_IT_VLINK) && ipa_equal(ifa->vip, nf->n.nh))
|
|
|
|
{
|
2009-09-17 18:18:03 +08:00
|
|
|
if ((en = ospf_hash_find_rt(po->gr, ifa->voa->areaid, ifa->vid))
|
|
|
|
&& (!ipa_equal(en->nh, IPA_NONE)))
|
2004-07-15 05:46:20 +08:00
|
|
|
{
|
|
|
|
a0.gw = en->nh;
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) nf->n.metric1 = LSINFINITY; /* Delete it */
|
|
|
|
}
|
2005-02-16 00:17:42 +08:00
|
|
|
|
2005-02-20 11:37:47 +08:00
|
|
|
if (ipa_equal(nf->n.nh, IPA_NONE)) a0.dest = RTD_DEVICE;
|
|
|
|
|
2005-02-16 00:17:42 +08:00
|
|
|
if (!a0.iface) /* Still no match? Can this really happen? */
|
|
|
|
nf->n.metric1 = LSINFINITY;
|
|
|
|
|
2004-06-11 17:36:50 +08:00
|
|
|
ne = net_get(p->table, nf->fn.prefix, nf->fn.pxlen);
|
2004-06-26 00:39:53 +08:00
|
|
|
if (nf->n.metric1 < LSINFINITY)
|
|
|
|
{
|
|
|
|
e = rte_get_temp(&a0);
|
|
|
|
e->u.ospf.metric1 = nf->n.metric1;
|
|
|
|
e->u.ospf.metric2 = nf->n.metric2;
|
|
|
|
e->u.ospf.tag = nf->n.tag;
|
|
|
|
e->pflags = 0;
|
|
|
|
e->net = ne;
|
|
|
|
e->pref = p->preference;
|
2005-02-16 00:17:42 +08:00
|
|
|
DBG("Mod rte type %d - %I/%d via %I on iface %s, met %d\n",
|
|
|
|
a0.source, nf->fn.prefix, nf->fn.pxlen, a0.gw, a0.iface ? a0.iface->name : "(none)", nf->n.metric1);
|
2009-06-01 20:07:13 +08:00
|
|
|
rte_update(p->table, ne, p, p, e);
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-06-01 20:07:13 +08:00
|
|
|
rte_update(p->table, ne, p, p, NULL);
|
2004-06-26 00:39:53 +08:00
|
|
|
FIB_ITERATE_PUT(&fit, nftmp);
|
|
|
|
fib_delete(fib, nftmp);
|
|
|
|
goto again1;
|
|
|
|
}
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
FIB_ITERATE_END(nftmp);
|
2004-06-26 00:39:53 +08:00
|
|
|
|
|
|
|
WALK_LIST(oa, po->area_list)
|
|
|
|
{
|
|
|
|
FIB_ITERATE_INIT(&fit, &oa->rtr);
|
|
|
|
again2:
|
|
|
|
FIB_ITERATE_START(&oa->rtr, &fit, nftmp)
|
|
|
|
{
|
|
|
|
nf = (ort *) nftmp;
|
|
|
|
if (memcmp(&nf->n, &nf->o, sizeof(orta)))
|
|
|
|
{ /* Some difference */
|
|
|
|
check_sum_lsa(po, nf, ORT_ROUTER);
|
2005-03-14 18:59:52 +08:00
|
|
|
if (nf->n.metric1 >= LSINFINITY)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
FIB_ITERATE_PUT(&fit, nftmp);
|
|
|
|
fib_delete(&oa->rtr, nftmp);
|
|
|
|
goto again2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FIB_ITERATE_END(nftmp);
|
|
|
|
|
|
|
|
/* Check condensed summary LSAs */
|
|
|
|
FIB_WALK(&oa->net_fib, nftmp)
|
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
flush = 1;
|
2004-06-26 00:39:53 +08:00
|
|
|
anet = (struct area_net *) nftmp;
|
2005-03-14 18:59:52 +08:00
|
|
|
if ((!anet->hidden) && anet->active)
|
2004-07-15 05:46:20 +08:00
|
|
|
flush = 0;
|
|
|
|
|
|
|
|
WALK_LIST(oaa, po->area_list)
|
|
|
|
{
|
2005-02-14 07:36:31 +08:00
|
|
|
int fl = flush;
|
|
|
|
|
2004-07-15 05:46:20 +08:00
|
|
|
if (oaa == oa) continue;
|
2005-02-14 07:36:31 +08:00
|
|
|
|
|
|
|
if ((oa == po->backbone) && oaa->trcap) fl = 1;
|
|
|
|
|
2005-02-21 00:53:06 +08:00
|
|
|
if (oaa->stub) fl = 1;
|
|
|
|
|
2005-03-14 18:59:52 +08:00
|
|
|
if (fl) flush_sum_lsa(oaa, &anet->fn, ORT_NET);
|
2009-08-21 15:27:52 +08:00
|
|
|
else originate_sum_lsa(oaa, &anet->fn, ORT_NET, anet->metric, 0);
|
2004-07-15 05:46:20 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
FIB_WALK_END;
|
2005-02-21 00:53:06 +08:00
|
|
|
|
|
|
|
/* Check default summary LSA for stub areas
|
|
|
|
* just for router connected to backbone */
|
|
|
|
if (po->backbone)
|
|
|
|
{
|
|
|
|
struct fib_node fnn;
|
|
|
|
|
|
|
|
fnn.prefix = IPA_NONE;
|
|
|
|
fnn.pxlen = 0;
|
2009-08-21 15:27:52 +08:00
|
|
|
if (oa->stub) originate_sum_lsa(oa, &fnn, ORT_NET, oa->stub, 0);
|
2005-02-21 00:53:06 +08:00
|
|
|
else flush_sum_lsa(oa, &fnn, ORT_NET);
|
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
2004-06-11 17:36:50 +08:00
|
|
|
}
|