All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] arm: bugfix: save_boot_params_default accesses uninitalized stack when -O0
@ 2012-06-25 12:42 Tetsuyuki Kobayashi
  2012-06-27 17:40 ` Tom Rini
  0 siblings, 1 reply; 16+ messages in thread
From: Tetsuyuki Kobayashi @ 2012-06-25 12:42 UTC (permalink / raw)
  To: u-boot

save_boot_params_default() in cpu.c accesses uninitialized stack area
when it compiled with -O0 (not optimized).

Signed-off-by: Tetsuyuki Kobayashi <koba@kmckk.co.jp>
---
 arch/arm/cpu/armv7/cpu.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/cpu/armv7/cpu.c b/arch/arm/cpu/armv7/cpu.c
index c6fa8ef..6104cb2 100644
--- a/arch/arm/cpu/armv7/cpu.c
+++ b/arch/arm/cpu/armv7/cpu.c
@@ -37,8 +37,11 @@
 #include <asm/cache.h>
 #include <asm/armv7.h>
 
+__attribute__((naked)) /* don't save anything to stack even if compiled with -O0 */
 void save_boot_params_default(u32 r0, u32 r1, u32 r2, u32 r3)
 {
+	/* stack is not yet initialized */
+	asm("bx lr");
 }
 
 void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
-- 
1.7.9.5

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

end of thread, other threads:[~2012-07-09  8:55 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-25 12:42 [U-Boot] [PATCH] arm: bugfix: save_boot_params_default accesses uninitalized stack when -O0 Tetsuyuki Kobayashi
2012-06-27 17:40 ` Tom Rini
2012-06-28  1:14   ` Tetsuyuki Kobayashi
2012-06-28 11:35     ` [U-Boot] [PATCH v2] " Tetsuyuki Kobayashi
2012-06-28 14:57       ` Tom Rini
2012-06-28 16:00         ` koba
2012-06-29  9:36         ` [U-Boot] [PATCH v3] " Tetsuyuki Kobayashi
2012-06-29 14:21           ` Tom Rini
2012-07-05  9:25             ` Albert ARIBAUD
2012-07-05 11:57           ` Albert ARIBAUD
2012-07-05 16:18             ` Tom Rini
2012-07-05 17:10               ` Albert ARIBAUD
2012-07-06  6:10                 ` [U-Boot] [PATCH v4] " Tetsuyuki Kobayashi
2012-07-06 14:00                   ` Tom Rini
2012-07-07  7:14                     ` [U-Boot] [PATCH v5] " Tetsuyuki Kobayashi
2012-07-09  8:55                       ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.