2016-04-29 00:01:40 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- The Babel protocol
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015--2016 Toke Hoiland-Jorgensen
|
2017-11-28 22:11:41 +08:00
|
|
|
* (c) 2016--2017 Ondrej Zajicek <santiago@crfreenet.org>
|
|
|
|
* (c) 2016--2017 CZ.NIC z.s.p.o.
|
2016-04-29 00:01:40 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*
|
|
|
|
* This file contains the data structures used by Babel.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_BABEL_H_
|
|
|
|
#define _BIRD_BABEL_H_
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "nest/cli.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "nest/route.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/locks.h"
|
|
|
|
#include "lib/resource.h"
|
|
|
|
#include "lib/lists.h"
|
|
|
|
#include "lib/socket.h"
|
|
|
|
#include "lib/string.h"
|
2017-11-29 00:43:20 +08:00
|
|
|
#include "lib/timer.h"
|
2016-04-29 00:01:40 +08:00
|
|
|
|
|
|
|
#define EA_BABEL_METRIC EA_CODE(EAP_BABEL, 0)
|
|
|
|
#define EA_BABEL_ROUTER_ID EA_CODE(EAP_BABEL, 1)
|
|
|
|
|
|
|
|
#define BABEL_MAGIC 42
|
|
|
|
#define BABEL_VERSION 2
|
|
|
|
#define BABEL_PORT 6696
|
|
|
|
#define BABEL_INFINITY 0xFFFF
|
|
|
|
|
|
|
|
|
2017-10-13 18:34:08 +08:00
|
|
|
#define BABEL_HELLO_INTERVAL_WIRED (4 S_) /* Default hello intervals in seconds */
|
|
|
|
#define BABEL_HELLO_INTERVAL_WIRELESS (4 S_)
|
2017-10-25 23:14:08 +08:00
|
|
|
#define BABEL_HELLO_LIMIT 12
|
2016-04-29 00:01:40 +08:00
|
|
|
#define BABEL_UPDATE_INTERVAL_FACTOR 4
|
|
|
|
#define BABEL_IHU_INTERVAL_FACTOR 3
|
2017-11-28 22:11:41 +08:00
|
|
|
#define BABEL_HOLD_TIME_FACTOR 4 /* How long we keep unreachable route relative to update interval */
|
2017-10-25 23:14:08 +08:00
|
|
|
#define BABEL_IHU_EXPIRY_FACTOR(X) ((btime)(X)*7/2) /* 3.5 */
|
2017-10-13 18:34:08 +08:00
|
|
|
#define BABEL_HELLO_EXPIRY_FACTOR(X) ((btime)(X)*3/2) /* 1.5 */
|
|
|
|
#define BABEL_ROUTE_EXPIRY_FACTOR(X) ((btime)(X)*7/2) /* 3.5 */
|
2017-11-28 22:11:41 +08:00
|
|
|
#define BABEL_ROUTE_REFRESH_FACTOR(X) ((btime)(X)*5/2) /* 2.5 */
|
2017-11-08 21:35:52 +08:00
|
|
|
#define BABEL_SEQNO_REQUEST_RETRY 4
|
|
|
|
#define BABEL_SEQNO_REQUEST_EXPIRY (2 S_)
|
2017-10-13 18:34:08 +08:00
|
|
|
#define BABEL_GARBAGE_INTERVAL (300 S_)
|
2016-04-29 00:01:40 +08:00
|
|
|
#define BABEL_RXCOST_WIRED 96
|
|
|
|
#define BABEL_RXCOST_WIRELESS 256
|
|
|
|
#define BABEL_INITIAL_HOP_COUNT 255
|
2017-10-13 18:34:08 +08:00
|
|
|
#define BABEL_MAX_SEND_INTERVAL 5 /* Unused ? */
|
2016-04-29 00:01:40 +08:00
|
|
|
|
2016-07-19 17:57:20 +08:00
|
|
|
/* Max interval that will not overflow when carried as 16-bit centiseconds */
|
2017-10-13 18:34:08 +08:00
|
|
|
#define BABEL_TIME_UNITS 10000 /* On-wire times are counted in centiseconds */
|
|
|
|
#define BABEL_MIN_INTERVAL (0x0001 * BABEL_TIME_UNITS)
|
|
|
|
#define BABEL_MAX_INTERVAL (0xFFFF * BABEL_TIME_UNITS)
|
2016-07-19 17:57:20 +08:00
|
|
|
|
2016-12-10 07:11:26 +08:00
|
|
|
#define BABEL_OVERHEAD (IP6_HEADER_LENGTH+UDP_HEADER_LENGTH)
|
2016-04-29 00:01:40 +08:00
|
|
|
#define BABEL_MIN_MTU (512 + BABEL_OVERHEAD)
|
|
|
|
|
|
|
|
|
|
|
|
enum babel_tlv_type {
|
|
|
|
BABEL_TLV_PAD1 = 0,
|
|
|
|
BABEL_TLV_PADN = 1,
|
|
|
|
BABEL_TLV_ACK_REQ = 2,
|
|
|
|
BABEL_TLV_ACK = 3,
|
|
|
|
BABEL_TLV_HELLO = 4,
|
|
|
|
BABEL_TLV_IHU = 5,
|
|
|
|
BABEL_TLV_ROUTER_ID = 6,
|
|
|
|
BABEL_TLV_NEXT_HOP = 7,
|
|
|
|
BABEL_TLV_UPDATE = 8,
|
|
|
|
BABEL_TLV_ROUTE_REQUEST = 9,
|
|
|
|
BABEL_TLV_SEQNO_REQUEST = 10,
|
|
|
|
/* extensions - not implemented
|
|
|
|
BABEL_TLV_TS_PC = 11,
|
|
|
|
BABEL_TLV_HMAC = 12,
|
|
|
|
BABEL_TLV_SS_UPDATE = 13,
|
|
|
|
BABEL_TLV_SS_REQUEST = 14,
|
|
|
|
BABEL_TLV_SS_SEQNO_REQUEST = 15,
|
|
|
|
*/
|
|
|
|
BABEL_TLV_MAX
|
|
|
|
};
|
|
|
|
|
2017-06-09 20:33:06 +08:00
|
|
|
enum babel_subtlv_type {
|
|
|
|
BABEL_SUBTLV_PAD1 = 0,
|
2018-02-13 23:39:36 +08:00
|
|
|
BABEL_SUBTLV_PADN = 1,
|
|
|
|
|
|
|
|
/* Mandatory subtlvs */
|
|
|
|
BABEL_SUBTLV_SOURCE_PREFIX = 128,
|
2017-06-09 20:33:06 +08:00
|
|
|
};
|
|
|
|
|
2016-04-29 00:01:40 +08:00
|
|
|
enum babel_iface_type {
|
|
|
|
/* In practice, UNDEF and WIRED give equivalent behaviour */
|
|
|
|
BABEL_IFACE_TYPE_UNDEF = 0,
|
|
|
|
BABEL_IFACE_TYPE_WIRED = 1,
|
|
|
|
BABEL_IFACE_TYPE_WIRELESS = 2,
|
|
|
|
BABEL_IFACE_TYPE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum babel_ae_type {
|
|
|
|
BABEL_AE_WILDCARD = 0,
|
|
|
|
BABEL_AE_IP4 = 1,
|
|
|
|
BABEL_AE_IP6 = 2,
|
|
|
|
BABEL_AE_IP6_LL = 3,
|
|
|
|
BABEL_AE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct babel_config {
|
|
|
|
struct proto_config c;
|
2017-11-28 22:11:41 +08:00
|
|
|
list iface_list; /* List of iface configs (struct babel_iface_config) */
|
|
|
|
uint hold_time; /* Time to hold stale entries and unreachable routes */
|
2018-02-13 23:39:36 +08:00
|
|
|
|
|
|
|
struct channel_config *ip4_channel;
|
|
|
|
struct channel_config *ip6_channel;
|
2016-04-29 00:01:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_iface_config {
|
|
|
|
struct iface_patt i;
|
|
|
|
|
|
|
|
u16 rxcost;
|
|
|
|
u8 type;
|
2017-10-25 23:14:08 +08:00
|
|
|
u8 limit; /* Minimum number of Hellos to keep link up */
|
2016-04-29 00:01:40 +08:00
|
|
|
u8 check_link;
|
2016-10-14 21:37:04 +08:00
|
|
|
uint port;
|
2017-10-13 18:34:08 +08:00
|
|
|
uint hello_interval; /* Hello interval, in us */
|
|
|
|
uint ihu_interval; /* IHU interval, in us */
|
|
|
|
uint update_interval; /* Update interval, in us */
|
2016-04-29 00:01:40 +08:00
|
|
|
|
|
|
|
u16 rx_buffer; /* RX buffer size, 0 for MTU */
|
|
|
|
u16 tx_length; /* TX packet length limit (including headers), 0 for MTU */
|
|
|
|
int tx_tos;
|
|
|
|
int tx_priority;
|
2017-06-08 18:18:16 +08:00
|
|
|
|
|
|
|
ip_addr next_hop_ip4;
|
|
|
|
ip_addr next_hop_ip6;
|
2016-04-29 00:01:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_proto {
|
|
|
|
struct proto p;
|
|
|
|
timer *timer;
|
2017-06-08 18:18:16 +08:00
|
|
|
struct fib ip4_rtable;
|
|
|
|
struct fib ip6_rtable;
|
|
|
|
|
|
|
|
struct channel *ip4_channel;
|
|
|
|
struct channel *ip6_channel;
|
|
|
|
|
2016-04-29 00:01:40 +08:00
|
|
|
list interfaces; /* Interfaces we really know about (struct babel_iface) */
|
|
|
|
u64 router_id;
|
|
|
|
u16 update_seqno; /* To be increased on request */
|
2017-10-14 01:34:34 +08:00
|
|
|
u8 update_seqno_inc; /* Request for update_seqno increase */
|
2016-04-29 00:01:40 +08:00
|
|
|
u8 triggered; /* For triggering global updates */
|
|
|
|
|
|
|
|
slab *route_slab;
|
|
|
|
slab *source_slab;
|
|
|
|
slab *msg_slab;
|
|
|
|
slab *seqno_slab;
|
|
|
|
|
|
|
|
struct tbf log_pkt_tbf; /* TBF for packet messages */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_iface {
|
|
|
|
node n;
|
|
|
|
|
|
|
|
struct babel_proto *proto;
|
|
|
|
struct iface *iface;
|
|
|
|
|
|
|
|
struct babel_iface_config *cf;
|
|
|
|
|
|
|
|
u8 up;
|
|
|
|
|
|
|
|
pool *pool;
|
|
|
|
char *ifname;
|
|
|
|
sock *sk;
|
|
|
|
ip_addr addr;
|
2017-06-08 18:18:16 +08:00
|
|
|
ip_addr next_hop_ip4;
|
|
|
|
ip_addr next_hop_ip6;
|
2016-04-29 00:01:40 +08:00
|
|
|
int tx_length;
|
|
|
|
list neigh_list; /* List of neighbors seen on this iface (struct babel_neighbor) */
|
|
|
|
list msg_queue;
|
|
|
|
|
|
|
|
u16 hello_seqno; /* To be increased on each hello */
|
|
|
|
|
2017-10-13 18:34:08 +08:00
|
|
|
btime next_hello;
|
|
|
|
btime next_regular;
|
|
|
|
btime next_triggered;
|
|
|
|
btime want_triggered;
|
2016-04-29 00:01:40 +08:00
|
|
|
|
|
|
|
timer *timer;
|
|
|
|
event *send_event;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_neighbor {
|
|
|
|
node n;
|
|
|
|
struct babel_iface *ifa;
|
|
|
|
|
|
|
|
ip_addr addr;
|
2017-11-08 21:35:52 +08:00
|
|
|
uint uc; /* Reference counter for seqno requests */
|
2017-10-25 23:14:08 +08:00
|
|
|
u16 rxcost; /* Sent in last IHU */
|
|
|
|
u16 txcost; /* Received in last IHU */
|
|
|
|
u16 cost; /* Computed neighbor cost */
|
|
|
|
s8 ihu_cnt; /* IHU countdown, 0 to send it */
|
2016-04-29 00:01:40 +08:00
|
|
|
u8 hello_cnt;
|
|
|
|
u16 hello_map;
|
|
|
|
u16 next_hello_seqno;
|
2017-10-14 01:33:42 +08:00
|
|
|
uint last_hello_int;
|
2016-04-29 00:01:40 +08:00
|
|
|
/* expiry timers */
|
2017-10-13 18:34:08 +08:00
|
|
|
btime hello_expiry;
|
|
|
|
btime ihu_expiry;
|
2016-04-29 00:01:40 +08:00
|
|
|
|
|
|
|
list routes; /* Routes this neighbour has sent us (struct babel_route) */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_source {
|
|
|
|
node n;
|
|
|
|
|
|
|
|
u64 router_id;
|
|
|
|
u16 seqno;
|
|
|
|
u16 metric;
|
2017-10-13 18:34:08 +08:00
|
|
|
btime expires;
|
2016-04-29 00:01:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_route {
|
|
|
|
node n;
|
|
|
|
node neigh_route;
|
|
|
|
struct babel_entry *e;
|
|
|
|
struct babel_neighbor *neigh;
|
|
|
|
|
2017-11-28 22:11:41 +08:00
|
|
|
u8 feasible;
|
2016-04-29 00:01:40 +08:00
|
|
|
u16 seqno;
|
|
|
|
u16 metric;
|
2017-11-28 22:11:41 +08:00
|
|
|
u16 advert_metric;
|
2016-04-29 00:01:40 +08:00
|
|
|
u64 router_id;
|
|
|
|
ip_addr next_hop;
|
2017-10-13 18:34:08 +08:00
|
|
|
btime refresh_time;
|
|
|
|
btime expires;
|
2016-04-29 00:01:40 +08:00
|
|
|
};
|
|
|
|
|
2017-11-08 21:35:52 +08:00
|
|
|
struct babel_seqno_request {
|
|
|
|
node n;
|
|
|
|
u64 router_id;
|
|
|
|
u16 seqno;
|
|
|
|
u8 hop_count;
|
|
|
|
u8 count;
|
|
|
|
btime expires;
|
|
|
|
struct babel_neighbor *nbr;
|
|
|
|
};
|
|
|
|
|
2016-04-29 00:01:40 +08:00
|
|
|
struct babel_entry {
|
2017-11-28 22:11:41 +08:00
|
|
|
struct babel_route *selected;
|
2016-04-29 00:01:40 +08:00
|
|
|
|
|
|
|
list routes; /* Routes for this prefix (struct babel_route) */
|
2017-11-28 22:11:41 +08:00
|
|
|
list sources; /* Source entries for this prefix (struct babel_source). */
|
|
|
|
list requests;
|
|
|
|
|
|
|
|
u8 valid; /* Entry validity state (BABEL_ENTRY_*) */
|
|
|
|
u8 unreachable; /* Unreachable route is announced */
|
|
|
|
u16 seqno; /* Outgoing seqno */
|
|
|
|
u16 metric; /* Outgoing metric */
|
|
|
|
u64 router_id; /* Outgoing router ID */
|
|
|
|
btime updated; /* Last change of outgoing rte, for triggered updates */
|
2016-12-10 07:11:26 +08:00
|
|
|
|
|
|
|
struct fib_node n;
|
2016-04-29 00:01:40 +08:00
|
|
|
};
|
|
|
|
|
2017-11-28 22:11:41 +08:00
|
|
|
#define BABEL_ENTRY_DUMMY 0 /* No outgoing route */
|
|
|
|
#define BABEL_ENTRY_VALID 1 /* Valid outgoing route */
|
|
|
|
#define BABEL_ENTRY_STALE 2 /* Stale outgoing route, waiting for GC */
|
2016-04-29 00:01:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal TLV messages
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct babel_msg_ack_req {
|
|
|
|
u8 type;
|
|
|
|
u16 nonce;
|
2017-10-13 18:34:08 +08:00
|
|
|
uint interval;
|
2016-04-29 00:01:40 +08:00
|
|
|
ip_addr sender;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_msg_ack {
|
|
|
|
u8 type;
|
|
|
|
u16 nonce;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_msg_hello {
|
|
|
|
u8 type;
|
|
|
|
u16 seqno;
|
2017-10-13 18:34:08 +08:00
|
|
|
uint interval;
|
2016-04-29 00:01:40 +08:00
|
|
|
ip_addr sender;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_msg_ihu {
|
|
|
|
u8 type;
|
|
|
|
u8 ae;
|
|
|
|
u16 rxcost;
|
2017-10-13 18:34:08 +08:00
|
|
|
uint interval;
|
2016-04-29 00:01:40 +08:00
|
|
|
ip_addr addr;
|
|
|
|
ip_addr sender;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_msg_update {
|
|
|
|
u8 type;
|
2016-07-19 20:23:41 +08:00
|
|
|
u8 wildcard;
|
2017-10-13 18:34:08 +08:00
|
|
|
uint interval;
|
2016-04-29 00:01:40 +08:00
|
|
|
u16 seqno;
|
|
|
|
u16 metric;
|
|
|
|
u64 router_id;
|
2018-02-13 23:39:36 +08:00
|
|
|
union {
|
|
|
|
net_addr net;
|
|
|
|
net_addr_ip6_sadr net_sadr;
|
|
|
|
};
|
2016-04-29 00:01:40 +08:00
|
|
|
ip_addr next_hop;
|
|
|
|
ip_addr sender;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_msg_route_request {
|
|
|
|
u8 type;
|
|
|
|
u8 full;
|
2018-02-13 23:39:36 +08:00
|
|
|
union {
|
|
|
|
net_addr net;
|
|
|
|
net_addr_ip6_sadr net_sadr;
|
|
|
|
};
|
2016-04-29 00:01:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_msg_seqno_request {
|
|
|
|
u8 type;
|
|
|
|
u8 hop_count;
|
2016-12-10 07:11:26 +08:00
|
|
|
u16 seqno;
|
2016-04-29 00:01:40 +08:00
|
|
|
u64 router_id;
|
2018-02-13 23:39:36 +08:00
|
|
|
union {
|
|
|
|
net_addr net;
|
|
|
|
net_addr_ip6_sadr net_sadr;
|
|
|
|
};
|
2016-04-29 00:01:40 +08:00
|
|
|
ip_addr sender;
|
|
|
|
};
|
|
|
|
|
|
|
|
union babel_msg {
|
|
|
|
u8 type;
|
|
|
|
struct babel_msg_ack_req ack_req;
|
|
|
|
struct babel_msg_ack ack;
|
|
|
|
struct babel_msg_hello hello;
|
|
|
|
struct babel_msg_ihu ihu;
|
|
|
|
struct babel_msg_update update;
|
|
|
|
struct babel_msg_route_request route_request;
|
|
|
|
struct babel_msg_seqno_request seqno_request;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct babel_msg_node {
|
|
|
|
node n;
|
|
|
|
union babel_msg msg;
|
|
|
|
};
|
|
|
|
|
2018-02-13 23:39:36 +08:00
|
|
|
static inline int babel_sadr_enabled(struct babel_proto *p)
|
|
|
|
{ return p->ip6_rtable.addr_type == NET_IP6_SADR; }
|
2016-04-29 00:01:40 +08:00
|
|
|
|
|
|
|
/* babel.c */
|
|
|
|
void babel_handle_ack_req(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
void babel_handle_ack(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
void babel_handle_hello(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
void babel_handle_ihu(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
void babel_handle_router_id(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
void babel_handle_update(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
void babel_handle_route_request(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
void babel_handle_seqno_request(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
|
|
|
|
void babel_show_interfaces(struct proto *P, char *iff);
|
|
|
|
void babel_show_neighbors(struct proto *P, char *iff);
|
|
|
|
void babel_show_entries(struct proto *P);
|
2017-11-28 22:11:41 +08:00
|
|
|
void babel_show_routes(struct proto *P);
|
2016-04-29 00:01:40 +08:00
|
|
|
|
|
|
|
/* packets.c */
|
|
|
|
void babel_enqueue(union babel_msg *msg, struct babel_iface *ifa);
|
|
|
|
void babel_send_unicast(union babel_msg *msg, struct babel_iface *ifa, ip_addr dest);
|
|
|
|
int babel_open_socket(struct babel_iface *ifa);
|
|
|
|
void babel_send_queue(void *arg);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|