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