* [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour
@ 2023-11-25 21:33 Gustavo A. R. Silva
2023-11-28 0:29 ` Kees Cook
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Gustavo A. R. Silva @ 2023-11-25 21:33 UTC (permalink / raw)
To: Joey Gouly, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Gustavo A. R. Silva, Bill Wendling, Kees Cook
Cc: netdev, linux-kernel, Gustavo A. R. Silva, linux-hardening
Previously, one-element and zero-length arrays were treated as true
flexible arrays, even though they are actually "fake" flex arrays.
The __randomize_layout would leave them untouched at the end of the
struct, similarly to proper C99 flex-array members.
However, this approach changed with commit 1ee60356c2dc ("gcc-plugins:
randstruct: Only warn about true flexible arrays"). Now, only C99
flexible-array members will remain untouched at the end of the struct,
while one-element and zero-length arrays will be subject to randomization.
Fix a `__randomize_layout` crash in `struct neighbour` by transforming
zero-length array `primary_key` into a proper C99 flexible-array member.
Fixes: 1ee60356c2dc ("gcc-plugins: randstruct: Only warn about true flexible arrays")
Closes: https://lore.kernel.org/linux-hardening/20231124102458.GB1503258@e124191.cambridge.arm.com/
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
---
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 07022bb0d44d..0d28172193fa 100644
--- a/include/net/neighbour.h
+++ b/include/net/neighbour.h
@@ -162,7 +162,7 @@ struct neighbour {
struct rcu_head rcu;
struct net_device *dev;
netdevice_tracker dev_tracker;
- u8 primary_key[0];
+ u8 primary_key[];
} __randomize_layout;
struct neigh_ops {
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour
2023-11-25 21:33 [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour Gustavo A. R. Silva
@ 2023-11-28 0:29 ` Kees Cook
2023-11-28 1:33 ` Gustavo A. R. Silva
2023-11-28 11:10 ` Joey Gouly
2023-11-28 11:40 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 6+ messages in thread
From: Kees Cook @ 2023-11-28 0:29 UTC (permalink / raw)
To: Gustavo A. R. Silva
Cc: Joey Gouly, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Bill Wendling, netdev, linux-kernel, linux-hardening
On Sat, Nov 25, 2023 at 03:33:58PM -0600, Gustavo A. R. Silva wrote:
> Previously, one-element and zero-length arrays were treated as true
> flexible arrays, even though they are actually "fake" flex arrays.
> The __randomize_layout would leave them untouched at the end of the
> struct, similarly to proper C99 flex-array members.
>
> However, this approach changed with commit 1ee60356c2dc ("gcc-plugins:
> randstruct: Only warn about true flexible arrays"). Now, only C99
> flexible-array members will remain untouched at the end of the struct,
> while one-element and zero-length arrays will be subject to randomization.
>
> Fix a `__randomize_layout` crash in `struct neighbour` by transforming
> zero-length array `primary_key` into a proper C99 flexible-array member.
>
> Fixes: 1ee60356c2dc ("gcc-plugins: randstruct: Only warn about true flexible arrays")
> Closes: https://lore.kernel.org/linux-hardening/20231124102458.GB1503258@e124191.cambridge.arm.com/
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Yes, please. Do we have any other 0-sized arrays hiding out in the
kernel? We need to get these all cleared...
Reviewed-by: Kees Cook <keescook@chromium.org>
--
Kees Cook
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour
2023-11-28 0:29 ` Kees Cook
@ 2023-11-28 1:33 ` Gustavo A. R. Silva
0 siblings, 0 replies; 6+ messages in thread
From: Gustavo A. R. Silva @ 2023-11-28 1:33 UTC (permalink / raw)
To: Kees Cook, Gustavo A. R. Silva
Cc: Joey Gouly, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Bill Wendling, netdev, linux-kernel, linux-hardening
On 11/27/23 18:29, Kees Cook wrote:
> On Sat, Nov 25, 2023 at 03:33:58PM -0600, Gustavo A. R. Silva wrote:
>> Previously, one-element and zero-length arrays were treated as true
>> flexible arrays, even though they are actually "fake" flex arrays.
>> The __randomize_layout would leave them untouched at the end of the
>> struct, similarly to proper C99 flex-array members.
>>
>> However, this approach changed with commit 1ee60356c2dc ("gcc-plugins:
>> randstruct: Only warn about true flexible arrays"). Now, only C99
>> flexible-array members will remain untouched at the end of the struct,
>> while one-element and zero-length arrays will be subject to randomization.
>>
>> Fix a `__randomize_layout` crash in `struct neighbour` by transforming
>> zero-length array `primary_key` into a proper C99 flexible-array member.
>>
>> Fixes: 1ee60356c2dc ("gcc-plugins: randstruct: Only warn about true flexible arrays")
>> Closes: https://lore.kernel.org/linux-hardening/20231124102458.GB1503258@e124191.cambridge.arm.com/
>> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
>
> Yes, please. Do we have any other 0-sized arrays hiding out in the
> kernel? We need to get these all cleared...
I've found 27 instances of zero-length fake-flex arrays in next-20231127.
I'll send a patch series to transform all of them.
>
> Reviewed-by: Kees Cook <keescook@chromium.org>
>
Thanks!
--
Gustavo
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour
2023-11-25 21:33 [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour Gustavo A. R. Silva
2023-11-28 0:29 ` Kees Cook
@ 2023-11-28 11:10 ` Joey Gouly
2023-11-28 20:12 ` Gustavo A. R. Silva
2023-11-28 11:40 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 6+ messages in thread
From: Joey Gouly @ 2023-11-28 11:10 UTC (permalink / raw)
To: Gustavo A. R. Silva
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Bill Wendling, Kees Cook, netdev, linux-kernel, linux-hardening
Hi,
On Sat, Nov 25, 2023 at 03:33:58PM -0600, Gustavo A. R. Silva wrote:
> Previously, one-element and zero-length arrays were treated as true
> flexible arrays, even though they are actually "fake" flex arrays.
> The __randomize_layout would leave them untouched at the end of the
> struct, similarly to proper C99 flex-array members.
>
> However, this approach changed with commit 1ee60356c2dc ("gcc-plugins:
> randstruct: Only warn about true flexible arrays"). Now, only C99
> flexible-array members will remain untouched at the end of the struct,
> while one-element and zero-length arrays will be subject to randomization.
>
> Fix a `__randomize_layout` crash in `struct neighbour` by transforming
> zero-length array `primary_key` into a proper C99 flexible-array member.
>
> Fixes: 1ee60356c2dc ("gcc-plugins: randstruct: Only warn about true flexible arrays")
> Closes: https://lore.kernel.org/linux-hardening/20231124102458.GB1503258@e124191.cambridge.arm.com/
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
> ---
> 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 07022bb0d44d..0d28172193fa 100644
> --- a/include/net/neighbour.h
> +++ b/include/net/neighbour.h
> @@ -162,7 +162,7 @@ struct neighbour {
> struct rcu_head rcu;
> struct net_device *dev;
> netdevice_tracker dev_tracker;
> - u8 primary_key[0];
> + u8 primary_key[];
> } __randomize_layout;
>
> struct neigh_ops {
Fixes the crash for me!
Tested-by: Joey Gouly <joey.gouly@arm.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour
2023-11-25 21:33 [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour Gustavo A. R. Silva
2023-11-28 0:29 ` Kees Cook
2023-11-28 11:10 ` Joey Gouly
@ 2023-11-28 11:40 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-11-28 11:40 UTC (permalink / raw)
To: Gustavo A. R. Silva
Cc: joey.gouly, davem, edumazet, kuba, pabeni, morbo, keescook,
netdev, linux-kernel, linux-hardening
Hello:
This patch was applied to netdev/net.git (main)
by Paolo Abeni <pabeni@redhat.com>:
On Sat, 25 Nov 2023 15:33:58 -0600 you wrote:
> Previously, one-element and zero-length arrays were treated as true
> flexible arrays, even though they are actually "fake" flex arrays.
> The __randomize_layout would leave them untouched at the end of the
> struct, similarly to proper C99 flex-array members.
>
> However, this approach changed with commit 1ee60356c2dc ("gcc-plugins:
> randstruct: Only warn about true flexible arrays"). Now, only C99
> flexible-array members will remain untouched at the end of the struct,
> while one-element and zero-length arrays will be subject to randomization.
>
> [...]
Here is the summary with links:
- neighbour: Fix __randomize_layout crash in struct neighbour
https://git.kernel.org/netdev/net/c/45b3fae4675d
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] 6+ messages in thread
* Re: [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour
2023-11-28 11:10 ` Joey Gouly
@ 2023-11-28 20:12 ` Gustavo A. R. Silva
0 siblings, 0 replies; 6+ messages in thread
From: Gustavo A. R. Silva @ 2023-11-28 20:12 UTC (permalink / raw)
To: Joey Gouly, Gustavo A. R. Silva
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Bill Wendling, Kees Cook, netdev, linux-kernel, linux-hardening
>> diff --git a/include/net/neighbour.h b/include/net/neighbour.h
>> index 07022bb0d44d..0d28172193fa 100644
>> --- a/include/net/neighbour.h
>> +++ b/include/net/neighbour.h
>> @@ -162,7 +162,7 @@ struct neighbour {
>> struct rcu_head rcu;
>> struct net_device *dev;
>> netdevice_tracker dev_tracker;
>> - u8 primary_key[0];
>> + u8 primary_key[];
>> } __randomize_layout;
>>
>> struct neigh_ops {
>
> Fixes the crash for me!
Awesome. :)
--
Gustavo
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-11-28 20:12 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-25 21:33 [PATCH] neighbour: Fix __randomize_layout crash in struct neighbour Gustavo A. R. Silva
2023-11-28 0:29 ` Kees Cook
2023-11-28 1:33 ` Gustavo A. R. Silva
2023-11-28 11:10 ` Joey Gouly
2023-11-28 20:12 ` Gustavo A. R. Silva
2023-11-28 11:40 ` 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).