New upstream version 18.08
[deb_dpdk.git] / drivers / crypto / aesni_mb / rte_aesni_mb_pmd_private.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2016 Intel Corporation
3  */
4
5 #ifndef _RTE_AESNI_MB_PMD_PRIVATE_H_
6 #define _RTE_AESNI_MB_PMD_PRIVATE_H_
7
8 #include "aesni_mb_ops.h"
9
10 /*
11  * IMB_VERSION_NUM macro was introduced in version Multi-buffer 0.50,
12  * so if macro is not defined, it means that the version is 0.49.
13  */
14 #if !defined(IMB_VERSION_NUM)
15 #define IMB_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
16 #define IMB_VERSION_NUM IMB_VERSION(0, 49, 0)
17 #endif
18
19 #define CRYPTODEV_NAME_AESNI_MB_PMD     crypto_aesni_mb
20 /**< AES-NI Multi buffer PMD device name */
21
22 /** AESNI_MB PMD LOGTYPE DRIVER */
23 int aesni_mb_logtype_driver;
24
25 #define AESNI_MB_LOG(level, fmt, ...)  \
26         rte_log(RTE_LOG_ ## level, aesni_mb_logtype_driver,  \
27                         "%s() line %u: " fmt "\n", __func__, __LINE__,  \
28                                         ## __VA_ARGS__)
29
30
31 #define HMAC_IPAD_VALUE                 (0x36)
32 #define HMAC_OPAD_VALUE                 (0x5C)
33
34 /* Maximum length for digest (SHA-512 truncated needs 32 bytes) */
35 #define DIGEST_LENGTH_MAX 32
36 static const unsigned auth_blocksize[] = {
37                 [MD5]           = 64,
38                 [SHA1]          = 64,
39                 [SHA_224]       = 64,
40                 [SHA_256]       = 64,
41                 [SHA_384]       = 128,
42                 [SHA_512]       = 128,
43                 [AES_XCBC]      = 16,
44                 [AES_CCM]       = 16,
45 };
46
47 /**
48  * Get the blocksize in bytes for a specified authentication algorithm
49  *
50  * @Note: this function will not return a valid value for a non-valid
51  * authentication algorithm
52  */
53 static inline unsigned
54 get_auth_algo_blocksize(JOB_HASH_ALG algo)
55 {
56         return auth_blocksize[algo];
57 }
58
59 static const unsigned auth_truncated_digest_byte_lengths[] = {
60                 [MD5]           = 12,
61                 [SHA1]          = 12,
62                 [SHA_224]       = 14,
63                 [SHA_256]       = 16,
64                 [SHA_384]       = 24,
65                 [SHA_512]       = 32,
66                 [AES_XCBC]      = 12,
67                 [AES_CMAC]      = 16,
68                 [AES_CCM]       = 8,
69                 [NULL_HASH]     = 0
70 };
71
72 /**
73  * Get the IPsec specified truncated length in bytes of the HMAC digest for a
74  * specified authentication algorithm
75  *
76  * @Note: this function will not return a valid value for a non-valid
77  * authentication algorithm
78  */
79 static inline unsigned
80 get_truncated_digest_byte_length(JOB_HASH_ALG algo)
81 {
82         return auth_truncated_digest_byte_lengths[algo];
83 }
84
85 static const unsigned auth_digest_byte_lengths[] = {
86                 [MD5]           = 16,
87                 [SHA1]          = 20,
88                 [SHA_224]       = 28,
89                 [SHA_256]       = 32,
90                 [SHA_384]       = 48,
91                 [SHA_512]       = 64,
92                 [AES_XCBC]      = 16,
93                 [AES_CMAC]      = 16,
94                 [NULL_HASH]             = 0
95 };
96
97 /**
98  * Get the output digest size in bytes for a specified authentication algorithm
99  *
100  * @Note: this function will not return a valid value for a non-valid
101  * authentication algorithm
102  */
103 static inline unsigned
104 get_digest_byte_length(JOB_HASH_ALG algo)
105 {
106         return auth_digest_byte_lengths[algo];
107 }
108
109 enum aesni_mb_operation {
110         AESNI_MB_OP_HASH_CIPHER,
111         AESNI_MB_OP_CIPHER_HASH,
112         AESNI_MB_OP_HASH_ONLY,
113         AESNI_MB_OP_CIPHER_ONLY,
114         AESNI_MB_OP_AEAD_HASH_CIPHER,
115         AESNI_MB_OP_AEAD_CIPHER_HASH,
116         AESNI_MB_OP_NOT_SUPPORTED
117 };
118
119 /** private data structure for each virtual AESNI device */
120 struct aesni_mb_private {
121         enum aesni_mb_vector_mode vector_mode;
122         /**< CPU vector instruction set mode */
123         unsigned max_nb_queue_pairs;
124         /**< Max number of queue pairs supported by device */
125 };
126
127 /** AESNI Multi buffer queue pair */
128 struct aesni_mb_qp {
129         uint16_t id;
130         /**< Queue Pair Identifier */
131         char name[RTE_CRYPTODEV_NAME_MAX_LEN];
132         /**< Unique Queue Pair Name */
133         const struct aesni_mb_op_fns *op_fns;
134         /**< Vector mode dependent pointer table of the multi-buffer APIs */
135         MB_MGR *mb_mgr;
136         /**< Multi-buffer instance */
137         struct rte_ring *ingress_queue;
138        /**< Ring for placing operations ready for processing */
139         struct rte_mempool *sess_mp;
140         /**< Session Mempool */
141         struct rte_cryptodev_stats stats;
142         /**< Queue pair statistics */
143         uint8_t digest_idx;
144         /**< Index of the next slot to be used in temp_digests,
145          * to store the digest for a given operation
146          */
147         uint8_t temp_digests[MAX_JOBS][DIGEST_LENGTH_MAX];
148         /**< Buffers used to store the digest generated
149          * by the driver when verifying a digest provided
150          * by the user (using authentication verify operation)
151          */
152 } __rte_cache_aligned;
153
154 /** AES-NI multi-buffer private session structure */
155 struct aesni_mb_session {
156         JOB_CHAIN_ORDER chain_order;
157         struct {
158                 uint16_t length;
159                 uint16_t offset;
160         } iv;
161         /**< IV parameters */
162
163         /** Cipher Parameters */
164         struct {
165                 /** Cipher direction - encrypt / decrypt */
166                 JOB_CIPHER_DIRECTION direction;
167                 /** Cipher mode - CBC / Counter */
168                 JOB_CIPHER_MODE mode;
169
170                 uint64_t key_length_in_bytes;
171
172                 union {
173                         struct {
174                                 uint32_t encode[60] __rte_aligned(16);
175                                 /**< encode key */
176                                 uint32_t decode[60] __rte_aligned(16);
177                                 /**< decode key */
178                         } expanded_aes_keys;
179                         struct {
180                                 const void *ks_ptr[3];
181                                 uint64_t key[3][16];
182                         } exp_3des_keys;
183                 };
184                 /**< Expanded AES keys - Allocating space to
185                  * contain the maximum expanded key size which
186                  * is 240 bytes for 256 bit AES, calculate by:
187                  * ((key size (bytes)) *
188                  * ((number of rounds) + 1))
189                  */
190         } cipher;
191
192         /** Authentication Parameters */
193         struct {
194                 JOB_HASH_ALG algo; /**< Authentication Algorithm */
195                 enum rte_crypto_auth_operation operation;
196                 /**< auth operation generate or verify */
197                 union {
198                         struct {
199                                 uint8_t inner[128] __rte_aligned(16);
200                                 /**< inner pad */
201                                 uint8_t outer[128] __rte_aligned(16);
202                                 /**< outer pad */
203                         } pads;
204                         /**< HMAC Authentication pads -
205                          * allocating space for the maximum pad
206                          * size supported which is 128 bytes for
207                          * SHA512
208                          */
209
210                         struct {
211                             uint32_t k1_expanded[44] __rte_aligned(16);
212                             /**< k1 (expanded key). */
213                             uint8_t k2[16] __rte_aligned(16);
214                             /**< k2. */
215                             uint8_t k3[16] __rte_aligned(16);
216                             /**< k3. */
217                         } xcbc;
218
219                         struct {
220                                 uint32_t expkey[60] __rte_aligned(16);
221                                                     /**< k1 (expanded key). */
222                                 uint32_t skey1[4] __rte_aligned(16);
223                                                     /**< k2. */
224                                 uint32_t skey2[4] __rte_aligned(16);
225                                                     /**< k3. */
226                         } cmac;
227                         /**< Expanded XCBC authentication keys */
228                 };
229         /** digest size */
230         uint16_t digest_len;
231
232         } auth;
233         struct {
234                 /** AAD data length */
235                 uint16_t aad_len;
236         } aead;
237 } __rte_cache_aligned;
238
239
240 /**
241  *
242  */
243 extern int
244 aesni_mb_set_session_parameters(const struct aesni_mb_op_fns *mb_ops,
245                 struct aesni_mb_session *sess,
246                 const struct rte_crypto_sym_xform *xform);
247
248
249 /** device specific operations function pointer structure */
250 extern struct rte_cryptodev_ops *rte_aesni_mb_pmd_ops;
251
252
253
254 #endif /* _RTE_AESNI_MB_PMD_PRIVATE_H_ */