Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | |
| 3 | #include <linux/context_tracking.h> |
| 4 | #include <linux/entry-common.h> |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 5 | #include <linux/livepatch.h> |
| 6 | #include <linux/audit.h> |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 7 | |
Gabriel Krisman Bertazi | 1189446 | 2020-11-27 14:32:35 -0500 | [diff] [blame] | 8 | #include "common.h" |
| 9 | |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 10 | #define CREATE_TRACE_POINTS |
| 11 | #include <trace/events/syscalls.h> |
| 12 | |
Sven Schnelle | 96e2fbc | 2020-12-01 15:27:53 +0100 | [diff] [blame] | 13 | /* See comment for enter_from_user_mode() in entry-common.h */ |
Sven Schnelle | 6666bb7 | 2020-12-01 15:27:51 +0100 | [diff] [blame] | 14 | static __always_inline void __enter_from_user_mode(struct pt_regs *regs) |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 15 | { |
| 16 | arch_check_user_regs(regs); |
| 17 | lockdep_hardirqs_off(CALLER_ADDR0); |
| 18 | |
| 19 | CT_WARN_ON(ct_state() != CONTEXT_USER); |
| 20 | user_exit_irqoff(); |
| 21 | |
| 22 | instrumentation_begin(); |
| 23 | trace_hardirqs_off_finish(); |
| 24 | instrumentation_end(); |
| 25 | } |
| 26 | |
Sven Schnelle | 96e2fbc | 2020-12-01 15:27:53 +0100 | [diff] [blame] | 27 | void noinstr enter_from_user_mode(struct pt_regs *regs) |
| 28 | { |
| 29 | __enter_from_user_mode(regs); |
| 30 | } |
| 31 | |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 32 | static inline void syscall_enter_audit(struct pt_regs *regs, long syscall) |
| 33 | { |
| 34 | if (unlikely(audit_context())) { |
| 35 | unsigned long args[6]; |
| 36 | |
| 37 | syscall_get_arguments(current, regs, args); |
| 38 | audit_syscall_entry(syscall, args[0], args[1], args[2], args[3]); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | static long syscall_trace_enter(struct pt_regs *regs, long syscall, |
Gabriel Krisman Bertazi | 2991552 | 2020-11-16 12:42:05 -0500 | [diff] [blame] | 43 | unsigned long work) |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 44 | { |
| 45 | long ret = 0; |
| 46 | |
Gabriel Krisman Bertazi | 1189446 | 2020-11-27 14:32:35 -0500 | [diff] [blame] | 47 | /* |
| 48 | * Handle Syscall User Dispatch. This must comes first, since |
| 49 | * the ABI here can be something that doesn't make sense for |
| 50 | * other syscall_work features. |
| 51 | */ |
| 52 | if (work & SYSCALL_WORK_SYSCALL_USER_DISPATCH) { |
| 53 | if (syscall_user_dispatch(regs)) |
| 54 | return -1L; |
| 55 | } |
| 56 | |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 57 | /* Handle ptrace */ |
Gabriel Krisman Bertazi | 64eb35f | 2020-11-16 12:42:03 -0500 | [diff] [blame] | 58 | if (work & (SYSCALL_WORK_SYSCALL_TRACE | SYSCALL_WORK_SYSCALL_EMU)) { |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 59 | ret = arch_syscall_enter_tracehook(regs); |
Gabriel Krisman Bertazi | 64eb35f | 2020-11-16 12:42:03 -0500 | [diff] [blame] | 60 | if (ret || (work & SYSCALL_WORK_SYSCALL_EMU)) |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 61 | return -1L; |
| 62 | } |
| 63 | |
| 64 | /* Do seccomp after ptrace, to catch any tracer changes. */ |
Gabriel Krisman Bertazi | 23d67a5 | 2020-11-16 12:42:00 -0500 | [diff] [blame] | 65 | if (work & SYSCALL_WORK_SECCOMP) { |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 66 | ret = __secure_computing(NULL); |
| 67 | if (ret == -1L) |
| 68 | return ret; |
| 69 | } |
| 70 | |
Kees Cook | b6ec413 | 2020-09-11 17:58:26 -0700 | [diff] [blame] | 71 | /* Either of the above might have changed the syscall number */ |
| 72 | syscall = syscall_get_nr(current, regs); |
| 73 | |
Gabriel Krisman Bertazi | 524666c | 2020-11-16 12:42:01 -0500 | [diff] [blame] | 74 | if (unlikely(work & SYSCALL_WORK_SYSCALL_TRACEPOINT)) |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 75 | trace_sys_enter(regs, syscall); |
| 76 | |
| 77 | syscall_enter_audit(regs, syscall); |
| 78 | |
| 79 | return ret ? : syscall; |
| 80 | } |
| 81 | |
Thomas Gleixner | 4facb95 | 2020-09-02 01:50:54 +0200 | [diff] [blame] | 82 | static __always_inline long |
| 83 | __syscall_enter_from_user_work(struct pt_regs *regs, long syscall) |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 84 | { |
Gabriel Krisman Bertazi | b86678c | 2020-11-16 12:41:59 -0500 | [diff] [blame] | 85 | unsigned long work = READ_ONCE(current_thread_info()->syscall_work); |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 86 | |
Gabriel Krisman Bertazi | 2991552 | 2020-11-16 12:42:05 -0500 | [diff] [blame] | 87 | if (work & SYSCALL_WORK_ENTER) |
| 88 | syscall = syscall_trace_enter(regs, syscall, work); |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 89 | |
| 90 | return syscall; |
| 91 | } |
| 92 | |
Thomas Gleixner | 4facb95 | 2020-09-02 01:50:54 +0200 | [diff] [blame] | 93 | long syscall_enter_from_user_mode_work(struct pt_regs *regs, long syscall) |
| 94 | { |
| 95 | return __syscall_enter_from_user_work(regs, syscall); |
| 96 | } |
| 97 | |
| 98 | noinstr long syscall_enter_from_user_mode(struct pt_regs *regs, long syscall) |
| 99 | { |
| 100 | long ret; |
| 101 | |
Sven Schnelle | 6666bb7 | 2020-12-01 15:27:51 +0100 | [diff] [blame] | 102 | __enter_from_user_mode(regs); |
Thomas Gleixner | 4facb95 | 2020-09-02 01:50:54 +0200 | [diff] [blame] | 103 | |
| 104 | instrumentation_begin(); |
| 105 | local_irq_enable(); |
| 106 | ret = __syscall_enter_from_user_work(regs, syscall); |
| 107 | instrumentation_end(); |
| 108 | |
| 109 | return ret; |
| 110 | } |
| 111 | |
| 112 | noinstr void syscall_enter_from_user_mode_prepare(struct pt_regs *regs) |
| 113 | { |
Sven Schnelle | 6666bb7 | 2020-12-01 15:27:51 +0100 | [diff] [blame] | 114 | __enter_from_user_mode(regs); |
Thomas Gleixner | 4facb95 | 2020-09-02 01:50:54 +0200 | [diff] [blame] | 115 | instrumentation_begin(); |
| 116 | local_irq_enable(); |
| 117 | instrumentation_end(); |
| 118 | } |
| 119 | |
Sven Schnelle | 310de1a | 2020-12-01 15:27:54 +0100 | [diff] [blame] | 120 | /* See comment for exit_to_user_mode() in entry-common.h */ |
Sven Schnelle | bb79356 | 2020-12-01 15:27:52 +0100 | [diff] [blame] | 121 | static __always_inline void __exit_to_user_mode(void) |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 122 | { |
| 123 | instrumentation_begin(); |
| 124 | trace_hardirqs_on_prepare(); |
| 125 | lockdep_hardirqs_on_prepare(CALLER_ADDR0); |
| 126 | instrumentation_end(); |
| 127 | |
| 128 | user_enter_irqoff(); |
| 129 | arch_exit_to_user_mode(); |
| 130 | lockdep_hardirqs_on(CALLER_ADDR0); |
| 131 | } |
| 132 | |
Sven Schnelle | 310de1a | 2020-12-01 15:27:54 +0100 | [diff] [blame] | 133 | void noinstr exit_to_user_mode(void) |
| 134 | { |
| 135 | __exit_to_user_mode(); |
| 136 | } |
| 137 | |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 138 | /* Workaround to allow gradual conversion of architecture code */ |
Jens Axboe | 12db8b6 | 2020-10-26 14:32:28 -0600 | [diff] [blame] | 139 | void __weak arch_do_signal_or_restart(struct pt_regs *regs, bool has_signal) { } |
| 140 | |
| 141 | static void handle_signal_work(struct pt_regs *regs, unsigned long ti_work) |
| 142 | { |
| 143 | if (ti_work & _TIF_NOTIFY_SIGNAL) |
| 144 | tracehook_notify_signal(); |
| 145 | |
| 146 | arch_do_signal_or_restart(regs, ti_work & _TIF_SIGPENDING); |
| 147 | } |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 148 | |
| 149 | static unsigned long exit_to_user_mode_loop(struct pt_regs *regs, |
| 150 | unsigned long ti_work) |
| 151 | { |
| 152 | /* |
| 153 | * Before returning to user space ensure that all pending work |
| 154 | * items have been completed. |
| 155 | */ |
| 156 | while (ti_work & EXIT_TO_USER_MODE_WORK) { |
| 157 | |
| 158 | local_irq_enable_exit_to_user(ti_work); |
| 159 | |
| 160 | if (ti_work & _TIF_NEED_RESCHED) |
| 161 | schedule(); |
| 162 | |
| 163 | if (ti_work & _TIF_UPROBE) |
| 164 | uprobe_notify_resume(regs); |
| 165 | |
| 166 | if (ti_work & _TIF_PATCH_PENDING) |
| 167 | klp_update_patch_state(current); |
| 168 | |
Jens Axboe | 12db8b6 | 2020-10-26 14:32:28 -0600 | [diff] [blame] | 169 | if (ti_work & (_TIF_SIGPENDING | _TIF_NOTIFY_SIGNAL)) |
| 170 | handle_signal_work(regs, ti_work); |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 171 | |
| 172 | if (ti_work & _TIF_NOTIFY_RESUME) { |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 173 | tracehook_notify_resume(regs); |
| 174 | rseq_handle_notify_resume(NULL, regs); |
| 175 | } |
| 176 | |
| 177 | /* Architecture specific TIF work */ |
| 178 | arch_exit_to_user_mode_work(regs, ti_work); |
| 179 | |
| 180 | /* |
| 181 | * Disable interrupts and reevaluate the work flags as they |
| 182 | * might have changed while interrupts and preemption was |
| 183 | * enabled above. |
| 184 | */ |
| 185 | local_irq_disable_exit_to_user(); |
| 186 | ti_work = READ_ONCE(current_thread_info()->flags); |
| 187 | } |
| 188 | |
| 189 | /* Return the latest work state for arch_exit_to_user_mode() */ |
| 190 | return ti_work; |
| 191 | } |
| 192 | |
| 193 | static void exit_to_user_mode_prepare(struct pt_regs *regs) |
| 194 | { |
| 195 | unsigned long ti_work = READ_ONCE(current_thread_info()->flags); |
| 196 | |
| 197 | lockdep_assert_irqs_disabled(); |
| 198 | |
| 199 | if (unlikely(ti_work & EXIT_TO_USER_MODE_WORK)) |
| 200 | ti_work = exit_to_user_mode_loop(regs, ti_work); |
| 201 | |
| 202 | arch_exit_to_user_mode_prepare(regs, ti_work); |
| 203 | |
| 204 | /* Ensure that the address limit is intact and no locks are held */ |
| 205 | addr_limit_user_check(); |
| 206 | lockdep_assert_irqs_disabled(); |
| 207 | lockdep_sys_exit(); |
| 208 | } |
| 209 | |
| 210 | #ifndef _TIF_SINGLESTEP |
Gabriel Krisman Bertazi | 64eb35f | 2020-11-16 12:42:03 -0500 | [diff] [blame] | 211 | static inline bool report_single_step(unsigned long work) |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 212 | { |
| 213 | return false; |
| 214 | } |
| 215 | #else |
| 216 | /* |
Gabriel Krisman Bertazi | 64eb35f | 2020-11-16 12:42:03 -0500 | [diff] [blame] | 217 | * If SYSCALL_EMU is set, then the only reason to report is when |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 218 | * TIF_SINGLESTEP is set (i.e. PTRACE_SYSEMU_SINGLESTEP). This syscall |
Kees Cook | 900ffe3 | 2020-09-19 01:09:36 -0700 | [diff] [blame] | 219 | * instruction has been already reported in syscall_enter_from_user_mode(). |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 220 | */ |
Gabriel Krisman Bertazi | 64eb35f | 2020-11-16 12:42:03 -0500 | [diff] [blame] | 221 | static inline bool report_single_step(unsigned long work) |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 222 | { |
Gabriel Krisman Bertazi | 64eb35f | 2020-11-16 12:42:03 -0500 | [diff] [blame] | 223 | if (!(work & SYSCALL_WORK_SYSCALL_EMU)) |
| 224 | return false; |
| 225 | |
| 226 | return !!(current_thread_info()->flags & _TIF_SINGLESTEP); |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 227 | } |
| 228 | #endif |
| 229 | |
Gabriel Krisman Bertazi | 2991552 | 2020-11-16 12:42:05 -0500 | [diff] [blame] | 230 | |
| 231 | static void syscall_exit_work(struct pt_regs *regs, unsigned long work) |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 232 | { |
| 233 | bool step; |
| 234 | |
Gabriel Krisman Bertazi | 1189446 | 2020-11-27 14:32:35 -0500 | [diff] [blame] | 235 | /* |
| 236 | * If the syscall was rolled back due to syscall user dispatching, |
| 237 | * then the tracers below are not invoked for the same reason as |
| 238 | * the entry side was not invoked in syscall_trace_enter(): The ABI |
| 239 | * of these syscalls is unknown. |
| 240 | */ |
| 241 | if (work & SYSCALL_WORK_SYSCALL_USER_DISPATCH) { |
| 242 | if (unlikely(current->syscall_dispatch.on_dispatch)) { |
| 243 | current->syscall_dispatch.on_dispatch = false; |
| 244 | return; |
| 245 | } |
| 246 | } |
| 247 | |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 248 | audit_syscall_exit(regs); |
| 249 | |
Gabriel Krisman Bertazi | 524666c | 2020-11-16 12:42:01 -0500 | [diff] [blame] | 250 | if (work & SYSCALL_WORK_SYSCALL_TRACEPOINT) |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 251 | trace_sys_exit(regs, syscall_get_return_value(current, regs)); |
| 252 | |
Gabriel Krisman Bertazi | 64eb35f | 2020-11-16 12:42:03 -0500 | [diff] [blame] | 253 | step = report_single_step(work); |
Gabriel Krisman Bertazi | 64c19ba | 2020-11-16 12:42:02 -0500 | [diff] [blame] | 254 | if (step || work & SYSCALL_WORK_SYSCALL_TRACE) |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 255 | arch_syscall_exit_tracehook(regs, step); |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | * Syscall specific exit to user mode preparation. Runs with interrupts |
| 260 | * enabled. |
| 261 | */ |
| 262 | static void syscall_exit_to_user_mode_prepare(struct pt_regs *regs) |
| 263 | { |
Gabriel Krisman Bertazi | b86678c | 2020-11-16 12:41:59 -0500 | [diff] [blame] | 264 | unsigned long work = READ_ONCE(current_thread_info()->syscall_work); |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 265 | unsigned long nr = syscall_get_nr(current, regs); |
| 266 | |
| 267 | CT_WARN_ON(ct_state() != CONTEXT_KERNEL); |
| 268 | |
| 269 | if (IS_ENABLED(CONFIG_PROVE_LOCKING)) { |
| 270 | if (WARN(irqs_disabled(), "syscall %lu left IRQs disabled", nr)) |
| 271 | local_irq_enable(); |
| 272 | } |
| 273 | |
| 274 | rseq_syscall(regs); |
| 275 | |
| 276 | /* |
| 277 | * Do one-time syscall specific work. If these work items are |
| 278 | * enabled, we want to run them exactly once per syscall exit with |
| 279 | * interrupts enabled. |
| 280 | */ |
Gabriel Krisman Bertazi | 2991552 | 2020-11-16 12:42:05 -0500 | [diff] [blame] | 281 | if (unlikely(work & SYSCALL_WORK_EXIT)) |
| 282 | syscall_exit_work(regs, work); |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 283 | } |
| 284 | |
Sven Schnelle | c6156e1 | 2020-12-01 15:27:55 +0100 | [diff] [blame^] | 285 | static __always_inline void __syscall_exit_to_user_mode_work(struct pt_regs *regs) |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 286 | { |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 287 | syscall_exit_to_user_mode_prepare(regs); |
| 288 | local_irq_disable_exit_to_user(); |
| 289 | exit_to_user_mode_prepare(regs); |
Sven Schnelle | c6156e1 | 2020-12-01 15:27:55 +0100 | [diff] [blame^] | 290 | } |
| 291 | |
| 292 | void syscall_exit_to_user_mode_work(struct pt_regs *regs) |
| 293 | { |
| 294 | __syscall_exit_to_user_mode_work(regs); |
| 295 | } |
| 296 | |
| 297 | __visible noinstr void syscall_exit_to_user_mode(struct pt_regs *regs) |
| 298 | { |
| 299 | instrumentation_begin(); |
| 300 | __syscall_exit_to_user_mode_work(regs); |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 301 | instrumentation_end(); |
Sven Schnelle | bb79356 | 2020-12-01 15:27:52 +0100 | [diff] [blame] | 302 | __exit_to_user_mode(); |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 303 | } |
| 304 | |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 305 | noinstr void irqentry_enter_from_user_mode(struct pt_regs *regs) |
| 306 | { |
Sven Schnelle | 6666bb7 | 2020-12-01 15:27:51 +0100 | [diff] [blame] | 307 | __enter_from_user_mode(regs); |
Thomas Gleixner | 142781e | 2020-07-22 23:59:56 +0200 | [diff] [blame] | 308 | } |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 309 | |
| 310 | noinstr void irqentry_exit_to_user_mode(struct pt_regs *regs) |
| 311 | { |
| 312 | instrumentation_begin(); |
| 313 | exit_to_user_mode_prepare(regs); |
| 314 | instrumentation_end(); |
Sven Schnelle | bb79356 | 2020-12-01 15:27:52 +0100 | [diff] [blame] | 315 | __exit_to_user_mode(); |
Thomas Gleixner | a9f3a74 | 2020-07-22 23:59:57 +0200 | [diff] [blame] | 316 | } |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 317 | |
Ingo Molnar | aadfc2f | 2020-07-25 11:19:51 +0200 | [diff] [blame] | 318 | noinstr irqentry_state_t irqentry_enter(struct pt_regs *regs) |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 319 | { |
| 320 | irqentry_state_t ret = { |
| 321 | .exit_rcu = false, |
| 322 | }; |
| 323 | |
| 324 | if (user_mode(regs)) { |
| 325 | irqentry_enter_from_user_mode(regs); |
| 326 | return ret; |
| 327 | } |
| 328 | |
| 329 | /* |
| 330 | * If this entry hit the idle task invoke rcu_irq_enter() whether |
| 331 | * RCU is watching or not. |
| 332 | * |
Ira Weiny | 78a56e0 | 2020-11-04 15:01:57 -0800 | [diff] [blame] | 333 | * Interrupts can nest when the first interrupt invokes softirq |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 334 | * processing on return which enables interrupts. |
| 335 | * |
| 336 | * Scheduler ticks in the idle task can mark quiescent state and |
| 337 | * terminate a grace period, if and only if the timer interrupt is |
| 338 | * not nested into another interrupt. |
| 339 | * |
Paul E. McKenney | 7f2a53c | 2020-08-17 10:37:22 -0700 | [diff] [blame] | 340 | * Checking for rcu_is_watching() here would prevent the nesting |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 341 | * interrupt to invoke rcu_irq_enter(). If that nested interrupt is |
| 342 | * the tick then rcu_flavor_sched_clock_irq() would wrongfully |
| 343 | * assume that it is the first interupt and eventually claim |
Ira Weiny | 78a56e0 | 2020-11-04 15:01:57 -0800 | [diff] [blame] | 344 | * quiescent state and end grace periods prematurely. |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 345 | * |
| 346 | * Unconditionally invoke rcu_irq_enter() so RCU state stays |
| 347 | * consistent. |
| 348 | * |
| 349 | * TINY_RCU does not support EQS, so let the compiler eliminate |
| 350 | * this part when enabled. |
| 351 | */ |
| 352 | if (!IS_ENABLED(CONFIG_TINY_RCU) && is_idle_task(current)) { |
| 353 | /* |
| 354 | * If RCU is not watching then the same careful |
| 355 | * sequence vs. lockdep and tracing is required |
Ira Weiny | 45ff510 | 2020-10-28 09:36:32 -0700 | [diff] [blame] | 356 | * as in irqentry_enter_from_user_mode(). |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 357 | */ |
| 358 | lockdep_hardirqs_off(CALLER_ADDR0); |
| 359 | rcu_irq_enter(); |
| 360 | instrumentation_begin(); |
| 361 | trace_hardirqs_off_finish(); |
| 362 | instrumentation_end(); |
| 363 | |
| 364 | ret.exit_rcu = true; |
| 365 | return ret; |
| 366 | } |
| 367 | |
| 368 | /* |
| 369 | * If RCU is watching then RCU only wants to check whether it needs |
| 370 | * to restart the tick in NOHZ mode. rcu_irq_enter_check_tick() |
| 371 | * already contains a warning when RCU is not watching, so no point |
| 372 | * in having another one here. |
| 373 | */ |
Thomas Gleixner | 9d820f6 | 2020-11-04 14:06:23 +0100 | [diff] [blame] | 374 | lockdep_hardirqs_off(CALLER_ADDR0); |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 375 | instrumentation_begin(); |
| 376 | rcu_irq_enter_check_tick(); |
Thomas Gleixner | 9d820f6 | 2020-11-04 14:06:23 +0100 | [diff] [blame] | 377 | trace_hardirqs_off_finish(); |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 378 | instrumentation_end(); |
| 379 | |
| 380 | return ret; |
| 381 | } |
| 382 | |
| 383 | void irqentry_exit_cond_resched(void) |
| 384 | { |
| 385 | if (!preempt_count()) { |
| 386 | /* Sanity check RCU and thread stack */ |
| 387 | rcu_irq_exit_check_preempt(); |
| 388 | if (IS_ENABLED(CONFIG_DEBUG_ENTRY)) |
| 389 | WARN_ON_ONCE(!on_thread_stack()); |
| 390 | if (need_resched()) |
| 391 | preempt_schedule_irq(); |
| 392 | } |
| 393 | } |
| 394 | |
Ingo Molnar | aadfc2f | 2020-07-25 11:19:51 +0200 | [diff] [blame] | 395 | noinstr void irqentry_exit(struct pt_regs *regs, irqentry_state_t state) |
Thomas Gleixner | a5497ba | 2020-07-22 23:59:58 +0200 | [diff] [blame] | 396 | { |
| 397 | lockdep_assert_irqs_disabled(); |
| 398 | |
| 399 | /* Check whether this returns to user mode */ |
| 400 | if (user_mode(regs)) { |
| 401 | irqentry_exit_to_user_mode(regs); |
| 402 | } else if (!regs_irqs_disabled(regs)) { |
| 403 | /* |
| 404 | * If RCU was not watching on entry this needs to be done |
| 405 | * carefully and needs the same ordering of lockdep/tracing |
| 406 | * and RCU as the return to user mode path. |
| 407 | */ |
| 408 | if (state.exit_rcu) { |
| 409 | instrumentation_begin(); |
| 410 | /* Tell the tracer that IRET will enable interrupts */ |
| 411 | trace_hardirqs_on_prepare(); |
| 412 | lockdep_hardirqs_on_prepare(CALLER_ADDR0); |
| 413 | instrumentation_end(); |
| 414 | rcu_irq_exit(); |
| 415 | lockdep_hardirqs_on(CALLER_ADDR0); |
| 416 | return; |
| 417 | } |
| 418 | |
| 419 | instrumentation_begin(); |
| 420 | if (IS_ENABLED(CONFIG_PREEMPTION)) |
| 421 | irqentry_exit_cond_resched(); |
| 422 | /* Covers both tracing and lockdep */ |
| 423 | trace_hardirqs_on(); |
| 424 | instrumentation_end(); |
| 425 | } else { |
| 426 | /* |
| 427 | * IRQ flags state is correct already. Just tell RCU if it |
| 428 | * was not watching on entry. |
| 429 | */ |
| 430 | if (state.exit_rcu) |
| 431 | rcu_irq_exit(); |
| 432 | } |
| 433 | } |
Thomas Gleixner | b6be002 | 2020-11-02 12:53:16 -0800 | [diff] [blame] | 434 | |
| 435 | irqentry_state_t noinstr irqentry_nmi_enter(struct pt_regs *regs) |
| 436 | { |
| 437 | irqentry_state_t irq_state; |
| 438 | |
| 439 | irq_state.lockdep = lockdep_hardirqs_enabled(); |
| 440 | |
| 441 | __nmi_enter(); |
| 442 | lockdep_hardirqs_off(CALLER_ADDR0); |
| 443 | lockdep_hardirq_enter(); |
| 444 | rcu_nmi_enter(); |
| 445 | |
| 446 | instrumentation_begin(); |
| 447 | trace_hardirqs_off_finish(); |
| 448 | ftrace_nmi_enter(); |
| 449 | instrumentation_end(); |
| 450 | |
| 451 | return irq_state; |
| 452 | } |
| 453 | |
| 454 | void noinstr irqentry_nmi_exit(struct pt_regs *regs, irqentry_state_t irq_state) |
| 455 | { |
| 456 | instrumentation_begin(); |
| 457 | ftrace_nmi_exit(); |
| 458 | if (irq_state.lockdep) { |
| 459 | trace_hardirqs_on_prepare(); |
| 460 | lockdep_hardirqs_on_prepare(CALLER_ADDR0); |
| 461 | } |
| 462 | instrumentation_end(); |
| 463 | |
| 464 | rcu_nmi_exit(); |
| 465 | lockdep_hardirq_exit(); |
| 466 | if (irq_state.lockdep) |
| 467 | lockdep_hardirqs_on(CALLER_ADDR0); |
| 468 | __nmi_exit(); |
| 469 | } |