1 .. SPDX-License-Identifier: BSD-3-Clause
2 Copyright(c) 2016-2020 Intel Corporation.
4 AES-NI GCM Crypto Poll Mode Driver
5 ==================================
8 The AES-NI GCM PMD (**librte_pmd_aesni_gcm**) provides poll mode crypto driver
9 support for utilizing Intel multi buffer library (see AES-NI Multi-buffer PMD documentation
10 to learn more about it, including installation).
12 The AES-NI GCM PMD supports synchronous mode of operation with
13 ``rte_cryptodev_sym_cpu_crypto_process`` function call for both AES-GCM and
14 GMAC, however GMAC support is limited to one segment per operation. Please
15 refer to ``rte_crypto`` programmer's guide for more detail.
20 AESNI GCM PMD has support for:
22 Authentication algorithms:
24 * RTE_CRYPTO_AUTH_AES_GMAC
28 * RTE_CRYPTO_AEAD_AES_GCM
33 * In out-of-place operations, chained destination mbufs are not supported.
34 * Cipher only is not supported.
40 To build DPDK with the AESNI_GCM_PMD the user is required to download the multi-buffer
41 library from `here <https://github.com/01org/intel-ipsec-mb>`_
42 and compile it on their user system before building DPDK.
43 The latest version of the library supported by this PMD is v0.54, which
44 can be downloaded in `<https://github.com/01org/intel-ipsec-mb/archive/v0.54.zip>`_.
46 .. code-block:: console
51 The library requires NASM to be built. Depending on the library version, it might
52 require a minimum NASM version (e.g. v0.54 requires at least NASM 2.14).
54 NASM is packaged for different OS. However, on some OS the version is too old,
55 so a manual installation is required. In that case, NASM can be downloaded from
56 `NASM website <https://www.nasm.us/pub/nasm/releasebuilds/?C=M;O=D>`_.
57 Once it is downloaded, extract it and follow these steps:
59 .. code-block:: console
67 Compilation of the Multi-Buffer library is broken when GCC < 5.0, if library <= v0.53.
68 If a lower GCC version than 5.0, the workaround proposed by the following link
69 should be used: `<https://github.com/intel/intel-ipsec-mb/issues/40>`_.
72 As a reference, the following table shows a mapping between the past DPDK versions
73 and the external crypto libraries supported by them:
75 .. _table_aesni_gcm_versions:
77 .. table:: DPDK and external crypto library version compatibility
79 ============= ================================
80 DPDK version Crypto library version
81 ============= ================================
82 16.04 - 16.11 Multi-buffer library 0.43 - 0.44
83 17.02 - 17.05 ISA-L Crypto v2.18
84 17.08 - 18.02 Multi-buffer library 0.46 - 0.48
85 18.05 - 19.02 Multi-buffer library 0.49 - 0.52
86 19.05+ Multi-buffer library 0.52 - 0.54
87 ============= ================================
93 In order to enable this virtual crypto PMD, user must:
95 * Build the multi buffer library (explained in Installation section).
97 * Set CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=y in config/common_base.
99 To use the PMD in an application, user must:
101 * Call rte_vdev_init("crypto_aesni_gcm") within the application.
103 * Use --vdev="crypto_aesni_gcm" in the EAL options, which will call rte_vdev_init() internally.
105 The following parameters (all optional) can be provided in the previous two calls:
107 * socket_id: Specify the socket where the memory for the device is going to be allocated
108 (by default, socket_id will be the socket where the core that is creating the PMD is running on).
110 * max_nb_queue_pairs: Specify the maximum number of queue pairs in the device (8 by default).
112 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
116 .. code-block:: console
118 ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_gcm,socket_id=0,max_nb_sessions=128" \
119 -- -p 1 --cdev SW --chain AEAD --aead_algo "aes-gcm"