diff options
Diffstat (limited to 'include/linux/tracehook.h')
-rw-r--r-- | include/linux/tracehook.h | 575 |
1 files changed, 575 insertions, 0 deletions
diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h new file mode 100644 index 000000000000..589f429619c9 --- /dev/null +++ b/include/linux/tracehook.h | |||
@@ -0,0 +1,575 @@ | |||
1 | /* | ||
2 | * Tracing hooks | ||
3 | * | ||
4 | * Copyright (C) 2008 Red Hat, Inc. All rights reserved. | ||
5 | * | ||
6 | * This copyrighted material is made available to anyone wishing to use, | ||
7 | * modify, copy, or redistribute it subject to the terms and conditions | ||
8 | * of the GNU General Public License v.2. | ||
9 | * | ||
10 | * This file defines hook entry points called by core code where | ||
11 | * user tracing/debugging support might need to do something. These | ||
12 | * entry points are called tracehook_*(). Each hook declared below | ||
13 | * has a detailed kerneldoc comment giving the context (locking et | ||
14 | * al) from which it is called, and the meaning of its return value. | ||
15 | * | ||
16 | * Each function here typically has only one call site, so it is ok | ||
17 | * to have some nontrivial tracehook_*() inlines. In all cases, the | ||
18 | * fast path when no tracing is enabled should be very short. | ||
19 | * | ||
20 | * The purpose of this file and the tracehook_* layer is to consolidate | ||
21 | * the interface that the kernel core and arch code uses to enable any | ||
22 | * user debugging or tracing facility (such as ptrace). The interfaces | ||
23 | * here are carefully documented so that maintainers of core and arch | ||
24 | * code do not need to think about the implementation details of the | ||
25 | * tracing facilities. Likewise, maintainers of the tracing code do not | ||
26 | * need to understand all the calling core or arch code in detail, just | ||
27 | * documented circumstances of each call, such as locking conditions. | ||
28 | * | ||
29 | * If the calling core code changes so that locking is different, then | ||
30 | * it is ok to change the interface documented here. The maintainer of | ||
31 | * core code changing should notify the maintainers of the tracing code | ||
32 | * that they need to work out the change. | ||
33 | * | ||
34 | * Some tracehook_*() inlines take arguments that the current tracing | ||
35 | * implementations might not necessarily use. These function signatures | ||
36 | * are chosen to pass in all the information that is on hand in the | ||
37 | * caller and might conceivably be relevant to a tracer, so that the | ||
38 | * core code won't have to be updated when tracing adds more features. | ||
39 | * If a call site changes so that some of those parameters are no longer | ||
40 | * already on hand without extra work, then the tracehook_* interface | ||
41 | * can change so there is no make-work burden on the core code. The | ||
42 | * maintainer of core code changing should notify the maintainers of the | ||
43 | * tracing code that they need to work out the change. | ||
44 | */ | ||
45 | |||
46 | #ifndef _LINUX_TRACEHOOK_H | ||
47 | #define _LINUX_TRACEHOOK_H 1 | ||
48 | |||
49 | #include <linux/sched.h> | ||
50 | #include <linux/ptrace.h> | ||
51 | #include <linux/security.h> | ||
52 | struct linux_binprm; | ||
53 | |||
54 | /** | ||
55 | * tracehook_expect_breakpoints - guess if task memory might be touched | ||
56 | * @task: current task, making a new mapping | ||
57 | * | ||
58 | * Return nonzero if @task is expected to want breakpoint insertion in | ||
59 | * its memory at some point. A zero return is no guarantee it won't | ||
60 | * be done, but this is a hint that it's known to be likely. | ||
61 | * | ||
62 | * May be called with @task->mm->mmap_sem held for writing. | ||
63 | */ | ||
64 | static inline int tracehook_expect_breakpoints(struct task_struct *task) | ||
65 | { | ||
66 | return (task_ptrace(task) & PT_PTRACED) != 0; | ||
67 | } | ||
68 | |||
69 | /* | ||
70 | * ptrace report for syscall entry and exit looks identical. | ||
71 | */ | ||
72 | static inline void ptrace_report_syscall(struct pt_regs *regs) | ||
73 | { | ||
74 | int ptrace = task_ptrace(current); | ||
75 | |||
76 | if (!(ptrace & PT_PTRACED)) | ||
77 | return; | ||
78 | |||
79 | ptrace_notify(SIGTRAP | ((ptrace & PT_TRACESYSGOOD) ? 0x80 : 0)); | ||
80 | |||
81 | /* | ||
82 | * this isn't the same as continuing with a signal, but it will do | ||
83 | * for normal use. strace only continues with a signal if the | ||
84 | * stopping signal is not SIGTRAP. -brl | ||
85 | */ | ||
86 | if (current->exit_code) { | ||
87 | send_sig(current->exit_code, current, 1); | ||
88 | current->exit_code = 0; | ||
89 | } | ||
90 | } | ||
91 | |||
92 | /** | ||
93 | * tracehook_report_syscall_entry - task is about to attempt a system call | ||
94 | * @regs: user register state of current task | ||
95 | * | ||
96 | * This will be called if %TIF_SYSCALL_TRACE has been set, when the | ||
97 | * current task has just entered the kernel for a system call. | ||
98 | * Full user register state is available here. Changing the values | ||
99 | * in @regs can affect the system call number and arguments to be tried. | ||
100 | * It is safe to block here, preventing the system call from beginning. | ||
101 | * | ||
102 | * Returns zero normally, or nonzero if the calling arch code should abort | ||
103 | * the system call. That must prevent normal entry so no system call is | ||
104 | * made. If @task ever returns to user mode after this, its register state | ||
105 | * is unspecified, but should be something harmless like an %ENOSYS error | ||
106 | * return. It should preserve enough information so that syscall_rollback() | ||
107 | * can work (see asm-generic/syscall.h). | ||
108 | * | ||
109 | * Called without locks, just after entering kernel mode. | ||
110 | */ | ||
111 | static inline __must_check int tracehook_report_syscall_entry( | ||
112 | struct pt_regs *regs) | ||
113 | { | ||
114 | ptrace_report_syscall(regs); | ||
115 | return 0; | ||
116 | } | ||
117 | |||
118 | /** | ||
119 | * tracehook_report_syscall_exit - task has just finished a system call | ||
120 | * @regs: user register state of current task | ||
121 | * @step: nonzero if simulating single-step or block-step | ||
122 | * | ||
123 | * This will be called if %TIF_SYSCALL_TRACE has been set, when the | ||
124 | * current task has just finished an attempted system call. Full | ||
125 | * user register state is available here. It is safe to block here, | ||
126 | * preventing signals from being processed. | ||
127 | * | ||
128 | * If @step is nonzero, this report is also in lieu of the normal | ||
129 | * trap that would follow the system call instruction because | ||
130 | * user_enable_block_step() or user_enable_single_step() was used. | ||
131 | * In this case, %TIF_SYSCALL_TRACE might not be set. | ||
132 | * | ||
133 | * Called without locks, just before checking for pending signals. | ||
134 | */ | ||
135 | static inline void tracehook_report_syscall_exit(struct pt_regs *regs, int step) | ||
136 | { | ||
137 | ptrace_report_syscall(regs); | ||
138 | } | ||
139 | |||
140 | /** | ||
141 | * tracehook_unsafe_exec - check for exec declared unsafe due to tracing | ||
142 | * @task: current task doing exec | ||
143 | * | ||
144 | * Return %LSM_UNSAFE_* bits applied to an exec because of tracing. | ||
145 | * | ||
146 | * Called with task_lock() held on @task. | ||
147 | */ | ||
148 | static inline int tracehook_unsafe_exec(struct task_struct *task) | ||
149 | { | ||
150 | int unsafe = 0; | ||
151 | int ptrace = task_ptrace(task); | ||
152 | if (ptrace & PT_PTRACED) { | ||
153 | if (ptrace & PT_PTRACE_CAP) | ||
154 | unsafe |= LSM_UNSAFE_PTRACE_CAP; | ||
155 | else | ||
156 | unsafe |= LSM_UNSAFE_PTRACE; | ||
157 | } | ||
158 | return unsafe; | ||
159 | } | ||
160 | |||
161 | /** | ||
162 | * tracehook_tracer_task - return the task that is tracing the given task | ||
163 | * @tsk: task to consider | ||
164 | * | ||
165 | * Returns NULL if noone is tracing @task, or the &struct task_struct | ||
166 | * pointer to its tracer. | ||
167 | * | ||
168 | * Must called under rcu_read_lock(). The pointer returned might be kept | ||
169 | * live only by RCU. During exec, this may be called with task_lock() | ||
170 | * held on @task, still held from when tracehook_unsafe_exec() was called. | ||
171 | */ | ||
172 | static inline struct task_struct *tracehook_tracer_task(struct task_struct *tsk) | ||
173 | { | ||
174 | if (task_ptrace(tsk) & PT_PTRACED) | ||
175 | return rcu_dereference(tsk->parent); | ||
176 | return NULL; | ||
177 | } | ||
178 | |||
179 | /** | ||
180 | * tracehook_report_exec - a successful exec was completed | ||
181 | * @fmt: &struct linux_binfmt that performed the exec | ||
182 | * @bprm: &struct linux_binprm containing exec details | ||
183 | * @regs: user-mode register state | ||
184 | * | ||
185 | * An exec just completed, we are shortly going to return to user mode. | ||
186 | * The freshly initialized register state can be seen and changed in @regs. | ||
187 | * The name, file and other pointers in @bprm are still on hand to be | ||
188 | * inspected, but will be freed as soon as this returns. | ||
189 | * | ||
190 | * Called with no locks, but with some kernel resources held live | ||
191 | * and a reference on @fmt->module. | ||
192 | */ | ||
193 | static inline void tracehook_report_exec(struct linux_binfmt *fmt, | ||
194 | struct linux_binprm *bprm, | ||
195 | struct pt_regs *regs) | ||
196 | { | ||
197 | if (!ptrace_event(PT_TRACE_EXEC, PTRACE_EVENT_EXEC, 0) && | ||
198 | unlikely(task_ptrace(current) & PT_PTRACED)) | ||
199 | send_sig(SIGTRAP, current, 0); | ||
200 | } | ||
201 | |||
202 | /** | ||
203 | * tracehook_report_exit - task has begun to exit | ||
204 | * @exit_code: pointer to value destined for @current->exit_code | ||
205 | * | ||
206 | * @exit_code points to the value passed to do_exit(), which tracing | ||
207 | * might change here. This is almost the first thing in do_exit(), | ||
208 | * before freeing any resources or setting the %PF_EXITING flag. | ||
209 | * | ||
210 | * Called with no locks held. | ||
211 | */ | ||
212 | static inline void tracehook_report_exit(long *exit_code) | ||
213 | { | ||
214 | ptrace_event(PT_TRACE_EXIT, PTRACE_EVENT_EXIT, *exit_code); | ||
215 | } | ||
216 | |||
217 | /** | ||
218 | * tracehook_prepare_clone - prepare for new child to be cloned | ||
219 | * @clone_flags: %CLONE_* flags from clone/fork/vfork system call | ||
220 | * | ||
221 | * This is called before a new user task is to be cloned. | ||
222 | * Its return value will be passed to tracehook_finish_clone(). | ||
223 | * | ||
224 | * Called with no locks held. | ||
225 | */ | ||
226 | static inline int tracehook_prepare_clone(unsigned clone_flags) | ||
227 | { | ||
228 | if (clone_flags & CLONE_UNTRACED) | ||
229 | return 0; | ||
230 | |||
231 | if (clone_flags & CLONE_VFORK) { | ||
232 | if (current->ptrace & PT_TRACE_VFORK) | ||
233 | return PTRACE_EVENT_VFORK; | ||
234 | } else if ((clone_flags & CSIGNAL) != SIGCHLD) { | ||
235 | if (current->ptrace & PT_TRACE_CLONE) | ||
236 | return PTRACE_EVENT_CLONE; | ||
237 | } else if (current->ptrace & PT_TRACE_FORK) | ||
238 | return PTRACE_EVENT_FORK; | ||
239 | |||
240 | return 0; | ||
241 | } | ||
242 | |||
243 | /** | ||
244 | * tracehook_finish_clone - new child created and being attached | ||
245 | * @child: new child task | ||
246 | * @clone_flags: %CLONE_* flags from clone/fork/vfork system call | ||
247 | * @trace: return value from tracehook_clone_prepare() | ||
248 | * | ||
249 | * This is called immediately after adding @child to its parent's children list. | ||
250 | * The @trace value is that returned by tracehook_prepare_clone(). | ||
251 | * | ||
252 | * Called with current's siglock and write_lock_irq(&tasklist_lock) held. | ||
253 | */ | ||
254 | static inline void tracehook_finish_clone(struct task_struct *child, | ||
255 | unsigned long clone_flags, int trace) | ||
256 | { | ||
257 | ptrace_init_task(child, (clone_flags & CLONE_PTRACE) || trace); | ||
258 | } | ||
259 | |||
260 | /** | ||
261 | * tracehook_report_clone - in parent, new child is about to start running | ||
262 | * @trace: return value from tracehook_clone_prepare() | ||
263 | * @regs: parent's user register state | ||
264 | * @clone_flags: flags from parent's system call | ||
265 | * @pid: new child's PID in the parent's namespace | ||
266 | * @child: new child task | ||
267 | * | ||
268 | * Called after a child is set up, but before it has been started running. | ||
269 | * The @trace value is that returned by tracehook_clone_prepare(). | ||
270 | * This is not a good place to block, because the child has not started yet. | ||
271 | * Suspend the child here if desired, and block in tracehook_clone_complete(). | ||
272 | * This must prevent the child from self-reaping if tracehook_clone_complete() | ||
273 | * uses the @child pointer; otherwise it might have died and been released by | ||
274 | * the time tracehook_report_clone_complete() is called. | ||
275 | * | ||
276 | * Called with no locks held, but the child cannot run until this returns. | ||
277 | */ | ||
278 | static inline void tracehook_report_clone(int trace, struct pt_regs *regs, | ||
279 | unsigned long clone_flags, | ||
280 | pid_t pid, struct task_struct *child) | ||
281 | { | ||
282 | if (unlikely(trace)) { | ||
283 | /* | ||
284 | * The child starts up with an immediate SIGSTOP. | ||
285 | */ | ||
286 | sigaddset(&child->pending.signal, SIGSTOP); | ||
287 | set_tsk_thread_flag(child, TIF_SIGPENDING); | ||
288 | } | ||
289 | } | ||
290 | |||
291 | /** | ||
292 | * tracehook_report_clone_complete - new child is running | ||
293 | * @trace: return value from tracehook_clone_prepare() | ||
294 | * @regs: parent's user register state | ||
295 | * @clone_flags: flags from parent's system call | ||
296 | * @pid: new child's PID in the parent's namespace | ||
297 | * @child: child task, already running | ||
298 | * | ||
299 | * This is called just after the child has started running. This is | ||
300 | * just before the clone/fork syscall returns, or blocks for vfork | ||
301 | * child completion if @clone_flags has the %CLONE_VFORK bit set. | ||
302 | * The @child pointer may be invalid if a self-reaping child died and | ||
303 | * tracehook_report_clone() took no action to prevent it from self-reaping. | ||
304 | * | ||
305 | * Called with no locks held. | ||
306 | */ | ||
307 | static inline void tracehook_report_clone_complete(int trace, | ||
308 | struct pt_regs *regs, | ||
309 | unsigned long clone_flags, | ||
310 | pid_t pid, | ||
311 | struct task_struct *child) | ||
312 | { | ||
313 | if (unlikely(trace)) | ||
314 | ptrace_event(0, trace, pid); | ||
315 | } | ||
316 | |||
317 | /** | ||
318 | * tracehook_report_vfork_done - vfork parent's child has exited or exec'd | ||
319 | * @child: child task, already running | ||
320 | * @pid: new child's PID in the parent's namespace | ||
321 | * | ||
322 | * Called after a %CLONE_VFORK parent has waited for the child to complete. | ||
323 | * The clone/vfork system call will return immediately after this. | ||
324 | * The @child pointer may be invalid if a self-reaping child died and | ||
325 | * tracehook_report_clone() took no action to prevent it from self-reaping. | ||
326 | * | ||
327 | * Called with no locks held. | ||
328 | */ | ||
329 | static inline void tracehook_report_vfork_done(struct task_struct *child, | ||
330 | pid_t pid) | ||
331 | { | ||
332 | ptrace_event(PT_TRACE_VFORK_DONE, PTRACE_EVENT_VFORK_DONE, pid); | ||
333 | } | ||
334 | |||
335 | /** | ||
336 | * tracehook_prepare_release_task - task is being reaped, clean up tracing | ||
337 | * @task: task in %EXIT_DEAD state | ||
338 | * | ||
339 | * This is called in release_task() just before @task gets finally reaped | ||
340 | * and freed. This would be the ideal place to remove and clean up any | ||
341 | * tracing-related state for @task. | ||
342 | * | ||
343 | * Called with no locks held. | ||
344 | */ | ||
345 | static inline void tracehook_prepare_release_task(struct task_struct *task) | ||
346 | { | ||
347 | } | ||
348 | |||
349 | /** | ||
350 | * tracehook_finish_release_task - task is being reaped, clean up tracing | ||
351 | * @task: task in %EXIT_DEAD state | ||
352 | * | ||
353 | * This is called in release_task() when @task is being in the middle of | ||
354 | * being reaped. After this, there must be no tracing entanglements. | ||
355 | * | ||
356 | * Called with write_lock_irq(&tasklist_lock) held. | ||
357 | */ | ||
358 | static inline void tracehook_finish_release_task(struct task_struct *task) | ||
359 | { | ||
360 | ptrace_release_task(task); | ||
361 | } | ||
362 | |||
363 | /** | ||
364 | * tracehook_signal_handler - signal handler setup is complete | ||
365 | * @sig: number of signal being delivered | ||
366 | * @info: siginfo_t of signal being delivered | ||
367 | * @ka: sigaction setting that chose the handler | ||
368 | * @regs: user register state | ||
369 | * @stepping: nonzero if debugger single-step or block-step in use | ||
370 | * | ||
371 | * Called by the arch code after a signal handler has been set up. | ||
372 | * Register and stack state reflects the user handler about to run. | ||
373 | * Signal mask changes have already been made. | ||
374 | * | ||
375 | * Called without locks, shortly before returning to user mode | ||
376 | * (or handling more signals). | ||
377 | */ | ||
378 | static inline void tracehook_signal_handler(int sig, siginfo_t *info, | ||
379 | const struct k_sigaction *ka, | ||
380 | struct pt_regs *regs, int stepping) | ||
381 | { | ||
382 | if (stepping) | ||
383 | ptrace_notify(SIGTRAP); | ||
384 | } | ||
385 | |||
386 | /** | ||
387 | * tracehook_consider_ignored_signal - suppress short-circuit of ignored signal | ||
388 | * @task: task receiving the signal | ||
389 | * @sig: signal number being sent | ||
390 | * @handler: %SIG_IGN or %SIG_DFL | ||
391 | * | ||
392 | * Return zero iff tracing doesn't care to examine this ignored signal, | ||
393 | * so it can short-circuit normal delivery and never even get queued. | ||
394 | * Either @handler is %SIG_DFL and @sig's default is ignore, or it's %SIG_IGN. | ||
395 | * | ||
396 | * Called with @task->sighand->siglock held. | ||
397 | */ | ||
398 | static inline int tracehook_consider_ignored_signal(struct task_struct *task, | ||
399 | int sig, | ||
400 | void __user *handler) | ||
401 | { | ||
402 | return (task_ptrace(task) & PT_PTRACED) != 0; | ||
403 | } | ||
404 | |||
405 | /** | ||
406 | * tracehook_consider_fatal_signal - suppress special handling of fatal signal | ||
407 | * @task: task receiving the signal | ||
408 | * @sig: signal number being sent | ||
409 | * @handler: %SIG_DFL or %SIG_IGN | ||
410 | * | ||
411 | * Return nonzero to prevent special handling of this termination signal. | ||
412 | * Normally @handler is %SIG_DFL. It can be %SIG_IGN if @sig is ignored, | ||
413 | * in which case force_sig() is about to reset it to %SIG_DFL. | ||
414 | * When this returns zero, this signal might cause a quick termination | ||
415 | * that does not give the debugger a chance to intercept the signal. | ||
416 | * | ||
417 | * Called with or without @task->sighand->siglock held. | ||
418 | */ | ||
419 | static inline int tracehook_consider_fatal_signal(struct task_struct *task, | ||
420 | int sig, | ||
421 | void __user *handler) | ||
422 | { | ||
423 | return (task_ptrace(task) & PT_PTRACED) != 0; | ||
424 | } | ||
425 | |||
426 | /** | ||
427 | * tracehook_force_sigpending - let tracing force signal_pending(current) on | ||
428 | * | ||
429 | * Called when recomputing our signal_pending() flag. Return nonzero | ||
430 | * to force the signal_pending() flag on, so that tracehook_get_signal() | ||
431 | * will be called before the next return to user mode. | ||
432 | * | ||
433 | * Called with @current->sighand->siglock held. | ||
434 | */ | ||
435 | static inline int tracehook_force_sigpending(void) | ||
436 | { | ||
437 | return 0; | ||
438 | } | ||
439 | |||
440 | /** | ||
441 | * tracehook_get_signal - deliver synthetic signal to traced task | ||
442 | * @task: @current | ||
443 | * @regs: task_pt_regs(@current) | ||
444 | * @info: details of synthetic signal | ||
445 | * @return_ka: sigaction for synthetic signal | ||
446 | * | ||
447 | * Return zero to check for a real pending signal normally. | ||
448 | * Return -1 after releasing the siglock to repeat the check. | ||
449 | * Return a signal number to induce an artifical signal delivery, | ||
450 | * setting *@info and *@return_ka to specify its details and behavior. | ||
451 | * | ||
452 | * The @return_ka->sa_handler value controls the disposition of the | ||
453 | * signal, no matter the signal number. For %SIG_DFL, the return value | ||
454 | * is a representative signal to indicate the behavior (e.g. %SIGTERM | ||
455 | * for death, %SIGQUIT for core dump, %SIGSTOP for job control stop, | ||
456 | * %SIGTSTP for stop unless in an orphaned pgrp), but the signal number | ||
457 | * reported will be @info->si_signo instead. | ||
458 | * | ||
459 | * Called with @task->sighand->siglock held, before dequeuing pending signals. | ||
460 | */ | ||
461 | static inline int tracehook_get_signal(struct task_struct *task, | ||
462 | struct pt_regs *regs, | ||
463 | siginfo_t *info, | ||
464 | struct k_sigaction *return_ka) | ||
465 | { | ||
466 | return 0; | ||
467 | } | ||
468 | |||
469 | /** | ||
470 | * tracehook_notify_jctl - report about job control stop/continue | ||
471 | * @notify: nonzero if this is the last thread in the group to stop | ||
472 | * @why: %CLD_STOPPED or %CLD_CONTINUED | ||
473 | * | ||
474 | * This is called when we might call do_notify_parent_cldstop(). | ||
475 | * It's called when about to stop for job control; we are already in | ||
476 | * %TASK_STOPPED state, about to call schedule(). It's also called when | ||
477 | * a delayed %CLD_STOPPED or %CLD_CONTINUED report is ready to be made. | ||
478 | * | ||
479 | * Return nonzero to generate a %SIGCHLD with @why, which is | ||
480 | * normal if @notify is nonzero. | ||
481 | * | ||
482 | * Called with no locks held. | ||
483 | */ | ||
484 | static inline int tracehook_notify_jctl(int notify, int why) | ||
485 | { | ||
486 | return notify || (current->ptrace & PT_PTRACED); | ||
487 | } | ||
488 | |||
489 | /** | ||
490 | * tracehook_notify_death - task is dead, ready to notify parent | ||
491 | * @task: @current task now exiting | ||
492 | * @death_cookie: value to pass to tracehook_report_death() | ||
493 | * @group_dead: nonzero if this was the last thread in the group to die | ||
494 | * | ||
495 | * Return the signal number to send our parent with do_notify_parent(), or | ||
496 | * zero to send no signal and leave a zombie, or -1 to self-reap right now. | ||
497 | * | ||
498 | * Called with write_lock_irq(&tasklist_lock) held. | ||
499 | */ | ||
500 | static inline int tracehook_notify_death(struct task_struct *task, | ||
501 | void **death_cookie, int group_dead) | ||
502 | { | ||
503 | if (task->exit_signal == -1) | ||
504 | return task->ptrace ? SIGCHLD : -1; | ||
505 | |||
506 | /* | ||
507 | * If something other than our normal parent is ptracing us, then | ||
508 | * send it a SIGCHLD instead of honoring exit_signal. exit_signal | ||
509 | * only has special meaning to our real parent. | ||
510 | */ | ||
511 | if (thread_group_empty(task) && !ptrace_reparented(task)) | ||
512 | return task->exit_signal; | ||
513 | |||
514 | return task->ptrace ? SIGCHLD : 0; | ||
515 | } | ||
516 | |||
517 | /** | ||
518 | * tracehook_report_death - task is dead and ready to be reaped | ||
519 | * @task: @current task now exiting | ||
520 | * @signal: signal number sent to parent, or 0 or -1 | ||
521 | * @death_cookie: value passed back from tracehook_notify_death() | ||
522 | * @group_dead: nonzero if this was the last thread in the group to die | ||
523 | * | ||
524 | * Thread has just become a zombie or is about to self-reap. If positive, | ||
525 | * @signal is the signal number just sent to the parent (usually %SIGCHLD). | ||
526 | * If @signal is -1, this thread will self-reap. If @signal is 0, this is | ||
527 | * a delayed_group_leader() zombie. The @death_cookie was passed back by | ||
528 | * tracehook_notify_death(). | ||
529 | * | ||
530 | * If normal reaping is not inhibited, @task->exit_state might be changing | ||
531 | * in parallel. | ||
532 | * | ||
533 | * Called without locks. | ||
534 | */ | ||
535 | static inline void tracehook_report_death(struct task_struct *task, | ||
536 | int signal, void *death_cookie, | ||
537 | int group_dead) | ||
538 | { | ||
539 | } | ||
540 | |||
541 | #ifdef TIF_NOTIFY_RESUME | ||
542 | /** | ||
543 | * set_notify_resume - cause tracehook_notify_resume() to be called | ||
544 | * @task: task that will call tracehook_notify_resume() | ||
545 | * | ||
546 | * Calling this arranges that @task will call tracehook_notify_resume() | ||
547 | * before returning to user mode. If it's already running in user mode, | ||
548 | * it will enter the kernel and call tracehook_notify_resume() soon. | ||
549 | * If it's blocked, it will not be woken. | ||
550 | */ | ||
551 | static inline void set_notify_resume(struct task_struct *task) | ||
552 | { | ||
553 | if (!test_and_set_tsk_thread_flag(task, TIF_NOTIFY_RESUME)) | ||
554 | kick_process(task); | ||
555 | } | ||
556 | |||
557 | /** | ||
558 | * tracehook_notify_resume - report when about to return to user mode | ||
559 | * @regs: user-mode registers of @current task | ||
560 | * | ||
561 | * This is called when %TIF_NOTIFY_RESUME has been set. Now we are | ||
562 | * about to return to user mode, and the user state in @regs can be | ||
563 | * inspected or adjusted. The caller in arch code has cleared | ||
564 | * %TIF_NOTIFY_RESUME before the call. If the flag gets set again | ||
565 | * asynchronously, this will be called again before we return to | ||
566 | * user mode. | ||
567 | * | ||
568 | * Called without locks. | ||
569 | */ | ||
570 | static inline void tracehook_notify_resume(struct pt_regs *regs) | ||
571 | { | ||
572 | } | ||
573 | #endif /* TIF_NOTIFY_RESUME */ | ||
574 | |||
575 | #endif /* <linux/tracehook.h> */ | ||