1 .. SPDX-License-Identifier: BSD-3-Clause
2 Copyright(c) 2016-2017 Intel Corporation.
4 Cryptography Device Library
5 ===========================
7 The cryptodev library provides a Crypto device framework for management and
8 provisioning of hardware and software Crypto poll mode drivers, defining generic
9 APIs which support a number of different Crypto operations. The framework
10 currently only supports cipher, authentication, chained cipher/authentication
11 and AEAD symmetric Crypto operations.
17 The cryptodev library follows the same basic principles as those used in DPDKs
18 Ethernet Device framework. The Crypto framework provides a generic Crypto device
19 framework which supports both physical (hardware) and virtual (software) Crypto
20 devices as well as a generic Crypto API which allows Crypto devices to be
21 managed and configured and supports Crypto operations to be provisioned on
22 Crypto poll mode driver.
31 Physical Crypto devices are discovered during the PCI probe/enumeration of the
32 EAL function which is executed at DPDK initialization, based on
33 their PCI device identifier, each unique PCI BDF (bus/bridge, device,
34 function). Specific physical Crypto devices, like other physical devices in DPDK
35 can be white-listed or black-listed using the EAL command line options.
37 Virtual devices can be created by two mechanisms, either using the EAL command
38 line options or from within the application using an EAL API directly.
40 From the command line using the --vdev EAL option
42 .. code-block:: console
44 --vdev 'crypto_aesni_mb0,max_nb_queue_pairs=2,max_nb_sessions=1024,socket_id=0'
48 * If DPDK application requires multiple software crypto PMD devices then required
49 number of ``--vdev`` with appropriate libraries are to be added.
51 * An Application with crypto PMD instaces sharing the same library requires unique ID.
53 Example: ``--vdev 'crypto_aesni_mb0' --vdev 'crypto_aesni_mb1'``
55 Our using the rte_vdev_init API within the application code.
59 rte_vdev_init("crypto_aesni_mb",
60 "max_nb_queue_pairs=2,max_nb_sessions=1024,socket_id=0")
62 All virtual Crypto devices support the following initialization parameters:
64 * ``max_nb_queue_pairs`` - maximum number of queue pairs supported by the device.
65 * ``max_nb_sessions`` - maximum number of sessions supported by the device
66 * ``socket_id`` - socket on which to allocate the device resources on.
72 Each device, whether virtual or physical is uniquely designated by two
75 - A unique device index used to designate the Crypto device in all functions
76 exported by the cryptodev API.
78 - A device name used to designate the Crypto device in console messages, for
79 administration or debugging purposes. For ease of use, the port name includes
86 The configuration of each Crypto device includes the following operations:
88 - Allocation of resources, including hardware resources if a physical device.
89 - Resetting the device into a well-known default state.
90 - Initialization of statistics counters.
92 The rte_cryptodev_configure API is used to configure a Crypto device.
96 int rte_cryptodev_configure(uint8_t dev_id,
97 struct rte_cryptodev_config *config)
99 The ``rte_cryptodev_config`` structure is used to pass the configuration
100 parameters for socket selection and number of queue pairs.
104 struct rte_cryptodev_config {
106 /**< Socket to allocate resources on */
107 uint16_t nb_queue_pairs;
108 /**< Number of queue pairs to configure on device */
112 Configuration of Queue Pairs
113 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
115 Each Crypto devices queue pair is individually configured through the
116 ``rte_cryptodev_queue_pair_setup`` API.
117 Each queue pairs resources may be allocated on a specified socket.
121 int rte_cryptodev_queue_pair_setup(uint8_t dev_id, uint16_t queue_pair_id,
122 const struct rte_cryptodev_qp_conf *qp_conf,
125 struct rte_cryptodev_qp_conf {
126 uint32_t nb_descriptors; /**< Number of descriptors per queue pair */
130 Logical Cores, Memory and Queues Pair Relationships
131 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
133 The Crypto device Library as the Poll Mode Driver library support NUMA for when
134 a processor’s logical cores and interfaces utilize its local memory. Therefore
135 Crypto operations, and in the case of symmetric Crypto operations, the session
136 and the mbuf being operated on, should be allocated from memory pools created
137 in the local memory. The buffers should, if possible, remain on the local
138 processor to obtain the best performance results and buffer descriptors should
139 be populated with mbufs allocated from a mempool allocated from local memory.
141 The run-to-completion model also performs better, especially in the case of
142 virtual Crypto devices, if the Crypto operation and session and data buffer is
143 in local memory instead of a remote processor's memory. This is also true for
144 the pipe-line model provided all logical cores used are located on the same
147 Multiple logical cores should never share the same queue pair for enqueuing
148 operations or dequeuing operations on the same Crypto device since this would
149 require global locks and hinder performance. It is however possible to use a
150 different logical core to dequeue an operation on a queue pair from the logical
151 core which it was enqueued on. This means that a crypto burst enqueue/dequeue
152 APIs are a logical place to transition from one logical core to another in a
153 packet processing pipeline.
156 Device Features and Capabilities
157 ---------------------------------
159 Crypto devices define their functionality through two mechanisms, global device
160 features and algorithm capabilities. Global devices features identify device
161 wide level features which are applicable to the whole device such as
162 the device having hardware acceleration or supporting symmetric Crypto
165 The capabilities mechanism defines the individual algorithms/functions which
166 the device supports, such as a specific symmetric Crypto cipher,
167 authentication operation or Authenticated Encryption with Associated Data
174 Currently the following Crypto device features are defined:
176 * Symmetric Crypto operations
177 * Asymmetric Crypto operations
178 * Chaining of symmetric Crypto operations
179 * SSE accelerated SIMD vector operations
180 * AVX accelerated SIMD vector operations
181 * AVX2 accelerated SIMD vector operations
182 * AESNI accelerated instructions
183 * Hardware off-load processing
186 Device Operation Capabilities
187 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
189 Crypto capabilities which identify particular algorithm which the Crypto PMD
190 supports are defined by the operation type, the operation transform, the
191 transform identifier and then the particulars of the transform. For the full
192 scope of the Crypto capability see the definition of the structure in the
193 *DPDK API Reference*.
197 struct rte_cryptodev_capabilities;
199 Each Crypto poll mode driver defines its own private array of capabilities
200 for the operations it supports. Below is an example of the capabilities for a
201 PMD which supports the authentication algorithm SHA1_HMAC and the cipher
206 static const struct rte_cryptodev_capabilities pmd_capabilities[] = {
208 .op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,
210 .xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,
212 .algo = RTE_CRYPTO_AUTH_SHA1_HMAC,
230 .op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,
232 .xform_type = RTE_CRYPTO_SYM_XFORM_CIPHER,
234 .algo = RTE_CRYPTO_CIPHER_AES_CBC,
252 Capabilities Discovery
253 ~~~~~~~~~~~~~~~~~~~~~~
255 Discovering the features and capabilities of a Crypto device poll mode driver
256 is achieved through the ``rte_cryptodev_info_get`` function.
260 void rte_cryptodev_info_get(uint8_t dev_id,
261 struct rte_cryptodev_info *dev_info);
263 This allows the user to query a specific Crypto PMD and get all the device
264 features and capabilities. The ``rte_cryptodev_info`` structure contains all the
265 relevant information for the device.
269 struct rte_cryptodev_info {
270 const char *driver_name;
272 struct rte_pci_device *pci_dev;
274 uint64_t feature_flags;
276 const struct rte_cryptodev_capabilities *capabilities;
278 unsigned max_nb_queue_pairs;
281 unsigned max_nb_sessions;
289 Scheduling of Crypto operations on DPDK's application data path is
290 performed using a burst oriented asynchronous API set. A queue pair on a Crypto
291 device accepts a burst of Crypto operations using enqueue burst API. On physical
292 Crypto devices the enqueue burst API will place the operations to be processed
293 on the devices hardware input queue, for virtual devices the processing of the
294 Crypto operations is usually completed during the enqueue call to the Crypto
295 device. The dequeue burst API will retrieve any processed operations available
296 from the queue pair on the Crypto device, from physical devices this is usually
297 directly from the devices processed queue, and for virtual device's from a
298 ``rte_ring`` where processed operations are place after being processed on the
302 Enqueue / Dequeue Burst APIs
303 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
305 The burst enqueue API uses a Crypto device identifier and a queue pair
306 identifier to specify the Crypto device queue pair to schedule the processing on.
307 The ``nb_ops`` parameter is the number of operations to process which are
308 supplied in the ``ops`` array of ``rte_crypto_op`` structures.
309 The enqueue function returns the number of operations it actually enqueued for
310 processing, a return value equal to ``nb_ops`` means that all packets have been
315 uint16_t rte_cryptodev_enqueue_burst(uint8_t dev_id, uint16_t qp_id,
316 struct rte_crypto_op **ops, uint16_t nb_ops)
318 The dequeue API uses the same format as the enqueue API of processed but
319 the ``nb_ops`` and ``ops`` parameters are now used to specify the max processed
320 operations the user wishes to retrieve and the location in which to store them.
321 The API call returns the actual number of processed operations returned, this
322 can never be larger than ``nb_ops``.
326 uint16_t rte_cryptodev_dequeue_burst(uint8_t dev_id, uint16_t qp_id,
327 struct rte_crypto_op **ops, uint16_t nb_ops)
330 Operation Representation
331 ~~~~~~~~~~~~~~~~~~~~~~~~
333 An Crypto operation is represented by an rte_crypto_op structure, which is a
334 generic metadata container for all necessary information required for the
335 Crypto operation to be processed on a particular Crypto device poll mode driver.
337 .. figure:: img/crypto_op.*
339 The operation structure includes the operation type, the operation status
340 and the session type (session-based/less), a reference to the operation
341 specific data, which can vary in size and content depending on the operation
342 being provisioned. It also contains the source mempool for the operation,
343 if it allocated from a mempool.
345 If Crypto operations are allocated from a Crypto operation mempool, see next
346 section, there is also the ability to allocate private memory with the
347 operation for applications purposes.
349 Application software is responsible for specifying all the operation specific
350 fields in the ``rte_crypto_op`` structure which are then used by the Crypto PMD
351 to process the requested operation.
354 Operation Management and Allocation
355 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
357 The cryptodev library provides an API set for managing Crypto operations which
358 utilize the Mempool Library to allocate operation buffers. Therefore, it ensures
359 that the crytpo operation is interleaved optimally across the channels and
360 ranks for optimal processing.
361 A ``rte_crypto_op`` contains a field indicating the pool that it originated from.
362 When calling ``rte_crypto_op_free(op)``, the operation returns to its original pool.
366 extern struct rte_mempool *
367 rte_crypto_op_pool_create(const char *name, enum rte_crypto_op_type type,
368 unsigned nb_elts, unsigned cache_size, uint16_t priv_size,
371 During pool creation ``rte_crypto_op_init()`` is called as a constructor to
372 initialize each Crypto operation which subsequently calls
373 ``__rte_crypto_op_reset()`` to configure any operation type specific fields based
374 on the type parameter.
377 ``rte_crypto_op_alloc()`` and ``rte_crypto_op_bulk_alloc()`` are used to allocate
378 Crypto operations of a specific type from a given Crypto operation mempool.
379 ``__rte_crypto_op_reset()`` is called on each operation before being returned to
380 allocate to a user so the operation is always in a good known state before use
385 struct rte_crypto_op *rte_crypto_op_alloc(struct rte_mempool *mempool,
386 enum rte_crypto_op_type type)
388 unsigned rte_crypto_op_bulk_alloc(struct rte_mempool *mempool,
389 enum rte_crypto_op_type type,
390 struct rte_crypto_op **ops, uint16_t nb_ops)
392 ``rte_crypto_op_free()`` is called by the application to return an operation to
397 void rte_crypto_op_free(struct rte_crypto_op *op)
400 Symmetric Cryptography Support
401 ------------------------------
403 The cryptodev library currently provides support for the following symmetric
404 Crypto operations; cipher, authentication, including chaining of these
405 operations, as well as also supporting AEAD operations.
408 Session and Session Management
409 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
411 Sessions are used in symmetric cryptographic processing to store the immutable
412 data defined in a cryptographic transform which is used in the operation
413 processing of a packet flow. Sessions are used to manage information such as
414 expand cipher keys and HMAC IPADs and OPADs, which need to be calculated for a
415 particular Crypto operation, but are immutable on a packet to packet basis for
416 a flow. Crypto sessions cache this immutable data in a optimal way for the
417 underlying PMD and this allows further acceleration of the offload of
420 .. figure:: img/cryptodev_sym_sess.*
422 The Crypto device framework provides APIs to allocate and initizalize sessions
423 for crypto devices, where sessions are mempool objects.
424 It is the application's responsibility to create and manage the session mempools.
425 This approach allows for different scenarios such as having a single session
426 mempool for all crypto devices (where the mempool object size is big
427 enough to hold the private session of any crypto device), as well as having
428 multiple session mempools of different sizes for better memory usage.
430 An application can use ``rte_cryptodev_get_private_session_size()`` to
431 get the private session size of given crypto device. This function would allow
432 an application to calculate the max device session size of all crypto devices
433 to create a single session mempool.
434 If instead an application creates multiple session mempools, the Crypto device
435 framework also provides ``rte_cryptodev_get_header_session_size`` to get
436 the size of an uninitialized session.
438 Once the session mempools have been created, ``rte_cryptodev_sym_session_create()``
439 is used to allocate an uninitialized session from the given mempool.
440 The session then must be initialized using ``rte_cryptodev_sym_session_init()``
441 for each of the required crypto devices. A symmetric transform chain
442 is used to specify the operation and its parameters. See the section below for
443 details on transforms.
445 When a session is no longer used, user must call ``rte_cryptodev_sym_session_clear()``
446 for each of the crypto devices that are using the session, to free all driver
447 private session data. Once this is done, session should be freed using
448 ``rte_cryptodev_sym_session_free`` which returns them to their mempool.
451 Transforms and Transform Chaining
452 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
454 Symmetric Crypto transforms (``rte_crypto_sym_xform``) are the mechanism used
455 to specify the details of the Crypto operation. For chaining of symmetric
456 operations such as cipher encrypt and authentication generate, the next pointer
457 allows transform to be chained together. Crypto devices which support chaining
458 must publish the chaining of symmetric Crypto operations feature flag.
460 Currently there are three transforms types cipher, authentication and AEAD.
461 Also it is important to note that the order in which the
462 transforms are passed indicates the order of the chaining.
466 struct rte_crypto_sym_xform {
467 struct rte_crypto_sym_xform *next;
468 /**< next xform in chain */
469 enum rte_crypto_sym_xform_type type;
472 struct rte_crypto_auth_xform auth;
473 /**< Authentication / hash xform */
474 struct rte_crypto_cipher_xform cipher;
476 struct rte_crypto_aead_xform aead;
481 The API does not place a limit on the number of transforms that can be chained
482 together but this will be limited by the underlying Crypto device poll mode
483 driver which is processing the operation.
485 .. figure:: img/crypto_xform_chain.*
491 The symmetric Crypto operation structure contains all the mutable data relating
492 to performing symmetric cryptographic processing on a referenced mbuf data
493 buffer. It is used for either cipher, authentication, AEAD and chained
496 As a minimum the symmetric operation must have a source data buffer (``m_src``),
497 a valid session (or transform chain if in session-less mode) and the minimum
498 authentication/ cipher/ AEAD parameters required depending on the type of operation
499 specified in the session or the transform
504 struct rte_crypto_sym_op {
505 struct rte_mbuf *m_src;
506 struct rte_mbuf *m_dst;
509 struct rte_cryptodev_sym_session *session;
510 /**< Handle for the initialised session context */
511 struct rte_crypto_sym_xform *xform;
512 /**< Session-less API Crypto operation parameters */
520 } data; /**< Data offsets and length for AEAD */
524 rte_iova_t phys_addr;
525 } digest; /**< Digest parameters */
529 rte_iova_t phys_addr;
531 /**< Additional authentication parameters */
539 } data; /**< Data offsets and length for ciphering */
547 /**< Data offsets and length for authentication */
551 rte_iova_t phys_addr;
552 } digest; /**< Digest parameters */
561 There are various sample applications that show how to use the cryptodev library,
562 such as the L2fwd with Crypto sample application (L2fwd-crypto) and
563 the IPSec Security Gateway application (ipsec-secgw).
565 While these applications demonstrate how an application can be created to perform
566 generic crypto operation, the required complexity hides the basic steps of
567 how to use the cryptodev APIs.
569 The following sample code shows the basic steps to encrypt several buffers
570 with AES-CBC (although performing other crypto operations is similar),
571 using one of the crypto PMDs available in DPDK.
576 * Simple example to encrypt several buffers with AES-CBC using
577 * the Cryptodev APIs.
580 #define MAX_SESSIONS 1024
581 #define NUM_MBUFS 1024
582 #define POOL_CACHE_SIZE 128
583 #define BURST_SIZE 32
584 #define BUFFER_SIZE 1024
585 #define AES_CBC_IV_LENGTH 16
586 #define AES_CBC_KEY_LENGTH 16
587 #define IV_OFFSET (sizeof(struct rte_crypto_op) + \
588 sizeof(struct rte_crypto_sym_op))
590 struct rte_mempool *mbuf_pool, *crypto_op_pool, *session_pool;
591 unsigned int session_size;
594 /* Initialize EAL. */
595 ret = rte_eal_init(argc, argv);
597 rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
599 uint8_t socket_id = rte_socket_id();
601 /* Create the mbuf pool. */
602 mbuf_pool = rte_pktmbuf_pool_create("mbuf_pool",
606 RTE_MBUF_DEFAULT_BUF_SIZE,
608 if (mbuf_pool == NULL)
609 rte_exit(EXIT_FAILURE, "Cannot create mbuf pool\n");
612 * The IV is always placed after the crypto operation,
613 * so some private data is required to be reserved.
615 unsigned int crypto_op_private_data = AES_CBC_IV_LENGTH;
617 /* Create crypto operation pool. */
618 crypto_op_pool = rte_crypto_op_pool_create("crypto_op_pool",
619 RTE_CRYPTO_OP_TYPE_SYMMETRIC,
622 crypto_op_private_data,
624 if (crypto_op_pool == NULL)
625 rte_exit(EXIT_FAILURE, "Cannot create crypto op pool\n");
627 /* Create the virtual crypto device. */
629 const char *crypto_name = "crypto_aesni_mb0";
630 snprintf(args, sizeof(args), "socket_id=%d", socket_id);
631 ret = rte_vdev_init(crypto_name, args);
633 rte_exit(EXIT_FAILURE, "Cannot create virtual device");
635 uint8_t cdev_id = rte_cryptodev_get_dev_id(crypto_name);
637 /* Get private session data size. */
638 session_size = rte_cryptodev_get_private_session_size(cdev_id);
641 * Create session mempool, with two objects per session,
642 * one for the session header and another one for the
643 * private session data for the crypto device.
645 session_pool = rte_mempool_create("session_pool",
653 /* Configure the crypto device. */
654 struct rte_cryptodev_config conf = {
656 .socket_id = socket_id
658 struct rte_cryptodev_qp_conf qp_conf = {
659 .nb_descriptors = 2048
662 if (rte_cryptodev_configure(cdev_id, &conf) < 0)
663 rte_exit(EXIT_FAILURE, "Failed to configure cryptodev %u", cdev_id);
665 if (rte_cryptodev_queue_pair_setup(cdev_id, 0, &qp_conf,
666 socket_id, session_pool) < 0)
667 rte_exit(EXIT_FAILURE, "Failed to setup queue pair\n");
669 if (rte_cryptodev_start(cdev_id) < 0)
670 rte_exit(EXIT_FAILURE, "Failed to start device\n");
672 /* Create the crypto transform. */
673 uint8_t cipher_key[16] = {0};
674 struct rte_crypto_sym_xform cipher_xform = {
676 .type = RTE_CRYPTO_SYM_XFORM_CIPHER,
678 .op = RTE_CRYPTO_CIPHER_OP_ENCRYPT,
679 .algo = RTE_CRYPTO_CIPHER_AES_CBC,
682 .length = AES_CBC_KEY_LENGTH
686 .length = AES_CBC_IV_LENGTH
691 /* Create crypto session and initialize it for the crypto device. */
692 struct rte_cryptodev_sym_session *session;
693 session = rte_cryptodev_sym_session_create(session_pool);
695 rte_exit(EXIT_FAILURE, "Session could not be created\n");
697 if (rte_cryptodev_sym_session_init(cdev_id, session,
698 &cipher_xform, session_pool) < 0)
699 rte_exit(EXIT_FAILURE, "Session could not be initialized "
700 "for the crypto device\n");
702 /* Get a burst of crypto operations. */
703 struct rte_crypto_op *crypto_ops[BURST_SIZE];
704 if (rte_crypto_op_bulk_alloc(crypto_op_pool,
705 RTE_CRYPTO_OP_TYPE_SYMMETRIC,
706 crypto_ops, BURST_SIZE) == 0)
707 rte_exit(EXIT_FAILURE, "Not enough crypto operations available\n");
709 /* Get a burst of mbufs. */
710 struct rte_mbuf *mbufs[BURST_SIZE];
711 if (rte_pktmbuf_alloc_bulk(mbuf_pool, mbufs, BURST_SIZE) < 0)
712 rte_exit(EXIT_FAILURE, "Not enough mbufs available");
714 /* Initialize the mbufs and append them to the crypto operations. */
716 for (i = 0; i < BURST_SIZE; i++) {
717 if (rte_pktmbuf_append(mbufs[i], BUFFER_SIZE) == NULL)
718 rte_exit(EXIT_FAILURE, "Not enough room in the mbuf\n");
719 crypto_ops[i]->sym->m_src = mbufs[i];
722 /* Set up the crypto operations. */
723 for (i = 0; i < BURST_SIZE; i++) {
724 struct rte_crypto_op *op = crypto_ops[i];
725 /* Modify bytes of the IV at the end of the crypto operation */
726 uint8_t *iv_ptr = rte_crypto_op_ctod_offset(op, uint8_t *,
729 generate_random_bytes(iv_ptr, AES_CBC_IV_LENGTH);
731 op->sym->cipher.data.offset = 0;
732 op->sym->cipher.data.length = BUFFER_SIZE;
734 /* Attach the crypto session to the operation */
735 rte_crypto_op_attach_sym_session(op, session);
738 /* Enqueue the crypto operations in the crypto device. */
739 uint16_t num_enqueued_ops = rte_cryptodev_enqueue_burst(cdev_id, 0,
740 crypto_ops, BURST_SIZE);
743 * Dequeue the crypto operations until all the operations
744 * are proccessed in the crypto device.
746 uint16_t num_dequeued_ops, total_num_dequeued_ops = 0;
748 struct rte_crypto_op *dequeued_ops[BURST_SIZE];
749 num_dequeued_ops = rte_cryptodev_dequeue_burst(cdev_id, 0,
750 dequeued_ops, BURST_SIZE);
751 total_num_dequeued_ops += num_dequeued_ops;
753 /* Check if operation was processed successfully */
754 for (i = 0; i < num_dequeued_ops; i++) {
755 if (dequeued_ops[i]->status != RTE_CRYPTO_OP_STATUS_SUCCESS)
756 rte_exit(EXIT_FAILURE,
757 "Some operations were not processed correctly");
760 rte_mempool_put_bulk(crypto_op_pool, (void **)dequeued_ops,
762 } while (total_num_dequeued_ops < num_enqueued_ops);
765 Asymmetric Cryptography
766 -----------------------
768 Asymmetric functionality is currently not supported by the cryptodev API.
774 The cryptodev Library API is described in the *DPDK API Reference* document.