]> git.puffer.fish Git - matthieu/frr.git/commitdiff
FRR Release 8.4.5 rc/8.4 docker/8.4.5 frr-8.4.5
authorJafar Al-Gharaibeh <jafar@atcorp.com>
Thu, 6 Jun 2024 15:54:56 +0000 (10:54 -0500)
committerJafar Al-Gharaibeh <jafar@atcorp.com>
Thu, 6 Jun 2024 15:58:07 +0000 (10:58 -0500)
Changelog:

babeld
    Fix #11808 to avoid infinite loops

bgpd
    Check mandatory attributes more carefully for update message
    Do not explicitly print maxttl value for ebgp-multihop vty output
    Do not process nlris if the attribute length is zero
    Don't read the first byte of orf header if we are ahead of stream
    Ensure community data is freed in some cases.
    Ensure that the correct aspath is free'd
    Evpn code was not properly unlocking rd_dest
    Fix error handling when receiving bgp prefix sid attribute
    Fix null argument warning
    Fix session reset issue caused by malformed core attributes
    Fix use beyond end of stream of labeled unicast parsing
    Handle mp_reach_nlri malformed packets with session reset
    Ignore handling nlris if we received mp_unreach_nlri
    Include unsuppress-map as a valid outgoing policy
    Prevent from one more cve triggering this place
    Treat eor as withdrawn to avoid unwanted handling of malformed attrs
    Use enum bgp_create_error_code as argument in header
    Use treat-as-withdraw for tunnel encapsulation attribute

isisd
    Fix heap-after-free with prefix sid
    need to link directly against libyang

lib
    Fix evpn nexthop config order
    Allow unsetting walltime-warning and cpu-warning
    Make cmd_element->attr a bitmask & clarify
    Replace deprecated ares_gethostbyname
    Replace deprecated ares_process()

nhrpd
    Fix nhrp_peer leak
    Fix core dump on shutdown

ospf6d
    Fix crash because neighbor structure was freed
    Fix uninitialized warnings
    Ospfv3 route change comparision fixed for asbr-only change
    Stop crash in ospf6_write
    Prevent heap-buffer-overflow with unknown type

ospfd
    Check for nulls in vty code
    Correct opaque lsa extended parser
    Prevent use after free( and crash of ospf ) when no router ospf
    Protect call to get_edge() in ospf_te.c
    Solved crash in ospf te parsing
    Solved crash in ri parsing with ospf te

pimd
    Fix dr-priority range
    Fix null register before aging out reg-stop
    Fix order of operations for evaluating join
    Re-evaluated s,g oils upon rp changes and for empty sg upstream oils
    Fix crash when mixing ssm/any-source joins

ripd
    Revert "cleanup memory allocations on shutdown"

ripngd
    Revert "cleanup memory allocations on shutdown"

vtysh
    Print uniq lines when parsing `no service ...`

zebra
    Deny the routes if ip protocol cli refers to an undefined rmap
    Fix connected route deletion when multiple entry exists

Signed-off-by: Jafar Al-Gharaibeh <jafar@atcorp.com>
configure.ac
debian/changelog
redhat/frr.spec.in

index 02c5adcd5b73c088ac2fae4c8d45ff863cb1c951..77df510d0a6e4a9f337955024c047201a9433aee 100644 (file)
@@ -7,7 +7,7 @@
 ##
 AC_PREREQ([2.69])
 
