examples/vhost: fix use after free on drain
[dpdk.git] / drivers / crypto / qat / qat_sym.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2019 Intel Corporation
3  */
4
5 #include <openssl/evp.h>
6
7 #include <rte_mempool.h>
8 #include <rte_mbuf.h>
9 #include <rte_crypto_sym.h>
10 #include <rte_bus_pci.h>
11 #include <rte_byteorder.h>
12
13 #include "qat_sym.h"
14
15
16 /** Decrypt a single partial block
17  *  Depends on openssl libcrypto
18  *  Uses ECB+XOR to do CFB encryption, same result, more performant
19  */
20 static inline int
21 bpi_cipher_decrypt(uint8_t *src, uint8_t *dst,
22                 uint8_t *iv, int ivlen, int srclen,
23                 void *bpi_ctx)
24 {
25         EVP_CIPHER_CTX *ctx = (EVP_CIPHER_CTX *)bpi_ctx;
26         int encrypted_ivlen;
27         uint8_t encrypted_iv[BPI_MAX_ENCR_IV_LEN];
28         uint8_t *encr = encrypted_iv;
29
30         /* ECB method: encrypt (not decrypt!) the IV, then XOR with plaintext */
31         if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, iv, ivlen)
32                                                                 <= 0)
33                 goto cipher_decrypt_err;
34
35         for (; srclen != 0; --srclen, ++dst, ++src, ++encr)
36                 *dst = *src ^ *encr;
37
38         return 0;
39
40 cipher_decrypt_err:
41         QAT_DP_LOG(ERR, "libcrypto ECB cipher decrypt for BPI IV failed");
42         return -EINVAL;
43 }
44
45
46 static inline uint32_t
47 qat_bpicipher_preprocess(struct qat_sym_session *ctx,
48                                 struct rte_crypto_op *op)
49 {
50         int block_len = qat_cipher_get_block_size(ctx->qat_cipher_alg);
51         struct rte_crypto_sym_op *sym_op = op->sym;
52         uint8_t last_block_len = block_len > 0 ?
53                         sym_op->cipher.data.length % block_len : 0;
54
55         if (last_block_len &&
56                         ctx->qat_dir == ICP_QAT_HW_CIPHER_DECRYPT) {
57
58                 /* Decrypt last block */
59                 uint8_t *last_block, *dst, *iv;
60                 uint32_t last_block_offset = sym_op->cipher.data.offset +
61                                 sym_op->cipher.data.length - last_block_len;
62                 last_block = (uint8_t *) rte_pktmbuf_mtod_offset(sym_op->m_src,
63                                 uint8_t *, last_block_offset);
64
65                 if (unlikely((sym_op->m_dst != NULL)
66                                 && (sym_op->m_dst != sym_op->m_src)))
67                         /* out-of-place operation (OOP) */
68                         dst = (uint8_t *) rte_pktmbuf_mtod_offset(sym_op->m_dst,
69                                                 uint8_t *, last_block_offset);
70                 else
71                         dst = last_block;
72
73                 if (last_block_len < sym_op->cipher.data.length)
74                         /* use previous block ciphertext as IV */
75                         iv = last_block - block_len;
76                 else
77                         /* runt block, i.e. less than one full block */
78                         iv = rte_crypto_op_ctod_offset(op, uint8_t *,
79                                         ctx->cipher_iv.offset);
80
81 #if RTE_LOG_DP_LEVEL >= RTE_LOG_DEBUG
82                 QAT_DP_HEXDUMP_LOG(DEBUG, "BPI: src before pre-process:",
83                         last_block, last_block_len);
84                 if (sym_op->m_dst != NULL)
85                         QAT_DP_HEXDUMP_LOG(DEBUG, "BPI:dst before pre-process:",
86                         dst, last_block_len);
87 #endif
88                 bpi_cipher_decrypt(last_block, dst, iv, block_len,
89                                 last_block_len, ctx->bpi_ctx);
90 #if RTE_LOG_DP_LEVEL >= RTE_LOG_DEBUG
91                 QAT_DP_HEXDUMP_LOG(DEBUG, "BPI: src after pre-process:",
92                         last_block, last_block_len);
93                 if (sym_op->m_dst != NULL)
94                         QAT_DP_HEXDUMP_LOG(DEBUG, "BPI: dst after pre-process:",
95                         dst, last_block_len);
96 #endif
97         }
98
99         return sym_op->cipher.data.length - last_block_len;
100 }
101
102 static inline void
103 set_cipher_iv(uint16_t iv_length, uint16_t iv_offset,
104                 struct icp_qat_fw_la_cipher_req_params *cipher_param,
105                 struct rte_crypto_op *op,
106                 struct icp_qat_fw_la_bulk_req *qat_req)
107 {
108         /* copy IV into request if it fits */
109         if (iv_length <= sizeof(cipher_param->u.cipher_IV_array)) {
110                 rte_memcpy(cipher_param->u.cipher_IV_array,
111                                 rte_crypto_op_ctod_offset(op, uint8_t *,
112                                         iv_offset),
113                                 iv_length);
114         } else {
115                 ICP_QAT_FW_LA_CIPH_IV_FLD_FLAG_SET(
116                                 qat_req->comn_hdr.serv_specif_flags,
117                                 ICP_QAT_FW_CIPH_IV_64BIT_PTR);
118                 cipher_param->u.s.cipher_IV_ptr =
119                                 rte_crypto_op_ctophys_offset(op,
120                                         iv_offset);
121         }
122 }
123
124 /** Set IV for CCM is special case, 0th byte is set to q-1
125  *  where q is padding of nonce in 16 byte block
126  */
127 static inline void
128 set_cipher_iv_ccm(uint16_t iv_length, uint16_t iv_offset,
129                 struct icp_qat_fw_la_cipher_req_params *cipher_param,
130                 struct rte_crypto_op *op, uint8_t q, uint8_t aad_len_field_sz)
131 {
132         rte_memcpy(((uint8_t *)cipher_param->u.cipher_IV_array) +
133                         ICP_QAT_HW_CCM_NONCE_OFFSET,
134                         rte_crypto_op_ctod_offset(op, uint8_t *,
135                                 iv_offset) + ICP_QAT_HW_CCM_NONCE_OFFSET,
136                         iv_length);
137         *(uint8_t *)&cipher_param->u.cipher_IV_array[0] =
138                         q - ICP_QAT_HW_CCM_NONCE_OFFSET;
139
140         if (aad_len_field_sz)
141                 rte_memcpy(&op->sym->aead.aad.data[ICP_QAT_HW_CCM_NONCE_OFFSET],
142                         rte_crypto_op_ctod_offset(op, uint8_t *,
143                                 iv_offset) + ICP_QAT_HW_CCM_NONCE_OFFSET,
144                         iv_length);
145 }
146
147 /** Handle Single-Pass AES-GMAC on QAT GEN3 */
148 static inline void
149 handle_spc_gmac(struct qat_sym_session *ctx, struct rte_crypto_op *op,
150                 struct qat_sym_op_cookie *cookie,
151                 struct icp_qat_fw_la_bulk_req *qat_req)
152 {
153         static const uint32_t ver_key_offset =
154                         sizeof(struct icp_qat_hw_auth_setup) +
155                         ICP_QAT_HW_GALOIS_128_STATE1_SZ +
156                         ICP_QAT_HW_GALOIS_H_SZ + ICP_QAT_HW_GALOIS_LEN_A_SZ +
157                         ICP_QAT_HW_GALOIS_E_CTR0_SZ +
158                         sizeof(struct icp_qat_hw_cipher_config);
159         struct icp_qat_fw_cipher_cd_ctrl_hdr *cipher_cd_ctrl =
160                         (void *) &qat_req->cd_ctrl;
161         struct icp_qat_fw_la_cipher_req_params *cipher_param =
162                         (void *) &qat_req->serv_specif_rqpars;
163         uint32_t data_length = op->sym->auth.data.length;
164
165         /* Fill separate Content Descriptor for this op */
166         rte_memcpy(cookie->opt.spc_gmac.cd_cipher.key,
167                         ctx->auth_op == ICP_QAT_HW_AUTH_GENERATE ?
168                                 ctx->cd.cipher.key :
169                                 RTE_PTR_ADD(&ctx->cd, ver_key_offset),
170                         ctx->auth_key_length);
171         cookie->opt.spc_gmac.cd_cipher.cipher_config.val =
172                         ICP_QAT_HW_CIPHER_CONFIG_BUILD(
173                                 ICP_QAT_HW_CIPHER_AEAD_MODE,
174                                 ctx->qat_cipher_alg,
175                                 ICP_QAT_HW_CIPHER_NO_CONVERT,
176                                 (ctx->auth_op == ICP_QAT_HW_AUTH_GENERATE ?
177                                         ICP_QAT_HW_CIPHER_ENCRYPT :
178                                         ICP_QAT_HW_CIPHER_DECRYPT));
179         QAT_FIELD_SET(cookie->opt.spc_gmac.cd_cipher.cipher_config.val,
180                         ctx->digest_length,
181                         QAT_CIPHER_AEAD_HASH_CMP_LEN_BITPOS,
182                         QAT_CIPHER_AEAD_HASH_CMP_LEN_MASK);
183         cookie->opt.spc_gmac.cd_cipher.cipher_config.reserved =
184                         ICP_QAT_HW_CIPHER_CONFIG_BUILD_UPPER(data_length);
185
186         /* Update the request */
187         qat_req->cd_pars.u.s.content_desc_addr =
188                         cookie->opt.spc_gmac.cd_phys_addr;
189         qat_req->cd_pars.u.s.content_desc_params_sz = RTE_ALIGN_CEIL(
190                         sizeof(struct icp_qat_hw_cipher_config) +
191                         ctx->auth_key_length, 8) >> 3;
192         qat_req->comn_mid.src_length = data_length;
193         qat_req->comn_mid.dst_length = 0;
194
195         cipher_param->spc_aad_addr = 0;
196         cipher_param->spc_auth_res_addr = op->sym->auth.digest.phys_addr;
197         cipher_param->spc_aad_sz = data_length;
198         cipher_param->reserved = 0;
199         cipher_param->spc_auth_res_sz = ctx->digest_length;
200
201         qat_req->comn_hdr.service_cmd_id = ICP_QAT_FW_LA_CMD_CIPHER;
202         cipher_cd_ctrl->cipher_cfg_offset = 0;
203         ICP_QAT_FW_COMN_CURR_ID_SET(cipher_cd_ctrl, ICP_QAT_FW_SLICE_CIPHER);
204         ICP_QAT_FW_COMN_NEXT_ID_SET(cipher_cd_ctrl, ICP_QAT_FW_SLICE_DRAM_WR);
205         ICP_QAT_FW_LA_SINGLE_PASS_PROTO_FLAG_SET(
206                         qat_req->comn_hdr.serv_specif_flags,
207                         ICP_QAT_FW_LA_SINGLE_PASS_PROTO);
208         ICP_QAT_FW_LA_PROTO_SET(
209                         qat_req->comn_hdr.serv_specif_flags,
210                         ICP_QAT_FW_LA_NO_PROTO);
211 }
212
213 int
214 qat_sym_build_request(void *in_op, uint8_t *out_msg,
215                 void *op_cookie, enum qat_device_gen qat_dev_gen)
216 {
217         int ret = 0;
218         struct qat_sym_session *ctx = NULL;
219         struct icp_qat_fw_la_cipher_req_params *cipher_param;
220         struct icp_qat_fw_la_cipher_20_req_params *cipher_param20;
221         struct icp_qat_fw_la_auth_req_params *auth_param;
222         register struct icp_qat_fw_la_bulk_req *qat_req;
223         uint8_t do_auth = 0, do_cipher = 0, do_aead = 0;
224         uint32_t cipher_len = 0, cipher_ofs = 0;
225         uint32_t auth_len = 0, auth_ofs = 0;
226         uint32_t min_ofs = 0;
227         uint64_t src_buf_start = 0, dst_buf_start = 0;
228         uint64_t auth_data_end = 0;
229         uint8_t do_sgl = 0;
230         uint8_t in_place = 1;
231         int alignment_adjustment = 0;
232         int oop_shift = 0;
233         struct rte_crypto_op *op = (struct rte_crypto_op *)in_op;
234         struct qat_sym_op_cookie *cookie =
235                                 (struct qat_sym_op_cookie *)op_cookie;
236
237         if (unlikely(op->type != RTE_CRYPTO_OP_TYPE_SYMMETRIC)) {
238                 QAT_DP_LOG(ERR, "QAT PMD only supports symmetric crypto "
239                                 "operation requests, op (%p) is not a "
240                                 "symmetric operation.", op);
241                 return -EINVAL;
242         }
243
244         if (unlikely(op->sess_type == RTE_CRYPTO_OP_SESSIONLESS)) {
245                 QAT_DP_LOG(ERR, "QAT PMD only supports session oriented"
246                                 " requests, op (%p) is sessionless.", op);
247                 return -EINVAL;
248         } else if (op->sess_type == RTE_CRYPTO_OP_WITH_SESSION) {
249                 ctx = (struct qat_sym_session *)get_sym_session_private_data(
250                                 op->sym->session, qat_sym_driver_id);
251 #ifdef RTE_LIB_SECURITY
252         } else {
253                 ctx = (struct qat_sym_session *)get_sec_session_private_data(
254                                 op->sym->sec_session);
255                 if (likely(ctx)) {
256                         if (unlikely(ctx->bpi_ctx == NULL)) {
257                                 QAT_DP_LOG(ERR, "QAT PMD only supports security"
258                                                 " operation requests for"
259                                                 " DOCSIS, op (%p) is not for"
260                                                 " DOCSIS.", op);
261                                 return -EINVAL;
262                         } else if (unlikely(((op->sym->m_dst != NULL) &&
263                                         (op->sym->m_dst != op->sym->m_src)) ||
264                                         op->sym->m_src->nb_segs > 1)) {
265                                 QAT_DP_LOG(ERR, "OOP and/or multi-segment"
266                                                 " buffers not supported for"
267                                                 " DOCSIS security.");
268                                 op->status = RTE_CRYPTO_OP_STATUS_INVALID_ARGS;
269                                 return -EINVAL;
270                         }
271                 }
272 #endif
273         }
274
275         if (unlikely(ctx == NULL)) {
276                 QAT_DP_LOG(ERR, "Session was not created for this device");
277                 return -EINVAL;
278         }
279
280         if (unlikely(ctx->min_qat_dev_gen > qat_dev_gen)) {
281                 QAT_DP_LOG(ERR, "Session alg not supported on this device gen");
282                 op->status = RTE_CRYPTO_OP_STATUS_INVALID_SESSION;
283                 return -EINVAL;
284         }
285
286         qat_req = (struct icp_qat_fw_la_bulk_req *)out_msg;
287         rte_mov128((uint8_t *)qat_req, (const uint8_t *)&(ctx->fw_req));
288         qat_req->comn_mid.opaque_data = (uint64_t)(uintptr_t)op;
289         cipher_param = (void *)&qat_req->serv_specif_rqpars;
290         cipher_param20 = (void *)&qat_req->serv_specif_rqpars;
291         auth_param = (void *)((uint8_t *)cipher_param +
292                         ICP_QAT_FW_HASH_REQUEST_PARAMETERS_OFFSET);
293
294         if ((ctx->qat_cmd == ICP_QAT_FW_LA_CMD_HASH_CIPHER ||
295                         ctx->qat_cmd == ICP_QAT_FW_LA_CMD_CIPHER_HASH) &&
296                         !ctx->is_gmac) {
297                 /* AES-GCM or AES-CCM */
298                 if (ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_GALOIS_128 ||
299                         ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_GALOIS_64 ||
300                         (ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_AES128
301                         && ctx->qat_mode == ICP_QAT_HW_CIPHER_CTR_MODE
302                         && ctx->qat_hash_alg ==
303                                         ICP_QAT_HW_AUTH_ALGO_AES_CBC_MAC)) {
304                         do_aead = 1;
305                 } else {
306                         do_auth = 1;
307                         do_cipher = 1;
308                 }
309         } else if (ctx->qat_cmd == ICP_QAT_FW_LA_CMD_AUTH || ctx->is_gmac) {
310                 do_auth = 1;
311                 do_cipher = 0;
312         } else if (ctx->qat_cmd == ICP_QAT_FW_LA_CMD_CIPHER) {
313                 do_auth = 0;
314                 do_cipher = 1;
315         }
316
317         if (do_cipher) {
318
319                 if (ctx->qat_cipher_alg ==
320                                          ICP_QAT_HW_CIPHER_ALGO_SNOW_3G_UEA2 ||
321                         ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_KASUMI ||
322                         ctx->qat_cipher_alg ==
323                                 ICP_QAT_HW_CIPHER_ALGO_ZUC_3G_128_EEA3) {
324
325                         if (unlikely(
326                             (op->sym->cipher.data.length % BYTE_LENGTH != 0) ||
327                             (op->sym->cipher.data.offset % BYTE_LENGTH != 0))) {
328                                 QAT_DP_LOG(ERR,
329                   "SNOW3G/KASUMI/ZUC in QAT PMD only supports byte aligned values");
330                                 op->status = RTE_CRYPTO_OP_STATUS_INVALID_ARGS;
331                                 return -EINVAL;
332                         }
333                         cipher_len = op->sym->cipher.data.length >> 3;
334                         cipher_ofs = op->sym->cipher.data.offset >> 3;
335
336                 } else if (ctx->bpi_ctx) {
337                         /* DOCSIS - only send complete blocks to device.
338                          * Process any partial block using CFB mode.
339                          * Even if 0 complete blocks, still send this to device
340                          * to get into rx queue for post-process and dequeuing
341                          */
342                         cipher_len = qat_bpicipher_preprocess(ctx, op);
343                         cipher_ofs = op->sym->cipher.data.offset;
344                 } else {
345                         cipher_len = op->sym->cipher.data.length;
346                         cipher_ofs = op->sym->cipher.data.offset;
347                 }
348
349                 set_cipher_iv(ctx->cipher_iv.length, ctx->cipher_iv.offset,
350                                 cipher_param, op, qat_req);
351                 min_ofs = cipher_ofs;
352         }
353
354         if (do_auth) {
355
356                 if (ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_SNOW_3G_UIA2 ||
357                         ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_KASUMI_F9 ||
358                         ctx->qat_hash_alg ==
359                                 ICP_QAT_HW_AUTH_ALGO_ZUC_3G_128_EIA3) {
360                         if (unlikely(
361                             (op->sym->auth.data.offset % BYTE_LENGTH != 0) ||
362                             (op->sym->auth.data.length % BYTE_LENGTH != 0))) {
363                                 QAT_DP_LOG(ERR,
364                 "For SNOW3G/KASUMI/ZUC, QAT PMD only supports byte aligned values");
365                                 op->status = RTE_CRYPTO_OP_STATUS_INVALID_ARGS;
366                                 return -EINVAL;
367                         }
368                         auth_ofs = op->sym->auth.data.offset >> 3;
369                         auth_len = op->sym->auth.data.length >> 3;
370
371                         auth_param->u1.aad_adr =
372                                         rte_crypto_op_ctophys_offset(op,
373                                                         ctx->auth_iv.offset);
374
375                 } else if (ctx->qat_hash_alg ==
376                                         ICP_QAT_HW_AUTH_ALGO_GALOIS_128 ||
377                                 ctx->qat_hash_alg ==
378                                         ICP_QAT_HW_AUTH_ALGO_GALOIS_64) {
379                         /* AES-GMAC */
380                         set_cipher_iv(ctx->auth_iv.length,
381                                 ctx->auth_iv.offset,
382                                 cipher_param, op, qat_req);
383                         auth_ofs = op->sym->auth.data.offset;
384                         auth_len = op->sym->auth.data.length;
385
386                         auth_param->u1.aad_adr = 0;
387                         auth_param->u2.aad_sz = 0;
388
389                 } else {
390                         auth_ofs = op->sym->auth.data.offset;
391                         auth_len = op->sym->auth.data.length;
392
393                 }
394                 min_ofs = auth_ofs;
395
396                 if (ctx->qat_hash_alg != ICP_QAT_HW_AUTH_ALGO_NULL ||
397                                 ctx->auth_op == ICP_QAT_HW_AUTH_VERIFY)
398                         auth_param->auth_res_addr =
399                                         op->sym->auth.digest.phys_addr;
400
401         }
402
403         if (do_aead) {
404                 /*
405                  * This address may used for setting AAD physical pointer
406                  * into IV offset from op
407                  */
408                 rte_iova_t aad_phys_addr_aead = op->sym->aead.aad.phys_addr;
409                 if (ctx->qat_hash_alg ==
410                                 ICP_QAT_HW_AUTH_ALGO_GALOIS_128 ||
411                                 ctx->qat_hash_alg ==
412                                         ICP_QAT_HW_AUTH_ALGO_GALOIS_64) {
413
414                         set_cipher_iv(ctx->cipher_iv.length,
415                                         ctx->cipher_iv.offset,
416                                         cipher_param, op, qat_req);
417
418                 } else if (ctx->qat_hash_alg ==
419                                 ICP_QAT_HW_AUTH_ALGO_AES_CBC_MAC) {
420
421                         /* In case of AES-CCM this may point to user selected
422                          * memory or iv offset in cypto_op
423                          */
424                         uint8_t *aad_data = op->sym->aead.aad.data;
425                         /* This is true AAD length, it not includes 18 bytes of
426                          * preceding data
427                          */
428                         uint8_t aad_ccm_real_len = 0;
429                         uint8_t aad_len_field_sz = 0;
430                         uint32_t msg_len_be =
431                                         rte_bswap32(op->sym->aead.data.length);
432
433                         if (ctx->aad_len > ICP_QAT_HW_CCM_AAD_DATA_OFFSET) {
434                                 aad_len_field_sz = ICP_QAT_HW_CCM_AAD_LEN_INFO;
435                                 aad_ccm_real_len = ctx->aad_len -
436                                         ICP_QAT_HW_CCM_AAD_B0_LEN -
437                                         ICP_QAT_HW_CCM_AAD_LEN_INFO;
438                         } else {
439                                 /*
440                                  * aad_len not greater than 18, so no actual aad
441                                  *  data, then use IV after op for B0 block
442                                  */
443                                 aad_data = rte_crypto_op_ctod_offset(op,
444                                                 uint8_t *,
445                                                 ctx->cipher_iv.offset);
446                                 aad_phys_addr_aead =
447                                                 rte_crypto_op_ctophys_offset(op,
448                                                         ctx->cipher_iv.offset);
449                         }
450
451                         uint8_t q = ICP_QAT_HW_CCM_NQ_CONST -
452                                                         ctx->cipher_iv.length;
453
454                         aad_data[0] = ICP_QAT_HW_CCM_BUILD_B0_FLAGS(
455                                                         aad_len_field_sz,
456                                                         ctx->digest_length, q);
457
458                         if (q > ICP_QAT_HW_CCM_MSG_LEN_MAX_FIELD_SIZE) {
459                                 memcpy(aad_data + ctx->cipher_iv.length +
460                                     ICP_QAT_HW_CCM_NONCE_OFFSET +
461                                     (q - ICP_QAT_HW_CCM_MSG_LEN_MAX_FIELD_SIZE),
462                                     (uint8_t *)&msg_len_be,
463                                     ICP_QAT_HW_CCM_MSG_LEN_MAX_FIELD_SIZE);
464                         } else {
465                                 memcpy(aad_data + ctx->cipher_iv.length +
466                                     ICP_QAT_HW_CCM_NONCE_OFFSET,
467                                     (uint8_t *)&msg_len_be
468                                     + (ICP_QAT_HW_CCM_MSG_LEN_MAX_FIELD_SIZE
469                                     - q), q);
470                         }
471
472                         if (aad_len_field_sz > 0) {
473                                 *(uint16_t *)&aad_data[ICP_QAT_HW_CCM_AAD_B0_LEN]
474                                                 = rte_bswap16(aad_ccm_real_len);
475
476                                 if ((aad_ccm_real_len + aad_len_field_sz)
477                                                 % ICP_QAT_HW_CCM_AAD_B0_LEN) {
478                                         uint8_t pad_len = 0;
479                                         uint8_t pad_idx = 0;
480
481                                         pad_len = ICP_QAT_HW_CCM_AAD_B0_LEN -
482                                         ((aad_ccm_real_len + aad_len_field_sz) %
483                                                 ICP_QAT_HW_CCM_AAD_B0_LEN);
484                                         pad_idx = ICP_QAT_HW_CCM_AAD_B0_LEN +
485                                             aad_ccm_real_len + aad_len_field_sz;
486                                         memset(&aad_data[pad_idx],
487                                                         0, pad_len);
488                                 }
489
490                         }
491
492                         set_cipher_iv_ccm(ctx->cipher_iv.length,
493                                         ctx->cipher_iv.offset,
494                                         cipher_param, op, q,
495                                         aad_len_field_sz);
496
497                 }
498
499                 cipher_len = op->sym->aead.data.length;
500                 cipher_ofs = op->sym->aead.data.offset;
501                 auth_len = op->sym->aead.data.length;
502                 auth_ofs = op->sym->aead.data.offset;
503
504                 auth_param->u1.aad_adr = aad_phys_addr_aead;
505                 auth_param->auth_res_addr = op->sym->aead.digest.phys_addr;
506                 min_ofs = op->sym->aead.data.offset;
507         }
508
509         if (op->sym->m_src->nb_segs > 1 ||
510                         (op->sym->m_dst && op->sym->m_dst->nb_segs > 1))
511                 do_sgl = 1;
512
513         /* adjust for chain case */
514         if (do_cipher && do_auth)
515                 min_ofs = cipher_ofs < auth_ofs ? cipher_ofs : auth_ofs;
516
517         if (unlikely(min_ofs >= rte_pktmbuf_data_len(op->sym->m_src) && do_sgl))
518                 min_ofs = 0;
519
520         if (unlikely((op->sym->m_dst != NULL) &&
521                         (op->sym->m_dst != op->sym->m_src))) {
522                 /* Out-of-place operation (OOP)
523                  * Don't align DMA start. DMA the minimum data-set
524                  * so as not to overwrite data in dest buffer
525                  */
526                 in_place = 0;
527                 src_buf_start =
528                         rte_pktmbuf_iova_offset(op->sym->m_src, min_ofs);
529                 dst_buf_start =
530                         rte_pktmbuf_iova_offset(op->sym->m_dst, min_ofs);
531                 oop_shift = min_ofs;
532
533         } else {
534                 /* In-place operation
535                  * Start DMA at nearest aligned address below min_ofs
536                  */
537                 src_buf_start =
538                         rte_pktmbuf_iova_offset(op->sym->m_src, min_ofs)
539                                                 & QAT_64_BTYE_ALIGN_MASK;
540
541                 if (unlikely((rte_pktmbuf_iova(op->sym->m_src) -
542                                         rte_pktmbuf_headroom(op->sym->m_src))
543                                                         > src_buf_start)) {
544                         /* alignment has pushed addr ahead of start of mbuf
545                          * so revert and take the performance hit
546                          */
547                         src_buf_start =
548                                 rte_pktmbuf_iova_offset(op->sym->m_src,
549                                                                 min_ofs);
550                 }
551                 dst_buf_start = src_buf_start;
552
553                 /* remember any adjustment for later, note, can be +/- */
554                 alignment_adjustment = src_buf_start -
555                         rte_pktmbuf_iova_offset(op->sym->m_src, min_ofs);
556         }
557
558         if (do_cipher || do_aead) {
559                 cipher_param->cipher_offset =
560                                 (uint32_t)rte_pktmbuf_iova_offset(
561                                 op->sym->m_src, cipher_ofs) - src_buf_start;
562                 cipher_param->cipher_length = cipher_len;
563         } else {
564                 cipher_param->cipher_offset = 0;
565                 cipher_param->cipher_length = 0;
566         }
567
568         if (!ctx->is_single_pass) {
569                 /* Do not let to overwrite spc_aad len */
570                 if (do_auth || do_aead) {
571                         auth_param->auth_off =
572                                 (uint32_t)rte_pktmbuf_iova_offset(
573                                 op->sym->m_src, auth_ofs) - src_buf_start;
574                         auth_param->auth_len = auth_len;
575                 } else {
576                         auth_param->auth_off = 0;
577                         auth_param->auth_len = 0;
578                 }
579         }
580
581         qat_req->comn_mid.dst_length =
582                 qat_req->comn_mid.src_length =
583                 (cipher_param->cipher_offset + cipher_param->cipher_length)
584                 > (auth_param->auth_off + auth_param->auth_len) ?
585                 (cipher_param->cipher_offset + cipher_param->cipher_length)
586                 : (auth_param->auth_off + auth_param->auth_len);
587
588         if (do_auth && do_cipher) {
589                 /* Handle digest-encrypted cases, i.e.
590                  * auth-gen-then-cipher-encrypt and
591                  * cipher-decrypt-then-auth-verify
592                  */
593                  /* First find the end of the data */
594                 if (do_sgl) {
595                         uint32_t remaining_off = auth_param->auth_off +
596                                 auth_param->auth_len + alignment_adjustment + oop_shift;
597                         struct rte_mbuf *sgl_buf =
598                                 (in_place ?
599                                         op->sym->m_src : op->sym->m_dst);
600
601                         while (remaining_off >= rte_pktmbuf_data_len(sgl_buf)
602                                         && sgl_buf->next != NULL) {
603                                 remaining_off -= rte_pktmbuf_data_len(sgl_buf);
604                                 sgl_buf = sgl_buf->next;
605                         }
606
607                         auth_data_end = (uint64_t)rte_pktmbuf_iova_offset(
608                                 sgl_buf, remaining_off);
609                 } else {
610                         auth_data_end = (in_place ?
611                                 src_buf_start : dst_buf_start) +
612                                 auth_param->auth_off + auth_param->auth_len;
613                 }
614                 /* Then check if digest-encrypted conditions are met */
615                 if ((auth_param->auth_off + auth_param->auth_len <
616                                         cipher_param->cipher_offset +
617                                         cipher_param->cipher_length) &&
618                                 (op->sym->auth.digest.phys_addr ==
619                                         auth_data_end)) {
620                         /* Handle partial digest encryption */
621                         if (cipher_param->cipher_offset +
622                                         cipher_param->cipher_length <
623                                         auth_param->auth_off +
624                                         auth_param->auth_len +
625                                         ctx->digest_length)
626                                 qat_req->comn_mid.dst_length =
627                                         qat_req->comn_mid.src_length =
628                                         auth_param->auth_off +
629                                         auth_param->auth_len +
630                                         ctx->digest_length;
631                         struct icp_qat_fw_comn_req_hdr *header =
632                                 &qat_req->comn_hdr;
633                         ICP_QAT_FW_LA_DIGEST_IN_BUFFER_SET(
634                                 header->serv_specif_flags,
635                                 ICP_QAT_FW_LA_DIGEST_IN_BUFFER);
636                 }
637         }
638
639         if (do_sgl) {
640
641                 ICP_QAT_FW_COMN_PTR_TYPE_SET(qat_req->comn_hdr.comn_req_flags,
642                                 QAT_COMN_PTR_TYPE_SGL);
643                 ret = qat_sgl_fill_array(op->sym->m_src,
644                    (int64_t)(src_buf_start - rte_pktmbuf_iova(op->sym->m_src)),
645                    &cookie->qat_sgl_src,
646                    qat_req->comn_mid.src_length,
647                    QAT_SYM_SGL_MAX_NUMBER);
648
649                 if (unlikely(ret)) {
650                         QAT_DP_LOG(ERR, "QAT PMD Cannot fill sgl array");
651                         return ret;
652                 }
653
654                 if (in_place)
655                         qat_req->comn_mid.dest_data_addr =
656                                 qat_req->comn_mid.src_data_addr =
657                                 cookie->qat_sgl_src_phys_addr;
658                 else {
659                         ret = qat_sgl_fill_array(op->sym->m_dst,
660                                 (int64_t)(dst_buf_start -
661                                           rte_pktmbuf_iova(op->sym->m_dst)),
662                                  &cookie->qat_sgl_dst,
663                                  qat_req->comn_mid.dst_length,
664                                  QAT_SYM_SGL_MAX_NUMBER);
665
666                         if (unlikely(ret)) {
667                                 QAT_DP_LOG(ERR, "QAT PMD can't fill sgl array");
668                                 return ret;
669                         }
670
671                         qat_req->comn_mid.src_data_addr =
672                                 cookie->qat_sgl_src_phys_addr;
673                         qat_req->comn_mid.dest_data_addr =
674                                         cookie->qat_sgl_dst_phys_addr;
675                 }
676                 qat_req->comn_mid.src_length = 0;
677                 qat_req->comn_mid.dst_length = 0;
678         } else {
679                 qat_req->comn_mid.src_data_addr = src_buf_start;
680                 qat_req->comn_mid.dest_data_addr = dst_buf_start;
681         }
682
683         if (ctx->is_single_pass) {
684                 if (ctx->is_ucs) {
685                         /* GEN 4 */
686                         cipher_param20->spc_aad_addr =
687                                 op->sym->aead.aad.phys_addr;
688                         cipher_param20->spc_auth_res_addr =
689                                 op->sym->aead.digest.phys_addr;
690                 } else {
691                         cipher_param->spc_aad_addr =
692                                 op->sym->aead.aad.phys_addr;
693                         cipher_param->spc_auth_res_addr =
694                                         op->sym->aead.digest.phys_addr;
695                 }
696         } else if (ctx->is_single_pass_gmac &&
697                        op->sym->auth.data.length <= QAT_AES_GMAC_SPC_MAX_SIZE) {
698                 /* Handle Single-Pass AES-GMAC */
699                 handle_spc_gmac(ctx, op, cookie, qat_req);
700         }
701
702 #if RTE_LOG_DP_LEVEL >= RTE_LOG_DEBUG
703         QAT_DP_HEXDUMP_LOG(DEBUG, "qat_req:", qat_req,
704                         sizeof(struct icp_qat_fw_la_bulk_req));
705         QAT_DP_HEXDUMP_LOG(DEBUG, "src_data:",
706                         rte_pktmbuf_mtod(op->sym->m_src, uint8_t*),
707                         rte_pktmbuf_data_len(op->sym->m_src));
708         if (do_cipher) {
709                 uint8_t *cipher_iv_ptr = rte_crypto_op_ctod_offset(op,
710                                                 uint8_t *,
711                                                 ctx->cipher_iv.offset);
712                 QAT_DP_HEXDUMP_LOG(DEBUG, "cipher iv:", cipher_iv_ptr,
713                                 ctx->cipher_iv.length);
714         }
715
716         if (do_auth) {
717                 if (ctx->auth_iv.length) {
718                         uint8_t *auth_iv_ptr = rte_crypto_op_ctod_offset(op,
719                                                         uint8_t *,
720                                                         ctx->auth_iv.offset);
721                         QAT_DP_HEXDUMP_LOG(DEBUG, "auth iv:", auth_iv_ptr,
722                                                 ctx->auth_iv.length);
723                 }
724                 QAT_DP_HEXDUMP_LOG(DEBUG, "digest:", op->sym->auth.digest.data,
725                                 ctx->digest_length);
726         }
727
728         if (do_aead) {
729                 QAT_DP_HEXDUMP_LOG(DEBUG, "digest:", op->sym->aead.digest.data,
730                                 ctx->digest_length);
731                 QAT_DP_HEXDUMP_LOG(DEBUG, "aad:", op->sym->aead.aad.data,
732                                 ctx->aad_len);
733         }
734 #endif
735         return 0;
736 }