From: Bharat Bhushan <bbhushan2@marvell.com>
To: <netdev@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<sgoutham@marvell.com>, <gakula@marvell.com>,
<sbhatta@marvell.com>, <hkelam@marvell.com>,
<davem@davemloft.net>, <edumazet@google.com>, <kuba@kernel.org>,
<pabeni@redhat.com>, <jerinj@marvell.com>, <lcherian@marvell.com>,
<richardcochran@gmail.com>, <bbhushan2@marvell.com>,
<bharatb.linux@gmail.com>
Subject: [net-next PATCH v8 7/8] cn10k-ipsec: Allow ipsec crypto offload for skb with SA
Date: Tue, 3 Sep 2024 10:29:36 +0530 [thread overview]
Message-ID: <20240903045937.1759543-8-bbhushan2@marvell.com> (raw)
In-Reply-To: <20240903045937.1759543-1-bbhushan2@marvell.com>
Allow to use hardware offload for outbound ipsec crypto
mode if security association (SA) is set for a given skb.
Signed-off-by: Bharat Bhushan <bbhushan2@marvell.com>
---
.../ethernet/marvell/octeontx2/nic/cn10k_ipsec.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c b/drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
index 41c200ee940b..6506b9893a33 100644
--- a/drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
+++ b/drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
@@ -777,9 +777,24 @@ static void cn10k_ipsec_del_state(struct xfrm_state *x)
mutex_unlock(&pf->ipsec.lock);
}
+static bool cn10k_ipsec_offload_ok(struct sk_buff *skb, struct xfrm_state *x)
+{
+ if (x->props.family == AF_INET) {
+ /* Offload with IPv4 options is not supported yet */
+ if (ip_hdr(skb)->ihl > 5)
+ return false;
+ } else {
+ /* Offload with IPv6 extension headers is not support yet */
+ if (ipv6_ext_hdr(ipv6_hdr(skb)->nexthdr))
+ return false;
+ }
+ return true;
+}
+
static const struct xfrmdev_ops cn10k_ipsec_xfrmdev_ops = {
.xdo_dev_state_add = cn10k_ipsec_add_state,
.xdo_dev_state_delete = cn10k_ipsec_del_state,
+ .xdo_dev_offload_ok = cn10k_ipsec_offload_ok,
};
static void cn10k_ipsec_sa_wq_handler(struct work_struct *work)
--
2.34.1
next prev parent reply other threads:[~2024-09-03 5:00 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-03 4:59 [net-next PATCH v8 0/8] cn10k-ipsec: Add outbound inline ipsec support Bharat Bhushan
2024-09-03 4:59 ` [net-next PATCH v8 1/8] octeontx2-pf: map skb data as device writeable Bharat Bhushan
2024-09-03 4:59 ` [net-next PATCH v8 2/8] octeontx2-pf: Move skb fragment map/unmap to common code Bharat Bhushan
2024-09-03 4:59 ` [net-next PATCH v8 3/8] octeontx2-af: Disable backpressure between CPT and NIX Bharat Bhushan
2024-09-03 4:59 ` [net-next PATCH v8 4/8] cn10k-ipsec: Init hardware for outbound ipsec crypto offload Bharat Bhushan
2024-09-03 4:59 ` [net-next PATCH v8 5/8] cn10k-ipsec: Add SA add/del support for outb " Bharat Bhushan
2024-09-03 9:37 ` Sabrina Dubroca
2024-09-03 10:33 ` Bharat Bhushan
2024-09-03 11:53 ` Sabrina Dubroca
2024-09-03 4:59 ` [net-next PATCH v8 6/8] cn10k-ipsec: Process outbound " Bharat Bhushan
2024-09-03 4:59 ` Bharat Bhushan [this message]
2024-09-03 4:59 ` [net-next PATCH v8 8/8] cn10k-ipsec: Enable " Bharat Bhushan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240903045937.1759543-8-bbhushan2@marvell.com \
--to=bbhushan2@marvell.com \
--cc=bharatb.linux@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=gakula@marvell.com \
--cc=hkelam@marvell.com \
--cc=jerinj@marvell.com \
--cc=kuba@kernel.org \
--cc=lcherian@marvell.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
--cc=sbhatta@marvell.com \
--cc=sgoutham@marvell.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®