DPDK  22.03.0
rte_cryptodev.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2020 Intel Corporation.
3  */
4 
5 #ifndef _RTE_CRYPTODEV_H_
6 #define _RTE_CRYPTODEV_H_
7 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 #include "rte_kvargs.h"
22 #include "rte_crypto.h"
23 #include <rte_common.h>
24 #include <rte_rcu_qsbr.h>
25 
26 #include "rte_cryptodev_trace_fp.h"
27 
28 extern const char **rte_cyptodev_names;
29 
30 /* Logging Macros */
31 
32 #define CDEV_LOG_ERR(...) \
33  RTE_LOG(ERR, CRYPTODEV, \
34  RTE_FMT("%s() line %u: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
35  __func__, __LINE__, RTE_FMT_TAIL(__VA_ARGS__,)))
36 
37 #define CDEV_LOG_INFO(...) \
38  RTE_LOG(INFO, CRYPTODEV, \
39  RTE_FMT(RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
40  RTE_FMT_TAIL(__VA_ARGS__,)))
41 
42 #define CDEV_LOG_DEBUG(...) \
43  RTE_LOG(DEBUG, CRYPTODEV, \
44  RTE_FMT("%s() line %u: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
45  __func__, __LINE__, RTE_FMT_TAIL(__VA_ARGS__,)))
46 
47 #define CDEV_PMD_TRACE(...) \
48  RTE_LOG(DEBUG, CRYPTODEV, \
49  RTE_FMT("[%s] %s: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
50  dev, __func__, RTE_FMT_TAIL(__VA_ARGS__,)))
51 
65 #define rte_crypto_op_ctod_offset(c, t, o) \
66  ((t)((char *)(c) + (o)))
67 
79 #define rte_crypto_op_ctophys_offset(c, o) \
80  (rte_iova_t)((c)->phys_addr + (o))
81 
86  uint16_t min;
87  uint16_t max;
88  uint16_t increment;
94 };
95 
101 #define RTE_CRYPTO_CIPHER_DATA_UNIT_LEN_512_BYTES RTE_BIT32(0)
102 #define RTE_CRYPTO_CIPHER_DATA_UNIT_LEN_4096_BYTES RTE_BIT32(1)
103 #define RTE_CRYPTO_CIPHER_DATA_UNIT_LEN_1_MEGABYTES RTE_BIT32(2)
104 
109  enum rte_crypto_sym_xform_type xform_type;
112  union {
113  struct {
116  uint16_t block_size;
118  struct rte_crypto_param_range key_size;
120  struct rte_crypto_param_range digest_size;
122  struct rte_crypto_param_range aad_size;
124  struct rte_crypto_param_range iv_size;
126  } auth;
128  struct {
131  uint16_t block_size;
133  struct rte_crypto_param_range key_size;
135  struct rte_crypto_param_range iv_size;
137  uint32_t dataunit_set;
143  } cipher;
145  struct {
148  uint16_t block_size;
150  struct rte_crypto_param_range key_size;
152  struct rte_crypto_param_range digest_size;
154  struct rte_crypto_param_range aad_size;
156  struct rte_crypto_param_range iv_size;
158  } aead;
159  };
160 };
161 
167  enum rte_crypto_asym_xform_type xform_type;
170  uint32_t op_types;
173  __extension__
174  union {
175  struct rte_crypto_param_range modlen;
179  };
180 };
181 
188 };
189 
190 
197  union {
202  };
203 };
204 
207  enum rte_crypto_sym_xform_type type;
208  union {
209  enum rte_crypto_cipher_algorithm cipher;
210  enum rte_crypto_auth_algorithm auth;
211  enum rte_crypto_aead_algorithm aead;
212  } algo;
213 };
214 
223 };
224 
236 rte_cryptodev_sym_capability_get(uint8_t dev_id,
237  const struct rte_cryptodev_sym_capability_idx *idx);
238 
249 __rte_experimental
251 rte_cryptodev_asym_capability_get(uint8_t dev_id,
252  const struct rte_cryptodev_asym_capability_idx *idx);
253 
266 int
268  const struct rte_cryptodev_symmetric_capability *capability,
269  uint16_t key_size, uint16_t iv_size);
270 
284 int
286  const struct rte_cryptodev_symmetric_capability *capability,
287  uint16_t key_size, uint16_t digest_size, uint16_t iv_size);
288 
303 int
305  const struct rte_cryptodev_symmetric_capability *capability,
306  uint16_t key_size, uint16_t digest_size, uint16_t aad_size,
307  uint16_t iv_size);
308 
319 __rte_experimental
320 int
322  const struct rte_cryptodev_asymmetric_xform_capability *capability,
323  enum rte_crypto_asym_op_type op_type);
324 
335 __rte_experimental
336 int
338  const struct rte_cryptodev_asymmetric_xform_capability *capability,
339  uint16_t modlen);
340 
352 int
354  const char *algo_string);
355 
367 int
369  const char *algo_string);
370 
382 int
384  const char *algo_string);
385 
397 __rte_experimental
398 int
400  const char *xform_string);
401 
402 
404 #define RTE_CRYPTODEV_END_OF_CAPABILITIES_LIST() \
405  { RTE_CRYPTO_OP_TYPE_UNDEFINED }
406 
407 
416 #define RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO (1ULL << 0)
417 
418 #define RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO (1ULL << 1)
419 
420 #define RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING (1ULL << 2)
421 
422 #define RTE_CRYPTODEV_FF_CPU_SSE (1ULL << 3)
423 
424 #define RTE_CRYPTODEV_FF_CPU_AVX (1ULL << 4)
425 
426 #define RTE_CRYPTODEV_FF_CPU_AVX2 (1ULL << 5)
427 
428 #define RTE_CRYPTODEV_FF_CPU_AESNI (1ULL << 6)
429 
430 #define RTE_CRYPTODEV_FF_HW_ACCELERATED (1ULL << 7)
431 
434 #define RTE_CRYPTODEV_FF_CPU_AVX512 (1ULL << 8)
435 
436 #define RTE_CRYPTODEV_FF_IN_PLACE_SGL (1ULL << 9)
437 
440 #define RTE_CRYPTODEV_FF_OOP_SGL_IN_SGL_OUT (1ULL << 10)
441 
444 #define RTE_CRYPTODEV_FF_OOP_SGL_IN_LB_OUT (1ULL << 11)
445 
449 #define RTE_CRYPTODEV_FF_OOP_LB_IN_SGL_OUT (1ULL << 12)
450 
453 #define RTE_CRYPTODEV_FF_OOP_LB_IN_LB_OUT (1ULL << 13)
454 
455 #define RTE_CRYPTODEV_FF_CPU_NEON (1ULL << 14)
456 
457 #define RTE_CRYPTODEV_FF_CPU_ARM_CE (1ULL << 15)
458 
459 #define RTE_CRYPTODEV_FF_SECURITY (1ULL << 16)
460 
461 #define RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_EXP (1ULL << 17)
462 
463 #define RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_QT (1ULL << 18)
464 
465 #define RTE_CRYPTODEV_FF_DIGEST_ENCRYPTED (1ULL << 19)
466 
467 #define RTE_CRYPTODEV_FF_ASYM_SESSIONLESS (1ULL << 20)
468 
469 #define RTE_CRYPTODEV_FF_SYM_CPU_CRYPTO (1ULL << 21)
470 
471 #define RTE_CRYPTODEV_FF_SYM_SESSIONLESS (1ULL << 22)
472 
473 #define RTE_CRYPTODEV_FF_NON_BYTE_ALIGNED_DATA (1ULL << 23)
474 
475 #define RTE_CRYPTODEV_FF_SYM_RAW_DP (1ULL << 24)
476 
477 #define RTE_CRYPTODEV_FF_CIPHER_MULTIPLE_DATA_UNITS (1ULL << 25)
478 
479 #define RTE_CRYPTODEV_FF_CIPHER_WRAPPED_KEY (1ULL << 26)
480 
481 #define RTE_CRYPTODEV_FF_SECURITY_INNER_CSUM (1ULL << 27)
482 
493 extern const char *
494 rte_cryptodev_get_feature_name(uint64_t flag);
495 
498  const char *driver_name;
499  uint8_t driver_id;
500  struct rte_device *device;
502  uint64_t feature_flags;
517  struct {
518  unsigned max_nb_sessions;
523  } sym;
524 };
525 
526 #define RTE_CRYPTODEV_DETACHED (0)
527 #define RTE_CRYPTODEV_ATTACHED (1)
528 
534 };
535 
538  uint32_t nb_descriptors;
543 };
544 
566 typedef uint16_t (*rte_cryptodev_callback_fn)(uint16_t dev_id, uint16_t qp_id,
567  struct rte_crypto_op **ops, uint16_t nb_ops, void *user_param);
568 
578 typedef void (*rte_cryptodev_cb_fn)(uint8_t dev_id,
579  enum rte_cryptodev_event_type event, void *cb_arg);
580 
581 
584  uint64_t enqueued_count;
586  uint64_t dequeued_count;
593 };
594 
595 #define RTE_CRYPTODEV_NAME_MAX_LEN (64)
596 
607 extern int
608 rte_cryptodev_get_dev_id(const char *name);
609 
620 extern const char *
621 rte_cryptodev_name_get(uint8_t dev_id);
622 
630 extern uint8_t
631 rte_cryptodev_count(void);
632 
641 extern uint8_t
642 rte_cryptodev_device_count_by_driver(uint8_t driver_id);
643 
655 uint8_t
656 rte_cryptodev_devices_get(const char *driver_name, uint8_t *devices,
657  uint8_t nb_devices);
658 /*
659  * Return the NUMA socket to which a device is connected
660  *
661  * @param dev_id
662  * The identifier of the device
663  * @return
664  * The NUMA socket id to which the device is connected or
665  * a default of zero if the socket could not be determined.
666  * -1 if returned is the dev_id value is out of range.
667  */
668 extern int
669 rte_cryptodev_socket_id(uint8_t dev_id);
670 
673  int socket_id;
674  uint16_t nb_queue_pairs;
676  uint64_t ff_disable;
683 };
684 
699 extern int
700 rte_cryptodev_configure(uint8_t dev_id, struct rte_cryptodev_config *config);
701 
717 extern int
718 rte_cryptodev_start(uint8_t dev_id);
719 
726 extern void
727 rte_cryptodev_stop(uint8_t dev_id);
728 
738 extern int
739 rte_cryptodev_close(uint8_t dev_id);
740 
762 extern int
763 rte_cryptodev_queue_pair_setup(uint8_t dev_id, uint16_t queue_pair_id,
764  const struct rte_cryptodev_qp_conf *qp_conf, int socket_id);
765 
779 __rte_experimental
780 int
781 rte_cryptodev_get_qp_status(uint8_t dev_id, uint16_t queue_pair_id);
782 
790 extern uint16_t
791 rte_cryptodev_queue_pair_count(uint8_t dev_id);
792 
793 
805 extern int
806 rte_cryptodev_stats_get(uint8_t dev_id, struct rte_cryptodev_stats *stats);
807 
813 extern void
814 rte_cryptodev_stats_reset(uint8_t dev_id);
815 
829 extern void
830 rte_cryptodev_info_get(uint8_t dev_id, struct rte_cryptodev_info *dev_info);
831 
832 
846 extern int
847 rte_cryptodev_callback_register(uint8_t dev_id,
848  enum rte_cryptodev_event_type event,
849  rte_cryptodev_cb_fn cb_fn, void *cb_arg);
850 
864 extern int
865 rte_cryptodev_callback_unregister(uint8_t dev_id,
866  enum rte_cryptodev_event_type event,
867  rte_cryptodev_cb_fn cb_fn, void *cb_arg);
868 
869 struct rte_cryptodev_callback;
870 
872 RTE_TAILQ_HEAD(rte_cryptodev_cb_list, rte_cryptodev_callback);
873 
883  void *arg;
885 };
886 
891 struct rte_cryptodev_cb_rcu {
892  struct rte_cryptodev_cb *next;
894  struct rte_rcu_qsbr *qsbr;
896 };
897 
898 void *
899 rte_cryptodev_get_sec_ctx(uint8_t dev_id);
900 
906  uint64_t opaque_data;
908  uint16_t nb_drivers;
910  uint16_t user_data_sz;
912  __extension__ struct {
913  void *data;
914  uint16_t refcnt;
915  } sess_data[0];
917 };
918 
945 __rte_experimental
946 struct rte_mempool *
947 rte_cryptodev_sym_session_pool_create(const char *name, uint32_t nb_elts,
948  uint32_t elt_size, uint32_t cache_size, uint16_t priv_size,
949  int socket_id);
950 
971 __rte_experimental
972 struct rte_mempool *
973 rte_cryptodev_asym_session_pool_create(const char *name, uint32_t nb_elts,
974  uint32_t cache_size, uint16_t user_data_size, int socket_id);
975 
987 
1005 __rte_experimental
1006 int
1007 rte_cryptodev_asym_session_create(uint8_t dev_id,
1008  struct rte_crypto_asym_xform *xforms, struct rte_mempool *mp,
1009  void **session);
1010 
1023 int
1025 
1037 __rte_experimental
1038 int
1039 rte_cryptodev_asym_session_free(uint8_t dev_id, void *sess);
1040 
1057 int
1058 rte_cryptodev_sym_session_init(uint8_t dev_id,
1059  struct rte_cryptodev_sym_session *sess,
1060  struct rte_crypto_sym_xform *xforms,
1061  struct rte_mempool *mempool);
1062 
1077 int
1078 rte_cryptodev_sym_session_clear(uint8_t dev_id,
1079  struct rte_cryptodev_sym_session *sess);
1080 
1088 unsigned int
1090 
1102 __rte_experimental
1103 unsigned int
1105  struct rte_cryptodev_sym_session *sess);
1106 
1113 __rte_experimental
1114 unsigned int
1116 
1128 unsigned int
1130 
1141 __rte_experimental
1142 unsigned int
1144 
1153 unsigned int
1154 rte_cryptodev_is_valid_dev(uint8_t dev_id);
1155 
1164 int rte_cryptodev_driver_id_get(const char *name);
1165 
1174 const char *rte_cryptodev_driver_name_get(uint8_t driver_id);
1175 
1188 __rte_experimental
1189 int
1191  struct rte_cryptodev_sym_session *sess,
1192  void *data,
1193  uint16_t size);
1194 
1205 __rte_experimental
1206 void *
1208  struct rte_cryptodev_sym_session *sess);
1209 
1223 __rte_experimental
1224 int
1225 rte_cryptodev_asym_session_set_user_data(void *sess, void *data, uint16_t size);
1226 
1237 __rte_experimental
1238 void *
1240 
1253 __rte_experimental
1254 uint32_t
1256  struct rte_cryptodev_sym_session *sess, union rte_crypto_sym_ofs ofs,
1257  struct rte_crypto_sym_vec *vec);
1258 
1268 __rte_experimental
1269 int
1270 rte_cryptodev_get_raw_dp_ctx_size(uint8_t dev_id);
1271 
1277  struct rte_cryptodev_sym_session *crypto_sess;
1278  struct rte_crypto_sym_xform *xform;
1279  struct rte_security_session *sec_sess;
1280 };
1281 
1308  void *qp, uint8_t *drv_ctx, struct rte_crypto_sym_vec *vec,
1309  union rte_crypto_sym_ofs ofs, void *user_data[], int *enqueue_status);
1310 
1333  void *qp, uint8_t *drv_ctx, struct rte_crypto_vec *data_vec,
1334  uint16_t n_data_vecs, union rte_crypto_sym_ofs ofs,
1335  struct rte_crypto_va_iova_ptr *iv,
1336  struct rte_crypto_va_iova_ptr *digest,
1337  struct rte_crypto_va_iova_ptr *aad_or_auth_iv,
1338  void *user_data);
1339 
1351 typedef int (*cryptodev_sym_raw_operation_done_t)(void *qp, uint8_t *drv_ctx,
1352  uint32_t n);
1353 
1363 typedef uint32_t (*rte_cryptodev_raw_get_dequeue_count_t)(void *user_data);
1364 
1373 typedef void (*rte_cryptodev_raw_post_dequeue_t)(void *user_data,
1374  uint32_t index, uint8_t is_op_success);
1375 
1417 typedef uint32_t (*cryptodev_sym_raw_dequeue_burst_t)(void *qp,
1418  uint8_t *drv_ctx,
1419  rte_cryptodev_raw_get_dequeue_count_t get_dequeue_count,
1420  uint32_t max_nb_to_dequeue,
1421  rte_cryptodev_raw_post_dequeue_t post_dequeue,
1422  void **out_user_data, uint8_t is_user_data_array,
1423  uint32_t *n_success, int *dequeue_status);
1424 
1448 typedef void * (*cryptodev_sym_raw_dequeue_t)(
1449  void *qp, uint8_t *drv_ctx, int *dequeue_status,
1450  enum rte_crypto_op_status *op_status);
1451 
1458  void *qp_data;
1459 
1461  cryptodev_sym_raw_enqueue_burst_t enqueue_burst;
1464  cryptodev_sym_raw_dequeue_burst_t dequeue_burst;
1466 
1467  /* Driver specific context data */
1468  __extension__ uint8_t drv_ctx_data[];
1469 };
1470 
1494 __rte_experimental
1495 int
1496 rte_cryptodev_configure_raw_dp_ctx(uint8_t dev_id, uint16_t qp_id,
1497  struct rte_crypto_raw_dp_ctx *ctx,
1498  enum rte_crypto_op_sess_type sess_type,
1499  union rte_cryptodev_session_ctx session_ctx,
1500  uint8_t is_update);
1501 
1526 __rte_experimental
1527 uint32_t
1529  struct rte_crypto_sym_vec *vec, union rte_crypto_sym_ofs ofs,
1530  void **user_data, int *enqueue_status);
1531 
1552 __rte_experimental
1553 static __rte_always_inline int
1555  struct rte_crypto_vec *data_vec, uint16_t n_data_vecs,
1556  union rte_crypto_sym_ofs ofs,
1557  struct rte_crypto_va_iova_ptr *iv,
1558  struct rte_crypto_va_iova_ptr *digest,
1559  struct rte_crypto_va_iova_ptr *aad_or_auth_iv,
1560  void *user_data)
1561 {
1562  return (*ctx->enqueue)(ctx->qp_data, ctx->drv_ctx_data, data_vec,
1563  n_data_vecs, ofs, iv, digest, aad_or_auth_iv, user_data);
1564 }
1565 
1576 __rte_experimental
1577 int
1579  uint32_t n);
1580 
1622 __rte_experimental
1623 uint32_t
1625  rte_cryptodev_raw_get_dequeue_count_t get_dequeue_count,
1626  uint32_t max_nb_to_dequeue,
1627  rte_cryptodev_raw_post_dequeue_t post_dequeue,
1628  void **out_user_data, uint8_t is_user_data_array,
1629  uint32_t *n_success, int *dequeue_status);
1630 
1654 __rte_experimental
1655 static __rte_always_inline void *
1657  int *dequeue_status, enum rte_crypto_op_status *op_status)
1658 {
1659  return (*ctx->dequeue)(ctx->qp_data, ctx->drv_ctx_data, dequeue_status,
1660  op_status);
1661 }
1662 
1672 __rte_experimental
1673 int
1675  uint32_t n);
1676 
1713 __rte_experimental
1714 struct rte_cryptodev_cb *
1715 rte_cryptodev_add_enq_callback(uint8_t dev_id,
1716  uint16_t qp_id,
1718  void *cb_arg);
1719 
1742 __rte_experimental
1743 int rte_cryptodev_remove_enq_callback(uint8_t dev_id,
1744  uint16_t qp_id,
1745  struct rte_cryptodev_cb *cb);
1746 
1782 __rte_experimental
1783 struct rte_cryptodev_cb *
1784 rte_cryptodev_add_deq_callback(uint8_t dev_id,
1785  uint16_t qp_id,
1787  void *cb_arg);
1788 
1810 __rte_experimental
1811 int rte_cryptodev_remove_deq_callback(uint8_t dev_id,
1812  uint16_t qp_id,
1813  struct rte_cryptodev_cb *cb);
1814 
1815 #include <rte_cryptodev_core.h>
1852 static inline uint16_t
1853 rte_cryptodev_dequeue_burst(uint8_t dev_id, uint16_t qp_id,
1854  struct rte_crypto_op **ops, uint16_t nb_ops)
1855 {
1856  const struct rte_crypto_fp_ops *fp_ops;
1857  void *qp;
1858 
1859  rte_cryptodev_trace_dequeue_burst(dev_id, qp_id, (void **)ops, nb_ops);
1860 
1861  fp_ops = &rte_crypto_fp_ops[dev_id];
1862  qp = fp_ops->qp.data[qp_id];
1863 
1864  nb_ops = fp_ops->dequeue_burst(qp, ops, nb_ops);
1865 
1866 #ifdef RTE_CRYPTO_CALLBACKS
1867  if (unlikely(fp_ops->qp.deq_cb != NULL)) {
1868  struct rte_cryptodev_cb_rcu *list;
1869  struct rte_cryptodev_cb *cb;
1870 
1871  /* __ATOMIC_RELEASE memory order was used when the
1872  * call back was inserted into the list.
1873  * Since there is a clear dependency between loading
1874  * cb and cb->fn/cb->next, __ATOMIC_ACQUIRE memory order is
1875  * not required.
1876  */
1877  list = &fp_ops->qp.deq_cb[qp_id];
1878  rte_rcu_qsbr_thread_online(list->qsbr, 0);
1879  cb = __atomic_load_n(&list->next, __ATOMIC_RELAXED);
1880 
1881  while (cb != NULL) {
1882  nb_ops = cb->fn(dev_id, qp_id, ops, nb_ops,
1883  cb->arg);
1884  cb = cb->next;
1885  };
1886 
1887  rte_rcu_qsbr_thread_offline(list->qsbr, 0);
1888  }
1889 #endif
1890  return nb_ops;
1891 }
1892 
1924 static inline uint16_t
1925 rte_cryptodev_enqueue_burst(uint8_t dev_id, uint16_t qp_id,
1926  struct rte_crypto_op **ops, uint16_t nb_ops)
1927 {
1928  const struct rte_crypto_fp_ops *fp_ops;
1929  void *qp;
1930 
1931  fp_ops = &rte_crypto_fp_ops[dev_id];
1932  qp = fp_ops->qp.data[qp_id];
1933 #ifdef RTE_CRYPTO_CALLBACKS
1934  if (unlikely(fp_ops->qp.enq_cb != NULL)) {
1935  struct rte_cryptodev_cb_rcu *list;
1936  struct rte_cryptodev_cb *cb;
1937 
1938  /* __ATOMIC_RELEASE memory order was used when the
1939  * call back was inserted into the list.
1940  * Since there is a clear dependency between loading
1941  * cb and cb->fn/cb->next, __ATOMIC_ACQUIRE memory order is
1942  * not required.
1943  */
1944  list = &fp_ops->qp.enq_cb[qp_id];
1945  rte_rcu_qsbr_thread_online(list->qsbr, 0);
1946  cb = __atomic_load_n(&list->next, __ATOMIC_RELAXED);
1947 
1948  while (cb != NULL) {
1949  nb_ops = cb->fn(dev_id, qp_id, ops, nb_ops,
1950  cb->arg);
1951  cb = cb->next;
1952  };
1953 
1954  rte_rcu_qsbr_thread_offline(list->qsbr, 0);
1955  }
1956 #endif
1957 
1958  rte_cryptodev_trace_enqueue_burst(dev_id, qp_id, (void **)ops, nb_ops);
1959  return fp_ops->enqueue_burst(qp, ops, nb_ops);
1960 }
1961 
1962 
1963 
1964 #ifdef __cplusplus
1965 }
1966 #endif
1967 
1968 #endif /* _RTE_CRYPTODEV_H_ */
int rte_cryptodev_get_cipher_algo_enum(enum rte_crypto_cipher_algorithm *algo_enum, const char *algo_string)
int rte_cryptodev_get_auth_algo_enum(enum rte_crypto_auth_algorithm *algo_enum, const char *algo_string)
__rte_experimental int rte_cryptodev_asym_session_free(uint8_t dev_id, void *sess)
#define __rte_always_inline
Definition: rte_common.h:228
struct rte_cryptodev_cb * next
struct rte_mempool * mp_session
void rte_cryptodev_info_get(uint8_t dev_id, struct rte_cryptodev_info *dev_info)
__rte_experimental unsigned int rte_cryptodev_sym_get_existing_header_session_size(struct rte_cryptodev_sym_session *sess)
static __rte_experimental __rte_always_inline int rte_cryptodev_raw_enqueue(struct rte_crypto_raw_dp_ctx *ctx, struct rte_crypto_vec *data_vec, uint16_t n_data_vecs, union rte_crypto_sym_ofs ofs, struct rte_crypto_va_iova_ptr *iv, struct rte_crypto_va_iova_ptr *digest, struct rte_crypto_va_iova_ptr *aad_or_auth_iv, void *user_data)
const char * rte_cryptodev_get_feature_name(uint64_t flag)
__rte_experimental unsigned int rte_cryptodev_asym_get_private_session_size(uint8_t dev_id)
int rte_cryptodev_queue_pair_setup(uint8_t dev_id, uint16_t queue_pair_id, const struct rte_cryptodev_qp_conf *qp_conf, int socket_id)
__rte_experimental struct rte_mempool * rte_cryptodev_asym_session_pool_create(const char *name, uint32_t nb_elts, uint32_t cache_size, uint16_t user_data_size, int socket_id)
uint8_t rte_cryptodev_devices_get(const char *driver_name, uint8_t *devices, uint8_t nb_devices)
rte_crypto_asym_xform_type
static uint16_t rte_cryptodev_dequeue_burst(uint8_t dev_id, uint16_t qp_id, struct rte_crypto_op **ops, uint16_t nb_ops)
int rte_cryptodev_driver_id_get(const char *name)
int rte_cryptodev_sym_session_clear(uint8_t dev_id, struct rte_cryptodev_sym_session *sess)
__rte_experimental int rte_cryptodev_asym_session_set_user_data(void *sess, void *data, uint16_t size)
__rte_experimental int rte_cryptodev_asym_get_xform_enum(enum rte_crypto_asym_xform_type *xform_enum, const char *xform_string)
int rte_cryptodev_sym_session_init(uint8_t dev_id, struct rte_cryptodev_sym_session *sess, struct rte_crypto_sym_xform *xforms, struct rte_mempool *mempool)
__rte_experimental uint32_t rte_cryptodev_raw_enqueue_burst(struct rte_crypto_raw_dp_ctx *ctx, struct rte_crypto_sym_vec *vec, union rte_crypto_sym_ofs ofs, void **user_data, int *enqueue_status)
uint64_t dequeue_err_count
int rte_cryptodev_get_aead_algo_enum(enum rte_crypto_aead_algorithm *algo_enum, const char *algo_string)
uint32_t cache_size
Definition: rte_mempool.h:220
static __rte_always_inline void rte_rcu_qsbr_thread_offline(struct rte_rcu_qsbr *v, unsigned int thread_id)
Definition: rte_rcu_qsbr.h:352
char name[RTE_MEMPOOL_NAMESIZE]
Definition: rte_mempool.h:209
const struct rte_cryptodev_symmetric_capability * rte_cryptodev_sym_capability_get(uint8_t dev_id, const struct rte_cryptodev_sym_capability_idx *idx)
int rte_cryptodev_configure(uint8_t dev_id, struct rte_cryptodev_config *config)
int rte_cryptodev_callback_unregister(uint8_t dev_id, enum rte_cryptodev_event_type event, rte_cryptodev_cb_fn cb_fn, void *cb_arg)
const struct rte_cryptodev_capabilities * capabilities
uint32_t(* rte_cryptodev_raw_get_dequeue_count_t)(void *user_data)
rte_crypto_asym_op_type
__rte_experimental struct rte_cryptodev_cb * rte_cryptodev_add_enq_callback(uint8_t dev_id, uint16_t qp_id, rte_cryptodev_callback_fn cb_fn, void *cb_arg)
void rte_cryptodev_stop(uint8_t dev_id)
const char * driver_name
int rte_cryptodev_close(uint8_t dev_id)
int(* cryptodev_sym_raw_operation_done_t)(void *qp, uint8_t *drv_ctx, uint32_t n)
void(* rte_cryptodev_cb_fn)(uint8_t dev_id, enum rte_cryptodev_event_type event, void *cb_arg)
__rte_experimental int rte_cryptodev_sym_session_set_user_data(struct rte_cryptodev_sym_session *sess, void *data, uint16_t size)
int rte_cryptodev_sym_capability_check_aead(const struct rte_cryptodev_symmetric_capability *capability, uint16_t key_size, uint16_t digest_size, uint16_t aad_size, uint16_t iv_size)
#define unlikely(x)
__rte_experimental uint32_t rte_cryptodev_raw_dequeue_burst(struct rte_crypto_raw_dp_ctx *ctx, rte_cryptodev_raw_get_dequeue_count_t get_dequeue_count, uint32_t max_nb_to_dequeue, rte_cryptodev_raw_post_dequeue_t post_dequeue, void **out_user_data, uint8_t is_user_data_array, uint32_t *n_success, int *dequeue_status)
unsigned int rte_cryptodev_sym_get_header_session_size(void)
const char * rte_cryptodev_driver_name_get(uint8_t driver_id)
int rte_cryptodev_callback_register(uint8_t dev_id, enum rte_cryptodev_event_type event, rte_cryptodev_cb_fn cb_fn, void *cb_arg)
__rte_experimental int rte_cryptodev_asym_session_create(uint8_t dev_id, struct rte_crypto_asym_xform *xforms, struct rte_mempool *mp, void **session)
uint16_t min_mbuf_tailroom_req
__rte_experimental int rte_cryptodev_raw_dequeue_done(struct rte_crypto_raw_dp_ctx *ctx, uint32_t n)
__rte_experimental int rte_cryptodev_get_raw_dp_ctx_size(uint8_t dev_id)
struct rte_cryptodev_sym_session * rte_cryptodev_sym_session_create(struct rte_mempool *mempool)
int rte_cryptodev_sym_session_free(struct rte_cryptodev_sym_session *sess)
const char * rte_cryptodev_name_get(uint8_t dev_id)
__rte_experimental void * rte_cryptodev_sym_session_get_user_data(struct rte_cryptodev_sym_session *sess)
rte_crypto_op_type
Definition: rte_crypto.h:29
__rte_experimental const struct rte_cryptodev_asymmetric_xform_capability * rte_cryptodev_asym_capability_get(uint8_t dev_id, const struct rte_cryptodev_asym_capability_idx *idx)
rte_cryptodev_callback_fn fn
static uint16_t rte_cryptodev_enqueue_burst(uint8_t dev_id, uint16_t qp_id, struct rte_crypto_op **ops, uint16_t nb_ops)
int rte_cryptodev_sym_capability_check_cipher(const struct rte_cryptodev_symmetric_capability *capability, uint16_t key_size, uint16_t iv_size)
uint16_t(* rte_cryptodev_callback_fn)(uint16_t dev_id, uint16_t qp_id, struct rte_crypto_op **ops, uint16_t nb_ops, void *user_param)
int rte_cryptodev_stats_get(uint8_t dev_id, struct rte_cryptodev_stats *stats)
__rte_experimental int rte_cryptodev_raw_enqueue_done(struct rte_crypto_raw_dp_ctx *ctx, uint32_t n)
struct rte_device * device
uint32_t elt_size
Definition: rte_mempool.h:223
__rte_experimental int rte_cryptodev_remove_enq_callback(uint8_t dev_id, uint16_t qp_id, struct rte_cryptodev_cb *cb)
uint8_t rte_cryptodev_count(void)
void *(* cryptodev_sym_raw_dequeue_t)(void *qp, uint8_t *drv_ctx, int *dequeue_status, enum rte_crypto_op_status *op_status)
int rte_cryptodev_sym_capability_check_auth(const struct rte_cryptodev_symmetric_capability *capability, uint16_t key_size, uint16_t digest_size, uint16_t iv_size)
uint16_t min_mbuf_headroom_req
__rte_experimental unsigned int rte_cryptodev_asym_get_header_session_size(void)
unsigned int rte_cryptodev_sym_get_private_session_size(uint8_t dev_id)
__rte_experimental void * rte_cryptodev_asym_session_get_user_data(void *sess)
__rte_experimental struct rte_mempool * rte_cryptodev_sym_session_pool_create(const char *name, uint32_t nb_elts, uint32_t elt_size, uint32_t cache_size, uint16_t priv_size, int socket_id)
static __rte_always_inline void rte_rcu_qsbr_thread_online(struct rte_rcu_qsbr *v, unsigned int thread_id)
Definition: rte_rcu_qsbr.h:299
uint32_t(* cryptodev_sym_raw_enqueue_burst_t)(void *qp, uint8_t *drv_ctx, struct rte_crypto_sym_vec *vec, union rte_crypto_sym_ofs ofs, void *user_data[], int *enqueue_status)
#define RTE_STD_C11
Definition: rte_common.h:42
rte_crypto_auth_algorithm
__rte_experimental int rte_cryptodev_asym_xform_capability_check_modlen(const struct rte_cryptodev_asymmetric_xform_capability *capability, uint16_t modlen)
rte_crypto_sym_xform_type
__rte_experimental uint32_t rte_cryptodev_sym_cpu_crypto_process(uint8_t dev_id, struct rte_cryptodev_sym_session *sess, union rte_crypto_sym_ofs ofs, struct rte_crypto_sym_vec *vec)
struct rte_mempool * mp_session_private
RTE_TAILQ_HEAD(rte_cryptodev_cb_list, rte_cryptodev_callback)
int rte_cryptodev_start(uint8_t dev_id)
__rte_experimental int rte_cryptodev_configure_raw_dp_ctx(uint8_t dev_id, uint16_t qp_id, struct rte_crypto_raw_dp_ctx *ctx, enum rte_crypto_op_sess_type sess_type, union rte_cryptodev_session_ctx session_ctx, uint8_t is_update)
uint64_t enqueue_err_count
uint32_t(* cryptodev_sym_raw_dequeue_burst_t)(void *qp, uint8_t *drv_ctx, rte_cryptodev_raw_get_dequeue_count_t get_dequeue_count, uint32_t max_nb_to_dequeue, rte_cryptodev_raw_post_dequeue_t post_dequeue, void **out_user_data, uint8_t is_user_data_array, uint32_t *n_success, int *dequeue_status)
rte_crypto_op_sess_type
Definition: rte_crypto.h:62
struct rte_crypto_param_range modlen
uint16_t rte_cryptodev_queue_pair_count(uint8_t dev_id)
__rte_experimental int rte_cryptodev_asym_xform_capability_check_optype(const struct rte_cryptodev_asymmetric_xform_capability *capability, enum rte_crypto_asym_op_type op_type)
int(* cryptodev_sym_raw_enqueue_t)(void *qp, uint8_t *drv_ctx, struct rte_crypto_vec *data_vec, uint16_t n_data_vecs, union rte_crypto_sym_ofs ofs, struct rte_crypto_va_iova_ptr *iv, struct rte_crypto_va_iova_ptr *digest, struct rte_crypto_va_iova_ptr *aad_or_auth_iv, void *user_data)
__rte_experimental int rte_cryptodev_get_qp_status(uint8_t dev_id, uint16_t queue_pair_id)
unsigned max_nb_sessions
rte_cryptodev_event_type
__rte_experimental int rte_cryptodev_remove_deq_callback(uint8_t dev_id, uint16_t qp_id, struct rte_cryptodev_cb *cb)
static __rte_experimental __rte_always_inline void * rte_cryptodev_raw_dequeue(struct rte_crypto_raw_dp_ctx *ctx, int *dequeue_status, enum rte_crypto_op_status *op_status)
void rte_cryptodev_stats_reset(uint8_t dev_id)
int rte_cryptodev_get_dev_id(const char *name)
unsigned max_nb_queue_pairs
uint8_t rte_cryptodev_device_count_by_driver(uint8_t driver_id)
__rte_experimental struct rte_cryptodev_cb * rte_cryptodev_add_deq_callback(uint8_t dev_id, uint16_t qp_id, rte_cryptodev_callback_fn cb_fn, void *cb_arg)
unsigned int rte_cryptodev_is_valid_dev(uint8_t dev_id)
void(* rte_cryptodev_raw_post_dequeue_t)(void *user_data, uint32_t index, uint8_t is_op_success)
rte_crypto_op_status
Definition: rte_crypto.h:39
rte_crypto_aead_algorithm
rte_crypto_cipher_algorithm