[PATCH 03/14] signal: More accurate ignoring of signals based on sig_can_short_circuit
From: Eric W. Biederman
Date: Fri Jul 03 2026 - 17:38:11 EST
For a signal to be ignored two things need to happen:
- The conditions need to be present to ignore calling the signal handler.
- The signal needs to be deliverable to at least one thread of the process
In rare cases the like unblocked signals on a dead thread the current
code will ignore signals that are blocked by all living threads.
Opportunities to ignore signals are missed when another thread has the
signal unblocked.
Implement sig_can_short_circuit to properly detect that short
circuiting is possible.
Rename sig_task_ignored to sig_ingored.
Signed-off-by: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx>
---
kernel/signal.c | 59 ++++++++++++++++++++++++++++++++++++-------------
1 file changed, 44 insertions(+), 15 deletions(-)
diff --git a/kernel/signal.c b/kernel/signal.c
index 1a8183606dc0..4429d3ec6776 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -81,7 +81,7 @@ static inline bool sig_handler_ignored(void __user *handler, int sig)
(handler == SIG_DFL && sig_kernel_ignore(sig));
}
-static bool sig_task_ignored(struct task_struct *t, int sig, bool force)
+static bool sig_ignored(struct task_struct *t, int sig, bool force)
{
void __user *handler;
@@ -122,25 +122,49 @@ static bool sig_blocked(struct task_struct *t, int sig)
sigismember(&t->real_blocked, sig);
}
-static bool sig_ignored(struct task_struct *t, int sig, bool force)
+static bool sig_can_short_circuit_to_thread(struct task_struct *thread, int sig)
{
+ /* Only a living thread can receive a short circuit signal */
+ if (__fatal_signal_pending(thread) || (thread->flags & PF_EXITING))
+ return false;
+
/*
- * Blocked signals are never ignored, since the
- * signal handler may change by the time it is
- * unblocked.
+ * If the signal handler is blocked then short circuit
+ * delivery may not happen because the signal handler may
+ * change by the time it is unblocked.
*/
- if (sig_blocked(t, sig))
+ if (sig_blocked(thread, sig))
return false;
/*
- * Tracers may want to know about even ignored signal unless it
- * is SIGKILL which can't be reported anyway but can be ignored
- * by SIGNAL_UNKILLABLE task.
+ * Tracers are allowed to see and modify all signals.
+ * SIGKILL and the SA_IMMUTABLE signals are an exception.
*/
- if (t->ptrace && sig != SIGKILL)
+ if (thread->ptrace &&
+ (sig != SIGKILL) &&
+ !(thread->sighand->action[sig - 1].sa.sa_flags & SA_IMMUTABLE))
return false;
- return sig_task_ignored(t, sig, force);
+ return true;
+}
+
+static bool sig_can_short_circuit(struct task_struct *p, enum pid_type type, int sig)
+{
+ /*
+ * Is there at least one thread where the short circuit
+ * delivery is valid?
+ */
+ struct task_struct *thread;
+
+ if (type == PIDTYPE_PID)
+ return sig_can_short_circuit_to_thread(p, sig);
+
+ for_each_thread(p, thread) {
+ if (sig_can_short_circuit_to_thread(thread, sig))
+ return true;
+ }
+
+ return false;
}
/*
@@ -887,7 +911,8 @@ static void ptrace_trap_notify(struct task_struct *t)
* Returns true if the signal should be actually delivered, otherwise
* it should be dropped.
*/
-static bool prepare_signal(int sig, struct task_struct *p, bool force)
+static bool prepare_signal(int sig, struct task_struct *p,
+ enum pid_type type, bool force)
{
struct signal_struct *signal = p->signal;
struct task_struct *t;
@@ -951,7 +976,11 @@ static bool prepare_signal(int sig, struct task_struct *p, bool force)
}
}
- return !sig_ignored(p, sig, force);
+ /* Stop process the signal if nothing more needs to be done */
+ if (sig_ignored(p, sig, force) && sig_can_short_circuit(p, type, sig))
+ return false;
+
+ return true;
}
/*
@@ -1082,7 +1111,7 @@ static int __send_signal_locked(int sig, struct kernel_siginfo *info,
lockdep_assert_held(&t->sighand->siglock);
result = TRACE_SIGNAL_IGNORED;
- if (!prepare_signal(sig, t, force))
+ if (!prepare_signal(sig, t, type, force))
goto ret;
pending = (type != PIDTYPE_PID) ? &t->signal->shared_pending : &t->pending;
@@ -2020,7 +2049,7 @@ void posixtimer_send_sigqueue(struct k_itimer *tmr)
*/
tmr->it_sig_periodic = tmr->it_status == POSIX_TIMER_REQUEUE_PENDING;
- if (!prepare_signal(sig, t, false)) {
+ if (!prepare_signal(sig, t, tmr->it_pid_type, false)) {
result = TRACE_SIGNAL_IGNORED;
if (!list_empty(&q->list)) {
--
2.41.0