vppinfra: add clib_mem_free_s
[vpp.git] / src / plugins / crypto_ia32 / main.c
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>
21 #include <crypto_ia32/crypto_ia32.h>
22
23 crypto_ia32_main_t crypto_ia32_main;
24
25 static void
26 crypto_ia32_key_handler (vlib_main_t * vm, vnet_crypto_key_op_t kop,
27                          vnet_crypto_key_index_t idx)
28 {
29   vnet_crypto_key_t *key = vnet_crypto_get_key (idx);
30   crypto_ia32_main_t *cm = &crypto_ia32_main;
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_mem_free_s (cm->key_data[idx]);
44       cm->key_data[idx] = 0;
45       return;
46     }
47
48   vec_validate_aligned (cm->key_data, idx, CLIB_CACHE_LINE_BYTES);
49
50   if (kop == VNET_CRYPTO_KEY_OP_MODIFY && cm->key_data[idx])
51     {
52       clib_mem_free_s (cm->key_data[idx]);
53     }
54
55   cm->key_data[idx] = cm->key_fn[key->alg] (key);
56 }
57
58 clib_error_t *
59 crypto_ia32_init (vlib_main_t * vm)
60 {
61   crypto_ia32_main_t *cm = &crypto_ia32_main;
62   vlib_thread_main_t *tm = vlib_get_thread_main ();
63   clib_error_t *error = 0;
64
65   if (clib_cpu_supports_x86_aes () == 0)
66     return 0;
67
68   vec_validate_aligned (cm->per_thread_data, tm->n_vlib_mains - 1,
69                         CLIB_CACHE_LINE_BYTES);
70
71   cm->crypto_engine_index =
72     vnet_crypto_register_engine (vm, "ia32", 100,
73                                  "Intel IA32 ISA Optimized Crypto");
74
75   if (clib_cpu_supports_avx512f ())
76     error = crypto_ia32_aesni_cbc_init_avx512 (vm);
77   else if (clib_cpu_supports_avx2 ())
78     error = crypto_ia32_aesni_cbc_init_avx2 (vm);
79   else
80     error = crypto_ia32_aesni_cbc_init_sse42 (vm);
81
82   if (error)
83     goto error;
84
85   if (clib_cpu_supports_pclmulqdq ())
86     {
87       if (clib_cpu_supports_avx512f ())
88         error = crypto_ia32_aesni_gcm_init_avx512 (vm);
89       else if (clib_cpu_supports_avx2 ())
90         error = crypto_ia32_aesni_gcm_init_avx2 (vm);
91       else
92         error = crypto_ia32_aesni_gcm_init_sse42 (vm);
93
94       if (error)
95         goto error;
96     }
97
98   vnet_crypto_register_key_handler (vm, cm->crypto_engine_index,
99                                     crypto_ia32_key_handler);
100
101
102 error:
103   if (error)
104     vec_free (cm->per_thread_data);
105
106   return error;
107 }
108
109 /* *INDENT-OFF* */
110 VLIB_INIT_FUNCTION (crypto_ia32_init) =
111 {
112   .runs_after = VLIB_INITS ("vnet_crypto_init"),
113 };
114 /* *INDENT-ON* */
115
116 #include <vpp/app/version.h>
117
118 /* *INDENT-OFF* */
119 VLIB_PLUGIN_REGISTER () = {
120   .version = VPP_BUILD_VER,
121   .description = "Intel IA32 Software Crypto Engine",
122 };
123 /* *INDENT-ON* */
124
125 /*
126  * fd.io coding-style-patch-verification: ON
127  *
128  * Local Variables:
129  * eval: (c-set-style "gnu")
130  * End:
131  */