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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_OSPF_H_
|
|
|
|
#define _BIRD_OSPF_H_
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
|
2000-03-30 08:18:59 +08:00
|
|
|
#define SIPH 64 /* FIXME Size Of IP header */
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
#include "nest/bird.h"
|
|
|
|
|
|
|
|
#include "lib/checksum.h"
|
1999-11-10 20:27:01 +08:00
|
|
|
#include "lib/ip.h"
|
|
|
|
#include "lib/lists.h"
|
2000-03-08 20:50:28 +08:00
|
|
|
#include "lib/slists.h"
|
1999-11-10 20:27:01 +08:00
|
|
|
#include "lib/socket.h"
|
|
|
|
#include "lib/timer.h"
|
|
|
|
#include "lib/resource.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/iface.h"
|
1999-11-17 23:50:41 +08:00
|
|
|
#include "nest/route.h"
|
|
|
|
#include "conf/conf.h"
|
2000-05-04 09:23:03 +08:00
|
|
|
#include "lib/string.h"
|
1999-11-10 20:27:01 +08:00
|
|
|
|
1999-04-13 07:54:21 +08:00
|
|
|
#define OSPF_PROTO 89
|
1999-04-14 02:21:53 +08:00
|
|
|
#ifndef IPV6
|
1999-05-11 23:34:33 +08:00
|
|
|
#define OSPF_VERSION 2
|
1999-04-13 07:54:21 +08:00
|
|
|
#define AllSPFRouters ipa_from_u32(0xe0000005) /* 224.0.0.5 */
|
|
|
|
#define AllDRouters ipa_from_u32(0xe0000006) /* 224.0.0.6 */
|
2000-04-30 19:31:05 +08:00
|
|
|
#define DEFAULTDES ipa_from_u32(0)
|
1999-04-14 02:21:53 +08:00
|
|
|
#else
|
1999-04-27 20:56:52 +08:00
|
|
|
#error Multicast address not defined in IPv6
|
1999-04-14 02:21:53 +08:00
|
|
|
#endif
|
|
|
|
|
2000-01-05 08:03:47 +08:00
|
|
|
|
2000-04-04 08:32:17 +08:00
|
|
|
#define LSREFRESHTIME 1800 /* 30 minutes */
|
2000-01-05 08:03:47 +08:00
|
|
|
#define MINLSINTERVAL 5
|
|
|
|
#define MINLSARRIVAL 1
|
2000-04-30 19:31:05 +08:00
|
|
|
#define LSINFINITY 0xffff /* RFC says 0xffffff ??? */
|
2000-05-03 06:19:41 +08:00
|
|
|
#define AGINGDELTA 20 /* FIXME What's good value? */
|
2000-01-05 08:03:47 +08:00
|
|
|
|
1999-03-10 06:27:43 +08:00
|
|
|
struct ospf_config {
|
|
|
|
struct proto_config c;
|
1999-04-14 23:13:44 +08:00
|
|
|
u32 area; /* FIXME: Area ID !!! This is wrong !!!
|
1999-04-14 02:21:53 +08:00
|
|
|
* Should respect interface */
|
1999-03-10 06:27:43 +08:00
|
|
|
};
|
|
|
|
|
1999-04-13 07:54:21 +08:00
|
|
|
struct ospf_iface {
|
1999-04-14 23:13:44 +08:00
|
|
|
node n;
|
1999-05-11 17:50:02 +08:00
|
|
|
struct proto_ospf *proto;
|
1999-04-14 23:13:44 +08:00
|
|
|
struct iface *iface; /* Nest's iface */
|
2000-03-08 20:50:28 +08:00
|
|
|
struct ospf_area *oa;
|
|
|
|
u32 an; /* Area number */
|
1999-08-25 02:32:26 +08:00
|
|
|
sock *hello_sk; /* Hello socket */
|
2000-04-18 05:10:40 +08:00
|
|
|
sock *dr_sk; /* For states DR or BACKUP */
|
1999-08-25 02:32:26 +08:00
|
|
|
sock *ip_sk; /* IP socket (for DD ...) */
|
1999-06-01 02:24:54 +08:00
|
|
|
list neigh_list; /* List of neigbours */
|
1999-04-13 07:54:21 +08:00
|
|
|
u16 cost; /* Cost of iface */
|
1999-08-26 02:44:50 +08:00
|
|
|
u16 rxmtint; /* number of seconds between LSA retransmissions */
|
2000-05-03 06:31:48 +08:00
|
|
|
u16 inftransdelay; /* The estimated number of seconds it takes to
|
1999-04-13 07:54:21 +08:00
|
|
|
transmit a Link State Update Packet over this
|
|
|
|
interface. LSAs contained in the update */
|
|
|
|
u8 priority; /* A router priority for DR election */
|
|
|
|
u16 helloint; /* number of seconds between hello sending */
|
1999-10-19 05:48:51 +08:00
|
|
|
u16 waitint; /* number of sec before changing state from wait */
|
1999-06-01 02:56:20 +08:00
|
|
|
u32 deadc; /* after "deadint" missing hellos is router dead */
|
1999-04-13 07:54:21 +08:00
|
|
|
u16 autype;
|
|
|
|
u8 aukey[8];
|
|
|
|
u8 options;
|
1999-04-14 02:21:53 +08:00
|
|
|
ip_addr drip; /* Designated router */
|
|
|
|
u32 drid;
|
|
|
|
ip_addr bdrip; /* Backup DR */
|
|
|
|
u32 bdrid;
|
1999-08-26 02:44:50 +08:00
|
|
|
u8 type; /* OSPF view of type */
|
1999-10-19 05:48:51 +08:00
|
|
|
#define OSPF_IT_BCAST 0
|
1999-04-14 05:46:20 +08:00
|
|
|
#define OSPF_IT_NBMA 1
|
|
|
|
#define OSPF_IT_PTP 2
|
1999-10-19 05:48:51 +08:00
|
|
|
#define OSPF_IT_VLINK 3
|
1999-08-26 02:44:50 +08:00
|
|
|
u8 state; /* Interface state machine */
|
1999-10-19 05:48:51 +08:00
|
|
|
#define OSPF_IS_DOWN 0 /* Not working */
|
|
|
|
#define OSPF_IS_LOOP 1 /* Should never happen */
|
|
|
|
#define OSPF_IS_WAITING 2 /* Waiting for Wait timer */
|
|
|
|
#define OSPF_IS_PTP 3 /* PTP operational */
|
|
|
|
#define OSPF_IS_DROTHER 4 /* I'm on BCAST or NBMA and I'm not DR */
|
|
|
|
#define OSPF_IS_BACKUP 5 /* I'm BDR */
|
|
|
|
#define OSPF_IS_DR 6 /* I'm DR */
|
1999-05-25 02:22:00 +08:00
|
|
|
timer *wait_timer; /* WAIT timer */
|
|
|
|
timer *hello_timer; /* HELLOINT timer */
|
1999-04-13 07:54:21 +08:00
|
|
|
/* Default values for interface parameters */
|
|
|
|
#define COST_D 10
|
|
|
|
#define RXMTINT_D 5
|
2000-05-03 06:31:48 +08:00
|
|
|
#define INFTRANSDELAY_D 1
|
1999-04-14 05:46:20 +08:00
|
|
|
#define PRIORITY_D 1
|
1999-04-13 07:54:21 +08:00
|
|
|
#define HELLOINT_D 10
|
1999-06-01 02:56:20 +08:00
|
|
|
#define DEADC_D 4
|
1999-10-19 05:48:51 +08:00
|
|
|
#define WAIT_DMH 3 /* Value of Wait timer - not found it in RFC
|
|
|
|
* - using 3*HELLO
|
1999-08-25 02:32:26 +08:00
|
|
|
*/
|
2000-05-03 08:08:48 +08:00
|
|
|
struct top_hash_entry *nlsa; /* Originated net lsa */
|
|
|
|
int fadj; /* Number of full adjacent neigh */
|
1999-04-13 07:54:21 +08:00
|
|
|
};
|
|
|
|
|
1999-05-11 23:34:33 +08:00
|
|
|
struct ospf_packet {
|
|
|
|
u8 version;
|
|
|
|
u8 type;
|
|
|
|
#define HELLO 1 /* Hello */
|
|
|
|
#define DBDES 2 /* Database description */
|
|
|
|
#define LSREQ 3 /* Link state request */
|
|
|
|
#define LSUPD 4 /* Link state update */
|
|
|
|
#define LSACK 5 /* Link state acknowledgement */
|
|
|
|
u16 length;
|
|
|
|
u32 routerid;
|
|
|
|
u32 areaid;
|
2000-04-05 08:51:25 +08:00
|
|
|
#define BACKBONE 0
|
1999-05-11 23:34:33 +08:00
|
|
|
u16 checksum;
|
|
|
|
u16 autype;
|
|
|
|
u8 authetication[8];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_hello_packet {
|
1999-05-14 16:46:06 +08:00
|
|
|
struct ospf_packet ospf_packet;
|
|
|
|
ip_addr netmask;
|
1999-06-01 02:56:20 +08:00
|
|
|
u16 helloint;
|
1999-05-11 23:34:33 +08:00
|
|
|
u8 options;
|
|
|
|
u8 priority;
|
|
|
|
u32 deadint;
|
|
|
|
u32 dr;
|
|
|
|
u32 bdr;
|
|
|
|
};
|
|
|
|
|
2000-03-29 20:32:25 +08:00
|
|
|
struct immsb {
|
|
|
|
u8 ms:1;
|
|
|
|
u8 m:1;
|
|
|
|
u8 i:1;
|
|
|
|
u8 padding:5;
|
|
|
|
};
|
|
|
|
|
|
|
|
union imms {
|
|
|
|
u8 byte;
|
|
|
|
struct immsb bit;
|
|
|
|
};
|
|
|
|
|
1999-08-26 02:44:50 +08:00
|
|
|
struct ospf_dbdes_packet {
|
1999-08-25 02:32:26 +08:00
|
|
|
struct ospf_packet ospf_packet;
|
|
|
|
u16 iface_mtu;
|
1999-08-26 02:44:50 +08:00
|
|
|
u8 options;
|
2000-03-29 20:32:25 +08:00
|
|
|
union imms imms; /* I, M, MS bits */
|
1999-08-26 02:44:50 +08:00
|
|
|
#define DBDES_MS 1
|
|
|
|
#define DBDES_M 2
|
|
|
|
#define DBDES_I 4
|
|
|
|
u32 ddseq;
|
1999-08-25 02:32:26 +08:00
|
|
|
};
|
|
|
|
|
2000-03-10 06:38:05 +08:00
|
|
|
|
|
|
|
struct ospf_lsa_header {
|
|
|
|
u16 age; /* LS Age */
|
|
|
|
#define LSA_MAXAGE 3600 /* 1 hour */
|
|
|
|
#define LSA_CHECKAGE 300 /* 5 minutes */
|
|
|
|
#define LSA_MAXAGEDIFF 900 /* 15 minutes */
|
1999-08-26 02:44:50 +08:00
|
|
|
u8 options;
|
2000-03-10 06:38:05 +08:00
|
|
|
u8 type;
|
|
|
|
u32 id;
|
|
|
|
#define LSA_T_RT 1
|
|
|
|
#define LSA_T_NET 2
|
|
|
|
#define LSA_T_SUM_NET 3
|
|
|
|
#define LSA_T_SUM_RT 4
|
|
|
|
#define LSA_T_EXT 5
|
|
|
|
u32 rt; /* Advertising router */
|
2000-03-30 01:18:06 +08:00
|
|
|
s32 sn; /* LS Sequence number */
|
2000-03-10 06:38:05 +08:00
|
|
|
#define LSA_INITSEQNO 0x80000001
|
|
|
|
#define LSA_MAXSEQNO 0x7fffffff
|
1999-08-26 02:44:50 +08:00
|
|
|
u16 checksum;
|
2000-03-10 06:38:05 +08:00
|
|
|
u16 length;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_lsa_rt {
|
|
|
|
u8 VEB;
|
|
|
|
#define LSA_RT_V 5
|
|
|
|
#define LSA_RT_E 6
|
|
|
|
#define LSA_RT_B 7
|
|
|
|
u8 padding;
|
|
|
|
u16 links;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_lsa_rt_link {
|
|
|
|
u32 id;
|
|
|
|
u32 data;
|
|
|
|
u8 type;
|
|
|
|
#define LSART_PTP 1
|
|
|
|
#define LSART_NET 2
|
|
|
|
#define LSART_STUB 3
|
|
|
|
#define LSART_VLNK 4
|
|
|
|
u8 notos;
|
|
|
|
u16 metric;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_lsa_rt_link_tos { /* Actually we ignore TOS. This is useless */
|
|
|
|
u8 tos;
|
|
|
|
u8 padding;
|
|
|
|
u16 metric;
|
1999-08-26 02:44:50 +08:00
|
|
|
};
|
|
|
|
|
2000-04-26 20:54:23 +08:00
|
|
|
struct ospf_lsa_net {
|
2000-04-30 19:31:05 +08:00
|
|
|
ip_addr netmask;
|
2000-04-26 20:54:23 +08:00
|
|
|
};
|
|
|
|
|
2000-03-10 06:38:05 +08:00
|
|
|
struct ospf_lsa_summ {
|
2000-04-30 19:31:05 +08:00
|
|
|
ip_addr netmask;
|
2000-03-10 06:38:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_lsa_summ_net {
|
|
|
|
u8 tos;
|
|
|
|
u8 padding;
|
|
|
|
u16 metric;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_lsa_ext {
|
2000-04-30 19:31:05 +08:00
|
|
|
ip_addr netmask;
|
2000-03-10 06:38:05 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_lsa_ext_tos {
|
|
|
|
u8 etos;
|
|
|
|
u8 padding;
|
2000-03-31 08:21:41 +08:00
|
|
|
u16 metric;
|
2000-03-10 06:38:05 +08:00
|
|
|
u32 fwaddr;
|
|
|
|
u32 tag;
|
|
|
|
};
|
|
|
|
|
2000-03-30 08:18:59 +08:00
|
|
|
struct ospf_lsreq_packet {
|
|
|
|
struct ospf_packet ospf_packet;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_lsreq_header {
|
|
|
|
u16 padd1;
|
|
|
|
u8 padd2;
|
|
|
|
u8 type;
|
|
|
|
u32 id;
|
|
|
|
u32 rt; /* Advertising router */
|
|
|
|
};
|
|
|
|
|
2000-03-31 08:21:41 +08:00
|
|
|
struct l_lsr_head {
|
|
|
|
node n;
|
|
|
|
struct ospf_lsreq_header lsh;
|
|
|
|
};
|
|
|
|
|
2000-03-31 04:00:42 +08:00
|
|
|
struct ospf_lsupd_packet {
|
|
|
|
struct ospf_packet ospf_packet;
|
|
|
|
u32 lsano; /* Number of LSA's */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_lsack_packet {
|
|
|
|
struct ospf_packet ospf_packet;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-05-25 05:17:16 +08:00
|
|
|
struct ospf_neighbor
|
|
|
|
{
|
1999-08-10 01:58:01 +08:00
|
|
|
node n;
|
1999-05-25 05:49:22 +08:00
|
|
|
struct ospf_iface *ifa;
|
1999-08-26 02:44:50 +08:00
|
|
|
u8 state;
|
1999-05-25 05:17:16 +08:00
|
|
|
#define NEIGHBOR_DOWN 0
|
1999-06-02 00:35:18 +08:00
|
|
|
#define NEIGHBOR_ATTEMPT 1
|
|
|
|
#define NEIGHBOR_INIT 2
|
|
|
|
#define NEIGHBOR_2WAY 3
|
1999-05-25 05:17:16 +08:00
|
|
|
#define NEIGHBOR_EXSTART 4
|
1999-05-25 05:49:22 +08:00
|
|
|
#define NEIGHBOR_EXCHANGE 5
|
|
|
|
#define NEIGHBOR_LOADING 6
|
|
|
|
#define NEIGHBOR_FULL 7
|
1999-05-25 05:17:16 +08:00
|
|
|
timer *inactim; /* Inactivity timer */
|
2000-03-29 20:32:25 +08:00
|
|
|
union imms imms; /* I, M, Master/slave received */
|
1999-10-20 00:13:06 +08:00
|
|
|
u32 dds; /* DD Sequence number being sent */
|
|
|
|
u32 ddr; /* last Dat Des packet received */
|
2000-03-29 20:32:25 +08:00
|
|
|
union imms myimms; /* I, M Master/slave */
|
1999-05-25 05:17:16 +08:00
|
|
|
u32 rid; /* Router ID */
|
1999-11-11 00:06:12 +08:00
|
|
|
ip_addr ip; /* IP of it's interface */
|
1999-08-26 02:44:50 +08:00
|
|
|
u8 priority; /* Priority */
|
1999-11-11 00:06:12 +08:00
|
|
|
u8 options; /* Options received */
|
1999-05-25 05:17:16 +08:00
|
|
|
u32 dr; /* Neigbour's idea of DR */
|
|
|
|
u32 bdr; /* Neigbour's idea of BDR */
|
1999-08-24 22:42:51 +08:00
|
|
|
u8 adj; /* built adjacency? */
|
2000-03-08 20:50:28 +08:00
|
|
|
siterator dbsi; /* Database summary list iterator */
|
2000-03-31 03:37:26 +08:00
|
|
|
slist lsrql; /* Link state request */
|
|
|
|
struct top_graph *lsrqh; /* LSA graph */
|
2000-03-08 20:50:28 +08:00
|
|
|
siterator lsrqi;
|
|
|
|
slist lsrtl; /* Link state retransmission list */
|
|
|
|
siterator lsrti;
|
2000-04-04 08:32:17 +08:00
|
|
|
struct top_graph *lsrth;
|
2000-03-08 20:50:28 +08:00
|
|
|
void *ldbdes; /* Last database description packet */
|
2000-03-30 08:18:59 +08:00
|
|
|
timer *rxmt_timer; /* RXMT timer */
|
2000-05-09 07:46:31 +08:00
|
|
|
timer *lsrr_timer; /* Link state request retransmition timer */
|
2000-04-18 09:06:16 +08:00
|
|
|
list ackl;
|
|
|
|
timer *ackd_timer; /* Delayed ack timer */
|
1999-05-25 05:17:16 +08:00
|
|
|
};
|
|
|
|
|
1999-10-19 05:48:51 +08:00
|
|
|
/* Definitions for interface state machine */
|
|
|
|
#define ISM_UP 0 /* Interface Up */
|
|
|
|
#define ISM_WAITF 1 /* Wait timer fired */
|
|
|
|
#define ISM_BACKS 2 /* Backup seen */
|
|
|
|
#define ISM_NEICH 3 /* Neighbor change */
|
|
|
|
#define ISM_LOOP 4 /* Loop indicated */
|
|
|
|
#define ISM_UNLOOP 5 /* Unloop indicated */
|
|
|
|
#define ISM_DOWN 6 /* Interface down */
|
|
|
|
|
|
|
|
/* Definitions for neighbor state machine */
|
|
|
|
#define INM_HELLOREC 0 /* Hello Received */
|
|
|
|
#define INM_START 1 /* Neighbor start - for NBMA */
|
|
|
|
#define INM_2WAYREC 2 /* 2-Way received */
|
|
|
|
#define INM_NEGDONE 3 /* Negotiation done */
|
|
|
|
#define INM_EXDONE 4 /* Exchange done */
|
|
|
|
#define INM_BADLSREQ 5 /* Bad LS Request */
|
|
|
|
#define INM_LOADDONE 6 /* Load done */
|
|
|
|
#define INM_ADJOK 7 /* AdjOK? */
|
|
|
|
#define INM_SEQMIS 8 /* Sequence number mismatch */
|
|
|
|
#define INM_1WAYREC 9 /* 1-Way */
|
1999-11-10 20:27:01 +08:00
|
|
|
#define INM_KILLNBR 10 /* Kill Neighbor */
|
1999-10-19 05:48:51 +08:00
|
|
|
#define INM_INACTTIM 11 /* Inactivity timer */
|
|
|
|
#define INM_LLDOWN 12 /* Line down */
|
|
|
|
|
2000-01-05 08:03:47 +08:00
|
|
|
struct ospf_area {
|
2000-04-04 06:31:07 +08:00
|
|
|
node n;
|
2000-01-05 08:03:47 +08:00
|
|
|
u32 areaid;
|
2000-05-03 06:19:41 +08:00
|
|
|
bird_clock_t lage; /* A time of last aging */
|
|
|
|
timer *age_timer; /* A timer for aging */
|
2000-01-05 08:03:47 +08:00
|
|
|
struct top_graph *gr; /* LSA graph */
|
2000-03-08 20:50:28 +08:00
|
|
|
slist lsal; /* List of all LSA's */
|
2000-02-26 03:19:41 +08:00
|
|
|
struct top_hash_entry *rt; /* My own router LSA */
|
2000-04-26 20:54:23 +08:00
|
|
|
list cand; /* List of candidates for RT calc. */
|
|
|
|
u8 stub;
|
|
|
|
u8 trcap; /* Transit capability? */
|
2000-05-03 06:19:41 +08:00
|
|
|
struct proto_ospf *po;
|
2000-05-04 09:23:03 +08:00
|
|
|
struct fib infib; /* FIB for intra-area routes */
|
2000-01-05 08:03:47 +08:00
|
|
|
};
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
struct proto_ospf {
|
|
|
|
struct proto proto;
|
|
|
|
list iface_list; /* Interfaces we really use */
|
2000-04-04 06:31:07 +08:00
|
|
|
list area_list;
|
2000-01-05 08:03:47 +08:00
|
|
|
int areano; /* Number of area I belong to */
|
1999-11-10 20:27:01 +08:00
|
|
|
};
|
|
|
|
|
1999-11-17 23:50:41 +08:00
|
|
|
static int ospf_start(struct proto *p);
|
|
|
|
static void ospf_dump(struct proto *p);
|
|
|
|
static struct proto *ospf_init(struct proto_config *c);
|
|
|
|
static void ospf_preconfig(struct protocol *p, struct config *c);
|
|
|
|
static void ospf_postconfig(struct proto_config *c);
|
|
|
|
|
|
|
|
#include "proto/ospf/hello.h"
|
|
|
|
#include "proto/ospf/packet.h"
|
|
|
|
#include "proto/ospf/iface.h"
|
|
|
|
#include "proto/ospf/neighbor.h"
|
|
|
|
#include "proto/ospf/topology.h"
|
|
|
|
#include "proto/ospf/dbdes.h"
|
2000-03-30 08:18:59 +08:00
|
|
|
#include "proto/ospf/lsreq.h"
|
2000-03-31 08:21:41 +08:00
|
|
|
#include "proto/ospf/lsupd.h"
|
|
|
|
#include "proto/ospf/lsack.h"
|
|
|
|
#include "proto/ospf/lsalib.h"
|
2000-04-26 20:54:23 +08:00
|
|
|
#include "proto/ospf/rt.h"
|
1999-11-10 20:27:01 +08:00
|
|
|
|
1999-03-10 06:27:43 +08:00
|
|
|
#endif /* _BIRD_OSPF_H_ */
|