2012-05-04 14:38:25 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- Linux Netlink Configuration
|
|
|
|
*
|
|
|
|
* (c) 1999--2000 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CF_HDR
|
|
|
|
|
|
|
|
CF_DECLS
|
|
|
|
|
2024-03-28 18:16:44 +00:00
|
|
|
CF_KEYWORDS(KERNEL, TABLE, METRIC, NETLINK, RX, BUFFER)
|
2024-02-16 13:29:54 +00:00
|
|
|
|
|
|
|
CF_KEYWORDS(KRT_LOCK_MTU, KRT_LOCK_WINDOW, KRT_LOCK_RTT, KRT_LOCK_RTTVAR,
|
2024-02-16 13:54:17 +00:00
|
|
|
KRT_LOCK_SSTHRESH, KRT_LOCK_CWND, KRT_LOCK_ADVMSS, KRT_LOCK_REORDERING,
|
2024-02-16 13:29:54 +00:00
|
|
|
KRT_LOCK_HOPLIMIT, KRT_LOCK_INITCWND, KRT_LOCK_RTO_MIN, KRT_LOCK_INITRWND,
|
|
|
|
KRT_LOCK_QUICKACK, KRT_LOCK_CONGCTL, KRT_LOCK_FASTOPEN_NO_COOKIE,
|
|
|
|
KRT_FEATURE_ECN, KRT_FEATURE_ALLFRAG)
|
2012-05-04 14:38:25 +00:00
|
|
|
|
2023-01-20 13:07:38 +00:00
|
|
|
%type <fab> attr_bit
|
|
|
|
|
2012-05-04 14:38:25 +00:00
|
|
|
|
|
|
|
CF_GRAMMAR
|
|
|
|
|
2018-06-26 12:29:03 +00:00
|
|
|
kern_proto: kern_proto kern_sys_item ';' ;
|
2012-05-04 14:38:25 +00:00
|
|
|
|
2013-06-29 20:55:41 +00:00
|
|
|
kern_sys_item:
|
2016-09-15 12:59:06 +00:00
|
|
|
KERNEL TABLE expr { THIS_KRT->sys.table_id = $3; }
|
|
|
|
| METRIC expr { THIS_KRT->sys.metric = $2; }
|
2022-01-17 04:11:29 +00:00
|
|
|
| NETLINK RX BUFFER expr { THIS_KRT->sys.netlink_rx_buffer = $4; }
|
2012-05-04 14:38:25 +00:00
|
|
|
;
|
|
|
|
|
2018-12-27 13:26:11 +00:00
|
|
|
/* Bits of EA_KRT_LOCK, based on RTAX_* constants */
|
2024-03-28 18:16:44 +00:00
|
|
|
attr_bit: KRT_LOCK_MTU { $$ = f_new_dynamic_attr_bit(2, "krt_lock"); } ;
|
2022-03-19 15:23:42 +00:00
|
|
|
attr_bit: KRT_LOCK_WINDOW { $$ = f_new_dynamic_attr_bit(3, "krt_lock"); } ;
|
2024-03-28 18:16:44 +00:00
|
|
|
attr_bit: KRT_LOCK_RTT { $$ = f_new_dynamic_attr_bit(4, "krt_lock"); } ;
|
2022-03-19 15:23:42 +00:00
|
|
|
attr_bit: KRT_LOCK_RTTVAR { $$ = f_new_dynamic_attr_bit(5, "krt_lock"); } ;
|
2024-03-28 19:00:50 +00:00
|
|
|
attr_bit: KRT_LOCK_SSTHRESH { $$ = f_new_dynamic_attr_bit(6, "krt_lock"); } ;
|
2024-03-28 18:16:44 +00:00
|
|
|
attr_bit: KRT_LOCK_CWND { $$ = f_new_dynamic_attr_bit(7, "krt_lock"); } ;
|
2022-03-19 15:23:42 +00:00
|
|
|
attr_bit: KRT_LOCK_ADVMSS { $$ = f_new_dynamic_attr_bit(8, "krt_lock"); } ;
|
2024-03-28 18:16:44 +00:00
|
|
|
attr_bit: KRT_LOCK_REORDERING { $$ = f_new_dynamic_attr_bit(9, "krt_lock"); } ;
|
|
|
|
attr_bit: KRT_LOCK_HOPLIMIT { $$ = f_new_dynamic_attr_bit(10, "krt_lock"); } ;
|
|
|
|
attr_bit: KRT_LOCK_INITCWND { $$ = f_new_dynamic_attr_bit(11, "krt_lock"); } ;
|
2024-02-16 13:29:54 +00:00
|
|
|
/* No lock for FEATURES bitfield */
|
2024-03-28 18:16:44 +00:00
|
|
|
attr_bit: KRT_LOCK_RTO_MIN { $$ = f_new_dynamic_attr_bit(13, "krt_lock"); } ;
|
|
|
|
attr_bit: KRT_LOCK_INITRWND { $$ = f_new_dynamic_attr_bit(14, "krt_lock"); } ;
|
|
|
|
attr_bit: KRT_LOCK_QUICKACK { $$ = f_new_dynamic_attr_bit(15, "krt_lock"); } ;
|
|
|
|
attr_bit: KRT_LOCK_CONGCTL { $$ = f_new_dynamic_attr_bit(16, "krt_lock"); } ;
|
|
|
|
attr_bit: KRT_LOCK_FASTOPEN_NO_COOKIE { $$ = f_new_dynamic_attr_bit(17, "krt_lock"); } ;
|
2022-03-19 15:23:42 +00:00
|
|
|
|
|
|
|
/* Bits of EA_KRT_FEATURES */
|
|
|
|
attr_bit: KRT_FEATURE_ECN { $$ = f_new_dynamic_attr_bit(0, "krt_features"); } ;
|
|
|
|
attr_bit: KRT_FEATURE_ALLFRAG { $$ = f_new_dynamic_attr_bit(3, "krt_features"); } ;
|
KRT: Add support for plenty of kernel route metrics
Linux kernel route metrics (RTA_METRICS netlink route attribute) are
represented and accessible as new route attributes:
krt_mtu, krt_window, krt_rtt, krt_rttvar, krt_sstresh, krt_cwnd, krt_advmss,
krt_reordering, krt_hoplimit, krt_initcwnd, krt_rto_min, krt_initrwnd,
krt_quickack, krt_lock_mtu, krt_lock_window, krt_lock_rtt, krt_lock_rttvar,
krt_lock_sstresh, krt_lock_cwnd, krt_lock_advmss, krt_lock_reordering,
krt_lock_hoplimit, krt_lock_rto_min, krt_feature_ecn, krt_feature_allfrag
2015-05-12 14:42:22 +00:00
|
|
|
|
2023-10-27 13:56:06 +00:00
|
|
|
/* Using attribute bits in filters (moved here to not confuse Bison on *BSD) */
|
2024-03-28 18:46:24 +00:00
|
|
|
lvalue: attr_bit { $$ = (struct f_lval) { .type = F_LVAL_ATTR_BIT, .fab = $1, .rte = f_new_inst(FI_CURRENT_ROUTE), }; };
|
2012-05-04 14:38:25 +00:00
|
|
|
|
|
|
|
CF_CODE
|
|
|
|
|
|
|
|
CF_END
|