1999-03-09 22:27:43 +00: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-04-12 23:54:21 +00:00
|
|
|
#define OSPF_PROTO 89
|
1999-04-13 18:21:53 +00:00
|
|
|
#ifndef IPV6
|
1999-05-11 15:34:33 +00:00
|
|
|
#define OSPF_VERSION 2
|
1999-04-12 23:54:21 +00:00
|
|
|
#define AllSPFRouters ipa_from_u32(0xe0000005) /* 224.0.0.5 */
|
|
|
|
#define AllDRouters ipa_from_u32(0xe0000006) /* 224.0.0.6 */
|
1999-04-13 18:21:53 +00:00
|
|
|
#else
|
1999-04-27 12:56:52 +00:00
|
|
|
#error Multicast address not defined in IPv6
|
1999-04-13 18:21:53 +00:00
|
|
|
#endif
|
|
|
|
|
1999-05-11 09:50:02 +00:00
|
|
|
struct proto_ospf {
|
|
|
|
struct proto proto;
|
|
|
|
list iface_list; /* Interfaces we really use */
|
|
|
|
};
|
1999-04-12 23:54:21 +00:00
|
|
|
|
1999-03-09 22:27:43 +00:00
|
|
|
struct ospf_config {
|
|
|
|
struct proto_config c;
|
1999-04-14 15:13:44 +00:00
|
|
|
u32 area; /* FIXME: Area ID !!! This is wrong !!!
|
1999-04-13 18:21:53 +00:00
|
|
|
* Should respect interface */
|
1999-03-09 22:27:43 +00:00
|
|
|
};
|
|
|
|
|
1999-04-12 23:54:21 +00:00
|
|
|
struct ospf_iface {
|
1999-04-14 15:13:44 +00:00
|
|
|
node n;
|
1999-05-11 09:50:02 +00:00
|
|
|
struct proto_ospf *proto;
|
1999-04-14 15:13:44 +00:00
|
|
|
struct iface *iface; /* Nest's iface */
|
1999-08-24 18:32:26 +00:00
|
|
|
sock *hello_sk; /* Hello socket */
|
|
|
|
sock *ip_sk; /* IP socket (for DD ...) */
|
1999-05-31 18:24:54 +00:00
|
|
|
list neigh_list; /* List of neigbours */
|
1999-04-12 23:54:21 +00:00
|
|
|
u32 area; /* OSPF Area */
|
|
|
|
u16 cost; /* Cost of iface */
|
1999-08-25 18:44:50 +00:00
|
|
|
u16 rxmtint; /* number of seconds between LSA retransmissions */
|
|
|
|
u16 iftransdelay; /* The estimated number of seconds it takes to
|
1999-04-12 23:54:21 +00: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-18 21:48:51 +00:00
|
|
|
u16 waitint; /* number of sec before changing state from wait */
|
1999-05-31 18:56:20 +00:00
|
|
|
u32 deadc; /* after "deadint" missing hellos is router dead */
|
1999-04-12 23:54:21 +00:00
|
|
|
u16 autype;
|
|
|
|
u8 aukey[8];
|
|
|
|
u8 options;
|
1999-04-13 18:21:53 +00:00
|
|
|
ip_addr drip; /* Designated router */
|
|
|
|
u32 drid;
|
|
|
|
ip_addr bdrip; /* Backup DR */
|
|
|
|
u32 bdrid;
|
1999-08-25 18:44:50 +00:00
|
|
|
u8 type; /* OSPF view of type */
|
1999-10-18 21:48:51 +00:00
|
|
|
#define OSPF_IT_BCAST 0
|
1999-04-13 21:46:20 +00:00
|
|
|
#define OSPF_IT_NBMA 1
|
|
|
|
#define OSPF_IT_PTP 2
|
1999-10-18 21:48:51 +00:00
|
|
|
#define OSPF_IT_VLINK 3
|
1999-08-25 18:44:50 +00:00
|
|
|
u8 state; /* Interface state machine */
|
1999-10-18 21:48:51 +00: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-24 18:22:00 +00:00
|
|
|
timer *wait_timer; /* WAIT timer */
|
|
|
|
timer *hello_timer; /* HELLOINT timer */
|
1999-08-25 18:44:50 +00:00
|
|
|
timer *rxmt_timer; /* RXMT timer */
|
1999-04-12 23:54:21 +00:00
|
|
|
/* Default values for interface parameters */
|
|
|
|
#define COST_D 10
|
|
|
|
#define RXMTINT_D 5
|
|
|
|
#define IFTRANSDELAY_D 1
|
1999-04-13 21:46:20 +00:00
|
|
|
#define PRIORITY_D 1
|
1999-04-12 23:54:21 +00:00
|
|
|
#define HELLOINT_D 10
|
1999-05-31 18:56:20 +00:00
|
|
|
#define DEADC_D 4
|
1999-10-18 21:48:51 +00:00
|
|
|
#define WAIT_DMH 3 /* Value of Wait timer - not found it in RFC
|
|
|
|
* - using 3*HELLO
|
1999-08-24 18:32:26 +00:00
|
|
|
*/
|
1999-04-12 23:54:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_patt {
|
|
|
|
struct iface_patt i;
|
|
|
|
|
|
|
|
u16 cost;
|
1999-08-25 18:44:50 +00:00
|
|
|
u8 mode;
|
1999-04-12 23:54:21 +00:00
|
|
|
};
|
|
|
|
|
1999-05-11 15:34:33 +00: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;
|
|
|
|
u16 checksum;
|
|
|
|
u16 autype;
|
|
|
|
u8 authetication[8];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ospf_hello_packet {
|
1999-05-14 08:46:06 +00:00
|
|
|
struct ospf_packet ospf_packet;
|
|
|
|
ip_addr netmask;
|
1999-05-31 18:56:20 +00:00
|
|
|
u16 helloint;
|
1999-05-11 15:34:33 +00:00
|
|
|
u8 options;
|
|
|
|
u8 priority;
|
|
|
|
u32 deadint;
|
|
|
|
u32 dr;
|
|
|
|
u32 bdr;
|
|
|
|
};
|
|
|
|
|
1999-08-25 18:44:50 +00:00
|
|
|
struct ospf_dbdes_packet {
|
1999-08-24 18:32:26 +00:00
|
|
|
struct ospf_packet ospf_packet;
|
|
|
|
u16 iface_mtu;
|
1999-08-25 18:44:50 +00:00
|
|
|
u8 options;
|
|
|
|
u8 imms; /* I, M, MS bits */
|
|
|
|
#define DBDES_MS 1
|
|
|
|
#define DBDES_M 2
|
|
|
|
#define DBDES_I 4
|
|
|
|
u32 ddseq;
|
1999-08-24 18:32:26 +00:00
|
|
|
};
|
|
|
|
|
1999-08-25 18:44:50 +00:00
|
|
|
struct ospf_lsaheader {
|
|
|
|
u16 lsage; /* LS Age */
|
|
|
|
u8 options;
|
|
|
|
u8 lstype;
|
|
|
|
u32 lsid;
|
|
|
|
u32 advr; /* Advertising router */
|
|
|
|
u32 lssn; /* LS Sequence number */
|
|
|
|
u16 checksum;
|
|
|
|
u16 length;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-05-24 21:17:16 +00:00
|
|
|
struct ospf_neighbor
|
|
|
|
{
|
1999-08-09 17:58:01 +00:00
|
|
|
node n;
|
1999-05-24 21:49:22 +00:00
|
|
|
struct ospf_iface *ifa;
|
1999-08-25 18:44:50 +00:00
|
|
|
u8 state;
|
1999-05-24 21:17:16 +00:00
|
|
|
#define NEIGHBOR_DOWN 0
|
1999-06-01 16:35:18 +00:00
|
|
|
#define NEIGHBOR_ATTEMPT 1
|
|
|
|
#define NEIGHBOR_INIT 2
|
|
|
|
#define NEIGHBOR_2WAY 3
|
1999-05-24 21:17:16 +00:00
|
|
|
#define NEIGHBOR_EXSTART 4
|
1999-05-24 21:49:22 +00:00
|
|
|
#define NEIGHBOR_EXCHANGE 5
|
|
|
|
#define NEIGHBOR_LOADING 6
|
|
|
|
#define NEIGHBOR_FULL 7
|
1999-05-24 21:17:16 +00:00
|
|
|
timer *inactim; /* Inactivity timer */
|
1999-08-25 18:44:50 +00:00
|
|
|
u8 imms; /* I, M, Master/slave */
|
1999-10-19 16:13:06 +00:00
|
|
|
u32 dds; /* DD Sequence number being sent */
|
|
|
|
u32 ddr; /* last Dat Des packet received */
|
|
|
|
u8 myimms; /* I, M MS received */
|
|
|
|
u8 myoptions; /* Options received */
|
1999-05-24 21:17:16 +00:00
|
|
|
u32 rid; /* Router ID */
|
1999-08-25 18:44:50 +00:00
|
|
|
u8 priority; /* Priority */
|
|
|
|
u8 options; /* Options */
|
1999-05-24 21:17:16 +00:00
|
|
|
u32 dr; /* Neigbour's idea of DR */
|
|
|
|
u32 bdr; /* Neigbour's idea of BDR */
|
1999-08-24 14:42:51 +00:00
|
|
|
u8 adj; /* built adjacency? */
|
1999-05-24 21:17:16 +00:00
|
|
|
};
|
|
|
|
|
1999-10-18 21:48:51 +00: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 */
|
|
|
|
#define INM_KILLNBR 10 /* Kill Neigbor */
|
|
|
|
#define INM_INACTTIM 11 /* Inactivity timer */
|
|
|
|
#define INM_LLDOWN 12 /* Line down */
|
|
|
|
|
1999-03-09 22:27:43 +00:00
|
|
|
#endif /* _BIRD_OSPF_H_ */
|