FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
main.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2019 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #include <vlib/vlib.h>
19 #include <vnet/plugin/plugin.h>
20 #include <vnet/crypto/crypto.h>
22 
24 
25 static void
28 {
31 
32  if (cm->key_fn[key->alg] == 0)
33  return;
34 
35  if (kop == VNET_CRYPTO_KEY_OP_DEL)
36  {
37  if (idx >= vec_len (cm->key_data))
38  return;
39 
40  if (cm->key_data[idx] == 0)
41  return;
42 
43  clib_memset_u8 (cm->key_data[idx], 0,
44  clib_mem_size (cm->key_data[idx]));
45  clib_mem_free (cm->key_data[idx]);
46  cm->key_data[idx] = 0;
47  return;
48  }
49 
51 
52  if (kop == VNET_CRYPTO_KEY_OP_MODIFY && cm->key_data[idx])
53  {
54  clib_memset_u8 (cm->key_data[idx], 0,
55  clib_mem_size (cm->key_data[idx]));
56  clib_mem_free (cm->key_data[idx]);
57  }
58 
59  cm->key_data[idx] = cm->key_fn[key->alg] (key);
60 }
61 
64 {
67  clib_error_t *error = 0;
68 
69  if (clib_cpu_supports_x86_aes () == 0)
70  return 0;
71 
74 
76  vnet_crypto_register_engine (vm, "ia32", 100,
77  "Intel IA32 ISA Optimized Crypto");
78 
79  if (clib_cpu_supports_avx512f ())
81  else if (clib_cpu_supports_avx2 ())
83  else
85 
86  if (error)
87  goto error;
88 
89  if (clib_cpu_supports_pclmulqdq ())
90  {
91  if (clib_cpu_supports_avx512f ())
93  else if (clib_cpu_supports_avx2 ())
95  else
97 
98  if (error)
99  goto error;
100  }
101 
104 
105 
106 error:
107  if (error)
109 
110  return error;
111 }
112 
113 /* *INDENT-OFF* */
115 {
116  .runs_after = VLIB_INITS ("vnet_crypto_init"),
117 };
118 /* *INDENT-ON* */
119 
120 #include <vpp/app/version.h>
121 
122 /* *INDENT-OFF* */
124  .version = VPP_BUILD_VER,
125  .description = "Intel IA32 Software Crypto Engine",
126 };
127 /* *INDENT-ON* */
128 
129 /*
130  * fd.io coding-style-patch-verification: ON
131  *
132  * Local Variables:
133  * eval: (c-set-style "gnu")
134  * End:
135  */
clib_error_t * crypto_ia32_aesni_gcm_init_sse42(vlib_main_t *vm)
Definition: aes_gcm.c:752
VLIB_PLUGIN_REGISTER()
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:450
void vnet_crypto_register_key_handler(vlib_main_t *vm, u32 engine_index, vnet_crypto_key_handler_t *key_handler)
Definition: crypto.c:169
vnet_crypto_key_op_t
Definition: crypto.h:70
crypto_ia32_main_t crypto_ia32_main
Definition: main.c:23
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
vnet_crypto_main_t * cm
Definition: quic_crypto.c:41
vnet_crypto_alg_t alg
Definition: crypto.h:102
clib_error_t * crypto_ia32_aesni_gcm_init_avx512(vlib_main_t *vm)
vlib_main_t * vm
Definition: buffer.c:312
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
crypto_ia32_per_thread_data_t * per_thread_data
Definition: crypto_ia32.h:31
static uword clib_mem_size(void *p)
Definition: mem.h:263
clib_error_t * crypto_ia32_aesni_cbc_init_avx2(vlib_main_t *vm)
static void clib_mem_free(void *p)
Definition: mem.h:226
u32 vnet_crypto_key_index_t
Definition: crypto.h:159
static_always_inline void clib_memset_u8(void *p, u8 val, uword count)
Definition: string.h:424
static_always_inline vnet_crypto_key_t * vnet_crypto_get_key(vnet_crypto_key_index_t index)
Definition: crypto.h:239
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
clib_error_t * crypto_ia32_init(vlib_main_t *vm)
Definition: main.c:63
typedef key
Definition: ipsec.api:245
clib_error_t * crypto_ia32_aesni_gcm_init_avx2(vlib_main_t *vm)
clib_error_t * crypto_ia32_aesni_cbc_init_sse42(vlib_main_t *vm)
Definition: aes_cbc.c:261
crypto_ia32_key_fn_t * key_fn[VNET_CRYPTO_N_ALGS]
Definition: crypto_ia32.h:32
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
u32 vnet_crypto_register_engine(vlib_main_t *vm, char *name, int prio, char *desc)
Definition: crypto.c:78
static void crypto_ia32_key_handler(vlib_main_t *vm, vnet_crypto_key_op_t kop, vnet_crypto_key_index_t idx)
Definition: main.c:26
clib_error_t * crypto_ia32_aesni_cbc_init_avx512(vlib_main_t *vm)
#define VLIB_INITS(...)
Definition: init.h:344