blob: 368120e18faef5a170f28fc8874a946b59c5e0e9 [file] [log] [blame]
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +00001/*
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +01002 * Copyright (c) 2017 Intel and/or its affiliates.
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +00003 * 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#ifndef __DPDK_IPSEC_H__
16#define __DPDK_IPSEC_H__
17
18#include <vnet/vnet.h>
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010019#include <vppinfra/cache.h>
20#include <vnet/ipsec/ipsec.h>
Fan Zhang6c8533d2021-02-25 12:53:36 +000021#include <vnet/ipsec/ipsec_sa.h>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000022
23#undef always_inline
Gabriel Ganne794813f2017-03-07 17:04:02 +010024#include <rte_config.h>
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000025#include <rte_crypto.h>
26#include <rte_cryptodev.h>
27
28#if CLIB_DEBUG > 0
29#define always_inline static inline
30#else
31#define always_inline static inline __attribute__ ((__always_inline__))
32#endif
33
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +020034#define DPDK_CRYPTO_N_QUEUE_DESC 2048
35#define DPDK_CRYPTO_NB_SESS_OBJS 20000
36
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010037#define foreach_dpdk_crypto_input_next \
38 _(DROP, "error-drop") \
39 _(IP4_LOOKUP, "ip4-lookup") \
40 _(IP6_LOOKUP, "ip6-lookup") \
41 _(INTERFACE_OUTPUT, "interface-output") \
Neale Ranns7ec120e2020-01-21 04:58:02 +000042 _(MIDCHAIN, "adj-midchain-tx") \
Klement Sekera73343932018-10-22 13:17:19 +020043 _(DECRYPT4_POST, "dpdk-esp4-decrypt-post") \
44 _(DECRYPT6_POST, "dpdk-esp6-decrypt-post")
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010045
46typedef enum
47{
48#define _(f,s) DPDK_CRYPTO_INPUT_NEXT_##f,
49 foreach_dpdk_crypto_input_next
50#undef _
51 DPDK_CRYPTO_INPUT_N_NEXT,
52} dpdk_crypto_input_next_t;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000053
54#define MAX_QP_PER_LCORE 16
55
56typedef struct
57{
Radu Nicolau6929ea92016-11-29 11:00:30 +000058 u32 salt;
59 u32 iv[2];
60 u32 cnt;
61} dpdk_gcm_cnt_blk;
62
63typedef struct
64{
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010065 u32 next;
Kingwel Xie3b3464e2019-02-13 02:48:41 -050066 u32 bi;
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +020067 u8 encrypt;
68 CLIB_ALIGN_MARK (mark0, 16);
69 dpdk_gcm_cnt_blk cb;
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +000070 u8 aad[16];
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +020071 u8 icv[32]; /* XXX last 16B in next cache line */
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +000072} dpdk_op_priv_t;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000073
74typedef struct
75{
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010076 u16 *resource_idx;
Sergio Gonzalez Monroydf36f212017-10-31 15:58:57 +000077 struct rte_crypto_op **ops;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010078 u16 cipher_resource_idx[IPSEC_CRYPTO_N_ALG];
79 u16 auth_resource_idx[IPSEC_INTEG_N_ALG];
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +020080 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
81} crypto_worker_main_t;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000082
83typedef struct
84{
David Johnsond9818dd2018-12-14 14:53:41 -050085 CLIB_ALIGN_MARK (pad, 8); /* align up to 8 bytes for 32bit builds */
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010086 char *name;
87 enum rte_crypto_sym_xform_type type;
88 u32 alg;
89 u8 key_len;
90 u8 iv_len;
91 u8 trunc_size;
92 u8 boundary;
93 u8 disabled;
94 u8 resources;
David Johnsond9818dd2018-12-14 14:53:41 -050095} crypto_alg_t;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010096
97typedef struct
98{
99 u16 *free_resources;
100 u16 *used_resources;
101 u8 cipher_support[IPSEC_CRYPTO_N_ALG];
102 u8 auth_support[IPSEC_INTEG_N_ALG];
103 u8 drv_id;
104 u8 numa;
105 u16 id;
Damjan Marionffe9d212018-05-30 09:26:11 +0200106 const char *name;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100107 u32 max_qp;
108 u64 features;
109} crypto_dev_t;
110
111typedef struct
112{
Damjan Marionffe9d212018-05-30 09:26:11 +0200113 const char *name;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100114 u16 *devs;
115} crypto_drv_t;
116
117typedef struct
118{
119 u16 thread_idx;
120 u8 remove;
121 u8 drv_id;
122 u8 dev_id;
123 u8 numa;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000124 u16 qp_id;
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +0200125 u16 inflights[2];
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100126 u16 n_ops;
127 u16 __unused;
128 struct rte_crypto_op *ops[VLIB_FRAME_SIZE];
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000129 u32 bi[VLIB_FRAME_SIZE];
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +0200130 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
131} crypto_resource_t;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000132
133typedef struct
134{
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +0000135 u64 ts;
136 struct rte_cryptodev_sym_session *session;
137} crypto_session_disposal_t;
138
139typedef struct
140{
Radu Nicolaude412ce2018-03-12 13:52:41 +0000141 struct rte_cryptodev_sym_session *session;
142 u64 dev_mask;
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +0200143 CLIB_ALIGN_MARK (pad, 16); /* align up to 16 bytes for 32bit builds */
Radu Nicolaude412ce2018-03-12 13:52:41 +0000144} crypto_session_by_drv_t;
145
146typedef struct
147{
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100148 struct rte_mempool *crypto_op;
149 struct rte_mempool *session_h;
150 struct rte_mempool **session_drv;
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +0000151 crypto_session_disposal_t *session_disposal;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100152 uword *session_by_sa_index;
153 u64 crypto_op_get_failed;
154 u64 session_h_failed;
155 u64 *session_drv_failed;
Radu Nicolaude412ce2018-03-12 13:52:41 +0000156 crypto_session_by_drv_t *session_by_drv_id_and_sa_index;
Radu Nicolau5aaea112018-04-06 12:12:21 +0100157 clib_spinlock_t lockp;
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +0200158 /* Required for vec_validate_aligned */
159 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100160} crypto_data_t;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000161
162typedef struct
163{
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000164 crypto_worker_main_t *workers_main;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100165 crypto_dev_t *dev;
166 crypto_resource_t *resource;
167 crypto_alg_t *cipher_algs;
168 crypto_alg_t *auth_algs;
169 crypto_data_t *data;
170 crypto_drv_t *drv;
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +0000171 u64 session_timeout; /* nsec */
Sergio Gonzalez Monroy63c7e142017-03-22 16:11:06 +0000172 u8 enabled;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000173} dpdk_crypto_main_t;
174
Dave Wallace71612d62017-10-24 01:32:41 -0400175extern dpdk_crypto_main_t dpdk_crypto_main;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000176
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100177static const u8 pad_data[] =
178 { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0 };
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000179
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100180void crypto_auto_placement (void);
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000181
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100182clib_error_t *create_sym_session (struct rte_cryptodev_sym_session **session,
183 u32 sa_idx, crypto_resource_t * res,
184 crypto_worker_main_t * cwm, u8 is_outbound);
185
186static_always_inline u32
187crypto_op_len (void)
188{
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +0000189 const u32 align = 4;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100190 u32 op_size =
191 sizeof (struct rte_crypto_op) + sizeof (struct rte_crypto_sym_op);
192
193 return ((op_size + align - 1) & ~(align - 1)) + sizeof (dpdk_op_priv_t);
194}
195
196static_always_inline u32
197crypto_op_get_priv_offset (void)
198{
199 const u32 align = 16;
200 u32 offset;
201
202 offset = sizeof (struct rte_crypto_op) + sizeof (struct rte_crypto_sym_op);
203 offset = (offset + align - 1) & ~(align - 1);
204
205 return offset;
206}
207
208static_always_inline dpdk_op_priv_t *
209crypto_op_get_priv (struct rte_crypto_op * op)
210{
211 return (dpdk_op_priv_t *) (((u8 *) op) + crypto_op_get_priv_offset ());
212}
213
Radu Nicolaude412ce2018-03-12 13:52:41 +0000214
215static_always_inline void
216add_session_by_drv_and_sa_idx (struct rte_cryptodev_sym_session *session,
217 crypto_data_t * data, u32 drv_id, u32 sa_idx)
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100218{
Radu Nicolaude412ce2018-03-12 13:52:41 +0000219 crypto_session_by_drv_t *sbd;
220 vec_validate_aligned (data->session_by_drv_id_and_sa_index, sa_idx,
221 CLIB_CACHE_LINE_BYTES);
222 sbd = vec_elt_at_index (data->session_by_drv_id_and_sa_index, sa_idx);
223 sbd->dev_mask |= 1L << drv_id;
224 sbd->session = session;
225}
226
227static_always_inline struct rte_cryptodev_sym_session *
228get_session_by_drv_and_sa_idx (crypto_data_t * data, u32 drv_id, u32 sa_idx)
229{
230 crypto_session_by_drv_t *sess_by_sa;
231 if (_vec_len (data->session_by_drv_id_and_sa_index) <= sa_idx)
232 return NULL;
233 sess_by_sa =
234 vec_elt_at_index (data->session_by_drv_id_and_sa_index, sa_idx);
235 return (sess_by_sa->dev_mask & (1L << drv_id)) ? sess_by_sa->session : NULL;
236}
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100237
238static_always_inline clib_error_t *
Radu Nicolaude412ce2018-03-12 13:52:41 +0000239crypto_get_session (struct rte_cryptodev_sym_session ** session,
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100240 u32 sa_idx,
241 crypto_resource_t * res,
242 crypto_worker_main_t * cwm, u8 is_outbound)
243{
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +0000244 dpdk_crypto_main_t *dcm = &dpdk_crypto_main;
245 crypto_data_t *data;
Radu Nicolaude412ce2018-03-12 13:52:41 +0000246 struct rte_cryptodev_sym_session *sess;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100247
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +0000248 data = vec_elt_at_index (dcm->data, res->numa);
Radu Nicolaude412ce2018-03-12 13:52:41 +0000249 sess = get_session_by_drv_and_sa_idx (data, res->drv_id, sa_idx);
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100250
Radu Nicolaude412ce2018-03-12 13:52:41 +0000251 if (PREDICT_FALSE (!sess))
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100252 return create_sym_session (session, sa_idx, res, cwm, is_outbound);
253
Radu Nicolaude412ce2018-03-12 13:52:41 +0000254 session[0] = sess;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100255
256 return NULL;
257}
258
259static_always_inline u16
260get_resource (crypto_worker_main_t * cwm, ipsec_sa_t * sa)
261{
262 u16 cipher_res = cwm->cipher_resource_idx[sa->crypto_alg];
263 u16 auth_res = cwm->auth_resource_idx[sa->integ_alg];
264 u8 is_aead;
265
266 /* Not allowed to setup SA with no-aead-cipher/NULL or NULL/NULL */
267
Radu Nicolaude412ce2018-03-12 13:52:41 +0000268 is_aead = ((sa->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_128) ||
269 (sa->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_192) ||
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100270 (sa->crypto_alg == IPSEC_CRYPTO_ALG_AES_GCM_256));
271
272 if (sa->crypto_alg == IPSEC_CRYPTO_ALG_NONE)
273 return auth_res;
274
275 if (cipher_res == auth_res)
276 return cipher_res;
277
278 if (is_aead)
279 return cipher_res;
280
281 return (u16) ~ 0;
282}
283
284static_always_inline i32
285crypto_alloc_ops (u8 numa, struct rte_crypto_op ** ops, u32 n)
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000286{
287 dpdk_crypto_main_t *dcm = &dpdk_crypto_main;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100288 crypto_data_t *data = vec_elt_at_index (dcm->data, numa);
289 i32 ret;
290
291 ret = rte_mempool_get_bulk (data->crypto_op, (void **) ops, n);
292
Damjan Marion45b48502017-11-17 09:46:41 +0100293 /* *INDENT-OFF* */
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100294 data->crypto_op_get_failed += ! !ret;
Damjan Marion45b48502017-11-17 09:46:41 +0100295 /* *INDENT-ON* */
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100296
297 return ret;
298}
299
300static_always_inline void
301crypto_free_ops (u8 numa, struct rte_crypto_op **ops, u32 n)
302{
303 dpdk_crypto_main_t *dcm = &dpdk_crypto_main;
304 crypto_data_t *data = vec_elt_at_index (dcm->data, numa);
305
306 if (!n)
307 return;
308
309 rte_mempool_put_bulk (data->crypto_op, (void **) ops, n);
310}
311
312static_always_inline void
Sergio Gonzalez Monroy35467f12019-01-30 11:26:00 +0100313crypto_enqueue_ops (vlib_main_t * vm, crypto_worker_main_t * cwm,
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +0200314 u32 node_index, u32 error, u8 numa, u8 encrypt)
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100315{
316 dpdk_crypto_main_t *dcm = &dpdk_crypto_main;
317 crypto_resource_t *res;
318 u16 *res_idx;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000319
320 /* *INDENT-OFF* */
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100321 vec_foreach (res_idx, cwm->resource_idx)
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000322 {
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +0200323 u16 enq, n_ops;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100324 res = vec_elt_at_index (dcm->resource, res_idx[0]);
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000325
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100326 if (!res->n_ops)
327 continue;
328
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +0200329 n_ops = (DPDK_CRYPTO_N_QUEUE_DESC / 2) - res->inflights[encrypt];
330 n_ops = res->n_ops < n_ops ? res->n_ops : n_ops;
Sergio Gonzalez Monroy35467f12019-01-30 11:26:00 +0100331 enq = rte_cryptodev_enqueue_burst (res->dev_id, res->qp_id,
Sergio Gonzalez Monroyd8a34a52019-05-06 22:44:14 +0200332 res->ops, n_ops);
333 ASSERT (n_ops == enq);
334 res->inflights[encrypt] += enq;
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100335
336 if (PREDICT_FALSE (enq < res->n_ops))
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000337 {
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100338 crypto_free_ops (numa, &res->ops[enq], res->n_ops - enq);
339 vlib_buffer_free (vm, &res->bi[enq], res->n_ops - enq);
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000340
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100341 vlib_node_increment_counter (vm, node_index, error,
342 res->n_ops - enq);
343 }
344 res->n_ops = 0;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000345 }
346 /* *INDENT-ON* */
347}
348
349static_always_inline void
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100350crypto_set_icb (dpdk_gcm_cnt_blk * icb, u32 salt, u32 seq, u32 seq_hi)
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000351{
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100352 icb->salt = salt;
353 icb->iv[0] = seq;
354 icb->iv[1] = seq_hi;
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000355}
356
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100357static_always_inline void
358crypto_op_setup (u8 is_aead, struct rte_mbuf *mb0,
359 struct rte_crypto_op *op, void *session,
360 u32 cipher_off, u32 cipher_len,
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100361 u32 auth_off, u32 auth_len,
Sergio Gonzalez Monroy99214ce2017-11-26 15:25:43 +0000362 u8 * aad, u8 * digest, u64 digest_paddr)
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000363{
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100364 struct rte_crypto_sym_op *sym_op;
365
366 sym_op = (struct rte_crypto_sym_op *) (op + 1);
367
368 sym_op->m_src = mb0;
369 sym_op->session = session;
370
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100371 if (is_aead)
372 {
373 sym_op->aead.data.offset = cipher_off;
374 sym_op->aead.data.length = cipher_len;
375
376 sym_op->aead.aad.data = aad;
377 sym_op->aead.aad.phys_addr =
378 op->phys_addr + (uintptr_t) aad - (uintptr_t) op;
379
380 sym_op->aead.digest.data = digest;
381 sym_op->aead.digest.phys_addr = digest_paddr;
382 }
383 else
384 {
385 sym_op->cipher.data.offset = cipher_off;
386 sym_op->cipher.data.length = cipher_len;
387
388 sym_op->auth.data.offset = auth_off;
389 sym_op->auth.data.length = auth_len;
390
391 sym_op->auth.digest.data = digest;
392 sym_op->auth.digest.phys_addr = digest_paddr;
393 }
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000394}
395
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000396#endif /* __DPDK_IPSEC_H__ */
397
398/*
399 * fd.io coding-style-patch-verification: ON
400 *
401 * Local Variables:
402 * eval: (c-set-style "gnu")
403 * End:
404 */