22 Commits

Author SHA1 Message Date
Adolf Belka
b15de7ba52 bird: Update to version 2.14
- Update from version 2.0.12 to 2.14
- Update of rootfile not required
- Changelog
    2.14 (2023-10-06)
	  o MPLS subsystem
	  o L3VPN: BGP/MPLS VPNs (RFC 4364)
	  o BGP: Access to unknown route attributes
	  o RAdv: Custom options
	  o Babel: RTT metric extension
	  o BMP: Refactored route monitoring
	  o BMP: Multiple instances of BMP protocol
	  o BMP: Both pre-policy and post-policy monitoring
	  o Experimental route aggregation
	  o Filter: Method framework
	  o Filter: Functions have return type statements
	  o Filter: New bytestring data type
	  o Kernel: Option to learn kernel routes
	  o Many bugfixes and improvements
	Notes:
	  User-defined filter functions that return values now should have return type
	   statements. We still accept functions without such statement, if they could be
	   properly typed.
	  For loops allowed to use both existing iterator variables or ones defined in
	   the for statement. We no longer support the first case, all iterator variables
	   must be defined in the for statement (e.g. 'for int i in bgp_path ...').
	  Due to oversight, VRF interfaces were not included in respective VRFs, this is
	   fixed now.
    2.13.1 (2023-06-23)
	  o BGP: Fix role check when no capability option is present
	  o Filter: Fixed segfault when a case option had an empty block
	  This is a bugfix version.
    2.13 (2023-04-21)
	  o Babel: IPv4 via IPv6 extension (RFC 9229)
	  o Babel: Improve authentication on lossy networks
	  o BGP: New 'allow bgp_med' option
	  o BSD: Support for IPv4 routes with IPv6 nexthop on FreeBSD
	  o Experimental BMP protocol implementation
	  o Important bugfixes
	Notes:
	  We changed versioning scheme from <epoch>.<major>.<minor> to more common
	   <major>.<minor>.<patch> . From now on, you may expect that BIRD 2.13.x will be
	   strictly only fixing bugs found in 2.13, whereas BIRD 2.14 will also contain
	   new features.
	  This BIRD version contains an alpha release of BMP protocol implementation.
	   It is not ready for production usage and therefore it is not compiled by
	   default and have to be enabled during installation.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2024-01-23 11:34:45 +00:00
Adolf Belka
821fef53bd bird: Update to version 2.0.12
- Update from version 2.0.11 to 2.0.12
- Update of rootfile
- Changelog
Version 2.0.12 (2023-01-23)
  o Filter: New 'onlink' route attribute
  o Compile-time option to use 4-way tries instead of 16-way ones
  o BSD: Support for kernel route metric and other improvements
  o Important bugfixes

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
2023-04-18 21:21:27 +00:00
Michael Tremer
9e5ab853a5 bird: Update to 2.0.11
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-12-31 10:56:44 +00:00
Michael Tremer
c183124f58 Bump PAK_VER for all packages that use SERVICES
Since we have extended services.cgi that it reads the Services field
from the Pakfire metadata, we will need to make sure that that metadata
is going to be on those systems.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2022-09-15 10:43:54 +00:00
Adolf Belka
0f447b470a bird: Update to version 2.0.9
- Update from version 2.0.8 to 2.0.9
- Update of rootfile not required
- Changelog
	Version 2.0.9 (2022-02-09)
	  o BGP: Flowspec validation procedure
	  o Babel: MAC authentication support
	  o Routing table configuration blocks
	  o Optional prefix trie in routing table for faster LPM/interval queries
	  o CLI: New 'show route in <prefix>' command
	  o Filter: Faster (16-way) prefix sets
	  o Filter: MPLS label route attribute
	  o Filter: Operators to pick community components
	  o Filter: Operators to find minimum and maximum element of lists
	  o BGP: New 'free bind' option
	  o BGP: Log route updates that were changed to withdraws
	  o BGP: Improved 'invalid next hop' error reporting
	  o OSPF: Allow ifaces with host address as unnumbered PtP or PtMP ifaces
	  o OSPF: All packets on PtP networks should be sent to AllSPFRouters address
	  o Scripts for apkg-powered upstream packaging for deb and rpm
	  o Support for Blake2s and Blake2b hash functions
	  o Security keys / passwords can be entered in hexadecimal digits
	  o Memory statistics split into Effective and Overhead
	  o Linux: New option 'netlink rx buffer' to specify netlink socket buffer size
	  o BSD: Assume onlink flag on ifaces with only host addresses
	  o Many bugfixes
	  Notes:
	  - For OSPF on PtP network, BIRD now sends all packets to multicast AllSPFRouters
	    address (as required in RFC 2328 8.1). This likely breaks setups with multiple
	    neighbors on a network configured as PtP, which worked in previous versions.
	    Such links should be configured as PtMP.
	  - Since Linux 5.3, netlink socket can be flooded by route cache entries during
	    route table scan. This version mitigates that issue by using strict netlink
	    filtering.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-04-18 21:06:22 +00:00
