mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-11 16:39:33 +00:00
[bgpd] low-impact DoS: crash on malformed community with debug set
2007-09-07 Paul Jakma <paul.jakma@sun.com> * (general) bgpd can be made crash by remote peers if debug bgp updates is set, due to NULL pointer dereference. Reported by "Mu Security Research Team", <security@musecurity.com>. * bgp_attr.c: (bgp_attr_community) If community length is 0, don't set the community-present attribute bit, just return early. * bgp_debug.c: (community_str,community_com2str) Check com pointer before dereferencing.
This commit is contained in:
parent
882968e0a2
commit
b2ceea1807
@ -1,3 +1,15 @@
|
|||||||
|
2007-09-07 Paul Jakma <paul.jakma@sun.com>
|
||||||
|
|
||||||
|
* (general) bgpd can be made crash by remote peers if debug
|
||||||
|
bgp updates is set, due to NULL pointer dereference.
|
||||||
|
Reported by "Mu Security Research Team",
|
||||||
|
<security@musecurity.com>.
|
||||||
|
* bgp_attr.c: (bgp_attr_community) If community length is 0,
|
||||||
|
don't set the community-present attribute bit, just return
|
||||||
|
early.
|
||||||
|
* bgp_debug.c: (community_str,community_com2str) Check com
|
||||||
|
pointer before dereferencing.
|
||||||
|
|
||||||
2007-08-27 Paul Jakma <paul.jakma@sun.com>
|
2007-08-27 Paul Jakma <paul.jakma@sun.com>
|
||||||
|
|
||||||
* bgp_route.c: (bgp_announce_check) Fix bug #398, slight
|
* bgp_route.c: (bgp_announce_check) Fix bug #398, slight
|
||||||
|
@ -1007,7 +1007,10 @@ bgp_attr_community (struct peer *peer, bgp_size_t length,
|
|||||||
struct attr *attr, u_char flag)
|
struct attr *attr, u_char flag)
|
||||||
{
|
{
|
||||||
if (length == 0)
|
if (length == 0)
|
||||||
attr->community = NULL;
|
{
|
||||||
|
attr->community = NULL;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
attr->community =
|
attr->community =
|
||||||
|
@ -206,6 +206,9 @@ community_com2str (struct community *com)
|
|||||||
u_int16_t as;
|
u_int16_t as;
|
||||||
u_int16_t val;
|
u_int16_t val;
|
||||||
|
|
||||||
|
if (!com)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
/* When communities attribute is empty. */
|
/* When communities attribute is empty. */
|
||||||
if (com->size == 0)
|
if (com->size == 0)
|
||||||
{
|
{
|
||||||
@ -377,6 +380,9 @@ community_dup (struct community *com)
|
|||||||
char *
|
char *
|
||||||
community_str (struct community *com)
|
community_str (struct community *com)
|
||||||
{
|
{
|
||||||
|
if (!com)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
if (! com->str)
|
if (! com->str)
|
||||||
com->str = community_com2str (com);
|
com->str = community_com2str (com);
|
||||||
return com->str;
|
return com->str;
|
||||||
|
Loading…
Reference in New Issue
Block a user