* [PATCH] target/hppa: clear the PSW 'N' bit when delivering signals
@ 2023-09-16 13:49 Mikulas Patocka
2023-09-16 16:49 ` Helge Deller
0 siblings, 1 reply; 3+ messages in thread
From: Mikulas Patocka @ 2023-09-16 13:49 UTC (permalink / raw)
To: Richard Henderson, Helge Deller, John David Anglin
Cc: qemu-devel, linux-parisc
qemu-hppa may crash when delivering a signal. It can be demonstrated with
this program. Compile the program with "hppa-linux-gnu-gcc -O2 signal.c"
and run it with "qemu-hppa -one-insn-per-tb a.out". It reports that the
address of the flag is 0xb4 and it crashes when attempting to touch it.
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#include <signal.h>
sig_atomic_t flag;
void sig(int n)
{
printf("&flag: %p\n", &flag);
flag = 1;
}
int main(void)
{
struct sigaction sa;
struct itimerval it;
sa.sa_handler = sig;
sigemptyset(&sa.sa_mask);
sa.sa_flags = SA_RESTART;
if (sigaction(SIGALRM, &sa, NULL)) perror("sigaction"), exit(1);
it.it_interval.tv_sec = 0;
it.it_interval.tv_usec = 100;
it.it_value.tv_sec = it.it_interval.tv_sec;
it.it_value.tv_usec = it.it_interval.tv_usec;
if (setitimer(ITIMER_REAL, &it, NULL)) perror("setitimer"), exit(1);
while (1) {
}
}
The reason for the crash is that the signal handling routine doesn't clear
the 'N' flag in the PSW. If the signal interrupts a thread when the 'N'
flag is set, the flag remains set at the beginning of the signal handler
and the first instruction of the signal handler is skipped.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
---
linux-user/hppa/signal.c | 1 +
1 file changed, 1 insertion(+)
Index: qemu/linux-user/hppa/signal.c
===================================================================
--- qemu.orig/linux-user/hppa/signal.c
+++ qemu/linux-user/hppa/signal.c
@@ -159,6 +159,7 @@ void setup_rt_frame(int sig, struct targ
}
env->iaoq_f = haddr;
env->iaoq_b = haddr + 4;
+ env->psw_n = 0;
return;
give_sigsegv:
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] target/hppa: clear the PSW 'N' bit when delivering signals
2023-09-16 13:49 [PATCH] target/hppa: clear the PSW 'N' bit when delivering signals Mikulas Patocka
@ 2023-09-16 16:49 ` Helge Deller
2023-09-16 16:57 ` Helge Deller
0 siblings, 1 reply; 3+ messages in thread
From: Helge Deller @ 2023-09-16 16:49 UTC (permalink / raw)
To: Mikulas Patocka, Richard Henderson, John David Anglin
Cc: qemu-devel, linux-parisc
On 9/16/23 15:49, Mikulas Patocka wrote:
> qemu-hppa may crash when delivering a signal. It can be demonstrated with
> this program. Compile the program with "hppa-linux-gnu-gcc -O2 signal.c"
> and run it with "qemu-hppa -one-insn-per-tb a.out". It reports that the
> address of the flag is 0xb4 and it crashes when attempting to touch it.
>
> #include <stdio.h>
> #include <stdlib.h>
> #include <sys/time.h>
> #include <signal.h>
>
> sig_atomic_t flag;
>
> void sig(int n)
> {
> printf("&flag: %p\n", &flag);
> flag = 1;
> }
>
> int main(void)
> {
> struct sigaction sa;
> struct itimerval it;
>
> sa.sa_handler = sig;
> sigemptyset(&sa.sa_mask);
> sa.sa_flags = SA_RESTART;
> if (sigaction(SIGALRM, &sa, NULL)) perror("sigaction"), exit(1);
>
> it.it_interval.tv_sec = 0;
> it.it_interval.tv_usec = 100;
> it.it_value.tv_sec = it.it_interval.tv_sec;
> it.it_value.tv_usec = it.it_interval.tv_usec;
>
> if (setitimer(ITIMER_REAL, &it, NULL)) perror("setitimer"), exit(1);
>
> while (1) {
> }
> }
>
> The reason for the crash is that the signal handling routine doesn't clear
> the 'N' flag in the PSW. If the signal interrupts a thread when the 'N'
> flag is set, the flag remains set at the beginning of the signal handler
> and the first instruction of the signal handler is skipped.
>
> Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Acked-by: Helge Deller <deller@gmx.de>
Thank you!
Helge
>
> ---
> linux-user/hppa/signal.c | 1 +
> 1 file changed, 1 insertion(+)
>
> Index: qemu/linux-user/hppa/signal.c
> ===================================================================
> --- qemu.orig/linux-user/hppa/signal.c
> +++ qemu/linux-user/hppa/signal.c
> @@ -159,6 +159,7 @@ void setup_rt_frame(int sig, struct targ
> }
> env->iaoq_f = haddr;
> env->iaoq_b = haddr + 4;
> + env->psw_n = 0;
> return;
>
> give_sigsegv:
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] target/hppa: clear the PSW 'N' bit when delivering signals
2023-09-16 16:49 ` Helge Deller
@ 2023-09-16 16:57 ` Helge Deller
0 siblings, 0 replies; 3+ messages in thread
From: Helge Deller @ 2023-09-16 16:57 UTC (permalink / raw)
To: Mikulas Patocka, Richard Henderson, John David Anglin
Cc: qemu-devel, linux-parisc
On 9/16/23 18:49, Helge Deller wrote:
>> The reason for the crash is that the signal handling routine doesn't clear
>> the 'N' flag in the PSW. If the signal interrupts a thread when the 'N'
>> flag is set, the flag remains set at the beginning of the signal handler
>> and the first instruction of the signal handler is skipped.
>>
>> Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
>
> Acked-by: Helge Deller <deller@gmx.de>
FYI, I've queued by both patches in my btlb branch and added backport
to stable request.
Helge
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-16 16:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-16 13:49 [PATCH] target/hppa: clear the PSW 'N' bit when delivering signals Mikulas Patocka
2023-09-16 16:49 ` Helge Deller
2023-09-16 16:57 ` Helge Deller
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).