Ondrej Zajicek (work)
ca2dacfcee
Nest: Fix bug in export table
...
Exported route may be in modified state, we need to get cached one for
rte_same() and rta_clone() to work properly.
2019-09-24 17:17:37 +02:00
Ondrej Zajicek (work)
ea0917bcba
Filter: Fix eval command
2019-09-24 00:18:48 +02:00
Ondrej Zajicek (work)
9c79022153
Nest: Fix help for 'graceful restart' command
...
Multi-worded commands are not automatically added to top-level
help output.
Thanks to Christoph for the bugreport.
2019-09-23 14:52:31 +02:00
Maria Matejka
3f477ccb03
Filters: Function body comparison result now used.
...
Function bodies were compared in post-parse time, yet the result was not
used and the functions were incorrectly considered the same as before.
Now the result is used to reload affected protocols.
2019-09-23 14:03:26 +02:00
Ondrej Zajicek (work)
eb1e43a9af
BGP: Fix setup with multiple dynamic BGP ranges
...
Based on a patch from Liam Nattrass, thanks.
2019-09-17 14:45:14 +02:00
Ondrej Zajicek (work)
5235c3f78d
NEWS and version update
2019-09-10 17:34:41 +02:00
Ondrej Zajicek (work)
532471967e
Doc: Update BGP mask documentation
2019-09-10 17:28:06 +02:00
Ondrej Zajicek (work)
452e90ba72
Filter: Fix crash with 'where' filters and function calls
...
The old 'where' code computed size value incorrectly, which leads
to invalid instruction lines and filter errors or crashes.
2019-09-10 13:45:18 +02:00
Ondrej Zajicek (work)
1127887a8b
BGP: Fix handling of bgp_aggregator atttribute
...
The attribute should not be modifiable by filters as we do not
support its type.
2019-09-09 13:17:30 +02:00
Ondrej Zajicek (work)
8388f5a7e1
BGP: Fix bugs in handling of shutdown messages
...
There is an improper check for valid message size, which may lead to
stack overflow and buffer leaks to log when a large message is received.
Thanks to Daniel McCarney for bugreport and analysis.
2019-09-09 03:13:35 +02:00
Ondrej Zajicek (work)
56d8b1e7f6
OSPF: Fix 'show ospf lsadb' cmd without proto arg
...
It crashed when used without protocol argument.
Thanks to Alexander for the bugreport.
2019-08-29 20:58:16 +02:00
Maria Matejka
32a254050d
Channel refeed with import table splitting between routes for one prefix
2019-08-27 19:14:15 +02:00
Ondrej Zajicek (work)
5ab3447de1
Sysdep: Drop supplementary groups when dropping GID
...
We forgot to do that. Oops.
2019-08-21 17:30:00 +02:00
Ondrej Zajicek (work)
4fa0e472cf
BGP: Use reallocation for capability structure
...
Instead of having large stack buffer for max amount of AFI/SAFI pairs.
The old code is not correct w.r.t. extendeded option length, as more
AFI/SAFI pairs may fit into the capability option.
2019-08-21 17:16:08 +02:00
Ondrej Zajicek (work)
524d253853
BGP: Implement extended optional parameters length
...
Extends BGP options/capabilities data length to 16bit, to avoid issues
with too many capabilities. See draft-ietf-idr-ext-opt-param-07
2019-08-20 19:15:50 +02:00
Ondrej Zajicek (work)
a297a4f044
Nest: Fix crash in route reload when some channels are not up.
...
Only channels that are up can be reloaded.
2019-08-14 06:02:33 +02:00
Ondrej Zajicek (work)
b7d7599ce3
BGP: implement Adj-RIB-Out
...
The patch implements optional internal export table to a channel and
hooks it to BGP so it can be used as Adj-RIB-Out. When enabled, all
exported (post-filtered) routes are stored there. An export table can be
examined using e.g. 'show route export table bgp1.ipv4'.
2019-08-14 06:02:33 +02:00
Maria Matejka
dfe63ed84d
Filter: Fixing empty block and never-executed-statement bug
2019-08-13 16:45:27 +02:00
Ondrej Zajicek (work)
70a4320bdd
RAdv: Allow solicited RAs to be sent as unicast
...
Add option to send solicited router advertisements as unicast directly
to soliciting nodes instead of as multicast to all-nodes group.
2019-08-12 00:43:19 +02:00
Ondrej Zajicek (work)
9f3e098320
Filter: Allow to use set constants / expressions in path masks
...
Allow to not only use set literals in path masks, but also existing
set constants or set expressions.
2019-08-06 18:54:19 +02:00
Ondrej Zajicek (work)
ef113c6f72
Filter: Allow to use sets in path masks
2019-08-06 16:58:13 +02:00
Ondrej Zajicek (work)
e2b530aa72
BGP: Improve reconfiguration
...
Several BGP channel options (including 'next hop self') could be
reconfigured without session reset, with just route refeed/refresh.
The patch improves reconfiguration code to do it that way.
2019-08-06 15:29:06 +02:00
Ondrej Zajicek (work)
f6a6a77640
BGP: Fix 'deterministic med' to work with 'merge paths'
...
The 'deterministic med' option is implemented by suppressing other than
best-in-group routes (grouped by ASN) from best route selection. This
interferes with 'merge paths' as supressed routes are no longer mergable
with best route. This is fixed by suppressing only those routes that are
not mergable with best-in-group route.
2019-08-06 15:09:42 +02:00
Ondrej Zajicek (work)
8c42205e35
Configure: CFLAGS update
...
- add -flto only to default CFLAGS
- add -fno-strict-aliasing, -fno-strict-overflow always
- remove -Wno-implicit-fallthrough
2019-08-06 14:54:36 +02:00
Ondrej Zajicek
cc02da816f
Show LDFLAGS in configure
2019-08-01 14:49:03 +02:00
Ondrej Zajicek
3ffb0c4f25
Enable more threads for flto
2019-08-01 14:45:23 +02:00
Ondrej Zajicek
de41d24a3d
Fix output of CFLAGS in configure script
2019-08-01 14:27:20 +02:00
Ondrej Zajicek (work)
543875e080
NEWS and version update
2019-07-31 23:35:29 +02:00
Ondrej Zajicek (work)
96e4d0960c
Change 'graceful down' command to 'graceful restart' and update docs
...
The command initiating planned graceful restart including bird shutdown
should be called 'graceful restart' instead of 'graceful down', as the
later should be reserved for graceful shutdown in style of RFC 8326.
2019-07-31 19:45:29 +02:00
Ondrej Zajicek (work)
8c703ecf73
Doc: Update documentation about VRFs and BFD
2019-07-30 19:21:06 +02:00
Maria Matejka
2de1e2062e
Conf: Fixed symbol redefinition
2019-07-30 14:28:40 +02:00
Maria Matejka
48addc88be
Log: Fixed race condition in reconfigure while BFD is running
2019-07-30 12:26:37 +02:00
Vincent Bernat
3b62417c35
RPKI: Fix allocation of hostname when using an IPv6 address
2019-07-29 15:42:30 +02:00
Ondrej Zajicek (work)
00284f0ed6
BFD: Fix formatting of 'show bfd sessions'
...
The formatting was broken due to longer date in 'since' column.
2019-07-25 14:24:16 +02:00
Ondrej Zajicek (work)
cec40a7467
Merge remote-tracking branch 'origin/mq-filter-stack'
2019-07-24 15:38:32 +02:00
Ondrej Zajicek (work)
18f70a6229
Nest: VRF of protocol can be explicitly specified as 'default'
...
Protocol can have specified VRF, in such case it is restricted to a set
of ifaces associated with the VRF, otherwise it can use all interfaces.
The patch allows to specify VRF as 'default', in which case it is
restricted to a set of iface not associated with any VRF.
2019-07-24 15:08:03 +02:00
Ondrej Zajicek (work)
048c2f0e8c
OSPF: Fix formatting of 'show ospf neighbors'
...
The formatting was broken when too short router-id was used.
2019-07-23 17:02:41 +02:00
Ondrej Zajicek (work)
15b0a92294
RPKI: Fix reconfiguration when ssh parameters are undefined
2019-07-23 01:52:18 +02:00
Ondrej Zajicek (work)
d843c27478
Lib: Improve printf() tests
...
Includes patch from Maximilian Eschenbacher
2019-07-18 02:39:35 +02:00
Ondrej Zajicek (work)
39edf4abca
Lib: Fix print of 64-bit router id
...
Mismatched types to printf(). The old code coincidentally worked on amd64
due to its calling conventions.
Thanks to Maximilian Eschenbacher for the bugreport.
2019-07-18 01:57:26 +02:00
Ondrej Zajicek (work)
cf7ff99513
BFD: Support for VRFs
...
Allow multiple BFD instances in separate VRFs, dispatch BFD requests
according to VRFs.
Thanks to Alexander Zubkov for notice and patches.
2019-07-17 16:20:35 +02:00
Ondrej Zajicek (work)
2eaf65ec60
Netlink: Fix parsing of multipath routes with MPLS labels
2019-07-15 18:16:55 +02:00
Ondrej Zajicek (work)
8235c4747d
Netlink: Use route replace for IPv4
...
Use route replace netlink op instead of delete+add netlink ops for kernel
IPv4 route replace. This avoids some packetloss during route replace.
Still use the old behavior for IPv6, as some kernel bugs are hidden in
IPv6 ECMP handling.
2019-07-15 16:23:18 +02:00
Maria Matejka
8263690e75
Merge remote-tracking branch 'origin/master' into mq-filter-stack
2019-07-15 16:07:16 +02:00
Maria Matejka
efd7c87b5b
Filter: further split of print & die to FI_PRINT, FI_FLUSH and FI_DIE
2019-07-15 15:46:36 +02:00
Maria Matejka
3782454e8d
Filter: Simpler filter context allocation
2019-07-15 15:46:36 +02:00
Maria Matejka
f634adc7dc
Filter: FID_MEMBER debug string is a C constant string
2019-07-15 15:17:04 +02:00
Maria Matejka
c0999a149c
Filter: Converted FI_PRINT and FI_PATHMASK_CONSTRUCT to VARARG
2019-07-15 15:12:18 +02:00
Maria Matejka
c29d73a06a
Filter: fixed excessive stack allocation in functions with args but no local vars
2019-07-15 15:06:52 +02:00
Maria Matejka
0da06b7103
Filter: lots of documentation
2019-07-15 13:19:01 +02:00