From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH 8/9] test: self: setjmp: make compatible with ASAN
Date: Mon, 25 Nov 2024 16:35:22 +0100 [thread overview]
Message-ID: <20241125153523.1411849-9-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20241125153523.1411849-1-a.fatoum@pengutronix.de>
ASAN currently flags the setjmp selftest. Use the newly exported fiber
API to fix this.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
test/self/setjmp.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/test/self/setjmp.c b/test/self/setjmp.c
index deac584d736d..0c7bc003361b 100644
--- a/test/self/setjmp.c
+++ b/test/self/setjmp.c
@@ -76,11 +76,16 @@ static void test_setjmp_loop(void)
}
+static void *main_stack;
+static u32 main_stack_size;
+
static void __noreturn initjmp_entry(void)
{
volatile u32 arr[256];
int i;
+ finish_switch_fiber(NULL, &main_stack, &main_stack_size);
+
for (i = 0; i < ARRAY_SIZE(arr); i++)
writel(i, &arr[i]);
@@ -89,11 +94,13 @@ static void __noreturn initjmp_entry(void)
if (i == 0)
initjmp_entry();
+ start_switch_fiber(NULL, main_stack, main_stack_size);
longjmp(jbuf, 0x1337);
}
static void test_initjmp(void)
{
+ void *fake_stack_save = NULL;
void *stack;
jmp_buf ijbuf;
@@ -114,11 +121,14 @@ static void test_initjmp(void)
case 0x1337:
break;
case 0:
+ start_switch_fiber(&fake_stack_save, stack, CONFIG_STACK_SIZE);
longjmp(ijbuf, 0x42);
default:
failed_tests++;
}
+ finish_switch_fiber(fake_stack_save, &main_stack, &main_stack_size);
+
free(stack);
}
--
2.39.5
next prev parent reply other threads:[~2024-11-25 15:36 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-25 15:35 [PATCH 0/9] sandbox: use native setjmp/longjmp/initjmp implementation by default Ahmad Fatoum
2024-11-25 15:35 ` [PATCH 1/9] sandbox: asm: support inclusion from sandbox os support code Ahmad Fatoum
2024-11-25 15:35 ` [PATCH 2/9] test: self: setjmp: add simple initial testcase Ahmad Fatoum
2024-11-25 15:35 ` [PATCH 3/9] sandbox: source/invoke um Makefiles provided by host architecture Ahmad Fatoum
2024-11-25 15:35 ` [PATCH 4/9] sandbox: setjmp: mark C version as __weak Ahmad Fatoum
2024-11-25 15:35 ` [PATCH 5/9] sandbox: use native setjmp/longjmp/initjmp implementation by default Ahmad Fatoum
2024-11-25 15:35 ` [PATCH 6/9] sandbox: retire HAVE_ARCH_ASAN Ahmad Fatoum
2024-11-25 15:35 ` [PATCH 7/9] bthread: move asan fiber API into header Ahmad Fatoum
2024-11-25 15:35 ` Ahmad Fatoum [this message]
2024-11-25 15:35 ` [PATCH 9/9] bthread: fix use of ASAN fiber stack switch API Ahmad Fatoum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241125153523.1411849-9-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox