netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v2] sections: global data can be in .bss
@ 2021-11-22 14:24 Antoine Tenart
  2021-11-22 14:39 ` Arnd Bergmann
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Antoine Tenart @ 2021-11-22 14:24 UTC (permalink / raw)
  To: davem, kuba, arnd
  Cc: Antoine Tenart, netdev, linux-arch, jonathon.reinhart, tglx,
	peterz, Steven Rostedt

When checking an address is located in a global data section also check
for the .bss section as global variables initialized to 0 can be in
there (-fzero-initialized-in-bss).

This was found when looking at ensure_safe_net_sysctl which was failing
to detect non-init sysctl pointing to a global data section when the
data was in the .bss section.

Signed-off-by: Antoine Tenart <atenart@kernel.org>
Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
---

A few remarks:

- This still targets net-next but I added Arnd if he prefers to take it
  through the 'asm-generic' tree, now that is_kernel_core_data is in
  include/asm-generic/.

- I kept the Acked-by tag as the change is the same really, the
  difference is the core_kernel_data function was renamed to
  is_kernel_core_data and moved since then.

- @Jonathon: with your analysis and suggestion I think you should be
  listed as a co-developer. If that's fine please say so, and reply
  with both a Co-developed-by and a Signed-off-by tags.

Since v1:
  - Grouped the .data and .bss checks in the same function.

v1 was https://lore.kernel.org/all/20211020083854.1101670-1-atenart@kernel.org/T/

Thanks!
Antoine

 include/asm-generic/sections.h | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/include/asm-generic/sections.h b/include/asm-generic/sections.h
index 1dfadb2e878d..76a0f16e56cf 100644
--- a/include/asm-generic/sections.h
+++ b/include/asm-generic/sections.h
@@ -130,18 +130,24 @@ static inline bool init_section_intersects(void *virt, size_t size)
 
 /**
  * is_kernel_core_data - checks if the pointer address is located in the
- *			 .data section
+ *			 .data or .bss section
  *
  * @addr: address to check
  *
- * Returns: true if the address is located in .data, false otherwise.
+ * Returns: true if the address is located in .data or .bss, false otherwise.
  * Note: On some archs it may return true for core RODATA, and false
  *       for others. But will always be true for core RW data.
  */
 static inline bool is_kernel_core_data(unsigned long addr)
 {
-	return addr >= (unsigned long)_sdata &&
-	       addr < (unsigned long)_edata;
+	if (addr >= (unsigned long)_sdata && addr < (unsigned long)_edata)
+		return true;
+
+	if (addr >= (unsigned long)__bss_start &&
+	    addr < (unsigned long)__bss_stop)
+		return true;
+
+	return false;
 }
 
 /**
-- 
2.33.1


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

* Re: [PATCH net-next v2] sections: global data can be in .bss
  2021-11-22 14:24 [PATCH net-next v2] sections: global data can be in .bss Antoine Tenart
@ 2021-11-22 14:39 ` Arnd Bergmann
  2021-11-22 15:00 ` patchwork-bot+netdevbpf
  2021-11-22 16:56 ` Jonathon Reinhart
  2 siblings, 0 replies; 5+ messages in thread
From: Arnd Bergmann @ 2021-11-22 14:39 UTC (permalink / raw)
  To: Antoine Tenart
  Cc: David Miller, Jakub Kicinski, Arnd Bergmann, Networking,
	linux-arch, jonathon.reinhart, Thomas Gleixner, Peter Zijlstra,
	Steven Rostedt

On Mon, Nov 22, 2021 at 3:24 PM Antoine Tenart <atenart@kernel.org> wrote:
>
> When checking an address is located in a global data section also check
> for the .bss section as global variables initialized to 0 can be in
> there (-fzero-initialized-in-bss).
>
> This was found when looking at ensure_safe_net_sysctl which was failing
> to detect non-init sysctl pointing to a global data section when the
> data was in the .bss section.
>
> Signed-off-by: Antoine Tenart <atenart@kernel.org>
> Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
> ---
>
> A few remarks:
>
> - This still targets net-next but I added Arnd if he prefers to take it
>   through the 'asm-generic' tree, now that is_kernel_core_data is in
>   include/asm-generic/.

I have nothing else for asm-generic at the moment, please take
this through net-next.

Acked-by: Arnd Bergmann <arnd@arndb.de>

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

