linux-hyperv.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] net: mana: Fix RX buf alloc_size alignment and atomic op panic
@ 2024-08-09 21:01 Haiyang Zhang
  2024-08-10 13:53 ` Long Li
  2024-08-12 12:30 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Haiyang Zhang @ 2024-08-09 21:01 UTC (permalink / raw)
  To: linux-hyperv, netdev
  Cc: haiyangz, decui, stephen, kys, paulros, olaf, vkuznets, davem,
	wei.liu, edumazet, kuba, pabeni, leon, longli, ssengar,
	linux-rdma, daniel, john.fastabend, bpf, ast, hawk, tglx,
	shradhagupta, linux-kernel, stable

The MANA driver's RX buffer alloc_size is passed into napi_build_skb() to
create SKB. skb_shinfo(skb) is located at the end of skb, and its alignment
is affected by the alloc_size passed into napi_build_skb(). The size needs
to be aligned properly for better performance and atomic operations.
Otherwise, on ARM64 CPU, for certain MTU settings like 4000, atomic
operations may panic on the skb_shinfo(skb)->dataref due to alignment fault.

To fix this bug, add proper alignment to the alloc_size calculation.

Sample panic info:
[  253.298819] Unable to handle kernel paging request at virtual address ffff000129ba5cce
[  253.300900] Mem abort info:
[  253.301760]   ESR = 0x0000000096000021
[  253.302825]   EC = 0x25: DABT (current EL), IL = 32 bits
[  253.304268]   SET = 0, FnV = 0
[  253.305172]   EA = 0, S1PTW = 0
[  253.306103]   FSC = 0x21: alignment fault
Call trace:
 __skb_clone+0xfc/0x198
 skb_clone+0x78/0xe0
 raw6_local_deliver+0xfc/0x228
 ip6_protocol_deliver_rcu+0x80/0x500
 ip6_input_finish+0x48/0x80
 ip6_input+0x48/0xc0
 ip6_sublist_rcv_finish+0x50/0x78
 ip6_sublist_rcv+0x1cc/0x2b8
 ipv6_list_rcv+0x100/0x150
 __netif_receive_skb_list_core+0x180/0x220
 netif_receive_skb_list_internal+0x198/0x2a8
 __napi_poll+0x138/0x250
 net_rx_action+0x148/0x330
 handle_softirqs+0x12c/0x3a0

Cc: stable@vger.kernel.org
Fixes: 80f6215b450e ("net: mana: Add support for jumbo frame")
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
---
 drivers/net/ethernet/microsoft/mana/mana_en.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/microsoft/mana/mana_en.c b/drivers/net/ethernet/microsoft/mana/mana_en.c
index d2f07e179e86..ae717d06e66f 100644
--- a/drivers/net/ethernet/microsoft/mana/mana_en.c
+++ b/drivers/net/ethernet/microsoft/mana/mana_en.c
@@ -599,7 +599,11 @@ static void mana_get_rxbuf_cfg(int mtu, u32 *datasize, u32 *alloc_size,
 	else
 		*headroom = XDP_PACKET_HEADROOM;
 
-	*alloc_size = mtu + MANA_RXBUF_PAD + *headroom;
+	*alloc_size = SKB_DATA_ALIGN(mtu + MANA_RXBUF_PAD + *headroom);
+
+	/* Using page pool in this case, so alloc_size is PAGE_SIZE */
+	if (*alloc_size < PAGE_SIZE)
+		*alloc_size = PAGE_SIZE;
 
 	*datasize = mtu + ETH_HLEN;
 }
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH net] net: mana: Fix RX buf alloc_size alignment and atomic op panic
  2024-08-09 21:01 [PATCH net] net: mana: Fix RX buf alloc_size alignment and atomic op panic Haiyang Zhang
@ 2024-08-10 13:53 ` Long Li
  2024-08-12 12:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Long Li @ 2024-08-10 13:53 UTC (permalink / raw)
  To: Haiyang Zhang, linux-hyperv@vger.kernel.org,
	netdev@vger.kernel.org
  Cc: Dexuan Cui, stephen@networkplumber.org, KY Srinivasan,
	Paul Rosswurm, olaf@aepfle.de, vkuznets@redhat.com,
	davem@davemloft.net, wei.liu@kernel.org, edumazet@google.com,
	kuba@kernel.org, pabeni@redhat.com, leon@kernel.org,
	ssengar@linux.microsoft.com, linux-rdma@vger.kernel.org,
	daniel@iogearbox.net, john.fastabend@gmail.com,
	bpf@vger.kernel.org, ast@kernel.org, hawk@kernel.org,
	tglx@linutronix.de, shradhagupta@linux.microsoft.com,
	linux-kernel@vger.kernel.org, stable@vger.kernel.org

