diff options
author | Roland McGrath <roland@redhat.com> | 2008-07-25 22:45:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 15:00:09 -0400 |
commit | 35de254dc60f91004b3b5ebb1fc7b2c3093d6032 (patch) | |
tree | 101e174247bb3174c8abe0fb8d1405ed6a4db6d1 /include/linux/tracehook.h | |
parent | c45aea27617d6a1e0aacddc3b0233f704222fcbd (diff) |
tracehook: tracehook_consider_ignored_signal
This defines tracehook_consider_ignored_signal() has a fine-grained hook
for deciding to prevent the normal short-circuit of sending an ignored
signal, as ptrace does. There is no change, only cleanup.
Signed-off-by: Roland McGrath <roland@redhat.com>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Reviewed-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/tracehook.h')
-rw-r--r-- | include/linux/tracehook.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h index 2d1426f8e33b..8cffd34f88d5 100644 --- a/include/linux/tracehook.h +++ b/include/linux/tracehook.h | |||
@@ -312,4 +312,23 @@ static inline void tracehook_signal_handler(int sig, siginfo_t *info, | |||
312 | ptrace_notify(SIGTRAP); | 312 | ptrace_notify(SIGTRAP); |
313 | } | 313 | } |
314 | 314 | ||
315 | /** | ||
316 | * tracehook_consider_ignored_signal - suppress short-circuit of ignored signal | ||
317 | * @task: task receiving the signal | ||
318 | * @sig: signal number being sent | ||
319 | * @handler: %SIG_IGN or %SIG_DFL | ||
320 | * | ||
321 | * Return zero iff tracing doesn't care to examine this ignored signal, | ||
322 | * so it can short-circuit normal delivery and never even get queued. | ||
323 | * Either @handler is %SIG_DFL and @sig's default is ignore, or it's %SIG_IGN. | ||
324 | * | ||
325 | * Called with @task->sighand->siglock held. | ||
326 | */ | ||
327 | static inline int tracehook_consider_ignored_signal(struct task_struct *task, | ||
328 | int sig, | ||
329 | void __user *handler) | ||
330 | { | ||
331 | return (task_ptrace(task) & PT_PTRACED) != 0; | ||
332 | } | ||
333 | |||
315 | #endif /* <linux/tracehook.h> */ | 334 | #endif /* <linux/tracehook.h> */ |