mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] signal: re-arm ignored periodic POSIX timers when handler is installed in do_sigaction()
@ 2026-09-19 22:17 Hui Peng
  2026-09-20 13:01 ` Oleg Nesterov
  0 siblings, 1 reply; 2+ messages in thread
From: Hui Peng @ 2026-09-19 22:17 UTC (permalink / raw)
  To: oleg, akpm, brauner, tglx, elver; +Cc: linux-kernel

When a periodic POSIX timer fires while its target signal is ignored
(e.g. default SIGCONT/SIGCHLD/SIGURG/SIGWINCH or SIG_IGN), the signal is
dropped without advancing or queueing the timer's sigqueue, leaving the
periodic timer stalled even after userspace installs a signal handler
via sigaction(). Check and re-arm any pending ignored POSIX timers on
the thread group when do_sigaction() transitions a signal out of the
ignored state.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Assisted-by: LLM
Signed-off-by: Hui Peng <benquike@gmail.com>
---
diff --git a/kernel/signal.c b/kernel/signal.c
index ec30550951ec..49ba188296c4 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -4351,7 +4351,7 @@ int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
 	sigaction_compat_abi(act, oact);
 
 	if (act) {
-		bool was_ignored = k->sa.sa_handler == SIG_IGN;
+		bool was_ignored = sig_task_ignored(p, sig, false);
 
 		sigdelsetmask(&act->sa.sa_mask,
 			      sigmask(SIGKILL) | sigmask(SIGSTOP));
@@ -4367,7 +4367,7 @@ int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
 		 *   (for example, SIGCHLD), shall cause the pending signal to
 		 *   be discarded, whether or not it is blocked"
 		 */
-		if (sig_handler_ignored(sig_handler(p, sig), sig)) {
+		if (sig_task_ignored(p, sig, false)) {
 			sigemptyset(&mask);
 			sigaddset(&mask, sig);
 			flush_sigqueue_mask(p, &mask, &p->signal->shared_pending);

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

* Re: [PATCH] signal: re-arm ignored periodic POSIX timers when handler is installed in do_sigaction()
  2026-09-19 22:17 [PATCH] signal: re-arm ignored periodic POSIX timers when handler is installed in do_sigaction() Hui Peng
@ 2026-09-20 13:01 ` Oleg Nesterov
  0 siblings, 0 replies; 2+ messages in thread
From: Oleg Nesterov @ 2026-09-20 13:01 UTC (permalink / raw)
  To: Hui Peng; +Cc: akpm, brauner, tglx, elver, linux-kernel

On 09/19, Hui Peng wrote:
>
> When a periodic POSIX timer fires while its target signal is ignored
> (e.g. default SIGCONT/SIGCHLD/SIGURG/SIGWINCH or SIG_IGN), the signal is
> dropped without advancing or queueing the timer's sigqueue, leaving the
> periodic timer stalled even after userspace installs a signal handler
> via sigaction(). Check and re-arm any pending ignored POSIX timers on
> the thread group when do_sigaction() transitions a signal out of the
> ignored state.
>
> Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")

Well, It was supposed to have been fixed by caf77435dd8a ("signal: Handle
ignored signals in do_sigaction(action != SIG_IGN)") and other commits in
that series...

Do you have a test-case?

Oleg.

> Assisted-by: LLM
> Signed-off-by: Hui Peng <benquike@gmail.com>
> ---
> diff --git a/kernel/signal.c b/kernel/signal.c
> index ec30550951ec..49ba188296c4 100644
> --- a/kernel/signal.c
> +++ b/kernel/signal.c
> @@ -4351,7 +4351,7 @@ int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
>  	sigaction_compat_abi(act, oact);
>  
>  	if (act) {
> -		bool was_ignored = k->sa.sa_handler == SIG_IGN;
> +		bool was_ignored = sig_task_ignored(p, sig, false);
>  
>  		sigdelsetmask(&act->sa.sa_mask,
>  			      sigmask(SIGKILL) | sigmask(SIGSTOP));
> @@ -4367,7 +4367,7 @@ int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
>  		 *   (for example, SIGCHLD), shall cause the pending signal to
>  		 *   be discarded, whether or not it is blocked"
>  		 */
> -		if (sig_handler_ignored(sig_handler(p, sig), sig)) {
> +		if (sig_task_ignored(p, sig, false)) {
>  			sigemptyset(&mask);
>  			sigaddset(&mask, sig);
>  			flush_sigqueue_mask(p, &mask, &p->signal->shared_pending);
> 


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

end of thread, other threads:[~2026-09-20 13:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-19 22:17 [PATCH] signal: re-arm ignored periodic POSIX timers when handler is installed in do_sigaction() Hui Peng
2026-09-20 13:01 ` Oleg Nesterov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®