1999-03-10 06:27:43 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF
|
|
|
|
*
|
|
|
|
* (c) 1999 Ondrej Filip <feela@network.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define LOCAL_DEBUG
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/route.h"
|
|
|
|
#include "conf/conf.h"
|
1999-04-13 07:54:21 +08:00
|
|
|
#include "lib/ip.h"
|
|
|
|
#include "lib/socket.h"
|
|
|
|
#include "lib/lists.h"
|
1999-04-14 05:46:20 +08:00
|
|
|
#include "lib/timer.h"
|
1999-03-10 06:27:43 +08:00
|
|
|
|
|
|
|
#include "ospf.h"
|
|
|
|
|
1999-04-13 07:54:21 +08:00
|
|
|
int
|
|
|
|
ospf_rx_hook(sock *sk, int size)
|
|
|
|
{
|
1999-04-14 03:27:44 +08:00
|
|
|
DBG(" OSPF: RX_Hook called on interface ");
|
|
|
|
DBG(sk->iface->name);
|
|
|
|
DBG(".\n");
|
1999-04-13 07:54:21 +08:00
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ospf_tx_hook(sock *sk)
|
|
|
|
{
|
1999-04-14 03:27:44 +08:00
|
|
|
DBG(" OSPF: TX_Hook called on interface ");
|
|
|
|
DBG(sk->iface->name);
|
|
|
|
DBG(".\n");
|
1999-04-13 07:54:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ospf_err_hook(sock *sk, int err)
|
|
|
|
{
|
1999-04-14 03:27:44 +08:00
|
|
|
DBG(" OSPF: Err_Hook called on interface ");
|
|
|
|
DBG(sk->iface->name);
|
|
|
|
DBG(".\n");
|
1999-04-13 07:54:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This will change ! */
|
|
|
|
sock *
|
|
|
|
ospf_open_socket(struct proto *p, struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
sock *mcsk;
|
|
|
|
|
|
|
|
/* No NBMA networks now */
|
|
|
|
|
1999-04-14 03:27:44 +08:00
|
|
|
if(((struct iface *)ifa)->flags & IF_MULTICAST)
|
1999-04-13 07:54:21 +08:00
|
|
|
{
|
|
|
|
mcsk=sk_new(p->pool);
|
|
|
|
mcsk->type=SK_IP_MC;
|
|
|
|
mcsk->dport=OSPF_PROTO;
|
|
|
|
mcsk->saddr=AllSPFRouters;
|
|
|
|
mcsk->daddr=AllSPFRouters;
|
|
|
|
mcsk->ttl=1;
|
|
|
|
mcsk->rx_hook=ospf_rx_hook;
|
|
|
|
mcsk->tx_hook=ospf_tx_hook;
|
|
|
|
mcsk->err_hook=ospf_err_hook;
|
1999-04-14 03:27:44 +08:00
|
|
|
mcsk->iface=(struct iface *)ifa;
|
|
|
|
mcsk->rbsize=((struct iface *)ifa)->mtu;
|
1999-04-14 05:46:20 +08:00
|
|
|
mcsk->tbsize=((struct iface *)ifa)->mtu;
|
1999-04-13 07:54:21 +08:00
|
|
|
if(sk_open(mcsk)!=0)
|
|
|
|
{
|
|
|
|
DBG(" OSPF: SK_OPEN: failed\n");
|
|
|
|
return(NULL);
|
|
|
|
}
|
1999-04-13 08:46:34 +08:00
|
|
|
DBG(" OSPF: SK_OPEN: open\n");
|
1999-04-13 07:54:21 +08:00
|
|
|
return(mcsk);
|
|
|
|
}
|
|
|
|
else return(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This will later decide, wheter use iface for OSPF or not
|
|
|
|
* depending on config
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
is_good_iface(struct proto *p, struct iface *iface)
|
|
|
|
{
|
1999-04-13 08:46:34 +08:00
|
|
|
if(iface->flags & IF_UP)
|
|
|
|
{
|
|
|
|
if(!(iface->flags & IF_IGNORE)) return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
1999-04-13 07:54:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Of course, it's NOT true now */
|
1999-04-14 03:27:44 +08:00
|
|
|
int
|
1999-04-13 07:54:21 +08:00
|
|
|
ospf_iface_clasify(struct iface *ifa)
|
|
|
|
{
|
1999-04-14 05:46:20 +08:00
|
|
|
/* FIXME: Latter I'll use config - this is incorrect */
|
1999-04-13 07:54:21 +08:00
|
|
|
if((ifa->flags & (IF_MULTIACCESS|IF_MULTICAST))==
|
1999-04-14 05:46:20 +08:00
|
|
|
(IF_MULTIACCESS|IF_MULTICAST))
|
|
|
|
{
|
|
|
|
DBG(" OSPF: Clasifying BROADCAST.\n");
|
|
|
|
return OSPF_IT_BROADCAST;
|
|
|
|
}
|
1999-04-13 07:54:21 +08:00
|
|
|
if((ifa->flags & (IF_MULTIACCESS|IF_MULTICAST))==
|
1999-04-14 05:46:20 +08:00
|
|
|
IF_MULTIACCESS)
|
|
|
|
{
|
|
|
|
DBG(" OSPF: Clasifying NBMA.\n");
|
|
|
|
return OSPF_IT_NBMA;
|
|
|
|
}
|
|
|
|
DBG(" OSPF: Clasifying P-T-P.\n");
|
|
|
|
return OSPF_IT_PTP;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
wait_timer_hook(timer *timer)
|
|
|
|
{
|
|
|
|
debug(" OSPF: Wait timer expired for interface %s.\n",
|
|
|
|
((struct iface *)timer->data)->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
add_wait_timer(struct ospf_iface *ifa,pool *pool, int wait)
|
|
|
|
{
|
|
|
|
DBG(" OSPF: add_wait_timer called.\n");
|
|
|
|
if((ifa->type!=OSPF_IT_PTP) && (ifa->priority>0))
|
|
|
|
{
|
|
|
|
ifa->wait_timer=tm_new(pool);
|
|
|
|
ifa->wait_timer->hook=wait_timer_hook;
|
|
|
|
ifa->wait_timer->data=ifa;
|
|
|
|
ifa->wait_timer->randomize=0;
|
|
|
|
ifa->wait_timer->recurrent=0;
|
|
|
|
ifa->wait_timer->expires=0;
|
|
|
|
tm_start(ifa->wait_timer,(wait!=0 ? wait : WAIT_D));
|
|
|
|
DBG(" OSPF: Installing wait timer.\n");
|
|
|
|
}
|
1999-04-13 07:54:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ospf_iface_default(struct ospf_iface *ifa)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
ifa->area=0;
|
|
|
|
ifa->cost=COST_D;
|
|
|
|
ifa->rxmtint=RXMTINT_D;
|
|
|
|
ifa->iftransdelay=IFTRANSDELAY_D;
|
|
|
|
ifa->priority=PRIORITY_D;
|
|
|
|
ifa->helloint=HELLOINT_D;
|
|
|
|
ifa->deadint=DEADINT_D;
|
|
|
|
ifa->autype=0;
|
|
|
|
for(i=0;i<8;i++) ifa->aukey[i]=0;
|
|
|
|
ifa->options=0;
|
1999-04-14 02:21:53 +08:00
|
|
|
ifa->drip=ipa_from_u32(0x00000000);
|
|
|
|
ifa->drid=0;
|
|
|
|
ifa->bdrip=ipa_from_u32(0x00000000);
|
|
|
|
ifa->bdrid=0;
|
1999-04-14 03:27:44 +08:00
|
|
|
ifa->type=ospf_iface_clasify((struct iface *)ifa);
|
1999-04-13 07:54:21 +08:00
|
|
|
}
|
|
|
|
|
1999-04-14 05:46:20 +08:00
|
|
|
struct ospf_iface*
|
|
|
|
find_iface(struct proto_ospf *p, struct iface *what)
|
|
|
|
{
|
|
|
|
struct ospf_iface *i;
|
|
|
|
|
|
|
|
WALK_LIST (i, p->iface_list)
|
|
|
|
if (((struct iface *)i)->index == what->index)
|
|
|
|
return i;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1999-04-13 07:54:21 +08:00
|
|
|
void
|
|
|
|
ospf_if_notify(struct proto *p, unsigned flags, struct iface *new, struct iface *old)
|
|
|
|
{
|
1999-04-14 03:27:44 +08:00
|
|
|
struct ospf_iface *ifa;
|
1999-04-14 05:46:20 +08:00
|
|
|
sock *mcsk, *newsk;
|
1999-04-13 07:54:21 +08:00
|
|
|
|
|
|
|
struct ospf_config *c;
|
|
|
|
c=(struct ospf_config *)(p->cf);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DBG(" OSPF: If notify called\n");
|
|
|
|
|
|
|
|
if(((flags & IF_CHANGE_UP)==IF_CHANGE_UP) && is_good_iface(p, new))
|
|
|
|
{
|
1999-04-14 03:27:44 +08:00
|
|
|
debug(" OSPF: using interface %s.\n", new->name);
|
1999-04-14 05:46:20 +08:00
|
|
|
/* FIXME: Latter I'll use config - this is incorrect */
|
1999-04-14 03:27:44 +08:00
|
|
|
ifa=mb_alloc(p->pool, sizeof(struct ospf_iface));
|
|
|
|
bcopy(new, ifa, sizeof(struct ospf_iface));
|
1999-04-14 05:46:20 +08:00
|
|
|
add_tail(&((struct proto_ospf *)p)->iface_list, NODE ifa);
|
1999-04-14 03:27:44 +08:00
|
|
|
ospf_iface_default(ifa);
|
1999-04-14 05:46:20 +08:00
|
|
|
add_wait_timer(ifa,p->pool,0);
|
1999-04-14 03:27:44 +08:00
|
|
|
init_list(&(ifa->sk_list));
|
|
|
|
if((mcsk=ospf_open_socket(p, ifa))!=NULL)
|
1999-04-13 07:54:21 +08:00
|
|
|
{
|
1999-04-14 03:27:44 +08:00
|
|
|
add_tail(&(ifa->sk_list),NODE mcsk);
|
1999-04-13 07:54:21 +08:00
|
|
|
}
|
|
|
|
}
|
1999-04-14 05:46:20 +08:00
|
|
|
|
|
|
|
if((flags & IF_CHANGE_DOWN)==IF_CHANGE_DOWN)
|
|
|
|
{
|
|
|
|
if((ifa=find_iface((struct proto_ospf *)p, old))!=NULL)
|
|
|
|
{
|
|
|
|
debug(" OSPF: killing interface %s.\n", old->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if((flags & IF_CHANGE_MTU)==IF_CHANGE_MTU)
|
|
|
|
{
|
|
|
|
if((ifa=find_iface((struct proto_ospf *)p, old))!=NULL)
|
|
|
|
{
|
|
|
|
debug(" OSPF: changing MTU on interface %s.\n", old->name);
|
|
|
|
}
|
|
|
|
}
|
1999-04-13 07:54:21 +08:00
|
|
|
}
|
|
|
|
|
1999-03-10 06:27:43 +08:00
|
|
|
|
|
|
|
static int
|
|
|
|
ospf_start(struct proto *p)
|
|
|
|
{
|
|
|
|
DBG(" OSPF: Start\n");
|
1999-04-13 07:54:21 +08:00
|
|
|
|
|
|
|
p->if_notify=ospf_if_notify;
|
|
|
|
|
1999-03-10 06:27:43 +08:00
|
|
|
return PS_UP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ospf_dump(struct proto *p)
|
|
|
|
{
|
|
|
|
char areastr[20];
|
|
|
|
struct ospf_config *c = (void *) p->cf;
|
|
|
|
|
|
|
|
DBG(" OSPF: Dump.\n");
|
|
|
|
debug(" -AreaID: %d\n", c->area );
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct proto *
|
|
|
|
ospf_init(struct proto_config *c)
|
|
|
|
{
|
1999-04-14 05:46:20 +08:00
|
|
|
struct proto *p = proto_new(c, sizeof(struct proto_ospf));
|
1999-03-10 06:27:43 +08:00
|
|
|
|
|
|
|
DBG(" OSPF: Init.\n");
|
|
|
|
p->neigh_notify = NULL;
|
|
|
|
p->if_notify = NULL;
|
1999-04-14 05:46:20 +08:00
|
|
|
init_list(&((struct proto_ospf *)p)->iface_list);
|
1999-03-10 06:27:43 +08:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-04-13 08:24:05 +08:00
|
|
|
ospf_preconfig(struct protocol *p, struct config *c)
|
1999-03-10 06:27:43 +08:00
|
|
|
{
|
|
|
|
DBG( " OSPF: preconfig\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ospf_postconfig(struct proto_config *c)
|
|
|
|
{
|
|
|
|
DBG( " OSPF: postconfig\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct protocol proto_ospf = {
|
|
|
|
name: "OSPF",
|
|
|
|
init: ospf_init,
|
|
|
|
dump: ospf_dump,
|
|
|
|
start: ospf_start,
|
|
|
|
preconfig: ospf_preconfig,
|
|
|
|
postconfig: ospf_postconfig,
|
|
|
|
|
|
|
|
};
|
|
|
|
|