> Subject: [PATCH net] net: mana: Fix RX buf alloc_size alignment and atomic op
> panic
> 
> The MANA driver's RX buffer alloc_size is passed into napi_build_skb() to create
> SKB. skb_shinfo(skb) is located at the end of skb, and its alignment is affected by
> the alloc_size passed into napi_build_skb(). The size needs to be aligned properly
> for better performance and atomic operations.
> Otherwise, on ARM64 CPU, for certain MTU settings like 4000, atomic operations
> may panic on the skb_shinfo(skb)->dataref due to alignment fault.
> 
> To fix this bug, add proper alignment to the alloc_size calculation.
> 
> Sample panic info:
> [  253.298819] Unable to handle kernel paging request at virtual address
> ffff000129ba5cce [  253.300900] Mem abort info:
> [  253.301760]   ESR = 0x0000000096000021
> [  253.302825]   EC = 0x25: DABT (current EL), IL = 32 bits
> [  253.304268]   SET = 0, FnV = 0
> [  253.305172]   EA = 0, S1PTW = 0
> [  253.306103]   FSC = 0x21: alignment fault
> Call trace:
>  __skb_clone+0xfc/0x198
>  skb_clone+0x78/0xe0
>  raw6_local_deliver+0xfc/0x228
>  ip6_protocol_deliver_rcu+0x80/0x500
>  ip6_input_finish+0x48/0x80
>  ip6_input+0x48/0xc0
>  ip6_sublist_rcv_finish+0x50/0x78
>  ip6_sublist_rcv+0x1cc/0x2b8
>  ipv6_list_rcv+0x100/0x150
>  __netif_receive_skb_list_core+0x180/0x220
>  netif_receive_skb_list_internal+0x198/0x2a8
>  __napi_poll+0x138/0x250
>  net_rx_action+0x148/0x330
>  handle_softirqs+0x12c/0x3a0
> 
> Cc: stable@vger.kernel.org
> Fixes: 80f6215b450e ("net: mana: Add support for jumbo frame")
> Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>

Reviewed-by: Long Li <longli@microsoft.com>

> ---
>  drivers/net/ethernet/microsoft/mana/mana_en.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/microsoft/mana/mana_en.c
> b/drivers/net/ethernet/microsoft/mana/mana_en.c
> index d2f07e179e86..ae717d06e66f 100644
> --- a/drivers/net/ethernet/microsoft/mana/mana_en.c
> +++ b/drivers/net/ethernet/microsoft/mana/mana_en.c
> @@ -599,7 +599,11 @@ static void mana_get_rxbuf_cfg(int mtu, u32 *datasize,
> u32 *alloc_size,
>  	else
>  		*headroom = XDP_PACKET_HEADROOM;
> 
> -	*alloc_size = mtu + MANA_RXBUF_PAD + *headroom;
> +	*alloc_size = SKB_DATA_ALIGN(mtu + MANA_RXBUF_PAD + *headroom);
> +
> +	/* Using page pool in this case, so alloc_size is PAGE_SIZE */
> +	if (*alloc_size < PAGE_SIZE)
> +		*alloc_size = PAGE_SIZE;
> 
>  	*datasize = mtu + ETH_HLEN;
>  }
> --
> 2.34.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net] net: mana: Fix RX buf alloc_size alignment and atomic op panic
  2024-08-09 21:01 [PATCH net] net: mana: Fix RX buf alloc_size alignment and atomic op panic Haiyang Zhang
  2024-08-10 13:53 ` Long Li
@ 2024-08-12 12:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-08-12 12:30 UTC (permalink / raw)
  To: Haiyang Zhang
  Cc: linux-hyperv, netdev, decui, stephen, kys, paulros, olaf,
	vkuznets, davem, wei.liu, edumazet, kuba, pabeni, leon, longli,
	ssengar, linux-rdma, daniel, john.fastabend, bpf, ast, hawk, tglx,
	shradhagupta, linux-kernel, stable

Hello:

This patch was applied to netdev/net.git (main)
by David S. Miller <davem@davemloft.net>:

On Fri,  9 Aug 2024 14:01:24 -0700 you wrote:
> The MANA driver's RX buffer alloc_size is passed into napi_build_skb() to
> create SKB. skb_shinfo(skb) is located at the end of skb, and its alignment
> is affected by the alloc_size passed into napi_build_skb(). The size needs
> to be aligned properly for better performance and atomic operations.
> Otherwise, on ARM64 CPU, for certain MTU settings like 4000, atomic
> operations may panic on the skb_shinfo(skb)->dataref due to alignment fault.
> 
> [...]

Here is the summary with links:
  - [net] net: mana: Fix RX buf alloc_size alignment and atomic op panic
    https://git.kernel.org/netdev/net/c/32316f676b4e

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-08-12 12:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-09 21:01 [PATCH net] net: mana: Fix RX buf alloc_size alignment and atomic op panic Haiyang Zhang
2024-08-10 13:53 ` Long Li
2024-08-12 12:30 ` patchwork-bot+netdevbpf

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).