1998-10-18 12:50:43 +00:00
|
|
|
/*
|
1999-03-03 19:49:56 +00:00
|
|
|
* BIRD -- UNIX Kernel Route Syncer
|
1998-10-18 12:50:43 +00:00
|
|
|
*
|
2000-03-12 21:54:39 +00:00
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
1998-10-18 12:50:43 +00:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_KRT_H_
|
|
|
|
#define _BIRD_KRT_H_
|
|
|
|
|
1999-08-03 19:33:22 +00:00
|
|
|
struct config;
|
1999-03-03 19:49:56 +00:00
|
|
|
struct krt_config;
|
|
|
|
struct krt_proto;
|
1999-03-26 21:44:38 +00:00
|
|
|
struct kif_config;
|
|
|
|
struct kif_proto;
|
1999-03-03 19:49:56 +00:00
|
|
|
|
2017-12-07 12:28:24 +00:00
|
|
|
#include "nest/iface.h"
|
2016-04-12 09:14:54 +00:00
|
|
|
#include "sysdep/config.h"
|
|
|
|
#include CONFIG_INCLUDE_KRTSYS_H
|
1998-10-18 12:50:43 +00:00
|
|
|
|
2015-06-08 00:20:43 +00:00
|
|
|
#define KRT_DEFAULT_ECMP_LIMIT 16
|
|
|
|
|
2018-05-07 12:47:00 +00:00
|
|
|
#define EA_KRT_SOURCE EA_CODE(PROTOCOL_KERNEL, 0)
|
|
|
|
#define EA_KRT_METRIC EA_CODE(PROTOCOL_KERNEL, 1)
|
2011-04-13 10:32:27 +00:00
|
|
|
|
2020-02-13 15:59:53 +00:00
|
|
|
#define KRT_REF_SEEN 0x1 /* Seen in table */
|
|
|
|
#define KRT_REF_BEST 0x2 /* Best in table */
|
|
|
|
|
2023-10-06 02:31:19 +00:00
|
|
|
#define KRT_LEARN_NONE 0 /* Do not learn */
|
|
|
|
#define KRT_LEARN_ALIEN 1 /* Learn KRT_SRC_ALIEN routes */
|
|
|
|
#define KRT_LEARN_ALL 2 /* Learn both KRT_SRC_ALIEN and KRT_SRC_KERNEL routes */
|
|
|
|
|
1999-04-03 13:05:18 +00:00
|
|
|
/* Whenever we recognize our own routes, we allow learing of foreign routes */
|
|
|
|
|
|
|
|
#ifdef CONFIG_SELF_CONSCIOUS
|
|
|
|
#define KRT_ALLOW_LEARN
|
|
|
|
#endif
|
1998-12-07 10:15:42 +00:00
|
|
|
|
1999-03-03 19:49:56 +00:00
|
|
|
/* krt.c */
|
1998-10-18 12:50:43 +00:00
|
|
|
|
|
|
|
extern struct protocol proto_unix_kernel;
|
|
|
|
|
1999-02-05 21:38:50 +00:00
|
|
|
struct krt_config {
|
|
|
|
struct proto_config c;
|
2012-04-30 13:31:32 +00:00
|
|
|
struct krt_params sys; /* Sysdep params */
|
2017-06-14 11:15:35 +00:00
|
|
|
btime scan_time; /* How often we re-scan routes */
|
1999-03-03 19:49:56 +00:00
|
|
|
int persist; /* Keep routes when we exit */
|
|
|
|
int learn; /* Learn routes from other sources */
|
2014-03-20 13:07:12 +00:00
|
|
|
int graceful_restart; /* Regard graceful restart recovery */
|
2018-01-23 14:12:43 +00:00
|
|
|
int merge_paths; /* Exported routes are merged for ECMP */
|
1998-10-18 12:50:43 +00:00
|
|
|
};
|
|
|
|
|
1999-02-05 21:38:50 +00:00
|
|
|
struct krt_proto {
|
|
|
|
struct proto p;
|
2013-06-29 20:55:41 +00:00
|
|
|
struct krt_state sys; /* Sysdep state */
|
|
|
|
|
1999-04-03 13:05:18 +00:00
|
|
|
#ifdef KRT_ALLOW_LEARN
|
2021-03-30 16:51:31 +00:00
|
|
|
struct rtable *krt_table; /* Internal table of inherited routes */
|
1999-08-03 19:33:22 +00:00
|
|
|
#endif
|
2013-06-29 20:55:41 +00:00
|
|
|
|
1999-08-03 19:33:22 +00:00
|
|
|
timer *scan_timer;
|
2019-12-19 15:34:35 +00:00
|
|
|
struct bmap sync_map; /* Keeps track which exported routes were successfully written to kernel */
|
2020-01-07 17:35:03 +00:00
|
|
|
struct bmap seen_map; /* Routes seen during last periodic scan */
|
2013-06-29 20:55:41 +00:00
|
|
|
node krt_node; /* Node in krt_proto_list */
|
2015-12-20 15:58:37 +00:00
|
|
|
byte af; /* Kernel address family (AF_*) */
|
2014-03-20 13:07:12 +00:00
|
|
|
byte ready; /* Initial feed has been finished */
|
|
|
|
byte initialized; /* First scan has been finished */
|
2015-04-25 19:41:43 +00:00
|
|
|
byte reload; /* Next scan is doing reload */
|
1999-02-05 21:38:50 +00:00
|
|
|
};
|
|
|
|
|
1999-08-03 19:33:22 +00:00
|
|
|
extern pool *krt_pool;
|
1998-12-06 17:40:42 +00:00
|
|
|
|
1999-03-03 19:49:56 +00:00
|
|
|
#define KRT_CF ((struct krt_config *)p->p.cf)
|
|
|
|
|
2000-03-12 21:54:39 +00:00
|
|
|
#define KRT_TRACE(pr, fl, msg, args...) do { \
|
|
|
|
DBG("KRT: " msg "\n" , ## args); \
|
|
|
|
if (pr->p.debug & fl) \
|
|
|
|
{ log(L_TRACE "%s: " msg, pr->p.name , ## args); } } while(0)
|
|
|
|
|
2012-04-30 13:31:32 +00:00
|
|
|
struct proto_config * kif_init_config(int class);
|
2012-01-23 02:15:12 +00:00
|
|
|
void kif_request_scan(void);
|
2022-07-24 00:15:20 +00:00
|
|
|
void krt_use_shared_scan(void);
|
2020-02-13 15:59:53 +00:00
|
|
|
void krt_got_route(struct krt_proto *p, struct rte *e, s8 src);
|
|
|
|
void krt_got_route_async(struct krt_proto *p, struct rte *e, int new, s8 src);
|
1999-03-04 18:36:18 +00:00
|
|
|
|
2019-12-19 15:34:35 +00:00
|
|
|
static inline int
|
|
|
|
krt_get_sync_error(struct krt_proto *p, struct rte *e)
|
|
|
|
{
|
|
|
|
return (p->p.proto_state == PS_UP) &&
|
|
|
|
bmap_test(&p->p.main_channel->export_map, e->id) &&
|
|
|
|
!bmap_test(&p->sync_map, e->id);
|
|
|
|
}
|
|
|
|
|
1999-03-04 18:36:18 +00:00
|
|
|
/* Values for rte->u.krt_sync.src */
|
|
|
|
#define KRT_SRC_UNKNOWN -1 /* Nobody knows */
|
|
|
|
#define KRT_SRC_BIRD 0 /* Our route (not passed in async mode) */
|
|
|
|
#define KRT_SRC_REDIRECT 1 /* Redirect route, delete it */
|
|
|
|
#define KRT_SRC_ALIEN 2 /* Route installed by someone else */
|
2010-02-26 09:55:58 +00:00
|
|
|
#define KRT_SRC_KERNEL 3 /* Kernel routes, are ignored by krt syncer */
|
1999-03-03 19:49:56 +00:00
|
|
|
|
1999-03-26 21:44:38 +00:00
|
|
|
extern struct protocol proto_unix_iface;
|
|
|
|
|
|
|
|
struct kif_config {
|
|
|
|
struct proto_config c;
|
2012-04-30 13:31:32 +00:00
|
|
|
struct kif_params sys; /* Sysdep params */
|
2017-12-07 12:06:01 +00:00
|
|
|
|
|
|
|
list iface_list; /* List of iface configs (struct kif_iface_config) */
|
2017-06-14 11:15:35 +00:00
|
|
|
btime scan_time; /* How often we re-scan interfaces */
|
2017-12-07 12:06:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct kif_iface_config {
|
|
|
|
struct iface_patt i;
|
|
|
|
|
|
|
|
ip_addr pref_v4;
|
|
|
|
ip_addr pref_v6;
|
|
|
|
ip_addr pref_ll;
|
1999-03-26 21:44:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct kif_proto {
|
|
|
|
struct proto p;
|
2013-06-29 20:55:41 +00:00
|
|
|
struct kif_state sys; /* Sysdep state */
|
1999-03-26 21:44:38 +00:00
|
|
|
};
|
|
|
|
|
2016-04-12 09:14:54 +00:00
|
|
|
extern struct kif_proto *kif_proto;
|
2015-11-23 10:13:40 +00:00
|
|
|
|
1999-03-26 21:44:38 +00:00
|
|
|
#define KIF_CF ((struct kif_config *)p->p.cf)
|
|
|
|
|
2017-12-07 12:06:01 +00:00
|
|
|
struct kif_iface_config * kif_get_iface_config(struct iface *iface);
|
2012-04-30 13:31:32 +00:00
|
|
|
struct proto_config * krt_init_config(int class);
|
|
|
|
|
1998-10-18 12:50:43 +00:00
|
|
|
|
2012-04-30 20:21:52 +00:00
|
|
|
/* krt sysdep */
|
1999-03-03 19:49:56 +00:00
|
|
|
|
2015-11-03 13:42:41 +00:00
|
|
|
void krt_sys_io_init(void);
|
2012-04-30 13:31:32 +00:00
|
|
|
void krt_sys_init(struct krt_proto *);
|
2015-11-03 13:42:41 +00:00
|
|
|
int krt_sys_start(struct krt_proto *);
|
2013-06-29 20:55:41 +00:00
|
|
|
void krt_sys_shutdown(struct krt_proto *);
|
2012-04-30 13:31:32 +00:00
|
|
|
int krt_sys_reconfigure(struct krt_proto *p UNUSED, struct krt_config *n, struct krt_config *o);
|
1998-10-18 12:50:43 +00:00
|
|
|
|
2012-04-30 13:31:32 +00:00
|
|
|
void krt_sys_preconfig(struct config *);
|
|
|
|
void krt_sys_postconfig(struct krt_config *);
|
|
|
|
void krt_sys_init_config(struct krt_config *);
|
|
|
|
void krt_sys_copy_config(struct krt_config *, struct krt_config *);
|
1998-10-18 12:50:43 +00:00
|
|
|
|
2012-04-30 13:31:32 +00:00
|
|
|
int krt_capable(rte *e);
|
|
|
|
void krt_do_scan(struct krt_proto *);
|
2018-05-29 10:08:12 +00:00
|
|
|
void krt_replace_rte(struct krt_proto *p, net *n, rte *new, rte *old);
|
2019-08-17 11:36:36 +00:00
|
|
|
int krt_sys_get_attr(const eattr *a, byte *buf, int buflen);
|
1998-10-18 12:50:43 +00:00
|
|
|
|
1999-03-01 19:05:58 +00:00
|
|
|
|
2012-04-30 20:21:52 +00:00
|
|
|
/* kif sysdep */
|
1999-03-01 19:05:58 +00:00
|
|
|
|
2012-04-30 13:31:32 +00:00
|
|
|
void kif_sys_init(struct kif_proto *);
|
|
|
|
void kif_sys_start(struct kif_proto *);
|
|
|
|
void kif_sys_shutdown(struct kif_proto *);
|
|
|
|
int kif_sys_reconfigure(struct kif_proto *, struct kif_config *, struct kif_config *);
|
|
|
|
|
|
|
|
void kif_sys_init_config(struct kif_config *);
|
|
|
|
void kif_sys_copy_config(struct kif_config *, struct kif_config *);
|
|
|
|
|
|
|
|
void kif_do_scan(struct kif_proto *);
|
1998-12-08 18:37:58 +00:00
|
|
|
|
2017-12-07 12:06:01 +00:00
|
|
|
int kif_update_sysdep_addr(struct iface *i);
|
1999-03-03 19:49:56 +00:00
|
|
|
|
1998-10-18 12:50:43 +00:00
|
|
|
#endif
|