a25b63109f370b135b157adc9547d0078f151616
[dpdk.git] / doc / guides / cryptodevs / aesni_gcm.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright(c) 2016-2020 Intel Corporation.
3
4 AES-NI GCM Crypto Poll Mode Driver
5 ==================================
6
7
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).
11
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.
16
17 Features
18 --------
19
20 AESNI GCM PMD has support for:
21
22 Authentication algorithms:
23
24 * RTE_CRYPTO_AUTH_AES_GMAC
25
26 AEAD algorithms:
27
28 * RTE_CRYPTO_AEAD_AES_GCM
29
30 Limitations
31 -----------
32
33 * In out-of-place operations, chained destination mbufs are not supported.
34 * Chained mbufs are only supported by RTE_CRYPTO_AEAD_AES_GCM algorithm,
35   not RTE_CRYPTO_AUTH_AES_GMAC.
36 * Cipher only is not supported.
37
38
39 Installation
40 ------------
41
42 To build DPDK with the AESNI_GCM_PMD the user is required to download the multi-buffer
43 library from `here <https://github.com/01org/intel-ipsec-mb>`_
44 and compile it on their user system before building DPDK.
45 The latest version of the library supported by this PMD is v0.53, which
46 can be downloaded in `<https://github.com/01org/intel-ipsec-mb/archive/v0.53.zip>`_.
47
48 .. code-block:: console
49
50     make
51     make install
52
53 As a reference, the following table shows a mapping between the past DPDK versions
54 and the external crypto libraries supported by them:
55
56 .. _table_aesni_gcm_versions:
57
58 .. table:: DPDK and external crypto library version compatibility
59
60    =============  ================================
61    DPDK version   Crypto library version
62    =============  ================================
63    16.04 - 16.11  Multi-buffer library 0.43 - 0.44
64    17.02 - 17.05  ISA-L Crypto v2.18
65    17.08 - 18.02  Multi-buffer library 0.46 - 0.48
66    18.05 - 19.02  Multi-buffer library 0.49 - 0.52
67    19.05+         Multi-buffer library 0.52 - 0.53
68    =============  ================================
69
70
71 Initialization
72 --------------
73
74 In order to enable this virtual crypto PMD, user must:
75
76 * Build the multi buffer library (explained in Installation section).
77
78 * Set CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=y in config/common_base.
79
80 To use the PMD in an application, user must:
81
82 * Call rte_vdev_init("crypto_aesni_gcm") within the application.
83
84 * Use --vdev="crypto_aesni_gcm" in the EAL options, which will call rte_vdev_init() internally.
85
86 The following parameters (all optional) can be provided in the previous two calls:
87
88 * socket_id: Specify the socket where the memory for the device is going to be allocated
89   (by default, socket_id will be the socket where the core that is creating the PMD is running on).
90
91 * max_nb_queue_pairs: Specify the maximum number of queue pairs in the device (8 by default).
92
93 * max_nb_sessions: Specify the maximum number of sessions that can be created (2048 by default).
94
95 Example:
96
97 .. code-block:: console
98
99     ./l2fwd-crypto -l 1 -n 4 --vdev="crypto_aesni_gcm,socket_id=0,max_nb_sessions=128" \
100     -- -p 1 --cdev SW --chain AEAD --aead_algo "aes-gcm"