1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Low-level exception handling code 4 * 5 * Copyright (C) 2012 ARM Ltd. 6 * Authors: Catalin Marinas <catalin.marinas@arm.com> 7 * Will Deacon <will.deacon@arm.com> 8 */ 9 10#include <linux/arm-smccc.h> 11#include <linux/init.h> 12#include <linux/linkage.h> 13 14#include <asm/alternative.h> 15#include <asm/assembler.h> 16#include <asm/asm-offsets.h> 17#include <asm/asm_pointer_auth.h> 18#include <asm/cpufeature.h> 19#include <asm/errno.h> 20#include <asm/esr.h> 21#include <asm/irq.h> 22#include <asm/memory.h> 23#include <asm/mmu.h> 24#include <asm/processor.h> 25#include <asm/ptrace.h> 26#include <asm/scs.h> 27#include <asm/thread_info.h> 28#include <asm/asm-uaccess.h> 29#include <asm/unistd.h> 30 31/* 32 * Context tracking subsystem. Used to instrument transitions 33 * between user and kernel mode. 34 */ 35 .macro ct_user_exit_irqoff 36#ifdef CONFIG_CONTEXT_TRACKING 37 bl enter_from_user_mode 38#endif 39 .endm 40 41 .macro ct_user_enter 42#ifdef CONFIG_CONTEXT_TRACKING 43 bl context_tracking_user_enter 44#endif 45 .endm 46 47 .macro clear_gp_regs 48 .irp n,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 49 mov x\n, xzr 50 .endr 51 .endm 52 53/* 54 * Bad Abort numbers 55 *----------------- 56 */ 57#define BAD_SYNC 0 58#define BAD_IRQ 1 59#define BAD_FIQ 2 60#define BAD_ERROR 3 61 62 .macro kernel_ventry, el, label, regsize = 64 63 .align 7 64#ifdef CONFIG_UNMAP_KERNEL_AT_EL0 65 .if \el == 0 66alternative_if ARM64_UNMAP_KERNEL_AT_EL0 67 .if \regsize == 64 68 mrs x30, tpidrro_el0 69 msr tpidrro_el0, xzr 70 .else 71 mov x30, xzr 72 .endif 73alternative_else_nop_endif 74 .endif 75#endif 76 77 sub sp, sp, #S_FRAME_SIZE 78#ifdef CONFIG_VMAP_STACK 79 /* 80 * Test whether the SP has overflowed, without corrupting a GPR. 81 * Task and IRQ stacks are aligned so that SP & (1 << THREAD_SHIFT) 82 * should always be zero. 83 */ 84 add sp, sp, x0 // sp' = sp + x0 85 sub x0, sp, x0 // x0' = sp' - x0 = (sp + x0) - x0 = sp 86 tbnz x0, #THREAD_SHIFT, 0f 87 sub x0, sp, x0 // x0'' = sp' - x0' = (sp + x0) - sp = x0 88 sub sp, sp, x0 // sp'' = sp' - x0 = (sp + x0) - x0 = sp 89 b el\()\el\()_\label 90 910: 92 /* 93 * Either we've just detected an overflow, or we've taken an exception 94 * while on the overflow stack. Either way, we won't return to 95 * userspace, and can clobber EL0 registers to free up GPRs. 96 */ 97 98 /* Stash the original SP (minus S_FRAME_SIZE) in tpidr_el0. */ 99 msr tpidr_el0, x0 100 101 /* Recover the original x0 value and stash it in tpidrro_el0 */ 102 sub x0, sp, x0 103 msr tpidrro_el0, x0 104 105 /* Switch to the overflow stack */ 106 adr_this_cpu sp, overflow_stack + OVERFLOW_STACK_SIZE, x0 107 108 /* 109 * Check whether we were already on the overflow stack. This may happen 110 * after panic() re-enables interrupts. 111 */ 112 mrs x0, tpidr_el0 // sp of interrupted context 113 sub x0, sp, x0 // delta with top of overflow stack 114 tst x0, #~(OVERFLOW_STACK_SIZE - 1) // within range? 115 b.ne __bad_stack // no? -> bad stack pointer 116 117 /* We were already on the overflow stack. Restore sp/x0 and carry on. */ 118 sub sp, sp, x0 119 mrs x0, tpidrro_el0 120#endif 121 b el\()\el\()_\label 122 .endm 123 124 .macro tramp_alias, dst, sym 125 mov_q \dst, TRAMP_VALIAS 126 add \dst, \dst, #(\sym - .entry.tramp.text) 127 .endm 128 129 // This macro corrupts x0-x3. It is the caller's duty 130 // to save/restore them if required. 131 .macro apply_ssbd, state, tmp1, tmp2 132#ifdef CONFIG_ARM64_SSBD 133alternative_cb arm64_enable_wa2_handling 134 b .L__asm_ssbd_skip\@ 135alternative_cb_end 136 ldr_this_cpu \tmp2, arm64_ssbd_callback_required, \tmp1 137 cbz \tmp2, .L__asm_ssbd_skip\@ 138 ldr \tmp2, [tsk, #TSK_TI_FLAGS] 139 tbnz \tmp2, #TIF_SSBD, .L__asm_ssbd_skip\@ 140 mov w0, #ARM_SMCCC_ARCH_WORKAROUND_2 141 mov w1, #\state 142alternative_cb arm64_update_smccc_conduit 143 nop // Patched to SMC/HVC #0 144alternative_cb_end 145.L__asm_ssbd_skip\@: 146#endif 147 .endm 148 149 .macro kernel_entry, el, regsize = 64 150 .if \regsize == 32 151 mov w0, w0 // zero upper 32 bits of x0 152 .endif 153 stp x0, x1, [sp, #16 * 0] 154 stp x2, x3, [sp, #16 * 1] 155 stp x4, x5, [sp, #16 * 2] 156 stp x6, x7, [sp, #16 * 3] 157 stp x8, x9, [sp, #16 * 4] 158 stp x10, x11, [sp, #16 * 5] 159 stp x12, x13, [sp, #16 * 6] 160 stp x14, x15, [sp, #16 * 7] 161 stp x16, x17, [sp, #16 * 8] 162 stp x18, x19, [sp, #16 * 9] 163 stp x20, x21, [sp, #16 * 10] 164 stp x22, x23, [sp, #16 * 11] 165 stp x24, x25, [sp, #16 * 12] 166 stp x26, x27, [sp, #16 * 13] 167 stp x28, x29, [sp, #16 * 14] 168 169 .if \el == 0 170 clear_gp_regs 171 mrs x21, sp_el0 172 ldr_this_cpu tsk, __entry_task, x20 173 msr sp_el0, tsk 174 175 // Ensure MDSCR_EL1.SS is clear, since we can unmask debug exceptions 176 // when scheduling. 177 ldr x19, [tsk, #TSK_TI_FLAGS] 178 disable_step_tsk x19, x20 179 180 apply_ssbd 1, x22, x23 181 182 ptrauth_keys_install_kernel tsk, x20, x22, x23 183 184 scs_load tsk, x20 185 .else 186 add x21, sp, #S_FRAME_SIZE 187 get_current_task tsk 188 /* Save the task's original addr_limit and set USER_DS */ 189 ldr x20, [tsk, #TSK_TI_ADDR_LIMIT] 190 str x20, [sp, #S_ORIG_ADDR_LIMIT] 191 mov x20, #USER_DS 192 str x20, [tsk, #TSK_TI_ADDR_LIMIT] 193 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */ 194 .endif /* \el == 0 */ 195 mrs x22, elr_el1 196 mrs x23, spsr_el1 197 stp lr, x21, [sp, #S_LR] 198 199 /* 200 * In order to be able to dump the contents of struct pt_regs at the 201 * time the exception was taken (in case we attempt to walk the call 202 * stack later), chain it together with the stack frames. 203 */ 204 .if \el == 0 205 stp xzr, xzr, [sp, #S_STACKFRAME] 206 .else 207 stp x29, x22, [sp, #S_STACKFRAME] 208 .endif 209 add x29, sp, #S_STACKFRAME 210 211#ifdef CONFIG_ARM64_SW_TTBR0_PAN 212 /* 213 * Set the TTBR0 PAN bit in SPSR. When the exception is taken from 214 * EL0, there is no need to check the state of TTBR0_EL1 since 215 * accesses are always enabled. 216 * Note that the meaning of this bit differs from the ARMv8.1 PAN 217 * feature as all TTBR0_EL1 accesses are disabled, not just those to 218 * user mappings. 219 */ 220alternative_if ARM64_HAS_PAN 221 b 1f // skip TTBR0 PAN 222alternative_else_nop_endif 223 224 .if \el != 0 225 mrs x21, ttbr0_el1 226 tst x21, #TTBR_ASID_MASK // Check for the reserved ASID 227 orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR 228 b.eq 1f // TTBR0 access already disabled 229 and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR 230 .endif 231 232 __uaccess_ttbr0_disable x21 2331: 234#endif 235 236 stp x22, x23, [sp, #S_PC] 237 238 /* Not in a syscall by default (el0_svc overwrites for real syscall) */ 239 .if \el == 0 240 mov w21, #NO_SYSCALL 241 str w21, [sp, #S_SYSCALLNO] 242 .endif 243 244 /* Save pmr */ 245alternative_if ARM64_HAS_IRQ_PRIO_MASKING 246 mrs_s x20, SYS_ICC_PMR_EL1 247 str x20, [sp, #S_PMR_SAVE] 248alternative_else_nop_endif 249 250 /* 251 * Registers that may be useful after this macro is invoked: 252 * 253 * x20 - ICC_PMR_EL1 254 * x21 - aborted SP 255 * x22 - aborted PC 256 * x23 - aborted PSTATE 257 */ 258 .endm 259 260 .macro kernel_exit, el 261 .if \el != 0 262 disable_daif 263 264 /* Restore the task's original addr_limit. */ 265 ldr x20, [sp, #S_ORIG_ADDR_LIMIT] 266 str x20, [tsk, #TSK_TI_ADDR_LIMIT] 267 268 /* No need to restore UAO, it will be restored from SPSR_EL1 */ 269 .endif 270 271 /* Restore pmr */ 272alternative_if ARM64_HAS_IRQ_PRIO_MASKING 273 ldr x20, [sp, #S_PMR_SAVE] 274 msr_s SYS_ICC_PMR_EL1, x20 275 mrs_s x21, SYS_ICC_CTLR_EL1 276 tbz x21, #6, .L__skip_pmr_sync\@ // Check for ICC_CTLR_EL1.PMHE 277 dsb sy // Ensure priority change is seen by redistributor 278.L__skip_pmr_sync\@: 279alternative_else_nop_endif 280 281 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR 282 .if \el == 0 283 ct_user_enter 284 .endif 285 286#ifdef CONFIG_ARM64_SW_TTBR0_PAN 287 /* 288 * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR 289 * PAN bit checking. 290 */ 291alternative_if ARM64_HAS_PAN 292 b 2f // skip TTBR0 PAN 293alternative_else_nop_endif 294 295 .if \el != 0 296 tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set 297 .endif 298 299 __uaccess_ttbr0_enable x0, x1 300 301 .if \el == 0 302 /* 303 * Enable errata workarounds only if returning to user. The only 304 * workaround currently required for TTBR0_EL1 changes are for the 305 * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache 306 * corruption). 307 */ 308 bl post_ttbr_update_workaround 309 .endif 3101: 311 .if \el != 0 312 and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit 313 .endif 3142: 315#endif 316 317 .if \el == 0 318 ldr x23, [sp, #S_SP] // load return stack pointer 319 msr sp_el0, x23 320 tst x22, #PSR_MODE32_BIT // native task? 321 b.eq 3f 322 323#ifdef CONFIG_ARM64_ERRATUM_845719 324alternative_if ARM64_WORKAROUND_845719 325#ifdef CONFIG_PID_IN_CONTEXTIDR 326 mrs x29, contextidr_el1 327 msr contextidr_el1, x29 328#else 329 msr contextidr_el1, xzr 330#endif 331alternative_else_nop_endif 332#endif 3333: 334#ifdef CONFIG_ARM64_ERRATUM_1418040 335alternative_if_not ARM64_WORKAROUND_1418040 336 b 4f 337alternative_else_nop_endif 338 /* 339 * if (x22.mode32 == cntkctl_el1.el0vcten) 340 * cntkctl_el1.el0vcten = ~cntkctl_el1.el0vcten 341 */ 342 mrs x1, cntkctl_el1 343 eon x0, x1, x22, lsr #3 344 tbz x0, #1, 4f 345 eor x1, x1, #2 // ARCH_TIMER_USR_VCT_ACCESS_EN 346 msr cntkctl_el1, x1 3474: 348#endif 349 scs_save tsk, x0 350 351 /* No kernel C function calls after this as user keys are set. */ 352 ptrauth_keys_install_user tsk, x0, x1, x2 353 354 apply_ssbd 0, x0, x1 355 .endif 356 357 msr elr_el1, x21 // set up the return data 358 msr spsr_el1, x22 359 ldp x0, x1, [sp, #16 * 0] 360 ldp x2, x3, [sp, #16 * 1] 361 ldp x4, x5, [sp, #16 * 2] 362 ldp x6, x7, [sp, #16 * 3] 363 ldp x8, x9, [sp, #16 * 4] 364 ldp x10, x11, [sp, #16 * 5] 365 ldp x12, x13, [sp, #16 * 6] 366 ldp x14, x15, [sp, #16 * 7] 367 ldp x16, x17, [sp, #16 * 8] 368 ldp x18, x19, [sp, #16 * 9] 369 ldp x20, x21, [sp, #16 * 10] 370 ldp x22, x23, [sp, #16 * 11] 371 ldp x24, x25, [sp, #16 * 12] 372 ldp x26, x27, [sp, #16 * 13] 373 ldp x28, x29, [sp, #16 * 14] 374 ldr lr, [sp, #S_LR] 375 add sp, sp, #S_FRAME_SIZE // restore sp 376 377 .if \el == 0 378alternative_insn eret, nop, ARM64_UNMAP_KERNEL_AT_EL0 379#ifdef CONFIG_UNMAP_KERNEL_AT_EL0 380 bne 5f 381 msr far_el1, x30 382 tramp_alias x30, tramp_exit_native 383 br x30 3845: 385 tramp_alias x30, tramp_exit_compat 386 br x30 387#endif 388 .else 389 eret 390 .endif 391 sb 392 .endm 393 394 .macro irq_stack_entry 395 mov x19, sp // preserve the original sp 396#ifdef CONFIG_SHADOW_CALL_STACK 397 mov x24, scs_sp // preserve the original shadow stack 398#endif 399 400 /* 401 * Compare sp with the base of the task stack. 402 * If the top ~(THREAD_SIZE - 1) bits match, we are on a task stack, 403 * and should switch to the irq stack. 404 */ 405 ldr x25, [tsk, TSK_STACK] 406 eor x25, x25, x19 407 and x25, x25, #~(THREAD_SIZE - 1) 408 cbnz x25, 9998f 409 410 ldr_this_cpu x25, irq_stack_ptr, x26 411 mov x26, #IRQ_STACK_SIZE 412 add x26, x25, x26 413 414 /* switch to the irq stack */ 415 mov sp, x26 416 417#ifdef CONFIG_SHADOW_CALL_STACK 418 /* also switch to the irq shadow stack */ 419 adr_this_cpu scs_sp, irq_shadow_call_stack, x26 420#endif 421 4229998: 423 .endm 424 425 /* 426 * The callee-saved regs (x19-x29) should be preserved between 427 * irq_stack_entry and irq_stack_exit, but note that kernel_entry 428 * uses x20-x23 to store data for later use. 429 */ 430 .macro irq_stack_exit 431 mov sp, x19 432#ifdef CONFIG_SHADOW_CALL_STACK 433 mov scs_sp, x24 434#endif 435 .endm 436 437/* GPRs used by entry code */ 438tsk .req x28 // current thread_info 439 440/* 441 * Interrupt handling. 442 */ 443 .macro irq_handler 444 ldr_l x1, handle_arch_irq 445 mov x0, sp 446 irq_stack_entry 447 blr x1 448 irq_stack_exit 449 .endm 450 451#ifdef CONFIG_ARM64_PSEUDO_NMI 452 /* 453 * Set res to 0 if irqs were unmasked in interrupted context. 454 * Otherwise set res to non-0 value. 455 */ 456 .macro test_irqs_unmasked res:req, pmr:req 457alternative_if ARM64_HAS_IRQ_PRIO_MASKING 458 sub \res, \pmr, #GIC_PRIO_IRQON 459alternative_else 460 mov \res, xzr 461alternative_endif 462 .endm 463#endif 464 465 .macro gic_prio_kentry_setup, tmp:req 466#ifdef CONFIG_ARM64_PSEUDO_NMI 467 alternative_if ARM64_HAS_IRQ_PRIO_MASKING 468 mov \tmp, #(GIC_PRIO_PSR_I_SET | GIC_PRIO_IRQON) 469 msr_s SYS_ICC_PMR_EL1, \tmp 470 alternative_else_nop_endif 471#endif 472 .endm 473 474 .macro gic_prio_irq_setup, pmr:req, tmp:req 475#ifdef CONFIG_ARM64_PSEUDO_NMI 476 alternative_if ARM64_HAS_IRQ_PRIO_MASKING 477 orr \tmp, \pmr, #GIC_PRIO_PSR_I_SET 478 msr_s SYS_ICC_PMR_EL1, \tmp 479 alternative_else_nop_endif 480#endif 481 .endm 482 483 .text 484 485/* 486 * Exception vectors. 487 */ 488 .pushsection ".entry.text", "ax" 489 490 .align 11 491SYM_CODE_START(vectors) 492 kernel_ventry 1, sync_invalid // Synchronous EL1t 493 kernel_ventry 1, irq_invalid // IRQ EL1t 494 kernel_ventry 1, fiq_invalid // FIQ EL1t 495 kernel_ventry 1, error_invalid // Error EL1t 496 497 kernel_ventry 1, sync // Synchronous EL1h 498 kernel_ventry 1, irq // IRQ EL1h 499 kernel_ventry 1, fiq_invalid // FIQ EL1h 500 kernel_ventry 1, error // Error EL1h 501 502 kernel_ventry 0, sync // Synchronous 64-bit EL0 503 kernel_ventry 0, irq // IRQ 64-bit EL0 504 kernel_ventry 0, fiq_invalid // FIQ 64-bit EL0 505 kernel_ventry 0, error // Error 64-bit EL0 506 507#ifdef CONFIG_COMPAT 508 kernel_ventry 0, sync_compat, 32 // Synchronous 32-bit EL0 509 kernel_ventry 0, irq_compat, 32 // IRQ 32-bit EL0 510 kernel_ventry 0, fiq_invalid_compat, 32 // FIQ 32-bit EL0 511 kernel_ventry 0, error_compat, 32 // Error 32-bit EL0 512#else 513 kernel_ventry 0, sync_invalid, 32 // Synchronous 32-bit EL0 514 kernel_ventry 0, irq_invalid, 32 // IRQ 32-bit EL0 515 kernel_ventry 0, fiq_invalid, 32 // FIQ 32-bit EL0 516 kernel_ventry 0, error_invalid, 32 // Error 32-bit EL0 517#endif 518SYM_CODE_END(vectors) 519 520#ifdef CONFIG_VMAP_STACK 521 /* 522 * We detected an overflow in kernel_ventry, which switched to the 523 * overflow stack. Stash the exception regs, and head to our overflow 524 * handler. 525 */ 526__bad_stack: 527 /* Restore the original x0 value */ 528 mrs x0, tpidrro_el0 529 530 /* 531 * Store the original GPRs to the new stack. The orginal SP (minus 532 * S_FRAME_SIZE) was stashed in tpidr_el0 by kernel_ventry. 533 */ 534 sub sp, sp, #S_FRAME_SIZE 535 kernel_entry 1 536 mrs x0, tpidr_el0 537 add x0, x0, #S_FRAME_SIZE 538 str x0, [sp, #S_SP] 539 540 /* Stash the regs for handle_bad_stack */ 541 mov x0, sp 542 543 /* Time to die */ 544 bl handle_bad_stack 545 ASM_BUG() 546#endif /* CONFIG_VMAP_STACK */ 547 548/* 549 * Invalid mode handlers 550 */ 551 .macro inv_entry, el, reason, regsize = 64 552 kernel_entry \el, \regsize 553 mov x0, sp 554 mov x1, #\reason 555 mrs x2, esr_el1 556 bl bad_mode 557 ASM_BUG() 558 .endm 559 560SYM_CODE_START_LOCAL(el0_sync_invalid) 561 inv_entry 0, BAD_SYNC 562SYM_CODE_END(el0_sync_invalid) 563 564SYM_CODE_START_LOCAL(el0_irq_invalid) 565 inv_entry 0, BAD_IRQ 566SYM_CODE_END(el0_irq_invalid) 567 568SYM_CODE_START_LOCAL(el0_fiq_invalid) 569 inv_entry 0, BAD_FIQ 570SYM_CODE_END(el0_fiq_invalid) 571 572SYM_CODE_START_LOCAL(el0_error_invalid) 573 inv_entry 0, BAD_ERROR 574SYM_CODE_END(el0_error_invalid) 575 576#ifdef CONFIG_COMPAT 577SYM_CODE_START_LOCAL(el0_fiq_invalid_compat) 578 inv_entry 0, BAD_FIQ, 32 579SYM_CODE_END(el0_fiq_invalid_compat) 580#endif 581 582SYM_CODE_START_LOCAL(el1_sync_invalid) 583 inv_entry 1, BAD_SYNC 584SYM_CODE_END(el1_sync_invalid) 585 586SYM_CODE_START_LOCAL(el1_irq_invalid) 587 inv_entry 1, BAD_IRQ 588SYM_CODE_END(el1_irq_invalid) 589 590SYM_CODE_START_LOCAL(el1_fiq_invalid) 591 inv_entry 1, BAD_FIQ 592SYM_CODE_END(el1_fiq_invalid) 593 594SYM_CODE_START_LOCAL(el1_error_invalid) 595 inv_entry 1, BAD_ERROR 596SYM_CODE_END(el1_error_invalid) 597 598/* 599 * EL1 mode handlers. 600 */ 601 .align 6 602SYM_CODE_START_LOCAL_NOALIGN(el1_sync) 603 kernel_entry 1 604 mov x0, sp 605 bl el1_sync_handler 606 kernel_exit 1 607SYM_CODE_END(el1_sync) 608 609 .align 6 610SYM_CODE_START_LOCAL_NOALIGN(el1_irq) 611 kernel_entry 1 612 gic_prio_irq_setup pmr=x20, tmp=x1 613 enable_da_f 614 615#ifdef CONFIG_ARM64_PSEUDO_NMI 616 test_irqs_unmasked res=x0, pmr=x20 617 cbz x0, 1f 618 bl asm_nmi_enter 6191: 620#endif 621 622#ifdef CONFIG_TRACE_IRQFLAGS 623 bl trace_hardirqs_off 624#endif 625 626 irq_handler 627 628#ifdef CONFIG_PREEMPTION 629 ldr x24, [tsk, #TSK_TI_PREEMPT] // get preempt count 630alternative_if ARM64_HAS_IRQ_PRIO_MASKING 631 /* 632 * DA_F were cleared at start of handling. If anything is set in DAIF, 633 * we come back from an NMI, so skip preemption 634 */ 635 mrs x0, daif 636 orr x24, x24, x0 637alternative_else_nop_endif 638 cbnz x24, 1f // preempt count != 0 || NMI return path 639 bl arm64_preempt_schedule_irq // irq en/disable is done inside 6401: 641#endif 642 643#ifdef CONFIG_ARM64_PSEUDO_NMI 644 /* 645 * When using IRQ priority masking, we can get spurious interrupts while 646 * PMR is set to GIC_PRIO_IRQOFF. An NMI might also have occurred in a 647 * section with interrupts disabled. Skip tracing in those cases. 648 */ 649 test_irqs_unmasked res=x0, pmr=x20 650 cbz x0, 1f 651 bl asm_nmi_exit 6521: 653#endif 654 655#ifdef CONFIG_TRACE_IRQFLAGS 656#ifdef CONFIG_ARM64_PSEUDO_NMI 657 test_irqs_unmasked res=x0, pmr=x20 658 cbnz x0, 1f 659#endif 660 bl trace_hardirqs_on 6611: 662#endif 663 664 kernel_exit 1 665SYM_CODE_END(el1_irq) 666 667/* 668 * EL0 mode handlers. 669 */ 670 .align 6 671SYM_CODE_START_LOCAL_NOALIGN(el0_sync) 672 kernel_entry 0 673 mov x0, sp 674 bl el0_sync_handler 675 b ret_to_user 676SYM_CODE_END(el0_sync) 677 678#ifdef CONFIG_COMPAT 679 .align 6 680SYM_CODE_START_LOCAL_NOALIGN(el0_sync_compat) 681 kernel_entry 0, 32 682 mov x0, sp 683 bl el0_sync_compat_handler 684 b ret_to_user 685SYM_CODE_END(el0_sync_compat) 686 687 .align 6 688SYM_CODE_START_LOCAL_NOALIGN(el0_irq_compat) 689 kernel_entry 0, 32 690 b el0_irq_naked 691SYM_CODE_END(el0_irq_compat) 692 693SYM_CODE_START_LOCAL_NOALIGN(el0_error_compat) 694 kernel_entry 0, 32 695 b el0_error_naked 696SYM_CODE_END(el0_error_compat) 697#endif 698 699 .align 6 700SYM_CODE_START_LOCAL_NOALIGN(el0_irq) 701 kernel_entry 0 702el0_irq_naked: 703 gic_prio_irq_setup pmr=x20, tmp=x0 704 ct_user_exit_irqoff 705 enable_da_f 706 707#ifdef CONFIG_TRACE_IRQFLAGS 708 bl trace_hardirqs_off 709#endif 710 711#ifdef CONFIG_HARDEN_BRANCH_PREDICTOR 712 tbz x22, #55, 1f 713 bl do_el0_irq_bp_hardening 7141: 715#endif 716 irq_handler 717 718#ifdef CONFIG_TRACE_IRQFLAGS 719 bl trace_hardirqs_on 720#endif 721 b ret_to_user 722SYM_CODE_END(el0_irq) 723 724SYM_CODE_START_LOCAL(el1_error) 725 kernel_entry 1 726 mrs x1, esr_el1 727 gic_prio_kentry_setup tmp=x2 728 enable_dbg 729 mov x0, sp 730 bl do_serror 731 kernel_exit 1 732SYM_CODE_END(el1_error) 733 734SYM_CODE_START_LOCAL(el0_error) 735 kernel_entry 0 736el0_error_naked: 737 mrs x25, esr_el1 738 gic_prio_kentry_setup tmp=x2 739 ct_user_exit_irqoff 740 enable_dbg 741 mov x0, sp 742 mov x1, x25 743 bl do_serror 744 enable_da_f 745 b ret_to_user 746SYM_CODE_END(el0_error) 747 748/* 749 * "slow" syscall return path. 750 */ 751SYM_CODE_START_LOCAL(ret_to_user) 752 disable_daif 753 gic_prio_kentry_setup tmp=x3 754 ldr x1, [tsk, #TSK_TI_FLAGS] 755 and x2, x1, #_TIF_WORK_MASK 756 cbnz x2, work_pending 757finish_ret_to_user: 758 enable_step_tsk x1, x2 759#ifdef CONFIG_GCC_PLUGIN_STACKLEAK 760 bl stackleak_erase 761#endif 762 kernel_exit 0 763 764/* 765 * Ok, we need to do extra processing, enter the slow path. 766 */ 767work_pending: 768 mov x0, sp // 'regs' 769 bl do_notify_resume 770#ifdef CONFIG_TRACE_IRQFLAGS 771 bl trace_hardirqs_on // enabled while in userspace 772#endif 773 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for single-step 774 b finish_ret_to_user 775SYM_CODE_END(ret_to_user) 776 777 .popsection // .entry.text 778 779#ifdef CONFIG_UNMAP_KERNEL_AT_EL0 780/* 781 * Exception vectors trampoline. 782 */ 783 .pushsection ".entry.tramp.text", "ax" 784 785 .macro tramp_map_kernel, tmp 786 mrs \tmp, ttbr1_el1 787 add \tmp, \tmp, #(PAGE_SIZE + RESERVED_TTBR0_SIZE) 788 bic \tmp, \tmp, #USER_ASID_FLAG 789 msr ttbr1_el1, \tmp 790#ifdef CONFIG_QCOM_FALKOR_ERRATUM_1003 791alternative_if ARM64_WORKAROUND_QCOM_FALKOR_E1003 792 /* ASID already in \tmp[63:48] */ 793 movk \tmp, #:abs_g2_nc:(TRAMP_VALIAS >> 12) 794 movk \tmp, #:abs_g1_nc:(TRAMP_VALIAS >> 12) 795 /* 2MB boundary containing the vectors, so we nobble the walk cache */ 796 movk \tmp, #:abs_g0_nc:((TRAMP_VALIAS & ~(SZ_2M - 1)) >> 12) 797 isb 798 tlbi vae1, \tmp 799 dsb nsh 800alternative_else_nop_endif 801#endif /* CONFIG_QCOM_FALKOR_ERRATUM_1003 */ 802 .endm 803 804 .macro tramp_unmap_kernel, tmp 805 mrs \tmp, ttbr1_el1 806 sub \tmp, \tmp, #(PAGE_SIZE + RESERVED_TTBR0_SIZE) 807 orr \tmp, \tmp, #USER_ASID_FLAG 808 msr ttbr1_el1, \tmp 809 /* 810 * We avoid running the post_ttbr_update_workaround here because 811 * it's only needed by Cavium ThunderX, which requires KPTI to be 812 * disabled. 813 */ 814 .endm 815 816 .macro tramp_ventry, regsize = 64 817 .align 7 8181: 819 .if \regsize == 64 820 msr tpidrro_el0, x30 // Restored in kernel_ventry 821 .endif 822 /* 823 * Defend against branch aliasing attacks by pushing a dummy 824 * entry onto the return stack and using a RET instruction to 825 * enter the full-fat kernel vectors. 826 */ 827 bl 2f 828 b . 8292: 830 tramp_map_kernel x30 831#ifdef CONFIG_RANDOMIZE_BASE 832 adr x30, tramp_vectors + PAGE_SIZE 833alternative_insn isb, nop, ARM64_WORKAROUND_QCOM_FALKOR_E1003 834 ldr x30, [x30] 835#else 836 ldr x30, =vectors 837#endif 838alternative_if_not ARM64_WORKAROUND_CAVIUM_TX2_219_PRFM 839 prfm plil1strm, [x30, #(1b - tramp_vectors)] 840alternative_else_nop_endif 841 msr vbar_el1, x30 842 add x30, x30, #(1b - tramp_vectors) 843 isb 844 ret 845 .endm 846 847 .macro tramp_exit, regsize = 64 848 adr x30, tramp_vectors 849 msr vbar_el1, x30 850 tramp_unmap_kernel x30 851 .if \regsize == 64 852 mrs x30, far_el1 853 .endif 854 eret 855 sb 856 .endm 857 858 .align 11 859SYM_CODE_START_NOALIGN(tramp_vectors) 860 .space 0x400 861 862 tramp_ventry 863 tramp_ventry 864 tramp_ventry 865 tramp_ventry 866 867 tramp_ventry 32 868 tramp_ventry 32 869 tramp_ventry 32 870 tramp_ventry 32 871SYM_CODE_END(tramp_vectors) 872 873SYM_CODE_START(tramp_exit_native) 874 tramp_exit 875SYM_CODE_END(tramp_exit_native) 876 877SYM_CODE_START(tramp_exit_compat) 878 tramp_exit 32 879SYM_CODE_END(tramp_exit_compat) 880 881 .ltorg 882 .popsection // .entry.tramp.text 883#ifdef CONFIG_RANDOMIZE_BASE 884 .pushsection ".rodata", "a" 885 .align PAGE_SHIFT 886SYM_DATA_START(__entry_tramp_data_start) 887 .quad vectors 888SYM_DATA_END(__entry_tramp_data_start) 889 .popsection // .rodata 890#endif /* CONFIG_RANDOMIZE_BASE */ 891#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */ 892 893/* 894 * Register switch for AArch64. The callee-saved registers need to be saved 895 * and restored. On entry: 896 * x0 = previous task_struct (must be preserved across the switch) 897 * x1 = next task_struct 898 * Previous and next are guaranteed not to be the same. 899 * 900 */ 901SYM_FUNC_START(cpu_switch_to) 902 mov x10, #THREAD_CPU_CONTEXT 903 add x8, x0, x10 904 mov x9, sp 905 stp x19, x20, [x8], #16 // store callee-saved registers 906 stp x21, x22, [x8], #16 907 stp x23, x24, [x8], #16 908 stp x25, x26, [x8], #16 909 stp x27, x28, [x8], #16 910 stp x29, x9, [x8], #16 911 str lr, [x8] 912 add x8, x1, x10 913 ldp x19, x20, [x8], #16 // restore callee-saved registers 914 ldp x21, x22, [x8], #16 915 ldp x23, x24, [x8], #16 916 ldp x25, x26, [x8], #16 917 ldp x27, x28, [x8], #16 918 ldp x29, x9, [x8], #16 919 ldr lr, [x8] 920 mov sp, x9 921 msr sp_el0, x1 922 ptrauth_keys_install_kernel x1, x8, x9, x10 923 scs_save x0, x8 924 scs_load x1, x8 925 ret 926SYM_FUNC_END(cpu_switch_to) 927NOKPROBE(cpu_switch_to) 928 929/* 930 * This is how we return from a fork. 931 */ 932SYM_CODE_START(ret_from_fork) 933 bl schedule_tail 934 cbz x19, 1f // not a kernel thread 935 mov x0, x20 936 blr x19 9371: get_current_task tsk 938 b ret_to_user 939SYM_CODE_END(ret_from_fork) 940NOKPROBE(ret_from_fork) 941 942#ifdef CONFIG_ARM_SDE_INTERFACE 943 944#include <asm/sdei.h> 945#include <uapi/linux/arm_sdei.h> 946 947.macro sdei_handler_exit exit_mode 948 /* On success, this call never returns... */ 949 cmp \exit_mode, #SDEI_EXIT_SMC 950 b.ne 99f 951 smc #0 952 b . 95399: hvc #0 954 b . 955.endm 956 957#ifdef CONFIG_UNMAP_KERNEL_AT_EL0 958/* 959 * The regular SDEI entry point may have been unmapped along with the rest of 960 * the kernel. This trampoline restores the kernel mapping to make the x1 memory 961 * argument accessible. 962 * 963 * This clobbers x4, __sdei_handler() will restore this from firmware's 964 * copy. 965 */ 966.ltorg 967.pushsection ".entry.tramp.text", "ax" 968SYM_CODE_START(__sdei_asm_entry_trampoline) 969 mrs x4, ttbr1_el1 970 tbz x4, #USER_ASID_BIT, 1f 971 972 tramp_map_kernel tmp=x4 973 isb 974 mov x4, xzr 975 976 /* 977 * Use reg->interrupted_regs.addr_limit to remember whether to unmap 978 * the kernel on exit. 979 */ 9801: str x4, [x1, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)] 981 982#ifdef CONFIG_RANDOMIZE_BASE 983 adr x4, tramp_vectors + PAGE_SIZE 984 add x4, x4, #:lo12:__sdei_asm_trampoline_next_handler 985 ldr x4, [x4] 986#else 987 ldr x4, =__sdei_asm_handler 988#endif 989 br x4 990SYM_CODE_END(__sdei_asm_entry_trampoline) 991NOKPROBE(__sdei_asm_entry_trampoline) 992 993/* 994 * Make the exit call and restore the original ttbr1_el1 995 * 996 * x0 & x1: setup for the exit API call 997 * x2: exit_mode 998 * x4: struct sdei_registered_event argument from registration time. 999 */ 1000SYM_CODE_START(__sdei_asm_exit_trampoline) 1001 ldr x4, [x4, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)] 1002 cbnz x4, 1f 1003 1004 tramp_unmap_kernel tmp=x4 1005 10061: sdei_handler_exit exit_mode=x2 1007SYM_CODE_END(__sdei_asm_exit_trampoline) 1008NOKPROBE(__sdei_asm_exit_trampoline) 1009 .ltorg 1010.popsection // .entry.tramp.text 1011#ifdef CONFIG_RANDOMIZE_BASE 1012.pushsection ".rodata", "a" 1013SYM_DATA_START(__sdei_asm_trampoline_next_handler) 1014 .quad __sdei_asm_handler 1015SYM_DATA_END(__sdei_asm_trampoline_next_handler) 1016.popsection // .rodata 1017#endif /* CONFIG_RANDOMIZE_BASE */ 1018#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */ 1019 1020/* 1021 * Software Delegated Exception entry point. 1022 * 1023 * x0: Event number 1024 * x1: struct sdei_registered_event argument from registration time. 1025 * x2: interrupted PC 1026 * x3: interrupted PSTATE 1027 * x4: maybe clobbered by the trampoline 1028 * 1029 * Firmware has preserved x0->x17 for us, we must save/restore the rest to 1030 * follow SMC-CC. We save (or retrieve) all the registers as the handler may 1031 * want them. 1032 */ 1033SYM_CODE_START(__sdei_asm_handler) 1034 stp x2, x3, [x1, #SDEI_EVENT_INTREGS + S_PC] 1035 stp x4, x5, [x1, #SDEI_EVENT_INTREGS + 16 * 2] 1036 stp x6, x7, [x1, #SDEI_EVENT_INTREGS + 16 * 3] 1037 stp x8, x9, [x1, #SDEI_EVENT_INTREGS + 16 * 4] 1038 stp x10, x11, [x1, #SDEI_EVENT_INTREGS + 16 * 5] 1039 stp x12, x13, [x1, #SDEI_EVENT_INTREGS + 16 * 6] 1040 stp x14, x15, [x1, #SDEI_EVENT_INTREGS + 16 * 7] 1041 stp x16, x17, [x1, #SDEI_EVENT_INTREGS + 16 * 8] 1042 stp x18, x19, [x1, #SDEI_EVENT_INTREGS + 16 * 9] 1043 stp x20, x21, [x1, #SDEI_EVENT_INTREGS + 16 * 10] 1044 stp x22, x23, [x1, #SDEI_EVENT_INTREGS + 16 * 11] 1045 stp x24, x25, [x1, #SDEI_EVENT_INTREGS + 16 * 12] 1046 stp x26, x27, [x1, #SDEI_EVENT_INTREGS + 16 * 13] 1047 stp x28, x29, [x1, #SDEI_EVENT_INTREGS + 16 * 14] 1048 mov x4, sp 1049 stp lr, x4, [x1, #SDEI_EVENT_INTREGS + S_LR] 1050 1051 mov x19, x1 1052 1053#if defined(CONFIG_VMAP_STACK) || defined(CONFIG_SHADOW_CALL_STACK) 1054 ldrb w4, [x19, #SDEI_EVENT_PRIORITY] 1055#endif 1056 1057#ifdef CONFIG_VMAP_STACK 1058 /* 1059 * entry.S may have been using sp as a scratch register, find whether 1060 * this is a normal or critical event and switch to the appropriate 1061 * stack for this CPU. 1062 */ 1063 cbnz w4, 1f 1064 ldr_this_cpu dst=x5, sym=sdei_stack_normal_ptr, tmp=x6 1065 b 2f 10661: ldr_this_cpu dst=x5, sym=sdei_stack_critical_ptr, tmp=x6 10672: mov x6, #SDEI_STACK_SIZE 1068 add x5, x5, x6 1069 mov sp, x5 1070#endif 1071 1072#ifdef CONFIG_SHADOW_CALL_STACK 1073 /* Use a separate shadow call stack for normal and critical events */ 1074 cbnz w4, 3f 1075 adr_this_cpu dst=scs_sp, sym=sdei_shadow_call_stack_normal, tmp=x6 1076 b 4f 10773: adr_this_cpu dst=scs_sp, sym=sdei_shadow_call_stack_critical, tmp=x6 10784: 1079#endif 1080 1081 /* 1082 * We may have interrupted userspace, or a guest, or exit-from or 1083 * return-to either of these. We can't trust sp_el0, restore it. 1084 */ 1085 mrs x28, sp_el0 1086 ldr_this_cpu dst=x0, sym=__entry_task, tmp=x1 1087 msr sp_el0, x0 1088 1089 /* If we interrupted the kernel point to the previous stack/frame. */ 1090 and x0, x3, #0xc 1091 mrs x1, CurrentEL 1092 cmp x0, x1 1093 csel x29, x29, xzr, eq // fp, or zero 1094 csel x4, x2, xzr, eq // elr, or zero 1095 1096 stp x29, x4, [sp, #-16]! 1097 mov x29, sp 1098 1099 add x0, x19, #SDEI_EVENT_INTREGS 1100 mov x1, x19 1101 bl __sdei_handler 1102 1103 msr sp_el0, x28 1104 /* restore regs >x17 that we clobbered */ 1105 mov x4, x19 // keep x4 for __sdei_asm_exit_trampoline 1106 ldp x28, x29, [x4, #SDEI_EVENT_INTREGS + 16 * 14] 1107 ldp x18, x19, [x4, #SDEI_EVENT_INTREGS + 16 * 9] 1108 ldp lr, x1, [x4, #SDEI_EVENT_INTREGS + S_LR] 1109 mov sp, x1 1110 1111 mov x1, x0 // address to complete_and_resume 1112 /* x0 = (x0 <= 1) ? EVENT_COMPLETE:EVENT_COMPLETE_AND_RESUME */ 1113 cmp x0, #1 1114 mov_q x2, SDEI_1_0_FN_SDEI_EVENT_COMPLETE 1115 mov_q x3, SDEI_1_0_FN_SDEI_EVENT_COMPLETE_AND_RESUME 1116 csel x0, x2, x3, ls 1117 1118 ldr_l x2, sdei_exit_mode 1119 1120alternative_if_not ARM64_UNMAP_KERNEL_AT_EL0 1121 sdei_handler_exit exit_mode=x2 1122alternative_else_nop_endif 1123 1124#ifdef CONFIG_UNMAP_KERNEL_AT_EL0 1125 tramp_alias dst=x5, sym=__sdei_asm_exit_trampoline 1126 br x5 1127#endif 1128SYM_CODE_END(__sdei_asm_handler) 1129NOKPROBE(__sdei_asm_handler) 1130#endif /* CONFIG_ARM_SDE_INTERFACE */ 1131