2017-05-15 10:10:51 +00:00
|
|
|
/*
|
|
|
|
* BIRD -- Route Display Routines
|
|
|
|
*
|
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
|
|
|
* (c) 2017 Jan Moskyto Matejka <mq@jmq.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#undef LOCAL_DEBUG
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
2023-10-29 15:25:01 +00:00
|
|
|
#include "nest/route.h"
|
2017-05-15 10:10:51 +00:00
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/cli.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "filter/filter.h"
|
2021-12-02 02:30:39 +00:00
|
|
|
#include "filter/data.h"
|
2019-12-19 15:34:35 +00:00
|
|
|
#include "sysdep/unix/krt.h"
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
static void
|
2022-06-24 13:27:26 +00:00
|
|
|
rt_show_table(struct rt_show_data *d)
|
2017-05-15 10:10:51 +00:00
|
|
|
{
|
2022-06-24 13:27:26 +00:00
|
|
|
struct cli *c = d->cli;
|
|
|
|
|
2017-05-15 10:10:51 +00:00
|
|
|
/* No table blocks in 'show route count' */
|
|
|
|
if (d->stats == 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (d->last_table) cli_printf(c, -1007, "");
|
2022-06-16 21:24:56 +00:00
|
|
|
cli_printf(c, -1007, "Table %s:",
|
2022-06-27 17:53:06 +00:00
|
|
|
d->tab->name);
|
2017-05-15 10:10:51 +00:00
|
|
|
d->last_table = d->tab;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-10-25 11:28:51 +00:00
|
|
|
rt_show_rte(struct cli *c, byte *ia, rte *e, struct rt_show_data *d, int primary)
|
2017-05-15 10:10:51 +00:00
|
|
|
{
|
|
|
|
byte from[IPA_MAX_TEXT_LENGTH+8];
|
|
|
|
byte tm[TM_DATETIME_BUFFER_SIZE], info[256];
|
2022-05-30 10:03:03 +00:00
|
|
|
ea_list *a = e->attrs;
|
2022-06-27 17:53:06 +00:00
|
|
|
int sync_error = d->tab->kernel ? krt_get_sync_error(d->tab->kernel, e) : 0;
|
2023-03-30 09:37:16 +00:00
|
|
|
void (*get_route_info)(const rte *, byte *buf);
|
2023-11-08 20:51:46 +00:00
|
|
|
const eattr *nhea = net_type_match(e->net, NB_DEST) ?
|
2022-06-08 13:31:28 +00:00
|
|
|
ea_find(a, &ea_gen_nexthop) : NULL;
|
2022-05-05 16:08:37 +00:00
|
|
|
struct nexthop_adata *nhad = nhea ? (struct nexthop_adata *) nhea->u.ptr : NULL;
|
2022-06-08 09:47:49 +00:00
|
|
|
int dest = nhad ? (NEXTHOP_IS_REACHABLE(nhad) ? RTD_UNICAST : nhad->dest) : RTD_NONE;
|
|
|
|
int flowspec_valid = net_is_flow(e->net) ? rt_get_flowspec_valid(e) : FLOWSPEC_UNKNOWN;
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2017-06-06 14:47:30 +00:00
|
|
|
tm_format_time(tm, &config->tf_route, e->lastmod);
|
2022-05-30 10:03:03 +00:00
|
|
|
ip_addr a_from = ea_get_ip(a, &ea_gen_from, IPA_NONE);
|
2022-05-05 16:08:37 +00:00
|
|
|
if (ipa_nonzero(a_from) && (!nhad || !ipa_equal(a_from, nhad->nh.gw)))
|
2022-04-20 11:56:04 +00:00
|
|
|
bsprintf(from, " from %I", a_from);
|
2017-05-15 10:10:51 +00:00
|
|
|
else
|
|
|
|
from[0] = 0;
|
|
|
|
|
2018-05-29 10:08:12 +00:00
|
|
|
/* Need to normalize the extended attributes */
|
2022-05-30 10:03:03 +00:00
|
|
|
if (d->verbose && !rta_is_cached(a) && a)
|
2022-06-16 21:24:53 +00:00
|
|
|
a = ea_normalize(a, 0);
|
2019-03-14 16:22:22 +00:00
|
|
|
|
2021-09-27 14:40:28 +00:00
|
|
|
get_route_info = e->src->owner->class ? e->src->owner->class->get_route_info : NULL;
|
2017-05-15 10:10:51 +00:00
|
|
|
if (get_route_info)
|
2018-05-29 10:08:12 +00:00
|
|
|
get_route_info(e, info);
|
2017-05-15 10:10:51 +00:00
|
|
|
else
|
2022-04-20 10:24:26 +00:00
|
|
|
bsprintf(info, " (%d)", rt_get_preference(e));
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
if (d->last_table != d->tab)
|
2022-06-24 13:27:26 +00:00
|
|
|
rt_show_table(d);
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2023-11-08 20:51:46 +00:00
|
|
|
const eattr *heea;
|
2022-06-16 10:39:08 +00:00
|
|
|
struct hostentry_adata *had = NULL;
|
|
|
|
if (!net_is_flow(e->net) && (dest == RTD_NONE) && (heea = ea_find(a, &ea_gen_hostentry)))
|
|
|
|
had = (struct hostentry_adata *) heea->u.ptr;
|
|
|
|
|
|
|
|
cli_printf(c, -1007, "%-20s %s [%s %s%s]%s%s", ia,
|
|
|
|
net_is_flow(e->net) ? flowspec_valid_name(flowspec_valid) : had ? "recursive" : rta_dest_name(dest),
|
2022-08-02 20:08:59 +00:00
|
|
|
e->src->owner->name, tm, from, primary ? (sync_error ? " !" : " *") : "", info);
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
if (d->verbose)
|
Route refresh in tables uses a stale counter.
Until now, we were marking routes as REF_STALE and REF_DISCARD to
cleanup old routes after route refresh. This needed a synchronous route
table walk at both beginning and the end of route refresh routine,
marking the routes by the flags.
We avoid these walks by using a stale counter. Every route contains:
u8 stale_cycle;
Every import hook contains:
u8 stale_set;
u8 stale_valid;
u8 stale_pruned;
u8 stale_pruning;
In base_state, stale_set == stale_valid == stale_pruned == stale_pruning
and all routes' stale_cycle also have the same value.
The route refresh looks like follows:
+ ----------- + --------- + ----------- + ------------- + ------------ +
| | stale_set | stale_valid | stale_pruning | stale_pruned |
| Base | x | x | x | x |
| Begin | x+1 | x | x | x |
... now routes are being inserted with stale_cycle == (x+1)
| End | x+1 | x+1 | x | x |
... now table pruning routine is scheduled
| Prune begin | x+1 | x+1 | x+1 | x |
... now routes with stale_cycle not between stale_set and stale_valid
are deleted
| Prune end | x+1 | x+1 | x+1 | x+1 |
+ ----------- + --------- + ----------- + ------------- + ------------ +
The pruning routine is asynchronous and may have high latency in
high-load environments. Therefore, multiple route refresh requests may
happen before the pruning routine starts, leading to this situation:
| Prune begin | x+k | x+k | x -> x+k | x |
... or even
| Prune begin | x+k+1 | x+k | x -> x+k | x |
... if the prune event starts while another route refresh is running.
In such a case, the pruning routine still deletes routes not fitting
between stale_set and and stale_valid, effectively pruning the remnants
of all unpruned route refreshes from before:
| Prune end | x+k | x+k | x+k | x+k |
In extremely rare cases, there may happen too many route refreshes
before any route prune routine finishes. If the difference between
stale_valid and stale_pruned becomes more than 128 when requesting for
another route refresh, the routine walks the table synchronously and
resets all the stale values to a base state, while logging a warning.
2022-07-12 08:36:10 +00:00
|
|
|
{
|
2022-05-30 10:03:03 +00:00
|
|
|
ea_show_list(c, a);
|
2023-11-01 17:08:49 +00:00
|
|
|
cli_printf(c, -1008, "\tInternal route handling values: %luL %uG %uS id %u",
|
2022-07-15 12:57:02 +00:00
|
|
|
e->src->private_id, e->src->global_id, e->stale_cycle, e->id);
|
Route refresh in tables uses a stale counter.
Until now, we were marking routes as REF_STALE and REF_DISCARD to
cleanup old routes after route refresh. This needed a synchronous route
table walk at both beginning and the end of route refresh routine,
marking the routes by the flags.
We avoid these walks by using a stale counter. Every route contains:
u8 stale_cycle;
Every import hook contains:
u8 stale_set;
u8 stale_valid;
u8 stale_pruned;
u8 stale_pruning;
In base_state, stale_set == stale_valid == stale_pruned == stale_pruning
and all routes' stale_cycle also have the same value.
The route refresh looks like follows:
+ ----------- + --------- + ----------- + ------------- + ------------ +
| | stale_set | stale_valid | stale_pruning | stale_pruned |
| Base | x | x | x | x |
| Begin | x+1 | x | x | x |
... now routes are being inserted with stale_cycle == (x+1)
| End | x+1 | x+1 | x | x |
... now table pruning routine is scheduled
| Prune begin | x+1 | x+1 | x+1 | x |
... now routes with stale_cycle not between stale_set and stale_valid
are deleted
| Prune end | x+1 | x+1 | x+1 | x+1 |
+ ----------- + --------- + ----------- + ------------- + ------------ +
The pruning routine is asynchronous and may have high latency in
high-load environments. Therefore, multiple route refresh requests may
happen before the pruning routine starts, leading to this situation:
| Prune begin | x+k | x+k | x -> x+k | x |
... or even
| Prune begin | x+k+1 | x+k | x -> x+k | x |
... if the prune event starts while another route refresh is running.
In such a case, the pruning routine still deletes routes not fitting
between stale_set and and stale_valid, effectively pruning the remnants
of all unpruned route refreshes from before:
| Prune end | x+k | x+k | x+k | x+k |
In extremely rare cases, there may happen too many route refreshes
before any route prune routine finishes. If the difference between
stale_valid and stale_pruned becomes more than 128 when requesting for
another route refresh, the routine walks the table synchronously and
resets all the stale values to a base state, while logging a warning.
2022-07-12 08:36:10 +00:00
|
|
|
}
|
2022-06-27 11:39:28 +00:00
|
|
|
else if (dest == RTD_UNICAST)
|
|
|
|
ea_show_nexthop_list(c, nhad);
|
|
|
|
else if (had)
|
|
|
|
{
|
|
|
|
char hetext[256];
|
|
|
|
ea_show_hostentry(&had->ad, hetext, sizeof hetext);
|
|
|
|
cli_printf(c, -1007, "\t%s", hetext);
|
|
|
|
}
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
|
|
|
|
2021-06-21 15:07:31 +00:00
|
|
|
static void
|
2023-03-30 09:37:16 +00:00
|
|
|
rt_show_net(struct rt_show_data *d, const net_addr *n, const rte **feed, uint count)
|
2017-05-15 10:10:51 +00:00
|
|
|
{
|
2022-06-24 13:27:26 +00:00
|
|
|
struct cli *c = d->cli;
|
2022-09-14 23:38:18 +00:00
|
|
|
byte ia[NET_MAX_TEXT_LENGTH+16+1];
|
2017-05-15 10:10:51 +00:00
|
|
|
struct channel *ec = d->tab->export_channel;
|
2019-08-17 06:59:06 +00:00
|
|
|
|
|
|
|
/* The Clang static analyzer complains that ec may be NULL.
|
|
|
|
* It should be ensured to be not NULL by rt_show_prepare_tables() */
|
2020-05-01 13:41:42 +00:00
|
|
|
ASSUME(!d->export_mode || ec);
|
2019-08-17 06:59:06 +00:00
|
|
|
|
2017-05-15 10:10:51 +00:00
|
|
|
int first = 1;
|
2021-12-02 03:05:17 +00:00
|
|
|
int first_show = 1;
|
2023-11-08 20:51:46 +00:00
|
|
|
uint last_label = 0;
|
2017-05-15 10:10:51 +00:00
|
|
|
int pass = 0;
|
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
for (uint i = 0; i < count; i++)
|
2017-05-15 10:10:51 +00:00
|
|
|
{
|
2022-06-24 13:27:26 +00:00
|
|
|
if (!d->tab->prefilter && (rte_is_filtered(feed[i]) != d->filtered))
|
2017-05-15 10:10:51 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
d->rt_counter++;
|
|
|
|
d->net_counter += first;
|
|
|
|
first = 0;
|
|
|
|
|
|
|
|
if (pass)
|
|
|
|
continue;
|
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
struct rte e = *feed[i];
|
2022-06-16 21:24:56 +00:00
|
|
|
if (d->tab->prefilter)
|
|
|
|
if (e.sender != d->tab->prefilter->in_req.hook)
|
|
|
|
continue;
|
|
|
|
else while (e.attrs->next)
|
|
|
|
e.attrs = e.attrs->next;
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
/* Export channel is down, do not try to export routes to it */
|
2021-06-21 15:07:31 +00:00
|
|
|
if (ec && !ec->out_req.hook)
|
2017-05-15 10:10:51 +00:00
|
|
|
goto skip;
|
|
|
|
|
2019-09-09 00:55:32 +00:00
|
|
|
if (d->export_mode == RSEM_EXPORTED)
|
|
|
|
{
|
2020-01-28 10:42:46 +00:00
|
|
|
if (!bmap_test(&ec->export_map, e.id))
|
2019-09-09 00:55:32 +00:00
|
|
|
goto skip;
|
|
|
|
|
|
|
|
// if (ec->ra_mode != RA_ANY)
|
|
|
|
// pass = 1;
|
|
|
|
}
|
|
|
|
else if ((d->export_mode == RSEM_EXPORT) && (ec->ra_mode == RA_MERGED))
|
2018-02-06 16:43:55 +00:00
|
|
|
{
|
2019-09-09 00:55:32 +00:00
|
|
|
/* Special case for merged export */
|
2017-05-15 10:10:51 +00:00
|
|
|
pass = 1;
|
2023-09-29 14:24:50 +00:00
|
|
|
rte *em = rt_export_merged(ec, n, feed, count, tmp_linpool, 1);
|
2021-06-21 15:07:31 +00:00
|
|
|
|
2020-01-28 10:42:46 +00:00
|
|
|
if (em)
|
|
|
|
e = *em;
|
|
|
|
else
|
|
|
|
goto skip;
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
|
|
|
else if (d->export_mode)
|
|
|
|
{
|
|
|
|
struct proto *ep = ec->proto;
|
2020-01-28 10:42:46 +00:00
|
|
|
int ic = ep->preexport ? ep->preexport(ec, &e) : 0;
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
if (ec->ra_mode == RA_OPTIMAL || ec->ra_mode == RA_MERGED)
|
|
|
|
pass = 1;
|
|
|
|
|
|
|
|
if (ic < 0)
|
|
|
|
goto skip;
|
|
|
|
|
|
|
|
if (d->export_mode > RSEM_PREEXPORT)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* FIXME - This shows what should be exported according to current
|
|
|
|
* filters, but not what was really exported. 'configure soft'
|
|
|
|
* command may change the export filter and do not update routes.
|
|
|
|
*/
|
|
|
|
int do_export = (ic > 0) ||
|
2022-04-10 16:55:15 +00:00
|
|
|
(f_run(ec->out_filter, &e, FF_SILENT) <= F_ACCEPT);
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
if (do_export != (d->export_mode == RSEM_EXPORT))
|
|
|
|
goto skip;
|
|
|
|
|
|
|
|
if ((d->export_mode == RSEM_EXPORT) && (ec->ra_mode == RA_ACCEPTED))
|
|
|
|
pass = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-27 14:40:28 +00:00
|
|
|
if (d->show_protocol && (&d->show_protocol->sources != e.src->owner))
|
2017-05-15 10:10:51 +00:00
|
|
|
goto skip;
|
|
|
|
|
2022-04-10 16:55:15 +00:00
|
|
|
if (f_run(d->filter, &e, 0) > F_ACCEPT)
|
2017-05-15 10:10:51 +00:00
|
|
|
goto skip;
|
|
|
|
|
|
|
|
if (d->stats < 2)
|
2021-12-02 03:05:17 +00:00
|
|
|
{
|
2023-11-08 20:51:46 +00:00
|
|
|
uint label = ea_get_int(e.attrs, &ea_gen_mpls_label, ~0U);
|
2022-09-14 23:38:18 +00:00
|
|
|
|
|
|
|
if (first_show || (last_label != label))
|
|
|
|
{
|
2023-11-08 20:51:46 +00:00
|
|
|
if (!~label)
|
|
|
|
net_format(n, ia, sizeof(ia));
|
2022-09-14 23:38:18 +00:00
|
|
|
else
|
2023-11-08 20:51:46 +00:00
|
|
|
bsnprintf(ia, sizeof(ia), "%N mpls %d", n, label);
|
2022-09-14 23:38:18 +00:00
|
|
|
}
|
2021-12-02 03:05:17 +00:00
|
|
|
else
|
|
|
|
ia[0] = 0;
|
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
rt_show_rte(c, ia, &e, d, !d->tab->prefilter && !i);
|
2021-12-02 03:05:17 +00:00
|
|
|
first_show = 0;
|
2022-09-14 23:38:18 +00:00
|
|
|
last_label = label;
|
2021-12-02 03:05:17 +00:00
|
|
|
}
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
d->show_counter++;
|
|
|
|
|
|
|
|
skip:
|
|
|
|
if (d->primary_only)
|
|
|
|
break;
|
|
|
|
}
|
2022-06-24 13:27:26 +00:00
|
|
|
|
|
|
|
if ((d->show_counter - d->show_counter_last_flush) > 64)
|
|
|
|
{
|
|
|
|
d->show_counter_last_flush = d->show_counter;
|
|
|
|
cli_write_trigger(d->cli);
|
|
|
|
}
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2022-06-24 13:27:26 +00:00
|
|
|
rt_show_net_export_bulk(struct rt_export_request *req, const net_addr *n,
|
2023-03-31 08:46:17 +00:00
|
|
|
struct rt_pending_export *first UNUSED, struct rt_pending_export *last UNUSED,
|
|
|
|
const rte **feed, uint count)
|
2017-05-15 10:10:51 +00:00
|
|
|
{
|
2022-06-24 13:27:26 +00:00
|
|
|
struct rt_show_data *d = SKIP_BACK(struct rt_show_data, req, req);
|
|
|
|
return rt_show_net(d, n, feed, count);
|
|
|
|
}
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
static void
|
|
|
|
rt_show_export_stopped_cleanup(struct rt_export_request *req)
|
|
|
|
{
|
|
|
|
struct rt_show_data *d = SKIP_BACK(struct rt_show_data, req, req);
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
/* The hook is now invalid */
|
|
|
|
req->hook = NULL;
|
2022-02-04 04:34:02 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
/* And free the CLI (deferred) */
|
2023-04-20 19:08:38 +00:00
|
|
|
rp_free(d->cli->pool);
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
static int
|
|
|
|
rt_show_cleanup(struct cli *c)
|
2017-05-15 10:10:51 +00:00
|
|
|
{
|
|
|
|
struct rt_show_data *d = c->rover;
|
2023-01-19 09:53:09 +00:00
|
|
|
c->cleanup = NULL;
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
/* Cancel the feed */
|
|
|
|
if (d->req.hook)
|
2017-05-15 10:10:51 +00:00
|
|
|
{
|
2022-06-24 13:27:26 +00:00
|
|
|
rt_stop_export(&d->req, rt_show_export_stopped_cleanup);
|
|
|
|
return 1;
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
2022-06-24 13:27:26 +00:00
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
static void rt_show_export_stopped(struct rt_export_request *req);
|
2021-12-02 02:30:39 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
static void
|
|
|
|
rt_show_log_state_change(struct rt_export_request *req, u8 state)
|
|
|
|
{
|
|
|
|
if (state == TES_READY)
|
|
|
|
rt_stop_export(req, rt_show_export_stopped);
|
|
|
|
}
|
2021-12-02 02:30:39 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
static void
|
|
|
|
rt_show_dump_req(struct rt_export_request *req)
|
|
|
|
{
|
|
|
|
debug(" CLI Show Route Feed %p\n", req);
|
|
|
|
}
|
|
|
|
|
2022-07-13 09:19:00 +00:00
|
|
|
static void
|
|
|
|
rt_show_done(struct rt_show_data *d)
|
|
|
|
{
|
|
|
|
/* No more action */
|
|
|
|
d->cli->cleanup = NULL;
|
|
|
|
d->cli->cont = NULL;
|
|
|
|
d->cli->rover = NULL;
|
|
|
|
|
|
|
|
/* Write pending messages */
|
|
|
|
cli_write_trigger(d->cli);
|
|
|
|
}
|
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
static void
|
|
|
|
rt_show_cont(struct rt_show_data *d)
|
|
|
|
{
|
|
|
|
struct cli *c = d->cli;
|
2021-12-02 02:30:39 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
if (d->running_on_config && (d->running_on_config != config))
|
|
|
|
{
|
|
|
|
cli_printf(c, 8004, "Stopped due to reconfiguration");
|
2022-07-13 09:19:00 +00:00
|
|
|
return rt_show_done(d);
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
d->req = (struct rt_export_request) {
|
2023-10-03 09:08:28 +00:00
|
|
|
.prefilter.addr = d->addr,
|
2022-06-24 13:27:26 +00:00
|
|
|
.name = "CLI Show Route",
|
2022-07-18 10:33:00 +00:00
|
|
|
.list = &global_work_list,
|
2023-04-21 13:26:06 +00:00
|
|
|
.pool = c->pool,
|
2022-06-24 13:27:26 +00:00
|
|
|
.export_bulk = rt_show_net_export_bulk,
|
|
|
|
.dump_req = rt_show_dump_req,
|
|
|
|
.log_state_change = rt_show_log_state_change,
|
2023-10-03 09:08:28 +00:00
|
|
|
.prefilter.mode = d->addr_mode,
|
2022-06-24 13:27:26 +00:00
|
|
|
};
|
2021-12-02 02:30:39 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
d->table_counter++;
|
2021-12-02 02:30:39 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
d->show_counter_last = d->show_counter;
|
|
|
|
d->rt_counter_last = d->rt_counter;
|
|
|
|
d->net_counter_last = d->net_counter;
|
2022-02-04 04:34:02 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
if (d->tables_defined_by & RSD_TDB_SET)
|
|
|
|
rt_show_table(d);
|
2021-12-02 01:22:30 +00:00
|
|
|
|
2022-09-05 04:58:42 +00:00
|
|
|
rt_request_export_other(d->tab->table, &d->req);
|
2022-06-24 13:27:26 +00:00
|
|
|
}
|
2021-12-02 02:30:39 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
static void
|
|
|
|
rt_show_export_stopped(struct rt_export_request *req)
|
|
|
|
{
|
|
|
|
struct rt_show_data *d = SKIP_BACK(struct rt_show_data, req, req);
|
|
|
|
|
|
|
|
/* The hook is now invalid */
|
|
|
|
req->hook = NULL;
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
if (d->stats)
|
|
|
|
{
|
|
|
|
if (d->last_table != d->tab)
|
2022-06-24 13:27:26 +00:00
|
|
|
rt_show_table(d);
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
cli_printf(d->cli, -1007, "%d of %d routes for %d networks in table %s",
|
2017-05-15 10:10:51 +00:00
|
|
|
d->show_counter - d->show_counter_last, d->rt_counter - d->rt_counter_last,
|
2022-06-27 17:53:06 +00:00
|
|
|
d->net_counter - d->net_counter_last, d->tab->name);
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
d->tab = NODE_NEXT(d->tab);
|
|
|
|
|
|
|
|
if (NODE_VALID(d->tab))
|
2022-06-24 13:27:26 +00:00
|
|
|
return rt_show_cont(d);
|
|
|
|
|
|
|
|
/* Printout total stats */
|
2017-05-15 10:10:51 +00:00
|
|
|
if (d->stats && (d->table_counter > 1))
|
|
|
|
{
|
2022-06-24 13:27:26 +00:00
|
|
|
if (d->last_table) cli_printf(d->cli, -1007, "");
|
|
|
|
cli_printf(d->cli, 14, "Total: %d of %d routes for %d networks in %d tables",
|
2017-05-15 10:10:51 +00:00
|
|
|
d->show_counter, d->rt_counter, d->net_counter, d->table_counter);
|
|
|
|
}
|
2022-06-27 17:53:06 +00:00
|
|
|
else if (!d->rt_counter && ((d->addr_mode == TE_ADDR_EQUAL) || (d->addr_mode == TE_ADDR_FOR)))
|
|
|
|
cli_printf(d->cli, 8001, "Network not found");
|
2017-05-15 10:10:51 +00:00
|
|
|
else
|
2022-06-24 13:27:26 +00:00
|
|
|
cli_printf(d->cli, 0, "");
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2022-07-13 09:19:00 +00:00
|
|
|
/* No more route showing */
|
|
|
|
rt_show_done(d);
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct rt_show_data_rtable *
|
2022-06-27 17:53:06 +00:00
|
|
|
rt_show_add_exporter(struct rt_show_data *d, struct rt_exporter *t, const char *name)
|
2017-05-15 10:10:51 +00:00
|
|
|
{
|
|
|
|
struct rt_show_data_rtable *tab = cfg_allocz(sizeof(struct rt_show_data_rtable));
|
|
|
|
tab->table = t;
|
2022-06-27 17:53:06 +00:00
|
|
|
tab->name = name;
|
2017-05-15 10:10:51 +00:00
|
|
|
add_tail(&(d->tables), &(tab->n));
|
|
|
|
return tab;
|
|
|
|
}
|
|
|
|
|
2022-06-27 17:53:06 +00:00
|
|
|
struct rt_show_data_rtable *
|
2022-09-07 11:54:20 +00:00
|
|
|
rt_show_add_table(struct rt_show_data *d, rtable *t)
|
2022-06-27 17:53:06 +00:00
|
|
|
{
|
2022-09-07 11:54:20 +00:00
|
|
|
struct rt_show_data_rtable *rsdr;
|
|
|
|
RT_LOCKED(t, tp)
|
|
|
|
rsdr = rt_show_add_exporter(d, &tp->exporter.e, t->name);
|
2022-06-27 17:53:06 +00:00
|
|
|
|
|
|
|
struct proto_config *krt = t->config->krt_attached;
|
|
|
|
if (krt)
|
|
|
|
rsdr->kernel = (struct krt_proto *) krt->proto;
|
|
|
|
|
|
|
|
return rsdr;
|
|
|
|
}
|
|
|
|
|
2017-05-15 10:10:51 +00:00
|
|
|
static inline void
|
|
|
|
rt_show_get_default_tables(struct rt_show_data *d)
|
|
|
|
{
|
|
|
|
struct channel *c;
|
|
|
|
struct rt_show_data_rtable *tab;
|
|
|
|
|
|
|
|
if (d->export_channel)
|
|
|
|
{
|
|
|
|
c = d->export_channel;
|
|
|
|
tab = rt_show_add_table(d, c->table);
|
|
|
|
tab->export_channel = c;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d->export_protocol)
|
|
|
|
{
|
|
|
|
WALK_LIST(c, d->export_protocol->channels)
|
|
|
|
{
|
2021-06-21 15:07:31 +00:00
|
|
|
if (!c->out_req.hook)
|
2017-05-15 10:10:51 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
tab = rt_show_add_table(d, c->table);
|
|
|
|
tab->export_channel = c;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d->show_protocol)
|
|
|
|
{
|
|
|
|
WALK_LIST(c, d->show_protocol->channels)
|
|
|
|
rt_show_add_table(d, c->table);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i=1; i<NET_MAX; i++)
|
2022-09-01 12:21:56 +00:00
|
|
|
if (config->def_tables[i] && config->def_tables[i]->table && config->def_tables[i]->table->table)
|
|
|
|
rt_show_add_table(d, config->def_tables[i]->table->table);
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
rt_show_prepare_tables(struct rt_show_data *d)
|
|
|
|
{
|
|
|
|
struct rt_show_data_rtable *tab, *tabx;
|
|
|
|
|
|
|
|
/* Add implicit tables if no table is specified */
|
|
|
|
if (EMPTY_LIST(d->tables))
|
|
|
|
rt_show_get_default_tables(d);
|
|
|
|
|
|
|
|
WALK_LIST_DELSAFE(tab, tabx, d->tables)
|
|
|
|
{
|
|
|
|
/* Ensure there is defined export_channel for each table */
|
|
|
|
if (d->export_mode)
|
|
|
|
{
|
2022-09-07 11:54:20 +00:00
|
|
|
rtable *rt = SKIP_BACK(rtable, priv.exporter.e, tab->table);
|
2017-05-15 10:10:51 +00:00
|
|
|
if (!tab->export_channel && d->export_channel &&
|
2022-09-07 11:54:20 +00:00
|
|
|
(rt == d->export_channel->table))
|
2017-05-15 10:10:51 +00:00
|
|
|
tab->export_channel = d->export_channel;
|
|
|
|
|
|
|
|
if (!tab->export_channel && d->export_protocol)
|
2022-09-07 11:54:20 +00:00
|
|
|
tab->export_channel = proto_find_channel_by_table(d->export_protocol, rt);
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
if (!tab->export_channel)
|
|
|
|
{
|
|
|
|
if (d->tables_defined_by & RSD_TDB_NMN)
|
2022-06-27 17:53:06 +00:00
|
|
|
cf_error("No export channel for table %s", tab->name);
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
rem_node(&(tab->n));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure specified network is compatible with each table */
|
|
|
|
if (d->addr && (tab->table->addr_type != d->addr->type))
|
|
|
|
{
|
|
|
|
if (d->tables_defined_by & RSD_TDB_NMN)
|
2022-06-27 17:53:06 +00:00
|
|
|
cf_error("Incompatible type of prefix/ip for table %s", tab->name);
|
2017-05-15 10:10:51 +00:00
|
|
|
|
|
|
|
rem_node(&(tab->n));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure there is at least one table */
|
|
|
|
if (EMPTY_LIST(d->tables))
|
|
|
|
cf_error("No valid tables");
|
|
|
|
}
|
|
|
|
|
2022-06-24 13:27:26 +00:00
|
|
|
static void
|
|
|
|
rt_show_dummy_cont(struct cli *c UNUSED)
|
|
|
|
{
|
|
|
|
/* Explicitly do nothing to prevent CLI from trying to parse another command. */
|
|
|
|
}
|
|
|
|
|
2017-05-15 10:10:51 +00:00
|
|
|
void
|
|
|
|
rt_show(struct rt_show_data *d)
|
|
|
|
{
|
|
|
|
/* Filtered routes are neither exported nor have sensible ordering */
|
|
|
|
if (d->filtered && (d->export_mode || d->primary_only))
|
|
|
|
cf_error("Incompatible show route options");
|
|
|
|
|
|
|
|
rt_show_prepare_tables(d);
|
|
|
|
|
2022-06-27 17:53:06 +00:00
|
|
|
if (EMPTY_LIST(d->tables))
|
|
|
|
cf_error("No suitable tables found");
|
2022-06-24 13:27:26 +00:00
|
|
|
|
2022-06-27 17:53:06 +00:00
|
|
|
d->tab = HEAD(d->tables);
|
2022-06-24 13:27:26 +00:00
|
|
|
|
2022-06-27 17:53:06 +00:00
|
|
|
this_cli->cleanup = rt_show_cleanup;
|
|
|
|
this_cli->rover = d;
|
|
|
|
this_cli->cont = rt_show_dummy_cont;
|
2017-05-15 10:10:51 +00:00
|
|
|
|
2022-06-27 17:53:06 +00:00
|
|
|
rt_show_cont(d);
|
2017-05-15 10:10:51 +00:00
|
|
|
}
|