blob: 4b0e093b02eedf402c8eaf5b21928ff1e7b94f30 [file] [log] [blame]
Damjan Marion91f17dc2019-03-18 18:59:25 +01001/*
2 * Copyright (c) 2019 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <stdbool.h>
17#include <vlib/vlib.h>
18#include <vnet/crypto/crypto.h>
19
20static clib_error_t *
21show_crypto_engines_command_fn (vlib_main_t * vm,
22 unformat_input_t * input,
23 vlib_cli_command_t * cmd)
24{
25 unformat_input_t _line_input, *line_input = &_line_input;
26 vnet_crypto_main_t *cm = &crypto_main;
27 vnet_crypto_engine_t *p;
28
29 if (unformat_user (input, unformat_line_input, line_input))
30 unformat_free (line_input);
31
32 if (vec_len (cm->engines) == 0)
33 {
34 vlib_cli_output (vm, "No crypto engines registered");
35 return 0;
36 }
37
38 vlib_cli_output (vm, "%-20s%-8s%s", "Name", "Prio", "Description");
39 /* *INDENT-OFF* */
40 vec_foreach (p, cm->engines)
41 {
42 vlib_cli_output (vm, "%-20s%-8u%s", p->name, p->priority, p->desc);
43 }
44 /* *INDENT-ON* */
45 return 0;
46}
47
48/* *INDENT-OFF* */
49VLIB_CLI_COMMAND (show_crypto_engines_command, static) =
50{
51 .path = "show crypto engines",
52 .short_help = "show crypto engines",
53 .function = show_crypto_engines_command_fn,
54};
55
Damjan Marion060bfb92019-03-29 13:47:54 +010056static u8 *
57format_vnet_crypto_handlers (u8 * s, va_list * args)
58{
59 vnet_crypto_alg_t alg = va_arg (*args, vnet_crypto_alg_t);
60 vnet_crypto_main_t *cm = &crypto_main;
61 vnet_crypto_alg_data_t *d = vec_elt_at_index (cm->algs, alg);
62 u32 indent = format_get_indent (s);
63 int i, first = 1;
64
65 for (i = 0; i < VNET_CRYPTO_OP_N_TYPES; i++)
66 {
67 vnet_crypto_op_data_t *od;
68 vnet_crypto_engine_t *e;
69 vnet_crypto_op_id_t id = d->op_by_type[i];
70
71 if (id == 0)
72 continue;
73
74 od = vec_elt_at_index (cm->opt_data, id);
75 if (first == 0)
76 s = format (s, "\n%U", format_white_space, indent);
77 s = format (s, "%-20U%-20U", format_vnet_crypto_op_type, od->type,
78 format_vnet_crypto_engine, od->active_engine_index,s);
79
80 vec_foreach (e, cm->engines)
81 {
82 if (e->ops_handlers[id] != 0)
83 s = format (s, "%U ", format_vnet_crypto_engine, e - cm->engines);
84 }
85 first = 0;
86 }
87 return s;
88}
89
90
Damjan Marion91f17dc2019-03-18 18:59:25 +010091static clib_error_t *
92show_crypto_handlers_command_fn (vlib_main_t * vm,
93 unformat_input_t * input, vlib_cli_command_t * cmd)
94{
Damjan Marion91f17dc2019-03-18 18:59:25 +010095 unformat_input_t _line_input, *line_input = &_line_input;
Damjan Marion060bfb92019-03-29 13:47:54 +010096 int i;
Damjan Marion91f17dc2019-03-18 18:59:25 +010097
98 if (unformat_user (input, unformat_line_input, line_input))
99 unformat_free (line_input);
100
Damjan Marion060bfb92019-03-29 13:47:54 +0100101 vlib_cli_output (vm, "%-20s%-20s%-20s%s", "Algo", "Type", "Active",
102 "Candidates");
Damjan Marion91f17dc2019-03-18 18:59:25 +0100103
Damjan Marion060bfb92019-03-29 13:47:54 +0100104 for (i = 0; i < VNET_CRYPTO_N_ALGS; i++)
105 vlib_cli_output (vm, "%-20U%U", format_vnet_crypto_alg, i,
106 format_vnet_crypto_handlers, i);
107
Damjan Marion91f17dc2019-03-18 18:59:25 +0100108 return 0;
109}
110
111/* *INDENT-OFF* */
112VLIB_CLI_COMMAND (show_crypto_handlers_command, static) =
113{
114 .path = "show crypto handlers",
115 .short_help = "show crypto handlers",
116 .function = show_crypto_handlers_command_fn,
117};
118/* *INDENT-ON* */
119
Filip Tehlar1469d542019-03-25 09:04:41 -0700120static clib_error_t *
121set_crypto_handler_command_fn (vlib_main_t * vm,
122 unformat_input_t * input,
123 vlib_cli_command_t * cmd)
124{
125 unformat_input_t _line_input, *line_input = &_line_input;
126 vnet_crypto_main_t *cm = &crypto_main;
127 int rc = 0;
128 char **args = 0, *s, **arg, *engine = 0;
129 int all = 0;
130 clib_error_t *error = 0;
131
132 if (!unformat_user (input, unformat_line_input, line_input))
133 return 0;
134
135 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
136 {
137 if (unformat (line_input, "all"))
138 all = 1;
139 else if (unformat (line_input, "%s", &s))
140 vec_add1 (args, s);
141 else
142 {
143 error = clib_error_return (0, "invalid params");
144 goto done;
145 }
146 }
147
148 if ((vec_len (args) < 2 && !all) || (vec_len (args) == 0 && all))
149 {
150 error = clib_error_return (0, "missing cipher or engine!");
151 goto done;
152 }
153
154 engine = vec_elt_at_index (args, vec_len (args) - 1)[0];
155 vec_del1 (args, vec_len (args) - 1);
156
157 if (all)
158 {
159 char *key;
160 u8 *value;
161
162 /* *INDENT-OFF* */
Damjan Marion060bfb92019-03-29 13:47:54 +0100163 hash_foreach_mem (key, value, cm->alg_index_by_name,
Filip Tehlar1469d542019-03-25 09:04:41 -0700164 ({
165 (void) value;
166 rc += vnet_crypto_set_handler (key, engine);
167 }));
168 /* *INDENT-ON* */
169
170 if (rc)
171 vlib_cli_output (vm, "failed to set crypto engine!");
172 }
173 else
174 {
175 vec_foreach (arg, args)
176 {
177 rc = vnet_crypto_set_handler (arg[0], engine);
178 if (rc)
179 {
180 vlib_cli_output (vm, "failed to set engine %s for %s!",
181 engine, arg[0]);
182 }
183 }
184 }
185
186done:
187 vec_free (engine);
188 vec_foreach (arg, args) vec_free (arg[0]);
189 vec_free (args);
190 unformat_free (line_input);
191 return error;
192}
193
194/* *INDENT-OFF* */
195VLIB_CLI_COMMAND (set_crypto_handler_command, static) =
196{
197 .path = "set crypto handler",
198 .short_help = "set crypto handler cipher [cipher2 cipher3 ...] engine",
199 .function = set_crypto_handler_command_fn,
200};
201/* *INDENT-ON* */
202
Damjan Marion91f17dc2019-03-18 18:59:25 +0100203/*
204 * fd.io coding-style-patch-verification: ON
205 *
206 * Local Variables:
207 * eval: (c-set-style "gnu")
208 * End:
209 */