-AC_INIT([frr], [8.4.4], [https://github.com/frrouting/frr/issues])
+AC_INIT([frr], [8.4.5], [https://github.com/frrouting/frr/issues])
 PACKAGE_URL="https://frrouting.org/"
 AC_SUBST([PACKAGE_URL])
 PACKAGE_FULLNAME="FRRouting"
index 05ce966939fa53345c96fc50180b0641afcabb81..f73b69d1109b86beb7ab04715b124e4e0864327e 100644 (file)
@@ -1,3 +1,9 @@
+frr (8.4.5-0) unstable; urgency=medium
+
+  * New upstream release FRR 8.4.5
+
+ -- Jafar Al-Gharaibeh <jafar@atcorp.com>  Thu, 06 Jun 2024 10:00:00 -0600
+
 frr (8.4.4-0) unstable; urgency=medium
 
   * New upstream release FRR 8.4.4
index 09d88f4f2d253f9e5aafbc03c7d6b1e0517ac08e..822115f5d3c280043099bf07d3893612c5ee28a7 100644 (file)
@@ -793,7 +793,69 @@ sed -i 's/ -M rpki//' %{_sysconfdir}/frr/daemons
 
 %changelog
 
-* Thu Jun 15 2023 Martin Winter <mwinter@opensourcerouting.org> - %{version}
+* Thu Jun 06 2024 Martin Winter <mwinter@opensourcerouting.org> - %{version}
+
+* Thu Jun 06 2024 Jafar Al-Gharaibeh <jafar@atcorp.com> - 8.4.5
+- babeld
+-    Fix #11808 to avoid infinite loops
+- bgpd
+-    Check mandatory attributes more carefully for update message
+-    Do not explicitly print maxttl value for ebgp-multihop vty output
+-    Do not process nlris if the attribute length is zero
+-    Don't read the first byte of orf header if we are ahead of stream
+-    Ensure community data is freed in some cases.
+-    Ensure that the correct aspath is free'd
+-    Evpn code was not properly unlocking rd_dest
+-    Fix error handling when receiving bgp prefix sid attribute
+-    Fix null argument warning
+-    Fix session reset issue caused by malformed core attributes
+-    Fix use beyond end of stream of labeled unicast parsing
+-    Handle mp_reach_nlri malformed packets with session reset
+-    Ignore handling nlris if we received mp_unreach_nlri
+-    Include unsuppress-map as a valid outgoing policy
+-    Prevent from one more cve triggering this place
+-    Treat eor as withdrawn to avoid unwanted handling of malformed attrs
+-    Use enum bgp_create_error_code as argument in header
+-    Use treat-as-withdraw for tunnel encapsulation attribute
+- isisd
+-    Fix heap-after-free with prefix sid
+-    Need to link directly against libyang
+- lib
+-    Allow unsetting walltime-warning and cpu-warning
+-    Make cmd_element->attr a bitmask & clarify
+-    Replace deprecated ares_gethostbyname
+-    Replace deprecated ares_process()
+- nhrpd
+-    Fix nhrp_peer leak
+-    Fix core dump on shutdown
+- ospf6d
+-    Fix crash because neighbor structure was freed
+-    Fix uninitialized warnings
+-    Ospfv3 route change comparision fixed for asbr-only change
+-    Stop crash in ospf6_write
+-    Prevent heap-buffer-overflow with unknown type
+- ospfd
+-    Check for nulls in vty code
+-    Correct opaque lsa extended parser
+-    Prevent use after free( and crash of ospf ) when no router ospf
+-    Protect call to get_edge() in ospf_te.c
+-    Solved crash in ospf te parsing
+-    Solved crash in ri parsing with ospf te
+- pimd
+-    Fix dr-priority range
+-    Fix null register before aging out reg-stop
+-    Fix order of operations for evaluating join
+-    Re-evaluated s,g oils upon rp changes and for empty sg upstream oils
+-    Fix crash when mixing ssm/any-source joins
+- ripd
+    Revert "cleanup memory allocations on shutdown"
+- ripngd
+    Revert "cleanup memory allocations on shutdown"
+- vtysh
+-    Print uniq lines when parsing `no service ...`
+- zebra
+-    Deny the routes if ip protocol cli refers to an undefined rmap
+-    Fix connected route deletion when multiple entry exists
 
 * Thu Jun 15 2023 Jafar Al-Gharaibeh <jafar@atcorp.com> - 8.4.4
 - This a convenience release/tag for house keeping