LCOV - code coverage report
Current view: top level - vnet/crypto - cli.c (source / functions) Hit Total Coverage
Test: coverage-filtered.info Lines: 47 184 25.5 %
Date: 2023-10-26 01:39:38 Functions: 14 21 66.7 %

          Line data    Source code
       1             : /*
       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             : 
      20             : static clib_error_t *
      21           0 : show_crypto_engines_command_fn (vlib_main_t * vm,
      22             :                                 unformat_input_t * input,
      23             :                                 vlib_cli_command_t * cmd)
      24             : {
      25           0 :   unformat_input_t _line_input, *line_input = &_line_input;
      26           0 :   vnet_crypto_main_t *cm = &crypto_main;
      27             :   vnet_crypto_engine_t *p;
      28             : 
      29           0 :   if (unformat_user (input, unformat_line_input, line_input))
      30           0 :     unformat_free (line_input);
      31             : 
      32           0 :   if (vec_len (cm->engines) == 0)
      33             :     {
      34           0 :       vlib_cli_output (vm, "No crypto engines registered");
      35           0 :       return 0;
      36             :     }
      37             : 
      38           0 :   vlib_cli_output (vm, "%-20s%-8s%s", "Name", "Prio", "Description");
      39             :   /* *INDENT-OFF* */
      40           0 :   vec_foreach (p, cm->engines)
      41             :     {
      42           0 :       vlib_cli_output (vm, "%-20s%-8u%s", p->name, p->priority, p->desc);
      43             :     }
      44             :   /* *INDENT-ON* */
      45           0 :   return 0;
      46             : }
      47             : 
      48             : /* *INDENT-OFF* */
      49      285289 : VLIB_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             : 
      56             : static u8 *
      57           0 : format_vnet_crypto_engine_candidates (u8 * s, va_list * args)
      58             : {
      59             :   vnet_crypto_engine_t *e;
      60           0 :   vnet_crypto_main_t *cm = &crypto_main;
      61           0 :   u32 id = va_arg (*args, u32);
      62           0 :   u32 ei = va_arg (*args, u32);
      63           0 :   int is_chained = va_arg (*args, int);
      64           0 :   int is_async = va_arg (*args, int);
      65             : 
      66           0 :   if (is_async)
      67             :     {
      68           0 :       vec_foreach (e, cm->engines)
      69             :         {
      70           0 :           if (e->enqueue_handlers[id] && e->dequeue_handler)
      71             :             {
      72           0 :               s = format (s, "%U", format_vnet_crypto_engine, e - cm->engines);
      73           0 :               if (ei == e - cm->engines)
      74           0 :                 s = format (s, "%c ", '*');
      75             :               else
      76           0 :                 s = format (s, " ");
      77             :             }
      78             :         }
      79             : 
      80           0 :       return s;
      81             :     }
      82             :   else
      83             :     {
      84           0 :       vec_foreach (e, cm->engines)
      85             :         {
      86           0 :           void * h = is_chained ? (void *) e->chained_ops_handlers[id]
      87           0 :             : (void *) e->ops_handlers[id];
      88             : 
      89           0 :           if (h)
      90             :             {
      91           0 :               s = format (s, "%U", format_vnet_crypto_engine, e - cm->engines);
      92           0 :               if (ei == e - cm->engines)
      93           0 :                 s = format (s, "%c ", '*');
      94             :               else
      95           0 :                 s = format (s, " ");
      96             :             }
      97             :         }
      98           0 :       return s;
      99             :     }
     100             : }
     101             : 
     102             : static u8 *
     103           0 : format_vnet_crypto_handlers (u8 * s, va_list * args)
     104             : {
     105           0 :   vnet_crypto_alg_t alg = va_arg (*args, vnet_crypto_alg_t);
     106           0 :   vnet_crypto_main_t *cm = &crypto_main;
     107           0 :   vnet_crypto_alg_data_t *d = vec_elt_at_index (cm->algs, alg);
     108           0 :   u32 indent = format_get_indent (s);
     109           0 :   int i, first = 1;
     110             : 
     111           0 :   for (i = 0; i < VNET_CRYPTO_OP_N_TYPES; i++)
     112             :     {
     113             :       vnet_crypto_op_data_t *od;
     114           0 :       vnet_crypto_op_id_t id = d->op_by_type[i];
     115             : 
     116           0 :       if (id == 0)
     117           0 :         continue;
     118             : 
     119           0 :       od = cm->opt_data + id;
     120           0 :       if (first == 0)
     121           0 :         s = format (s, "\n%U", format_white_space, indent);
     122           0 :       s = format (s, "%-16U", format_vnet_crypto_op_type, od->type);
     123             : 
     124           0 :       s = format (s, "%-28U", format_vnet_crypto_engine_candidates, id,
     125             :           od->active_engine_index_simple, 0, 0);
     126           0 :       s = format (s, "%U", format_vnet_crypto_engine_candidates, id,
     127             :           od->active_engine_index_chained, 1, 0);
     128           0 :       first = 0;
     129             :     }
     130           0 :   return s;
     131             : }
     132             : 
     133             : 
     134             : static clib_error_t *
     135           0 : show_crypto_handlers_command_fn (vlib_main_t * vm,
     136             :                         unformat_input_t * input, vlib_cli_command_t * cmd)
     137             : {
     138           0 :   unformat_input_t _line_input, *line_input = &_line_input;
     139             :   int i;
     140             : 
     141           0 :   if (unformat_user (input, unformat_line_input, line_input))
     142           0 :     unformat_free (line_input);
     143             : 
     144           0 :   vlib_cli_output (vm, "%-16s%-16s%-28s%s", "Algo", "Type", "Simple",
     145             :       "Chained");
     146             : 
     147           0 :   for (i = 0; i < VNET_CRYPTO_N_ALGS; i++)
     148           0 :     vlib_cli_output (vm, "%-20U%U", format_vnet_crypto_alg, i,
     149             :                      format_vnet_crypto_handlers, i);
     150             : 
     151           0 :   return 0;
     152             : }
     153             : 
     154             : /* *INDENT-OFF* */
     155      285289 : VLIB_CLI_COMMAND (show_crypto_handlers_command, static) =
     156             : {
     157             :   .path = "show crypto handlers",
     158             :   .short_help = "show crypto handlers",
     159             :   .function = show_crypto_handlers_command_fn,
     160             : };
     161             : /* *INDENT-ON* */
     162             : 
     163             : static clib_error_t *
     164         542 : set_crypto_handler_command_fn (vlib_main_t * vm,
     165             :                                unformat_input_t * input,
     166             :                                vlib_cli_command_t * cmd)
     167             : {
     168         542 :   unformat_input_t _line_input, *line_input = &_line_input;
     169         542 :   vnet_crypto_main_t *cm = &crypto_main;
     170         542 :   int rc = 0;
     171         542 :   char **args = 0, *s, **arg, *engine = 0;
     172         542 :   int all = 0;
     173         542 :   clib_error_t *error = 0;
     174         542 :   crypto_op_class_type_t oct = CRYPTO_OP_BOTH;
     175             : 
     176         542 :   if (!unformat_user (input, unformat_line_input, line_input))
     177           0 :     return 0;
     178             : 
     179        1626 :   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
     180             :     {
     181        1084 :       if (unformat (line_input, "all"))
     182         542 :         all = 1;
     183         542 :       else if (unformat (line_input, "simple"))
     184           0 :         oct = CRYPTO_OP_SIMPLE;
     185         542 :       else if (unformat (line_input, "chained"))
     186           0 :         oct = CRYPTO_OP_CHAINED;
     187         542 :       else if (unformat (line_input, "both"))
     188           0 :         oct = CRYPTO_OP_BOTH;
     189         542 :       else if (unformat (line_input, "%s", &s))
     190         542 :         vec_add1 (args, s);
     191             :       else
     192             :         {
     193           0 :           error = clib_error_return (0, "invalid params");
     194           0 :           goto done;
     195             :         }
     196             :     }
     197             : 
     198         542 :   if ((vec_len (args) < 2 && !all) || (vec_len (args) == 0 && all))
     199             :     {
     200           0 :       error = clib_error_return (0, "missing cipher or engine!");
     201           0 :       goto done;
     202             :     }
     203             : 
     204         542 :   engine = vec_elt_at_index (args, vec_len (args) - 1)[0];
     205         542 :   vec_del1 (args, vec_len (args) - 1);
     206             : 
     207         542 :   if (all)
     208             :     {
     209             :       char *key;
     210             :       u8 *value;
     211             : 
     212             :       /* *INDENT-OFF* */
     213       49322 :       hash_foreach_mem (key, value, cm->alg_index_by_name,
     214             :       ({
     215             :         (void) value;
     216             :         rc += vnet_crypto_set_handler2 (key, engine, oct);
     217             :       }));
     218             :       /* *INDENT-ON* */
     219             : 
     220         542 :       if (rc)
     221         166 :         vlib_cli_output (vm, "failed to set crypto engine!");
     222             :     }
     223             :   else
     224             :     {
     225           0 :       vec_foreach (arg, args)
     226             :       {
     227           0 :         rc = vnet_crypto_set_handler2 (arg[0], engine, oct);
     228           0 :         if (rc)
     229             :           {
     230           0 :             vlib_cli_output (vm, "failed to set engine %s for %s!",
     231             :                              engine, arg[0]);
     232             :           }
     233             :       }
     234             :     }
     235             : 
     236           0 : done:
     237         542 :   vec_free (engine);
     238         542 :   vec_foreach (arg, args) vec_free (arg[0]);
     239         542 :   vec_free (args);
     240         542 :   unformat_free (line_input);
     241         542 :   return error;
     242             : }
     243             : 
     244             : /* *INDENT-OFF* */
     245      285289 : VLIB_CLI_COMMAND (set_crypto_handler_command, static) =
     246             : {
     247             :   .path = "set crypto handler",
     248             :   .short_help = "set crypto handler cipher [cipher2 cipher3 ...] engine"
     249             :     " [simple|chained]",
     250             :   .function = set_crypto_handler_command_fn,
     251             : };
     252             : /* *INDENT-ON* */
     253             : 
     254             : static u8 *
     255           0 : format_vnet_crypto_async_handlers (u8 * s, va_list * args)
     256             : {
     257           0 :   vnet_crypto_async_alg_t alg = va_arg (*args, vnet_crypto_async_alg_t);
     258           0 :   vnet_crypto_main_t *cm = &crypto_main;
     259           0 :   vnet_crypto_async_alg_data_t *d = vec_elt_at_index (cm->async_algs, alg);
     260           0 :   u32 indent = format_get_indent (s);
     261           0 :   int i, first = 1;
     262             : 
     263           0 :   for (i = 0; i < VNET_CRYPTO_ASYNC_OP_N_TYPES; i++)
     264             :     {
     265             :       vnet_crypto_async_op_data_t *od;
     266           0 :       vnet_crypto_async_op_id_t id = d->op_by_type[i];
     267             : 
     268           0 :       if (id == 0)
     269           0 :         continue;
     270             : 
     271           0 :       od = cm->async_opt_data + id;
     272           0 :       if (first == 0)
     273           0 :         s = format (s, "\n%U", format_white_space, indent);
     274           0 :       s = format (s, "%-16U", format_vnet_crypto_async_op_type, od->type);
     275             : 
     276           0 :       s = format (s, "%U", format_vnet_crypto_engine_candidates, id,
     277             :                   od->active_engine_index_async, 0, 1);
     278           0 :       first = 0;
     279             :     }
     280           0 :   return s;
     281             : }
     282             : 
     283             : static clib_error_t *
     284           0 : show_crypto_async_handlers_command_fn (vlib_main_t * vm,
     285             :                                        unformat_input_t * input,
     286             :                                        vlib_cli_command_t * cmd)
     287             : {
     288           0 :   unformat_input_t _line_input, *line_input = &_line_input;
     289             :   int i;
     290             : 
     291           0 :   if (unformat_user (input, unformat_line_input, line_input))
     292           0 :     unformat_free (line_input);
     293             : 
     294           0 :   vlib_cli_output (vm, "%-28s%-16s%s", "Algo", "Type", "Handler");
     295             : 
     296           0 :   for (i = 0; i < VNET_CRYPTO_N_ASYNC_ALGS; i++)
     297           0 :     vlib_cli_output (vm, "%-28U%U", format_vnet_crypto_async_alg, i,
     298             :                      format_vnet_crypto_async_handlers, i);
     299             : 
     300           0 :   return 0;
     301             : }
     302             : 
     303             : /* *INDENT-OFF* */
     304      285289 : VLIB_CLI_COMMAND (show_crypto_async_handlers_command, static) =
     305             : {
     306             :   .path = "show crypto async handlers",
     307             :   .short_help = "show crypto async handlers",
     308             :   .function = show_crypto_async_handlers_command_fn,
     309             : };
     310             : /* *INDENT-ON* */
     311             : 
     312             : 
     313             : static clib_error_t *
     314         165 : show_crypto_async_status_command_fn (vlib_main_t * vm,
     315             :                                      unformat_input_t * input,
     316             :                                      vlib_cli_command_t * cmd)
     317             : {
     318         165 :   vnet_crypto_main_t *cm = &crypto_main;
     319         165 :   vlib_thread_main_t *tm = vlib_get_thread_main ();
     320         165 :   unformat_input_t _line_input, *line_input = &_line_input;
     321             :   int i;
     322             : 
     323         165 :   if (unformat_user (input, unformat_line_input, line_input))
     324           0 :     unformat_free (line_input);
     325             : 
     326         332 :   for (i = 0; i < tm->n_vlib_mains; i++)
     327             :     {
     328         167 :       vlib_node_state_t state = vlib_node_get_state (
     329             :         vlib_get_main_by_index (i), cm->crypto_node_index);
     330         167 :       if (state == VLIB_NODE_STATE_POLLING)
     331           0 :         vlib_cli_output (vm, "threadId: %-6d POLLING", i);
     332         167 :       if (state == VLIB_NODE_STATE_INTERRUPT)
     333         167 :         vlib_cli_output (vm, "threadId: %-6d INTERRUPT", i);
     334         167 :       if (state == VLIB_NODE_STATE_DISABLED)
     335           0 :         vlib_cli_output (vm, "threadId: %-6d DISABLED", i);
     336             :     }
     337         165 :   return 0;
     338             : }
     339             : 
     340             : /* *INDENT-OFF* */
     341      285289 : VLIB_CLI_COMMAND (show_crypto_async_status_command, static) =
     342             : {
     343             :   .path = "show crypto async status",
     344             :   .short_help = "show crypto async status",
     345             :   .function = show_crypto_async_status_command_fn,
     346             : };
     347             : /* *INDENT-ON* */
     348             : 
     349             : static clib_error_t *
     350           0 : set_crypto_async_handler_command_fn (vlib_main_t * vm,
     351             :                                      unformat_input_t * input,
     352             :                                      vlib_cli_command_t * cmd)
     353             : {
     354           0 :   unformat_input_t _line_input, *line_input = &_line_input;
     355           0 :   vnet_crypto_main_t *cm = &crypto_main;
     356           0 :   int rc = 0;
     357           0 :   char **args = 0, *s, **arg, *engine = 0;
     358           0 :   int all = 0;
     359           0 :   clib_error_t *error = 0;
     360             : 
     361           0 :   if (!unformat_user (input, unformat_line_input, line_input))
     362           0 :     return 0;
     363             : 
     364           0 :   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
     365             :     {
     366           0 :       if (unformat (line_input, "all"))
     367           0 :         all = 1;
     368           0 :       else if (unformat (line_input, "%s", &s))
     369           0 :         vec_add1 (args, s);
     370             :       else
     371             :         {
     372           0 :           error = clib_error_return (0, "invalid params");
     373           0 :           goto done;
     374             :         }
     375             :     }
     376             : 
     377           0 :   if ((vec_len (args) < 2 && !all) || (vec_len (args) == 0 && all))
     378             :     {
     379           0 :       error = clib_error_return (0, "missing cipher or engine!");
     380           0 :       goto done;
     381             :     }
     382             : 
     383           0 :   engine = vec_elt_at_index (args, vec_len (args) - 1)[0];
     384           0 :   vec_del1 (args, vec_len (args) - 1);
     385             : 
     386           0 :   if (all)
     387             :     {
     388             :       char *key;
     389             :       u8 *value;
     390             : 
     391             :       /* *INDENT-OFF* */
     392           0 :       hash_foreach_mem (key, value, cm->async_alg_index_by_name,
     393             :       ({
     394             :         (void) value;
     395             :         rc += vnet_crypto_set_async_handler2 (key, engine);
     396             :       }));
     397             :       /* *INDENT-ON* */
     398             : 
     399           0 :       if (rc)
     400           0 :         vlib_cli_output (vm, "failed to set crypto engine!");
     401             :     }
     402             :   else
     403             :     {
     404           0 :       vec_foreach (arg, args)
     405             :       {
     406           0 :         rc = vnet_crypto_set_async_handler2 (arg[0], engine);
     407           0 :         if (rc)
     408             :           {
     409           0 :             vlib_cli_output (vm, "failed to set engine %s for %s!",
     410             :                              engine, arg[0]);
     411             :           }
     412             :       }
     413             :     }
     414             : 
     415           0 : done:
     416           0 :   vec_free (engine);
     417           0 :   vec_foreach (arg, args) vec_free (arg[0]);
     418           0 :   vec_free (args);
     419           0 :   unformat_free (line_input);
     420           0 :   return error;
     421             : }
     422             : 
     423             : /* *INDENT-OFF* */
     424      285289 : VLIB_CLI_COMMAND (set_crypto_async_handler_command, static) =
     425             : {
     426             :   .path = "set crypto async handler",
     427             :   .short_help = "set crypto async handler type [type2 type3 ...] engine",
     428             :   .function = set_crypto_async_handler_command_fn,
     429             : };
     430             : /* *INDENT-ON* */
     431             : 
     432             : /*
     433             :  * fd.io coding-style-patch-verification: ON
     434             :  *
     435             :  * Local Variables:
     436             :  * eval: (c-set-style "gnu")
     437             :  * End:
     438             :  */

Generated by: LCOV version 1.14