1
2
3
4
5
6
7
8
9
10#include <stdarg.h>
11
12#include <linux/compat.h>
13#include <linux/efi.h>
14#include <linux/export.h>
15#include <linux/sched.h>
16#include <linux/sched/debug.h>
17#include <linux/sched/task.h>
18#include <linux/sched/task_stack.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/stddef.h>
22#include <linux/unistd.h>
23#include <linux/user.h>
24#include <linux/delay.h>
25#include <linux/reboot.h>
26#include <linux/interrupt.h>
27#include <linux/init.h>
28#include <linux/cpu.h>
29#include <linux/elfcore.h>
30#include <linux/pm.h>
31#include <linux/tick.h>
32#include <linux/utsname.h>
33#include <linux/uaccess.h>
34#include <linux/random.h>
35#include <linux/hw_breakpoint.h>
36#include <linux/personality.h>
37#include <linux/notifier.h>
38#include <trace/events/power.h>
39#include <linux/percpu.h>
40#include <linux/thread_info.h>
41
42#include <asm/alternative.h>
43#include <asm/arch_gicv3.h>
44#include <asm/compat.h>
45#include <asm/cacheflush.h>
46#include <asm/exec.h>
47#include <asm/fpsimd.h>
48#include <asm/mmu_context.h>
49#include <asm/processor.h>
50#include <asm/pointer_auth.h>
51#include <asm/stacktrace.h>
52
53#if defined(CONFIG_STACKPROTECTOR) && !defined(CONFIG_STACKPROTECTOR_PER_TASK)
54#include <linux/stackprotector.h>
55unsigned long __stack_chk_guard __read_mostly;
56EXPORT_SYMBOL(__stack_chk_guard);
57#endif
58
59
60
61
62void (*pm_power_off)(void);
63EXPORT_SYMBOL_GPL(pm_power_off);
64
65void (*arm_pm_restart)(enum reboot_mode reboot_mode, const char *cmd);
66
67static void __cpu_do_idle(void)
68{
69 dsb(sy);
70 wfi();
71}
72
73static void __cpu_do_idle_irqprio(void)
74{
75 unsigned long pmr;
76 unsigned long daif_bits;
77
78 daif_bits = read_sysreg(daif);
79 write_sysreg(daif_bits | PSR_I_BIT, daif);
80
81
82
83
84
85 pmr = gic_read_pmr();
86 gic_write_pmr(GIC_PRIO_IRQON);
87
88 __cpu_do_idle();
89
90 gic_write_pmr(pmr);
91 write_sysreg(daif_bits, daif);
92}
93
94
95
96
97
98
99
100
101
102
103void cpu_do_idle(void)
104{
105 if (system_uses_irq_prio_masking())
106 __cpu_do_idle_irqprio();
107 else
108 __cpu_do_idle();
109}
110
111
112
113
114void arch_cpu_idle(void)
115{
116
117
118
119
120 trace_cpu_idle_rcuidle(1, smp_processor_id());
121 cpu_do_idle();
122 local_irq_enable();
123 trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id());
124}
125
126#ifdef CONFIG_HOTPLUG_CPU
127void arch_cpu_idle_dead(void)
128{
129 cpu_die();
130}
131#endif
132
133
134
135
136
137
138
139
140
141
142void machine_shutdown(void)
143{
144 disable_nonboot_cpus();
145}
146
147
148
149
150
151
152void machine_halt(void)
153{
154 local_irq_disable();
155 smp_send_stop();
156 while (1);
157}
158
159
160
161
162
163
164
165void machine_power_off(void)
166{
167 local_irq_disable();
168 smp_send_stop();
169 if (pm_power_off)
170 pm_power_off();
171}
172
173
174
175
176
177
178
179
180
181
182void machine_restart(char *cmd)
183{
184
185 local_irq_disable();
186 smp_send_stop();
187
188
189
190
191
192 if (efi_enabled(EFI_RUNTIME_SERVICES))
193 efi_reboot(reboot_mode, NULL);
194
195
196 if (arm_pm_restart)
197 arm_pm_restart(reboot_mode, cmd);
198 else
199 do_kernel_restart(cmd);
200
201
202
203
204 printk("Reboot failed -- System halted\n");
205 while (1);
206}
207
208static void print_pstate(struct pt_regs *regs)
209{
210 u64 pstate = regs->pstate;
211
212 if (compat_user_mode(regs)) {
213 printk("pstate: %08llx (%c%c%c%c %c %s %s %c%c%c)\n",
214 pstate,
215 pstate & PSR_AA32_N_BIT ? 'N' : 'n',
216 pstate & PSR_AA32_Z_BIT ? 'Z' : 'z',
217 pstate & PSR_AA32_C_BIT ? 'C' : 'c',
218 pstate & PSR_AA32_V_BIT ? 'V' : 'v',
219 pstate & PSR_AA32_Q_BIT ? 'Q' : 'q',
220 pstate & PSR_AA32_T_BIT ? "T32" : "A32",
221 pstate & PSR_AA32_E_BIT ? "BE" : "LE",
222 pstate & PSR_AA32_A_BIT ? 'A' : 'a',
223 pstate & PSR_AA32_I_BIT ? 'I' : 'i',
224 pstate & PSR_AA32_F_BIT ? 'F' : 'f');
225 } else {
226 printk("pstate: %08llx (%c%c%c%c %c%c%c%c %cPAN %cUAO)\n",
227 pstate,
228 pstate & PSR_N_BIT ? 'N' : 'n',
229 pstate & PSR_Z_BIT ? 'Z' : 'z',
230 pstate & PSR_C_BIT ? 'C' : 'c',
231 pstate & PSR_V_BIT ? 'V' : 'v',
232 pstate & PSR_D_BIT ? 'D' : 'd',
233 pstate & PSR_A_BIT ? 'A' : 'a',
234 pstate & PSR_I_BIT ? 'I' : 'i',
235 pstate & PSR_F_BIT ? 'F' : 'f',
236 pstate & PSR_PAN_BIT ? '+' : '-',
237 pstate & PSR_UAO_BIT ? '+' : '-');
238 }
239}
240
241void __show_regs(struct pt_regs *regs)
242{
243 int i, top_reg;
244 u64 lr, sp;
245
246 if (compat_user_mode(regs)) {
247 lr = regs->compat_lr;
248 sp = regs->compat_sp;
249 top_reg = 12;
250 } else {
251 lr = regs->regs[30];
252 sp = regs->sp;
253 top_reg = 29;
254 }
255
256 show_regs_print_info(KERN_DEFAULT);
257 print_pstate(regs);
258
259 if (!user_mode(regs)) {
260 printk("pc : %pS\n", (void *)regs->pc);
261 printk("lr : %pS\n", (void *)lr);
262 } else {
263 printk("pc : %016llx\n", regs->pc);
264 printk("lr : %016llx\n", lr);
265 }
266
267 printk("sp : %016llx\n", sp);
268
269 if (system_uses_irq_prio_masking())
270 printk("pmr_save: %08llx\n", regs->pmr_save);
271
272 i = top_reg;
273
274 while (i >= 0) {
275 printk("x%-2d: %016llx ", i, regs->regs[i]);
276 i--;
277
278 if (i % 2 == 0) {
279 pr_cont("x%-2d: %016llx ", i, regs->regs[i]);
280 i--;
281 }
282
283 pr_cont("\n");
284 }
285}
286
287void show_regs(struct pt_regs * regs)
288{
289 __show_regs(regs);
290 dump_backtrace(regs, NULL);
291}
292
293static void tls_thread_flush(void)
294{
295 write_sysreg(0, tpidr_el0);
296
297 if (is_compat_task()) {
298 current->thread.uw.tp_value = 0;
299
300
301
302
303
304
305 barrier();
306 write_sysreg(0, tpidrro_el0);
307 }
308}
309
310void flush_thread(void)
311{
312 fpsimd_flush_thread();
313 tls_thread_flush();
314 flush_ptrace_hw_breakpoint(current);
315}
316
317void release_thread(struct task_struct *dead_task)
318{
319}
320
321void arch_release_task_struct(struct task_struct *tsk)
322{
323 fpsimd_release_task(tsk);
324}
325
326
327
328
329
330
331
332
333
334
335
336int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
337{
338 if (current->mm)
339 fpsimd_preserve_current_state();
340 *dst = *src;
341
342 return 0;
343}
344
345asmlinkage void ret_from_fork(void) asm("ret_from_fork");
346
347int copy_thread(unsigned long clone_flags, unsigned long stack_start,
348 unsigned long stk_sz, struct task_struct *p)
349{
350 struct pt_regs *childregs = task_pt_regs(p);
351
352 memset(&p->thread.cpu_context, 0, sizeof(struct cpu_context));
353
354
355
356
357
358 clear_tsk_thread_flag(p, TIF_SVE);
359 p->thread.sve_state = NULL;
360
361
362
363
364
365
366
367
368 fpsimd_flush_task_state(p);
369
370 if (likely(!(p->flags & PF_KTHREAD))) {
371 *childregs = *current_pt_regs();
372 childregs->regs[0] = 0;
373
374
375
376
377
378 *task_user_tls(p) = read_sysreg(tpidr_el0);
379
380 if (stack_start) {
381 if (is_compat_thread(task_thread_info(p)))
382 childregs->compat_sp = stack_start;
383 else
384 childregs->sp = stack_start;
385 }
386
387
388
389
390
391 if (clone_flags & CLONE_SETTLS)
392 p->thread.uw.tp_value = childregs->regs[3];
393 } else {
394 memset(childregs, 0, sizeof(struct pt_regs));
395 childregs->pstate = PSR_MODE_EL1h;
396 if (IS_ENABLED(CONFIG_ARM64_UAO) &&
397 cpus_have_const_cap(ARM64_HAS_UAO))
398 childregs->pstate |= PSR_UAO_BIT;
399
400 if (arm64_get_ssbd_state() == ARM64_SSBD_FORCE_DISABLE)
401 childregs->pstate |= PSR_SSBS_BIT;
402
403 if (system_uses_irq_prio_masking())
404 childregs->pmr_save = GIC_PRIO_IRQON;
405
406 p->thread.cpu_context.x19 = stack_start;
407 p->thread.cpu_context.x20 = stk_sz;
408 }
409 p->thread.cpu_context.pc = (unsigned long)ret_from_fork;
410 p->thread.cpu_context.sp = (unsigned long)childregs;
411
412 ptrace_hw_copy_thread(p);
413
414 return 0;
415}
416
417void tls_preserve_current_state(void)
418{
419 *task_user_tls(current) = read_sysreg(tpidr_el0);
420}
421
422static void tls_thread_switch(struct task_struct *next)
423{
424 tls_preserve_current_state();
425
426 if (is_compat_thread(task_thread_info(next)))
427 write_sysreg(next->thread.uw.tp_value, tpidrro_el0);
428 else if (!arm64_kernel_unmapped_at_el0())
429 write_sysreg(0, tpidrro_el0);
430
431 write_sysreg(*task_user_tls(next), tpidr_el0);
432}
433
434
435void uao_thread_switch(struct task_struct *next)
436{
437 if (IS_ENABLED(CONFIG_ARM64_UAO)) {
438 if (task_thread_info(next)->addr_limit == KERNEL_DS)
439 asm(ALTERNATIVE("nop", SET_PSTATE_UAO(1), ARM64_HAS_UAO));
440 else
441 asm(ALTERNATIVE("nop", SET_PSTATE_UAO(0), ARM64_HAS_UAO));
442 }
443}
444
445
446
447
448
449
450
451
452DEFINE_PER_CPU(struct task_struct *, __entry_task);
453
454static void entry_task_switch(struct task_struct *next)
455{
456 __this_cpu_write(__entry_task, next);
457}
458
459
460
461
462__notrace_funcgraph struct task_struct *__switch_to(struct task_struct *prev,
463 struct task_struct *next)
464{
465 struct task_struct *last;
466
467 fpsimd_thread_switch(next);
468 tls_thread_switch(next);
469 hw_breakpoint_thread_switch(next);
470 contextidr_thread_switch(next);
471 entry_task_switch(next);
472 uao_thread_switch(next);
473 ptrauth_thread_switch(next);
474
475
476
477
478
479
480
481 dsb(ish);
482
483
484 last = cpu_switch_to(prev, next);
485
486 return last;
487}
488
489unsigned long get_wchan(struct task_struct *p)
490{
491 struct stackframe frame;
492 unsigned long stack_page, ret = 0;
493 int count = 0;
494 if (!p || p == current || p->state == TASK_RUNNING)
495 return 0;
496
497 stack_page = (unsigned long)try_get_task_stack(p);
498 if (!stack_page)
499 return 0;
500
501 frame.fp = thread_saved_fp(p);
502 frame.pc = thread_saved_pc(p);
503#ifdef CONFIG_FUNCTION_GRAPH_TRACER
504 frame.graph = 0;
505#endif
506 do {
507 if (unwind_frame(p, &frame))
508 goto out;
509 if (!in_sched_functions(frame.pc)) {
510 ret = frame.pc;
511 goto out;
512 }
513 } while (count ++ < 16);
514
515out:
516 put_task_stack(p);
517 return ret;
518}
519
520unsigned long arch_align_stack(unsigned long sp)
521{
522 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
523 sp -= get_random_int() & ~PAGE_MASK;
524 return sp & ~0xf;
525}
526
527unsigned long arch_randomize_brk(struct mm_struct *mm)
528{
529 if (is_compat_task())
530 return randomize_page(mm->brk, SZ_32M);
531 else
532 return randomize_page(mm->brk, SZ_1G);
533}
534
535
536
537
538void arch_setup_new_exec(void)
539{
540 current->mm->context.flags = is_compat_task() ? MMCF_AARCH32 : 0;
541
542 ptrauth_thread_init_user(current);
543}
544