cryptodev: check if symmetric sessions are supported
[dpdk.git] / lib / librte_cryptodev / rte_cryptodev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2017 Intel Corporation.
3  */
4
5 #ifndef _RTE_CRYPTODEV_H_
6 #define _RTE_CRYPTODEV_H_
7
8 /**
9  * @file rte_cryptodev.h
10  *
11  * RTE Cryptographic Device APIs
12  *
13  * Defines RTE Crypto Device APIs for the provisioning of cipher and
14  * authentication operations.
15  */
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 #include "rte_kvargs.h"
22 #include "rte_crypto.h"
23 #include "rte_dev.h"
24 #include <rte_common.h>
25 #include <rte_config.h>
26
27 extern const char **rte_cyptodev_names;
28
29 /* Logging Macros */
30
31 #define CDEV_LOG_ERR(...) \
32         RTE_LOG(ERR, CRYPTODEV, \
33                 RTE_FMT("%s() line %u: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
34                         __func__, __LINE__, RTE_FMT_TAIL(__VA_ARGS__,)))
35
36 #define CDEV_LOG_INFO(...) \
37         RTE_LOG(INFO, CRYPTODEV, \
38                 RTE_FMT(RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
39                         RTE_FMT_TAIL(__VA_ARGS__,)))
40
41 #define CDEV_LOG_DEBUG(...) \
42         RTE_LOG(DEBUG, CRYPTODEV, \
43                 RTE_FMT("%s() line %u: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
44                         __func__, __LINE__, RTE_FMT_TAIL(__VA_ARGS__,)))
45
46 #define CDEV_PMD_TRACE(...) \
47         RTE_LOG(DEBUG, CRYPTODEV, \
48                 RTE_FMT("[%s] %s: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
49                         dev, __func__, RTE_FMT_TAIL(__VA_ARGS__,)))
50
51 /**
52  * A macro that points to an offset from the start
53  * of the crypto operation structure (rte_crypto_op)
54  *
55  * The returned pointer is cast to type t.
56  *
57  * @param c
58  *   The crypto operation.
59  * @param o
60  *   The offset from the start of the crypto operation.
61  * @param t
62  *   The type to cast the result into.
63  */
64 #define rte_crypto_op_ctod_offset(c, t, o)      \
65         ((t)((char *)(c) + (o)))
66
67 /**
68  * A macro that returns the physical address that points
69  * to an offset from the start of the crypto operation
70  * (rte_crypto_op)
71  *
72  * @param c
73  *   The crypto operation.
74  * @param o
75  *   The offset from the start of the crypto operation
76  *   to calculate address from.
77  */
78 #define rte_crypto_op_ctophys_offset(c, o)      \
79         (rte_iova_t)((c)->phys_addr + (o))
80
81 /**
82  * Crypto parameters range description
83  */
84 struct rte_crypto_param_range {
85         uint16_t min;   /**< minimum size */
86         uint16_t max;   /**< maximum size */
87         uint16_t increment;
88         /**< if a range of sizes are supported,
89          * this parameter is used to indicate
90          * increments in byte size that are supported
91          * between the minimum and maximum
92          */
93 };
94
95 /**
96  * Symmetric Crypto Capability
97  */
98 struct rte_cryptodev_symmetric_capability {
99         enum rte_crypto_sym_xform_type xform_type;
100         /**< Transform type : Authentication / Cipher / AEAD */
101         RTE_STD_C11
102         union {
103                 struct {
104                         enum rte_crypto_auth_algorithm algo;
105                         /**< authentication algorithm */
106                         uint16_t block_size;
107                         /**< algorithm block size */
108                         struct rte_crypto_param_range key_size;
109                         /**< auth key size range */
110                         struct rte_crypto_param_range digest_size;
111                         /**< digest size range */
112                         struct rte_crypto_param_range aad_size;
113                         /**< Additional authentication data size range */
114                         struct rte_crypto_param_range iv_size;
115                         /**< Initialisation vector data size range */
116                 } auth;
117                 /**< Symmetric Authentication transform capabilities */
118                 struct {
119                         enum rte_crypto_cipher_algorithm algo;
120                         /**< cipher algorithm */
121                         uint16_t block_size;
122                         /**< algorithm block size */
123                         struct rte_crypto_param_range key_size;
124                         /**< cipher key size range */
125                         struct rte_crypto_param_range iv_size;
126                         /**< Initialisation vector data size range */
127                 } cipher;
128                 /**< Symmetric Cipher transform capabilities */
129                 struct {
130                         enum rte_crypto_aead_algorithm algo;
131                         /**< AEAD algorithm */
132                         uint16_t block_size;
133                         /**< algorithm block size */
134                         struct rte_crypto_param_range key_size;
135                         /**< AEAD key size range */
136                         struct rte_crypto_param_range digest_size;
137                         /**< digest size range */
138                         struct rte_crypto_param_range aad_size;
139                         /**< Additional authentication data size range */
140                         struct rte_crypto_param_range iv_size;
141                         /**< Initialisation vector data size range */
142                 } aead;
143         };
144 };
145
146 /** Structure used to capture a capability of a crypto device */
147 struct rte_cryptodev_capabilities {
148         enum rte_crypto_op_type op;
149         /**< Operation type */
150
151         RTE_STD_C11
152         union {
153                 struct rte_cryptodev_symmetric_capability sym;
154                 /**< Symmetric operation capability parameters */
155         };
156 };
157
158 /** Structure used to describe crypto algorithms */
159 struct rte_cryptodev_sym_capability_idx {
160         enum rte_crypto_sym_xform_type type;
161         union {
162                 enum rte_crypto_cipher_algorithm cipher;
163                 enum rte_crypto_auth_algorithm auth;
164                 enum rte_crypto_aead_algorithm aead;
165         } algo;
166 };
167
168 /**
169  *  Provide capabilities available for defined device and algorithm
170  *
171  * @param       dev_id          The identifier of the device.
172  * @param       idx             Description of crypto algorithms.
173  *
174  * @return
175  *   - Return description of the symmetric crypto capability if exist.
176  *   - Return NULL if the capability not exist.
177  */
178 const struct rte_cryptodev_symmetric_capability *
179 rte_cryptodev_sym_capability_get(uint8_t dev_id,
180                 const struct rte_cryptodev_sym_capability_idx *idx);
181
182 /**
183  * Check if key size and initial vector are supported
184  * in crypto cipher capability
185  *
186  * @param       capability      Description of the symmetric crypto capability.
187  * @param       key_size        Cipher key size.
188  * @param       iv_size         Cipher initial vector size.
189  *
190  * @return
191  *   - Return 0 if the parameters are in range of the capability.
192  *   - Return -1 if the parameters are out of range of the capability.
193  */
194 int
195 rte_cryptodev_sym_capability_check_cipher(
196                 const struct rte_cryptodev_symmetric_capability *capability,
197                 uint16_t key_size, uint16_t iv_size);
198
199 /**
200  * Check if key size and initial vector are supported
201  * in crypto auth capability
202  *
203  * @param       capability      Description of the symmetric crypto capability.
204  * @param       key_size        Auth key size.
205  * @param       digest_size     Auth digest size.
206  * @param       iv_size         Auth initial vector size.
207  *
208  * @return
209  *   - Return 0 if the parameters are in range of the capability.
210  *   - Return -1 if the parameters are out of range of the capability.
211  */
212 int
213 rte_cryptodev_sym_capability_check_auth(
214                 const struct rte_cryptodev_symmetric_capability *capability,
215                 uint16_t key_size, uint16_t digest_size, uint16_t iv_size);
216
217 /**
218  * Check if key, digest, AAD and initial vector sizes are supported
219  * in crypto AEAD capability
220  *
221  * @param       capability      Description of the symmetric crypto capability.
222  * @param       key_size        AEAD key size.
223  * @param       digest_size     AEAD digest size.
224  * @param       aad_size        AEAD AAD size.
225  * @param       iv_size         AEAD IV size.
226  *
227  * @return
228  *   - Return 0 if the parameters are in range of the capability.
229  *   - Return -1 if the parameters are out of range of the capability.
230  */
231 int
232 rte_cryptodev_sym_capability_check_aead(
233                 const struct rte_cryptodev_symmetric_capability *capability,
234                 uint16_t key_size, uint16_t digest_size, uint16_t aad_size,
235                 uint16_t iv_size);
236
237 /**
238  * Provide the cipher algorithm enum, given an algorithm string
239  *
240  * @param       algo_enum       A pointer to the cipher algorithm
241  *                              enum to be filled
242  * @param       algo_string     Authentication algo string
243  *
244  * @return
245  * - Return -1 if string is not valid
246  * - Return 0 is the string is valid
247  */
248 int
249 rte_cryptodev_get_cipher_algo_enum(enum rte_crypto_cipher_algorithm *algo_enum,
250                 const char *algo_string);
251
252 /**
253  * Provide the authentication algorithm enum, given an algorithm string
254  *
255  * @param       algo_enum       A pointer to the authentication algorithm
256  *                              enum to be filled
257  * @param       algo_string     Authentication algo string
258  *
259  * @return
260  * - Return -1 if string is not valid
261  * - Return 0 is the string is valid
262  */
263 int
264 rte_cryptodev_get_auth_algo_enum(enum rte_crypto_auth_algorithm *algo_enum,
265                 const char *algo_string);
266
267 /**
268  * Provide the AEAD algorithm enum, given an algorithm string
269  *
270  * @param       algo_enum       A pointer to the AEAD algorithm
271  *                              enum to be filled
272  * @param       algo_string     AEAD algorithm string
273  *
274  * @return
275  * - Return -1 if string is not valid
276  * - Return 0 is the string is valid
277  */
278 int
279 rte_cryptodev_get_aead_algo_enum(enum rte_crypto_aead_algorithm *algo_enum,
280                 const char *algo_string);
281
282 /** Macro used at end of crypto PMD list */
283 #define RTE_CRYPTODEV_END_OF_CAPABILITIES_LIST() \
284         { RTE_CRYPTO_OP_TYPE_UNDEFINED }
285
286
287 /**
288  * Crypto device supported feature flags
289  *
290  * Note:
291  * New features flags should be added to the end of the list
292  *
293  * Keep these flags synchronised with rte_cryptodev_get_feature_name()
294  */
295 #define RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO               (1ULL << 0)
296 /**< Symmetric crypto operations are supported */
297 #define RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO              (1ULL << 1)
298 /**< Asymmetric crypto operations are supported */
299 #define RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING         (1ULL << 2)
300 /**< Chaining symmetric crypto operations are supported */
301 #define RTE_CRYPTODEV_FF_CPU_SSE                        (1ULL << 3)
302 /**< Utilises CPU SIMD SSE instructions */
303 #define RTE_CRYPTODEV_FF_CPU_AVX                        (1ULL << 4)
304 /**< Utilises CPU SIMD AVX instructions */
305 #define RTE_CRYPTODEV_FF_CPU_AVX2                       (1ULL << 5)
306 /**< Utilises CPU SIMD AVX2 instructions */
307 #define RTE_CRYPTODEV_FF_CPU_AESNI                      (1ULL << 6)
308 /**< Utilises CPU AES-NI instructions */
309 #define RTE_CRYPTODEV_FF_HW_ACCELERATED                 (1ULL << 7)
310 /**< Operations are off-loaded to an
311  * external hardware accelerator
312  */
313 #define RTE_CRYPTODEV_FF_CPU_AVX512                     (1ULL << 8)
314 /**< Utilises CPU SIMD AVX512 instructions */
315 #define RTE_CRYPTODEV_FF_IN_PLACE_SGL                   (1ULL << 9)
316 /**< In-place Scatter-gather (SGL) buffers, with multiple segments,
317  * are supported
318  */
319 #define RTE_CRYPTODEV_FF_OOP_SGL_IN_SGL_OUT             (1ULL << 10)
320 /**< Out-of-place Scatter-gather (SGL) buffers are
321  * supported in input and output
322  */
323 #define RTE_CRYPTODEV_FF_OOP_SGL_IN_LB_OUT              (1ULL << 11)
324 /**< Out-of-place Scatter-gather (SGL) buffers are supported
325  * in input, combined with linear buffers (LB), with a
326  * single segment in output
327  */
328 #define RTE_CRYPTODEV_FF_OOP_LB_IN_SGL_OUT              (1ULL << 12)
329 /**< Out-of-place Scatter-gather (SGL) buffers are supported
330  * in output, combined with linear buffers (LB) in input
331  */
332 #define RTE_CRYPTODEV_FF_OOP_LB_IN_LB_OUT               (1ULL << 13)
333 /**< Out-of-place linear buffers (LB) are supported in input and output */
334 #define RTE_CRYPTODEV_FF_CPU_NEON                       (1ULL << 14)
335 /**< Utilises CPU NEON instructions */
336 #define RTE_CRYPTODEV_FF_CPU_ARM_CE                     (1ULL << 15)
337 /**< Utilises ARM CPU Cryptographic Extensions */
338 #define RTE_CRYPTODEV_FF_SECURITY                       (1ULL << 16)
339 /**< Support Security Protocol Processing */
340
341
342 /**
343  * Get the name of a crypto device feature flag
344  *
345  * @param       flag    The mask describing the flag.
346  *
347  * @return
348  *   The name of this flag, or NULL if it's not a valid feature flag.
349  */
350
351 extern const char *
352 rte_cryptodev_get_feature_name(uint64_t flag);
353
354 /**  Crypto device information */
355 struct rte_cryptodev_info {
356         const char *driver_name;        /**< Driver name. */
357         uint8_t driver_id;              /**< Driver identifier */
358         struct rte_device *device;      /**< Generic device information. */
359
360         uint64_t feature_flags;
361         /**< Feature flags exposes HW/SW features for the given device */
362
363         const struct rte_cryptodev_capabilities *capabilities;
364         /**< Array of devices supported capabilities */
365
366         unsigned max_nb_queue_pairs;
367         /**< Maximum number of queues pairs supported by device. */
368
369         struct {
370                 unsigned max_nb_sessions;
371                 /**< Maximum number of sessions supported by device.
372                  * If 0, the device does not have any limitation in
373                  * number of sessions that can be used.
374                  */
375         } sym;
376 };
377
378 #define RTE_CRYPTODEV_DETACHED  (0)
379 #define RTE_CRYPTODEV_ATTACHED  (1)
380
381 /** Definitions of Crypto device event types */
382 enum rte_cryptodev_event_type {
383         RTE_CRYPTODEV_EVENT_UNKNOWN,    /**< unknown event type */
384         RTE_CRYPTODEV_EVENT_ERROR,      /**< error interrupt event */
385         RTE_CRYPTODEV_EVENT_MAX         /**< max value of this enum */
386 };
387
388 /** Crypto device queue pair configuration structure. */
389 struct rte_cryptodev_qp_conf {
390         uint32_t nb_descriptors; /**< Number of descriptors per queue pair */
391 };
392
393 /**
394  * Typedef for application callback function to be registered by application
395  * software for notification of device events
396  *
397  * @param       dev_id  Crypto device identifier
398  * @param       event   Crypto device event to register for notification of.
399  * @param       cb_arg  User specified parameter to be passed as to passed to
400  *                      users callback function.
401  */
402 typedef void (*rte_cryptodev_cb_fn)(uint8_t dev_id,
403                 enum rte_cryptodev_event_type event, void *cb_arg);
404
405
406 /** Crypto Device statistics */
407 struct rte_cryptodev_stats {
408         uint64_t enqueued_count;
409         /**< Count of all operations enqueued */
410         uint64_t dequeued_count;
411         /**< Count of all operations dequeued */
412
413         uint64_t enqueue_err_count;
414         /**< Total error count on operations enqueued */
415         uint64_t dequeue_err_count;
416         /**< Total error count on operations dequeued */
417 };
418
419 #define RTE_CRYPTODEV_NAME_MAX_LEN      (64)
420 /**< Max length of name of crypto PMD */
421
422 /**
423  * Get the device identifier for the named crypto device.
424  *
425  * @param       name    device name to select the device structure.
426  *
427  * @return
428  *   - Returns crypto device identifier on success.
429  *   - Return -1 on failure to find named crypto device.
430  */
431 extern int
432 rte_cryptodev_get_dev_id(const char *name);
433
434 /**
435  * Get the crypto device name given a device identifier.
436  *
437  * @param dev_id
438  *   The identifier of the device
439  *
440  * @return
441  *   - Returns crypto device name.
442  *   - Returns NULL if crypto device is not present.
443  */
444 extern const char *
445 rte_cryptodev_name_get(uint8_t dev_id);
446
447 /**
448  * Get the total number of crypto devices that have been successfully
449  * initialised.
450  *
451  * @return
452  *   - The total number of usable crypto devices.
453  */
454 extern uint8_t
455 rte_cryptodev_count(void);
456
457 /**
458  * Get number of crypto device defined type.
459  *
460  * @param       driver_id       driver identifier.
461  *
462  * @return
463  *   Returns number of crypto device.
464  */
465 extern uint8_t
466 rte_cryptodev_device_count_by_driver(uint8_t driver_id);
467
468 /**
469  * Get number and identifiers of attached crypto devices that
470  * use the same crypto driver.
471  *
472  * @param       driver_name     driver name.
473  * @param       devices         output devices identifiers.
474  * @param       nb_devices      maximal number of devices.
475  *
476  * @return
477  *   Returns number of attached crypto device.
478  */
479 uint8_t
480 rte_cryptodev_devices_get(const char *driver_name, uint8_t *devices,
481                 uint8_t nb_devices);
482 /*
483  * Return the NUMA socket to which a device is connected
484  *
485  * @param dev_id
486  *   The identifier of the device
487  * @return
488  *   The NUMA socket id to which the device is connected or
489  *   a default of zero if the socket could not be determined.
490  *   -1 if returned is the dev_id value is out of range.
491  */
492 extern int
493 rte_cryptodev_socket_id(uint8_t dev_id);
494
495 /** Crypto device configuration structure */
496 struct rte_cryptodev_config {
497         int socket_id;                  /**< Socket to allocate resources on */
498         uint16_t nb_queue_pairs;
499         /**< Number of queue pairs to configure on device */
500 };
501
502 /**
503  * Configure a device.
504  *
505  * This function must be invoked first before any other function in the
506  * API. This function can also be re-invoked when a device is in the
507  * stopped state.
508  *
509  * @param       dev_id          The identifier of the device to configure.
510  * @param       config          The crypto device configuration structure.
511  *
512  * @return
513  *   - 0: Success, device configured.
514  *   - <0: Error code returned by the driver configuration function.
515  */
516 extern int
517 rte_cryptodev_configure(uint8_t dev_id, struct rte_cryptodev_config *config);
518
519 /**
520  * Start an device.
521  *
522  * The device start step is the last one and consists of setting the configured
523  * offload features and in starting the transmit and the receive units of the
524  * device.
525  * On success, all basic functions exported by the API (link status,
526  * receive/transmit, and so on) can be invoked.
527  *
528  * @param dev_id
529  *   The identifier of the device.
530  * @return
531  *   - 0: Success, device started.
532  *   - <0: Error code of the driver device start function.
533  */
534 extern int
535 rte_cryptodev_start(uint8_t dev_id);
536
537 /**
538  * Stop an device. The device can be restarted with a call to
539  * rte_cryptodev_start()
540  *
541  * @param       dev_id          The identifier of the device.
542  */
543 extern void
544 rte_cryptodev_stop(uint8_t dev_id);
545
546 /**
547  * Close an device. The device cannot be restarted!
548  *
549  * @param       dev_id          The identifier of the device.
550  *
551  * @return
552  *  - 0 on successfully closing device
553  *  - <0 on failure to close device
554  */
555 extern int
556 rte_cryptodev_close(uint8_t dev_id);
557
558 /**
559  * Allocate and set up a receive queue pair for a device.
560  *
561  *
562  * @param       dev_id          The identifier of the device.
563  * @param       queue_pair_id   The index of the queue pairs to set up. The
564  *                              value must be in the range [0, nb_queue_pair
565  *                              - 1] previously supplied to
566  *                              rte_cryptodev_configure().
567  * @param       qp_conf         The pointer to the configuration data to be
568  *                              used for the queue pair. NULL value is
569  *                              allowed, in which case default configuration
570  *                              will be used.
571  * @param       socket_id       The *socket_id* argument is the socket
572  *                              identifier in case of NUMA. The value can be
573  *                              *SOCKET_ID_ANY* if there is no NUMA constraint
574  *                              for the DMA memory allocated for the receive
575  *                              queue pair.
576  * @param       session_pool    Pointer to device session mempool, used
577  *                              for session-less operations.
578  *
579  * @return
580  *   - 0: Success, queue pair correctly set up.
581  *   - <0: Queue pair configuration failed
582  */
583 extern int
584 rte_cryptodev_queue_pair_setup(uint8_t dev_id, uint16_t queue_pair_id,
585                 const struct rte_cryptodev_qp_conf *qp_conf, int socket_id,
586                 struct rte_mempool *session_pool);
587
588 /**
589  * Get the number of queue pairs on a specific crypto device
590  *
591  * @param       dev_id          Crypto device identifier.
592  * @return
593  *   - The number of configured queue pairs.
594  */
595 extern uint16_t
596 rte_cryptodev_queue_pair_count(uint8_t dev_id);
597
598
599 /**
600  * Retrieve the general I/O statistics of a device.
601  *
602  * @param       dev_id          The identifier of the device.
603  * @param       stats           A pointer to a structure of type
604  *                              *rte_cryptodev_stats* to be filled with the
605  *                              values of device counters.
606  * @return
607  *   - Zero if successful.
608  *   - Non-zero otherwise.
609  */
610 extern int
611 rte_cryptodev_stats_get(uint8_t dev_id, struct rte_cryptodev_stats *stats);
612
613 /**
614  * Reset the general I/O statistics of a device.
615  *
616  * @param       dev_id          The identifier of the device.
617  */
618 extern void
619 rte_cryptodev_stats_reset(uint8_t dev_id);
620
621 /**
622  * Retrieve the contextual information of a device.
623  *
624  * @param       dev_id          The identifier of the device.
625  * @param       dev_info        A pointer to a structure of type
626  *                              *rte_cryptodev_info* to be filled with the
627  *                              contextual information of the device.
628  *
629  * @note The capabilities field of dev_info is set to point to the first
630  * element of an array of struct rte_cryptodev_capabilities. The element after
631  * the last valid element has it's op field set to
632  * RTE_CRYPTO_OP_TYPE_UNDEFINED.
633  */
634 extern void
635 rte_cryptodev_info_get(uint8_t dev_id, struct rte_cryptodev_info *dev_info);
636
637
638 /**
639  * Register a callback function for specific device id.
640  *
641  * @param       dev_id          Device id.
642  * @param       event           Event interested.
643  * @param       cb_fn           User supplied callback function to be called.
644  * @param       cb_arg          Pointer to the parameters for the registered
645  *                              callback.
646  *
647  * @return
648  *  - On success, zero.
649  *  - On failure, a negative value.
650  */
651 extern int
652 rte_cryptodev_callback_register(uint8_t dev_id,
653                 enum rte_cryptodev_event_type event,
654                 rte_cryptodev_cb_fn cb_fn, void *cb_arg);
655
656 /**
657  * Unregister a callback function for specific device id.
658  *
659  * @param       dev_id          The device identifier.
660  * @param       event           Event interested.
661  * @param       cb_fn           User supplied callback function to be called.
662  * @param       cb_arg          Pointer to the parameters for the registered
663  *                              callback.
664  *
665  * @return
666  *  - On success, zero.
667  *  - On failure, a negative value.
668  */
669 extern int
670 rte_cryptodev_callback_unregister(uint8_t dev_id,
671                 enum rte_cryptodev_event_type event,
672                 rte_cryptodev_cb_fn cb_fn, void *cb_arg);
673
674
675 typedef uint16_t (*dequeue_pkt_burst_t)(void *qp,
676                 struct rte_crypto_op **ops,     uint16_t nb_ops);
677 /**< Dequeue processed packets from queue pair of a device. */
678
679 typedef uint16_t (*enqueue_pkt_burst_t)(void *qp,
680                 struct rte_crypto_op **ops,     uint16_t nb_ops);
681 /**< Enqueue packets for processing on queue pair of a device. */
682
683
684
685
686 struct rte_cryptodev_callback;
687
688 /** Structure to keep track of registered callbacks */
689 TAILQ_HEAD(rte_cryptodev_cb_list, rte_cryptodev_callback);
690
691 /** The data structure associated with each crypto device. */
692 struct rte_cryptodev {
693         dequeue_pkt_burst_t dequeue_burst;
694         /**< Pointer to PMD receive function. */
695         enqueue_pkt_burst_t enqueue_burst;
696         /**< Pointer to PMD transmit function. */
697
698         struct rte_cryptodev_data *data;
699         /**< Pointer to device data */
700         struct rte_cryptodev_ops *dev_ops;
701         /**< Functions exported by PMD */
702         uint64_t feature_flags;
703         /**< Feature flags exposes HW/SW features for the given device */
704         struct rte_device *device;
705         /**< Backing device */
706
707         uint8_t driver_id;
708         /**< Crypto driver identifier*/
709
710         struct rte_cryptodev_cb_list link_intr_cbs;
711         /**< User application callback for interrupts if present */
712
713         void *security_ctx;
714         /**< Context for security ops */
715
716         __extension__
717         uint8_t attached : 1;
718         /**< Flag indicating the device is attached */
719 } __rte_cache_aligned;
720
721 void *
722 rte_cryptodev_get_sec_ctx(uint8_t dev_id);
723
724 /**
725  *
726  * The data part, with no function pointers, associated with each device.
727  *
728  * This structure is safe to place in shared memory to be common among
729  * different processes in a multi-process configuration.
730  */
731 struct rte_cryptodev_data {
732         uint8_t dev_id;
733         /**< Device ID for this instance */
734         uint8_t socket_id;
735         /**< Socket ID where memory is allocated */
736         char name[RTE_CRYPTODEV_NAME_MAX_LEN];
737         /**< Unique identifier name */
738
739         __extension__
740         uint8_t dev_started : 1;
741         /**< Device state: STARTED(1)/STOPPED(0) */
742
743         struct rte_mempool *session_pool;
744         /**< Session memory pool */
745         void **queue_pairs;
746         /**< Array of pointers to queue pairs. */
747         uint16_t nb_queue_pairs;
748         /**< Number of device queue pairs. */
749
750         void *dev_private;
751         /**< PMD-specific private data */
752 } __rte_cache_aligned;
753
754 extern struct rte_cryptodev *rte_cryptodevs;
755 /**
756  *
757  * Dequeue a burst of processed crypto operations from a queue on the crypto
758  * device. The dequeued operation are stored in *rte_crypto_op* structures
759  * whose pointers are supplied in the *ops* array.
760  *
761  * The rte_cryptodev_dequeue_burst() function returns the number of ops
762  * actually dequeued, which is the number of *rte_crypto_op* data structures
763  * effectively supplied into the *ops* array.
764  *
765  * A return value equal to *nb_ops* indicates that the queue contained
766  * at least *nb_ops* operations, and this is likely to signify that other
767  * processed operations remain in the devices output queue. Applications
768  * implementing a "retrieve as many processed operations as possible" policy
769  * can check this specific case and keep invoking the
770  * rte_cryptodev_dequeue_burst() function until a value less than
771  * *nb_ops* is returned.
772  *
773  * The rte_cryptodev_dequeue_burst() function does not provide any error
774  * notification to avoid the corresponding overhead.
775  *
776  * @param       dev_id          The symmetric crypto device identifier
777  * @param       qp_id           The index of the queue pair from which to
778  *                              retrieve processed packets. The value must be
779  *                              in the range [0, nb_queue_pair - 1] previously
780  *                              supplied to rte_cryptodev_configure().
781  * @param       ops             The address of an array of pointers to
782  *                              *rte_crypto_op* structures that must be
783  *                              large enough to store *nb_ops* pointers in it.
784  * @param       nb_ops          The maximum number of operations to dequeue.
785  *
786  * @return
787  *   - The number of operations actually dequeued, which is the number
788  *   of pointers to *rte_crypto_op* structures effectively supplied to the
789  *   *ops* array.
790  */
791 static inline uint16_t
792 rte_cryptodev_dequeue_burst(uint8_t dev_id, uint16_t qp_id,
793                 struct rte_crypto_op **ops, uint16_t nb_ops)
794 {
795         struct rte_cryptodev *dev = &rte_cryptodevs[dev_id];
796
797         nb_ops = (*dev->dequeue_burst)
798                         (dev->data->queue_pairs[qp_id], ops, nb_ops);
799
800         return nb_ops;
801 }
802
803 /**
804  * Enqueue a burst of operations for processing on a crypto device.
805  *
806  * The rte_cryptodev_enqueue_burst() function is invoked to place
807  * crypto operations on the queue *qp_id* of the device designated by
808  * its *dev_id*.
809  *
810  * The *nb_ops* parameter is the number of operations to process which are
811  * supplied in the *ops* array of *rte_crypto_op* structures.
812  *
813  * The rte_cryptodev_enqueue_burst() function returns the number of
814  * operations it actually enqueued for processing. A return value equal to
815  * *nb_ops* means that all packets have been enqueued.
816  *
817  * @param       dev_id          The identifier of the device.
818  * @param       qp_id           The index of the queue pair which packets are
819  *                              to be enqueued for processing. The value
820  *                              must be in the range [0, nb_queue_pairs - 1]
821  *                              previously supplied to
822  *                               *rte_cryptodev_configure*.
823  * @param       ops             The address of an array of *nb_ops* pointers
824  *                              to *rte_crypto_op* structures which contain
825  *                              the crypto operations to be processed.
826  * @param       nb_ops          The number of operations to process.
827  *
828  * @return
829  * The number of operations actually enqueued on the crypto device. The return
830  * value can be less than the value of the *nb_ops* parameter when the
831  * crypto devices queue is full or if invalid parameters are specified in
832  * a *rte_crypto_op*.
833  */
834 static inline uint16_t
835 rte_cryptodev_enqueue_burst(uint8_t dev_id, uint16_t qp_id,
836                 struct rte_crypto_op **ops, uint16_t nb_ops)
837 {
838         struct rte_cryptodev *dev = &rte_cryptodevs[dev_id];
839
840         return (*dev->enqueue_burst)(
841                         dev->data->queue_pairs[qp_id], ops, nb_ops);
842 }
843
844
845 /** Cryptodev symmetric crypto session
846  * Each session is derived from a fixed xform chain. Therefore each session
847  * has a fixed algo, key, op-type, digest_len etc.
848  */
849 struct rte_cryptodev_sym_session {
850         __extension__ void *sess_private_data[0];
851         /**< Private session material */
852 };
853
854
855 /**
856  * Create symmetric crypto session header (generic with no private data)
857  *
858  * @param   mempool    Symmetric session mempool to allocate session
859  *                     objects from
860  * @return
861  *  - On success return pointer to sym-session
862  *  - On failure returns NULL
863  */
864 struct rte_cryptodev_sym_session *
865 rte_cryptodev_sym_session_create(struct rte_mempool *mempool);
866
867 /**
868  * Frees symmetric crypto session header, after checking that all
869  * the device private data has been freed, returning it
870  * to its original mempool.
871  *
872  * @param   sess     Session header to be freed.
873  *
874  * @return
875  *  - 0 if successful.
876  *  - -EINVAL if session is NULL.
877  *  - -EBUSY if not all device private data has been freed.
878  */
879 int
880 rte_cryptodev_sym_session_free(struct rte_cryptodev_sym_session *sess);
881
882 /**
883  * Fill out private data for the device id, based on its device type.
884  *
885  * @param   dev_id   ID of device that we want the session to be used on
886  * @param   sess     Session where the private data will be attached to
887  * @param   xforms   Symmetric crypto transform operations to apply on flow
888  *                   processed with this session
889  * @param   mempool  Mempool where the private data is allocated.
890  *
891  * @return
892  *  - On success, zero.
893  *  - -EINVAL if input parameters are invalid.
894  *  - -ENOTSUP if crypto device does not support the crypto transform or
895  *    does not support symmetric operations.
896  *  - -ENOMEM if the private session could not be allocated.
897  */
898 int
899 rte_cryptodev_sym_session_init(uint8_t dev_id,
900                         struct rte_cryptodev_sym_session *sess,
901                         struct rte_crypto_sym_xform *xforms,
902                         struct rte_mempool *mempool);
903
904 /**
905  * Frees private data for the device id, based on its device type,
906  * returning it to its mempool. It is the application's responsibility
907  * to ensure that private session data is not cleared while there are
908  * still in-flight operations using it.
909  *
910  * @param   dev_id   ID of device that uses the session.
911  * @param   sess     Session containing the reference to the private data
912  *
913  * @return
914  *  - 0 if successful.
915  *  - -EINVAL if device is invalid or session is NULL.
916  *  - -ENOTSUP if crypto device does not support symmetric operations.
917  */
918 int
919 rte_cryptodev_sym_session_clear(uint8_t dev_id,
920                         struct rte_cryptodev_sym_session *sess);
921
922 /**
923  * Get the size of the header session, for all registered drivers.
924  *
925  * @return
926  *   Size of the symmetric eader session.
927  */
928 unsigned int
929 rte_cryptodev_sym_get_header_session_size(void);
930
931 /**
932  * Get the size of the private symmetric session data
933  * for a device.
934  *
935  * @param       dev_id          The device identifier.
936  *
937  * @return
938  *   - Size of the private data, if successful
939  *   - 0 if device is invalid or does not have private
940  *   symmetric session
941  */
942 unsigned int
943 rte_cryptodev_sym_get_private_session_size(uint8_t dev_id);
944
945 /**
946  * Provide driver identifier.
947  *
948  * @param name
949  *   The pointer to a driver name.
950  * @return
951  *  The driver type identifier or -1 if no driver found
952  */
953 int rte_cryptodev_driver_id_get(const char *name);
954
955 /**
956  * Provide driver name.
957  *
958  * @param driver_id
959  *   The driver identifier.
960  * @return
961  *  The driver name or null if no driver found
962  */
963 const char *rte_cryptodev_driver_name_get(uint8_t driver_id);
964
965 /**
966  * Set private data for a session.
967  *
968  * @param       sess            Session pointer allocated by
969  *                              *rte_cryptodev_sym_session_create*.
970  * @param       data            Pointer to the private data.
971  * @param       size            Size of the private data.
972  *
973  * @return
974  *  - On success, zero.
975  *  - On failure, a negative value.
976  */
977 int __rte_experimental
978 rte_cryptodev_sym_session_set_private_data(
979                                         struct rte_cryptodev_sym_session *sess,
980                                         void *data,
981                                         uint16_t size);
982
983 /**
984  * Get private data of a session.
985  *
986  * @param       sess            Session pointer allocated by
987  *                              *rte_cryptodev_sym_session_create*.
988  *
989  * @return
990  *  - On success return pointer to private data.
991  *  - On failure returns NULL.
992  */
993 void * __rte_experimental
994 rte_cryptodev_sym_session_get_private_data(
995                                         struct rte_cryptodev_sym_session *sess);
996
997 #ifdef __cplusplus
998 }
999 #endif
1000
1001 #endif /* _RTE_CRYPTODEV_H_ */