aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/crypto
diff options
context:
space:
mode:
authorFilip Tehlar <ftehlar@cisco.com>2020-02-13 20:50:12 +0000
committerDamjan Marion <dmarion@me.com>2020-02-18 22:56:12 +0000
commit1307b2eb2cb309f74f3b5e2194ea88cf922667b4 (patch)
tree3cedea8f37e96a498b0ebf6a5c401caf57771bc8 /src/vnet/crypto
parenta9075dcf65c14f1269faad4ba0e2ed9b06dd3140 (diff)
crypto: show crypto handlers re-design
Type: improvement Show simple and chained handler details on a single line. Change-Id: I5ad807a4d3608fc38c1134f564755d5751c30070 Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'src/vnet/crypto')
-rw-r--r--src/vnet/crypto/cli.c56
-rw-r--r--src/vnet/crypto/format.c5
2 files changed, 37 insertions, 24 deletions
diff --git a/src/vnet/crypto/cli.c b/src/vnet/crypto/cli.c
index ef6371ad3dc..c3383692757 100644
--- a/src/vnet/crypto/cli.c
+++ b/src/vnet/crypto/cli.c
@@ -54,6 +54,33 @@ VLIB_CLI_COMMAND (show_crypto_engines_command, static) =
};
static u8 *
+format_vnet_crypto_engine_candidates (u8 * s, va_list * args)
+{
+ vnet_crypto_engine_t *e;
+ vnet_crypto_main_t *cm = &crypto_main;
+
+ vnet_crypto_op_id_t id = va_arg (*args, vnet_crypto_op_id_t);
+ u32 ei = va_arg (*args, u32);
+ int is_chained = va_arg (*args, int);
+
+ vec_foreach (e, cm->engines)
+ {
+ void * h = is_chained ? (void *) e->chained_ops_handlers[id]
+ : (void *) e->ops_handlers[id];
+
+ if (h)
+ {
+ s = format (s, "%U", format_vnet_crypto_engine, e - cm->engines);
+ if (ei == e - cm->engines)
+ s = format (s, "%c ", '*');
+ else
+ s = format (s, " ");
+ }
+ }
+ return s;
+}
+
+static u8 *
format_vnet_crypto_handlers (u8 * s, va_list * args)
{
vnet_crypto_alg_t alg = va_arg (*args, vnet_crypto_alg_t);
@@ -65,7 +92,6 @@ format_vnet_crypto_handlers (u8 * s, va_list * args)
for (i = 0; i < VNET_CRYPTO_OP_N_TYPES; i++)
{
vnet_crypto_op_data_t *od;
- vnet_crypto_engine_t *e;
vnet_crypto_op_id_t id = d->op_by_type[i];
if (id == 0)
@@ -74,24 +100,12 @@ format_vnet_crypto_handlers (u8 * s, va_list * args)
od = cm->opt_data + id;
if (first == 0)
s = format (s, "\n%U", format_white_space, indent);
- s = format (s, "%-22U%-20U", format_vnet_crypto_op_type, od->type, 0,
- format_vnet_crypto_engine, od->active_engine_index_simple,s);
+ s = format (s, "%-16U", format_vnet_crypto_op_type, od->type);
- vec_foreach (e, cm->engines)
- {
- if (e->ops_handlers[id] != 0)
- s = format (s, "%U ", format_vnet_crypto_engine, e - cm->engines);
- }
-
- s = format (s, "\n%U", format_white_space, indent);
- s = format (s, "%-22U%-20U", format_vnet_crypto_op_type, od->type, 1,
- format_vnet_crypto_engine,
- od->active_engine_index_chained);
- vec_foreach (e, cm->engines)
- {
- if (e->chained_ops_handlers[id] != 0)
- s = format (s, "%U ", format_vnet_crypto_engine, e - cm->engines);
- }
+ s = format (s, "%-28U", format_vnet_crypto_engine_candidates, id,
+ od->active_engine_index_simple, 0);
+ s = format (s, "%U", format_vnet_crypto_engine_candidates, id,
+ od->active_engine_index_chained, 1);
first = 0;
}
return s;
@@ -108,11 +122,11 @@ show_crypto_handlers_command_fn (vlib_main_t * vm,
if (unformat_user (input, unformat_line_input, line_input))
unformat_free (line_input);
- vlib_cli_output (vm, "%-20s%-22s%-20s%s", "Algo", "Type", "Active",
- "Candidates");
+ vlib_cli_output (vm, "%-16s%-16s%-28s%s", "Algo", "Type", "Simple",
+ "Chained");
for (i = 0; i < VNET_CRYPTO_N_ALGS; i++)
- vlib_cli_output (vm, "%-20U%U", format_vnet_crypto_alg, i,
+ vlib_cli_output (vm, "%-16U%U", format_vnet_crypto_alg, i,
format_vnet_crypto_handlers, i);
return 0;
diff --git a/src/vnet/crypto/format.c b/src/vnet/crypto/format.c
index 3210ab9eac0..715941e0ee7 100644
--- a/src/vnet/crypto/format.c
+++ b/src/vnet/crypto/format.c
@@ -54,7 +54,7 @@ format_vnet_crypto_op (u8 * s, va_list * args)
vnet_crypto_op_id_t op = va_arg (*args, int); // vnet_crypto_op_id_t);
vnet_crypto_op_data_t *otd = cm->opt_data + op;
- return format (s, "%U-%U", format_vnet_crypto_op_type, otd->type, 0,
+ return format (s, "%U-%U", format_vnet_crypto_op_type, otd->type,
format_vnet_crypto_alg, otd->alg);
}
@@ -62,7 +62,6 @@ u8 *
format_vnet_crypto_op_type (u8 * s, va_list * args)
{
vnet_crypto_op_type_t opt = va_arg (*args, vnet_crypto_op_type_t);
- int is_chained = va_arg (*args, int);
char *strings[] = {
#define _(n, s) [VNET_CRYPTO_OP_TYPE_##n] = s,
foreach_crypto_op_type
@@ -72,7 +71,7 @@ format_vnet_crypto_op_type (u8 * s, va_list * args)
if (opt >= VNET_CRYPTO_OP_N_TYPES)
return format (s, "unknown");
- return format (s, "%s%s", strings[opt], is_chained ? "-chained" : "");
+ return format (s, "%s", strings[opt]);
}
u8 *