netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] neighbour: fix unaligned access to pneigh_entry
@ 2023-05-31 10:42 Qingfang DENG
  2023-05-31 18:16 ` Jakub Kicinski
  0 siblings, 1 reply; 5+ messages in thread
From: Qingfang DENG @ 2023-05-31 10:42 UTC (permalink / raw)
  To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	YOSHIFUJI Hideaki, Ville Nuorvala, Masahide NAKAMURA, netdev,
	linux-kernel
  Cc: Qingfang DENG

From: Qingfang DENG <qingfang.deng@siflower.com.cn>

After the blamed commit, the member key is longer 4-byte aligned. On
platforms that do not support unaligned access, e.g., MIPS32R2 with
unaligned_action set to 2, this will trigger a crash when accessing
an IPv6 pneigh_entry, as the key is cast to an in6_addr pointer.

Align the member to 4 bytes on said platforms.

Fixes: 62dd93181aaa ("[IPV6] NDISC: Set per-entry is_router flag in Proxy NA.")
Signed-off-by: Qingfang DENG <qingfang.deng@siflower.com.cn>
---
 include/net/neighbour.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/include/net/neighbour.h b/include/net/neighbour.h
index 3fa5774bddac..c0195ed9d111 100644
--- a/include/net/neighbour.h
+++ b/include/net/neighbour.h
@@ -180,7 +180,11 @@ struct pneigh_entry {
 	netdevice_tracker	dev_tracker;
 	u32			flags;
 	u8			protocol;
+#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
 	u8			key[];
+#else
+	u8			key[] __aligned(4);
+#endif
 };
 
 /*
-- 
2.34.1


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

* Re: [PATCH net] neighbour: fix unaligned access to pneigh_entry
  2023-05-31 10:42 [PATCH net] neighbour: fix unaligned access to pneigh_entry Qingfang DENG
@ 2023-05-31 18:16 ` Jakub Kicinski
  2023-05-31 18:41   ` Eric Dumazet
  0 siblings, 1 reply; 5+ messages in thread
From: Jakub Kicinski @ 2023-05-31 18:16 UTC (permalink / raw)
  To: Qingfang DENG
  Cc: David S. Miller, Eric Dumazet, Paolo Abeni, YOSHIFUJI Hideaki,
	Ville Nuorvala, Masahide NAKAMURA, netdev, linux-kernel,
	Qingfang DENG

On Wed, 31 May 2023 18:42:33 +0800 Qingfang DENG wrote:
> +#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
>  	u8			key[];
> +#else
> +	u8			key[] __aligned(4);
> +#endif

I'd appreciate a second opinion, but to me it's very unlikely we'd save
any memory even with efficient aligned access here. No reasonably key
will fit into 3 bytes, right? So we can as well avoid the ifdef and
make the key[] always aligned. Or preferably, if it doesn't cause
compilation issues, make the type of the key u32?

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

* Re: [PATCH net] neighbour: fix unaligned access to pneigh_entry
  2023-05-31 18:16 ` Jakub Kicinski
@ 2023-05-31 18:41   ` Eric Dumazet
  2023-06-01  1:54     ` [PATCH net v2] " Qingfang DENG
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Dumazet @ 2023-05-31 18:41 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Qingfang DENG, David S. Miller, Paolo Abeni, YOSHIFUJI Hideaki,
	Ville Nuorvala, Masahide NAKAMURA, netdev, linux-kernel,
	Qingfang DENG

On Wed, May 31, 2023 at 8:16 PM Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Wed, 31 May 2023 18:42:33 +0800 Qingfang DENG wrote:
> > +#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
> >       u8                      key[];
> > +#else
> > +     u8                      key[] __aligned(4);
> > +#endif
>
> I'd appreciate a second opinion, but to me it's very unlikely we'd save
> any memory even with efficient aligned access here. No reasonably key
> will fit into 3 bytes, right? So we can as well avoid the ifdef and
> make the key[] always aligned. Or preferably, if it doesn't cause
> compilation issues, make the type of the key u32?

Same feeling, we could avoid the CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS ifdef.

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

* [PATCH net v2] neighbour: fix unaligned access to pneigh_entry
  2023-05-31 18:41   ` Eric Dumazet
@ 2023-06-01  1:54     ` Qingfang DENG
  2023-06-02  4:50       ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 5+ messages in thread
From: Qingfang DENG @ 2023-06-01  1:54 UTC (permalink / raw)
  To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	YOSHIFUJI Hideaki, Masahide NAKAMURA, Ville Nuorvala, netdev,
	linux-kernel
  Cc: Qingfang DENG

From: Qingfang DENG <qingfang.deng@siflower.com.cn>

After the blamed commit, the member key is longer 4-byte aligned. On
platforms that do not support unaligned access, e.g., MIPS32R2 with
unaligned_action set to 1, this will trigger a crash when accessing
an IPv6 pneigh_entry, as the key is cast to an in6_addr pointer.

Change the type of the key to u32 to make it aligned.

Fixes: 62dd93181aaa ("[IPV6] NDISC: Set per-entry is_router flag in Proxy NA.")
Signed-off-by: Qingfang DENG <qingfang.deng@siflower.com.cn>
---
v2: remove the ifdef, and use u32 type

 include/net/neighbour.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/net/neighbour.h b/include/net/neighbour.h
index 3fa5774bddac..f6a8ecc6b1fa 100644
--- a/include/net/neighbour.h
+++ b/include/net/neighbour.h
@@ -180,7 +180,7 @@ struct pneigh_entry {
 	netdevice_tracker	dev_tracker;
 	u32			flags;
 	u8			protocol;
-	u8			key[];
+	u32			key[];
 };
 
 /*
-- 
2.34.1


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

* Re: [PATCH net v2] neighbour: fix unaligned access to pneigh_entry
  2023-06-01  1:54     ` [PATCH net v2] " Qingfang DENG
@ 2023-06-02  4:50       ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-06-02  4:50 UTC (permalink / raw)
  To: Qingfang DENG
  Cc: davem, edumazet, kuba, pabeni, yoshfuji, nakam, vnuorval, netdev,
	linux-kernel, qingfang.deng

Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Thu,  1 Jun 2023 09:54:32 +0800 you wrote:
> From: Qingfang DENG <qingfang.deng@siflower.com.cn>
> 
> After the blamed commit, the member key is longer 4-byte aligned. On
> platforms that do not support unaligned access, e.g., MIPS32R2 with
> unaligned_action set to 1, this will trigger a crash when accessing
> an IPv6 pneigh_entry, as the key is cast to an in6_addr pointer.
> 
> [...]

Here is the summary with links:
  - [net,v2] neighbour: fix unaligned access to pneigh_entry
    https://git.kernel.org/netdev/net/c/ed779fe4c9b5

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] 5+ messages in thread

end of thread, other threads:[~2023-06-02  4:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-31 10:42 [PATCH net] neighbour: fix unaligned access to pneigh_entry Qingfang DENG
2023-05-31 18:16 ` Jakub Kicinski
2023-05-31 18:41   ` Eric Dumazet
2023-06-01  1:54     ` [PATCH net v2] " Qingfang DENG
2023-06-02  4:50       ` 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).