Peter Müller
9a7e4d8506 Switch checksums from MD5 to BLAKE2
Historically, the MD5 checksums in our LFS files serve as a protection
against broken downloads, or accidentally corrupted source files.

While the sources are nowadays downloaded via HTTPS, it make sense to
beef up integrity protection for them, since transparently intercepting
TLS is believed to be feasible for more powerful actors, and the state
of the public PKI ecosystem is clearly not helping.

Therefore, this patch switches from MD5 to BLAKE2, updating all LFS
files as well as make.sh to deal with this checksum algorithm. BLAKE2 is
notably faster (and more secure) than SHA2, so the performance penalty
introduced by this patch is negligible, if noticeable at all.

In preparation of this patch, the toolchain files currently used have
been supplied with BLAKE2 checksums as well on
https://source.ipfire.org/.

Cc: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
Acked-by: Michael Tremer <michael.tremeripfire.org>
2022-04-02 14:19:25 +00:00
Peter Müller
66c3619872 Early spring clean: Remove trailing whitespaces, and correct licence headers
Bumping across one of our scripts with very long trailing whitespaces, I
thought it might be a good idea to clean these up. Doing so, some
missing or inconsistent licence headers were fixed.

There is no need in shipping all these files en bloc, as their
functionality won't change.

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-18 23:54:57 +00:00
Robin Roevens
f15707c78c buildprocess: Add extra metadata to pak lfs files
* Add a Summary and Services field to all pak lfs files
* Replace occurances of INSTALL_INITSCRIPT with new INSTALL_INITSCRIPTS
  macro in all pak lfs files.

Signed-off-by: Robin Roevens <robin.roevens@disroot.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:13:15 +00:00
Adolf Belka
73093e59fe bird: Update to version 2.0.8
- Update from 2.0.7 to 2.0.8
- Update of rootfile not required
- Changelog
   Version 2.0.8 (2021-03-18)
     o Automatic channel reloads based on RPKI changes
     o Multiple static routes with the same network
     o Use bitmaps to keep track of exported routes
     o Per-channel debug flags
     o CLI commands show info from multiple protocols
     o Linux: IPv4 routes with IPv6 nexthops
     o Filter: Optimized redesign of prefix sets
     o Filter: Improved type checking of user filters
     o Filter: New src/dst accessors for Flowspec and SADR
     o Filter: New 'weight' route attribute
     o Filter: BGP path mask loop operator
     o Filter: Remove quitbird command
     o RIP: Demand circuit support (RFC 2091)
     o BGP: New 'allow as sets' and 'enforce first as' options
     o BGP: Support for BGP hostname capability
     o BGP: Support for MD5SIG with dynamic BGP
     o BFD: Optional separation of IPv4 / IPv6 BFD instances
     o BFD: Per-peer session options
     o RPKI: Allow build without libSSH
     o RPKI: New 'ignore max length' option
     o OSPF: Redesign of handling of unnumbered PtPs
     o OSPF: Allow key id 0 in authentication
     o Babel: Use onlink flag for routes with unreachable next hop
     o Many bugfixes
   Notes:
     Automatic channel reloads based on RPKI changes are enabled by default,
      but require import table enabled when used in BGP import filter.
     BIRD now uses bitmaps to keep track of exported routes instead of
      re-evaluation of export filters. That should improve speed and accuracy in
      route export handling during reconfiguration, but takes some more memory.
     Per-channel debug logging and some CLI commands (like 'show ospf neighbors')
      defaulting to all protocol instances lead to some minor changes in log and
      CLI output. Caution is recommended when logs or CLI output are monitored by
      scripts.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2021-09-05 17:43:36 +00:00
