blob: 05589a3e37f47992f7390d56e84606ef1b3f8888 [file] [log] [blame]
Roland McGrath88ac2922008-07-25 19:45:43 -07001/*
2 * Tracing hooks
3 *
Roland McGrathae6d2ed2009-09-23 15:56:53 -07004 * Copyright (C) 2008-2009 Red Hat, Inc. All rights reserved.
Roland McGrath88ac2922008-07-25 19:45:43 -07005 *
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>
Roland McGrath6341c392008-07-25 19:45:44 -070051#include <linux/security.h>
Oleg Nesterove73f8952012-05-11 10:59:07 +100052#include <linux/task_work.h>
Tejun Heob23afb92015-11-05 18:46:11 -080053#include <linux/memcontrol.h>
Josef Bacikd09d8df2018-07-03 11:14:55 -040054#include <linux/blk-cgroup.h>
Roland McGrath6341c392008-07-25 19:45:44 -070055struct linux_binprm;
56
Roland McGrath283d7552008-07-25 19:45:52 -070057/*
58 * ptrace report for syscall entry and exit looks identical.
59 */
Oleg Nesterov15cab952012-03-23 15:02:39 -070060static inline int ptrace_report_syscall(struct pt_regs *regs)
Roland McGrath283d7552008-07-25 19:45:52 -070061{
Tejun Heod21142e2011-06-17 16:50:34 +020062 int ptrace = current->ptrace;
Roland McGrath283d7552008-07-25 19:45:52 -070063
64 if (!(ptrace & PT_PTRACED))
Oleg Nesterov15cab952012-03-23 15:02:39 -070065 return 0;
Roland McGrath283d7552008-07-25 19:45:52 -070066
67 ptrace_notify(SIGTRAP | ((ptrace & PT_TRACESYSGOOD) ? 0x80 : 0));
68
69 /*
70 * this isn't the same as continuing with a signal, but it will do
71 * for normal use. strace only continues with a signal if the
72 * stopping signal is not SIGTRAP. -brl
73 */
74 if (current->exit_code) {
75 send_sig(current->exit_code, current, 1);
76 current->exit_code = 0;
77 }
Oleg Nesterov15cab952012-03-23 15:02:39 -070078
79 return fatal_signal_pending(current);
Roland McGrath283d7552008-07-25 19:45:52 -070080}
81
82/**
83 * tracehook_report_syscall_entry - task is about to attempt a system call
84 * @regs: user register state of current task
85 *
86 * This will be called if %TIF_SYSCALL_TRACE has been set, when the
87 * current task has just entered the kernel for a system call.
88 * Full user register state is available here. Changing the values
89 * in @regs can affect the system call number and arguments to be tried.
90 * It is safe to block here, preventing the system call from beginning.
91 *
92 * Returns zero normally, or nonzero if the calling arch code should abort
93 * the system call. That must prevent normal entry so no system call is
94 * made. If @task ever returns to user mode after this, its register state
95 * is unspecified, but should be something harmless like an %ENOSYS error
Roland McGrath828c3652008-07-25 19:45:57 -070096 * return. It should preserve enough information so that syscall_rollback()
97 * can work (see asm-generic/syscall.h).
Roland McGrath283d7552008-07-25 19:45:52 -070098 *
99 * Called without locks, just after entering kernel mode.
100 */
101static inline __must_check int tracehook_report_syscall_entry(
102 struct pt_regs *regs)
103{
Oleg Nesterov15cab952012-03-23 15:02:39 -0700104 return ptrace_report_syscall(regs);
Roland McGrath283d7552008-07-25 19:45:52 -0700105}
106
107/**
108 * tracehook_report_syscall_exit - task has just finished a system call
109 * @regs: user register state of current task
110 * @step: nonzero if simulating single-step or block-step
111 *
112 * This will be called if %TIF_SYSCALL_TRACE has been set, when the
113 * current task has just finished an attempted system call. Full
114 * user register state is available here. It is safe to block here,
115 * preventing signals from being processed.
116 *
117 * If @step is nonzero, this report is also in lieu of the normal
118 * trap that would follow the system call instruction because
119 * user_enable_block_step() or user_enable_single_step() was used.
120 * In this case, %TIF_SYSCALL_TRACE might not be set.
121 *
122 * Called without locks, just before checking for pending signals.
123 */
124static inline void tracehook_report_syscall_exit(struct pt_regs *regs, int step)
125{
Oleg Nesterov2f0edac2009-12-15 16:47:19 -0800126 if (step) {
127 siginfo_t info;
Eric W. Biederman3eb0f512018-04-17 15:26:37 -0500128 clear_siginfo(&info);
Oleg Nesterov2f0edac2009-12-15 16:47:19 -0800129 user_single_step_siginfo(current, regs, &info);
130 force_sig_info(SIGTRAP, &info, current);
131 return;
132 }
133
Roland McGrath283d7552008-07-25 19:45:52 -0700134 ptrace_report_syscall(regs);
135}
136
Roland McGrathfa8e26c2008-07-25 19:45:50 -0700137/**
Roland McGrathc45aea22008-07-25 19:45:50 -0700138 * tracehook_signal_handler - signal handler setup is complete
Roland McGrathc45aea22008-07-25 19:45:50 -0700139 * @stepping: nonzero if debugger single-step or block-step in use
140 *
141 * Called by the arch code after a signal handler has been set up.
142 * Register and stack state reflects the user handler about to run.
143 * Signal mask changes have already been made.
144 *
145 * Called without locks, shortly before returning to user mode
146 * (or handling more signals).
147 */
Richard Weinbergerdf5601f2013-10-07 15:37:19 +0200148static inline void tracehook_signal_handler(int stepping)
Roland McGrathc45aea22008-07-25 19:45:50 -0700149{
150 if (stepping)
151 ptrace_notify(SIGTRAP);
152}
153
Roland McGrath64b1208d2008-07-25 19:45:56 -0700154/**
155 * set_notify_resume - cause tracehook_notify_resume() to be called
156 * @task: task that will call tracehook_notify_resume()
157 *
158 * Calling this arranges that @task will call tracehook_notify_resume()
159 * before returning to user mode. If it's already running in user mode,
160 * it will enter the kernel and call tracehook_notify_resume() soon.
161 * If it's blocked, it will not be woken.
162 */
163static inline void set_notify_resume(struct task_struct *task)
164{
Oleg Nesterove73f8952012-05-11 10:59:07 +1000165#ifdef TIF_NOTIFY_RESUME
Roland McGrath64b1208d2008-07-25 19:45:56 -0700166 if (!test_and_set_tsk_thread_flag(task, TIF_NOTIFY_RESUME))
167 kick_process(task);
Oleg Nesterove73f8952012-05-11 10:59:07 +1000168#endif
Roland McGrath64b1208d2008-07-25 19:45:56 -0700169}
170
171/**
172 * tracehook_notify_resume - report when about to return to user mode
173 * @regs: user-mode registers of @current task
174 *
175 * This is called when %TIF_NOTIFY_RESUME has been set. Now we are
176 * about to return to user mode, and the user state in @regs can be
177 * inspected or adjusted. The caller in arch code has cleared
178 * %TIF_NOTIFY_RESUME before the call. If the flag gets set again
179 * asynchronously, this will be called again before we return to
180 * user mode.
181 *
182 * Called without locks.
183 */
184static inline void tracehook_notify_resume(struct pt_regs *regs)
185{
Oleg Nesterove73f8952012-05-11 10:59:07 +1000186 /*
187 * The caller just cleared TIF_NOTIFY_RESUME. This barrier
188 * pairs with task_work_add()->set_notify_resume() after
189 * hlist_add_head(task->task_works);
190 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100191 smp_mb__after_atomic();
Al Viro158e1642012-06-27 09:24:13 +0400192 if (unlikely(current->task_works))
Oleg Nesterove73f8952012-05-11 10:59:07 +1000193 task_work_run();
Tejun Heob23afb92015-11-05 18:46:11 -0800194
195 mem_cgroup_handle_over_high();
Josef Bacikd09d8df2018-07-03 11:14:55 -0400196 blkcg_maybe_throttle_current();
Roland McGrath64b1208d2008-07-25 19:45:56 -0700197}
Roland McGrath64b1208d2008-07-25 19:45:56 -0700198
Roland McGrath88ac2922008-07-25 19:45:43 -0700199#endif /* <linux/tracehook.h> */