crypto/cnxk: add IV in SA in lookaside IPsec debug mode
[dpdk.git] / drivers / crypto / cnxk / cn10k_ipsec_la_ops.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4
5 #ifndef __CN10K_IPSEC_LA_OPS_H__
6 #define __CN10K_IPSEC_LA_OPS_H__
7
8 #include <rte_crypto_sym.h>
9 #include <rte_security.h>
10
11 #include "cn10k_cryptodev.h"
12 #include "cn10k_ipsec.h"
13 #include "cnxk_cryptodev.h"
14
15 static inline void
16 ipsec_po_sa_iv_set(struct cn10k_ipsec_sa *sess, struct rte_crypto_op *cop)
17 {
18         uint64_t *iv = &sess->out_sa.iv.u64[0];
19         uint64_t *tmp_iv;
20
21         memcpy(iv, rte_crypto_op_ctod_offset(cop, uint8_t *, sess->iv_offset),
22                16);
23         tmp_iv = (uint64_t *)iv;
24         *tmp_iv = rte_be_to_cpu_64(*tmp_iv);
25
26         tmp_iv = (uint64_t *)(iv + 1);
27         *tmp_iv = rte_be_to_cpu_64(*tmp_iv);
28 }
29
30 static inline void
31 ipsec_po_sa_aes_gcm_iv_set(struct cn10k_ipsec_sa *sess,
32                            struct rte_crypto_op *cop)
33 {
34         uint8_t *iv = &sess->out_sa.iv.s.iv_dbg1[0];
35         uint32_t *tmp_iv;
36
37         memcpy(iv, rte_crypto_op_ctod_offset(cop, uint8_t *, sess->iv_offset),
38                4);
39         tmp_iv = (uint32_t *)iv;
40         *tmp_iv = rte_be_to_cpu_32(*tmp_iv);
41
42         iv = &sess->out_sa.iv.s.iv_dbg2[0];
43         memcpy(iv,
44                rte_crypto_op_ctod_offset(cop, uint8_t *, sess->iv_offset + 4),
45                4);
46         tmp_iv = (uint32_t *)iv;
47         *tmp_iv = rte_be_to_cpu_32(*tmp_iv);
48 }
49
50 static __rte_always_inline int
51 process_outb_sa(struct rte_crypto_op *cop, struct cn10k_ipsec_sa *sess,
52                 struct cpt_inst_s *inst)
53 {
54         struct rte_crypto_sym_op *sym_op = cop->sym;
55         struct rte_mbuf *m_src = sym_op->m_src;
56
57         if (unlikely(rte_pktmbuf_tailroom(m_src) < sess->max_extended_len)) {
58                 plt_dp_err("Not enough tail room");
59                 return -ENOMEM;
60         }
61
62 #ifdef LA_IPSEC_DEBUG
63         if (sess->out_sa.w2.s.iv_src == ROC_IE_OT_SA_IV_SRC_FROM_SA) {
64                 if (sess->out_sa.w2.s.enc_type == ROC_IE_OT_SA_ENC_AES_GCM)
65                         ipsec_po_sa_aes_gcm_iv_set(sess, cop);
66                 else
67                         ipsec_po_sa_iv_set(sess, cop);
68         }
69 #endif
70
71         /* Prepare CPT instruction */
72         inst->w4.u64 = sess->inst.w4;
73         inst->w4.s.dlen = rte_pktmbuf_pkt_len(m_src);
74         inst->dptr = rte_pktmbuf_iova(m_src);
75         inst->rptr = inst->dptr;
76
77         return 0;
78 }
79
80 static __rte_always_inline int
81 process_inb_sa(struct rte_crypto_op *cop, struct cn10k_ipsec_sa *sa,
82                struct cpt_inst_s *inst)
83 {
84         struct rte_crypto_sym_op *sym_op = cop->sym;
85         struct rte_mbuf *m_src = sym_op->m_src;
86
87         /* Prepare CPT instruction */
88         inst->w4.u64 = sa->inst.w4;
89         inst->w4.s.dlen = rte_pktmbuf_pkt_len(m_src);
90         inst->dptr = rte_pktmbuf_iova(m_src);
91         inst->rptr = inst->dptr;
92
93         return 0;
94 }
95
96 #endif /* __CN10K_IPSEC_LA_OPS_H__ */