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
|
/* $OpenBSD: printconf.c,v 1.58 2006/11/28 16:39:34 henning 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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bgpd.h"
#include "mrt.h"
#include "session.h"
void print_op(enum comp_ops);
void print_community(int, int);
void print_set(struct filter_set_head *);
void print_mainconf(struct bgpd_config *);
void print_network(struct network_config *);
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);
const char *print_safi(u_int8_t);
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_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_RTLABEL_ID:
case ACTION_PFTABLE_ID:
/* not possible */
printf("king bula saiz: config broken");
break;
}
}
printf("}");
}
void
print_mainconf(struct bgpd_config *conf)
{
struct in_addr ina;
struct listen_addr *la;
printf("AS %u\n", conf->as);
ina.s_addr = conf->bgpid;
printf("router-id %s\n", inet_ntoa(ina));
if (conf->holdtime)
printf("holdtime %u\n", conf->holdtime);
if (conf->min_holdtime)
printf("holdtime min %u\n", conf->min_holdtime);
if (conf->flags & BGPD_FLAG_NO_FIB_UPDATE)
printf("fib-update no\n");
else
printf("fib-update yes\n");
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->flags & BGPD_FLAG_DECISION_TRANS_AS)
printf("transparent-as yes\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");
if (conf->flags & BGPD_FLAG_REDIST_CONNECTED) {
printf("network inet connected");
if (!TAILQ_EMPTY(&conf->connectset))
printf(" ");
print_set(&conf->connectset);
printf("\n");
}
if (conf->flags & BGPD_FLAG_REDIST_STATIC) {
printf("network inet static");
if (!TAILQ_EMPTY(&conf->staticset))
printf(" ");
print_set(&conf->staticset);
printf("\n");
}
if (conf->flags & BGPD_FLAG_REDIST6_CONNECTED) {
printf("network inet6 connected");
if (!TAILQ_EMPTY(&conf->connectset6))
printf(" ");
print_set(&conf->connectset6);
printf("\n");
}
if (conf->flags & BGPD_FLAG_REDIST_STATIC) {
printf("network inet6 static");
if (!TAILQ_EMPTY(&conf->staticset6))
printf(" ");
print_set(&conf->staticset6);
printf("\n");
}
if (conf->rtableid)
printf("rtable %u\n", conf->rtableid);
}
void
print_network(struct network_config *n)
{
printf("network %s/%u", log_addr(&n->prefix), n->prefixlen);
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.af == AF_INET && p->remote_masklen != 32) ||
(p->remote_addr.af == AF_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->remote_as)
printf("%s\tremote-as %u\n", c, p->remote_as);
if (p->distance > 1)
printf("%s\tmultihop %u\n", c, p->distance);
if (p->passive)
printf("%s\tpassive\n", c);
if (p->local_addr.af)
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->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->if_depend[0])
printf("%s\tdepend on \"%s\"\n", c, p->if_depend);
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);
printf("%s\tannounce IPv4 %s\n", c, print_safi(p->capabilities.mp_v4));
printf("%s\tannounce IPv6 %s\n", c, print_safi(p->capabilities.mp_v6));
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 ("???");
}
}
const char *
print_safi(u_int8_t safi)
{
switch (safi) {
case SAFI_NONE:
return ("none");
case SAFI_UNICAST:
return ("unicast");
default:
return ("?");
}
}
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->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.af)
printf("prefix %s/%u ", log_addr(&r->match.prefix.addr),
r->match.prefix.len);
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.as.type) {
if (r->match.as.type == AS_ALL)
printf("AS %u ", r->match.as.as);
else if (r->match.as.type == AS_SOURCE)
printf("source-as %u ", r->match.as.as);
else if (r->match.as.type == AS_TRANSIT)
printf("transit-as %u ", r->match.as.as);
else
printf("unfluffy-as %u ", r->match.as.as);
}
if (r->match.community.as != 0) {
printf("community ");
print_community(r->match.community.as,
r->match.community.type);
}
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_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)) {
if (MRT2MC(m)->ReopenTimerInterval == 0)
printf("%s%sdump %s %s\n", prep, prep2,
mrt_type(m->type), MRT2MC(m)->name);
else
printf("%s%sdump %s %s %d\n", prep, prep2,
mrt_type(m->type),
MRT2MC(m)->name,
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 network_head *net_l,
struct peer *peer_l, struct filter_head *rules_l, struct mrt_head *mrt_l)
{
struct filter_rule *r;
struct network *n;
xmrt_l = mrt_l;
printf("\n");
print_mainconf(conf);
printf("\n");
TAILQ_FOREACH(n, net_l, entry)
print_network(&n->net);
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);
}
|