* Re: [PATCH net-next v2] sections: global data can be in .bss
  2021-11-22 14:24 [PATCH net-next v2] sections: global data can be in .bss Antoine Tenart
  2021-11-22 14:39 ` Arnd Bergmann
@ 2021-11-22 15:00 ` patchwork-bot+netdevbpf
  2021-11-22 16:56 ` Jonathon Reinhart
  2 siblings, 0 replies; 5+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-11-22 15:00 UTC (permalink / raw)
  To: Antoine Tenart
  Cc: davem, kuba, arnd, netdev, linux-arch, jonathon.reinhart, tglx,
	peterz, rostedt

Hello:

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

On Mon, 22 Nov 2021 15:24:56 +0100 you wrote:
> When checking an address is located in a global data section also check
> for the .bss section as global variables initialized to 0 can be in
> there (-fzero-initialized-in-bss).
> 
> This was found when looking at ensure_safe_net_sysctl which was failing
> to detect non-init sysctl pointing to a global data section when the
> data was in the .bss section.
> 
> [...]

Here is the summary with links:
  - [net-next,v2] sections: global data can be in .bss
    https://git.kernel.org/netdev/net-next/c/cb902b332f95

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

* Re: [PATCH net-next v2] sections: global data can be in .bss
  2021-11-22 14:24 [PATCH net-next v2] sections: global data can be in .bss Antoine Tenart
  2021-11-22 14:39 ` Arnd Bergmann
  2021-11-22 15:00 ` patchwork-bot+netdevbpf
@ 2021-11-22 16:56 ` Jonathon Reinhart
  2021-11-22 16:59   ` Antoine Tenart
  2 siblings, 1 reply; 5+ messages in thread
From: Jonathon Reinhart @ 2021-11-22 16:56 UTC (permalink / raw)
  To: Antoine Tenart
  Cc: David S. Miller, Jakub Kicinski, arnd, Linux Netdev List,
	linux-arch, tglx, peterz, Steven Rostedt

On Mon, Nov 22, 2021 at 9:24 AM Antoine Tenart <atenart@kernel.org> wrote:
>
> When checking an address is located in a global data section also check
> for the .bss section as global variables initialized to 0 can be in
> there (-fzero-initialized-in-bss).
>
> This was found when looking at ensure_safe_net_sysctl which was failing
> to detect non-init sysctl pointing to a global data section when the
> data was in the .bss section.
>
> Signed-off-by: Antoine Tenart <atenart@kernel.org>
> Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>

Co-Developed-by: Jonathon Reinhart <jonathon.reinhart@gmail.com>
Signed-off-by: Jonathon Reinhart <jonathon.reinhart@gmail.com>

> ---
>
> A few remarks:
>
> - This still targets net-next but I added Arnd if he prefers to take it
>   through the 'asm-generic' tree, now that is_kernel_core_data is in
>   include/asm-generic/.
>
> - I kept the Acked-by tag as the change is the same really, the
>   difference is the core_kernel_data function was renamed to
>   is_kernel_core_data and moved since then.
>
> - @Jonathon: with your analysis and suggestion I think you should be
>   listed as a co-developer. If that's fine please say so, and reply
>   with both a Co-developed-by and a Signed-off-by tags.

Added, thanks. Although it appears I may have missed the boat.

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

* Re: [PATCH net-next v2] sections: global data can be in .bss
  2021-11-22 16:56 ` Jonathon Reinhart
@ 2021-11-22 16:59   ` Antoine Tenart
  0 siblings, 0 replies; 5+ messages in thread
From: Antoine Tenart @ 2021-11-22 16:59 UTC (permalink / raw)
  To: Jonathon Reinhart
  Cc: David S. Miller, Jakub Kicinski, arnd, Linux Netdev List,
	linux-arch, tglx, peterz, Steven Rostedt

Quoting Jonathon Reinhart (2021-11-22 17:56:55)
> On Mon, Nov 22, 2021 at 9:24 AM Antoine Tenart <atenart@kernel.org> wrote:
> >
> > - @Jonathon: with your analysis and suggestion I think you should be
> >   listed as a co-developer. If that's fine please say so, and reply
> >   with both a Co-developed-by and a Signed-off-by tags.
> 
> Added, thanks. Although it appears I may have missed the boat.

Yes, the patch was applied quickly. Anyway, thanks for the investigation!

Antoine

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

end of thread, other threads:[~2021-11-22 16:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-22 14:24 [PATCH net-next v2] sections: global data can be in .bss Antoine Tenart
2021-11-22 14:39 ` Arnd Bergmann
2021-11-22 15:00 ` patchwork-bot+netdevbpf
2021-11-22 16:56 ` Jonathon Reinhart
2021-11-22 16:59   ` Antoine Tenart

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