1999-11-10 20:27:01 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF Topological Database
|
|
|
|
*
|
2004-06-26 00:39:53 +08:00
|
|
|
* (c) 1999 Martin Mares <mj@ucw.cz>
|
|
|
|
* (c) 1999--2004 Ondrej Filip <feela@network.cz>
|
1999-11-10 20:27:01 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
2000-04-01 07:30:21 +08:00
|
|
|
#include "lib/string.h"
|
1999-11-10 20:27:01 +08:00
|
|
|
|
|
|
|
#include "ospf.h"
|
|
|
|
|
2000-06-08 20:04:57 +08:00
|
|
|
#define HASH_DEF_ORDER 6
|
1999-11-10 20:27:01 +08:00
|
|
|
#define HASH_HI_MARK *4
|
|
|
|
#define HASH_HI_STEP 2
|
|
|
|
#define HASH_HI_MAX 16
|
|
|
|
#define HASH_LO_MARK /5
|
|
|
|
#define HASH_LO_STEP 2
|
|
|
|
#define HASH_LO_MIN 8
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
void originate_prefix_rt_lsa(struct ospf_area *oa);
|
|
|
|
void originate_prefix_net_lsa(struct ospf_iface *ifa);
|
2009-08-28 00:25:46 +08:00
|
|
|
void flush_prefix_net_lsa(struct ospf_iface *ifa);
|
2009-08-25 22:42:14 +08:00
|
|
|
|
|
|
|
#ifdef OSPFv2
|
|
|
|
#define ipa_to_rid(x) _I(x)
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
#define ipa_to_rid(x) _I3(x)
|
|
|
|
#endif
|
|
|
|
|
2009-10-08 04:10:29 +08:00
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
#ifdef OSPFv2
|
2009-10-08 04:10:29 +08:00
|
|
|
static inline u32
|
|
|
|
fibnode_to_lsaid(struct proto_ospf *po, struct fib_node *fn)
|
|
|
|
{
|
|
|
|
/* We have to map IP prefixes to u32 in such manner that resulting
|
|
|
|
u32 interpreted as IP address is a member of given
|
|
|
|
prefix. Therefore, /32 prefix have to be mapped on itself.
|
|
|
|
All received prefixes have to be mapped on different u32s.
|
|
|
|
|
|
|
|
We have an assumption that if there is nontrivial (non-/32)
|
|
|
|
network prefix, then there is not /32 prefix for the first
|
|
|
|
and the last IP address of the network (these are usually
|
|
|
|
reserved, therefore it is not an important restriction).
|
|
|
|
The network prefix is mapped to the first or the last
|
|
|
|
IP address in the manner that disallow collisions - we
|
|
|
|
use IP address that cannot be used by parent prefix.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
192.168.0.0/24 maps to 192.168.0.255
|
|
|
|
192.168.1.0/24 maps to 192.168.1.0
|
|
|
|
because 192.168.0.0 and 192.168.1.255 might be used by
|
|
|
|
192.168.0.0/23 .
|
|
|
|
|
|
|
|
This is not compatible with older RFC 1583, so we have an option
|
|
|
|
to the RFC 1583 compatible assignment (that always uses the first
|
|
|
|
address) which disallows subnetting.
|
|
|
|
|
|
|
|
Appendig E of RFC 2328 suggests different algorithm, that tries
|
|
|
|
to maximize both compatibility and subnetting. But as it is not
|
|
|
|
possible to have both reliably and the suggested algorithm was
|
|
|
|
unnecessary complicated and it does crazy things like changing
|
|
|
|
LSA ID for a network because different network appeared, we
|
|
|
|
choose a different way. */
|
|
|
|
|
|
|
|
u32 id = _I(fn->prefix);
|
|
|
|
|
|
|
|
if ((po->rfc1583) || (fn->pxlen == 0) || (fn->pxlen == 32))
|
|
|
|
return id;
|
|
|
|
|
|
|
|
if (id & (1 << (32 - fn->pxlen)))
|
|
|
|
return id;
|
|
|
|
else
|
|
|
|
return id | ~u32_mkmask(fn->pxlen);
|
|
|
|
}
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
#else /* OSPFv3 */
|
2009-10-08 04:10:29 +08:00
|
|
|
|
|
|
|
static inline u32
|
|
|
|
fibnode_to_lsaid(struct proto_ospf *po, struct fib_node *fn)
|
|
|
|
{
|
2010-05-03 01:58:34 +08:00
|
|
|
/*
|
|
|
|
* In OSPFv3, it is simpler. There is not a requirement for
|
|
|
|
* membership of the result in the input network, so we just use a
|
|
|
|
* hash-based unique ID of a routing table entry for a route that
|
|
|
|
* originated given LSA. For ext-LSA, it is an imported route in the
|
|
|
|
* nest's routing table (p->table). For summary-LSA, it is a
|
|
|
|
* 'source' route in the protocol internal routing table (po->rtf).
|
|
|
|
*/
|
2009-10-08 04:10:29 +08:00
|
|
|
return fn->uid;
|
|
|
|
}
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-06-11 05:45:08 +08:00
|
|
|
static void *
|
|
|
|
lsab_alloc(struct proto_ospf *po, unsigned size)
|
|
|
|
{
|
|
|
|
unsigned offset = po->lsab_used;
|
|
|
|
po->lsab_used += size;
|
|
|
|
if (po->lsab_used > po->lsab_size)
|
|
|
|
{
|
|
|
|
po->lsab_size = MAX(po->lsab_used, 2 * po->lsab_size);
|
|
|
|
po->lsab = mb_realloc(po->proto.pool, po->lsab, po->lsab_size);
|
|
|
|
}
|
|
|
|
return ((byte *) po->lsab) + offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *
|
|
|
|
lsab_allocz(struct proto_ospf *po, unsigned size)
|
|
|
|
{
|
|
|
|
void *r = lsab_alloc(po, size);
|
|
|
|
bzero(r, size);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *
|
|
|
|
lsab_flush(struct proto_ospf *po)
|
|
|
|
{
|
2010-12-23 17:25:22 +08:00
|
|
|
void *r = mb_alloc(po->proto.pool, po->lsab_used);
|
2009-06-11 05:45:08 +08:00
|
|
|
memcpy(r, po->lsab, po->lsab_used);
|
|
|
|
po->lsab_used = 0;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
static inline void *
|
|
|
|
lsab_offset(struct proto_ospf *po, unsigned offset)
|
|
|
|
{
|
|
|
|
return ((byte *) po->lsab) + offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *
|
|
|
|
lsab_end(struct proto_ospf *po)
|
|
|
|
{
|
|
|
|
return ((byte *) po->lsab) + po->lsab_used;
|
|
|
|
}
|
|
|
|
|
2010-05-23 18:34:09 +08:00
|
|
|
static s32
|
|
|
|
get_seqnum(struct top_hash_entry *en)
|
|
|
|
{
|
|
|
|
if (!en)
|
|
|
|
return LSA_INITSEQNO;
|
|
|
|
|
|
|
|
if (en->lsa.sn == LSA_MAXSEQNO)
|
|
|
|
{
|
2010-07-31 17:37:30 +08:00
|
|
|
log(L_WARN "OSPF: Premature origination of LSA (Type: %04x, Id: %R, Rt: %R)",
|
2010-05-23 18:34:09 +08:00
|
|
|
en->lsa.type, en->lsa.id, en->lsa.rt);
|
|
|
|
return LSA_INITSEQNO;
|
|
|
|
}
|
|
|
|
|
2011-10-27 19:21:24 +08:00
|
|
|
return en->lsa.sn + 1;
|
2010-05-23 18:34:09 +08:00
|
|
|
}
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-06-11 23:25:38 +08:00
|
|
|
static int
|
|
|
|
configured_stubnet(struct ospf_area *oa, struct ifa *a)
|
|
|
|
{
|
2010-11-10 23:43:11 +08:00
|
|
|
if (!oa->ac)
|
|
|
|
return 0;
|
|
|
|
|
2011-03-29 04:46:18 +08:00
|
|
|
/* Does not work for IA_PEER addresses, but it is not called on these */
|
2009-06-11 23:25:38 +08:00
|
|
|
struct ospf_stubnet_config *sn;
|
|
|
|
WALK_LIST(sn, oa->ac->stubnet_list)
|
|
|
|
{
|
|
|
|
if (sn->summary)
|
|
|
|
{
|
|
|
|
if (ipa_in_net(a->prefix, sn->px.addr, sn->px.len) && (a->pxlen >= sn->px.len))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ipa_equal(a->prefix, sn->px.addr) && (a->pxlen == sn->px.len))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2009-06-11 05:45:08 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
int
|
|
|
|
bcast_net_active(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
struct ospf_neighbor *neigh;
|
|
|
|
|
|
|
|
if (ifa->state == OSPF_IS_WAITING)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
WALK_LIST(neigh, ifa->neigh_list)
|
|
|
|
{
|
|
|
|
if (neigh->state == NEIGHBOR_FULL)
|
|
|
|
{
|
|
|
|
if (neigh->rid == ifa->drid)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (ifa->state == OSPF_IS_DR)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef OSPFv2
|
|
|
|
|
2004-06-05 17:58:23 +08:00
|
|
|
static void *
|
2009-08-21 15:27:52 +08:00
|
|
|
originate_rt_lsa_body(struct ospf_area *oa, u16 *length)
|
2000-03-10 06:38:05 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
struct proto_ospf *po = oa->po;
|
2000-03-10 06:38:05 +08:00
|
|
|
struct ospf_iface *ifa;
|
2009-08-21 15:27:52 +08:00
|
|
|
int i = 0, bitv = 0;
|
2000-03-10 06:38:05 +08:00
|
|
|
struct ospf_lsa_rt *rt;
|
2009-06-11 05:45:08 +08:00
|
|
|
struct ospf_lsa_rt_link *ln;
|
2000-03-10 06:38:05 +08:00
|
|
|
struct ospf_neighbor *neigh;
|
|
|
|
|
2009-06-11 05:45:08 +08:00
|
|
|
ASSERT(po->lsab_used == 0);
|
|
|
|
rt = lsab_allocz(po, sizeof(struct ospf_lsa_rt));
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
rt->options = 0;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
if (po->areano > 1)
|
2009-08-21 15:27:52 +08:00
|
|
|
rt->options |= OPT_RT_B;
|
|
|
|
|
2011-07-23 02:00:24 +08:00
|
|
|
if ((po->areano > 1) && oa_is_nssa(oa) && oa->ac->translator)
|
|
|
|
rt->options |= OPT_RT_NT;
|
|
|
|
|
2011-07-21 05:40:20 +08:00
|
|
|
if (po->ebit && !oa_is_stub(oa))
|
2009-08-21 15:27:52 +08:00
|
|
|
rt->options |= OPT_RT_E;
|
|
|
|
|
2009-06-11 05:45:08 +08:00
|
|
|
rt = NULL; /* buffer might be reallocated later */
|
2004-06-06 16:55:33 +08:00
|
|
|
|
|
|
|
WALK_LIST(ifa, po->iface_list)
|
2000-03-10 06:38:05 +08:00
|
|
|
{
|
2010-02-11 17:23:35 +08:00
|
|
|
int net_lsa = 0;
|
2009-06-11 05:45:08 +08:00
|
|
|
|
|
|
|
if ((ifa->type == OSPF_IT_VLINK) && (ifa->voa == oa) &&
|
|
|
|
(!EMPTY_LIST(ifa->neigh_list)))
|
2005-02-14 07:36:31 +08:00
|
|
|
{
|
|
|
|
neigh = (struct ospf_neighbor *) HEAD(ifa->neigh_list);
|
|
|
|
if ((neigh->state == NEIGHBOR_FULL) && (ifa->cost <= 0xffff))
|
2009-06-11 05:45:08 +08:00
|
|
|
bitv = 1;
|
2005-02-14 07:36:31 +08:00
|
|
|
}
|
2004-07-15 05:46:20 +08:00
|
|
|
|
|
|
|
if ((ifa->oa != oa) || (ifa->state == OSPF_IS_DOWN))
|
2004-06-06 16:55:33 +08:00
|
|
|
continue;
|
2000-06-06 04:57:53 +08:00
|
|
|
|
2010-12-28 08:43:07 +08:00
|
|
|
ifa->rt_pos_beg = i;
|
|
|
|
|
2010-12-25 01:08:07 +08:00
|
|
|
/* RFC2328 - 12.4.1.1-4 */
|
2009-06-11 05:45:08 +08:00
|
|
|
switch (ifa->type)
|
2000-03-10 06:38:05 +08:00
|
|
|
{
|
2010-12-25 01:08:07 +08:00
|
|
|
case OSPF_IT_PTP:
|
|
|
|
case OSPF_IT_PTMP:
|
|
|
|
WALK_LIST(neigh, ifa->neigh_list)
|
|
|
|
if (neigh->state == NEIGHBOR_FULL)
|
|
|
|
{
|
|
|
|
ln = lsab_alloc(po, sizeof(struct ospf_lsa_rt_link));
|
|
|
|
ln->type = LSART_PTP;
|
|
|
|
ln->id = neigh->rid;
|
2011-03-29 04:46:18 +08:00
|
|
|
ln->data = (ifa->addr->flags & IA_PEER) ?
|
2010-12-25 01:08:07 +08:00
|
|
|
ifa->iface->index : ipa_to_u32(ifa->addr->ip);
|
|
|
|
ln->metric = ifa->cost;
|
|
|
|
ln->padding = 0;
|
|
|
|
i++;
|
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
break;
|
2009-06-11 05:45:08 +08:00
|
|
|
|
2010-12-25 01:08:07 +08:00
|
|
|
case OSPF_IT_BCAST:
|
2004-06-06 16:55:33 +08:00
|
|
|
case OSPF_IT_NBMA:
|
2009-08-21 15:27:52 +08:00
|
|
|
if (bcast_net_active(ifa))
|
2004-06-06 16:55:33 +08:00
|
|
|
{
|
2009-06-11 05:45:08 +08:00
|
|
|
ln = lsab_alloc(po, sizeof(struct ospf_lsa_rt_link));
|
2004-06-06 16:55:33 +08:00
|
|
|
ln->type = LSART_NET;
|
|
|
|
ln->id = ipa_to_u32(ifa->drip);
|
2010-02-11 17:23:35 +08:00
|
|
|
ln->data = ipa_to_u32(ifa->addr->ip);
|
2004-06-06 16:55:33 +08:00
|
|
|
ln->metric = ifa->cost;
|
2009-09-08 23:06:47 +08:00
|
|
|
ln->padding = 0;
|
2009-06-11 05:45:08 +08:00
|
|
|
i++;
|
2010-02-11 17:23:35 +08:00
|
|
|
net_lsa = 1;
|
2004-06-06 16:55:33 +08:00
|
|
|
}
|
|
|
|
break;
|
2009-06-11 05:45:08 +08:00
|
|
|
|
2010-12-25 01:08:07 +08:00
|
|
|
case OSPF_IT_VLINK:
|
2004-06-26 00:39:53 +08:00
|
|
|
neigh = (struct ospf_neighbor *) HEAD(ifa->neigh_list);
|
|
|
|
if ((!EMPTY_LIST(ifa->neigh_list)) && (neigh->state == NEIGHBOR_FULL) && (ifa->cost <= 0xffff))
|
|
|
|
{
|
2009-06-11 05:45:08 +08:00
|
|
|
ln = lsab_alloc(po, sizeof(struct ospf_lsa_rt_link));
|
2004-06-26 00:39:53 +08:00
|
|
|
ln->type = LSART_VLNK;
|
|
|
|
ln->id = neigh->rid;
|
2010-02-11 17:23:35 +08:00
|
|
|
ln->data = ipa_to_u32(ifa->addr->ip);
|
2004-06-26 00:39:53 +08:00
|
|
|
ln->metric = ifa->cost;
|
2009-09-08 23:06:47 +08:00
|
|
|
ln->padding = 0;
|
2009-06-11 05:45:08 +08:00
|
|
|
i++;
|
2004-07-13 20:21:24 +08:00
|
|
|
}
|
|
|
|
break;
|
2009-06-11 05:45:08 +08:00
|
|
|
|
2004-07-13 20:21:24 +08:00
|
|
|
default:
|
2004-07-16 00:37:52 +08:00
|
|
|
log("Unknown interface type %s", ifa->iface->name);
|
2004-06-26 00:39:53 +08:00
|
|
|
break;
|
2000-03-10 06:38:05 +08:00
|
|
|
}
|
2009-06-11 05:45:08 +08:00
|
|
|
|
2010-12-28 08:43:07 +08:00
|
|
|
ifa->rt_pos_end = i;
|
|
|
|
|
2010-03-14 23:36:59 +08:00
|
|
|
/* Now we will originate stub area if there is no primary */
|
|
|
|
if (net_lsa ||
|
|
|
|
(ifa->type == OSPF_IT_VLINK) ||
|
2011-03-29 04:46:18 +08:00
|
|
|
(ifa->addr->flags & IA_PEER) ||
|
2010-03-14 23:36:59 +08:00
|
|
|
configured_stubnet(oa, ifa->addr))
|
|
|
|
continue;
|
2009-06-11 05:45:08 +08:00
|
|
|
|
2010-03-14 23:36:59 +08:00
|
|
|
ln = lsab_alloc(po, sizeof(struct ospf_lsa_rt_link));
|
2011-03-29 04:46:18 +08:00
|
|
|
if ((ifa->addr->flags & IA_HOST) ||
|
|
|
|
(ifa->state == OSPF_IS_LOOP) ||
|
|
|
|
(ifa->type == OSPF_IT_PTMP))
|
2010-11-13 21:19:23 +08:00
|
|
|
{
|
|
|
|
/* Host stub entry */
|
|
|
|
ln->type = LSART_STUB;
|
|
|
|
ln->id = ipa_to_u32(ifa->addr->ip);
|
|
|
|
ln->data = 0xffffffff;
|
|
|
|
ln->metric = 0;
|
|
|
|
ln->padding = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Network stub entry */
|
|
|
|
ln->type = LSART_STUB;
|
|
|
|
ln->id = ipa_to_u32(ifa->addr->prefix);
|
|
|
|
ln->data = ipa_to_u32(ipa_mkmask(ifa->addr->pxlen));
|
|
|
|
ln->metric = ifa->cost;
|
|
|
|
ln->padding = 0;
|
|
|
|
}
|
2010-03-14 23:36:59 +08:00
|
|
|
i++;
|
2010-12-28 08:43:07 +08:00
|
|
|
|
|
|
|
ifa->rt_pos_end = i;
|
2000-03-10 06:38:05 +08:00
|
|
|
}
|
2009-06-11 05:45:08 +08:00
|
|
|
|
2009-06-11 23:25:38 +08:00
|
|
|
struct ospf_stubnet_config *sn;
|
2010-11-10 23:43:11 +08:00
|
|
|
if (oa->ac)
|
|
|
|
WALK_LIST(sn, oa->ac->stubnet_list)
|
|
|
|
if (!sn->hidden)
|
2009-06-11 23:25:38 +08:00
|
|
|
{
|
|
|
|
ln = lsab_alloc(po, sizeof(struct ospf_lsa_rt_link));
|
|
|
|
ln->type = LSART_STUB;
|
|
|
|
ln->id = ipa_to_u32(sn->px.addr);
|
|
|
|
ln->data = ipa_to_u32(ipa_mkmask(sn->px.len));
|
|
|
|
ln->metric = sn->cost;
|
2009-09-08 23:06:47 +08:00
|
|
|
ln->padding = 0;
|
2009-06-11 23:25:38 +08:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2009-06-11 05:45:08 +08:00
|
|
|
rt = po->lsab;
|
2004-06-06 16:55:33 +08:00
|
|
|
rt->links = i;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
if (bitv)
|
|
|
|
rt->options |= OPT_RT_V;
|
|
|
|
|
2009-06-11 05:45:08 +08:00
|
|
|
*length = po->lsab_used + sizeof(struct ospf_lsa_header);
|
|
|
|
return lsab_flush(po);
|
2000-03-10 06:38:05 +08:00
|
|
|
}
|
2000-05-03 06:19:41 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#else /* OSPFv3 */
|
|
|
|
|
|
|
|
static void
|
|
|
|
add_lsa_rt_link(struct proto_ospf *po, struct ospf_iface *ifa, u8 type, u32 nif, u32 id)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_rt_link *ln = lsab_alloc(po, sizeof(struct ospf_lsa_rt_link));
|
|
|
|
ln->type = type;
|
|
|
|
ln->padding = 0;
|
|
|
|
ln->metric = ifa->cost;
|
|
|
|
ln->lif = ifa->iface->index;
|
|
|
|
ln->nif = nif;
|
|
|
|
ln->id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
originate_rt_lsa_body(struct ospf_area *oa, u16 *length)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
struct ospf_iface *ifa;
|
2009-08-25 22:42:14 +08:00
|
|
|
int bitv = 0;
|
2010-12-28 08:43:07 +08:00
|
|
|
int i = 0;
|
2009-08-21 15:27:52 +08:00
|
|
|
struct ospf_lsa_rt *rt;
|
|
|
|
struct ospf_neighbor *neigh;
|
|
|
|
|
|
|
|
ASSERT(po->lsab_used == 0);
|
|
|
|
rt = lsab_allocz(po, sizeof(struct ospf_lsa_rt));
|
|
|
|
|
|
|
|
rt->options = oa->options & OPTIONS_MASK;
|
|
|
|
|
|
|
|
if (po->areano > 1)
|
|
|
|
rt->options |= OPT_RT_B;
|
|
|
|
|
2011-07-23 02:00:24 +08:00
|
|
|
if ((po->areano > 1) && oa_is_nssa(oa) && oa->ac->translator)
|
|
|
|
rt->options |= OPT_RT_NT;
|
|
|
|
|
2011-07-21 05:40:20 +08:00
|
|
|
if (po->ebit && !oa_is_stub(oa))
|
2009-08-21 15:27:52 +08:00
|
|
|
rt->options |= OPT_RT_E;
|
|
|
|
|
|
|
|
rt = NULL; /* buffer might be reallocated later */
|
|
|
|
|
|
|
|
WALK_LIST(ifa, po->iface_list)
|
|
|
|
{
|
|
|
|
if ((ifa->type == OSPF_IT_VLINK) && (ifa->voa == oa) &&
|
|
|
|
(!EMPTY_LIST(ifa->neigh_list)))
|
|
|
|
{
|
|
|
|
neigh = (struct ospf_neighbor *) HEAD(ifa->neigh_list);
|
|
|
|
if ((neigh->state == NEIGHBOR_FULL) && (ifa->cost <= 0xffff))
|
|
|
|
bitv = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ifa->oa != oa) || (ifa->state == OSPF_IS_DOWN))
|
|
|
|
continue;
|
|
|
|
|
2010-12-28 08:43:07 +08:00
|
|
|
ifa->rt_pos_beg = i;
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
/* RFC5340 - 4.4.3.2 */
|
|
|
|
switch (ifa->type)
|
|
|
|
{
|
|
|
|
case OSPF_IT_PTP:
|
2010-12-25 01:08:07 +08:00
|
|
|
case OSPF_IT_PTMP:
|
|
|
|
WALK_LIST(neigh, ifa->neigh_list)
|
|
|
|
if (neigh->state == NEIGHBOR_FULL)
|
2010-12-28 08:43:07 +08:00
|
|
|
add_lsa_rt_link(po, ifa, LSART_PTP, neigh->iface_id, neigh->rid), i++;
|
2009-08-21 15:27:52 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OSPF_IT_BCAST:
|
|
|
|
case OSPF_IT_NBMA:
|
|
|
|
if (bcast_net_active(ifa))
|
2010-12-28 08:43:07 +08:00
|
|
|
add_lsa_rt_link(po, ifa, LSART_NET, ifa->dr_iface_id, ifa->drid), i++;
|
2009-08-21 15:27:52 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OSPF_IT_VLINK:
|
|
|
|
neigh = (struct ospf_neighbor *) HEAD(ifa->neigh_list);
|
|
|
|
if ((!EMPTY_LIST(ifa->neigh_list)) && (neigh->state == NEIGHBOR_FULL) && (ifa->cost <= 0xffff))
|
2010-12-28 08:43:07 +08:00
|
|
|
add_lsa_rt_link(po, ifa, LSART_VLNK, neigh->iface_id, neigh->rid), i++;
|
2009-08-21 15:27:52 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
log("Unknown interface type %s", ifa->iface->name);
|
|
|
|
break;
|
|
|
|
}
|
2010-12-28 08:43:07 +08:00
|
|
|
|
|
|
|
ifa->rt_pos_end = i;
|
2009-08-21 15:27:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (bitv)
|
|
|
|
{
|
|
|
|
rt = po->lsab;
|
|
|
|
rt->options |= OPT_RT_V;
|
|
|
|
}
|
|
|
|
|
|
|
|
*length = po->lsab_used + sizeof(struct ospf_lsa_header);
|
|
|
|
return lsab_flush(po);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2000-06-08 05:46:22 +08:00
|
|
|
/**
|
|
|
|
* originate_rt_lsa - build new instance of router LSA
|
|
|
|
* @oa: ospf_area which is LSA built to
|
|
|
|
*
|
|
|
|
* It builds router LSA walking through all OSPF interfaces in
|
|
|
|
* specified OSPF area. This function is mostly called from
|
|
|
|
* area_disp(). Builds new LSA, increases sequence number (if old
|
|
|
|
* instance exists) and sets age of LSA to zero.
|
|
|
|
*/
|
2000-05-03 08:08:48 +08:00
|
|
|
void
|
2000-05-31 22:06:33 +08:00
|
|
|
originate_rt_lsa(struct ospf_area *oa)
|
2000-04-04 23:55:55 +08:00
|
|
|
{
|
|
|
|
struct ospf_lsa_header lsa;
|
2004-06-06 16:55:33 +08:00
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
2000-04-04 23:55:55 +08:00
|
|
|
void *body;
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Originating router-LSA for area %R", oa->areaid);
|
2004-06-06 16:55:33 +08:00
|
|
|
|
|
|
|
lsa.age = 0;
|
|
|
|
lsa.type = LSA_T_RT;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
#ifdef OSPFv2
|
|
|
|
lsa.options = oa->options;
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.id = po->router_id;
|
2010-01-03 19:17:52 +08:00
|
|
|
#else /* OSPFv3 */
|
|
|
|
lsa.id = 0;
|
|
|
|
#endif
|
|
|
|
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2010-05-23 18:34:09 +08:00
|
|
|
lsa.sn = get_seqnum(oa->rt);
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 dom = oa->areaid;
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
body = originate_rt_lsa_body(oa, &lsa.length);
|
2004-06-07 02:45:08 +08:00
|
|
|
lsasum_calculate(&lsa, body);
|
2009-08-25 22:42:14 +08:00
|
|
|
oa->rt = lsa_install_new(po, &lsa, dom, body);
|
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &lsa, dom, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
update_rt_lsa(struct ospf_area *oa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
|
|
|
|
if ((oa->rt) && ((oa->rt->inst_t + MINLSINTERVAL)) > now)
|
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* Tick is probably set to very low value. We cannot
|
|
|
|
* originate new LSA before MINLSINTERVAL. We will
|
|
|
|
* try to do it next tick.
|
|
|
|
*/
|
|
|
|
|
|
|
|
originate_rt_lsa(oa);
|
2009-09-04 17:06:51 +08:00
|
|
|
#ifdef OSPFv3
|
2009-08-25 22:42:14 +08:00
|
|
|
originate_prefix_rt_lsa(oa);
|
2009-09-04 17:06:51 +08:00
|
|
|
#endif
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2004-06-07 00:00:09 +08:00
|
|
|
schedule_rtcalc(po);
|
2004-06-06 16:55:33 +08:00
|
|
|
oa->origrt = 0;
|
2000-02-24 08:26:10 +08:00
|
|
|
}
|
|
|
|
|
2004-06-05 17:58:23 +08:00
|
|
|
static void *
|
2009-08-21 15:27:52 +08:00
|
|
|
originate_net_lsa_body(struct ospf_iface *ifa, u16 *length,
|
2004-06-06 16:55:33 +08:00
|
|
|
struct proto_ospf *po)
|
2000-05-03 07:09:44 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
u16 i = 1;
|
2000-05-03 07:09:44 +08:00
|
|
|
struct ospf_neighbor *n;
|
2000-05-04 09:23:03 +08:00
|
|
|
struct ospf_lsa_net *net;
|
2009-08-21 15:27:52 +08:00
|
|
|
int nodes = ifa->fadj + 1;
|
|
|
|
|
|
|
|
net = mb_alloc(po->proto.pool, sizeof(struct ospf_lsa_net)
|
|
|
|
+ nodes * sizeof(u32));
|
2000-05-03 07:09:44 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
2010-02-11 17:23:35 +08:00
|
|
|
net->netmask = ipa_mkmask(ifa->addr->pxlen);
|
2009-08-21 15:27:52 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef OSPFv3
|
|
|
|
/* In OSPFv3, we would like to merge options from Link LSAs of added neighbors */
|
|
|
|
struct top_hash_entry *en;
|
|
|
|
u32 options = 0;
|
|
|
|
#endif
|
|
|
|
|
2009-12-11 08:20:53 +08:00
|
|
|
net->routers[0] = po->router_id;
|
2000-05-04 09:23:03 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
WALK_LIST(n, ifa->neigh_list)
|
2000-05-03 07:09:44 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
if (n->state == NEIGHBOR_FULL)
|
2000-05-03 07:09:44 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv3
|
2009-08-25 22:42:14 +08:00
|
|
|
en = ospf_hash_find(po->gr, ifa->iface->index, n->iface_id, n->rid, LSA_T_LINK);
|
2009-08-21 15:27:52 +08:00
|
|
|
if (en)
|
|
|
|
options |= ((struct ospf_lsa_link *) en->lsa_body)->options;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
net->routers[i] = n->rid;
|
2000-05-03 07:09:44 +08:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
ASSERT(i == nodes);
|
|
|
|
|
|
|
|
#ifdef OSPFv3
|
|
|
|
net->options = options & OPTIONS_MASK;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*length = sizeof(struct ospf_lsa_header) + sizeof(struct ospf_lsa_net)
|
|
|
|
+ nodes * sizeof(u32);
|
2000-05-04 09:23:03 +08:00
|
|
|
return net;
|
2000-05-03 07:09:44 +08:00
|
|
|
}
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2000-06-08 05:46:22 +08:00
|
|
|
/**
|
|
|
|
* originate_net_lsa - originates of deletes network LSA
|
|
|
|
* @ifa: interface which is LSA originated for
|
|
|
|
*
|
2003-08-23 18:42:41 +08:00
|
|
|
* Interface counts number of adjacent neighbors. If this number is
|
|
|
|
* lower than one or interface is not in state %OSPF_IS_DR it deletes
|
2000-06-08 05:46:22 +08:00
|
|
|
* and premature ages instance of network LSA for specified interface.
|
|
|
|
* In other case, new instance of network LSA is originated.
|
|
|
|
*/
|
2000-05-03 08:08:48 +08:00
|
|
|
void
|
2000-06-08 05:46:22 +08:00
|
|
|
originate_net_lsa(struct ospf_iface *ifa)
|
2000-05-03 07:09:44 +08:00
|
|
|
{
|
2004-07-16 00:37:52 +08:00
|
|
|
struct proto_ospf *po = ifa->oa->po;
|
2009-12-11 08:20:53 +08:00
|
|
|
struct proto *p = &po->proto;
|
2000-05-03 07:09:44 +08:00
|
|
|
struct ospf_lsa_header lsa;
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 dom = ifa->oa->areaid;
|
2009-12-11 08:20:53 +08:00
|
|
|
|
2000-05-03 07:09:44 +08:00
|
|
|
void *body;
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Originating network-LSA for iface %s",
|
2004-06-06 16:55:33 +08:00
|
|
|
ifa->iface->name);
|
|
|
|
|
|
|
|
lsa.age = 0;
|
|
|
|
lsa.type = LSA_T_NET;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
#ifdef OSPFv2
|
|
|
|
lsa.options = ifa->oa->options;
|
2010-02-11 17:23:35 +08:00
|
|
|
lsa.id = ipa_to_u32(ifa->addr->ip);
|
2009-08-21 15:27:52 +08:00
|
|
|
#else /* OSPFv3 */
|
|
|
|
lsa.id = ifa->iface->index;
|
|
|
|
#endif
|
|
|
|
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2010-05-23 18:34:09 +08:00
|
|
|
lsa.sn = get_seqnum(ifa->net_lsa);
|
2000-05-31 01:51:22 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
body = originate_net_lsa_body(ifa, &lsa.length, po);
|
2004-06-07 02:45:08 +08:00
|
|
|
lsasum_calculate(&lsa, body);
|
2009-08-21 15:27:52 +08:00
|
|
|
ifa->net_lsa = lsa_install_new(po, &lsa, dom, body);
|
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &lsa, dom, 1);
|
2000-05-03 07:09:44 +08:00
|
|
|
}
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
void
|
|
|
|
flush_net_lsa(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = ifa->oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
u32 dom = ifa->oa->areaid;
|
|
|
|
|
|
|
|
if (ifa->net_lsa == NULL)
|
|
|
|
return;
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Flushing network-LSA for iface %s",
|
2009-08-25 22:42:14 +08:00
|
|
|
ifa->iface->name);
|
|
|
|
ifa->net_lsa->lsa.sn += 1;
|
|
|
|
ifa->net_lsa->lsa.age = LSA_MAXAGE;
|
|
|
|
lsasum_calculate(&ifa->net_lsa->lsa, ifa->net_lsa->lsa_body);
|
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &ifa->net_lsa->lsa, dom, 0);
|
|
|
|
flush_lsa(ifa->net_lsa, po);
|
|
|
|
ifa->net_lsa = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
update_net_lsa(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = ifa->oa->po;
|
|
|
|
|
|
|
|
if (ifa->net_lsa && ((ifa->net_lsa->inst_t + MINLSINTERVAL) > now))
|
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* It's too early to originate new network LSA. We will
|
|
|
|
* try to do it next tick
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((ifa->state != OSPF_IS_DR) || (ifa->fadj == 0))
|
|
|
|
{
|
|
|
|
flush_net_lsa(ifa);
|
2009-09-04 17:06:51 +08:00
|
|
|
#ifdef OSPFv3
|
2009-08-25 22:42:14 +08:00
|
|
|
flush_prefix_net_lsa(ifa);
|
2009-09-04 17:06:51 +08:00
|
|
|
#endif
|
2009-08-25 22:42:14 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
originate_net_lsa(ifa);
|
2009-09-04 17:06:51 +08:00
|
|
|
#ifdef OSPFv3
|
2009-08-25 22:42:14 +08:00
|
|
|
originate_prefix_net_lsa(ifa);
|
2009-09-04 17:06:51 +08:00
|
|
|
#endif
|
2009-08-25 22:42:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
schedule_rtcalc(po);
|
|
|
|
ifa->orignet = 0;
|
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
static inline void *
|
2009-08-21 15:27:52 +08:00
|
|
|
originate_sum_lsa_body(struct proto_ospf *po, u16 *length, u32 mlen, u32 metric)
|
2000-05-27 22:17:35 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
struct ospf_lsa_sum *sum = mb_alloc(po->proto.pool, sizeof(struct ospf_lsa_sum));
|
|
|
|
*length = sizeof(struct ospf_lsa_header) + sizeof(struct ospf_lsa_sum);
|
2000-05-27 22:17:35 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
sum->netmask = ipa_mkmask(mlen);
|
|
|
|
sum->metric = metric;
|
2000-05-27 22:17:35 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
return sum;
|
|
|
|
}
|
2000-05-31 05:25:32 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#define originate_sum_net_lsa_body(po,length,fn,metric) \
|
|
|
|
originate_sum_lsa_body(po, length, (fn)->pxlen, metric)
|
2004-06-06 16:55:33 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#define originate_sum_rt_lsa_body(po,length,drid,metric,options) \
|
|
|
|
originate_sum_lsa_body(po, length, 0, metric)
|
2000-05-27 22:17:35 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
static inline int
|
|
|
|
check_sum_net_lsaid_collision(struct fib_node *fn, struct top_hash_entry *en)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_sum *sum = en->lsa_body;
|
2009-12-04 06:20:02 +08:00
|
|
|
return fn->pxlen != ipa_mklen(sum->netmask);
|
2009-10-26 03:02:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2010-05-16 16:27:20 +08:00
|
|
|
check_sum_lsa_same(struct top_hash_entry *en, u32 metric)
|
2009-10-26 03:02:28 +08:00
|
|
|
{
|
2010-05-16 16:27:20 +08:00
|
|
|
/* Netmask already checked in check_sum_net_lsaid_collision() */
|
|
|
|
struct ospf_lsa_sum *sum = en->lsa_body;
|
2010-07-31 17:37:30 +08:00
|
|
|
return (en->lsa.sn != LSA_MAXSEQNO) && (sum->metric == metric);
|
2009-10-26 03:02:28 +08:00
|
|
|
}
|
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
#define check_sum_net_lsa_same(en,metric) \
|
|
|
|
check_sum_lsa_same(en, metric)
|
|
|
|
|
|
|
|
#define check_sum_rt_lsa_same(en,drid,metric,options) \
|
|
|
|
check_sum_lsa_same(en, metric)
|
|
|
|
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#else /* OSPFv3 */
|
2004-06-01 02:16:42 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
static inline void *
|
2009-08-21 15:27:52 +08:00
|
|
|
originate_sum_net_lsa_body(struct proto_ospf *po, u16 *length, struct fib_node *fn, u32 metric)
|
2004-06-01 02:16:42 +08:00
|
|
|
{
|
2009-08-21 15:27:52 +08:00
|
|
|
int size = sizeof(struct ospf_lsa_sum_net) + IPV6_PREFIX_SPACE(fn->pxlen);
|
|
|
|
struct ospf_lsa_sum_net *sum = mb_alloc(po->proto.pool, size);
|
|
|
|
*length = sizeof(struct ospf_lsa_header) + size;
|
|
|
|
|
|
|
|
sum->metric = metric;
|
|
|
|
put_ipv6_prefix(sum->prefix, fn->prefix, fn->pxlen, 0, 0);
|
|
|
|
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
static inline int
|
|
|
|
check_sum_net_lsaid_collision(struct fib_node *fn, struct top_hash_entry *en)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_sum_net *sum = en->lsa_body;
|
|
|
|
ip_addr prefix;
|
|
|
|
int pxlen;
|
|
|
|
u8 pxopts;
|
|
|
|
u16 rest;
|
|
|
|
|
|
|
|
lsa_get_ipv6_prefix(sum->prefix, &prefix, &pxlen, &pxopts, &rest);
|
|
|
|
return (fn->pxlen != pxlen) || !ipa_equal(fn->prefix, prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2010-05-16 16:27:20 +08:00
|
|
|
check_sum_net_lsa_same(struct top_hash_entry *en, u32 metric)
|
2009-10-26 03:02:28 +08:00
|
|
|
{
|
2010-05-16 16:27:20 +08:00
|
|
|
/* Prefix already checked in check_sum_net_lsaid_collision() */
|
|
|
|
struct ospf_lsa_sum_net *sum = en->lsa_body;
|
2010-07-31 17:37:30 +08:00
|
|
|
return (en->lsa.sn != LSA_MAXSEQNO) && (sum->metric == metric);
|
2009-10-26 03:02:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *
|
2009-08-21 15:27:52 +08:00
|
|
|
originate_sum_rt_lsa_body(struct proto_ospf *po, u16 *length, u32 drid, u32 metric, u32 options)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_sum_rt *sum = mb_alloc(po->proto.pool, sizeof(struct ospf_lsa_sum_rt));
|
|
|
|
*length = sizeof(struct ospf_lsa_header) + sizeof(struct ospf_lsa_sum_rt);
|
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
sum->options = options;
|
2009-08-21 15:27:52 +08:00
|
|
|
sum->metric = metric;
|
|
|
|
sum->drid = drid;
|
|
|
|
|
|
|
|
return sum;
|
2004-06-01 02:16:42 +08:00
|
|
|
}
|
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
static inline int
|
|
|
|
check_sum_rt_lsa_same(struct top_hash_entry *en, u32 drid, u32 metric, u32 options)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_sum_rt *sum = en->lsa_body;
|
2010-07-31 17:37:30 +08:00
|
|
|
return (en->lsa.sn != LSA_MAXSEQNO) && (sum->options == options) &&
|
|
|
|
(sum->metric == metric) && (sum->drid == drid);
|
2010-05-16 16:27:20 +08:00
|
|
|
}
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#endif
|
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
void
|
2009-10-26 03:02:28 +08:00
|
|
|
originate_sum_net_lsa(struct ospf_area *oa, struct fib_node *fn, int metric)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct top_hash_entry *en;
|
2009-10-26 03:02:28 +08:00
|
|
|
u32 dom = oa->areaid;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct ospf_lsa_header lsa;
|
2009-08-21 15:27:52 +08:00
|
|
|
void *body;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Originating net-summary-LSA for %I/%d (metric %d)",
|
|
|
|
fn->prefix, fn->pxlen, metric);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
/* options argument is used in ORT_NET and OSPFv3 only */
|
2009-08-21 15:27:52 +08:00
|
|
|
lsa.age = 0;
|
|
|
|
#ifdef OSPFv2
|
|
|
|
lsa.options = oa->options;
|
|
|
|
#endif
|
2009-10-26 03:02:28 +08:00
|
|
|
lsa.type = LSA_T_SUM_NET;
|
|
|
|
lsa.id = fibnode_to_lsaid(po, fn);
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
if ((en = ospf_hash_find_header(po->gr, dom, &lsa)) != NULL)
|
|
|
|
{
|
|
|
|
if (check_sum_net_lsaid_collision(fn, en))
|
2010-05-16 16:27:20 +08:00
|
|
|
{
|
2011-10-01 15:57:49 +08:00
|
|
|
log(L_ERR "%s: LSAID collision for %I/%d",
|
2010-05-16 16:27:20 +08:00
|
|
|
p->name, fn->prefix, fn->pxlen);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check_sum_net_lsa_same(en, metric))
|
|
|
|
return;
|
2009-10-26 03:02:28 +08:00
|
|
|
}
|
2010-05-23 18:34:09 +08:00
|
|
|
lsa.sn = get_seqnum(en);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
body = originate_sum_net_lsa_body(po, &lsa.length, fn, metric);
|
|
|
|
lsasum_calculate(&lsa, body);
|
2012-04-27 06:04:51 +08:00
|
|
|
lsa_install_new(po, &lsa, dom, body);
|
2009-10-26 03:02:28 +08:00
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &lsa, dom, 1);
|
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
void
|
2010-02-21 21:34:53 +08:00
|
|
|
originate_sum_rt_lsa(struct ospf_area *oa, struct fib_node *fn, int metric, u32 options UNUSED)
|
2009-10-26 03:02:28 +08:00
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct top_hash_entry *en;
|
2010-02-11 17:23:35 +08:00
|
|
|
u32 dom = oa->areaid;
|
|
|
|
u32 rid = ipa_to_rid(fn->prefix);
|
2009-10-26 03:02:28 +08:00
|
|
|
struct ospf_lsa_header lsa;
|
|
|
|
void *body;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Originating rt-summary-LSA for %R (metric %d)",
|
2010-02-11 17:23:35 +08:00
|
|
|
rid, metric);
|
2009-10-26 03:02:28 +08:00
|
|
|
|
|
|
|
lsa.age = 0;
|
|
|
|
#ifdef OSPFv2
|
|
|
|
lsa.options = oa->options;
|
|
|
|
#endif
|
|
|
|
lsa.type = LSA_T_SUM_RT;
|
|
|
|
/* In OSPFv3, LSA ID is meaningless, but we still use Router ID of ASBR */
|
2010-02-11 17:23:35 +08:00
|
|
|
lsa.id = rid;
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2009-10-26 03:02:28 +08:00
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
options &= OPTIONS_MASK;
|
2009-10-26 03:02:28 +08:00
|
|
|
if ((en = ospf_hash_find_header(po->gr, dom, &lsa)) != NULL)
|
2010-05-16 16:27:20 +08:00
|
|
|
{
|
|
|
|
if (check_sum_rt_lsa_same(en, lsa.id, metric, options))
|
|
|
|
return;
|
|
|
|
}
|
2010-05-23 18:34:09 +08:00
|
|
|
lsa.sn = get_seqnum(en);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-10-26 03:02:28 +08:00
|
|
|
body = originate_sum_rt_lsa_body(po, &lsa.length, lsa.id, metric, options);
|
2009-08-21 15:27:52 +08:00
|
|
|
lsasum_calculate(&lsa, body);
|
2012-04-27 06:04:51 +08:00
|
|
|
lsa_install_new(po, &lsa, dom, body);
|
2009-08-21 15:27:52 +08:00
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &lsa, dom, 1);
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-08-21 15:27:52 +08:00
|
|
|
flush_sum_lsa(struct ospf_area *oa, struct fib_node *fn, int type)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct top_hash_entry *en;
|
|
|
|
struct ospf_lsa_header lsa;
|
|
|
|
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2009-08-21 15:27:52 +08:00
|
|
|
if (type == ORT_NET)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
2009-10-08 04:10:29 +08:00
|
|
|
lsa.id = fibnode_to_lsaid(po, fn);
|
2009-08-21 15:27:52 +08:00
|
|
|
lsa.type = LSA_T_SUM_NET;
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
else
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
2009-10-26 03:02:28 +08:00
|
|
|
/* In OSPFv3, LSA ID is meaningless, but we still use Router ID of ASBR */
|
2009-08-21 15:27:52 +08:00
|
|
|
lsa.id = ipa_to_rid(fn->prefix);
|
|
|
|
lsa.type = LSA_T_SUM_RT;
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
if ((en = ospf_hash_find_header(po->gr, oa->areaid, &lsa)) != NULL)
|
2009-08-21 15:27:52 +08:00
|
|
|
{
|
2009-10-26 03:02:28 +08:00
|
|
|
if ((type == ORT_NET) && check_sum_net_lsaid_collision(fn, en))
|
|
|
|
{
|
2011-10-01 15:57:49 +08:00
|
|
|
log(L_ERR "%s: LSAID collision for %I/%d",
|
2009-10-26 03:02:28 +08:00
|
|
|
p->name, fn->prefix, fn->pxlen);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
struct ospf_lsa_sum *sum = en->lsa_body;
|
|
|
|
en->lsa.age = LSA_MAXAGE;
|
|
|
|
en->lsa.sn = LSA_MAXSEQNO;
|
|
|
|
lsasum_calculate(&en->lsa, sum);
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Flushing summary-LSA (id=%R, type=%d)",
|
2009-08-21 15:27:52 +08:00
|
|
|
en->lsa.id, en->lsa.type);
|
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &en->lsa, oa->areaid, 1);
|
|
|
|
if (can_flush_lsa(po)) flush_lsa(en, po);
|
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
#ifdef OSPFv2
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
static inline void *
|
2011-08-08 07:45:31 +08:00
|
|
|
originate_ext_lsa_body(struct proto_ospf *po, u16 *length, struct fib_node *fn,
|
2011-09-04 03:31:26 +08:00
|
|
|
u32 metric, ip_addr fwaddr, u32 tag, int pbit UNUSED)
|
2009-08-21 15:27:52 +08:00
|
|
|
{
|
2010-05-16 16:27:20 +08:00
|
|
|
struct ospf_lsa_ext *ext = mb_alloc(po->proto.pool, sizeof(struct ospf_lsa_ext));
|
|
|
|
*length = sizeof(struct ospf_lsa_header) + sizeof(struct ospf_lsa_ext);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
ext->metric = metric;
|
2011-08-08 07:45:31 +08:00
|
|
|
ext->netmask = ipa_mkmask(fn->pxlen);
|
2010-05-16 16:27:20 +08:00
|
|
|
ext->fwaddr = fwaddr;
|
|
|
|
ext->tag = tag;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
return ext;
|
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
/*
|
|
|
|
* check_ext_lsa() combines functions of check_*_lsaid_collision() and
|
|
|
|
* check_*_lsa_same(). 'en' is existing ext LSA, and rest parameters
|
|
|
|
* are parameters of new ext route. Function returns -1 if there is
|
|
|
|
* LSAID collision, returns 1 if the existing LSA is the same and
|
|
|
|
* returns 0 otherwise (in that case, we need to originate a new LSA).
|
|
|
|
*
|
|
|
|
* Really, checking for the same parameters is not as important as in
|
|
|
|
* summary LSA origination, because in most cases the duplicate
|
|
|
|
* external route propagation would be stopped by the nest. But there
|
|
|
|
* are still some cases (route reload, the same route propagated through
|
|
|
|
* different protocol) so it is also done here.
|
|
|
|
*/
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
static inline int
|
|
|
|
check_ext_lsa(struct top_hash_entry *en, struct fib_node *fn, u32 metric, ip_addr fwaddr, u32 tag)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_ext *ext = en->lsa_body;
|
|
|
|
|
|
|
|
/* LSAID collision */
|
|
|
|
if (fn->pxlen != ipa_mklen(ext->netmask))
|
|
|
|
return -1;
|
|
|
|
|
2010-07-31 17:37:30 +08:00
|
|
|
return (en->lsa.sn != LSA_MAXSEQNO) && (ext->metric == metric) &&
|
|
|
|
(ext->tag == tag) && ipa_equal(ext->fwaddr,fwaddr);
|
2010-05-16 16:27:20 +08:00
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
#else /* OSPFv3 */
|
2010-05-16 16:27:20 +08:00
|
|
|
|
|
|
|
static inline void *
|
2011-08-08 07:45:31 +08:00
|
|
|
originate_ext_lsa_body(struct proto_ospf *po, u16 *length, struct fib_node *fn,
|
2011-09-04 03:31:26 +08:00
|
|
|
u32 metric, ip_addr fwaddr, u32 tag, int pbit)
|
2010-05-16 16:27:20 +08:00
|
|
|
{
|
|
|
|
int size = sizeof(struct ospf_lsa_ext)
|
2011-09-04 03:31:26 +08:00
|
|
|
+ IPV6_PREFIX_SPACE(fn->pxlen)
|
2010-05-16 16:27:20 +08:00
|
|
|
+ (ipa_nonzero(fwaddr) ? 16 : 0)
|
|
|
|
+ (tag ? 4 : 0);
|
|
|
|
|
|
|
|
struct ospf_lsa_ext *ext = mb_alloc(po->proto.pool, size);
|
|
|
|
*length = sizeof(struct ospf_lsa_header) + size;
|
|
|
|
|
|
|
|
ext->metric = metric;
|
|
|
|
|
2010-02-21 21:34:53 +08:00
|
|
|
u32 *buf = ext->rest;
|
2011-09-04 03:31:26 +08:00
|
|
|
buf = put_ipv6_prefix(buf, fn->prefix, fn->pxlen, pbit ? OPT_PX_P : 0, 0);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
if (ipa_nonzero(fwaddr))
|
|
|
|
{
|
|
|
|
ext->metric |= LSA_EXT_FBIT;
|
|
|
|
buf = put_ipv6_addr(buf, fwaddr);
|
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
if (tag)
|
2010-05-16 16:27:20 +08:00
|
|
|
{
|
|
|
|
ext->metric |= LSA_EXT_TBIT;
|
|
|
|
*buf++ = tag;
|
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
return ext;
|
|
|
|
}
|
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
static inline int
|
|
|
|
check_ext_lsa(struct top_hash_entry *en, struct fib_node *fn, u32 metric, ip_addr fwaddr, u32 tag)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_ext *ext = en->lsa_body;
|
|
|
|
ip_addr prefix;
|
|
|
|
int pxlen;
|
|
|
|
u8 pxopts;
|
|
|
|
u16 rest;
|
|
|
|
|
|
|
|
u32 *buf = lsa_get_ipv6_prefix(ext->rest, &prefix, &pxlen, &pxopts, &rest);
|
|
|
|
|
|
|
|
/* LSAID collision */
|
|
|
|
if ((fn->pxlen != pxlen) || !ipa_equal(fn->prefix, prefix))
|
|
|
|
return -1;
|
|
|
|
|
2010-07-31 17:37:30 +08:00
|
|
|
if (en->lsa.sn == LSA_MAXSEQNO)
|
|
|
|
return 0;
|
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
u32 rt_metric = ext->metric & METRIC_MASK;
|
|
|
|
ip_addr rt_fwaddr = IPA_NONE;
|
|
|
|
u32 rt_tag = 0;
|
|
|
|
|
|
|
|
if (ext->metric & LSA_EXT_FBIT)
|
|
|
|
buf = lsa_get_ipv6_addr(buf, &rt_fwaddr);
|
|
|
|
|
|
|
|
if (ext->metric & LSA_EXT_TBIT)
|
|
|
|
rt_tag = *buf++;
|
|
|
|
|
|
|
|
return (rt_metric == metric) && ipa_equal(rt_fwaddr, fwaddr) && (rt_tag == tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-09-04 03:31:26 +08:00
|
|
|
static inline ip_addr
|
|
|
|
find_surrogate_fwaddr(struct ospf_area *oa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
|
|
|
struct ospf_iface *ifa;
|
|
|
|
struct ifa *a, *cur_addr = NULL;
|
|
|
|
int np, cur_np = 0;
|
|
|
|
|
|
|
|
WALK_LIST(ifa, po->iface_list)
|
|
|
|
{
|
|
|
|
if ((ifa->oa != oa) ||
|
|
|
|
(ifa->type == OSPF_IT_VLINK))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
#ifdef OSPFv2
|
|
|
|
a = ifa->addr;
|
|
|
|
if (a->flags & IA_PEER)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
np = ((a->flags & IA_HOST) || ifa->stub) ? 2 : 1;
|
|
|
|
if (np > cur_np)
|
|
|
|
{
|
|
|
|
cur_addr = a;
|
|
|
|
cur_np = np;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
WALK_LIST(a, ifa->iface->addrs)
|
|
|
|
{
|
|
|
|
if ((a->flags & IA_SECONDARY) ||
|
|
|
|
(a->flags & IA_PEER) ||
|
|
|
|
(a->scope <= SCOPE_LINK))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
np = ((a->flags & IA_HOST) || ifa->stub) ? 2 : 1;
|
|
|
|
if (np > cur_np)
|
|
|
|
{
|
|
|
|
cur_addr = a;
|
|
|
|
cur_np = np;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return cur_addr ? cur_addr->ip : IPA_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-08 05:46:22 +08:00
|
|
|
/**
|
2003-08-23 18:42:41 +08:00
|
|
|
* originate_ext_lsa - new route received from nest and filters
|
2011-07-21 05:40:20 +08:00
|
|
|
* @oa: ospf_area for which LSA is originated
|
2011-08-08 07:45:31 +08:00
|
|
|
* @fn: network prefix and mask
|
2011-09-04 03:31:26 +08:00
|
|
|
* @src: the source of origination of the LSA (EXT_EXPORT/EXT_NSSA)
|
2011-08-08 07:45:31 +08:00
|
|
|
* @metric: the metric of a route
|
|
|
|
* @fwaddr: the forwarding address
|
|
|
|
* @tag: the route tag
|
2011-09-04 03:31:26 +08:00
|
|
|
* @pbit: P-bit for NSSA LSAs, ignored for external LSAs
|
2000-06-08 05:46:22 +08:00
|
|
|
*
|
2003-08-23 18:42:41 +08:00
|
|
|
* If I receive a message that new route is installed, I try to originate an
|
2011-07-21 05:40:20 +08:00
|
|
|
* external LSA. If @oa is an NSSA area, NSSA-LSA is originated instead.
|
2011-09-04 03:31:26 +08:00
|
|
|
* @oa should not be a stub area. @src does not specify whether the LSA
|
|
|
|
* is external or NSSA, but it specifies the source of origination -
|
|
|
|
* the export from ospf_rt_notify(), or the NSSA-EXT translation.
|
2000-09-04 06:18:40 +08:00
|
|
|
*
|
2003-08-23 18:42:41 +08:00
|
|
|
* The function also sets flag ebit. If it's the first time, the new router lsa
|
2000-09-04 06:18:40 +08:00
|
|
|
* origination is necessary.
|
2000-06-08 05:46:22 +08:00
|
|
|
*/
|
2000-05-27 22:17:35 +08:00
|
|
|
void
|
2011-09-04 03:31:26 +08:00
|
|
|
originate_ext_lsa(struct ospf_area *oa, struct fib_node *fn, int src,
|
|
|
|
u32 metric, ip_addr fwaddr, u32 tag, int pbit)
|
2000-05-27 22:17:35 +08:00
|
|
|
{
|
2011-07-21 05:40:20 +08:00
|
|
|
struct proto_ospf *po = oa->po;
|
2009-09-08 19:45:02 +08:00
|
|
|
struct proto *p = &po->proto;
|
2000-05-27 22:17:35 +08:00
|
|
|
struct ospf_lsa_header lsa;
|
2004-06-06 16:55:33 +08:00
|
|
|
struct top_hash_entry *en = NULL;
|
2009-08-21 15:27:52 +08:00
|
|
|
void *body;
|
2011-07-21 05:40:20 +08:00
|
|
|
int nssa = oa_is_nssa(oa);
|
|
|
|
u32 dom = nssa ? oa->areaid : 0;
|
|
|
|
|
|
|
|
OSPF_TRACE(D_EVENTS, "Originating %s-LSA for %I/%d",
|
|
|
|
nssa ? "NSSA" : "AS-external", fn->prefix, fn->pxlen);
|
2004-06-06 16:55:33 +08:00
|
|
|
|
|
|
|
lsa.age = 0;
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
2011-09-04 03:31:26 +08:00
|
|
|
lsa.options = nssa ? (pbit ? OPT_P : 0) : OPT_E;
|
2009-08-21 15:27:52 +08:00
|
|
|
#endif
|
2011-07-21 05:40:20 +08:00
|
|
|
lsa.type = nssa ? LSA_T_NSSA : LSA_T_EXT;
|
2009-10-26 03:02:28 +08:00
|
|
|
lsa.id = fibnode_to_lsaid(po, fn);
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2000-06-05 10:23:20 +08:00
|
|
|
|
2011-09-04 03:31:26 +08:00
|
|
|
if (nssa && pbit && ipa_zero(fwaddr))
|
2011-07-21 05:40:20 +08:00
|
|
|
{
|
2011-09-04 03:31:26 +08:00
|
|
|
/* NSSA-LSA with P-bit set must have non-zero forwarding address */
|
|
|
|
|
|
|
|
fwaddr = find_surrogate_fwaddr(oa);
|
|
|
|
if (ipa_zero(fwaddr))
|
|
|
|
{
|
2011-10-01 15:57:49 +08:00
|
|
|
log(L_ERR "%s: Cannot find forwarding address for NSSA-LSA %I/%d",
|
2011-09-04 03:31:26 +08:00
|
|
|
p->name, fn->prefix, fn->pxlen);
|
|
|
|
return;
|
|
|
|
}
|
2011-07-21 05:40:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((en = ospf_hash_find_header(po->gr, dom, &lsa)) != NULL)
|
2010-05-16 16:27:20 +08:00
|
|
|
{
|
2011-08-08 07:45:31 +08:00
|
|
|
int rv = check_ext_lsa(en, fn, metric, fwaddr, tag);
|
2010-05-16 16:27:20 +08:00
|
|
|
if (rv < 0)
|
2000-06-05 10:23:20 +08:00
|
|
|
{
|
2011-10-01 15:57:49 +08:00
|
|
|
log(L_ERR "%s: LSAID collision for %I/%d",
|
2010-05-16 16:27:20 +08:00
|
|
|
p->name, fn->prefix, fn->pxlen);
|
|
|
|
return;
|
2000-06-05 10:23:20 +08:00
|
|
|
}
|
|
|
|
|
2010-05-16 16:27:20 +08:00
|
|
|
if (rv > 0)
|
|
|
|
return;
|
|
|
|
}
|
2010-05-23 18:34:09 +08:00
|
|
|
lsa.sn = get_seqnum(en);
|
2010-05-16 16:27:20 +08:00
|
|
|
|
2011-09-04 03:31:26 +08:00
|
|
|
body = originate_ext_lsa_body(po, &lsa.length, fn, metric, fwaddr, tag, pbit);
|
2004-06-07 02:45:08 +08:00
|
|
|
lsasum_calculate(&lsa, body);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2011-09-04 03:31:26 +08:00
|
|
|
if (src)
|
|
|
|
fn->x1 = src;
|
|
|
|
|
2012-04-27 06:04:51 +08:00
|
|
|
lsa_install_new(po, &lsa, dom, body);
|
2011-07-21 05:40:20 +08:00
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &lsa, dom, 1);
|
2000-09-04 06:18:40 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
if (po->ebit == 0)
|
2000-09-04 06:18:40 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
po->ebit = 1;
|
2000-09-04 06:18:40 +08:00
|
|
|
WALK_LIST(oa, po->area_list)
|
|
|
|
{
|
|
|
|
schedule_rt_lsa(oa);
|
|
|
|
}
|
|
|
|
}
|
2000-05-27 22:17:35 +08:00
|
|
|
}
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
void
|
2011-08-08 07:45:31 +08:00
|
|
|
flush_ext_lsa(struct ospf_area *oa, struct fib_node *fn)
|
2009-08-21 15:27:52 +08:00
|
|
|
{
|
2011-07-21 05:40:20 +08:00
|
|
|
struct proto_ospf *po = oa->po;
|
2009-09-08 19:45:02 +08:00
|
|
|
struct proto *p = &po->proto;
|
2009-08-21 15:27:52 +08:00
|
|
|
struct top_hash_entry *en;
|
2011-07-21 05:40:20 +08:00
|
|
|
int nssa = oa_is_nssa(oa);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2011-07-21 05:40:20 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Flushing %s-LSA for %I/%d",
|
|
|
|
nssa ? "NSSA" : "AS-external", fn->prefix, fn->pxlen);
|
2009-09-08 19:45:02 +08:00
|
|
|
|
2011-07-21 05:40:20 +08:00
|
|
|
u32 dom = nssa ? oa->areaid : 0;
|
|
|
|
u32 type = nssa ? LSA_T_NSSA : LSA_T_EXT;
|
2009-10-26 03:02:28 +08:00
|
|
|
u32 lsaid = fibnode_to_lsaid(po, fn);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2011-07-21 05:40:20 +08:00
|
|
|
if (en = ospf_hash_find(po->gr, dom, lsaid, po->router_id, type))
|
2009-08-21 15:27:52 +08:00
|
|
|
{
|
2010-05-16 16:27:20 +08:00
|
|
|
if (check_ext_lsa(en, fn, 0, IPA_NONE, 0) < 0)
|
2009-08-21 15:27:52 +08:00
|
|
|
{
|
2011-10-01 15:57:49 +08:00
|
|
|
log(L_ERR "%s: LSAID collision for %I/%d",
|
2009-10-26 03:02:28 +08:00
|
|
|
p->name, fn->prefix, fn->pxlen);
|
|
|
|
return;
|
2009-08-21 15:27:52 +08:00
|
|
|
}
|
2009-10-26 03:02:28 +08:00
|
|
|
|
2011-08-08 07:45:31 +08:00
|
|
|
fn->x1 = 0;
|
2009-10-26 03:02:28 +08:00
|
|
|
ospf_lsupd_flush_nlsa(po, en);
|
2009-08-21 15:27:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef OSPFv3
|
|
|
|
|
|
|
|
static void *
|
|
|
|
originate_link_lsa_body(struct ospf_iface *ifa, u16 *length)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = ifa->oa->po;
|
|
|
|
struct ospf_lsa_link *ll;
|
|
|
|
int i = 0;
|
|
|
|
u8 flags;
|
|
|
|
|
|
|
|
ASSERT(po->lsab_used == 0);
|
|
|
|
ll = lsab_allocz(po, sizeof(struct ospf_lsa_link));
|
|
|
|
ll->options = ifa->oa->options | (ifa->priority << 24);
|
2010-02-11 17:23:35 +08:00
|
|
|
ll->lladdr = ifa->addr->ip;
|
2009-08-21 15:27:52 +08:00
|
|
|
ll = NULL; /* buffer might be reallocated later */
|
|
|
|
|
|
|
|
struct ifa *a;
|
|
|
|
WALK_LIST(a, ifa->iface->addrs)
|
|
|
|
{
|
|
|
|
if ((a->flags & IA_SECONDARY) ||
|
|
|
|
(a->scope < SCOPE_SITE))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
flags = (a->pxlen < MAX_PREFIX_LENGTH) ? 0 : OPT_PX_LA;
|
|
|
|
put_ipv6_prefix(lsab_alloc(po, IPV6_PREFIX_SPACE(a->pxlen)),
|
|
|
|
a->ip, a->pxlen, flags, 0);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
ll = po->lsab;
|
|
|
|
ll->pxcount = i;
|
|
|
|
*length = po->lsab_used + sizeof(struct ospf_lsa_header);
|
|
|
|
return lsab_flush(po);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
originate_link_lsa(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_header lsa;
|
|
|
|
struct proto_ospf *po = ifa->oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
void *body;
|
|
|
|
|
|
|
|
/* FIXME check for vlink and skip that? */
|
2009-09-08 19:45:02 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Originating link-LSA for iface %s", ifa->iface->name);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
lsa.age = 0;
|
|
|
|
lsa.type = LSA_T_LINK;
|
|
|
|
lsa.id = ifa->iface->index;
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2010-05-23 18:34:09 +08:00
|
|
|
lsa.sn = get_seqnum(ifa->link_lsa);
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 dom = ifa->iface->index;
|
|
|
|
|
|
|
|
body = originate_link_lsa_body(ifa, &lsa.length);
|
|
|
|
lsasum_calculate(&lsa, body);
|
|
|
|
ifa->link_lsa = lsa_install_new(po, &lsa, dom, body);
|
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &lsa, dom, 1);
|
2009-09-08 19:45:02 +08:00
|
|
|
|
|
|
|
/* Just to be sure to not forget on our link LSA */
|
|
|
|
if (ifa->state == OSPF_IS_DR)
|
|
|
|
schedule_net_lsa(ifa);
|
2009-08-21 15:27:52 +08:00
|
|
|
}
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
void
|
|
|
|
update_link_lsa(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
if (ifa->link_lsa && ((ifa->link_lsa->inst_t + MINLSINTERVAL) > now))
|
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* It's too early to originate new link LSA. We will
|
|
|
|
* try to do it next tick
|
|
|
|
*/
|
|
|
|
originate_link_lsa(ifa);
|
|
|
|
ifa->origlink = 0;
|
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2010-11-13 21:19:23 +08:00
|
|
|
static inline void
|
|
|
|
lsa_put_prefix(struct proto_ospf *po, ip_addr prefix, u32 pxlen, u32 cost)
|
|
|
|
{
|
|
|
|
put_ipv6_prefix(lsab_alloc(po, IPV6_PREFIX_SPACE(pxlen)), prefix, pxlen,
|
|
|
|
(pxlen < MAX_PREFIX_LENGTH) ? 0 : OPT_PX_LA, cost);
|
|
|
|
}
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
static void *
|
|
|
|
originate_prefix_rt_lsa_body(struct ospf_area *oa, u16 *length)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
2011-03-17 22:53:36 +08:00
|
|
|
struct ospf_config *cf = (struct ospf_config *) (po->proto.cf);
|
2009-08-21 15:27:52 +08:00
|
|
|
struct ospf_iface *ifa;
|
|
|
|
struct ospf_lsa_prefix *lp;
|
2010-04-22 03:50:38 +08:00
|
|
|
struct ifa *vlink_addr = NULL;
|
|
|
|
int host_addr = 0;
|
2009-08-21 15:27:52 +08:00
|
|
|
int net_lsa;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
ASSERT(po->lsab_used == 0);
|
|
|
|
lp = lsab_allocz(po, sizeof(struct ospf_lsa_prefix));
|
|
|
|
lp->ref_type = LSA_T_RT;
|
|
|
|
lp->ref_id = 0;
|
2009-12-11 08:20:53 +08:00
|
|
|
lp->ref_rt = po->router_id;
|
2009-08-21 15:27:52 +08:00
|
|
|
lp = NULL; /* buffer might be reallocated later */
|
|
|
|
|
|
|
|
WALK_LIST(ifa, po->iface_list)
|
|
|
|
{
|
|
|
|
if ((ifa->oa != oa) || (ifa->state == OSPF_IS_DOWN))
|
|
|
|
continue;
|
|
|
|
|
2010-12-28 08:43:07 +08:00
|
|
|
ifa->px_pos_beg = i;
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
if ((ifa->type == OSPF_IT_BCAST) ||
|
|
|
|
(ifa->type == OSPF_IT_NBMA))
|
|
|
|
net_lsa = bcast_net_active(ifa);
|
|
|
|
else
|
|
|
|
net_lsa = 0;
|
|
|
|
|
|
|
|
struct ifa *a;
|
|
|
|
WALK_LIST(a, ifa->iface->addrs)
|
|
|
|
{
|
2010-04-22 03:50:38 +08:00
|
|
|
if ((a->flags & IA_SECONDARY) ||
|
2011-03-29 04:46:18 +08:00
|
|
|
(a->flags & IA_PEER) ||
|
2010-04-22 03:50:38 +08:00
|
|
|
(a->scope <= SCOPE_LINK))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!vlink_addr)
|
|
|
|
vlink_addr = a;
|
|
|
|
|
|
|
|
if (((a->pxlen < MAX_PREFIX_LENGTH) && net_lsa) ||
|
2009-08-21 15:27:52 +08:00
|
|
|
configured_stubnet(oa, a))
|
|
|
|
continue;
|
|
|
|
|
2011-03-29 04:46:18 +08:00
|
|
|
if ((a->flags & IA_HOST) ||
|
|
|
|
(ifa->state == OSPF_IS_LOOP) ||
|
|
|
|
(ifa->type == OSPF_IT_PTMP))
|
|
|
|
{
|
2010-11-13 21:19:23 +08:00
|
|
|
lsa_put_prefix(po, a->ip, MAX_PREFIX_LENGTH, 0);
|
2011-03-29 04:46:18 +08:00
|
|
|
host_addr = 1;
|
|
|
|
}
|
2010-11-13 21:19:23 +08:00
|
|
|
else
|
|
|
|
lsa_put_prefix(po, a->prefix, a->pxlen, ifa->cost);
|
2009-08-21 15:27:52 +08:00
|
|
|
i++;
|
|
|
|
}
|
2010-12-28 08:43:07 +08:00
|
|
|
|
|
|
|
ifa->px_pos_end = i;
|
2009-08-21 15:27:52 +08:00
|
|
|
}
|
|
|
|
|
2010-04-22 03:50:38 +08:00
|
|
|
/* If there are some configured vlinks, add some global address,
|
|
|
|
which will be used as a vlink endpoint. */
|
2011-03-17 22:53:36 +08:00
|
|
|
if (!EMPTY_LIST(cf->vlink_list) && !host_addr && vlink_addr)
|
2010-04-22 03:50:38 +08:00
|
|
|
{
|
2010-11-13 21:19:23 +08:00
|
|
|
lsa_put_prefix(po, vlink_addr->ip, MAX_PREFIX_LENGTH, 0);
|
2010-04-22 03:50:38 +08:00
|
|
|
i++;
|
|
|
|
}
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
struct ospf_stubnet_config *sn;
|
2010-11-10 23:43:11 +08:00
|
|
|
if (oa->ac)
|
|
|
|
WALK_LIST(sn, oa->ac->stubnet_list)
|
|
|
|
if (!sn->hidden)
|
2009-08-21 15:27:52 +08:00
|
|
|
{
|
2010-11-13 21:19:23 +08:00
|
|
|
lsa_put_prefix(po, sn->px.addr, sn->px.len, sn->cost);
|
2009-08-21 15:27:52 +08:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
lp = po->lsab;
|
|
|
|
lp->pxcount = i;
|
|
|
|
*length = po->lsab_used + sizeof(struct ospf_lsa_header);
|
|
|
|
return lsab_flush(po);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
originate_prefix_rt_lsa(struct ospf_area *oa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = oa->po;
|
2009-09-08 19:45:02 +08:00
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct ospf_lsa_header lsa;
|
2009-08-21 15:27:52 +08:00
|
|
|
void *body;
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Originating router prefix-LSA for area %R", oa->areaid);
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
lsa.age = 0;
|
|
|
|
lsa.type = LSA_T_PREFIX;
|
2009-09-08 19:45:02 +08:00
|
|
|
lsa.id = 0;
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2010-05-23 18:34:09 +08:00
|
|
|
lsa.sn = get_seqnum(oa->pxr_lsa);
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 dom = oa->areaid;
|
|
|
|
|
|
|
|
body = originate_prefix_rt_lsa_body(oa, &lsa.length);
|
|
|
|
lsasum_calculate(&lsa, body);
|
|
|
|
oa->pxr_lsa = lsa_install_new(po, &lsa, dom, body);
|
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &lsa, dom, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
prefix_space(u32 *buf)
|
|
|
|
{
|
|
|
|
int pxl = *buf >> 24;
|
|
|
|
return IPV6_PREFIX_SPACE(pxl);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
prefix_same(u32 *b1, u32 *b2)
|
|
|
|
{
|
|
|
|
int pxl1 = *b1 >> 24;
|
|
|
|
int pxl2 = *b2 >> 24;
|
|
|
|
int pxs, i;
|
|
|
|
|
|
|
|
if (pxl1 != pxl2)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
pxs = IPV6_PREFIX_WORDS(pxl1);
|
|
|
|
for (i = 1; i < pxs; i++)
|
|
|
|
if (b1[i] != b2[i])
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32 *
|
|
|
|
prefix_advance(u32 *buf)
|
|
|
|
{
|
2009-09-08 19:45:02 +08:00
|
|
|
int pxl = *buf >> 24;
|
|
|
|
return buf + IPV6_PREFIX_WORDS(pxl);
|
2009-08-21 15:27:52 +08:00
|
|
|
}
|
|
|
|
|
2011-09-04 03:31:26 +08:00
|
|
|
/* FIXME eliminate items with LA bit set? see 4.4.3.9 */
|
2009-08-21 15:27:52 +08:00
|
|
|
static void
|
2009-09-08 19:45:02 +08:00
|
|
|
add_prefix(struct proto_ospf *po, u32 *px, int offset, int *pxc)
|
2009-08-21 15:27:52 +08:00
|
|
|
{
|
2009-09-08 19:45:02 +08:00
|
|
|
u32 *pxl = lsab_offset(po, offset);
|
2009-08-21 15:27:52 +08:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < *pxc; i++)
|
|
|
|
{
|
|
|
|
if (prefix_same(px, pxl))
|
|
|
|
{
|
|
|
|
/* Options should be logically OR'ed together */
|
|
|
|
*pxl |= *px;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pxl = prefix_advance(pxl);
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(pxl == lsab_end(po));
|
|
|
|
|
|
|
|
int pxspace = prefix_space(px);
|
|
|
|
pxl = lsab_alloc(po, pxspace);
|
|
|
|
memcpy(pxl, px, pxspace);
|
|
|
|
(*pxc)++;
|
|
|
|
}
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
static void
|
|
|
|
add_link_lsa(struct proto_ospf *po, struct top_hash_entry *en, int offset, int *pxc)
|
|
|
|
{
|
|
|
|
struct ospf_lsa_link *ll = en->lsa_body;
|
|
|
|
u32 *pxb = ll->rest;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
for (j = 0; j < ll->pxcount; j++)
|
|
|
|
{
|
|
|
|
add_prefix(po, pxb, offset, pxc);
|
|
|
|
pxb = prefix_advance(pxb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
static void *
|
|
|
|
originate_prefix_net_lsa_body(struct ospf_iface *ifa, u16 *length)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = ifa->oa->po;
|
|
|
|
struct ospf_lsa_prefix *lp;
|
|
|
|
struct ospf_neighbor *n;
|
|
|
|
struct top_hash_entry *en;
|
2009-09-08 19:45:02 +08:00
|
|
|
int pxc, offset;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
ASSERT(po->lsab_used == 0);
|
|
|
|
lp = lsab_allocz(po, sizeof(struct ospf_lsa_prefix));
|
|
|
|
lp->ref_type = LSA_T_NET;
|
|
|
|
lp->ref_id = ifa->net_lsa->lsa.id;
|
2009-12-11 08:20:53 +08:00
|
|
|
lp->ref_rt = po->router_id;
|
2009-08-21 15:27:52 +08:00
|
|
|
lp = NULL; /* buffer might be reallocated later */
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
pxc = 0;
|
2009-08-21 15:27:52 +08:00
|
|
|
offset = po->lsab_used;
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
/* Find all Link LSAs associated with the link and merge their prefixes */
|
|
|
|
if (ifa->link_lsa)
|
|
|
|
add_link_lsa(po, ifa->link_lsa, offset, &pxc);
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
WALK_LIST(n, ifa->neigh_list)
|
|
|
|
if ((n->state == NEIGHBOR_FULL) &&
|
2009-08-25 22:42:14 +08:00
|
|
|
(en = ospf_hash_find(po->gr, ifa->iface->index, n->iface_id, n->rid, LSA_T_LINK)))
|
2009-09-08 19:45:02 +08:00
|
|
|
add_link_lsa(po, en, offset, &pxc);
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
lp = po->lsab;
|
2009-09-08 19:45:02 +08:00
|
|
|
lp->pxcount = pxc;
|
2009-08-21 15:27:52 +08:00
|
|
|
*length = po->lsab_used + sizeof(struct ospf_lsa_header);
|
|
|
|
return lsab_flush(po);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
originate_prefix_net_lsa(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = ifa->oa->po;
|
2009-09-08 19:45:02 +08:00
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct ospf_lsa_header lsa;
|
2009-08-21 15:27:52 +08:00
|
|
|
void *body;
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Originating network prefix-LSA for iface %s",
|
|
|
|
ifa->iface->name);
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
lsa.age = 0;
|
|
|
|
lsa.type = LSA_T_PREFIX;
|
|
|
|
lsa.id = ifa->iface->index;
|
2009-12-11 08:20:53 +08:00
|
|
|
lsa.rt = po->router_id;
|
2010-05-23 18:34:09 +08:00
|
|
|
lsa.sn = get_seqnum(ifa->pxn_lsa);
|
2009-08-21 15:27:52 +08:00
|
|
|
u32 dom = ifa->oa->areaid;
|
|
|
|
|
|
|
|
body = originate_prefix_net_lsa_body(ifa, &lsa.length);
|
|
|
|
lsasum_calculate(&lsa, body);
|
|
|
|
ifa->pxn_lsa = lsa_install_new(po, &lsa, dom, body);
|
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &lsa, dom, 1);
|
|
|
|
}
|
|
|
|
|
2009-08-28 00:25:46 +08:00
|
|
|
void
|
|
|
|
flush_prefix_net_lsa(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
struct proto_ospf *po = ifa->oa->po;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct top_hash_entry *en = ifa->pxn_lsa;
|
|
|
|
u32 dom = ifa->oa->areaid;
|
|
|
|
|
|
|
|
if (en == NULL)
|
|
|
|
return;
|
|
|
|
|
2009-09-08 19:45:02 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Flushing network prefix-LSA for iface %s",
|
2009-08-28 00:25:46 +08:00
|
|
|
ifa->iface->name);
|
2009-09-08 19:45:02 +08:00
|
|
|
|
2009-08-28 00:25:46 +08:00
|
|
|
en->lsa.sn += 1;
|
|
|
|
en->lsa.age = LSA_MAXAGE;
|
|
|
|
lsasum_calculate(&en->lsa, en->lsa_body);
|
|
|
|
ospf_lsupd_flood(po, NULL, NULL, &en->lsa, dom, 0);
|
|
|
|
flush_lsa(en, po);
|
|
|
|
ifa->pxn_lsa = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#endif
|
2000-05-27 22:17:35 +08:00
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
|
1999-11-10 20:27:01 +08:00
|
|
|
static void
|
|
|
|
ospf_top_ht_alloc(struct top_graph *f)
|
|
|
|
{
|
|
|
|
f->hash_size = 1 << f->hash_order;
|
|
|
|
f->hash_mask = f->hash_size - 1;
|
|
|
|
if (f->hash_order > HASH_HI_MAX - HASH_HI_STEP)
|
|
|
|
f->hash_entries_max = ~0;
|
|
|
|
else
|
|
|
|
f->hash_entries_max = f->hash_size HASH_HI_MARK;
|
|
|
|
if (f->hash_order < HASH_LO_MIN + HASH_LO_STEP)
|
|
|
|
f->hash_entries_min = 0;
|
|
|
|
else
|
|
|
|
f->hash_entries_min = f->hash_size HASH_LO_MARK;
|
|
|
|
DBG("Allocating OSPF hash of order %d: %d hash_entries, %d low, %d high\n",
|
|
|
|
f->hash_order, f->hash_size, f->hash_entries_min, f->hash_entries_max);
|
2004-06-06 16:55:33 +08:00
|
|
|
f->hash_table =
|
|
|
|
mb_alloc(f->pool, f->hash_size * sizeof(struct top_hash_entry *));
|
1999-11-10 20:27:01 +08:00
|
|
|
bzero(f->hash_table, f->hash_size * sizeof(struct top_hash_entry *));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
ospf_top_ht_free(struct top_hash_entry **h)
|
|
|
|
{
|
|
|
|
mb_free(h);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32
|
|
|
|
ospf_top_hash_u32(u32 a)
|
|
|
|
{
|
|
|
|
/* Shamelessly stolen from IP address hashing in ipv4.h */
|
|
|
|
a ^= a >> 16;
|
|
|
|
a ^= a << 10;
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned
|
2009-08-21 15:27:52 +08:00
|
|
|
ospf_top_hash(struct top_graph *f, u32 domain, u32 lsaid, u32 rtrid, u32 type)
|
|
|
|
{
|
2009-09-08 19:45:02 +08:00
|
|
|
/* In OSPFv2, we don't know Router ID when looking for network LSAs.
|
2009-09-17 18:18:03 +08:00
|
|
|
In OSPFv3, we don't know LSA ID when looking for router LSAs.
|
|
|
|
In both cases, there is (usually) just one (or small number)
|
|
|
|
appropriate LSA, so we just clear unknown part of key. */
|
2009-08-21 15:27:52 +08:00
|
|
|
|
2009-09-17 18:18:03 +08:00
|
|
|
return (
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
((type == LSA_T_NET) ? 0 : ospf_top_hash_u32(rtrid)) +
|
2009-09-17 18:18:03 +08:00
|
|
|
ospf_top_hash_u32(lsaid) +
|
2009-08-21 15:27:52 +08:00
|
|
|
#else /* OSPFv3 */
|
|
|
|
ospf_top_hash_u32(rtrid) +
|
2009-09-17 18:18:03 +08:00
|
|
|
((type == LSA_T_RT) ? 0 : ospf_top_hash_u32(lsaid)) +
|
2009-08-21 15:27:52 +08:00
|
|
|
#endif
|
2009-09-17 18:18:03 +08:00
|
|
|
type + domain) & f->hash_mask;
|
2009-08-21 15:27:52 +08:00
|
|
|
|
|
|
|
/*
|
2004-06-06 16:55:33 +08:00
|
|
|
return (ospf_top_hash_u32(lsaid) + ospf_top_hash_u32(rtrid) +
|
2004-07-16 00:37:52 +08:00
|
|
|
type + areaid) & f->hash_mask;
|
2009-08-21 15:27:52 +08:00
|
|
|
*/
|
1999-11-10 20:27:01 +08:00
|
|
|
}
|
|
|
|
|
2000-06-08 05:46:22 +08:00
|
|
|
/**
|
|
|
|
* ospf_top_new - allocated new topology database
|
2009-08-21 15:27:52 +08:00
|
|
|
* @p: current instance of ospf
|
2000-06-08 05:46:22 +08:00
|
|
|
*
|
2009-08-21 15:27:52 +08:00
|
|
|
* this dynamically hashed structure is often used for keeping lsas. mainly
|
2003-08-23 18:42:41 +08:00
|
|
|
* its used in @ospf_area structure.
|
2000-06-08 05:46:22 +08:00
|
|
|
*/
|
1999-11-10 20:27:01 +08:00
|
|
|
struct top_graph *
|
2004-06-07 02:45:08 +08:00
|
|
|
ospf_top_new(pool *pool)
|
1999-11-10 20:27:01 +08:00
|
|
|
{
|
|
|
|
struct top_graph *f;
|
|
|
|
|
2004-06-01 21:12:10 +08:00
|
|
|
f = mb_allocz(pool, sizeof(struct top_graph));
|
|
|
|
f->pool = pool;
|
1999-11-10 20:27:01 +08:00
|
|
|
f->hash_slab = sl_new(f->pool, sizeof(struct top_hash_entry));
|
|
|
|
f->hash_order = HASH_DEF_ORDER;
|
|
|
|
ospf_top_ht_alloc(f);
|
|
|
|
f->hash_entries = 0;
|
|
|
|
f->hash_entries_min = 0;
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ospf_top_free(struct top_graph *f)
|
|
|
|
{
|
|
|
|
rfree(f->hash_slab);
|
|
|
|
ospf_top_ht_free(f->hash_table);
|
|
|
|
mb_free(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ospf_top_rehash(struct top_graph *f, int step)
|
|
|
|
{
|
|
|
|
unsigned int oldn, oldh;
|
|
|
|
struct top_hash_entry **n, **oldt, **newt, *e, *x;
|
|
|
|
|
|
|
|
oldn = f->hash_size;
|
|
|
|
oldt = f->hash_table;
|
2009-08-25 22:42:14 +08:00
|
|
|
DBG("re-hashing topology hash from order %d to %d\n", f->hash_order,
|
2004-06-06 16:55:33 +08:00
|
|
|
f->hash_order + step);
|
1999-11-10 20:27:01 +08:00
|
|
|
f->hash_order += step;
|
|
|
|
ospf_top_ht_alloc(f);
|
|
|
|
newt = f->hash_table;
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
for (oldh = 0; oldh < oldn; oldh++)
|
|
|
|
{
|
|
|
|
e = oldt[oldh];
|
|
|
|
while (e)
|
1999-11-10 20:27:01 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
x = e->next;
|
2009-08-21 15:27:52 +08:00
|
|
|
n = newt + ospf_top_hash(f, e->domain, e->lsa.id, e->lsa.rt, e->lsa.type);
|
2004-06-06 16:55:33 +08:00
|
|
|
e->next = *n;
|
|
|
|
*n = e;
|
|
|
|
e = x;
|
1999-11-10 20:27:01 +08:00
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
}
|
1999-11-10 20:27:01 +08:00
|
|
|
ospf_top_ht_free(oldt);
|
|
|
|
}
|
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
|
|
|
|
u32
|
|
|
|
ospf_lsa_domain(u32 type, struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
return (type == LSA_T_EXT) ? 0 : ifa->oa->areaid;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* OSPFv3 */
|
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
u32
|
|
|
|
ospf_lsa_domain(u32 type, struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
switch (type & LSA_SCOPE_MASK)
|
|
|
|
{
|
|
|
|
case LSA_SCOPE_LINK:
|
|
|
|
return ifa->iface->index;
|
|
|
|
|
|
|
|
case LSA_SCOPE_AREA:
|
|
|
|
return ifa->oa->areaid;
|
|
|
|
|
|
|
|
case LSA_SCOPE_AS:
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-04 17:06:51 +08:00
|
|
|
#endif
|
|
|
|
|
2000-04-04 08:32:17 +08:00
|
|
|
struct top_hash_entry *
|
2009-08-25 22:42:14 +08:00
|
|
|
ospf_hash_find_header(struct top_graph *f, u32 domain, struct ospf_lsa_header *h)
|
2000-04-04 08:32:17 +08:00
|
|
|
{
|
2009-08-25 22:42:14 +08:00
|
|
|
return ospf_hash_find(f, domain, h->id, h->rt, h->type);
|
2000-04-04 08:32:17 +08:00
|
|
|
}
|
2000-04-04 23:55:55 +08:00
|
|
|
|
|
|
|
struct top_hash_entry *
|
2009-08-25 22:42:14 +08:00
|
|
|
ospf_hash_get_header(struct top_graph *f, u32 domain, struct ospf_lsa_header *h)
|
2000-04-04 23:55:55 +08:00
|
|
|
{
|
2009-08-25 22:42:14 +08:00
|
|
|
return ospf_hash_get(f, domain, h->id, h->rt, h->type);
|
2000-04-04 23:55:55 +08:00
|
|
|
}
|
|
|
|
|
1999-11-10 20:27:01 +08:00
|
|
|
struct top_hash_entry *
|
2009-08-25 22:42:14 +08:00
|
|
|
ospf_hash_find(struct top_graph *f, u32 domain, u32 lsa, u32 rtr, u32 type)
|
1999-11-10 20:27:01 +08:00
|
|
|
{
|
2004-07-16 00:37:52 +08:00
|
|
|
struct top_hash_entry *e;
|
2009-08-21 15:27:52 +08:00
|
|
|
e = f->hash_table[ospf_top_hash(f, domain, lsa, rtr, type)];
|
2004-07-16 00:37:52 +08:00
|
|
|
|
2009-09-17 18:18:03 +08:00
|
|
|
while (e && (e->lsa.id != lsa || e->lsa.type != type || e->lsa.rt != rtr || e->domain != domain))
|
|
|
|
e = e->next;
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#ifdef OSPFv2
|
|
|
|
|
2009-09-17 18:18:03 +08:00
|
|
|
/* In OSPFv2, sometimes we don't know Router ID when looking for network LSAs.
|
|
|
|
There should be just one, so we find any match. */
|
|
|
|
struct top_hash_entry *
|
|
|
|
ospf_hash_find_net(struct top_graph *f, u32 domain, u32 lsa)
|
|
|
|
{
|
|
|
|
struct top_hash_entry *e;
|
|
|
|
e = f->hash_table[ospf_top_hash(f, domain, lsa, 0, LSA_T_NET)];
|
|
|
|
|
|
|
|
while (e && (e->lsa.id != lsa || e->lsa.type != LSA_T_NET || e->domain != domain))
|
|
|
|
e = e->next;
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
2004-07-16 00:37:52 +08:00
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2009-09-17 18:18:03 +08:00
|
|
|
#ifdef OSPFv3
|
|
|
|
|
|
|
|
/* In OSPFv3, usually we don't know LSA ID when looking for router
|
|
|
|
LSAs. We return matching LSA with smallest LSA ID. */
|
|
|
|
struct top_hash_entry *
|
|
|
|
ospf_hash_find_rt(struct top_graph *f, u32 domain, u32 rtr)
|
|
|
|
{
|
|
|
|
struct top_hash_entry *rv = NULL;
|
|
|
|
struct top_hash_entry *e;
|
|
|
|
e = f->hash_table[ospf_top_hash(f, domain, 0, rtr, LSA_T_RT)];
|
|
|
|
|
|
|
|
while (e)
|
|
|
|
{
|
|
|
|
if (e->lsa.rt == rtr && e->lsa.type == LSA_T_RT && e->domain == domain)
|
|
|
|
if (!rv || e->lsa.id < rv->lsa.id)
|
|
|
|
rv = e;
|
|
|
|
e = e->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct top_hash_entry *
|
|
|
|
find_matching_rt(struct top_hash_entry *e, u32 domain, u32 rtr)
|
|
|
|
{
|
|
|
|
while (e && (e->lsa.rt != rtr || e->lsa.type != LSA_T_RT || e->domain != domain))
|
|
|
|
e = e->next;
|
1999-11-10 20:27:01 +08:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
2009-09-17 18:18:03 +08:00
|
|
|
struct top_hash_entry *
|
|
|
|
ospf_hash_find_rt_first(struct top_graph *f, u32 domain, u32 rtr)
|
|
|
|
{
|
|
|
|
struct top_hash_entry *e;
|
|
|
|
e = f->hash_table[ospf_top_hash(f, domain, 0, rtr, LSA_T_RT)];
|
|
|
|
return find_matching_rt(e, domain, rtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct top_hash_entry *
|
|
|
|
ospf_hash_find_rt_next(struct top_hash_entry *e)
|
|
|
|
{
|
|
|
|
return find_matching_rt(e->next, e->domain, e->lsa.rt);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-11-10 20:27:01 +08:00
|
|
|
struct top_hash_entry *
|
2009-08-25 22:42:14 +08:00
|
|
|
ospf_hash_get(struct top_graph *f, u32 domain, u32 lsa, u32 rtr, u32 type)
|
1999-11-10 20:27:01 +08:00
|
|
|
{
|
2004-07-16 00:37:52 +08:00
|
|
|
struct top_hash_entry **ee;
|
|
|
|
struct top_hash_entry *e;
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
ee = f->hash_table + ospf_top_hash(f, domain, lsa, rtr, type);
|
2004-07-16 00:37:52 +08:00
|
|
|
e = *ee;
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
while (e && (e->lsa.id != lsa || e->lsa.rt != rtr || e->lsa.type != type || e->domain != domain))
|
|
|
|
e = e->next;
|
1999-11-10 20:27:01 +08:00
|
|
|
|
|
|
|
if (e)
|
|
|
|
return e;
|
2004-06-07 00:14:57 +08:00
|
|
|
|
1999-11-10 20:27:01 +08:00
|
|
|
e = sl_alloc(f->hash_slab);
|
2004-06-07 00:14:57 +08:00
|
|
|
e->color = OUTSPF;
|
|
|
|
e->dist = LSINFINITY;
|
2010-12-08 06:35:39 +08:00
|
|
|
e->nhs = NULL;
|
2004-07-15 05:46:20 +08:00
|
|
|
e->lb = IPA_NONE;
|
2000-03-10 06:38:05 +08:00
|
|
|
e->lsa.id = lsa;
|
|
|
|
e->lsa.rt = rtr;
|
|
|
|
e->lsa.type = type;
|
|
|
|
e->lsa_body = NULL;
|
2009-08-21 15:27:52 +08:00
|
|
|
e->domain = domain;
|
2004-06-07 00:14:57 +08:00
|
|
|
e->next = *ee;
|
2004-06-06 16:55:33 +08:00
|
|
|
*ee = e;
|
1999-11-10 20:27:01 +08:00
|
|
|
if (f->hash_entries++ > f->hash_entries_max)
|
|
|
|
ospf_top_rehash(f, HASH_HI_STEP);
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ospf_hash_delete(struct top_graph *f, struct top_hash_entry *e)
|
|
|
|
{
|
2004-07-16 00:37:52 +08:00
|
|
|
struct top_hash_entry **ee = f->hash_table +
|
2009-08-21 15:27:52 +08:00
|
|
|
ospf_top_hash(f, e->domain, e->lsa.id, e->lsa.rt, e->lsa.type);
|
1999-11-10 20:27:01 +08:00
|
|
|
|
|
|
|
while (*ee)
|
2004-06-06 16:55:33 +08:00
|
|
|
{
|
|
|
|
if (*ee == e)
|
1999-11-10 20:27:01 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
*ee = e->next;
|
|
|
|
sl_free(f->hash_slab, e);
|
|
|
|
if (f->hash_entries-- < f->hash_entries_min)
|
|
|
|
ospf_top_rehash(f, -HASH_LO_STEP);
|
|
|
|
return;
|
1999-11-10 20:27:01 +08:00
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
ee = &((*ee)->next);
|
|
|
|
}
|
1999-11-10 20:27:01 +08:00
|
|
|
bug("ospf_hash_delete() called for invalid node");
|
|
|
|
}
|
|
|
|
|
2010-02-21 21:34:53 +08:00
|
|
|
/*
|
2008-08-25 20:51:06 +08:00
|
|
|
static void
|
|
|
|
ospf_dump_lsa(struct top_hash_entry *he, struct proto *p)
|
|
|
|
{
|
2010-02-21 21:34:53 +08:00
|
|
|
|
2008-08-25 20:51:06 +08:00
|
|
|
struct ospf_lsa_rt *rt = NULL;
|
|
|
|
struct ospf_lsa_rt_link *rr = NULL;
|
|
|
|
struct ospf_lsa_net *ln = NULL;
|
|
|
|
u32 *rts = NULL;
|
|
|
|
u32 i, max;
|
|
|
|
|
2009-07-23 22:51:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "- %1x %-1R %-1R %4u 0x%08x 0x%04x %-1R",
|
|
|
|
he->lsa.type, he->lsa.id, he->lsa.rt, he->lsa.age, he->lsa.sn,
|
2009-08-21 15:27:52 +08:00
|
|
|
he->lsa.checksum, he->domain);
|
2008-08-25 20:51:06 +08:00
|
|
|
|
2009-08-25 22:42:14 +08:00
|
|
|
|
2008-08-25 20:51:06 +08:00
|
|
|
switch (he->lsa.type)
|
|
|
|
{
|
|
|
|
case LSA_T_RT:
|
|
|
|
rt = he->lsa_body;
|
|
|
|
rr = (struct ospf_lsa_rt_link *) (rt + 1);
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
for (i = 0; i < lsa_rt_items(&he->lsa); i++)
|
2009-07-23 22:51:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, " - %1x %-1R %-1R %5u",
|
|
|
|
rr[i].type, rr[i].id, rr[i].data, rr[i].metric);
|
2008-08-25 20:51:06 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LSA_T_NET:
|
|
|
|
ln = he->lsa_body;
|
|
|
|
rts = (u32 *) (ln + 1);
|
|
|
|
|
2009-08-21 15:27:52 +08:00
|
|
|
for (i = 0; i < lsa_net_items(&he->lsa); i++)
|
2009-07-23 22:51:28 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, " - %-1R", rts[i]);
|
2008-08-25 20:51:06 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-10 20:27:01 +08:00
|
|
|
void
|
2000-06-06 10:27:08 +08:00
|
|
|
ospf_top_dump(struct top_graph *f, struct proto *p)
|
1999-11-10 20:27:01 +08:00
|
|
|
{
|
2005-02-13 06:22:18 +08:00
|
|
|
unsigned int i;
|
2000-06-06 10:27:08 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Hash entries: %d", f->hash_entries);
|
1999-11-10 20:27:01 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
for (i = 0; i < f->hash_size; i++)
|
|
|
|
{
|
2008-08-25 20:51:06 +08:00
|
|
|
struct top_hash_entry *e;
|
|
|
|
for (e = f->hash_table[i]; e != NULL; e = e->next)
|
|
|
|
ospf_dump_lsa(e, p);
|
2004-06-06 16:55:33 +08:00
|
|
|
}
|
1999-11-10 20:27:01 +08:00
|
|
|
}
|
2010-02-21 21:34:53 +08:00
|
|
|
*/
|
2000-02-26 03:19:41 +08:00
|
|
|
|
2003-08-23 18:42:41 +08:00
|
|
|
/* This is very inefficient, please don't call it often */
|
2000-05-04 06:12:33 +08:00
|
|
|
|
|
|
|
/* I should also test for every LSA if it's in some link state
|
2003-08-23 18:42:41 +08:00
|
|
|
* retransmission list for every neighbor. I will not test it.
|
|
|
|
* It could happen that I'll receive some strange ls ack's.
|
2000-05-04 06:12:33 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2004-07-16 00:37:52 +08:00
|
|
|
can_flush_lsa(struct proto_ospf *po)
|
2000-05-04 06:12:33 +08:00
|
|
|
{
|
|
|
|
struct ospf_iface *ifa;
|
|
|
|
struct ospf_neighbor *n;
|
|
|
|
|
2004-07-16 00:37:52 +08:00
|
|
|
WALK_LIST(ifa, po->iface_list)
|
2000-05-04 06:12:33 +08:00
|
|
|
{
|
2004-07-16 00:37:52 +08:00
|
|
|
WALK_LIST(n, ifa->neigh_list)
|
2000-05-04 06:12:33 +08:00
|
|
|
{
|
2004-07-16 00:37:52 +08:00
|
|
|
if ((n->state == NEIGHBOR_EXCHANGE) || (n->state == NEIGHBOR_LOADING))
|
|
|
|
return 0;
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
break;
|
2000-05-04 06:12:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-04 06:36:12 +08:00
|
|
|
return 1;
|
2000-05-04 06:12:33 +08:00
|
|
|
}
|