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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
|
/* $OpenBSD: printconf.c,v 1.90 2013/01/17 02:00:33 claudio Exp $ */
/*
* 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, PROFITS OR MIND, 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 <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bgpd.h"
#include "mrt.h"
#include "session.h"
#include "rde.h"
void print_op(enum comp_ops);
void print_community(int, int);
void print_extcommunity(struct filter_extcommunity *);
void print_origin(u_int8_t);
void print_set(struct filter_set_head *);
void print_mainconf(struct bgpd_config *);
void print_rdomain_targets(struct filter_set_head *, const char *);
void print_rdomain(struct rdomain *);
const char *print_af(u_int8_t);
void print_network(struct network_config *, const char *);
void print_peer(struct peer_config *, struct bgpd_config *,
const char *);
const char *print_auth_alg(u_int8_t);
const char *print_enc_alg(u_int8_t);
void print_announce(struct peer_config *, const char *);
void print_rule(struct peer *, struct filter_rule *);
const char * mrt_type(enum mrt_type);
void print_mrt(u_int32_t, u_int32_t, const char *, const char *);
void print_groups(struct bgpd_config *, struct peer *);
int peer_compare(const void *, const void *);
void
print_op(enum comp_ops op)
{
switch (op) {
case OP_RANGE:
printf("-");
break;
case OP_XRANGE:
printf("><");
break;
case OP_EQ:
printf("=");
break;
case OP_NE:
printf("!=");
break;
case OP_LE:
printf("<=");
break;
case OP_LT:
printf("<");
break;
case OP_GE:
printf(">=");
break;
case OP_GT:
printf(">");
break;
default:
printf("?");
break;
}
}
void
print_community(int as, int type)
{
if (as == COMMUNITY_ANY)
printf("*:");
else if (as == COMMUNITY_NEIGHBOR_AS)
printf("neighbor-as:");
else
printf("%d:", as);
if (type == COMMUNITY_ANY)
printf("* ");
else if (type == COMMUNITY_NEIGHBOR_AS)
printf("neighbor-as ");
else
printf("%d ", type);
}
void
print_extcommunity(struct filter_extcommunity *c)
{
switch (c->type & EXT_COMMUNITY_VALUE) {
case EXT_COMMUNITY_TWO_AS:
printf("%s %i:%i ", log_ext_subtype(c->subtype),
c->data.ext_as.as, c->data.ext_as.val);
break;
case EXT_COMMUNITY_IPV4:
printf("%s %s:%i ", log_ext_subtype(c->subtype),
inet_ntoa(c->data.ext_ip.addr), c->data.ext_ip.val);
break;
case EXT_COMMUNITY_FOUR_AS:
printf("%s %s:%i ", log_ext_subtype(c->subtype),
log_as(c->data.ext_as4.as4), c->data.ext_as.val);
break;
case EXT_COMMUNITY_OPAQUE:
printf("%s 0x%llx ", log_ext_subtype(c->subtype),
c->data.ext_opaq);
break;
default:
printf("0x%x 0x%llx ", c->type, c->data.ext_opaq);
break;
}
}
void
print_origin(u_int8_t o)
{
if (o == ORIGIN_IGP)
printf("igp ");
else if (o == ORIGIN_EGP)
printf("egp ");
else if (o == ORIGIN_INCOMPLETE)
printf("incomplete ");
else
printf("%u ", o);
}
void
print_set(struct filter_set_head *set)
{
struct filter_set *s;
if (TAILQ_EMPTY(set))
return;
printf("set { ");
TAILQ_FOREACH(s, set, entry) {
switch (s->type) {
case ACTION_SET_LOCALPREF:
printf("localpref %u ", s->action.metric);
break;
case ACTION_SET_RELATIVE_LOCALPREF:
printf("localpref %+d ", s->action.relative);
break;
case ACTION_SET_MED:
printf("metric %u ", s->action.metric);
break;
case ACTION_SET_RELATIVE_MED:
printf("metric %+d ", s->action.relative);
break;
case ACTION_SET_WEIGHT:
printf("weight %u ", s->action.metric);
break;
case ACTION_SET_RELATIVE_WEIGHT:
printf("weight %+d ", s->action.relative);
break;
case ACTION_SET_NEXTHOP:
printf("nexthop %s ", log_addr(&s->action.nexthop));
break;
case ACTION_SET_NEXTHOP_REJECT:
printf("nexthop reject ");
break;
case ACTION_SET_NEXTHOP_BLACKHOLE:
printf("nexthop blackhole ");
break;
case ACTION_SET_NEXTHOP_NOMODIFY:
printf("nexthop no-modify ");
break;
case ACTION_SET_NEXTHOP_SELF:
printf("nexthop self ");
break;
case ACTION_SET_PREPEND_SELF:
printf("prepend-self %u ", s->action.prepend);
break;
case ACTION_SET_PREPEND_PEER:
printf("prepend-neighbor %u ", s->action.prepend);
break;
case ACTION_DEL_COMMUNITY:
printf("community delete ");
print_community(s->action.community.as,
s->action.community.type);
printf(" ");
break;
case ACTION_SET_COMMUNITY:
printf("community ");
print_community(s->action.community.as,
s->action.community.type);
printf(" ");
break;
case ACTION_PFTABLE:
printf("pftable %s ", s->action.pftable);
break;
case ACTION_RTLABEL:
printf("rtlabel %s ", s->action.rtlabel);
break;
case ACTION_SET_ORIGIN:
printf("origin ");
print_origin(s->action.origin);
break;
case ACTION_RTLABEL_ID:
case ACTION_PFTABLE_ID:
/* not possible */
printf("king bula saiz: config broken");
break;
case ACTION_SET_EXT_COMMUNITY:
printf("ext-community ");
print_extcommunity(&s->action.ext_community);
break;
case ACTION_DEL_EXT_COMMUNITY:
printf("ext-community delete ");
print_extcommunity(&s->action.ext_community);
break;
}
}
printf("}");
}
void
print_mainconf(struct bgpd_config *conf)
{
struct in_addr ina;
struct listen_addr *la;
printf("AS %s", log_as(conf->as));
if (conf->as > USHRT_MAX && conf->short_as != AS_TRANS)
printf(" %u", conf->short_as);
ina.s_addr = conf->bgpid;
printf("\nrouter-id %s\n", inet_ntoa(ina));
printf("socket \"%s\"\n", conf->csock);
if (conf->rcsock)
printf("socket \"%s\" restricted\n", conf->rcsock);
if (conf->holdtime)
printf("holdtime %u\n", conf->holdtime);
if (conf->min_holdtime)
printf("holdtime min %u\n", conf->min_holdtime);
if (conf->connectretry)
printf("connect-retry %u\n", conf->connectretry);
if (conf->flags & BGPD_FLAG_NO_EVALUATE)
printf("route-collector yes\n");
if (conf->flags & BGPD_FLAG_DECISION_ROUTEAGE)
printf("rde route-age evaluate\n");
if (conf->flags & BGPD_FLAG_DECISION_MED_ALWAYS)
printf("rde med compare always\n");
if (conf->log & BGPD_LOG_UPDATES)
printf("log updates\n");
TAILQ_FOREACH(la, conf->listen_addrs, entry)
printf("listen on %s\n",
log_sockaddr((struct sockaddr *)&la->sa));
if (conf->flags & BGPD_FLAG_NEXTHOP_BGP)
printf("nexthop qualify via bgp\n");
if (conf->flags & BGPD_FLAG_NEXTHOP_DEFAULT)
printf("nexthop qualify via default\n");
}
void
print_rdomain_targets(struct filter_set_head *set, const char *tgt)
{
struct filter_set *s;
TAILQ_FOREACH(s, set, entry) {
printf("\t%s ", tgt);
print_extcommunity(&s->action.ext_community);
printf("\n");
}
}
void
print_rdomain(struct rdomain *r)
{
struct network *n;
printf("rdomain %u {\n", r->rtableid);
if (*r->descr)
printf("\tdescr \"%s\"\n", r->descr);
if (r->flags & F_RIB_NOFIBSYNC)
printf("\tfib-update no\n");
else
printf("\tfib-update yes\n");
printf("\tdepend on %s\n", r->ifmpe);
TAILQ_FOREACH(n, &r->net_l, entry)
print_network(&n->net, "\t");
printf("\n\t%s\n", log_rd(r->rd));
print_rdomain_targets(&r->export, "export-target");
print_rdomain_targets(&r->import, "import-target");
printf("}\n");
}
const char *
print_af(u_int8_t aid)
{
/*
* Hack around the fact that aid2str() will return "IPv4 unicast"
* for AID_INET. AID_INET and AID_INET6 need special handling and
* the other AID should never end up here (at least for now).
*/
if (aid == AID_INET)
return ("inet");
if (aid == AID_INET6)
return ("inet6");
return (aid2str(aid));
}
void
print_network(struct network_config *n, const char *c)
{
switch (n->type) {
case NETWORK_STATIC:
printf("%snetwork %s static", c, print_af(n->prefix.aid));
break;
case NETWORK_CONNECTED:
printf("%snetwork %s connected", c, print_af(n->prefix.aid));
break;
default:
printf("%snetwork %s/%u", c, log_addr(&n->prefix),
n->prefixlen);
break;
}
if (!TAILQ_EMPTY(&n->attrset))
printf(" ");
print_set(&n->attrset);
printf("\n");
}
void
print_peer(struct peer_config *p, struct bgpd_config *conf, const char *c)
{
char *method;
struct in_addr ina;
if ((p->remote_addr.aid == AID_INET && p->remote_masklen != 32) ||
(p->remote_addr.aid == AID_INET6 && p->remote_masklen != 128))
printf("%sneighbor %s/%u {\n", c, log_addr(&p->remote_addr),
p->remote_masklen);
else
printf("%sneighbor %s {\n", c, log_addr(&p->remote_addr));
if (p->descr[0])
printf("%s\tdescr \"%s\"\n", c, p->descr);
if (p->rib[0])
printf("%s\trib \"%s\"\n", c, p->rib);
if (p->remote_as)
printf("%s\tremote-as %s\n", c, log_as(p->remote_as));
if (p->down)
printf("%s\tdown\n", c);
if (p->distance > 1)
printf("%s\tmultihop %u\n", c, p->distance);
if (p->passive)
printf("%s\tpassive\n", c);
if (p->local_addr.aid)
printf("%s\tlocal-address %s\n", c, log_addr(&p->local_addr));
if (p->max_prefix) {
printf("%s\tmax-prefix %u", c, p->max_prefix);
if (p->max_prefix_restart)
printf(" restart %u", p->max_prefix_restart);
printf("\n");
}
if (p->holdtime)
printf("%s\tholdtime %u\n", c, p->holdtime);
if (p->min_holdtime)
printf("%s\tholdtime min %u\n", c, p->min_holdtime);
if (p->announce_capa == 0)
printf("%s\tannounce capabilities no\n", c);
if (p->capabilities.refresh == 0)
printf("%s\tannounce refresh no\n", c);
if (p->capabilities.grestart.restart == 0)
printf("%s\tannounce restart no\n", c);
if (p->capabilities.as4byte == 0)
printf("%s\tannounce as4byte no\n", c);
if (p->announce_type == ANNOUNCE_SELF)
printf("%s\tannounce self\n", c);
else if (p->announce_type == ANNOUNCE_NONE)
printf("%s\tannounce none\n", c);
else if (p->announce_type == ANNOUNCE_ALL)
printf("%s\tannounce all\n", c);
else if (p->announce_type == ANNOUNCE_DEFAULT_ROUTE)
printf("%s\tannounce default-route\n", c);
else
printf("%s\tannounce ???\n", c);
if (p->enforce_as == ENFORCE_AS_ON)
printf("%s\tenforce neighbor-as yes\n", c);
else
printf("%s\tenforce neighbor-as no\n", c);
if (p->reflector_client) {
if (conf->clusterid == 0)
printf("%s\troute-reflector\n", c);
else {
ina.s_addr = conf->clusterid;
printf("%s\troute-reflector %s\n", c,
inet_ntoa(ina));
}
}
if (p->demote_group[0])
printf("%s\tdemote %s\n", c, p->demote_group);
if (p->if_depend[0])
printf("%s\tdepend on \"%s\"\n", c, p->if_depend);
if (p->flags & PEERFLAG_TRANS_AS)
printf("%s\ttransparent-as yes\n", c);
if (p->auth.method == AUTH_MD5SIG)
printf("%s\ttcp md5sig\n", c);
else if (p->auth.method == AUTH_IPSEC_MANUAL_ESP ||
p->auth.method == AUTH_IPSEC_MANUAL_AH) {
if (p->auth.method == AUTH_IPSEC_MANUAL_ESP)
method = "esp";
else
method = "ah";
printf("%s\tipsec %s in spi %u %s XXXXXX", c, method,
p->auth.spi_in, print_auth_alg(p->auth.auth_alg_in));
if (p->auth.enc_alg_in)
printf(" %s XXXXXX", print_enc_alg(p->auth.enc_alg_in));
printf("\n");
printf("%s\tipsec %s out spi %u %s XXXXXX", c, method,
p->auth.spi_out, print_auth_alg(p->auth.auth_alg_out));
if (p->auth.enc_alg_out)
printf(" %s XXXXXX",
print_enc_alg(p->auth.enc_alg_out));
printf("\n");
} else if (p->auth.method == AUTH_IPSEC_IKE_AH)
printf("%s\tipsec ah ike\n", c);
else if (p->auth.method == AUTH_IPSEC_IKE_ESP)
printf("%s\tipsec esp ike\n", c);
if (p->ttlsec)
printf("%s\tttl-security yes\n", c);
print_announce(p, c);
if (p->softreconfig_in == 1)
printf("%s\tsoftreconfig in yes\n", c);
else
printf("%s\tsoftreconfig in no\n", c);
if (p->softreconfig_out == 1)
printf("%s\tsoftreconfig out yes\n", c);
else
printf("%s\tsoftreconfig out no\n", c);
print_mrt(p->id, p->groupid, c, "\t");
printf("%s}\n", c);
}
const char *
print_auth_alg(u_int8_t alg)
{
switch (alg) {
case SADB_AALG_SHA1HMAC:
return ("sha1");
case SADB_AALG_MD5HMAC:
return ("md5");
default:
return ("???");
}
}
const char *
print_enc_alg(u_int8_t alg)
{
switch (alg) {
case SADB_EALG_3DESCBC:
return ("3des");
case SADB_X_EALG_AES:
return ("aes");
default:
return ("???");
}
}
void
print_announce(struct peer_config *p, const char *c)
{
u_int8_t aid;
for (aid = 0; aid < AID_MAX; aid++)
if (p->capabilities.mp[aid])
printf("%s\tannounce %s\n", c, aid2str(aid));
}
void
print_rule(struct peer *peer_l, struct filter_rule *r)
{
struct peer *p;
if (r->action == ACTION_ALLOW)
printf("allow ");
else if (r->action == ACTION_DENY)
printf("deny ");
else
printf("match ");
if (r->quick)
printf("quick ");
if (r->rib[0])
printf("rib %s ", r->rib);
if (r->dir == DIR_IN)
printf("from ");
else if (r->dir == DIR_OUT)
printf("to ");
else
printf("eeeeeeeps. ");
if (r->peer.peerid) {
for (p = peer_l; p != NULL && p->conf.id != r->peer.peerid;
p = p->next)
; /* nothing */
if (p == NULL)
printf("? ");
else
printf("%s ", log_addr(&p->conf.remote_addr));
} else if (r->peer.groupid) {
for (p = peer_l; p != NULL &&
p->conf.groupid != r->peer.groupid; p = p->next)
; /* nothing */
if (p == NULL)
printf("group ? ");
else
printf("group \"%s\" ", p->conf.group);
} else
printf("any ");
if (r->match.prefix.addr.aid)
printf("prefix %s/%u ", log_addr(&r->match.prefix.addr),
r->match.prefix.len);
if (r->match.prefix.addr.aid == 0 && r->match.prefixlen.aid) {
if (r->match.prefixlen.aid == AID_INET)
printf("inet ");
if (r->match.prefixlen.aid == AID_INET6)
printf("inet6 ");
}
if (r->match.prefixlen.op) {
if (r->match.prefixlen.op == OP_RANGE ||
r->match.prefixlen.op == OP_XRANGE) {
printf("prefixlen %u ", r->match.prefixlen.len_min);
print_op(r->match.prefixlen.op);
printf(" %u ", r->match.prefixlen.len_max);
} else {
printf("prefixlen ");
print_op(r->match.prefixlen.op);
printf(" %u ", r->match.prefixlen.len_min);
}
}
if (r->match.nexthop.flags) {
if (r->match.nexthop.flags == FILTER_NEXTHOP_NEIGHBOR)
printf("nexthop neighbor ");
else
printf("nexthop %s ", log_addr(&r->match.nexthop.addr));
}
if (r->match.as.type) {
if (r->match.as.type == AS_ALL)
printf("AS %s ", log_as(r->match.as.as));
else if (r->match.as.type == AS_SOURCE)
printf("source-as %s ", log_as(r->match.as.as));
else if (r->match.as.type == AS_TRANSIT)
printf("transit-as %s ", log_as(r->match.as.as));
else if (r->match.as.type == AS_PEER)
printf("peer-as %s ", log_as(r->match.as.as));
else
printf("unfluffy-as %s ", log_as(r->match.as.as));
}
if (r->match.aslen.type) {
printf("%s %u ", r->match.aslen.type == ASLEN_MAX ?
"max-as-len" : "max-as-seq", r->match.aslen.aslen);
}
if (r->match.community.as != COMMUNITY_UNSET) {
printf("community ");
print_community(r->match.community.as,
r->match.community.type);
}
if (r->match.ext_community.flags & EXT_COMMUNITY_FLAG_VALID) {
printf("ext-community ");
print_extcommunity(&r->match.ext_community);
}
print_set(&r->set);
printf("\n");
}
const char *
mrt_type(enum mrt_type t)
{
switch (t) {
case MRT_NONE:
break;
case MRT_TABLE_DUMP:
return "table";
case MRT_TABLE_DUMP_MP:
return "table-mp";
case MRT_TABLE_DUMP_V2:
return "table-v2";
case MRT_ALL_IN:
return "all in";
case MRT_ALL_OUT:
return "all out";
case MRT_UPDATE_IN:
return "updates in";
case MRT_UPDATE_OUT:
return "updates out";
}
return "unfluffy MRT";
}
struct mrt_head *xmrt_l = NULL;
void
print_mrt(u_int32_t pid, u_int32_t gid, const char *prep, const char *prep2)
{
struct mrt *m;
if (xmrt_l == NULL)
return;
LIST_FOREACH(m, xmrt_l, entry)
if ((gid != 0 && m->group_id == gid) ||
(m->peer_id == pid && m->group_id == gid)) {
printf("%s%sdump ", prep, prep2);
if (m->rib[0])
printf("rib %s ", m->rib);
printf("%s \"%s\"", mrt_type(m->type),
MRT2MC(m)->name);
if (MRT2MC(m)->ReopenTimerInterval == 0)
printf("\n");
else
printf(" %d\n", MRT2MC(m)->ReopenTimerInterval);
}
}
void
print_groups(struct bgpd_config *conf, struct peer *peer_l)
{
struct peer_config **peerlist;
struct peer *p;
u_int peer_cnt, i;
u_int32_t prev_groupid;
const char *tab = "\t";
const char *nada = "";
const char *c;
peer_cnt = 0;
for (p = peer_l; p != NULL; p = p->next)
peer_cnt++;
if ((peerlist = calloc(peer_cnt, sizeof(struct peer_config *))) == NULL)
fatal("print_groups calloc");
i = 0;
for (p = peer_l; p != NULL; p = p->next)
peerlist[i++] = &p->conf;
qsort(peerlist, peer_cnt, sizeof(struct peer_config *), peer_compare);
prev_groupid = 0;
for (i = 0; i < peer_cnt; i++) {
if (peerlist[i]->groupid) {
c = tab;
if (peerlist[i]->groupid != prev_groupid) {
if (prev_groupid)
printf("}\n\n");
printf("group \"%s\" {\n", peerlist[i]->group);
prev_groupid = peerlist[i]->groupid;
}
} else
c = nada;
print_peer(peerlist[i], conf, c);
}
if (prev_groupid)
printf("}\n\n");
free(peerlist);
}
int
peer_compare(const void *aa, const void *bb)
{
const struct peer_config * const *a;
const struct peer_config * const *b;
a = aa;
b = bb;
return ((*a)->groupid - (*b)->groupid);
}
void
print_config(struct bgpd_config *conf, struct rib_names *rib_l,
struct network_head *net_l, struct peer *peer_l,
struct filter_head *rules_l, struct mrt_head *mrt_l,
struct rdomain_head *rdom_l)
{
struct filter_rule *r;
struct network *n;
struct rde_rib *rr;
struct rdomain *rd;
xmrt_l = mrt_l;
print_mainconf(conf);
printf("\n");
TAILQ_FOREACH(n, net_l, entry)
print_network(&n->net, "");
printf("\n");
SIMPLEQ_FOREACH(rd, rdom_l, entry)
print_rdomain(rd);
printf("\n");
SIMPLEQ_FOREACH(rr, rib_l, entry) {
if (rr->flags & F_RIB_NOEVALUATE)
printf("rde rib %s no evaluate\n", rr->name);
else if (rr->flags & F_RIB_NOFIB)
printf("rde rib %s\n", rr->name);
else
printf("rde rib %s rtable %u fib-update %s\n", rr->name,
rr->rtableid, rr->flags & F_RIB_NOFIBSYNC ?
"no" : "yes");
}
printf("\n");
print_mrt(0, 0, "", "");
printf("\n");
print_groups(conf, peer_l);
printf("\n");
TAILQ_FOREACH(r, rules_l, entry)
print_rule(peer_l, r);
}
|