1999-11-17 23:50:41 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
2004-06-04 20:53:10 +08:00
|
|
|
* (c) 1999 - 2004 Ondrej Filip <feela@network.cz>
|
1999-11-17 23:50:41 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ospf.h"
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
char *ospf_is[] = { "down", "loop", "waiting", "point-to-point", "drother",
|
|
|
|
"backup", "dr"
|
|
|
|
};
|
2000-04-19 01:54:06 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
char *ospf_ism[] = { "interface up", "wait timer fired", "backup seen",
|
|
|
|
"neighbor change", "loop indicated", "unloop indicated", "interface down"
|
|
|
|
};
|
2000-04-19 03:22:49 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
char *ospf_it[] = { "broadcast", "nbma", "point-to-point", "virtual link" };
|
2000-06-02 01:52:21 +08:00
|
|
|
|
2004-06-05 17:58:23 +08:00
|
|
|
static void
|
2004-06-06 16:55:33 +08:00
|
|
|
poll_timer_hook(timer * timer)
|
2004-06-04 20:53:10 +08:00
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
log("POLL!");
|
2004-06-04 20:53:10 +08:00
|
|
|
ospf_hello_send(timer, 1, NULL);
|
|
|
|
}
|
|
|
|
|
2004-06-05 17:58:23 +08:00
|
|
|
static void
|
2004-06-06 16:55:33 +08:00
|
|
|
hello_timer_hook(timer * timer)
|
2004-06-04 20:53:10 +08:00
|
|
|
{
|
|
|
|
ospf_hello_send(timer, 0, NULL);
|
|
|
|
}
|
|
|
|
|
2004-06-05 17:58:23 +08:00
|
|
|
static void
|
2004-06-06 16:55:33 +08:00
|
|
|
wait_timer_hook(timer * timer)
|
2004-06-04 20:53:10 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
struct ospf_iface *ifa = (struct ospf_iface *) timer->data;
|
|
|
|
struct proto *p = (struct proto *) (ifa->proto);
|
2004-06-04 20:53:10 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Wait timer fired on interface %s.", ifa->iface->name);
|
|
|
|
ospf_iface_sm(ifa, ISM_WAITF);
|
2004-06-04 20:53:10 +08:00
|
|
|
}
|
|
|
|
|
2004-07-15 05:46:20 +08:00
|
|
|
static sock *
|
|
|
|
ospf_open_ip_socket(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
sock *ipsk;
|
|
|
|
struct proto *p;
|
|
|
|
|
|
|
|
p = (struct proto *) (ifa->proto);
|
|
|
|
|
|
|
|
ipsk = sk_new(p->pool);
|
|
|
|
ipsk->type = SK_IP;
|
|
|
|
ipsk->dport = OSPF_PROTO;
|
|
|
|
ipsk->saddr = ifa->iface->addr->ip;
|
|
|
|
ipsk->tos = IP_PREC_INTERNET_CONTROL;
|
|
|
|
ipsk->ttl = 1;
|
|
|
|
if (ifa->type == OSPF_IT_VLINK)
|
|
|
|
ipsk->ttl = 255;
|
|
|
|
ipsk->rx_hook = ospf_rx_hook;
|
|
|
|
ipsk->tx_hook = ospf_tx_hook;
|
|
|
|
ipsk->err_hook = ospf_err_hook;
|
|
|
|
ipsk->iface = ifa->iface;
|
|
|
|
ipsk->rbsize = ifa->iface->mtu;
|
|
|
|
ipsk->tbsize = ifa->iface->mtu;
|
|
|
|
ipsk->data = (void *) ifa;
|
|
|
|
if (sk_open(ipsk) != 0)
|
|
|
|
{
|
|
|
|
DBG("%s: SK_OPEN: ip open failed.\n", p->name);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
DBG("%s: SK_OPEN: ip opened.\n", p->name);
|
|
|
|
return (ipsk);
|
|
|
|
}
|
|
|
|
|
2004-06-04 20:53:10 +08:00
|
|
|
|
2000-06-08 06:10:46 +08:00
|
|
|
/**
|
2004-06-06 16:55:33 +08:00
|
|
|
* ospf_iface_chstate - handle changes of interface state
|
2000-06-08 06:10:46 +08:00
|
|
|
* @ifa: OSPF interface
|
|
|
|
* @state: new state
|
|
|
|
*
|
2003-08-23 18:42:41 +08:00
|
|
|
* Many actions must be taken according to interface state changes. New network
|
|
|
|
* LSAs must be originated, flushed, new multicast sockets to listen for messages for
|
|
|
|
* %ALLDROUTERS have to be opened, etc.
|
2000-06-08 06:10:46 +08:00
|
|
|
*/
|
1999-11-17 23:50:41 +08:00
|
|
|
void
|
2004-06-06 16:55:33 +08:00
|
|
|
ospf_iface_chstate(struct ospf_iface *ifa, u8 state)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
struct proto_ospf *po = ifa->proto;
|
|
|
|
struct proto *p = &po->proto;
|
2004-07-15 05:46:20 +08:00
|
|
|
u8 oldstate = ifa->state;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2004-07-15 05:46:20 +08:00
|
|
|
if (oldstate != state)
|
2000-04-18 05:10:40 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
ifa->state = state;
|
2004-07-15 05:46:20 +08:00
|
|
|
|
|
|
|
if (ifa->type == OSPF_IT_VLINK)
|
2000-04-18 05:10:40 +08:00
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
OSPF_TRACE(D_EVENTS,
|
|
|
|
"Changing state of virtual link %I from \"%s\" into \"%s\".",
|
|
|
|
ifa->vid, ospf_is[oldstate], ospf_is[state]);
|
|
|
|
if (state == OSPF_IS_PTP)
|
2000-04-18 05:10:40 +08:00
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
ifa->ip_sk = ospf_open_ip_socket(ifa);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OSPF_TRACE(D_EVENTS,
|
|
|
|
"Changing state of iface: %s from \"%s\" into \"%s\".",
|
|
|
|
ifa->iface->name, ospf_is[oldstate], ospf_is[state]);
|
|
|
|
if (ifa->iface->flags & IF_MULTICAST)
|
|
|
|
{
|
|
|
|
if ((state == OSPF_IS_BACKUP) || (state == OSPF_IS_DR))
|
2004-06-06 16:55:33 +08:00
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
if ((ifa->dr_sk == NULL) && (ifa->type != OSPF_IT_NBMA))
|
2000-04-19 03:31:42 +08:00
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
DBG("%s: Adding new multicast socket for (B)DR\n", p->name);
|
|
|
|
ifa->dr_sk = sk_new(p->pool);
|
|
|
|
ifa->dr_sk->type = SK_IP_MC;
|
|
|
|
ifa->dr_sk->sport = 0;
|
|
|
|
ifa->dr_sk->dport = OSPF_PROTO;
|
|
|
|
ifa->dr_sk->saddr = AllDRouters;
|
|
|
|
ifa->dr_sk->daddr = AllDRouters;
|
|
|
|
ifa->dr_sk->tos = IP_PREC_INTERNET_CONTROL;
|
|
|
|
ifa->dr_sk->ttl = 1;
|
|
|
|
ifa->dr_sk->rx_hook = ospf_rx_hook;
|
|
|
|
ifa->dr_sk->tx_hook = ospf_tx_hook;
|
|
|
|
ifa->dr_sk->err_hook = ospf_err_hook;
|
|
|
|
ifa->dr_sk->iface = ifa->iface;
|
|
|
|
ifa->dr_sk->rbsize = ifa->iface->mtu;
|
|
|
|
ifa->dr_sk->tbsize = ifa->iface->mtu;
|
|
|
|
ifa->dr_sk->data = (void *) ifa;
|
|
|
|
if (sk_open(ifa->dr_sk) != 0)
|
|
|
|
{
|
|
|
|
DBG("%s: SK_OPEN: new? mc open failed.\n", p->name);
|
|
|
|
}
|
2000-04-19 03:31:42 +08:00
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
}
|
2004-07-15 05:46:20 +08:00
|
|
|
else
|
2000-06-06 00:32:29 +08:00
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
rfree(ifa->dr_sk);
|
|
|
|
ifa->dr_sk = NULL;
|
|
|
|
}
|
|
|
|
if ((oldstate == OSPF_IS_DR) && (ifa->nlsa != NULL))
|
|
|
|
{
|
|
|
|
ifa->nlsa->lsa.age = LSA_MAXAGE;
|
|
|
|
if (state >= OSPF_IS_WAITING)
|
|
|
|
{
|
|
|
|
ospf_lsupd_flush_nlsa(ifa->nlsa, ifa->oa);
|
|
|
|
}
|
|
|
|
if (can_flush_lsa(ifa->oa))
|
|
|
|
flush_lsa(ifa->nlsa, ifa->oa);
|
|
|
|
ifa->nlsa = NULL;
|
2000-06-06 00:32:29 +08:00
|
|
|
}
|
2000-06-05 13:06:22 +08:00
|
|
|
}
|
2000-04-18 05:10:40 +08:00
|
|
|
}
|
|
|
|
}
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
static void
|
|
|
|
ospf_iface_down(struct ospf_iface *ifa)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
struct ospf_neighbor *n, *nx;
|
|
|
|
struct proto *p = &ifa->proto->proto;
|
2004-06-26 00:39:53 +08:00
|
|
|
struct proto_ospf *po = ifa->proto;
|
|
|
|
struct ospf_iface *iff;
|
2000-05-17 07:59:38 +08:00
|
|
|
|
2004-07-15 05:46:20 +08:00
|
|
|
/* First of all kill all the related vlinks */
|
|
|
|
if (ifa->type != OSPF_IT_VLINK)
|
|
|
|
{
|
|
|
|
WALK_LIST(iff, po->iface_list)
|
|
|
|
{
|
|
|
|
if ((iff->type == OSPF_IT_VLINK) && (iff->iface == ifa->iface))
|
|
|
|
ospf_iface_down(iff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
WALK_LIST_DELSAFE(n, nx, ifa->neigh_list)
|
2000-05-17 07:59:38 +08:00
|
|
|
{
|
2000-06-07 19:55:36 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Removing neighbor %I", n->ip);
|
2000-05-17 07:59:38 +08:00
|
|
|
ospf_neigh_remove(n);
|
|
|
|
}
|
2004-06-01 21:44:53 +08:00
|
|
|
rfree(ifa->hello_sk);
|
|
|
|
rfree(ifa->dr_sk);
|
|
|
|
rfree(ifa->ip_sk);
|
2004-06-01 21:29:08 +08:00
|
|
|
|
2004-07-15 05:46:20 +08:00
|
|
|
if (ifa->type == OSPF_IT_VLINK)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
ifa->ip_sk = NULL;
|
|
|
|
ifa->iface = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rfree(ifa->wait_timer);
|
|
|
|
rfree(ifa->hello_timer);
|
|
|
|
rfree(ifa->poll_timer);
|
|
|
|
rfree(ifa->lock);
|
|
|
|
rem_node(NODE ifa);
|
|
|
|
mb_free(ifa);
|
|
|
|
}
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
2000-06-08 06:10:46 +08:00
|
|
|
/**
|
2004-06-06 16:55:33 +08:00
|
|
|
* ospf_iface_sm - OSPF interface state machine
|
2000-06-08 06:10:46 +08:00
|
|
|
* @ifa: OSPF interface
|
|
|
|
* @event: event comming to state machine
|
|
|
|
*
|
2004-06-26 00:39:53 +08:00
|
|
|
* This fully respects 9.3 of RFC 2328 except we don't use %LOOP state of
|
2000-06-08 06:10:46 +08:00
|
|
|
* interface.
|
|
|
|
*/
|
1999-11-17 23:50:41 +08:00
|
|
|
void
|
2004-06-06 16:55:33 +08:00
|
|
|
ospf_iface_sm(struct ospf_iface *ifa, int event)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
struct ospf_area *oa = ifa->oa;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2004-06-06 17:37:54 +08:00
|
|
|
DBG("SM on iface %s. Event is \"%s\".", ifa->iface->name, ospf_ism[event]);
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
switch (event)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
case ISM_UP:
|
|
|
|
if (ifa->state == OSPF_IS_DOWN)
|
|
|
|
{
|
|
|
|
/* Now, nothing should be adjacent */
|
|
|
|
if ((ifa->type == OSPF_IT_PTP) || (ifa->type == OSPF_IT_VLINK))
|
2004-07-15 05:46:20 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
ospf_iface_chstate(ifa, OSPF_IS_PTP);
|
2004-07-15 05:46:20 +08:00
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
else
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
if (ifa->priority == 0)
|
|
|
|
ospf_iface_chstate(ifa, OSPF_IS_DROTHER);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ospf_iface_chstate(ifa, OSPF_IS_WAITING);
|
|
|
|
tm_start(ifa->wait_timer, ifa->waitint);
|
|
|
|
}
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
2004-07-15 05:46:20 +08:00
|
|
|
|
|
|
|
tm_start(ifa->hello_timer, ifa->helloint);
|
|
|
|
|
|
|
|
if (ifa->poll_timer)
|
|
|
|
tm_start(ifa->poll_timer, ifa->pollint);
|
|
|
|
|
2004-07-14 07:31:37 +08:00
|
|
|
hello_timer_hook(ifa->hello_timer);
|
2004-06-06 16:55:33 +08:00
|
|
|
}
|
|
|
|
schedule_rt_lsa(ifa->oa);
|
|
|
|
break;
|
|
|
|
case ISM_BACKS:
|
|
|
|
case ISM_WAITF:
|
|
|
|
if (ifa->state == OSPF_IS_WAITING)
|
|
|
|
{
|
|
|
|
bdr_election(ifa);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ISM_NEICH:
|
|
|
|
if ((ifa->state == OSPF_IS_DROTHER) || (ifa->state == OSPF_IS_DR) ||
|
|
|
|
(ifa->state == OSPF_IS_BACKUP))
|
|
|
|
{
|
|
|
|
bdr_election(ifa);
|
2000-05-31 22:06:33 +08:00
|
|
|
schedule_rt_lsa(ifa->oa);
|
2004-06-06 16:55:33 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ISM_DOWN:
|
|
|
|
ospf_iface_chstate(ifa, OSPF_IS_DOWN);
|
|
|
|
ospf_iface_down(ifa);
|
|
|
|
schedule_rt_lsa(oa);
|
|
|
|
break;
|
|
|
|
case ISM_LOOP: /* Useless? */
|
|
|
|
ospf_iface_chstate(ifa, OSPF_IS_LOOP);
|
|
|
|
ospf_iface_down(ifa);
|
|
|
|
schedule_rt_lsa(ifa->oa);
|
|
|
|
break;
|
|
|
|
case ISM_UNLOOP:
|
|
|
|
ospf_iface_chstate(ifa, OSPF_IS_DOWN);
|
|
|
|
schedule_rt_lsa(ifa->oa);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
bug("OSPF_I_SM - Unknown event?");
|
|
|
|
break;
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
static sock *
|
1999-11-17 23:50:41 +08:00
|
|
|
ospf_open_mc_socket(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
sock *mcsk;
|
|
|
|
struct proto *p;
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
p = (struct proto *) (ifa->proto);
|
|
|
|
|
|
|
|
mcsk = sk_new(p->pool);
|
|
|
|
mcsk->type = SK_IP_MC;
|
|
|
|
mcsk->sport = 0;
|
|
|
|
mcsk->dport = OSPF_PROTO;
|
|
|
|
mcsk->saddr = AllSPFRouters;
|
|
|
|
mcsk->daddr = AllSPFRouters;
|
|
|
|
mcsk->tos = IP_PREC_INTERNET_CONTROL;
|
|
|
|
mcsk->ttl = 1;
|
|
|
|
mcsk->rx_hook = ospf_rx_hook;
|
|
|
|
mcsk->tx_hook = ospf_tx_hook;
|
|
|
|
mcsk->err_hook = ospf_err_hook;
|
|
|
|
mcsk->iface = ifa->iface;
|
|
|
|
mcsk->rbsize = ifa->iface->mtu;
|
|
|
|
mcsk->tbsize = ifa->iface->mtu;
|
|
|
|
mcsk->data = (void *) ifa;
|
|
|
|
if (sk_open(mcsk) != 0)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
DBG("%s: SK_OPEN: mc open failed.\n", p->name);
|
|
|
|
return (NULL);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
DBG("%s: SK_OPEN: mc opened.\n", p->name);
|
|
|
|
return (mcsk);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
u8
|
2004-06-06 17:37:54 +08:00
|
|
|
ospf_iface_clasify(struct iface * ifa)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
if ((ifa->flags & (IF_MULTIACCESS | IF_MULTICAST)) ==
|
|
|
|
(IF_MULTIACCESS | IF_MULTICAST))
|
|
|
|
return OSPF_IT_BCAST;
|
|
|
|
|
|
|
|
if ((ifa->flags & (IF_MULTIACCESS | IF_MULTICAST)) == IF_MULTIACCESS)
|
1999-11-17 23:50:41 +08:00
|
|
|
return OSPF_IT_NBMA;
|
2004-06-06 16:55:33 +08:00
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
return OSPF_IT_PTP;
|
|
|
|
}
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
struct ospf_iface *
|
|
|
|
ospf_iface_find(struct proto_ospf *p, struct iface *what)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
|
|
|
struct ospf_iface *i;
|
|
|
|
|
2004-07-15 05:46:20 +08:00
|
|
|
WALK_LIST(i, p->iface_list) if ((i->iface == what) && (i->type != OSPF_IT_VLINK))
|
2004-06-06 16:55:33 +08:00
|
|
|
return i;
|
1999-11-17 23:50:41 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
static void
|
|
|
|
ospf_iface_add(struct object_lock *lock)
|
|
|
|
{
|
|
|
|
struct ospf_iface *ifa = lock->data;
|
|
|
|
struct proto_ospf *po = ifa->proto;
|
|
|
|
struct iface *iface = lock->iface;
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
ifa->lock = lock;
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
ifa->ioprob = OSPF_I_OK;
|
|
|
|
|
|
|
|
if (ifa->type != OSPF_IT_NBMA)
|
|
|
|
{
|
|
|
|
if ((ifa->hello_sk = ospf_open_mc_socket(ifa)) == NULL)
|
|
|
|
{
|
|
|
|
log("%s: Huh? could not open mc socket on interface %s?", p->name,
|
|
|
|
iface->name);
|
|
|
|
log("%s: Declaring as stub.", p->name);
|
|
|
|
ifa->stub = 1;
|
|
|
|
ifa->ioprob += OSPF_I_MC;
|
|
|
|
}
|
|
|
|
ifa->dr_sk = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ifa->ip_sk = ospf_open_ip_socket(ifa)) == NULL)
|
|
|
|
{
|
|
|
|
log("%s: Huh? could not open ip socket on interface %s?", p->name,
|
|
|
|
iface->name);
|
|
|
|
log("%s: Declaring as stub.", p->name);
|
|
|
|
ifa->stub = 1;
|
|
|
|
ifa->ioprob += OSPF_I_IP;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifa->state = OSPF_IS_DOWN;
|
|
|
|
ospf_iface_sm(ifa, ISM_UP);
|
|
|
|
}
|
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
void
|
2004-07-15 05:46:20 +08:00
|
|
|
ospf_iface_new(struct proto_ospf *po, struct iface *iface,
|
|
|
|
struct ospf_area_config *ac, struct ospf_iface_patt *ip)
|
2004-06-26 00:39:53 +08:00
|
|
|
{
|
|
|
|
struct proto *p = &po->proto;
|
|
|
|
struct ospf_iface *ifa;
|
|
|
|
struct nbma_node *nbma, *nb;
|
|
|
|
struct object_lock *lock;
|
|
|
|
struct ospf_area *oa;
|
|
|
|
|
|
|
|
ifa = mb_allocz(p->pool, sizeof(struct ospf_iface));
|
|
|
|
ifa->proto = po;
|
|
|
|
ifa->iface = iface;
|
|
|
|
|
|
|
|
ifa->cost = ip->cost;
|
|
|
|
ifa->rxmtint = ip->rxmtint;
|
|
|
|
ifa->inftransdelay = ip->inftransdelay;
|
|
|
|
ifa->priority = ip->priority;
|
|
|
|
ifa->helloint = ip->helloint;
|
|
|
|
ifa->pollint = ip->pollint;
|
|
|
|
ifa->strictnbma = ip->strictnbma;
|
|
|
|
ifa->waitint = ip->waitint;
|
|
|
|
ifa->deadc = ip->deadc;
|
|
|
|
ifa->stub = ip->stub;
|
|
|
|
ifa->autype = ip->autype;
|
2004-06-27 04:15:34 +08:00
|
|
|
ifa->passwords = ip->passwords;
|
2004-06-26 00:39:53 +08:00
|
|
|
|
|
|
|
if (ip->type == OSPF_IT_UNDEF)
|
|
|
|
ifa->type = ospf_iface_clasify(ifa->iface);
|
|
|
|
else
|
|
|
|
ifa->type = ip->type;
|
|
|
|
|
|
|
|
init_list(&ifa->neigh_list);
|
|
|
|
init_list(&ifa->nbma_list);
|
2004-07-15 05:46:20 +08:00
|
|
|
|
2004-06-26 00:39:53 +08:00
|
|
|
WALK_LIST(nb, ip->nbma_list)
|
|
|
|
{
|
|
|
|
nbma = mb_alloc(p->pool, sizeof(struct nbma_node));
|
|
|
|
nbma->ip = nb->ip;
|
|
|
|
nbma->eligible = nb->eligible;
|
|
|
|
add_tail(&ifa->nbma_list, NODE nbma);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add hello timer */
|
|
|
|
ifa->hello_timer = tm_new(p->pool);
|
|
|
|
ifa->hello_timer->data = ifa;
|
|
|
|
ifa->hello_timer->randomize = 0;
|
|
|
|
ifa->hello_timer->hook = hello_timer_hook;
|
|
|
|
ifa->hello_timer->recurrent = ifa->helloint;
|
|
|
|
DBG("%s: Installing hello timer. (%u)\n", p->name, ifa->helloint);
|
|
|
|
|
|
|
|
if (ifa->type == OSPF_IT_NBMA)
|
|
|
|
{
|
|
|
|
ifa->poll_timer = tm_new(p->pool);
|
|
|
|
ifa->poll_timer->data = ifa;
|
|
|
|
ifa->poll_timer->randomize = 0;
|
|
|
|
ifa->poll_timer->hook = poll_timer_hook;
|
|
|
|
ifa->poll_timer->recurrent = ifa->pollint;
|
|
|
|
DBG("%s: Installing poll timer. (%u)\n", p->name, ifa->pollint);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ifa->poll_timer = NULL;
|
|
|
|
|
|
|
|
ifa->wait_timer = tm_new(p->pool);
|
|
|
|
ifa->wait_timer->data = ifa;
|
|
|
|
ifa->wait_timer->randomize = 0;
|
|
|
|
ifa->wait_timer->hook = wait_timer_hook;
|
|
|
|
ifa->wait_timer->recurrent = 0;
|
|
|
|
DBG("%s: Installing wait timer. (%u)\n", p->name, ifa->waitint);
|
|
|
|
add_tail(&((struct proto_ospf *) p)->iface_list, NODE ifa);
|
|
|
|
ifa->state = OSPF_IS_DOWN;
|
|
|
|
|
2004-07-15 05:46:20 +08:00
|
|
|
ifa->oa = NULL;
|
2004-06-26 00:39:53 +08:00
|
|
|
WALK_LIST(oa, po->area_list)
|
|
|
|
{
|
2004-07-15 05:46:20 +08:00
|
|
|
if (oa->areaid == ac->areaid)
|
|
|
|
{
|
|
|
|
ifa->oa = oa;
|
2004-06-26 00:39:53 +08:00
|
|
|
break;
|
2004-07-15 05:46:20 +08:00
|
|
|
}
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
|
2004-07-15 05:46:20 +08:00
|
|
|
if (!ifa->oa)
|
2004-06-26 00:39:53 +08:00
|
|
|
bug("Cannot add any area to accepted Interface");
|
|
|
|
else
|
|
|
|
|
|
|
|
if (ifa->type == OSPF_IT_VLINK)
|
|
|
|
{
|
|
|
|
ifa->oa = po->backbone;
|
|
|
|
ifa->voa = oa;
|
|
|
|
ifa->vid = ip->vid;
|
2004-07-15 05:46:20 +08:00
|
|
|
return; /* Don't lock, don't add sockets */
|
2004-06-26 00:39:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lock = olock_new(p->pool);
|
|
|
|
lock->addr = AllSPFRouters;
|
|
|
|
lock->type = OBJLOCK_IP;
|
|
|
|
lock->port = OSPF_PROTO;
|
|
|
|
lock->iface = iface;
|
|
|
|
lock->data = ifa;
|
|
|
|
lock->hook = ospf_iface_add;
|
|
|
|
|
|
|
|
olock_acquire(lock);
|
|
|
|
}
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
void
|
2004-06-06 16:55:33 +08:00
|
|
|
ospf_iface_notify(struct proto *p, unsigned flags, struct iface *iface)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
struct proto_ospf *po = (struct proto_ospf *) p;
|
|
|
|
struct ospf_config *c = (struct ospf_config *) (p->cf);
|
2000-06-06 04:57:53 +08:00
|
|
|
struct ospf_area_config *ac;
|
2004-06-06 16:55:33 +08:00
|
|
|
struct ospf_iface_patt *ip = NULL;
|
2000-06-06 08:46:00 +08:00
|
|
|
struct ospf_iface *ifa;
|
2004-06-06 16:55:33 +08:00
|
|
|
struct ospf_area *oa;
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2000-02-24 07:13:10 +08:00
|
|
|
DBG("%s: If notify called\n", p->name);
|
1999-11-17 23:50:41 +08:00
|
|
|
if (iface->flags & IF_IGNORE)
|
|
|
|
return;
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
if (flags & IF_CHANGE_UP)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-06-06 04:57:53 +08:00
|
|
|
WALK_LIST(ac, c->area_list)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
if (ip = (struct ospf_iface_patt *)
|
|
|
|
iface_patt_match(&ac->patt_list, iface))
|
|
|
|
break;
|
2000-06-06 04:57:53 +08:00
|
|
|
}
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
if (ip)
|
2000-06-06 04:57:53 +08:00
|
|
|
{
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Using interface %s.", iface->name);
|
2004-06-26 00:39:53 +08:00
|
|
|
ospf_iface_new(po, iface, ac, ip);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
if (flags & IF_CHANGE_DOWN)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
if ((ifa = ospf_iface_find((struct proto_ospf *) p, iface)) != NULL)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Killing interface %s.", iface->name);
|
2004-06-06 16:55:33 +08:00
|
|
|
ospf_iface_sm(ifa, ISM_DOWN);
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
if (flags & IF_CHANGE_MTU)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
if ((ifa = ospf_iface_find((struct proto_ospf *) p, iface)) != NULL)
|
1999-11-17 23:50:41 +08:00
|
|
|
{
|
2004-06-05 02:51:29 +08:00
|
|
|
struct ospf_packet *op;
|
|
|
|
struct ospf_neighbor *n;
|
2000-06-06 10:34:57 +08:00
|
|
|
OSPF_TRACE(D_EVENTS, "Changing MTU on interface %s.", iface->name);
|
2004-06-05 16:59:17 +08:00
|
|
|
if (ifa->hello_sk)
|
2004-06-05 23:02:52 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
ifa->hello_sk->rbsize = ifa->iface->mtu;
|
|
|
|
ifa->hello_sk->tbsize = ifa->iface->mtu;
|
2004-06-05 16:59:17 +08:00
|
|
|
sk_reallocate(ifa->hello_sk);
|
2004-06-05 23:02:52 +08:00
|
|
|
}
|
2004-06-05 16:59:17 +08:00
|
|
|
if (ifa->dr_sk)
|
2004-06-05 23:02:52 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
ifa->dr_sk->rbsize = ifa->iface->mtu;
|
|
|
|
ifa->dr_sk->tbsize = ifa->iface->mtu;
|
2004-06-05 16:59:17 +08:00
|
|
|
sk_reallocate(ifa->dr_sk);
|
2004-06-05 23:02:52 +08:00
|
|
|
}
|
2004-06-05 16:59:17 +08:00
|
|
|
if (ifa->ip_sk)
|
2004-06-05 23:02:52 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
ifa->ip_sk->rbsize = ifa->iface->mtu;
|
|
|
|
ifa->ip_sk->tbsize = ifa->iface->mtu;
|
2004-06-05 16:59:17 +08:00
|
|
|
sk_reallocate(ifa->ip_sk);
|
2004-06-05 23:02:52 +08:00
|
|
|
}
|
2004-06-05 02:51:29 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
WALK_LIST(n, ifa->neigh_list)
|
2004-06-05 02:51:29 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
op = (struct ospf_packet *) n->ldbdes;
|
|
|
|
n->ldbdes = mb_allocz(n->pool, iface->mtu);
|
2004-06-05 02:51:29 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
if (ntohs(op->length) <= iface->mtu) /* If the packet in old buffer is bigger, let it filled by zeros */
|
|
|
|
memcpy(n->ldbdes, op, iface->mtu); /* If the packet is old is same or smaller, copy it */
|
2004-06-05 02:51:29 +08:00
|
|
|
|
2004-06-06 16:55:33 +08:00
|
|
|
rfree(op);
|
2004-06-05 02:51:29 +08:00
|
|
|
}
|
1999-11-17 23:50:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-02 01:52:21 +08:00
|
|
|
void
|
|
|
|
ospf_iface_info(struct ospf_iface *ifa)
|
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
char *strict = "(strict)";
|
|
|
|
|
|
|
|
if ((ifa->type != OSPF_IT_NBMA) || (ifa->strictnbma == 0))
|
|
|
|
strict = "";
|
2004-07-15 05:46:20 +08:00
|
|
|
if (ifa->type == OSPF_IT_VLINK)
|
|
|
|
{
|
|
|
|
cli_msg(-1015, "Virtual link to %I:", ifa->vid);
|
|
|
|
cli_msg(-1015, "\tTransit area: %I (%u)", ifa->voa->areaid,
|
|
|
|
ifa->voa->areaid);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cli_msg(-1015, "Interface \"%s\":",
|
|
|
|
(ifa->iface ? ifa->iface->name : "(none)"));
|
|
|
|
cli_msg(-1015, "\tType: %s %s", ospf_it[ifa->type], strict);
|
|
|
|
cli_msg(-1015, "\tArea: %I (%u)", ifa->oa->areaid, ifa->oa->areaid);
|
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
cli_msg(-1015, "\tState: %s %s", ospf_is[ifa->state],
|
|
|
|
ifa->stub ? "(stub)" : "");
|
|
|
|
cli_msg(-1015, "\tPriority: %u", ifa->priority);
|
|
|
|
cli_msg(-1015, "\tCost: %u", ifa->cost);
|
|
|
|
cli_msg(-1015, "\tHello timer: %u", ifa->helloint);
|
|
|
|
if (ifa->type == OSPF_IT_NBMA)
|
2000-06-06 08:46:00 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
cli_msg(-1015, "\tPoll timer: %u", ifa->pollint);
|
2000-06-06 08:46:00 +08:00
|
|
|
}
|
2004-06-06 16:55:33 +08:00
|
|
|
cli_msg(-1015, "\tWait timer: %u", ifa->waitint);
|
|
|
|
cli_msg(-1015, "\tDead timer: %u", ifa->deadc * ifa->helloint);
|
|
|
|
cli_msg(-1015, "\tRetransmit timer: %u", ifa->rxmtint);
|
|
|
|
if ((ifa->type == OSPF_IT_BCAST) || (ifa->type == OSPF_IT_NBMA))
|
2000-06-06 08:46:00 +08:00
|
|
|
{
|
2004-06-06 16:55:33 +08:00
|
|
|
cli_msg(-1015, "\tDesigned router (ID): %I", ifa->drid);
|
|
|
|
cli_msg(-1015, "\tDesigned router (IP): %I", ifa->drip);
|
|
|
|
cli_msg(-1015, "\tBackup designed router (ID): %I", ifa->bdrid);
|
|
|
|
cli_msg(-1015, "\tBackup designed router (IP): %I", ifa->bdrip);
|
2000-06-06 08:46:00 +08:00
|
|
|
}
|
2001-08-11 22:01:54 +08:00
|
|
|
}
|
2004-06-04 20:53:10 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
ospf_iface_shutdown(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
init_list(&ifa->neigh_list);
|
|
|
|
hello_timer_hook(ifa->hello_timer);
|
|
|
|
}
|