bgpd: Do not check against aspath seg which is already checked before

Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
This commit is contained in:
Donatas Abraitis 2021-06-11 18:37:50 +03:00
parent 707bb5a09c
commit 9c73cd41f7

View File

@ -910,7 +910,6 @@ size_t aspath_put(struct stream *s, struct aspath *as, int use32bit)
if (!seg || seg->length == 0)
return 0;
if (seg) {
/*
* Hey, what do we do when we have > STREAM_WRITABLE(s) here?
* At the moment, we would write out a partial aspath, and our
@ -920,8 +919,7 @@ size_t aspath_put(struct stream *s, struct aspath *as, int use32bit)
* The general assumption here is that many things tested will
* never happen. And, in real live, up to now, they have not.
*/
while (seg && (ASSEGMENT_LEN(seg, use32bit)
<= STREAM_WRITEABLE(s))) {
while (seg && (ASSEGMENT_LEN(seg, use32bit) <= STREAM_WRITEABLE(s))) {
struct assegment *next = seg->next;
int written = 0;
int asns_packed = 0;
@ -929,13 +927,11 @@ size_t aspath_put(struct stream *s, struct aspath *as, int use32bit)
/* Overlength segments have to be split up */
while ((seg->length - written) > AS_SEGMENT_MAX) {
assegment_header_put(s, seg->type,
AS_SEGMENT_MAX);
assegment_data_put(s, (seg->as + written), AS_SEGMENT_MAX,
use32bit);
assegment_header_put(s, seg->type, AS_SEGMENT_MAX);
assegment_data_put(s, (seg->as + written),
AS_SEGMENT_MAX, use32bit);
written += AS_SEGMENT_MAX;
bytes += ASSEGMENT_SIZE(AS_SEGMENT_MAX,
use32bit);
bytes += ASSEGMENT_SIZE(AS_SEGMENT_MAX, use32bit);
}
/* write the final segment, probably is also the first
@ -965,23 +961,20 @@ size_t aspath_put(struct stream *s, struct aspath *as, int use32bit)
*/
/* Next segment's data can fit in this one */
assegment_data_put(s, next->as, next->length,
use32bit);
assegment_data_put(s, next->as, next->length, use32bit);
/* update the length of the segment header */
stream_putc_at(s, lenp,
seg->length - written
+ next->length);
seg->length - written + next->length);
asns_packed += next->length;
next = next->next;
}
bytes += ASSEGMENT_SIZE(
seg->length - written + asns_packed, use32bit);
bytes += ASSEGMENT_SIZE(seg->length - written + asns_packed,
use32bit);
seg = next;
}
}
return bytes;
}