2ae09ce226e34fd157cc4a95a2b828eaa7d68192
[vpp.git] / src / plugins / dpdk / cryptodev / cryptodev.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2020 Intel 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 <vnet/vnet.h>
22 #include <vpp/app/version.h>
23
24 #include <dpdk/buffer.h>
25 #include <dpdk/device/dpdk.h>
26 #include <dpdk/device/dpdk_priv.h>
27 #undef always_inline
28 #include <rte_bus_vdev.h>
29 #include <rte_cryptodev.h>
30 #include <rte_crypto_sym.h>
31 #include <rte_crypto.h>
32 #include <rte_cryptodev_pmd.h>
33 #include <rte_config.h>
34
35 #if CLIB_DEBUG > 0
36 #define always_inline static inline
37 #else
38 #define always_inline static inline __attribute__ ((__always_inline__))
39 #endif
40
41 #define CRYPTODEV_NB_CRYPTO_OPS 1024
42 #define CRYPTODEV_NB_SESSION    10240
43 #define CRYPTODEV_DEF_DRIVE     crypto_aesni_mb
44
45 #define CRYPTODEV_IV_OFFSET (offsetof (cryptodev_op_t, iv))
46 #define CRYPTODEV_AAD_OFFSET (offsetof (cryptodev_op_t, aad))
47
48 /* VNET_CRYPTO_ALGO, TYPE, DPDK_CRYPTO_ALGO, IV_LEN, TAG_LEN, AAD_LEN */
49 #define foreach_vnet_aead_crypto_conversion \
50   _(AES_128_GCM, AEAD, AES_GCM, 12, 16, 8)  \
51   _(AES_128_GCM, AEAD, AES_GCM, 12, 16, 12) \
52   _(AES_192_GCM, AEAD, AES_GCM, 12, 16, 8)  \
53   _(AES_192_GCM, AEAD, AES_GCM, 12, 16, 12) \
54   _(AES_256_GCM, AEAD, AES_GCM, 12, 16, 8)  \
55   _(AES_256_GCM, AEAD, AES_GCM, 12, 16, 12)
56
57 /**
58  * crypto (alg, cryptodev_alg), hash (alg, digest-size)
59  **/
60 #define foreach_cryptodev_link_async_alg        \
61   _ (AES_128_CBC, AES_CBC, SHA1, 12)            \
62   _ (AES_192_CBC, AES_CBC, SHA1, 12)            \
63   _ (AES_256_CBC, AES_CBC, SHA1, 12)            \
64   _ (AES_128_CBC, AES_CBC, SHA224, 14)          \
65   _ (AES_192_CBC, AES_CBC, SHA224, 14)          \
66   _ (AES_256_CBC, AES_CBC, SHA224, 14)          \
67   _ (AES_128_CBC, AES_CBC, SHA256, 16)          \
68   _ (AES_192_CBC, AES_CBC, SHA256, 16)          \
69   _ (AES_256_CBC, AES_CBC, SHA256, 16)          \
70   _ (AES_128_CBC, AES_CBC, SHA384, 24)          \
71   _ (AES_192_CBC, AES_CBC, SHA384, 24)          \
72   _ (AES_256_CBC, AES_CBC, SHA384, 24)          \
73   _ (AES_128_CBC, AES_CBC, SHA512, 32)          \
74   _ (AES_192_CBC, AES_CBC, SHA512, 32)          \
75   _ (AES_256_CBC, AES_CBC, SHA512, 32)
76
77 #define foreach_vnet_crypto_status_conversion \
78   _(SUCCESS, COMPLETED)                       \
79   _(NOT_PROCESSED, WORK_IN_PROGRESS)          \
80   _(AUTH_FAILED, FAIL_BAD_HMAC)               \
81   _(INVALID_SESSION, FAIL_ENGINE_ERR)         \
82   _(INVALID_ARGS, FAIL_ENGINE_ERR)            \
83   _(ERROR, FAIL_ENGINE_ERR)
84
85 static const vnet_crypto_op_status_t cryptodev_status_conversion[] = {
86 #define _(a, b) VNET_CRYPTO_OP_STATUS_##b,
87   foreach_vnet_crypto_status_conversion
88 #undef _
89 };
90
91 typedef struct
92 {
93   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
94   struct rte_crypto_op op;
95   struct rte_crypto_sym_op sop;
96   u8 iv[16];
97   u8 aad[16];
98   vnet_crypto_async_frame_t *frame;
99   u32 n_elts;
100 } cryptodev_op_t;
101
102 typedef enum
103 {
104   CRYPTODEV_OP_TYPE_ENCRYPT = 0,
105   CRYPTODEV_OP_TYPE_DECRYPT,
106   CRYPTODEV_N_OP_TYPES,
107 } cryptodev_op_type_t;
108
109 typedef struct
110 {
111   struct rte_cryptodev_sym_session *keys[CRYPTODEV_N_OP_TYPES];
112 } cryptodev_key_t;
113
114 typedef struct
115 {
116   u32 dev_id;
117   u32 q_id;
118   char *desc;
119 } cryptodev_inst_t;
120
121 typedef struct
122 {
123   struct rte_mempool *cop_pool;
124   struct rte_mempool *sess_pool;
125   struct rte_mempool *sess_priv_pool;
126 } cryptodev_numa_data_t;
127
128 typedef struct
129 {
130   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
131   u16 cryptodev_id;
132   u16 cryptodev_q;
133   u32 inflight;
134   cryptodev_op_t **cops;
135   struct rte_ring *ring;
136 } cryptodev_engine_thread_t;
137
138 typedef struct
139 {
140   cryptodev_numa_data_t *per_numa_data;
141   cryptodev_key_t *keys;
142   cryptodev_engine_thread_t *per_thread_data;
143   enum rte_iova_mode iova_mode;
144   cryptodev_inst_t *cryptodev_inst;
145   clib_bitmap_t *active_cdev_inst_mask;
146   clib_spinlock_t tlock;
147 } cryptodev_main_t;
148
149 cryptodev_main_t cryptodev_main;
150
151 static int
152 prepare_aead_xform (struct rte_crypto_sym_xform *xform,
153                     cryptodev_op_type_t op_type,
154                     const vnet_crypto_key_t * key, u32 aad_len)
155 {
156   struct rte_crypto_aead_xform *aead_xform = &xform->aead;
157   memset (xform, 0, sizeof (*xform));
158   xform->type = RTE_CRYPTO_SYM_XFORM_AEAD;
159   xform->next = 0;
160
161   if (key->alg != VNET_CRYPTO_ALG_AES_128_GCM &&
162       key->alg != VNET_CRYPTO_ALG_AES_192_GCM &&
163       key->alg != VNET_CRYPTO_ALG_AES_256_GCM)
164     return -1;
165
166   aead_xform->algo = RTE_CRYPTO_AEAD_AES_GCM;
167   aead_xform->op = (op_type == CRYPTODEV_OP_TYPE_ENCRYPT) ?
168     RTE_CRYPTO_AEAD_OP_ENCRYPT : RTE_CRYPTO_AEAD_OP_DECRYPT;
169   aead_xform->aad_length = aad_len;
170   aead_xform->digest_length = 16;
171   aead_xform->iv.offset = CRYPTODEV_IV_OFFSET;
172   aead_xform->iv.length = 12;
173   aead_xform->key.data = key->data;
174   aead_xform->key.length = vec_len (key->data);
175
176   return 0;
177 }
178
179 static int
180 prepare_linked_xform (struct rte_crypto_sym_xform *xforms,
181                       cryptodev_op_type_t op_type,
182                       const vnet_crypto_key_t * key)
183 {
184   struct rte_crypto_sym_xform *xform_cipher, *xform_auth;
185   vnet_crypto_key_t *key_cipher, *key_auth;
186   enum rte_crypto_cipher_algorithm cipher_algo = ~0;
187   enum rte_crypto_auth_algorithm auth_algo = ~0;
188   u32 digest_len = ~0;
189
190   key_cipher = vnet_crypto_get_key (key->index_crypto);
191   key_auth = vnet_crypto_get_key (key->index_integ);
192   if (!key_cipher || !key_auth)
193     return -1;
194
195   if (op_type == CRYPTODEV_OP_TYPE_ENCRYPT)
196     {
197       xform_cipher = xforms;
198       xform_auth = xforms + 1;
199       xform_cipher->cipher.op = RTE_CRYPTO_CIPHER_OP_ENCRYPT;
200       xform_auth->auth.op = RTE_CRYPTO_AUTH_OP_GENERATE;
201     }
202   else
203     {
204       xform_cipher = xforms + 1;
205       xform_auth = xforms;
206       xform_cipher->cipher.op = RTE_CRYPTO_CIPHER_OP_DECRYPT;
207       xform_auth->auth.op = RTE_CRYPTO_AUTH_OP_VERIFY;
208     }
209
210   xform_cipher->type = RTE_CRYPTO_SYM_XFORM_CIPHER;
211   xform_auth->type = RTE_CRYPTO_SYM_XFORM_AUTH;
212   xforms->next = xforms + 1;
213
214   switch (key->async_alg)
215     {
216 #define _(a, b, c, d) \
217   case VNET_CRYPTO_ALG_##a##_##c##_TAG##d:\
218     cipher_algo = RTE_CRYPTO_CIPHER_##b; \
219     auth_algo = RTE_CRYPTO_AUTH_##c##_HMAC; \
220     digest_len = d; \
221     break;
222
223       foreach_cryptodev_link_async_alg
224 #undef _
225     default:
226       return -1;
227     }
228
229   xform_cipher->cipher.algo = cipher_algo;
230   xform_cipher->cipher.key.data = key_cipher->data;
231   xform_cipher->cipher.key.length = vec_len (key_cipher->data);
232   xform_cipher->cipher.iv.length = 16;
233   xform_cipher->cipher.iv.offset = CRYPTODEV_IV_OFFSET;
234
235   xform_auth->auth.algo = auth_algo;
236   xform_auth->auth.digest_length = digest_len;
237   xform_auth->auth.key.data = key_auth->data;
238   xform_auth->auth.key.length = vec_len (key_auth->data);
239
240   return 0;
241 }
242
243 static int
244 cryptodev_session_create (vnet_crypto_key_t * const key,
245                           struct rte_mempool *sess_priv_pool,
246                           cryptodev_key_t * session_pair, u32 aad_len)
247 {
248   struct rte_crypto_sym_xform xforms_enc[2] = { {0} };
249   struct rte_crypto_sym_xform xforms_dec[2] = { {0} };
250   cryptodev_main_t *cmt = &cryptodev_main;
251   cryptodev_inst_t *dev_inst;
252   struct rte_cryptodev *cdev;
253   int ret;
254   uint8_t dev_id = 0;
255
256   if (key->type == VNET_CRYPTO_KEY_TYPE_LINK)
257     ret = prepare_linked_xform (xforms_enc, CRYPTODEV_OP_TYPE_ENCRYPT, key);
258   else
259     ret = prepare_aead_xform (xforms_enc, CRYPTODEV_OP_TYPE_ENCRYPT, key,
260                               aad_len);
261   if (ret)
262     return 0;
263
264   if (key->type == VNET_CRYPTO_KEY_TYPE_LINK)
265     prepare_linked_xform (xforms_dec, CRYPTODEV_OP_TYPE_DECRYPT, key);
266   else
267     prepare_aead_xform (xforms_dec, CRYPTODEV_OP_TYPE_DECRYPT, key, aad_len);
268
269   vec_foreach (dev_inst, cmt->cryptodev_inst)
270   {
271     dev_id = dev_inst->dev_id;
272     cdev = rte_cryptodev_pmd_get_dev (dev_id);
273
274     /* if the session is already configured for the driver type, avoid
275        configuring it again to increase the session data's refcnt */
276     if (session_pair->keys[0]->sess_data[cdev->driver_id].data &&
277         session_pair->keys[1]->sess_data[cdev->driver_id].data)
278       continue;
279
280     ret = rte_cryptodev_sym_session_init (dev_id, session_pair->keys[0],
281                                           xforms_enc, sess_priv_pool);
282     ret = rte_cryptodev_sym_session_init (dev_id, session_pair->keys[1],
283                                           xforms_dec, sess_priv_pool);
284     if (ret < 0)
285       return ret;
286   }
287   session_pair->keys[0]->opaque_data = aad_len;
288   session_pair->keys[1]->opaque_data = aad_len;
289
290   return 0;
291 }
292
293 static void
294 cryptodev_session_del (struct rte_cryptodev_sym_session *sess)
295 {
296   u32 n_devs, i;
297
298   if (sess == NULL)
299     return;
300
301   n_devs = rte_cryptodev_count ();
302
303   for (i = 0; i < n_devs; i++)
304     rte_cryptodev_sym_session_clear (i, sess);
305
306   rte_cryptodev_sym_session_free (sess);
307 }
308
309 static int
310 cryptodev_check_supported_vnet_alg (vnet_crypto_key_t * key)
311 {
312   vnet_crypto_alg_t alg;
313   if (key->type == VNET_CRYPTO_KEY_TYPE_LINK)
314     return 0;
315
316   alg = key->alg;
317
318 #define _(a, b, c, d, e, f)     \
319   if (alg == VNET_CRYPTO_ALG_##a) \
320     return 0;
321
322   foreach_vnet_aead_crypto_conversion
323 #undef _
324     return -1;
325 }
326
327 static_always_inline void
328 cryptodev_sess_handler (vlib_main_t * vm, vnet_crypto_key_op_t kop,
329                         vnet_crypto_key_index_t idx, u32 aad_len)
330 {
331   cryptodev_main_t *cmt = &cryptodev_main;
332   cryptodev_numa_data_t *numa_data;
333   vnet_crypto_key_t *key = vnet_crypto_get_key (idx);
334   struct rte_mempool *sess_pool, *sess_priv_pool;
335   cryptodev_key_t *ckey = 0;
336   int ret = 0;
337
338   if (kop == VNET_CRYPTO_KEY_OP_DEL)
339     {
340       if (idx >= vec_len (cmt->keys))
341         return;
342
343       ckey = pool_elt_at_index (cmt->keys, idx);
344       cryptodev_session_del (ckey->keys[0]);
345       cryptodev_session_del (ckey->keys[1]);
346       ckey->keys[0] = 0;
347       ckey->keys[1] = 0;
348       pool_put (cmt->keys, ckey);
349       return;
350     }
351   else if (kop == VNET_CRYPTO_KEY_OP_MODIFY)
352     {
353       if (idx >= vec_len (cmt->keys))
354         return;
355
356       ckey = pool_elt_at_index (cmt->keys, idx);
357
358       cryptodev_session_del (ckey->keys[0]);
359       cryptodev_session_del (ckey->keys[1]);
360       ckey->keys[0] = 0;
361       ckey->keys[1] = 0;
362     }
363   else                          /* create key */
364     pool_get_zero (cmt->keys, ckey);
365
366   /* do not create session for unsupported alg */
367   if (cryptodev_check_supported_vnet_alg (key))
368     return;
369
370   numa_data = vec_elt_at_index (cmt->per_numa_data, vm->numa_node);
371   sess_pool = numa_data->sess_pool;
372   sess_priv_pool = numa_data->sess_priv_pool;
373
374   ckey->keys[0] = rte_cryptodev_sym_session_create (sess_pool);
375   if (!ckey->keys[0])
376     {
377       ret = -1;
378       goto clear_key;
379     }
380
381   ckey->keys[1] = rte_cryptodev_sym_session_create (sess_pool);
382   if (!ckey->keys[1])
383     {
384       ret = -1;
385       goto clear_key;
386     }
387
388   ret = cryptodev_session_create (key, sess_priv_pool, ckey, aad_len);
389
390 clear_key:
391   if (ret != 0)
392     {
393       cryptodev_session_del (ckey->keys[0]);
394       cryptodev_session_del (ckey->keys[1]);
395       memset (ckey, 0, sizeof (*ckey));
396       pool_put (cmt->keys, ckey);
397     }
398 }
399
400 /*static*/ void
401 cryptodev_key_handler (vlib_main_t * vm, vnet_crypto_key_op_t kop,
402                        vnet_crypto_key_index_t idx)
403 {
404   cryptodev_sess_handler (vm, kop, idx, 8);
405 }
406
407 static_always_inline void
408 cryptodev_mark_frame_err_status (vnet_crypto_async_frame_t * f,
409                                  vnet_crypto_op_status_t s)
410 {
411   u32 n_elts = f->n_elts, i;
412
413   for (i = 0; i < n_elts; i++)
414     f->elts[i].status = s;
415   f->state = VNET_CRYPTO_FRAME_STATE_ELT_ERROR;
416 }
417
418 static_always_inline rte_iova_t
419 cryptodev_get_iova (clib_pmalloc_main_t * pm, enum rte_iova_mode mode,
420                     void *data)
421 {
422   u64 index;
423   if (mode == RTE_IOVA_VA)
424     return (rte_iova_t) pointer_to_uword (data);
425
426   index = clib_pmalloc_get_page_index (pm, data);
427   return pointer_to_uword (data) - pm->lookup_table[index];
428 }
429
430 static_always_inline void
431 cryptodev_validate_mbuf_chain (vlib_main_t * vm, struct rte_mbuf *mb,
432                                vlib_buffer_t * b)
433 {
434   struct rte_mbuf *first_mb = mb, *last_mb = mb; /**< last mbuf */
435   /* when input node is not dpdk, mbuf data len is not initialized, for
436    * single buffer it is not a problem since the data length is written
437    * into cryptodev operation. For chained buffer a reference data length
438    * has to be computed through vlib_buffer.
439    *
440    * even when input node is dpdk, it is possible chained vlib_buffers
441    * are updated (either added or removed a buffer) but not not mbuf fields.
442    * we have to re-link every mbuf in the chain.
443    */
444   u16 data_len = b->current_length + (b->data + b->current_data -
445                                       rte_pktmbuf_mtod (mb, u8 *));
446
447   first_mb->nb_segs = 1;
448   first_mb->pkt_len = first_mb->data_len = data_len;
449
450   while (b->flags & VLIB_BUFFER_NEXT_PRESENT)
451     {
452       b = vlib_get_buffer (vm, b->next_buffer);
453       mb = rte_mbuf_from_vlib_buffer (b);
454       if (PREDICT_FALSE ((b->flags & VLIB_BUFFER_EXT_HDR_VALID) == 0))
455         rte_pktmbuf_reset (mb);
456       last_mb->next = mb;
457       last_mb = mb;
458       mb->data_len = b->current_length;
459       mb->pkt_len = b->current_length;
460       mb->data_off = VLIB_BUFFER_PRE_DATA_SIZE + b->current_data;
461       first_mb->nb_segs++;
462       if (PREDICT_FALSE (b->ref_count > 1))
463         mb->pool =
464           dpdk_no_cache_mempool_by_buffer_pool_index[b->buffer_pool_index];
465     }
466 }
467
468 static_always_inline int
469 cryptodev_frame_linked_algs_enqueue (vlib_main_t * vm,
470                                      vnet_crypto_async_frame_t * frame,
471                                      cryptodev_op_type_t op_type)
472 {
473   cryptodev_main_t *cmt = &cryptodev_main;
474   clib_pmalloc_main_t *pm = vm->physmem_main.pmalloc_main;
475   cryptodev_numa_data_t *numa = cmt->per_numa_data + vm->numa_node;
476   cryptodev_engine_thread_t *cet = cmt->per_thread_data + vm->thread_index;
477   vnet_crypto_async_frame_elt_t *fe;
478   cryptodev_op_t **cop;
479   u32 *bi;
480   u32 n_enqueue, n_elts;
481   cryptodev_key_t *key;
482   u32 last_key_index;
483
484   if (PREDICT_FALSE (frame == 0 || frame->n_elts == 0))
485     return -1;
486   n_elts = frame->n_elts;
487
488   if (PREDICT_FALSE (CRYPTODEV_NB_CRYPTO_OPS - cet->inflight < n_elts))
489     {
490       cryptodev_mark_frame_err_status (frame,
491                                        VNET_CRYPTO_OP_STATUS_FAIL_ENGINE_ERR);
492       return -1;
493     }
494
495   if (PREDICT_FALSE (rte_mempool_get_bulk (numa->cop_pool,
496                                            (void **) cet->cops, n_elts) < 0))
497     {
498       cryptodev_mark_frame_err_status (frame,
499                                        VNET_CRYPTO_OP_STATUS_FAIL_ENGINE_ERR);
500       return -1;
501     }
502
503   cop = cet->cops;
504   fe = frame->elts;
505   bi = frame->buffer_indices;
506   cop[0]->frame = frame;
507   cop[0]->n_elts = n_elts;
508
509   key = pool_elt_at_index (cmt->keys, fe->key_index);
510   last_key_index = fe->key_index;
511
512   while (n_elts)
513     {
514       vlib_buffer_t *b = vlib_get_buffer (vm, bi[0]);
515       struct rte_crypto_sym_op *sop = &cop[0]->sop;
516       i16 crypto_offset = fe->crypto_start_offset;
517       i16 integ_offset = fe->integ_start_offset;
518       u32 offset_diff = crypto_offset - integ_offset;
519
520       if (n_elts > 2)
521         {
522           CLIB_PREFETCH (cop[1], CLIB_CACHE_LINE_BYTES * 3, STORE);
523           CLIB_PREFETCH (cop[2], CLIB_CACHE_LINE_BYTES * 3, STORE);
524           CLIB_PREFETCH (&fe[1], CLIB_CACHE_LINE_BYTES, LOAD);
525           CLIB_PREFETCH (&fe[2], CLIB_CACHE_LINE_BYTES, LOAD);
526         }
527       if (last_key_index != fe->key_index)
528         {
529           key = pool_elt_at_index (cmt->keys, fe->key_index);
530           last_key_index = fe->key_index;
531         }
532
533       sop->m_src = rte_mbuf_from_vlib_buffer (b);
534       sop->m_src->data_off = VLIB_BUFFER_PRE_DATA_SIZE;
535       sop->m_dst = 0;
536       /* mbuf prepend happens in the tx, but vlib_buffer happens in the nodes,
537        * so we have to manually adjust mbuf data_off here so cryptodev can
538        * correctly compute the data pointer. The prepend here will be later
539        * rewritten by tx. */
540       if (PREDICT_TRUE (fe->integ_start_offset < 0))
541         {
542           sop->m_src->data_off += fe->integ_start_offset;
543           integ_offset = 0;
544           crypto_offset = offset_diff;
545         }
546       sop->session = key->keys[op_type];
547       sop->cipher.data.offset = crypto_offset;
548       sop->cipher.data.length = fe->crypto_total_length;
549       sop->auth.data.offset = integ_offset;
550       sop->auth.data.length = fe->crypto_total_length + fe->integ_length_adj;
551       sop->auth.digest.data = fe->digest;
552       sop->auth.digest.phys_addr = cryptodev_get_iova (pm, cmt->iova_mode,
553                                                        fe->digest);
554       if (PREDICT_FALSE (fe->flags & VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS))
555         cryptodev_validate_mbuf_chain (vm, sop->m_src, b);
556       else
557         /* for input nodes that are not dpdk-input, it is possible the mbuf
558          * was updated before as one of the chained mbufs. Setting nb_segs
559          * to 1 here to prevent the cryptodev PMD to access potentially
560          * invalid m_src->next pointers.
561          */
562         sop->m_src->nb_segs = 1;
563       clib_memcpy_fast (cop[0]->iv, fe->iv, 16);
564       cop++;
565       bi++;
566       fe++;
567       n_elts--;
568     }
569
570   n_enqueue = rte_cryptodev_enqueue_burst (cet->cryptodev_id,
571                                            cet->cryptodev_q,
572                                            (struct rte_crypto_op **)
573                                            cet->cops, frame->n_elts);
574   ASSERT (n_enqueue == frame->n_elts);
575   cet->inflight += n_enqueue;
576
577   return 0;
578 }
579
580 static_always_inline int
581 cryptodev_frame_gcm_enqueue (vlib_main_t * vm,
582                              vnet_crypto_async_frame_t * frame,
583                              cryptodev_op_type_t op_type, u8 aad_len)
584 {
585   cryptodev_main_t *cmt = &cryptodev_main;
586   clib_pmalloc_main_t *pm = vm->physmem_main.pmalloc_main;
587   cryptodev_numa_data_t *numa = cmt->per_numa_data + vm->numa_node;
588   cryptodev_engine_thread_t *cet = cmt->per_thread_data + vm->thread_index;
589   vnet_crypto_async_frame_elt_t *fe;
590   cryptodev_op_t **cop;
591   u32 *bi;
592   u32 n_enqueue = 0, n_elts;
593   cryptodev_key_t *key;
594   u32 last_key_index;
595   u8 sess_aad_len;
596
597   if (PREDICT_FALSE (frame == 0 || frame->n_elts == 0))
598     return -1;
599   n_elts = frame->n_elts;
600
601   if (PREDICT_FALSE (CRYPTODEV_NB_CRYPTO_OPS - cet->inflight < n_elts))
602     {
603       cryptodev_mark_frame_err_status (frame,
604                                        VNET_CRYPTO_OP_STATUS_FAIL_ENGINE_ERR);
605       return -1;
606     }
607
608   if (PREDICT_FALSE (rte_mempool_get_bulk (numa->cop_pool,
609                                            (void **) cet->cops, n_elts) < 0))
610     {
611       cryptodev_mark_frame_err_status (frame,
612                                        VNET_CRYPTO_OP_STATUS_FAIL_ENGINE_ERR);
613       return -1;
614     }
615
616   cop = cet->cops;
617   fe = frame->elts;
618   bi = frame->buffer_indices;
619   cop[0]->frame = frame;
620   cop[0]->n_elts = n_elts;
621
622   key = pool_elt_at_index (cmt->keys, fe->key_index);
623   last_key_index = fe->key_index;
624   sess_aad_len = (u8) key->keys[op_type]->opaque_data;
625   if (PREDICT_FALSE (sess_aad_len != aad_len))
626     cryptodev_sess_handler (vm, VNET_CRYPTO_KEY_OP_MODIFY,
627                             fe->key_index, aad_len);
628
629   while (n_elts)
630     {
631       vlib_buffer_t *b = vlib_get_buffer (vm, bi[0]);
632       struct rte_crypto_sym_op *sop = &cop[0]->sop;
633       u16 crypto_offset = fe->crypto_start_offset;
634
635       if (n_elts > 2)
636         {
637           CLIB_PREFETCH (cop[1], CLIB_CACHE_LINE_BYTES * 3, STORE);
638           CLIB_PREFETCH (cop[2], CLIB_CACHE_LINE_BYTES * 3, STORE);
639           CLIB_PREFETCH (&fe[1], CLIB_CACHE_LINE_BYTES, LOAD);
640           CLIB_PREFETCH (&fe[2], CLIB_CACHE_LINE_BYTES, LOAD);
641         }
642       if (last_key_index != fe->key_index)
643         {
644           key = pool_elt_at_index (cmt->keys, fe->key_index);
645           sess_aad_len = (u8) key->keys[op_type]->opaque_data;
646           if (PREDICT_FALSE (sess_aad_len != aad_len))
647             {
648               cryptodev_sess_handler (vm, VNET_CRYPTO_KEY_OP_MODIFY,
649                                       fe->key_index, aad_len);
650             }
651           last_key_index = fe->key_index;
652         }
653
654       sop->m_src = rte_mbuf_from_vlib_buffer (b);
655       sop->m_dst = 0;
656       /* mbuf prepend happens in the tx, but vlib_buffer happens in the nodes,
657        * so we have to manually adjust mbuf data_off here so cryptodev can
658        * correctly compute the data pointer. The prepend here will be later
659        * rewritten by tx. */
660       if (PREDICT_FALSE (fe->crypto_start_offset < 0))
661         {
662           rte_pktmbuf_prepend (sop->m_src, -fe->crypto_start_offset);
663           crypto_offset = 0;
664         }
665
666       sop->session = key->keys[op_type];
667       sop->aead.aad.data = cop[0]->aad;
668       sop->aead.aad.phys_addr = cop[0]->op.phys_addr + CRYPTODEV_AAD_OFFSET;
669       sop->aead.data.length = fe->crypto_total_length;
670       sop->aead.data.offset = crypto_offset;
671       sop->aead.digest.data = fe->tag;
672       sop->aead.digest.phys_addr = cryptodev_get_iova (pm, cmt->iova_mode,
673                                                        fe->tag);
674       if (PREDICT_FALSE (fe->flags & VNET_CRYPTO_OP_FLAG_CHAINED_BUFFERS))
675         cryptodev_validate_mbuf_chain (vm, sop->m_src, b);
676       else
677         /* for input nodes that are not dpdk-input, it is possible the mbuf
678          * was updated before as one of the chained mbufs. Setting nb_segs
679          * to 1 here to prevent the cryptodev PMD to access potentially
680          * invalid m_src->next pointers.
681          */
682         sop->m_src->nb_segs = 1;
683       clib_memcpy_fast (cop[0]->iv, fe->iv, 12);
684       clib_memcpy_fast (cop[0]->aad, fe->aad, aad_len);
685       cop++;
686       bi++;
687       fe++;
688       n_elts--;
689     }
690
691   n_enqueue = rte_cryptodev_enqueue_burst (cet->cryptodev_id,
692                                            cet->cryptodev_q,
693                                            (struct rte_crypto_op **)
694                                            cet->cops, frame->n_elts);
695   ASSERT (n_enqueue == frame->n_elts);
696   cet->inflight += n_enqueue;
697
698   return 0;
699 }
700
701 static_always_inline cryptodev_op_t *
702 cryptodev_get_ring_head (struct rte_ring * ring)
703 {
704   cryptodev_op_t **r = (void *) &ring[1];
705   return r[ring->cons.head & ring->mask];
706 }
707
708 static_always_inline vnet_crypto_async_frame_t *
709 cryptodev_frame_dequeue (vlib_main_t * vm)
710 {
711   cryptodev_main_t *cmt = &cryptodev_main;
712   cryptodev_numa_data_t *numa = cmt->per_numa_data + vm->numa_node;
713   cryptodev_engine_thread_t *cet = cmt->per_thread_data + vm->thread_index;
714   cryptodev_op_t *cop0, **cop = cet->cops;
715   vnet_crypto_async_frame_elt_t *fe;
716   vnet_crypto_async_frame_t *frame;
717   u32 n_elts, n_completed_ops = rte_ring_count (cet->ring);
718   u32 ss0 = 0, ss1 = 0, ss2 = 0, ss3 = 0;       /* sum of status */
719
720   if (cet->inflight)
721     {
722       n_elts = clib_min (CRYPTODEV_NB_CRYPTO_OPS - n_completed_ops,
723                          VNET_CRYPTO_FRAME_SIZE);
724       n_elts = rte_cryptodev_dequeue_burst
725         (cet->cryptodev_id, cet->cryptodev_q,
726          (struct rte_crypto_op **) cet->cops, n_elts);
727       cet->inflight -= n_elts;
728       n_completed_ops += n_elts;
729
730       rte_ring_sp_enqueue_burst (cet->ring, (void *) cet->cops, n_elts, NULL);
731     }
732
733   if (PREDICT_FALSE (n_completed_ops == 0))
734     return 0;
735
736   cop0 = cryptodev_get_ring_head (cet->ring);
737   /* not a single frame is finished */
738   if (PREDICT_FALSE (cop0->n_elts > rte_ring_count (cet->ring)))
739     return 0;
740
741   frame = cop0->frame;
742   n_elts = cop0->n_elts;
743   n_elts = rte_ring_sc_dequeue_bulk (cet->ring, (void **) cet->cops,
744                                      n_elts, 0);
745   fe = frame->elts;
746
747   while (n_elts > 4)
748     {
749       ss0 |= fe[0].status = cryptodev_status_conversion[cop[0]->op.status];
750       ss1 |= fe[1].status = cryptodev_status_conversion[cop[1]->op.status];
751       ss2 |= fe[2].status = cryptodev_status_conversion[cop[2]->op.status];
752       ss3 |= fe[3].status = cryptodev_status_conversion[cop[3]->op.status];
753
754       cop += 4;
755       fe += 4;
756       n_elts -= 4;
757     }
758
759   while (n_elts)
760     {
761       ss0 |= fe[0].status = cryptodev_status_conversion[cop[0]->op.status];
762       fe++;
763       cop++;
764       n_elts--;
765     }
766
767   frame->state = (ss0 | ss1 | ss2 | ss3) == VNET_CRYPTO_OP_STATUS_COMPLETED ?
768     VNET_CRYPTO_FRAME_STATE_SUCCESS : VNET_CRYPTO_FRAME_STATE_ELT_ERROR;
769
770   rte_mempool_put_bulk (numa->cop_pool, (void **) cet->cops, frame->n_elts);
771
772   return frame;
773 }
774
775 /* *INDENT-OFF* */
776 static_always_inline int
777 cryptodev_enqueue_gcm_aad_8_enc (vlib_main_t * vm,
778                                  vnet_crypto_async_frame_t * frame)
779 {
780   return cryptodev_frame_gcm_enqueue (vm, frame,
781                                       CRYPTODEV_OP_TYPE_ENCRYPT, 8);
782 }
783 static_always_inline int
784 cryptodev_enqueue_gcm_aad_12_enc (vlib_main_t * vm,
785                                  vnet_crypto_async_frame_t * frame)
786 {
787   return cryptodev_frame_gcm_enqueue (vm, frame,
788                                       CRYPTODEV_OP_TYPE_ENCRYPT, 12);
789 }
790
791 static_always_inline int
792 cryptodev_enqueue_gcm_aad_8_dec (vlib_main_t * vm,
793                                  vnet_crypto_async_frame_t * frame)
794 {
795   return cryptodev_frame_gcm_enqueue (vm, frame,
796                                       CRYPTODEV_OP_TYPE_DECRYPT, 8);
797 }
798 static_always_inline int
799 cryptodev_enqueue_gcm_aad_12_dec (vlib_main_t * vm,
800                                  vnet_crypto_async_frame_t * frame)
801 {
802   return cryptodev_frame_gcm_enqueue (vm, frame,
803                                       CRYPTODEV_OP_TYPE_DECRYPT, 12);
804 }
805
806 static_always_inline int
807 cryptodev_enqueue_linked_alg_enc (vlib_main_t * vm,
808                                   vnet_crypto_async_frame_t * frame)
809 {
810   return cryptodev_frame_linked_algs_enqueue (vm, frame,
811                                               CRYPTODEV_OP_TYPE_ENCRYPT);
812 }
813
814 static_always_inline int
815 cryptodev_enqueue_linked_alg_dec (vlib_main_t * vm,
816                                   vnet_crypto_async_frame_t * frame)
817 {
818   return cryptodev_frame_linked_algs_enqueue (vm, frame,
819                                               CRYPTODEV_OP_TYPE_DECRYPT);
820 }
821
822 typedef enum
823 {
824   CRYPTODEV_RESOURCE_ASSIGN_AUTO = 0,
825   CRYPTODEV_RESOURCE_ASSIGN_UPDATE,
826 } cryptodev_resource_assign_op_t;
827
828 /**
829  *  assign a cryptodev resource to a worker.
830  *  @param cet: the worker thread data
831  *  @param cryptodev_inst_index: if op is "ASSIGN_AUTO" this param is ignored.
832  *  @param op: the assignment method.
833  *  @return: 0 if successfully, negative number otherwise.
834  **/
835 static_always_inline int
836 cryptodev_assign_resource (cryptodev_engine_thread_t * cet,
837                            u32 cryptodev_inst_index,
838                            cryptodev_resource_assign_op_t op)
839 {
840   cryptodev_main_t *cmt = &cryptodev_main;
841   cryptodev_inst_t *cinst = 0;
842   uword idx;
843
844   /* assign resource is only allowed when no inflight op is in the queue */
845   if (cet->inflight)
846     return -EBUSY;
847
848   switch (op)
849     {
850     case CRYPTODEV_RESOURCE_ASSIGN_AUTO:
851       if (clib_bitmap_count_set_bits (cmt->active_cdev_inst_mask) >=
852           vec_len (cmt->cryptodev_inst))
853         return -1;
854
855       clib_spinlock_lock (&cmt->tlock);
856       idx = clib_bitmap_first_clear (cmt->active_cdev_inst_mask);
857       clib_bitmap_set (cmt->active_cdev_inst_mask, idx, 1);
858       cinst = vec_elt_at_index (cmt->cryptodev_inst, idx);
859       cet->cryptodev_id = cinst->dev_id;
860       cet->cryptodev_q = cinst->q_id;
861       clib_spinlock_unlock (&cmt->tlock);
862       break;
863     case CRYPTODEV_RESOURCE_ASSIGN_UPDATE:
864       /* assigning a used cryptodev resource is not allowed */
865       if (clib_bitmap_get (cmt->active_cdev_inst_mask, cryptodev_inst_index)
866           == 1)
867         return -EBUSY;
868       vec_foreach_index (idx, cmt->cryptodev_inst)
869       {
870         cinst = cmt->cryptodev_inst + idx;
871         if (cinst->dev_id == cet->cryptodev_id &&
872             cinst->q_id == cet->cryptodev_q)
873           break;
874       }
875       /* invalid existing worker resource assignment */
876       if (idx == vec_len (cmt->cryptodev_inst))
877         return -EINVAL;
878       clib_spinlock_lock (&cmt->tlock);
879       clib_bitmap_set_no_check (cmt->active_cdev_inst_mask, idx, 0);
880       clib_bitmap_set_no_check (cmt->active_cdev_inst_mask,
881                                 cryptodev_inst_index, 1);
882       cinst = cmt->cryptodev_inst + cryptodev_inst_index;
883       cet->cryptodev_id = cinst->dev_id;
884       cet->cryptodev_q = cinst->q_id;
885       clib_spinlock_unlock (&cmt->tlock);
886       break;
887     default:
888       return -EINVAL;
889     }
890   return 0;
891 }
892
893 static u8 *
894 format_cryptodev_inst (u8 * s, va_list * args)
895 {
896   cryptodev_main_t *cmt = &cryptodev_main;
897   u32 inst = va_arg (*args, u32);
898   cryptodev_inst_t *cit = cmt->cryptodev_inst + inst;
899   u32 thread_index = 0;
900   struct rte_cryptodev_info info;
901
902   rte_cryptodev_info_get (cit->dev_id, &info);
903   s = format (s, "%-25s%-10u", info.device->name, cit->q_id);
904
905   vec_foreach_index (thread_index, cmt->per_thread_data)
906   {
907     cryptodev_engine_thread_t *cet = cmt->per_thread_data + thread_index;
908     if (vlib_num_workers () > 0 && thread_index == 0)
909       continue;
910
911     if (cet->cryptodev_id == cit->dev_id && cet->cryptodev_q == cit->q_id)
912       {
913         s = format (s, "%u (%v)\n", thread_index,
914                     vlib_worker_threads[thread_index].name);
915         break;
916       }
917   }
918
919   if (thread_index == vec_len (cmt->per_thread_data))
920     s = format (s, "%s\n", "free");
921
922   return s;
923 }
924
925 static clib_error_t *
926 cryptodev_show_assignment_fn (vlib_main_t * vm, unformat_input_t * input,
927                               vlib_cli_command_t * cmd)
928 {
929   cryptodev_main_t *cmt = &cryptodev_main;
930   u32 inst;
931
932   vlib_cli_output (vm, "%-5s%-25s%-10s%s\n", "No.", "Name", "Queue-id",
933                    "Assigned-to");
934   if (vec_len (cmt->cryptodev_inst) == 0)
935     {
936       vlib_cli_output (vm, "(nil)\n");
937       return 0;
938     }
939
940   vec_foreach_index (inst, cmt->cryptodev_inst)
941     vlib_cli_output (vm, "%-5u%U", inst, format_cryptodev_inst, inst);
942
943   return 0;
944 }
945
946 VLIB_CLI_COMMAND (show_cryptodev_assignment, static) = {
947     .path = "show cryptodev assignment",
948     .short_help = "show cryptodev assignment",
949     .function = cryptodev_show_assignment_fn,
950 };
951
952 static clib_error_t *
953 cryptodev_set_assignment_fn (vlib_main_t * vm, unformat_input_t * input,
954                              vlib_cli_command_t * cmd)
955 {
956   cryptodev_main_t *cmt = &cryptodev_main;
957   cryptodev_engine_thread_t *cet;
958   unformat_input_t _line_input, *line_input = &_line_input;
959   u32 thread_index, inst_index;
960   u32 thread_present = 0, inst_present = 0;
961   clib_error_t *error = 0;
962   int ret;
963
964   /* Get a line of input. */
965   if (!unformat_user (input, unformat_line_input, line_input))
966     return 0;
967
968   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
969     {
970       if (unformat (line_input, "thread %u", &thread_index))
971         thread_present = 1;
972       else if (unformat (line_input, "resource %u", &inst_index))
973         inst_present = 1;
974       else
975         {
976           error = clib_error_return (0, "unknown input `%U'",
977                                      format_unformat_error, line_input);
978           return error;
979         }
980     }
981
982   if (!thread_present || !inst_present)
983     {
984       error = clib_error_return (0, "mandatory argument(s) missing");
985       return error;
986     }
987
988   if (thread_index == 0 && vlib_num_workers () > 0)
989     {
990       error =
991         clib_error_return (0, "assign crypto resource for master thread");
992       return error;
993     }
994
995   if (thread_index > vec_len (cmt->per_thread_data) ||
996       inst_index > vec_len (cmt->cryptodev_inst))
997     {
998       error = clib_error_return (0, "wrong thread id or resource id");
999       return error;
1000     }
1001
1002   cet = cmt->per_thread_data + thread_index;
1003   ret = cryptodev_assign_resource (cet, inst_index,
1004                                    CRYPTODEV_RESOURCE_ASSIGN_UPDATE);
1005   if (ret)
1006     {
1007       error = clib_error_return (0, "cryptodev_assign_resource returned %i",
1008                                  ret);
1009       return error;
1010     }
1011
1012   return 0;
1013 }
1014
1015 VLIB_CLI_COMMAND (set_cryptodev_assignment, static) = {
1016     .path = "set cryptodev assignment",
1017     .short_help = "set cryptodev assignment thread <thread_index> "
1018         "resource <inst_index>",
1019     .function = cryptodev_set_assignment_fn,
1020 };
1021
1022 static int
1023 check_cryptodev_alg_support (u32 dev_id)
1024 {
1025   const struct rte_cryptodev_symmetric_capability *cap;
1026   struct rte_cryptodev_sym_capability_idx cap_idx;
1027
1028 #define _(a, b, c, d, e, f) \
1029   cap_idx.type = RTE_CRYPTO_SYM_XFORM_##b; \
1030   cap_idx.algo.aead = RTE_CRYPTO_##b##_##c; \
1031   cap = rte_cryptodev_sym_capability_get (dev_id, &cap_idx); \
1032   if (!cap) \
1033     return -RTE_CRYPTO_##b##_##c; \
1034   else \
1035     { \
1036       if (cap->aead.digest_size.min > e || cap->aead.digest_size.max < e) \
1037         return -RTE_CRYPTO_##b##_##c; \
1038       if (cap->aead.aad_size.min > f || cap->aead.aad_size.max < f) \
1039         return -RTE_CRYPTO_##b##_##c; \
1040       if (cap->aead.iv_size.min > d || cap->aead.iv_size.max < d) \
1041         return -RTE_CRYPTO_##b##_##c; \
1042     }
1043
1044   foreach_vnet_aead_crypto_conversion
1045 #undef _
1046
1047 #define _(a, b, c, d) \
1048   cap_idx.type = RTE_CRYPTO_SYM_XFORM_CIPHER; \
1049   cap_idx.algo.cipher = RTE_CRYPTO_CIPHER_##b; \
1050   cap = rte_cryptodev_sym_capability_get (dev_id, &cap_idx); \
1051   if (!cap) \
1052     return -RTE_CRYPTO_CIPHER_##b; \
1053   cap_idx.type = RTE_CRYPTO_SYM_XFORM_AUTH; \
1054   cap_idx.algo.auth = RTE_CRYPTO_AUTH_##c##_HMAC; \
1055   cap = rte_cryptodev_sym_capability_get (dev_id, &cap_idx); \
1056   if (!cap) \
1057     return -RTE_CRYPTO_AUTH_##c;
1058
1059   foreach_cryptodev_link_async_alg
1060 #undef _
1061     return 0;
1062 }
1063
1064 static u32
1065 cryptodev_count_queue (u32 numa)
1066 {
1067   struct rte_cryptodev_info info;
1068   u32 n_cryptodev = rte_cryptodev_count ();
1069   u32 i, q_count = 0;
1070
1071   for (i = 0; i < n_cryptodev; i++)
1072     {
1073       rte_cryptodev_info_get (i, &info);
1074       if (rte_cryptodev_socket_id (i) != numa)
1075         {
1076           clib_warning ("DPDK crypto resource %s is in different numa node "
1077               "as %u, ignored", info.device->name, numa);
1078           continue;
1079         }
1080       q_count += info.max_nb_queue_pairs;
1081     }
1082
1083   return q_count;
1084 }
1085
1086 static int
1087 cryptodev_configure (vlib_main_t *vm, uint32_t cryptodev_id)
1088 {
1089   struct rte_cryptodev_info info;
1090   struct rte_cryptodev *cdev;
1091   cryptodev_main_t *cmt = &cryptodev_main;
1092   cryptodev_numa_data_t *numa_data = vec_elt_at_index (cmt->per_numa_data,
1093                                                        vm->numa_node);
1094   u32 i;
1095   int ret;
1096
1097   cdev = rte_cryptodev_pmd_get_dev (cryptodev_id);
1098   rte_cryptodev_info_get (cryptodev_id, &info);
1099
1100   ret = check_cryptodev_alg_support (cryptodev_id);
1101   if (ret != 0)
1102     return ret;
1103
1104   /** If the device is already started, we reuse it, otherwise configure
1105    *  both the device and queue pair.
1106    **/
1107   if (!cdev->data->dev_started)
1108     {
1109       struct rte_cryptodev_config cfg;
1110
1111       cfg.socket_id = vm->numa_node;
1112       cfg.nb_queue_pairs = info.max_nb_queue_pairs;
1113
1114       rte_cryptodev_configure (cryptodev_id, &cfg);
1115
1116       for (i = 0; i < info.max_nb_queue_pairs; i++)
1117         {
1118           struct rte_cryptodev_qp_conf qp_cfg;
1119
1120           int ret;
1121
1122           qp_cfg.mp_session = numa_data->sess_pool;
1123           qp_cfg.mp_session_private = numa_data->sess_priv_pool;
1124           qp_cfg.nb_descriptors = CRYPTODEV_NB_CRYPTO_OPS;
1125
1126           ret = rte_cryptodev_queue_pair_setup (cryptodev_id, i, &qp_cfg,
1127                                                 vm->numa_node);
1128           if (ret)
1129             break;
1130         }
1131       if (i != info.max_nb_queue_pairs)
1132         return -1;
1133       /* start the device */
1134       rte_cryptodev_start (i);
1135     }
1136
1137   for (i = 0; i < info.max_nb_queue_pairs; i++)
1138     {
1139       cryptodev_inst_t *cdev_inst;
1140       vec_add2(cmt->cryptodev_inst, cdev_inst, 1);
1141       cdev_inst->desc = vec_new (char, strlen (info.device->name) + 10);
1142       cdev_inst->dev_id = cryptodev_id;
1143       cdev_inst->q_id = i;
1144
1145       snprintf (cdev_inst->desc, strlen (info.device->name) + 9,
1146                 "%s_q%u", info.device->name, i);
1147     }
1148
1149   return 0;
1150 }
1151
1152 static int
1153 cryptodev_create_device (vlib_main_t *vm, u32 n_queues)
1154 {
1155   char name[RTE_CRYPTODEV_NAME_MAX_LEN], args[128];
1156   u32 dev_id = 0;
1157   int ret;
1158
1159   /* find an unused name to create the device */
1160   while (dev_id < RTE_CRYPTO_MAX_DEVS)
1161     {
1162       snprintf (name, RTE_CRYPTODEV_NAME_MAX_LEN - 1, "%s%u",
1163                 RTE_STR (CRYPTODEV_DEF_DRIVE), dev_id);
1164       if (rte_cryptodev_get_dev_id (name) < 0)
1165         break;
1166       dev_id++;
1167     }
1168
1169   if (dev_id == RTE_CRYPTO_MAX_DEVS)
1170     return -1;
1171
1172   snprintf (args, 127, "socket_id=%u,max_nb_queue_pairs=%u",
1173             vm->numa_node, n_queues);
1174
1175   ret = rte_vdev_init(name, args);
1176   if (ret < 0)
1177     return ret;
1178
1179   clib_warning ("Created cryptodev device %s (%s)", name, args);
1180
1181   return 0;
1182 }
1183
1184 static int
1185 cryptodev_cmp (void *v1, void *v2)
1186 {
1187   cryptodev_inst_t *a1 = v1;
1188   cryptodev_inst_t *a2 = v2;
1189
1190   if (a1->q_id > a2->q_id)
1191     return 1;
1192   if (a1->q_id < a2->q_id)
1193     return -1;
1194   return 0;
1195 }
1196
1197 static int
1198 cryptodev_probe (vlib_main_t *vm, u32 n_workers)
1199 {
1200   cryptodev_main_t *cmt = &cryptodev_main;
1201   u32 n_queues = cryptodev_count_queue (vm->numa_node);
1202   u32 i;
1203   int ret;
1204
1205   /* create an AESNI_MB PMD so the service is available */
1206   if (n_queues < n_workers)
1207     {
1208       u32 q_num = max_pow2 (n_workers - n_queues);
1209       ret = cryptodev_create_device (vm, q_num);
1210       if (ret < 0)
1211         return ret;
1212     }
1213
1214   for (i = 0; i < rte_cryptodev_count (); i++)
1215     {
1216       ret = cryptodev_configure (vm, i);
1217       if (ret)
1218         return ret;
1219     }
1220
1221   vec_sort_with_function(cmt->cryptodev_inst, cryptodev_cmp);
1222
1223   return 0;
1224 }
1225
1226 static int
1227 cryptodev_get_session_sz (vlib_main_t *vm, uint32_t n_workers)
1228 {
1229   u32 sess_data_sz = 0, i;
1230   int ret;
1231
1232   if (rte_cryptodev_count () == 0)
1233     {
1234       clib_warning ("No cryptodev device available, creating...");
1235       ret = cryptodev_create_device (vm, max_pow2 (n_workers));
1236       if (ret < 0)
1237         {
1238           clib_warning ("Failed");
1239           return ret;
1240         }
1241     }
1242
1243   for (i = 0; i < rte_cryptodev_count (); i++)
1244     {
1245       u32 dev_sess_sz = rte_cryptodev_sym_get_private_session_size (i);
1246
1247       sess_data_sz = dev_sess_sz > sess_data_sz ? dev_sess_sz : sess_data_sz;
1248     }
1249
1250   return sess_data_sz;
1251 }
1252
1253 static void
1254 dpdk_disable_cryptodev_engine (vlib_main_t * vm)
1255 {
1256   cryptodev_main_t *cmt = &cryptodev_main;
1257   cryptodev_numa_data_t *numa_data;
1258
1259   vec_validate (cmt->per_numa_data, vm->numa_node);
1260   numa_data = vec_elt_at_index (cmt->per_numa_data, vm->numa_node);
1261
1262   if (numa_data->sess_pool)
1263     rte_mempool_free (numa_data->sess_pool);
1264   if (numa_data->sess_priv_pool)
1265     rte_mempool_free (numa_data->sess_priv_pool);
1266   if (numa_data->cop_pool)
1267     rte_mempool_free (numa_data->cop_pool);
1268 }
1269
1270 static void
1271 crypto_op_init (struct rte_mempool *mempool,
1272                 void *_arg __attribute__ ((unused)),
1273                 void *_obj, unsigned i __attribute__ ((unused)))
1274 {
1275   struct rte_crypto_op *op = _obj;
1276
1277   op->sess_type = RTE_CRYPTO_OP_WITH_SESSION;
1278   op->type = RTE_CRYPTO_OP_TYPE_SYMMETRIC;
1279   op->status = RTE_CRYPTO_OP_STATUS_NOT_PROCESSED;
1280   op->phys_addr = rte_mempool_virt2iova (_obj);
1281   op->mempool = mempool;
1282 }
1283
1284
1285 clib_error_t *
1286 dpdk_cryptodev_init (vlib_main_t * vm)
1287 {
1288   cryptodev_main_t *cmt = &cryptodev_main;
1289   vlib_thread_main_t *tm = vlib_get_thread_main ();
1290   cryptodev_engine_thread_t *ptd;
1291   cryptodev_numa_data_t *numa_data;
1292   struct rte_mempool *mp;
1293   u32 skip_master = vlib_num_workers () > 0;
1294   u32 n_workers = tm->n_vlib_mains - skip_master;
1295   u32 numa = vm->numa_node;
1296   i32 sess_sz;
1297   u64 n_cop_elts;
1298   u32 eidx;
1299   u32 i;
1300   u8 *name = 0;
1301   clib_error_t *error;
1302   struct rte_crypto_op_pool_private *priv;
1303
1304   cmt->iova_mode = rte_eal_iova_mode ();
1305
1306   sess_sz = cryptodev_get_session_sz(vm, n_workers);
1307   if (sess_sz < 0)
1308     {
1309       error = clib_error_return (0, "Not enough cryptodevs");
1310       return error;
1311     }
1312
1313   /* A total of 4 times n_worker threads * frame size as crypto ops */
1314   n_cop_elts = max_pow2 ((u64)n_workers * CRYPTODEV_NB_CRYPTO_OPS);
1315
1316   vec_validate (cmt->per_numa_data, vm->numa_node);
1317   numa_data = vec_elt_at_index (cmt->per_numa_data, numa);
1318
1319   /* create session pool for the numa node */
1320   name = format (0, "vcryptodev_sess_pool_%u%c", numa, 0);
1321   mp = rte_cryptodev_sym_session_pool_create ((char *) name,
1322                                               CRYPTODEV_NB_SESSION,
1323                                               0, 0, 0, numa);
1324   if (!mp)
1325     {
1326       error = clib_error_return (0, "Not enough memory for mp %s", name);
1327       goto err_handling;
1328     }
1329   vec_free (name);
1330
1331   numa_data->sess_pool = mp;
1332
1333   /* create session private pool for the numa node */
1334   name = format (0, "cryptodev_sess_pool_%u%c", numa, 0);
1335   mp = rte_mempool_create ((char *) name, CRYPTODEV_NB_SESSION, sess_sz, 0,
1336                            0, NULL, NULL, NULL, NULL, numa, 0);
1337   if (!mp)
1338     {
1339       error = clib_error_return (0, "Not enough memory for mp %s", name);
1340       vec_free (name);
1341       goto err_handling;
1342     }
1343
1344   vec_free (name);
1345
1346   numa_data->sess_priv_pool = mp;
1347
1348   /* create cryptodev op pool */
1349   name = format (0, "cryptodev_op_pool_%u%c", numa, 0);
1350
1351   mp = rte_mempool_create ((char *) name, n_cop_elts,
1352                            sizeof (cryptodev_op_t), VLIB_FRAME_SIZE * 2,
1353                            sizeof (struct rte_crypto_op_pool_private), NULL,
1354                            NULL, crypto_op_init, NULL, numa, 0);
1355   if (!mp)
1356     {
1357       error = clib_error_return (0, "Not enough memory for mp %s", name);
1358       vec_free (name);
1359       goto err_handling;
1360     }
1361
1362   priv = rte_mempool_get_priv (mp);
1363   priv->priv_size = sizeof (struct rte_crypto_op_pool_private);
1364   priv->type = RTE_CRYPTO_OP_TYPE_SYMMETRIC;
1365   vec_free (name);
1366   numa_data->cop_pool = mp;
1367
1368   /* probe all cryptodev devices and get queue info */
1369   if (cryptodev_probe (vm, n_workers) < 0)
1370     {
1371       error = clib_error_return (0, "Failed to configure cryptodev");
1372       goto err_handling;
1373     }
1374
1375   clib_bitmap_vec_validate (cmt->active_cdev_inst_mask, tm->n_vlib_mains);
1376   clib_spinlock_init (&cmt->tlock);
1377
1378   vec_validate_aligned(cmt->per_thread_data, tm->n_vlib_mains - 1,
1379                        CLIB_CACHE_LINE_BYTES);
1380   for (i = skip_master; i < tm->n_vlib_mains; i++)
1381     {
1382       ptd = cmt->per_thread_data + i;
1383       cryptodev_assign_resource (ptd, 0, CRYPTODEV_RESOURCE_ASSIGN_AUTO);
1384       name = format (0, "frames_ring_%u%c", i, 0);
1385       ptd->ring = rte_ring_create((char *) name, CRYPTODEV_NB_CRYPTO_OPS,
1386                                   vm->numa_node, RING_F_SP_ENQ|RING_F_SC_DEQ);
1387       if (!ptd->ring)
1388         {
1389           error = clib_error_return (0, "Not enough memory for mp %s", name);
1390           vec_free (name);
1391           goto err_handling;
1392         }
1393       vec_validate (ptd->cops, VNET_CRYPTO_FRAME_SIZE - 1);
1394       vec_free(name);
1395     }
1396
1397   /* register handler */
1398   eidx = vnet_crypto_register_engine (vm, "dpdk_cryptodev", 79,
1399                                       "DPDK Cryptodev Engine");
1400
1401 #define _(a, b, c, d, e, f) \
1402   vnet_crypto_register_async_handler \
1403     (vm, eidx, VNET_CRYPTO_OP_##a##_TAG##e##_AAD##f##_ENC, \
1404         cryptodev_enqueue_gcm_aad_##f##_enc,\
1405         cryptodev_frame_dequeue); \
1406   vnet_crypto_register_async_handler \
1407     (vm, eidx, VNET_CRYPTO_OP_##a##_TAG##e##_AAD##f##_DEC, \
1408         cryptodev_enqueue_gcm_aad_##f##_dec, \
1409         cryptodev_frame_dequeue);
1410
1411   foreach_vnet_aead_crypto_conversion
1412 #undef _
1413
1414 #define _(a, b, c, d) \
1415   vnet_crypto_register_async_handler \
1416     (vm, eidx, VNET_CRYPTO_OP_##a##_##c##_TAG##d##_ENC, \
1417         cryptodev_enqueue_linked_alg_enc, \
1418         cryptodev_frame_dequeue); \
1419   vnet_crypto_register_async_handler \
1420     (vm, eidx, VNET_CRYPTO_OP_##a##_##c##_TAG##d##_DEC, \
1421         cryptodev_enqueue_linked_alg_dec, \
1422         cryptodev_frame_dequeue);
1423
1424     foreach_cryptodev_link_async_alg
1425 #undef _
1426
1427   vnet_crypto_register_key_handler (vm, eidx, cryptodev_key_handler);
1428
1429   return 0;
1430
1431 err_handling:
1432   dpdk_disable_cryptodev_engine (vm);
1433
1434   return error;
1435 }
1436 /* *INDENT-On* */
1437
1438 /*
1439  * fd.io coding-style-patch-verification: ON
1440  *
1441  * Local Variables:
1442  * eval: (c-set-style "gnu")
1443  * End:
1444  */