bird/proto/ospf/hello.c

282 lines
6.5 KiB
C
Raw Normal View History

/*
* BIRD -- OSPF
*
* (c) 1999 - 2004 Ondrej Filip <feela@network.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#include "ospf.h"
void
2004-06-05 01:12:27 +08:00
ospf_hello_receive(struct ospf_hello_packet *ps,
struct ospf_iface *ifa, int size, ip_addr faddr)
{
u32 nrid, *pnrid;
struct ospf_neighbor *n;
2004-06-05 01:12:27 +08:00
u8 i, twoway, oldpriority;
ip_addr olddr, oldbdr;
2000-06-08 10:28:04 +08:00
ip_addr mask;
2004-06-05 01:12:27 +08:00
char *beg = "Bad OSPF hello packet from ", *rec = " received: ";
int eligible = 0;
struct proto *p = (struct proto *) ifa->proto;
2004-06-05 01:12:27 +08:00
nrid = ntohl(((struct ospf_packet *) ps)->routerid);
2004-06-05 01:12:27 +08:00
OSPF_TRACE(D_PACKETS, "Received hello from %I via %s", faddr,
ifa->iface->name);
mask = ps->netmask;
2000-06-08 10:28:04 +08:00
ipa_ntoh(mask);
2000-05-11 07:42:13 +08:00
2004-06-05 01:12:27 +08:00
if ((unsigned) ipa_mklen(mask) != ifa->iface->addr->pxlen)
{
2004-06-05 01:12:27 +08:00
log(L_ERR, "%s%I%sbad netmask %I.", beg, nrid, rec, mask);
return;
}
2004-06-05 01:12:27 +08:00
if (ntohs(ps->helloint) != ifa->helloint)
{
2004-06-05 01:12:27 +08:00
log(L_WARN "%s%I%shello interval mismatch.", beg, faddr, rec);
return;
}
2004-06-05 01:12:27 +08:00
if (ntohl(ps->deadint) != ifa->helloint * ifa->deadc)
{
2004-06-05 01:12:27 +08:00
log(L_ERR "%s%I%sdead interval mismatch.", beg, faddr, rec);
return;
}
2004-06-05 01:12:27 +08:00
if (ps->options != ifa->options)
{
2004-06-05 01:12:27 +08:00
log(L_ERR "%s%I%soptions mismatch.", beg, faddr, rec);
return;
}
2004-06-05 01:12:27 +08:00
if ((n = find_neigh(ifa, nrid)) == NULL)
{
2004-06-05 01:12:27 +08:00
if ((ifa->type == OSPF_IT_NBMA))
{
struct nbma_node *nn;
2004-06-05 01:12:27 +08:00
int found = 0;
2004-06-05 01:12:27 +08:00
WALK_LIST(nn, ifa->nbma_list)
{
2004-06-05 01:12:27 +08:00
if (ipa_compare(faddr, nn->ip) == 0)
{
2004-06-05 01:12:27 +08:00
found = 1;
break;
}
}
2004-06-05 01:12:27 +08:00
if ((found == 0) && (ifa->strictnbma))
{
2004-06-05 01:12:27 +08:00
log(L_WARN "Ignoring new neighbor: %I on %s.", faddr,
ifa->iface->name);
return;
}
2004-06-05 01:12:27 +08:00
if (found)
{
2004-06-05 01:12:27 +08:00
eligible = nn->eligible;
if (((ps->priority == 0) && eligible)
|| ((ps->priority > 0) && (eligible == 0)))
{
log(L_ERR "Eligibility mismatch for neighbor: %I on %s",
faddr, ifa->iface->name);
return;
2004-06-05 01:12:27 +08:00
}
}
}
2000-06-06 10:34:57 +08:00
OSPF_TRACE(D_EVENTS, "New neighbor found: %I on %s.", faddr,
2004-06-05 01:12:27 +08:00
ifa->iface->name);
n = ospf_neighbor_new(ifa);
2004-06-05 01:12:27 +08:00
n->rid = nrid;
n->ip = faddr;
n->dr = ps->dr;
2000-06-08 10:28:04 +08:00
ipa_ntoh(n->dr);
2004-06-05 01:12:27 +08:00
n->bdr = ps->bdr;
2000-06-08 10:28:04 +08:00
ipa_ntoh(n->bdr);
2004-06-05 01:12:27 +08:00
n->priority = ps->priority;
n->options = ps->options;
}
ospf_neigh_sm(n, INM_HELLOREC);
2004-06-05 01:12:27 +08:00
pnrid = (u32 *) ((struct ospf_hello_packet *) (ps + 1));
2004-06-05 01:12:27 +08:00
twoway = 0;
for (i = 0; i < size - (sizeof(struct ospf_hello_packet)); i++)
{
2004-06-05 01:12:27 +08:00
if (ntohl(*(pnrid + i)) == p->cf->global->router_id)
{
2000-05-11 07:42:13 +08:00
DBG("%s: Twoway received from %I\n", p->name, faddr);
ospf_neigh_sm(n, INM_2WAYREC);
2004-06-05 01:12:27 +08:00
twoway = 1;
break;
}
}
2004-06-05 01:12:27 +08:00
if (!twoway)
ospf_neigh_sm(n, INM_1WAYREC);
olddr = n->dr;
2000-06-08 10:04:45 +08:00
n->dr = ipa_ntoh(ps->dr);
oldbdr = n->bdr;
2000-06-08 10:04:45 +08:00
n->bdr = ipa_ntoh(ps->bdr);
oldpriority = n->priority;
n->priority = ps->priority;
/* Check priority change */
2004-06-05 01:12:27 +08:00
if (n->state >= NEIGHBOR_2WAY)
{
2004-06-05 01:12:27 +08:00
if (n->priority != oldpriority)
ospf_int_sm(ifa, ISM_NEICH);
/* Router is declaring itself ad DR and there is no BDR */
2004-06-05 01:12:27 +08:00
if ((ipa_compare(n->ip, n->dr) == 0) && (ipa_to_u32(n->bdr) == 0)
&& (n->state != NEIGHBOR_FULL))
2000-05-10 02:35:57 +08:00
ospf_int_sm(ifa, ISM_BACKS);
/* Neighbor is declaring itself as BDR */
2004-06-05 01:12:27 +08:00
if ((ipa_compare(n->ip, n->bdr) == 0) && (n->state != NEIGHBOR_FULL))
2000-05-10 02:35:57 +08:00
ospf_int_sm(ifa, ISM_BACKS);
/* Neighbor is newly declaring itself as DR or BDR */
2004-06-05 01:12:27 +08:00
if (((ipa_compare(n->ip, n->dr) == 0) && (ipa_compare(n->dr, olddr) != 0))
|| ((ipa_compare(n->ip, n->bdr) == 0)
&& (ipa_compare(n->bdr, oldbdr) != 0)))
ospf_int_sm(ifa, ISM_NEICH);
/* Neighbor is no more declaring itself as DR or BDR */
2004-06-05 01:12:27 +08:00
if (((ipa_compare(n->ip, olddr) == 0) && (ipa_compare(n->dr, olddr) != 0))
|| ((ipa_compare(n->ip, oldbdr) == 0)
&& (ipa_compare(n->bdr, oldbdr) != 0)))
ospf_int_sm(ifa, ISM_NEICH);
}
2004-06-05 01:12:27 +08:00
if (ifa->type != OSPF_IT_NBMA)
{
2004-06-05 01:12:27 +08:00
if ((ifa->priority == 0) && (n->priority > 0))
ospf_hello_send(NULL, 0, n);
}
ospf_neigh_sm(n, INM_HELLOREC);
}
void
2004-06-05 01:12:27 +08:00
ospf_hello_send(timer * timer, int poll, struct ospf_neighbor *dirn)
{
struct ospf_iface *ifa;
struct ospf_hello_packet *pkt;
struct ospf_packet *op;
struct proto *p;
struct ospf_neighbor *neigh;
u16 length;
u32 *pp;
u8 i;
2004-06-05 01:12:27 +08:00
if (timer == NULL)
ifa = dirn->ifa;
else
ifa = (struct ospf_iface *) timer->data;
2004-06-05 01:12:27 +08:00
if (ifa->stub)
return; /* Don't send any packet on stub iface */
2004-06-05 01:12:27 +08:00
p = (struct proto *) (ifa->proto);
DBG("%s: Hello/Poll timer fired on interface %s.\n",
2004-06-05 01:12:27 +08:00
p->name, ifa->iface->name);
/* Now we should send a hello packet */
/* First a common packet header */
2004-06-05 01:12:27 +08:00
if (ifa->type != OSPF_IT_NBMA)
{
2004-06-05 01:12:27 +08:00
pkt = (struct ospf_hello_packet *) (ifa->hello_sk->tbuf);
2000-06-06 07:44:26 +08:00
}
2004-06-05 01:12:27 +08:00
else
2000-06-06 07:44:26 +08:00
{
2004-06-05 01:12:27 +08:00
pkt = (struct ospf_hello_packet *) (ifa->ip_sk->tbuf);
2000-06-06 07:44:26 +08:00
}
2000-06-06 07:44:26 +08:00
/* Now fill ospf_hello header */
2004-06-05 01:12:27 +08:00
op = (struct ospf_packet *) pkt;
2000-06-06 07:44:26 +08:00
fill_ospf_pkt_hdr(ifa, pkt, HELLO_P);
2004-06-05 01:12:27 +08:00
pkt->netmask = ipa_mkmask(ifa->iface->addr->pxlen);
2000-06-06 07:44:26 +08:00
ipa_hton(pkt->netmask);
2004-06-05 01:12:27 +08:00
pkt->helloint = ntohs(ifa->helloint);
pkt->options = ifa->options;
pkt->priority = ifa->priority;
pkt->deadint = htonl(ifa->deadc * ifa->helloint);
pkt->dr = ifa->drip;
2000-06-08 10:28:04 +08:00
ipa_hton(pkt->dr);
2004-06-05 01:12:27 +08:00
pkt->bdr = ifa->bdrip;
2000-06-08 10:28:04 +08:00
ipa_hton(pkt->bdr);
2000-06-06 07:44:26 +08:00
/* Fill all neighbors */
2004-06-05 01:12:27 +08:00
i = 0;
pp = (u32 *) (((u8 *) pkt) + sizeof(struct ospf_hello_packet));
WALK_LIST(neigh, ifa->neigh_list)
2000-06-06 07:44:26 +08:00
{
2004-06-05 01:12:27 +08:00
*(pp + i) = htonl(neigh->rid);
2000-06-06 07:44:26 +08:00
i++;
}
2004-06-05 01:12:27 +08:00
length = sizeof(struct ospf_hello_packet) + i * sizeof(u32);
op->length = htons(length);
2000-06-06 07:44:26 +08:00
ospf_pkt_finalize(ifa, op);
2004-06-05 01:12:27 +08:00
/* And finally send it :-) */
if (ifa->type != OSPF_IT_NBMA)
2000-06-06 07:44:26 +08:00
{
2004-06-05 01:12:27 +08:00
sk_send(ifa->hello_sk, length);
}
2004-06-05 01:12:27 +08:00
else /* NBMA */
2000-06-06 07:44:26 +08:00
{
struct ospf_neighbor *n1;
struct nbma_node *nb;
int send;
2000-05-11 07:42:13 +08:00
2004-06-05 01:12:27 +08:00
if (timer == NULL) /* Response to received hello */
{
sk_send_to(ifa->ip_sk, length, dirn->ip, OSPF_PROTO);
}
else
2000-06-06 07:44:26 +08:00
{
2004-06-05 01:12:27 +08:00
int toall = 0;
int meeli = 0;
if (ifa->state > OSPF_IS_DROTHER)
toall = 1;
if (ifa->priority > 0)
meeli = 1;
WALK_LIST(nb, ifa->nbma_list)
2000-06-06 07:44:26 +08:00
{
2004-06-05 01:12:27 +08:00
send = 1;
WALK_LIST(n1, ifa->neigh_list)
{
if (ipa_compare(nb->ip, n1->ip) == 0)
{
2004-06-05 01:12:27 +08:00
send = 0;
break;
2004-06-05 01:12:27 +08:00
}
}
if ((poll == 1) && (send))
2000-06-06 07:44:26 +08:00
{
2004-06-05 01:12:27 +08:00
if (toall || (meeli && nb->eligible))
sk_send_to(ifa->ip_sk, length, nb->ip, OSPF_PROTO);
2000-06-06 07:44:26 +08:00
}
}
2004-06-05 01:12:27 +08:00
if (poll == 0)
{
2004-06-05 01:12:27 +08:00
WALK_LIST(n1, ifa->neigh_list)
{
if (toall || (n1->rid == ifa->drid) || (n1->rid == ifa->bdrid) ||
(meeli && (n1->priority > 0)))
sk_send_to(ifa->ip_sk, length, n1->ip, OSPF_PROTO);
}
}
2000-06-06 07:44:26 +08:00
}
}
2004-06-05 01:12:27 +08:00
OSPF_TRACE(D_PACKETS, "Hello sent via %s", ifa->iface->name);
}