1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
|
/* $OpenBSD: rde_decide.c,v 1.15 2004/01/11 21:47:20 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Claudio Jeker <claudio@openbsd.org>
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/queue.h>
#include <stdlib.h>
#include <string.h>
#include "bgpd.h"
#include "ensure.h"
#include "rde.h"
#include "session.h"
int prefix_cmp(struct prefix *, struct prefix *);
void up_generate_updates(struct prefix *, struct prefix *);
int up_generate_attr(struct rde_peer *, struct update_attr *,
struct attr_flags *);
int up_set_prefix(u_char *, int, struct bgpd_addr *, u_int8_t);
/*
* Decision Engine RFC implementation:
* Phase 1:
* - calculate LOCAL_PREF if needed -- EBGP or IGP learnt routes
* - IBGP routes may either use LOCAL_PREF or the local system computes
* the degree of preference
* - If the route is ineligible, the route MAY NOT serve as an input to
* the next phase of route selection
* - if the route is eligible the computed value MUST be used as the
* LOCAL_PREF value in any IBGP readvertisement
*
* Phase 2:
* - If the NEXT_HOP attribute of a BGP route depicts an address that is
* not resolvable the BGP route MUST be excluded from the Phase 2 decision
* function.
* - If the AS_PATH attribute of a BGP route contains an AS loop, the BGP
* route should be excluded from the Phase 2 decision function.
* - The local BGP speaker identifies the route that has:
* a) the highest degree of preference of any route to the same set
* of destinations
* b) is the only route to that destination
* c) is selected as a result of the Phase 2 tie breaking rules
* - The local speaker MUST determine the immediate next-hop address from
* the NEXT_HOP attribute of the selected route.
* - If either the immediate next hop or the IGP cost to the NEXT_HOP changes,
* Phase 2 Route Selection MUST be performed again.
*
* Route Resolvability Condition
* - A route Rte1, referencing only the intermediate network address, is
* considered resolvable if the Routing Table contains at least one
* resolvable route Rte2 that matches Rte1's intermediate network address
* and is not recursively resolved through Rte1.
* - Routes referencing interfaces are considered resolvable if the state of
* the referenced interface is up and IP processing is enabled.
*
* Breaking Ties (Phase 2)
* 1. Remove from consideration all routes which are not tied for having the
* smallest number of AS numbers present in their AS_PATH attributes.
* Note, that when counting this number, an AS_SET counts as 1
* 2. Remove from consideration all routes which are not tied for having the
* lowest Origin number in their Origin attribute.
* 3. Remove from consideration routes with less-preferred MULTI_EXIT_DISC
* attributes. MULTI_EXIT_DISC is only comparable between routes learned
* from the same neighboring AS.
* 4. If at least one of the candidate routes was received via EBGP,
* remove from consideration all routes which were received via IBGP.
* 5. Remove from consideration any routes with less-preferred interior cost.
* If the NEXT_HOP hop for a route is reachable, but no cost can be
* determined, then this step should be skipped.
* 6. Remove from consideration all routes other than the route that was
* advertised by the BGP speaker whose BGP Identifier has the lowest value.
* 7. Prefer the route received from the lowest peer address.
*
* Phase 3: Route Dissemination
* - All routes in the Loc-RIB are processed into Adj-RIBs-Out according
* to configured policy. A route SHALL NOT be installed in the Adj-Rib-Out
* unless the destination and NEXT_HOP described by this route may be
* forwarded appropriately by the Routing Table.
*/
/*
* Decision Engine OUR implementation:
* Our implementation has only one RIB. The filtering is done first. The
* filtering calculates the preference and stores it in LOCAL_PREF (Phase 1).
* Ineligible routes are flagged as ineligible via nexthop_add(). The flags
* are inherited from the nexthop descriptor.
* Phase 3 is done together with Phase 2 -- the output filtering is done in
* the session engine.
* In following cases a prefix needs to be reevaluated:
* - update of a prefix (path_update)
* - withdraw of a prefix (prefix_remove)
* - state change of the nexthop (nexthop-{in}validate)
* - state change of session (session down)
*
*/
/*
* Compare two prefixes with equal pt_entry. Returns an integer greater than or
* less than 0, according to whether the prefix p1 is more or less preferred
* than the prefix p2. p1 should be used for the new prefix and p2 for a
* already added prefix.
*/
int
prefix_cmp(struct prefix *p1, struct prefix *p2)
{
struct rde_aspath *asp1, *asp2;
ENSURE(p1 != NULL);
/* p2 is allowed to be NULL */
if (p2 == NULL)
return (1);
asp1 = p1->aspath;
asp2 = p2->aspath;
/* 1. check if prefix is eligible a.k.a reachable */
if (asp2->nexthop == NULL)
return (1);
if (asp1->nexthop == NULL)
return (-1);
if (asp2->nexthop->state != NEXTHOP_REACH)
return (1);
if (asp1->nexthop->state != NEXTHOP_REACH)
return (-1);
/* 2. preference of prefix, bigger is better */
if ((asp1->flags.lpref - asp2->flags.lpref) != 0)
return (asp1->flags.lpref - asp2->flags.lpref);
/* 3. aspath count, the shorter the better */
if ((asp2->flags.aspath->hdr.as_cnt -
asp1->flags.aspath->hdr.as_cnt) != 0)
return (asp2->flags.aspath->hdr.as_cnt -
asp1->flags.aspath->hdr.as_cnt);
/* 4. origin, the lower the better */
if ((asp2->flags.origin - asp1->flags.origin) != 0)
return (asp2->flags.origin - asp1->flags.origin);
/* 5. MED decision, only comparable between the same neighboring AS */
if (aspath_neighbour(asp1->flags.aspath) ==
aspath_neighbour(asp2->flags.aspath))
/* the bigger, the better */
if ((asp1->flags.med - asp2->flags.med) != 0)
return (asp1->flags.med - asp2->flags.med);
/*
* 6. EBGP is cooler than IBGP
* It is absolutely important that the ebgp value in peer_config.ebgp
* is bigger than all other ones (IBGP, confederations)
*/
if ((p1->peer->conf.ebgp - p2->peer->conf.ebgp) != 0) {
if (p1->peer->conf.ebgp == 1) /* p1 is EBGP other is lower */
return 1;
else if (p2->peer->conf.ebgp == 1) /* p2 is EBGP */
return -1;
}
/* 7. nexthop costs. NOT YET -> IGNORE */
/* 8. lowest BGP Id wins */
if ((p2->peer->remote_bgpid - p1->peer->remote_bgpid) != 0)
return (p2->peer->remote_bgpid - p1->peer->remote_bgpid);
/* 9. lowest peer address wins */
if ((p2->peer->conf.remote_addr.sin_addr.s_addr -
p1->peer->conf.remote_addr.sin_addr.s_addr) != 0)
return (p2->peer->conf.remote_addr.sin_addr.s_addr -
p1->peer->conf.remote_addr.sin_addr.s_addr);
fatalx("Uh, oh a politician in the decision process");
/* NOTREACHED */
return 0;
}
/*
* Find the correct place to insert the prefix in the prefix list.
* If the active prefix has changed we need to send an update.
* The to evaluate prefix must not be in the prefix list.
*/
void
prefix_evaluate(struct prefix *p, struct pt_entry *pte)
{
struct prefix *xp;
if (p != NULL) {
if (LIST_EMPTY(&pte->prefix_h))
LIST_INSERT_HEAD(&pte->prefix_h, p, prefix_l);
else {
LIST_FOREACH(xp, &pte->prefix_h, prefix_l)
if (prefix_cmp(p, xp) > 0) {
LIST_INSERT_BEFORE(xp, p, prefix_l);
break;
}
}
}
xp = LIST_FIRST(&pte->prefix_h);
if (pte->active != xp) {
/* need to generate an update */
if (pte->active != NULL) {
ENSURE(pte->active->aspath != NULL);
ENSURE(pte->active->aspath->active_cnt > 0);
pte->active->aspath->active_cnt--;
}
/*
* XXX send update with remove for pte->active and add for xp
* but remember that xp may be ineligible or NULL.
* do not send an update if the only available path
* has an unreachable nexthop
*/
up_generate_updates(xp, pte->active);
rde_send_kroute(xp, pte->active);
if (xp == NULL || xp->aspath->nexthop == NULL ||
xp->aspath->nexthop->state != NEXTHOP_REACH)
pte->active = NULL;
else {
pte->active = xp;
pte->active->aspath->active_cnt++;
ENSURE(pte->active->aspath->active_cnt <=
pte->active->aspath->prefix_cnt);
}
}
}
/* update stuff. */
struct update_prefix {
struct bgpd_addr prefix;
int prefixlen;
struct uplist_prefix *prefix_h;
TAILQ_ENTRY(update_prefix) prefix_l;
RB_ENTRY(update_prefix) entry;
};
struct update_attr {
u_long attr_hash;
u_char *attr;
u_int16_t attr_len;
struct uplist_prefix prefix_h;
TAILQ_ENTRY(update_attr) attr_l;
RB_ENTRY(update_attr) entry;
};
int up_prefix_cmp(struct update_prefix *, struct update_prefix *);
int up_attr_cmp(struct update_attr *, struct update_attr *);
int up_add(struct rde_peer *, struct update_prefix *, struct update_attr *);
RB_PROTOTYPE(uptree_prefix, update_prefix, entry, up_prefix_cmp);
RB_GENERATE(uptree_prefix, update_prefix, entry, up_prefix_cmp);
RB_PROTOTYPE(uptree_attr, update_attr, entry, up_attr_cmp);
RB_GENERATE(uptree_attr, update_attr, entry, up_attr_cmp);
void
up_init(struct rde_peer *peer)
{
TAILQ_INIT(&peer->updates);
TAILQ_INIT(&peer->withdraws);
RB_INIT(&peer->up_prefix);
RB_INIT(&peer->up_attrs);
peer->up_pcnt = 0;
peer->up_acnt = 0;
peer->up_nlricnt = 0;
peer->up_wcnt = 0;
}
void
up_down(struct rde_peer *peer)
{
struct update_attr *ua, *xua;
struct update_prefix *up, *xup;
for (ua = TAILQ_FIRST(&peer->updates); ua != TAILQ_END(&peer->updates);
ua = xua) {
xua = TAILQ_NEXT(ua, attr_l);
for (up = TAILQ_FIRST(&ua->prefix_h);
up != TAILQ_END(&ua->prefix_h); up = xup) {
xup = TAILQ_NEXT(up, prefix_l);
free(up);
}
free(ua);
}
for (up = TAILQ_FIRST(&peer->withdraws);
up != TAILQ_END(&peer->withdraws); up = xup) {
xup = TAILQ_NEXT(up, prefix_l);
free(up);
}
TAILQ_INIT(&peer->updates);
TAILQ_INIT(&peer->withdraws);
RB_INIT(&peer->up_prefix);
RB_INIT(&peer->up_attrs);
peer->up_pcnt = 0;
peer->up_acnt = 0;
peer->up_nlricnt = 0;
peer->up_wcnt = 0;
}
int
up_prefix_cmp(struct update_prefix *a, struct update_prefix *b)
{
ENSURE(a->prefix.af == AF_INET);
if (a->prefix.v4.s_addr < b->prefix.v4.s_addr)
return (-1);
if (a->prefix.v4.s_addr > b->prefix.v4.s_addr)
return (1);
if (a->prefixlen < b->prefixlen)
return (-1);
if (a->prefixlen > b->prefixlen)
return (1);
return (0);
}
int
up_attr_cmp(struct update_attr *a, struct update_attr *b)
{
if (a->attr_hash < b->attr_hash)
return (-1);
if (a->attr_hash > b->attr_hash)
return (1);
if (a->attr_len < b->attr_len)
return (-1);
if (a->attr_len > b->attr_len)
return (1);
return memcmp(a->attr, b->attr, a->attr_len);
}
int
up_add(struct rde_peer *peer, struct update_prefix *p, struct update_attr *a)
{
struct update_attr *na;
struct update_prefix *np;
ENSURE(p != NULL);
/* 1. search for attr */
if (a != NULL && (na = RB_FIND(uptree_attr, &peer->up_attrs, a)) ==
NULL) {
/* 1.1 if not found -> add */
TAILQ_INIT(&a->prefix_h);
if (RB_INSERT(uptree_attr, &peer->up_attrs, a) != NULL) {
logit(LOG_CRIT, "uptree_attr insert failed");
return (-1);
}
TAILQ_INSERT_TAIL(&peer->updates, a, attr_l);
peer->up_acnt++;
} else {
/* 1.2 if found -> use that, free a */
if (a != NULL) {
free(a);
a = na;
/* move to end of update queue */
TAILQ_REMOVE(&peer->updates, a, attr_l);
TAILQ_INSERT_TAIL(&peer->updates, a, attr_l);
}
}
/* 2. search for prefix */
if ((np = RB_FIND(uptree_prefix, &peer->up_prefix, p)) == NULL) {
/* 2.1 if not found -> add */
if (RB_INSERT(uptree_prefix, &peer->up_prefix, p) != NULL) {
logit(LOG_CRIT, "uptree_prefix insert failed");
return (-1);
}
peer->up_pcnt++;
} else {
/* 2.2 if found -> use that and free p */
TAILQ_REMOVE(np->prefix_h, np, prefix_l);
free(p);
p = np;
if (p->prefix_h == &peer->withdraws)
peer->up_wcnt--;
else
peer->up_nlricnt--;
}
/* 3. link prefix to attr */
if (a == NULL) {
TAILQ_INSERT_TAIL(&peer->withdraws, p, prefix_l);
p->prefix_h = &peer->withdraws;
peer->up_wcnt++;
} else {
TAILQ_INSERT_TAIL(&a->prefix_h, p, prefix_l);
p->prefix_h = &a->prefix_h;
peer->up_nlricnt++;
}
return (0);
}
void
up_generate_updates(struct prefix *new, struct prefix *old)
{
extern struct rde_peer_head peerlist;
struct rde_peer *peer;
struct update_attr *a;
struct update_prefix *p;
if ((old == NULL || old->aspath->nexthop == NULL ||
old->aspath->nexthop->state != NEXTHOP_REACH) &&
(new == NULL || new->aspath->nexthop == NULL ||
new->aspath->nexthop->state != NEXTHOP_REACH))
return;
LIST_FOREACH(peer, &peerlist, peer_l) {
if (peer->state != PEER_UP)
continue;
/*
* Filtering should be hooked up here.
* With filtering the decision if withdraw, update or nothing
* needs to be done on a per peer basis -- acctually per filter
* set.
*/
p = calloc(1, sizeof(struct update_prefix));
if (p == NULL)
fatal("up_queue_update");
if (new == NULL || new->aspath->nexthop == NULL ||
new->aspath->nexthop->state != NEXTHOP_REACH) {
/* withdraw prefix */
p->prefix = old->prefix->prefix;
p->prefixlen = old->prefix->prefixlen;
if (up_add(peer, p, NULL) == -1)
logit(LOG_CRIT, "queuing update failed.");
} else {
/* generate update */
a = calloc(1, sizeof(struct update_attr));
if (a == NULL)
fatal("up_queue_update");
if (up_generate_attr(peer, a, &new->aspath->flags) ==
-1)
logit(LOG_CRIT,
"generation of bgp path attributes failed");
/*
* use aspath_hash as attr_hash, this may be unoptimal
* but currently I don't care.
*/
a->attr_hash = aspath_hash(new->aspath->flags.aspath);
p->prefix = new->prefix->prefix;
p->prefixlen = new->prefix->prefixlen;
if (up_add(peer, p, a) == -1)
logit(LOG_CRIT, "queuing update failed.");
}
}
}
u_char up_attr_buf[4096];
int
up_generate_attr(struct rde_peer *peer, struct update_attr *upa,
struct attr_flags *a)
{
struct attr *oa;
u_int32_t tmp32;
int r;
u_int16_t len = sizeof(up_attr_buf), wlen = 0;
/* origin */
if ((r = attr_write(up_attr_buf + wlen, len, ATTR_WELL_KNOWN,
ATTR_ORIGIN, &a->origin, 1)) == -1)
return (-1);
wlen += r; len -= r;
/* aspath */
if ((r = aspath_write(up_attr_buf + wlen, len, a->aspath,
rde_local_as(), peer->conf.ebgp == 0 ? 0 : 1)) == -1)
return (-1);
wlen += r; len -= r;
/* nexthop, already network byte order */
/* XXX XXX nexthop fixup */
if ((r = attr_write(up_attr_buf + wlen, len, ATTR_WELL_KNOWN,
ATTR_NEXTHOP, &a->nexthop, 4)) == -1)
return (-1);
wlen += r; len -= r;
/*
* The MED of other peers MUST not be announced to others.
* Currently we just dump it. Possibilities are setting the MED via
* a filter or set it to local-pref. struct attr_flags probably needs
* a med_in and a med_out field.
*/
if (peer->conf.ebgp == 0) {
/* local preference, only valid for ibgp */
tmp32 = htonl(a->lpref);
if ((r = attr_write(up_attr_buf + wlen, len, ATTR_WELL_KNOWN,
ATTR_LOCALPREF, &tmp32, 4)) == -1)
return (-1);
wlen += r; len -= r;
}
/*
* dump all other path attributes. Following rules apply:
* 1. well-known attrs: ATTR_ATOMIC_AGGREGATE and ATTR_AGGREGATOR
* pass unmodified (enforce flags to correct values)
* 2. non-transitive attrs: don't re-announce
* 3. transitive known attrs: announce unmodified
* 4. transitive unknown attrs: set partial bit and re-announce
*/
TAILQ_FOREACH(oa, &a->others, attr_l) {
switch (oa->type) {
case ATTR_ATOMIC_AGGREGATE:
if ((r = attr_write(up_attr_buf + wlen, len,
ATTR_WELL_KNOWN, ATTR_ATOMIC_AGGREGATE,
NULL, 0)) == -1)
return (-1);
break;
case ATTR_AGGREGATOR:
if ((r = attr_write(up_attr_buf + wlen, len,
ATTR_OPTIONAL | ATTR_TRANSITIVE, ATTR_AGGREGATOR,
oa->data, oa->len)) == -1)
return (-1);
break;
/*
* currently there are no non-transitive or transitive known
* attributes.
*/
default:
/* unknown attribute */
if (!(oa->flags & ATTR_OPTIONAL))
/* somehow a non-transitive slipped through */
break;
if ((r = attr_write(up_attr_buf + wlen, len,
oa->flags | ATTR_PARTIAL, oa->type,
oa->data, oa->len)) == -1)
return (-1);
break;
}
wlen += r; len -= r;
}
/* the bgp path attributes are now stored in the global buf */
upa->attr = malloc(wlen);
if (upa->attr == NULL)
fatal("up_generate_attr");
memcpy(upa->attr, up_attr_buf, wlen);
upa->attr_len = wlen;
return (wlen);
}
int
up_set_prefix(u_char *buf, int len, struct bgpd_addr *prefix, u_int8_t plen)
{
int totlen;
ENSURE(prefix->af == AF_INET);
ENSURE(plen <= 32);
totlen = (plen + 7) / 8 + 1;
if (totlen > len)
return (-1);
*buf++ = plen;
memcpy(buf, &prefix->v4.s_addr, totlen - 1);
return (totlen);
}
int
up_dump_prefix(u_char *buf, int len, struct uplist_prefix *prefix_head,
struct rde_peer *peer)
{
struct update_prefix *upp, *xupp;
int r, wpos = 0;
for (upp = TAILQ_FIRST(prefix_head);
upp != TAILQ_END(prefix_head); upp = xupp) {
xupp = TAILQ_NEXT(upp, prefix_l);
if ((r = up_set_prefix(buf + wpos, len - wpos,
&upp->prefix, upp->prefixlen)) == -1)
break;
wpos += r;
if (RB_REMOVE(uptree_prefix, &peer->up_prefix, upp) == NULL)
logit(LOG_CRIT, "dequeuing update failed.");
TAILQ_REMOVE(upp->prefix_h, upp, prefix_l);
peer->up_pcnt--;
if (upp->prefix_h == &peer->withdraws)
peer->up_wcnt--;
else
peer->up_nlricnt--;
free(upp);
}
return (wpos);
}
int
up_dump_attrnlri(u_char *buf, int len, struct rde_peer *peer)
{
struct update_attr *upa;
int r, wpos;
u_int16_t attr_len;
upa = TAILQ_FIRST(&peer->updates);
if (upa == NULL || upa->attr_len + 5 > len) {
/*
* either no packet or not enough space.
* The length field needs to be set to zero else it would be
* an invalid bgp update.
*/
bzero(buf, 2);
return (2);
}
/* first dump the 2-byte path attribute length */
attr_len = htons(upa->attr_len);
memcpy(buf, &attr_len, 2);
wpos = 2;
/* then the path attributes them self */
memcpy(buf + wpos, upa->attr, upa->attr_len);
wpos += upa->attr_len;
/* last but not least dump the nlri */
r = up_dump_prefix(buf + wpos, len - wpos, &upa->prefix_h, peer);
wpos += r;
/* now check if all prefixes where written */
if (TAILQ_EMPTY(&upa->prefix_h)) {
if (RB_REMOVE(uptree_attr, &peer->up_attrs, upa) == NULL)
logit(LOG_CRIT, "dequeuing update failed.");
TAILQ_REMOVE(&peer->updates, upa, attr_l);
free(upa);
peer->up_acnt--;
}
return (wpos);
}
|