summaryrefslogtreecommitdiffstats
path: root/bgpd
diff options
context:
space:
mode:
authorpaul <paul>2005-11-23 03:47:02 +0100
committerpaul <paul>2005-11-23 03:47:02 +0100
commitad72740e884f16c1f30a99168428fdd15fadaa68 (patch)
tree79126f6d960dd8ab96043203d728edfdc04f67a1 /bgpd
parent2005-11-20 Paul Jakma <paul.jakma@sun.com> (diff)
downloadfrr-ad72740e884f16c1f30a99168428fdd15fadaa68.tar.xz
frr-ad72740e884f16c1f30a99168428fdd15fadaa68.zip
[bgp] Fix SEGV if empty path is confed-compared ([quagga-users 5968])
2005-11-23 Paul Jakma <paul.jakma@sun.com> * bgp_aspath.c: (assegments_parse) should be static 2005-11-23 Juergen Kammer <j.kammer@eurodata.de> * bgp_aspath.c: (aspath_cmp_left_confed) fix SEGV for case where one or both paths are empty.
Diffstat (limited to 'bgpd')
-rw-r--r--bgpd/ChangeLog9
-rw-r--r--bgpd/bgp_aspath.c5
2 files changed, 13 insertions, 1 deletions
diff --git a/bgpd/ChangeLog b/bgpd/ChangeLog
index 68cb11764..59e70cfe3 100644
--- a/bgpd/ChangeLog
+++ b/bgpd/ChangeLog
@@ -1,3 +1,12 @@
+2005-11-23 Paul Jakma <paul.jakma@sun.com>
+
+ * bgp_aspath.c: (assegments_parse) should be static
+
+2005-11-23 Juergen Kammer <j.kammer@eurodata.de>
+
+ * bgp_aspath.c: (aspath_cmp_left_confed) fix SEGV for case
+ where one or both paths are empty.
+
2005-11-14 Paul Jakma <paul.jakma@sun.com>
* bgp_route.c: (bgp_process_rsclient) convert to new workqueue
diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c
index 7f85ea10f..9ff1205cb 100644
--- a/bgpd/bgp_aspath.c
+++ b/bgpd/bgp_aspath.c
@@ -596,7 +596,7 @@ aspath_hash_alloc (void *arg)
}
/* parse as-segment byte stream in struct assegment */
-struct assegment *
+static struct assegment *
assegments_parse (struct stream *s, size_t length)
{
struct assegment_header segh;
@@ -1155,6 +1155,9 @@ aspath_cmp_left_confed (struct aspath *aspath1, struct aspath *aspath2)
if (! (aspath1 && aspath2) )
return 0;
+ if ( !(aspath1->segments && aspath2->segments) )
+ return 0;
+
if ( (aspath1->segments->type != AS_CONFED_SEQUENCE)
|| (aspath2->segments->type != AS_CONFED_SEQUENCE) )
return 0;