net/i40e/base: fix potentially uninitialized variables
[dpdk.git] / drivers / crypto / cnxk / cn10k_ipsec_la_ops.h
index fe91638..df1b0a3 100644 (file)
 #include "cn10k_ipsec.h"
 #include "cnxk_cryptodev.h"
 
+static inline void
+ipsec_po_sa_iv_set(struct cn10k_ipsec_sa *sess, struct rte_crypto_op *cop)
+{
+       uint64_t *iv = &sess->out_sa.iv.u64[0];
+       uint64_t *tmp_iv;
+
+       memcpy(iv, rte_crypto_op_ctod_offset(cop, uint8_t *, sess->iv_offset),
+              16);
+       tmp_iv = (uint64_t *)iv;
+       *tmp_iv = rte_be_to_cpu_64(*tmp_iv);
+
+       tmp_iv = (uint64_t *)(iv + 1);
+       *tmp_iv = rte_be_to_cpu_64(*tmp_iv);
+}
+
+static inline void
+ipsec_po_sa_aes_gcm_iv_set(struct cn10k_ipsec_sa *sess,
+                          struct rte_crypto_op *cop)
+{
+       uint8_t *iv = &sess->out_sa.iv.s.iv_dbg1[0];
+       uint32_t *tmp_iv;
+
+       memcpy(iv, rte_crypto_op_ctod_offset(cop, uint8_t *, sess->iv_offset),
+              4);
+       tmp_iv = (uint32_t *)iv;
+       *tmp_iv = rte_be_to_cpu_32(*tmp_iv);
+
+       iv = &sess->out_sa.iv.s.iv_dbg2[0];
+       memcpy(iv,
+              rte_crypto_op_ctod_offset(cop, uint8_t *, sess->iv_offset + 4),
+              4);
+       tmp_iv = (uint32_t *)iv;
+       *tmp_iv = rte_be_to_cpu_32(*tmp_iv);
+}
+
 static __rte_always_inline int
 process_outb_sa(struct rte_crypto_op *cop, struct cn10k_ipsec_sa *sess,
                struct cpt_inst_s *inst)
 {
        struct rte_crypto_sym_op *sym_op = cop->sym;
        struct rte_mbuf *m_src = sym_op->m_src;
+       uint64_t inst_w4_u64 = sess->inst.w4;
 
        if (unlikely(rte_pktmbuf_tailroom(m_src) < sess->max_extended_len)) {
                plt_dp_err("Not enough tail room");
                return -ENOMEM;
        }
 
+#ifdef LA_IPSEC_DEBUG
+       if (sess->out_sa.w2.s.iv_src == ROC_IE_OT_SA_IV_SRC_FROM_SA) {
+               if (sess->out_sa.w2.s.enc_type == ROC_IE_OT_SA_ENC_AES_GCM)
+                       ipsec_po_sa_aes_gcm_iv_set(sess, cop);
+               else
+                       ipsec_po_sa_iv_set(sess, cop);
+       }
+#endif
+
+       if (m_src->ol_flags & PKT_TX_IP_CKSUM)
+               inst_w4_u64 &= ~BIT_ULL(33);
+
+       if (m_src->ol_flags & PKT_TX_L4_MASK)
+               inst_w4_u64 &= ~BIT_ULL(32);
+
        /* Prepare CPT instruction */
-       inst->w4.u64 = sess->inst.w4;
+       inst->w4.u64 = inst_w4_u64;
        inst->w4.s.dlen = rte_pktmbuf_pkt_len(m_src);
        inst->dptr = rte_pktmbuf_iova(m_src);
        inst->rptr = inst->dptr;