Adolf Belka
4714077564 bird: Update to 2.0.7
Update bird from 2.0.6 to 2.0.7
Changes from changelog
- BGP: Fix reconfiguration with import table
       *Change of some options requires route refresh, but when import table is
	active, channel reload is done from it instead of doing full route
	refresh. So in this case we request it internally.
- Doc: Minor documentation fixes
- Nest: Handle non-MPLS on MPLS case in recursive route update
       *When non-MPLS recursive route resolves to MPLS underlying route,
	then it should get MPLS labels from the the underlying route.
- Nest: Handle PtP links in recursive route update
       *Underlying (IGP) route may lead to PtP link, in this case it does not
	need gateway. Which is different than direct route without gateway.
       *When recursive (BGP) route uses PtP route, it should not use recursive
	next hop as immediate next hop, while for direct routes it should.
- Nest: Fix recursive route update
       *Missing cleanup can lead to dangling pointer to old next hops.

Signed-off-by: Adolf Belka <ahb.ipfire@gmail.com>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2020-12-18 09:50:11 +00:00
Michael Tremer
dbbd72a3b1 bird: Fix build with GCC 10
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2020-08-16 10:29:42 +00:00
Michael Tremer
2dc2a27803 lfs: Drop quotes in DEPS variable
Not sure why this has ever been there. This simply makes it
nicer to read and edit because we can have line-breaks now.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2020-03-24 08:57:27 +00:00
Michael Tremer
1a23cf7324 bird: Fix path of configuration file in backup
The backup did not pack the configuration file
due to an incorrect path.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2019-11-30 09:51:23 +00:00
Michael Tremer
95180fe563 bird: Update to 2.0.6
Minor update which will enable support for RPKI because libssh is
now present.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2019-10-08 18:19:35 +00:00
Michael Tremer
efc5cb1d34 bird: Update to 2.0.4
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2019-07-22 21:12:20 +01:00
Michael Tremer
a4e3a76af9 bird: Add initscript
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2018-12-01 16:13:25 +00:00
Michael Tremer
046b436c76 bird: Update to 2.0.2
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2018-12-01 16:13:25 +00:00
Michael Tremer
be7f989249 bird: Backup configuration file on update
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2018-12-01 16:13:25 +00:00
Peter Müller
eee037b890 update disclaimer in LFS files
Most of these files still used old dates and/or domain names for contact
mail addresses. This is now replaced by an up-to-date copyright line.

Just some housekeeping... :-)

Signed-off-by: Peter Müller <peter.mueller@link38.eu>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2018-09-10 19:20:36 +01:00
Michael Tremer
9069a2d075 bird: FTBFS on aarch64
Needed automake update

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2018-05-31 12:08:04 +01:00
Marcel Lorenz
12623af5d0 bird: update to 1.6.3
Signed-off-by: Marcel Lorenz <marcel.lorenz@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2017-06-14 15:52:33 +01:00
Michael Tremer
8c1cf3b1f9 bird: New package
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2016-03-08 22:44:01 +00:00