From: Rahul Bhansali <rbhansali@marvell.com>
To: "dev@dpdk.org" <dev@dpdk.org>,
Radu Nicolau <radu.nicolau@intel.com>,
Akhil Goyal <gakhil@marvell.com>
Subject: RE: [PATCH] examples/ipsec-secgw: fix zero address in ethernet header
Date: Tue, 16 May 2023 04:16:24 +0000 [thread overview]
Message-ID: <CO6PR18MB384436BB5E7B94F290EBE5D4B8799@CO6PR18MB3844.namprd18.prod.outlook.com> (raw)
In-Reply-To: <20230330100907.2186135-1-rbhansali@marvell.com>
Ping.
> -----Original Message-----
> From: Rahul Bhansali <rbhansali@marvell.com>
> Sent: Thursday, March 30, 2023 3:39 PM
> To: dev@dpdk.org; Radu Nicolau <radu.nicolau@intel.com>; Akhil Goyal
> <gakhil@marvell.com>
> Cc: Rahul Bhansali <rbhansali@marvell.com>
> Subject: [PATCH] examples/ipsec-secgw: fix zero address in ethernet header
>
> During port init, src address stored in ethaddr_tbl is typecast which violates the
> stric-aliasing rule and not reflecting the updated source address in processed
> packets too.
>
> Fixes: 6eb3ba0399 ("examples/ipsec-secgw: support poll mode NEON LPM
> lookup")
>
> Signed-off-by: Rahul Bhansali <rbhansali@marvell.com>
> ---
> examples/ipsec-secgw/ipsec-secgw.c | 20 ++++++++++----------
> examples/ipsec-secgw/ipsec-secgw.h | 2 +-
> 2 files changed, 11 insertions(+), 11 deletions(-)
>
> diff --git a/examples/ipsec-secgw/ipsec-secgw.c b/examples/ipsec-
> secgw/ipsec-secgw.c
> index d2d9d85b4a..029749e522 100644
> --- a/examples/ipsec-secgw/ipsec-secgw.c
> +++ b/examples/ipsec-secgw/ipsec-secgw.c
> @@ -99,10 +99,10 @@ uint32_t qp_desc_nb = 2048;
> #define MTU_TO_FRAMELEN(x) ((x) + RTE_ETHER_HDR_LEN +
> RTE_ETHER_CRC_LEN)
>
> struct ethaddr_info ethaddr_tbl[RTE_MAX_ETHPORTS] = {
> - { 0, ETHADDR(0x00, 0x16, 0x3e, 0x7e, 0x94, 0x9a) },
> - { 0, ETHADDR(0x00, 0x16, 0x3e, 0x22, 0xa1, 0xd9) },
> - { 0, ETHADDR(0x00, 0x16, 0x3e, 0x08, 0x69, 0x26) },
> - { 0, ETHADDR(0x00, 0x16, 0x3e, 0x49, 0x9e, 0xdd) }
> + { {{0}}, {{0x00, 0x16, 0x3e, 0x7e, 0x94, 0x9a}} },
> + { {{0}}, {{0x00, 0x16, 0x3e, 0x22, 0xa1, 0xd9}} },
> + { {{0}}, {{0x00, 0x16, 0x3e, 0x08, 0x69, 0x26}} },
> + { {{0}}, {{0x00, 0x16, 0x3e, 0x49, 0x9e, 0xdd}} }
> };
>
> struct offloads tx_offloads;
> @@ -1427,9 +1427,8 @@ add_dst_ethaddr(uint16_t port, const struct
> rte_ether_addr *addr)
> if (port >= RTE_DIM(ethaddr_tbl))
> return -EINVAL;
>
> - ethaddr_tbl[port].dst = ETHADDR_TO_UINT64(addr);
> - rte_ether_addr_copy((struct rte_ether_addr *)ðaddr_tbl[port].dst,
> - (struct rte_ether_addr *)(val_eth + port));
> + rte_ether_addr_copy(addr, ðaddr_tbl[port].dst);
> + rte_ether_addr_copy(addr, (struct rte_ether_addr *)(val_eth + port));
> return 0;
> }
>
> @@ -1907,11 +1906,12 @@ port_init(uint16_t portid, uint64_t req_rx_offloads,
> uint64_t req_tx_offloads,
> "Error getting MAC address (port %u): %s\n",
> portid, rte_strerror(-ret));
>
> - ethaddr_tbl[portid].src = ETHADDR_TO_UINT64(ðaddr);
> + rte_ether_addr_copy(ðaddr, ðaddr_tbl[portid].src);
>
> - rte_ether_addr_copy((struct rte_ether_addr *)ðaddr_tbl[portid].dst,
> + rte_ether_addr_copy(ðaddr_tbl[portid].dst,
> (struct rte_ether_addr *)(val_eth + portid));
> - rte_ether_addr_copy((struct rte_ether_addr *)ðaddr_tbl[portid].src,
> +
> + rte_ether_addr_copy(ðaddr_tbl[portid].src,
> (struct rte_ether_addr *)(val_eth + portid) + 1);
>
> print_ethaddr("Address: ", ðaddr);
> diff --git a/examples/ipsec-secgw/ipsec-secgw.h b/examples/ipsec-
> secgw/ipsec-secgw.h
> index 0e0012d058..53665adf03 100644
> --- a/examples/ipsec-secgw/ipsec-secgw.h
> +++ b/examples/ipsec-secgw/ipsec-secgw.h
> @@ -84,7 +84,7 @@ struct ipsec_traffic_nb {
>
> /* port/source ethernet addr and destination ethernet addr */ struct
> ethaddr_info {
> - uint64_t src, dst;
> + struct rte_ether_addr src, dst;
> };
>
> struct ipsec_spd_stats {
> --
> 2.25.1
next prev parent reply other threads:[~2023-05-16 4:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-30 10:09 Rahul Bhansali
2023-05-16 4:16 ` Rahul Bhansali [this message]
2023-05-16 7:02 ` Akhil Goyal
2023-05-24 9:25 ` Akhil Goyal
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=CO6PR18MB384436BB5E7B94F290EBE5D4B8799@CO6PR18MB3844.namprd18.prod.outlook.com \
--to=rbhansali@marvell.com \
--cc=dev@dpdk.org \
--cc=gakhil@marvell.com \
--cc=radu.nicolau@intel.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;
as well as URLs for NNTP newsgroup(s).