blob: 92b65a4722abf4118f49db1d8996b28808e7b519 [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#ifndef included_vnet_crypto_crypto_h
17#define included_vnet_crypto_crypto_h
18
19#define VNET_CRYPTO_RING_SIZE 512
20
21#include <vlib/vlib.h>
22
Damjan Marion060bfb92019-03-29 13:47:54 +010023#define foreach_crypto_cipher_alg \
24 _(DES_CBC, "des-cbc") \
25 _(3DES_CBC, "3des-cbc") \
Damjan Marion91f17dc2019-03-18 18:59:25 +010026 _(AES_128_CBC, "aes-128-cbc") \
27 _(AES_192_CBC, "aes-192-cbc") \
28 _(AES_256_CBC, "aes-256-cbc")
29
Damjan Marion060bfb92019-03-29 13:47:54 +010030#define foreach_crypto_aead_alg \
31 _(AES_128_GCM, "aes-128-gcm") \
32 _(AES_192_GCM, "aes-192-gcm") \
33 _(AES_256_GCM, "aes-256-gcm")
34
35#define foreach_crypto_hmac_alg \
Filip Tehlare225f712019-03-19 10:37:06 -070036 _(MD5, "md5") \
Damjan Marion91f17dc2019-03-18 18:59:25 +010037 _(SHA1, "sha-1") \
38 _(SHA224, "sha-224") \
39 _(SHA256, "sha-256") \
40 _(SHA384, "sha-384") \
41 _(SHA512, "sha-512")
42
Damjan Marion060bfb92019-03-29 13:47:54 +010043
44#define foreach_crypto_op_type \
45 _(ENCRYPT, "encrypt") \
46 _(DECRYPT, "decrypt") \
47 _(AEAD_ENCRYPT, "aead-encrypt") \
48 _(AEAD_DECRYPT, "aead-decrypt") \
49 _(HMAC, "hmac")
50
51typedef enum
52{
53#define _(n, s) VNET_CRYPTO_OP_TYPE_##n,
54 foreach_crypto_op_type
55#undef _
56 VNET_CRYPTO_OP_N_TYPES,
57} vnet_crypto_op_type_t;
58
59#define foreach_crypto_op_status \
60 _(PENDING, "pending") \
61 _(COMPLETED, "completed") \
62 _(FAIL_NO_HANDLER, "no-handler") \
63 _(FAIL_BAD_HMAC, "bad-hmac") \
64 _(FAIL_DECRYPT, "decrypt-fail")
65
66typedef enum
67{
68#define _(n, s) VNET_CRYPTO_OP_STATUS_##n,
69 foreach_crypto_op_status
70#undef _
71 VNET_CRYPTO_OP_N_STATUS,
72} vnet_crypto_op_status_t;
73
Damjan Marion91f17dc2019-03-18 18:59:25 +010074/* *INDENT-OFF* */
75typedef enum
76{
77#define _(n, s) VNET_CRYPTO_ALG_##n,
Damjan Marion060bfb92019-03-29 13:47:54 +010078 foreach_crypto_cipher_alg
79 foreach_crypto_aead_alg
Damjan Marion91f17dc2019-03-18 18:59:25 +010080#undef _
Damjan Marion060bfb92019-03-29 13:47:54 +010081#define _(n, s) VNET_CRYPTO_ALG_HMAC_##n,
82 foreach_crypto_hmac_alg
Damjan Marion91f17dc2019-03-18 18:59:25 +010083#undef _
84 VNET_CRYPTO_N_ALGS,
85} vnet_crypto_alg_t;
86
87typedef enum
88{
89 VNET_CRYPTO_OP_NONE = 0,
90#define _(n, s) VNET_CRYPTO_OP_##n##_ENC, VNET_CRYPTO_OP_##n##_DEC,
Damjan Marion060bfb92019-03-29 13:47:54 +010091 foreach_crypto_cipher_alg
92 foreach_crypto_aead_alg
Damjan Marion91f17dc2019-03-18 18:59:25 +010093#undef _
94#define _(n, s) VNET_CRYPTO_OP_##n##_HMAC,
Damjan Marion060bfb92019-03-29 13:47:54 +010095 foreach_crypto_hmac_alg
Damjan Marion91f17dc2019-03-18 18:59:25 +010096#undef _
Damjan Marion060bfb92019-03-29 13:47:54 +010097 VNET_CRYPTO_N_OP_IDS,
98} vnet_crypto_op_id_t;
Damjan Marion91f17dc2019-03-18 18:59:25 +010099/* *INDENT-ON* */
100
101typedef struct
102{
103 char *name;
Damjan Marion060bfb92019-03-29 13:47:54 +0100104 vnet_crypto_op_id_t op_by_type[VNET_CRYPTO_OP_N_TYPES];
Damjan Marion91f17dc2019-03-18 18:59:25 +0100105} vnet_crypto_alg_data_t;
106
Damjan Marion91f17dc2019-03-18 18:59:25 +0100107typedef struct
108{
109 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Damjan Marion060bfb92019-03-29 13:47:54 +0100110 vnet_crypto_op_id_t op:16;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100111 vnet_crypto_op_status_t status:8;
Damjan Marion060bfb92019-03-29 13:47:54 +0100112 u8 flags;
Damjan Marionb4fff3a2019-03-25 15:54:40 +0100113#define VNET_CRYPTO_OP_FLAG_INIT_IV (1 << 0)
114#define VNET_CRYPTO_OP_FLAG_HMAC_CHECK (1 << 1)
Damjan Marion91f17dc2019-03-18 18:59:25 +0100115 u32 len;
Damjan Marion060bfb92019-03-29 13:47:54 +0100116 u16 aad_len;
117 u8 key_len, iv_len, digest_len, tag_len;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100118 u8 *key;
119 u8 *iv;
120 u8 *src;
121 u8 *dst;
Damjan Marion060bfb92019-03-29 13:47:54 +0100122 u8 *aad;
123 u8 *tag;
124 u8 *digest;
Damjan Marionc59b9a22019-03-19 15:38:40 +0100125 uword user_data;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100126} vnet_crypto_op_t;
127
128typedef struct
129{
Damjan Marion060bfb92019-03-29 13:47:54 +0100130 vnet_crypto_op_type_t type;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100131 vnet_crypto_alg_t alg;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100132 u32 active_engine_index;
Damjan Marion060bfb92019-03-29 13:47:54 +0100133} vnet_crypto_op_data_t;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100134
135typedef struct
136{
137 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
138 clib_bitmap_t *act_queues;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100139} vnet_crypto_thread_t;
140
141typedef u32 (vnet_crypto_ops_handler_t) (vlib_main_t * vm,
142 vnet_crypto_op_t * ops[], u32 n_ops);
143
144u32 vnet_crypto_register_engine (vlib_main_t * vm, char *name, int prio,
145 char *desc);
146
147vlib_error_t *vnet_crypto_register_ops_handler (vlib_main_t * vm,
148 u32 provider_index,
Damjan Marion060bfb92019-03-29 13:47:54 +0100149 vnet_crypto_op_id_t opt,
Damjan Marion91f17dc2019-03-18 18:59:25 +0100150 vnet_crypto_ops_handler_t *
151 f);
152
153typedef struct
154{
155 char *name;
156 char *desc;
157 int priority;
Damjan Marion060bfb92019-03-29 13:47:54 +0100158 vnet_crypto_ops_handler_t *ops_handlers[VNET_CRYPTO_N_OP_IDS];
Damjan Marion91f17dc2019-03-18 18:59:25 +0100159} vnet_crypto_engine_t;
160
161typedef struct
162{
163 vnet_crypto_alg_data_t *algs;
164 vnet_crypto_thread_t *threads;
165 vnet_crypto_ops_handler_t **ops_handlers;
Damjan Marion060bfb92019-03-29 13:47:54 +0100166 vnet_crypto_op_data_t opt_data[VNET_CRYPTO_N_OP_IDS];
Damjan Marion91f17dc2019-03-18 18:59:25 +0100167 vnet_crypto_engine_t *engines;
Filip Tehlar1469d542019-03-25 09:04:41 -0700168 uword *engine_index_by_name;
Damjan Marion060bfb92019-03-29 13:47:54 +0100169 uword *alg_index_by_name;
Damjan Marion91f17dc2019-03-18 18:59:25 +0100170} vnet_crypto_main_t;
171
172extern vnet_crypto_main_t crypto_main;
173
174u32 vnet_crypto_submit_ops (vlib_main_t * vm, vnet_crypto_op_t ** jobs,
175 u32 n_jobs);
176
177u32 vnet_crypto_process_ops (vlib_main_t * vm, vnet_crypto_op_t ops[],
178 u32 n_ops);
179
Filip Tehlar1469d542019-03-25 09:04:41 -0700180
181int vnet_crypto_set_handler (char *ops_handler_name, char *engine);
182
Damjan Marion91f17dc2019-03-18 18:59:25 +0100183format_function_t format_vnet_crypto_alg;
184format_function_t format_vnet_crypto_engine;
185format_function_t format_vnet_crypto_op;
Damjan Marion060bfb92019-03-29 13:47:54 +0100186format_function_t format_vnet_crypto_op_type;
187format_function_t format_vnet_crypto_op_status;
Damjan Marion61c0a3d2019-04-05 19:42:21 +0200188unformat_function_t unformat_vnet_crypto_alg;
Damjan Mariona03d1822019-03-28 21:40:48 +0100189
190static_always_inline void
Damjan Marion060bfb92019-03-29 13:47:54 +0100191vnet_crypto_op_init (vnet_crypto_op_t * op, vnet_crypto_op_id_t type)
Damjan Mariona03d1822019-03-28 21:40:48 +0100192{
193 if (CLIB_DEBUG > 0)
194 clib_memset (op, 0xfe, sizeof (*op));
195 op->op = type;
196 op->flags = 0;
197}
198
Damjan Marion060bfb92019-03-29 13:47:54 +0100199static_always_inline vnet_crypto_op_type_t
200vnet_crypto_get_op_type (vnet_crypto_op_id_t id)
201{
202 vnet_crypto_main_t *cm = &crypto_main;
203 vnet_crypto_op_data_t *od = vec_elt_at_index (cm->opt_data, id);
204 return od->type;
205}
206
Damjan Marion91f17dc2019-03-18 18:59:25 +0100207#endif /* included_vnet_crypto_crypto_h */
208
209/*
210 * fd.io coding-style-patch-verification: ON
211 *
212 * Local Variables:
213 * eval: (c-set-style "gnu")
214 * End:
215 */