blob: 794b754deec23934e7e6e62bb272203ce8323d30 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +10003 * Derived from "arch/i386/kernel/process.c"
4 * Copyright (C) 1995 Linus Torvalds
5 *
6 * Updated and modified by Cort Dougan (cort@cs.nmt.edu) and
7 * Paul Mackerras (paulus@cs.anu.edu.au)
8 *
9 * PowerPC version
10 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100011 */
12
Paul Mackerras14cf11a2005-09-26 16:04:21 +100013#include <linux/errno.h>
14#include <linux/sched.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010015#include <linux/sched/debug.h>
Ingo Molnar29930022017-02-08 18:51:36 +010016#include <linux/sched/task.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010017#include <linux/sched/task_stack.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100018#include <linux/kernel.h>
19#include <linux/mm.h>
20#include <linux/smp.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100021#include <linux/stddef.h>
22#include <linux/unistd.h>
23#include <linux/ptrace.h>
24#include <linux/slab.h>
25#include <linux/user.h>
26#include <linux/elf.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100027#include <linux/prctl.h>
28#include <linux/init_task.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040029#include <linux/export.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100030#include <linux/kallsyms.h>
31#include <linux/mqueue.h>
32#include <linux/hardirq.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100033#include <linux/utsname.h>
Steven Rostedt6794c782009-02-09 21:10:27 -080034#include <linux/ftrace.h>
Martin Schwidefsky79741dd2008-12-31 15:11:38 +010035#include <linux/kernel_stat.h>
Anton Blanchardd8390882009-02-22 01:50:03 +000036#include <linux/personality.h>
37#include <linux/random.h>
K.Prasad5aae8a52010-06-15 11:35:19 +053038#include <linux/hw_breakpoint.h>
Anton Blanchard7b051f62014-10-13 20:27:15 +110039#include <linux/uaccess.h>
Daniel Axtens7f92bc52016-01-06 11:45:51 +110040#include <linux/elf-randomize.h>
Ram Pai06bb53b2018-01-18 17:50:31 -080041#include <linux/pkeys.h>
Christophe Leroyfb2d9502018-10-06 16:51:14 +000042#include <linux/seq_buf.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100043
Paul Mackerras14cf11a2005-09-26 16:04:21 +100044#include <asm/io.h>
45#include <asm/processor.h>
46#include <asm/mmu.h>
47#include <asm/prom.h>
Michael Ellerman76032de2005-11-07 13:12:03 +110048#include <asm/machdep.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110049#include <asm/time.h>
David Howellsae3a1972012-03-28 18:30:02 +010050#include <asm/runlatch.h>
Arnd Bergmanna7f31842006-03-23 00:00:08 +010051#include <asm/syscalls.h>
David Howellsae3a1972012-03-28 18:30:02 +010052#include <asm/switch_to.h>
Michael Neulingfb096922013-02-13 16:21:37 +000053#include <asm/tm.h>
David Howellsae3a1972012-03-28 18:30:02 +010054#include <asm/debug.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100055#ifdef CONFIG_PPC64
56#include <asm/firmware.h>
Madhavan Srinivasanc2e480b2017-12-20 09:25:42 +053057#include <asm/hw_irq.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100058#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +110059#include <asm/code-patching.h>
Daniel Axtens7f92bc52016-01-06 11:45:51 +110060#include <asm/exec.h>
Michael Ellerman5d31a962016-03-24 22:04:04 +110061#include <asm/livepatch.h>
Kevin Haob92a2262016-07-23 14:42:40 +053062#include <asm/cpu_has_feature.h>
Daniel Axtens0545d542016-09-06 15:32:43 +100063#include <asm/asm-prototypes.h>
Christophe Leroyc9386bf2018-10-09 16:46:25 +110064#include <asm/stacktrace.h>
Michael Neulingc1fe1902019-04-01 17:03:12 +110065#include <asm/hw_breakpoint.h>
Michael Ellerman5d31a962016-03-24 22:04:04 +110066
Luis Machadod6a61bf2008-07-24 02:10:41 +100067#include <linux/kprobes.h>
68#include <linux/kdebug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100069
Michael Neuling8b3c34c2013-02-13 16:21:32 +000070/* Transactional Memory debug */
71#ifdef TM_DEBUG_SW
72#define TM_DEBUG(x...) printk(KERN_INFO x)
73#else
74#define TM_DEBUG(x...) do { } while(0)
75#endif
76
Paul Mackerras14cf11a2005-09-26 16:04:21 +100077extern unsigned long _get_SP(void);
78
Paul Mackerrasd31626f2014-01-13 15:56:29 +110079#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Michael Ellerman54820532017-10-12 21:17:18 +110080/*
81 * Are we running in "Suspend disabled" mode? If so we have to block any
82 * sigreturn that would get us into suspended state, and we also warn in some
83 * other paths that we should never reach with suspend disabled.
84 */
85bool tm_suspend_disabled __ro_after_init = false;
86
Anton Blanchardb86fd2b2015-10-29 11:43:58 +110087static void check_if_tm_restore_required(struct task_struct *tsk)
Paul Mackerrasd31626f2014-01-13 15:56:29 +110088{
89 /*
90 * If we are saving the current thread's registers, and the
91 * thread is in a transactional state, set the TIF_RESTORE_TM
92 * bit so that we know to restore the registers before
93 * returning to userspace.
94 */
95 if (tsk == current && tsk->thread.regs &&
96 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
97 !test_thread_flag(TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +053098 tsk->thread.ckpt_regs.msr = tsk->thread.regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +110099 set_thread_flag(TIF_RESTORE_TM);
100 }
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100101}
Cyril Burdc16b552016-09-23 16:18:08 +1000102
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100103#else
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100104static inline void check_if_tm_restore_required(struct task_struct *tsk) { }
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100105#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
106
Anton Blanchard3eb5d582015-10-29 11:44:06 +1100107bool strict_msr_control;
108EXPORT_SYMBOL(strict_msr_control);
109
110static int __init enable_strict_msr_control(char *str)
111{
112 strict_msr_control = true;
113 pr_info("Enabling strict facility control\n");
114
115 return 0;
116}
117early_param("ppc_strict_facility_enable", enable_strict_msr_control);
118
Nicholas Piggine2b36d52019-05-02 15:21:07 +1000119/* notrace because it's called by restore_math */
120unsigned long notrace msr_check_and_set(unsigned long bits)
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100121{
122 unsigned long oldmsr = mfmsr();
123 unsigned long newmsr;
124
125 newmsr = oldmsr | bits;
126
127#ifdef CONFIG_VSX
128 if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
129 newmsr |= MSR_VSX;
130#endif
131
132 if (oldmsr != newmsr)
133 mtmsr_isync(newmsr);
Cyril Bur3cee0702016-09-23 16:18:10 +1000134
135 return newmsr;
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100136}
Simon Guod1c72112018-05-23 15:01:44 +0800137EXPORT_SYMBOL_GPL(msr_check_and_set);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100138
Nicholas Piggine2b36d52019-05-02 15:21:07 +1000139/* notrace because it's called by restore_math */
140void notrace __msr_check_and_clear(unsigned long bits)
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100141{
142 unsigned long oldmsr = mfmsr();
143 unsigned long newmsr;
144
145 newmsr = oldmsr & ~bits;
146
147#ifdef CONFIG_VSX
148 if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
149 newmsr &= ~MSR_VSX;
150#endif
151
152 if (oldmsr != newmsr)
153 mtmsr_isync(newmsr);
154}
Anton Blanchard3eb5d582015-10-29 11:44:06 +1100155EXPORT_SYMBOL(__msr_check_and_clear);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100156
Kevin Hao037f0ee2013-07-14 17:02:05 +0800157#ifdef CONFIG_PPC_FPU
Mathieu Malaterre1cdf0392018-02-25 18:22:23 +0100158static void __giveup_fpu(struct task_struct *tsk)
Cyril Bur87924682016-02-29 17:53:49 +1100159{
Anton Blanchard8eb98032016-05-29 22:03:50 +1000160 unsigned long msr;
161
Cyril Bur87924682016-02-29 17:53:49 +1100162 save_fpu(tsk);
Anton Blanchard8eb98032016-05-29 22:03:50 +1000163 msr = tsk->thread.regs->msr;
Mark Cave-Aylandfe1ef6b2019-02-08 14:33:19 +0000164 msr &= ~(MSR_FP|MSR_FE0|MSR_FE1);
Cyril Bur87924682016-02-29 17:53:49 +1100165#ifdef CONFIG_VSX
166 if (cpu_has_feature(CPU_FTR_VSX))
Anton Blanchard8eb98032016-05-29 22:03:50 +1000167 msr &= ~MSR_VSX;
Cyril Bur87924682016-02-29 17:53:49 +1100168#endif
Anton Blanchard8eb98032016-05-29 22:03:50 +1000169 tsk->thread.regs->msr = msr;
Cyril Bur87924682016-02-29 17:53:49 +1100170}
171
Anton Blanchard98da5812015-10-29 11:44:01 +1100172void giveup_fpu(struct task_struct *tsk)
173{
Anton Blanchard98da5812015-10-29 11:44:01 +1100174 check_if_tm_restore_required(tsk);
175
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100176 msr_check_and_set(MSR_FP);
Anton Blanchard98da5812015-10-29 11:44:01 +1100177 __giveup_fpu(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100178 msr_check_and_clear(MSR_FP);
Anton Blanchard98da5812015-10-29 11:44:01 +1100179}
180EXPORT_SYMBOL(giveup_fpu);
181
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000182/*
183 * Make sure the floating-point register state in the
184 * the thread_struct is up to date for task tsk.
185 */
186void flush_fp_to_thread(struct task_struct *tsk)
187{
188 if (tsk->thread.regs) {
189 /*
190 * We need to disable preemption here because if we didn't,
191 * another process could get scheduled after the regs->msr
192 * test but before we have finished saving the FP registers
193 * to the thread_struct. That process could take over the
194 * FPU, and then when we get scheduled again we would store
195 * bogus values for the remaining FP registers.
196 */
197 preempt_disable();
198 if (tsk->thread.regs->msr & MSR_FP) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000199 /*
200 * This should only ever be called for current or
201 * for a stopped child process. Since we save away
Anton Blanchardaf1bbc32015-10-29 11:43:57 +1100202 * the FP register state on context switch,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000203 * there is something wrong if a stopped child appears
204 * to still have its FP state in the CPU registers.
205 */
206 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100207 giveup_fpu(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000208 }
209 preempt_enable();
210 }
211}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000212EXPORT_SYMBOL_GPL(flush_fp_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000213
214void enable_kernel_fp(void)
215{
Cyril Bure909fb82016-09-23 16:18:11 +1000216 unsigned long cpumsr;
217
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000218 WARN_ON(preemptible());
219
Cyril Bure909fb82016-09-23 16:18:11 +1000220 cpumsr = msr_check_and_set(MSR_FP);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100221
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100222 if (current->thread.regs && (current->thread.regs->msr & MSR_FP)) {
223 check_if_tm_restore_required(current);
Cyril Bure909fb82016-09-23 16:18:11 +1000224 /*
225 * If a thread has already been reclaimed then the
226 * checkpointed registers are on the CPU but have definitely
227 * been saved by the reclaim code. Don't need to and *cannot*
228 * giveup as this would save to the 'live' structure not the
229 * checkpointed structure.
230 */
Breno Leitao5c784c82018-08-16 14:21:07 -0300231 if (!MSR_TM_ACTIVE(cpumsr) &&
232 MSR_TM_ACTIVE(current->thread.regs->msr))
Cyril Bure909fb82016-09-23 16:18:11 +1000233 return;
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100234 __giveup_fpu(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100235 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000236}
237EXPORT_SYMBOL(enable_kernel_fp);
Anton Blanchardd1e1cf22015-10-29 11:44:11 +1100238#endif /* CONFIG_PPC_FPU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000239
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000240#ifdef CONFIG_ALTIVEC
Cyril Bur6f515d82016-02-29 17:53:50 +1100241static void __giveup_altivec(struct task_struct *tsk)
242{
Anton Blanchard8eb98032016-05-29 22:03:50 +1000243 unsigned long msr;
244
Cyril Bur6f515d82016-02-29 17:53:50 +1100245 save_altivec(tsk);
Anton Blanchard8eb98032016-05-29 22:03:50 +1000246 msr = tsk->thread.regs->msr;
247 msr &= ~MSR_VEC;
Cyril Bur6f515d82016-02-29 17:53:50 +1100248#ifdef CONFIG_VSX
249 if (cpu_has_feature(CPU_FTR_VSX))
Anton Blanchard8eb98032016-05-29 22:03:50 +1000250 msr &= ~MSR_VSX;
Cyril Bur6f515d82016-02-29 17:53:50 +1100251#endif
Anton Blanchard8eb98032016-05-29 22:03:50 +1000252 tsk->thread.regs->msr = msr;
Cyril Bur6f515d82016-02-29 17:53:50 +1100253}
254
Anton Blanchard98da5812015-10-29 11:44:01 +1100255void giveup_altivec(struct task_struct *tsk)
256{
Anton Blanchard98da5812015-10-29 11:44:01 +1100257 check_if_tm_restore_required(tsk);
258
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100259 msr_check_and_set(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100260 __giveup_altivec(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100261 msr_check_and_clear(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100262}
263EXPORT_SYMBOL(giveup_altivec);
264
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000265void enable_kernel_altivec(void)
266{
Cyril Bure909fb82016-09-23 16:18:11 +1000267 unsigned long cpumsr;
268
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000269 WARN_ON(preemptible());
270
Cyril Bure909fb82016-09-23 16:18:11 +1000271 cpumsr = msr_check_and_set(MSR_VEC);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100272
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100273 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC)) {
274 check_if_tm_restore_required(current);
Cyril Bure909fb82016-09-23 16:18:11 +1000275 /*
276 * If a thread has already been reclaimed then the
277 * checkpointed registers are on the CPU but have definitely
278 * been saved by the reclaim code. Don't need to and *cannot*
279 * giveup as this would save to the 'live' structure not the
280 * checkpointed structure.
281 */
Breno Leitao5c784c82018-08-16 14:21:07 -0300282 if (!MSR_TM_ACTIVE(cpumsr) &&
283 MSR_TM_ACTIVE(current->thread.regs->msr))
Cyril Bure909fb82016-09-23 16:18:11 +1000284 return;
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100285 __giveup_altivec(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100286 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000287}
288EXPORT_SYMBOL(enable_kernel_altivec);
289
290/*
291 * Make sure the VMX/Altivec register state in the
292 * the thread_struct is up to date for task tsk.
293 */
294void flush_altivec_to_thread(struct task_struct *tsk)
295{
296 if (tsk->thread.regs) {
297 preempt_disable();
298 if (tsk->thread.regs->msr & MSR_VEC) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000299 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100300 giveup_altivec(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000301 }
302 preempt_enable();
303 }
304}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000305EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000306#endif /* CONFIG_ALTIVEC */
307
Michael Neulingce48b212008-06-25 14:07:18 +1000308#ifdef CONFIG_VSX
Cyril Burbf6a4d52016-02-29 17:53:51 +1100309static void __giveup_vsx(struct task_struct *tsk)
Anton Blancharda7d623d2015-10-29 11:44:02 +1100310{
Benjamin Herrenschmidtdc801082017-08-16 16:01:17 +1000311 unsigned long msr = tsk->thread.regs->msr;
312
313 /*
314 * We should never be ssetting MSR_VSX without also setting
315 * MSR_FP and MSR_VEC
316 */
317 WARN_ON((msr & MSR_VSX) && !((msr & MSR_FP) && (msr & MSR_VEC)));
318
319 /* __giveup_fpu will clear MSR_VSX */
320 if (msr & MSR_FP)
Anton Blancharda7d623d2015-10-29 11:44:02 +1100321 __giveup_fpu(tsk);
Benjamin Herrenschmidtdc801082017-08-16 16:01:17 +1000322 if (msr & MSR_VEC)
Anton Blancharda7d623d2015-10-29 11:44:02 +1100323 __giveup_altivec(tsk);
Cyril Burbf6a4d52016-02-29 17:53:51 +1100324}
325
326static void giveup_vsx(struct task_struct *tsk)
327{
328 check_if_tm_restore_required(tsk);
329
330 msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100331 __giveup_vsx(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100332 msr_check_and_clear(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100333}
Cyril Burbf6a4d52016-02-29 17:53:51 +1100334
Michael Neulingce48b212008-06-25 14:07:18 +1000335void enable_kernel_vsx(void)
336{
Cyril Bure909fb82016-09-23 16:18:11 +1000337 unsigned long cpumsr;
338
Michael Neulingce48b212008-06-25 14:07:18 +1000339 WARN_ON(preemptible());
340
Cyril Bure909fb82016-09-23 16:18:11 +1000341 cpumsr = msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100342
Benjamin Herrenschmidt5a69aec2017-08-16 16:01:14 +1000343 if (current->thread.regs &&
344 (current->thread.regs->msr & (MSR_VSX|MSR_VEC|MSR_FP))) {
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100345 check_if_tm_restore_required(current);
Cyril Bure909fb82016-09-23 16:18:11 +1000346 /*
347 * If a thread has already been reclaimed then the
348 * checkpointed registers are on the CPU but have definitely
349 * been saved by the reclaim code. Don't need to and *cannot*
350 * giveup as this would save to the 'live' structure not the
351 * checkpointed structure.
352 */
Breno Leitao5c784c82018-08-16 14:21:07 -0300353 if (!MSR_TM_ACTIVE(cpumsr) &&
354 MSR_TM_ACTIVE(current->thread.regs->msr))
Cyril Bure909fb82016-09-23 16:18:11 +1000355 return;
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100356 __giveup_vsx(current);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100357 }
Michael Neulingce48b212008-06-25 14:07:18 +1000358}
359EXPORT_SYMBOL(enable_kernel_vsx);
Michael Neulingce48b212008-06-25 14:07:18 +1000360
361void flush_vsx_to_thread(struct task_struct *tsk)
362{
363 if (tsk->thread.regs) {
364 preempt_disable();
Benjamin Herrenschmidt5a69aec2017-08-16 16:01:14 +1000365 if (tsk->thread.regs->msr & (MSR_VSX|MSR_VEC|MSR_FP)) {
Michael Neulingce48b212008-06-25 14:07:18 +1000366 BUG_ON(tsk != current);
Michael Neulingce48b212008-06-25 14:07:18 +1000367 giveup_vsx(tsk);
368 }
369 preempt_enable();
370 }
371}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000372EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
Michael Neulingce48b212008-06-25 14:07:18 +1000373#endif /* CONFIG_VSX */
374
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000375#ifdef CONFIG_SPE
Anton Blanchard98da5812015-10-29 11:44:01 +1100376void giveup_spe(struct task_struct *tsk)
377{
Anton Blanchard98da5812015-10-29 11:44:01 +1100378 check_if_tm_restore_required(tsk);
379
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100380 msr_check_and_set(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100381 __giveup_spe(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100382 msr_check_and_clear(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100383}
384EXPORT_SYMBOL(giveup_spe);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000385
386void enable_kernel_spe(void)
387{
388 WARN_ON(preemptible());
389
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100390 msr_check_and_set(MSR_SPE);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100391
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100392 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE)) {
393 check_if_tm_restore_required(current);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100394 __giveup_spe(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100395 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000396}
397EXPORT_SYMBOL(enable_kernel_spe);
398
399void flush_spe_to_thread(struct task_struct *tsk)
400{
401 if (tsk->thread.regs) {
402 preempt_disable();
403 if (tsk->thread.regs->msr & MSR_SPE) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000404 BUG_ON(tsk != current);
yu liu685659e2011-06-14 18:34:25 -0500405 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
Kumar Gala0ee6c152007-08-28 21:15:53 -0500406 giveup_spe(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000407 }
408 preempt_enable();
409 }
410}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000411#endif /* CONFIG_SPE */
412
Anton Blanchardc2085052015-10-29 11:44:08 +1100413static unsigned long msr_all_available;
414
415static int __init init_msr_all_available(void)
416{
417#ifdef CONFIG_PPC_FPU
418 msr_all_available |= MSR_FP;
419#endif
420#ifdef CONFIG_ALTIVEC
421 if (cpu_has_feature(CPU_FTR_ALTIVEC))
422 msr_all_available |= MSR_VEC;
423#endif
424#ifdef CONFIG_VSX
425 if (cpu_has_feature(CPU_FTR_VSX))
426 msr_all_available |= MSR_VSX;
427#endif
428#ifdef CONFIG_SPE
429 if (cpu_has_feature(CPU_FTR_SPE))
430 msr_all_available |= MSR_SPE;
431#endif
432
433 return 0;
434}
435early_initcall(init_msr_all_available);
436
437void giveup_all(struct task_struct *tsk)
438{
439 unsigned long usermsr;
440
441 if (!tsk->thread.regs)
442 return;
443
Gustavo Romero8205d5d2019-09-04 00:55:27 -0400444 check_if_tm_restore_required(tsk);
445
Anton Blanchardc2085052015-10-29 11:44:08 +1100446 usermsr = tsk->thread.regs->msr;
447
448 if ((usermsr & msr_all_available) == 0)
449 return;
450
451 msr_check_and_set(msr_all_available);
452
Benjamin Herrenschmidt96c79b62017-08-16 16:01:18 +1000453 WARN_ON((usermsr & MSR_VSX) && !((usermsr & MSR_FP) && (usermsr & MSR_VEC)));
454
Anton Blanchardc2085052015-10-29 11:44:08 +1100455#ifdef CONFIG_PPC_FPU
456 if (usermsr & MSR_FP)
457 __giveup_fpu(tsk);
458#endif
459#ifdef CONFIG_ALTIVEC
460 if (usermsr & MSR_VEC)
461 __giveup_altivec(tsk);
462#endif
Anton Blanchardc2085052015-10-29 11:44:08 +1100463#ifdef CONFIG_SPE
464 if (usermsr & MSR_SPE)
465 __giveup_spe(tsk);
466#endif
467
468 msr_check_and_clear(msr_all_available);
469}
470EXPORT_SYMBOL(giveup_all);
471
Nicholas Piggin6cc0c162020-02-26 03:35:37 +1000472#ifdef CONFIG_PPC_BOOK3S_64
473#ifdef CONFIG_PPC_FPU
474static int restore_fp(struct task_struct *tsk)
475{
476 if (tsk->thread.load_fp) {
477 load_fp_state(&current->thread.fp_state);
478 current->thread.load_fp++;
479 return 1;
480 }
481 return 0;
482}
483#else
484static int restore_fp(struct task_struct *tsk) { return 0; }
485#endif /* CONFIG_PPC_FPU */
486
487#ifdef CONFIG_ALTIVEC
488#define loadvec(thr) ((thr).load_vec)
489static int restore_altivec(struct task_struct *tsk)
490{
491 if (cpu_has_feature(CPU_FTR_ALTIVEC) && (tsk->thread.load_vec)) {
492 load_vr_state(&tsk->thread.vr_state);
493 tsk->thread.used_vr = 1;
494 tsk->thread.load_vec++;
495
496 return 1;
497 }
498 return 0;
499}
500#else
501#define loadvec(thr) 0
502static inline int restore_altivec(struct task_struct *tsk) { return 0; }
503#endif /* CONFIG_ALTIVEC */
504
505#ifdef CONFIG_VSX
506static int restore_vsx(struct task_struct *tsk)
507{
508 if (cpu_has_feature(CPU_FTR_VSX)) {
509 tsk->thread.used_vsr = 1;
510 return 1;
511 }
512
513 return 0;
514}
515#else
516static inline int restore_vsx(struct task_struct *tsk) { return 0; }
517#endif /* CONFIG_VSX */
518
Nicholas Piggine2b36d52019-05-02 15:21:07 +1000519/*
520 * The exception exit path calls restore_math() with interrupts hard disabled
521 * but the soft irq state not "reconciled". ftrace code that calls
522 * local_irq_save/restore causes warnings.
523 *
524 * Rather than complicate the exit path, just don't trace restore_math. This
525 * could be done by having ftrace entry code check for this un-reconciled
526 * condition where MSR[EE]=0 and PACA_IRQ_HARD_DIS is not set, and
527 * temporarily fix it up for the duration of the ftrace call.
528 */
529void notrace restore_math(struct pt_regs *regs)
Cyril Bur70fe3d92016-02-29 17:53:47 +1100530{
531 unsigned long msr;
532
Breno Leitao5c784c82018-08-16 14:21:07 -0300533 if (!MSR_TM_ACTIVE(regs->msr) &&
Cyril Burdc16b552016-09-23 16:18:08 +1000534 !current->thread.load_fp && !loadvec(current->thread))
Cyril Bur70fe3d92016-02-29 17:53:47 +1100535 return;
536
537 msr = regs->msr;
538 msr_check_and_set(msr_all_available);
539
540 /*
541 * Only reload if the bit is not set in the user MSR, the bit BEING set
542 * indicates that the registers are hot
543 */
544 if ((!(msr & MSR_FP)) && restore_fp(current))
545 msr |= MSR_FP | current->thread.fpexc_mode;
546
547 if ((!(msr & MSR_VEC)) && restore_altivec(current))
548 msr |= MSR_VEC;
549
550 if ((msr & (MSR_FP | MSR_VEC)) == (MSR_FP | MSR_VEC) &&
551 restore_vsx(current)) {
552 msr |= MSR_VSX;
553 }
554
555 msr_check_and_clear(msr_all_available);
556
557 regs->msr = msr;
558}
Nicholas Piggin6cc0c162020-02-26 03:35:37 +1000559#endif
Cyril Bur70fe3d92016-02-29 17:53:47 +1100560
Mathieu Malaterre1cdf0392018-02-25 18:22:23 +0100561static void save_all(struct task_struct *tsk)
Cyril Burde2a20a2016-02-29 17:53:48 +1100562{
563 unsigned long usermsr;
564
565 if (!tsk->thread.regs)
566 return;
567
568 usermsr = tsk->thread.regs->msr;
569
570 if ((usermsr & msr_all_available) == 0)
571 return;
572
573 msr_check_and_set(msr_all_available);
574
Benjamin Herrenschmidt96c79b62017-08-16 16:01:18 +1000575 WARN_ON((usermsr & MSR_VSX) && !((usermsr & MSR_FP) && (usermsr & MSR_VEC)));
Cyril Burde2a20a2016-02-29 17:53:48 +1100576
Benjamin Herrenschmidt96c79b62017-08-16 16:01:18 +1000577 if (usermsr & MSR_FP)
578 save_fpu(tsk);
579
580 if (usermsr & MSR_VEC)
581 save_altivec(tsk);
Cyril Burde2a20a2016-02-29 17:53:48 +1100582
583 if (usermsr & MSR_SPE)
584 __giveup_spe(tsk);
585
586 msr_check_and_clear(msr_all_available);
Ram Paic76662e2018-07-17 06:51:05 -0700587 thread_pkey_regs_save(&tsk->thread);
Cyril Burde2a20a2016-02-29 17:53:48 +1100588}
589
Anton Blanchard579e6332015-10-29 11:44:09 +1100590void flush_all_to_thread(struct task_struct *tsk)
591{
592 if (tsk->thread.regs) {
593 preempt_disable();
594 BUG_ON(tsk != current);
Anton Blanchard579e6332015-10-29 11:44:09 +1100595#ifdef CONFIG_SPE
596 if (tsk->thread.regs->msr & MSR_SPE)
597 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
598#endif
Felipe Rechiae9013782018-10-24 10:57:22 -0300599 save_all(tsk);
Anton Blanchard579e6332015-10-29 11:44:09 +1100600
601 preempt_enable();
602 }
603}
604EXPORT_SYMBOL(flush_all_to_thread);
605
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000606#ifdef CONFIG_PPC_ADV_DEBUG_REGS
607void do_send_trap(struct pt_regs *regs, unsigned long address,
Eric W. Biederman47355042018-01-16 16:12:38 -0600608 unsigned long error_code, int breakpt)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000609{
Eric W. Biederman47355042018-01-16 16:12:38 -0600610 current->thread.trap_nr = TRAP_HWBKPT;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000611 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
612 11, SIGSEGV) == NOTIFY_STOP)
613 return;
614
615 /* Deliver the signal to userspace */
Eric W. Biedermanf71dd7d2018-01-22 14:37:25 -0600616 force_sig_ptrace_errno_trap(breakpt, /* breakpoint or watchpoint id */
617 (void __user *)address);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000618}
619#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000620void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000621 unsigned long error_code)
622{
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000623 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000624 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
625 11, SIGSEGV) == NOTIFY_STOP)
626 return;
627
Michael Neuling9422de32012-12-20 14:06:44 +0000628 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000629 return;
630
Luis Machadod6a61bf2008-07-24 02:10:41 +1000631 /* Deliver the signal to userspace */
Eric W. Biederman2e1661d22019-05-23 11:04:24 -0500632 force_sig_fault(SIGTRAP, TRAP_HWBKPT, (void __user *)address);
Luis Machadod6a61bf2008-07-24 02:10:41 +1000633}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000634#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000635
Ravi Bangoria4a8a9372020-05-14 16:47:31 +0530636static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk[HBP_NUM_MAX]);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100637
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000638#ifdef CONFIG_PPC_ADV_DEBUG_REGS
639/*
640 * Set the debug registers back to their default "safe" values.
641 */
642static void set_debug_reg_defaults(struct thread_struct *thread)
643{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530644 thread->debug.iac1 = thread->debug.iac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000645#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530646 thread->debug.iac3 = thread->debug.iac4 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000647#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530648 thread->debug.dac1 = thread->debug.dac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000649#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530650 thread->debug.dvc1 = thread->debug.dvc2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000651#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530652 thread->debug.dbcr0 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000653#ifdef CONFIG_BOOKE
654 /*
655 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
656 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530657 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000658 DBCR1_IAC3US | DBCR1_IAC4US;
659 /*
660 * Force Data Address Compare User/Supervisor bits to be User-only
661 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
662 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530663 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000664#else
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530665 thread->debug.dbcr1 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000666#endif
667}
668
Scott Woodf5f97212013-11-22 15:52:29 -0600669static void prime_debug_regs(struct debug_reg *debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000670{
Scott Wood6cecf762013-05-13 14:14:53 +0000671 /*
672 * We could have inherited MSR_DE from userspace, since
673 * it doesn't get cleared on exception entry. Make sure
674 * MSR_DE is clear before we enable any debug events.
675 */
676 mtmsr(mfmsr() & ~MSR_DE);
677
Scott Woodf5f97212013-11-22 15:52:29 -0600678 mtspr(SPRN_IAC1, debug->iac1);
679 mtspr(SPRN_IAC2, debug->iac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000680#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Scott Woodf5f97212013-11-22 15:52:29 -0600681 mtspr(SPRN_IAC3, debug->iac3);
682 mtspr(SPRN_IAC4, debug->iac4);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000683#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600684 mtspr(SPRN_DAC1, debug->dac1);
685 mtspr(SPRN_DAC2, debug->dac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000686#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Scott Woodf5f97212013-11-22 15:52:29 -0600687 mtspr(SPRN_DVC1, debug->dvc1);
688 mtspr(SPRN_DVC2, debug->dvc2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000689#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600690 mtspr(SPRN_DBCR0, debug->dbcr0);
691 mtspr(SPRN_DBCR1, debug->dbcr1);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000692#ifdef CONFIG_BOOKE
Scott Woodf5f97212013-11-22 15:52:29 -0600693 mtspr(SPRN_DBCR2, debug->dbcr2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000694#endif
695}
696/*
697 * Unless neither the old or new thread are making use of the
698 * debug registers, set the debug registers from the values
699 * stored in the new thread.
700 */
Scott Woodf5f97212013-11-22 15:52:29 -0600701void switch_booke_debug_regs(struct debug_reg *new_debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000702{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530703 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
Scott Woodf5f97212013-11-22 15:52:29 -0600704 || (new_debug->dbcr0 & DBCR0_IDM))
705 prime_debug_regs(new_debug);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000706}
Bharat Bhushan3743c9b2013-07-04 12:27:44 +0530707EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000708#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000709#ifndef CONFIG_HAVE_HW_BREAKPOINT
Ravi Bangoria303e6a92020-05-14 16:47:34 +0530710static void set_breakpoint(int i, struct arch_hw_breakpoint *brk)
Christophe Leroyb5ac51d2018-07-05 16:25:05 +0000711{
712 preempt_disable();
Ravi Bangoria303e6a92020-05-14 16:47:34 +0530713 __set_breakpoint(i, brk);
Christophe Leroyb5ac51d2018-07-05 16:25:05 +0000714 preempt_enable();
715}
716
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000717static void set_debug_reg_defaults(struct thread_struct *thread)
718{
Ravi Bangoria303e6a92020-05-14 16:47:34 +0530719 int i;
720 struct arch_hw_breakpoint null_brk = {0};
721
722 for (i = 0; i < nr_wp_slots(); i++) {
723 thread->hw_brk[i] = null_brk;
724 if (ppc_breakpoint_available())
725 set_breakpoint(i, &thread->hw_brk[i]);
726 }
727}
728
729static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
730 struct arch_hw_breakpoint *b)
731{
732 if (a->address != b->address)
733 return false;
734 if (a->type != b->type)
735 return false;
736 if (a->len != b->len)
737 return false;
738 /* no need to check hw_len. it's calculated from address and len */
739 return true;
740}
741
742static void switch_hw_breakpoint(struct task_struct *new)
743{
744 int i;
745
746 for (i = 0; i < nr_wp_slots(); i++) {
747 if (likely(hw_brk_match(this_cpu_ptr(&current_brk[i]),
748 &new->thread.hw_brk[i])))
749 continue;
750
751 __set_breakpoint(i, &new->thread.hw_brk[i]);
752 }
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000753}
K.Prasade0780b72011-02-10 04:44:35 +0000754#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000755#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
756
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000757#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000758static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
759{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000760 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000761#ifdef CONFIG_PPC_47x
762 isync();
763#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000764 return 0;
765}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000766#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000767static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
768{
Michael Ellermancab0af92005-11-03 15:30:49 +1100769 mtspr(SPRN_DABR, dabr);
Michael Neuling82a9f162013-05-16 20:27:31 +0000770 if (cpu_has_feature(CPU_FTR_DABRX))
771 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100772 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000773}
Michael Neuling9422de32012-12-20 14:06:44 +0000774#else
775static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
776{
777 return -EINVAL;
778}
779#endif
780
781static inline int set_dabr(struct arch_hw_breakpoint *brk)
782{
783 unsigned long dabr, dabrx;
784
785 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
786 dabrx = ((brk->type >> 3) & 0x7);
787
788 if (ppc_md.set_dabr)
789 return ppc_md.set_dabr(dabr, dabrx);
790
791 return __set_dabr(dabr, dabrx);
792}
793
Christophe Leroy39413ae2019-11-26 17:43:29 +0000794static inline int set_breakpoint_8xx(struct arch_hw_breakpoint *brk)
795{
796 unsigned long lctrl1 = LCTRL1_CTE_GT | LCTRL1_CTF_LT | LCTRL1_CRWE_RW |
797 LCTRL1_CRWF_RW;
798 unsigned long lctrl2 = LCTRL2_LW0EN | LCTRL2_LW0LADC | LCTRL2_SLW0EN;
Ravi Bangoriae68ef122020-05-14 16:47:37 +0530799 unsigned long start_addr = ALIGN_DOWN(brk->address, HW_BREAKPOINT_SIZE);
800 unsigned long end_addr = ALIGN(brk->address + brk->len, HW_BREAKPOINT_SIZE);
Christophe Leroy39413ae2019-11-26 17:43:29 +0000801
802 if (start_addr == 0)
803 lctrl2 |= LCTRL2_LW0LA_F;
Ravi Bangoriae68ef122020-05-14 16:47:37 +0530804 else if (end_addr == 0)
Christophe Leroy39413ae2019-11-26 17:43:29 +0000805 lctrl2 |= LCTRL2_LW0LA_E;
806 else
807 lctrl2 |= LCTRL2_LW0LA_EandF;
808
809 mtspr(SPRN_LCTRL2, 0);
810
811 if ((brk->type & HW_BRK_TYPE_RDWR) == 0)
812 return 0;
813
814 if ((brk->type & HW_BRK_TYPE_RDWR) == HW_BRK_TYPE_READ)
815 lctrl1 |= LCTRL1_CRWE_RO | LCTRL1_CRWF_RO;
816 if ((brk->type & HW_BRK_TYPE_RDWR) == HW_BRK_TYPE_WRITE)
817 lctrl1 |= LCTRL1_CRWE_WO | LCTRL1_CRWF_WO;
818
819 mtspr(SPRN_CMPE, start_addr - 1);
Ravi Bangoriae68ef122020-05-14 16:47:37 +0530820 mtspr(SPRN_CMPF, end_addr);
Christophe Leroy39413ae2019-11-26 17:43:29 +0000821 mtspr(SPRN_LCTRL1, lctrl1);
822 mtspr(SPRN_LCTRL2, lctrl2);
823
824 return 0;
825}
826
Ravi Bangoria4a8a9372020-05-14 16:47:31 +0530827void __set_breakpoint(int nr, struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000828{
Ravi Bangoria4a8a9372020-05-14 16:47:31 +0530829 memcpy(this_cpu_ptr(&current_brk[nr]), brk, sizeof(*brk));
Michael Neuling9422de32012-12-20 14:06:44 +0000830
Michael Neulingc1fe1902019-04-01 17:03:12 +1100831 if (dawr_enabled())
Nicholas Piggin252988c2018-04-01 15:50:36 +1000832 // Power8 or later
Ravi Bangoria4a8a9372020-05-14 16:47:31 +0530833 set_dawr(nr, brk);
Christophe Leroy39413ae2019-11-26 17:43:29 +0000834 else if (IS_ENABLED(CONFIG_PPC_8xx))
835 set_breakpoint_8xx(brk);
Nicholas Piggin252988c2018-04-01 15:50:36 +1000836 else if (!cpu_has_feature(CPU_FTR_ARCH_207S))
837 // Power7 or earlier
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400838 set_dabr(brk);
Nicholas Piggin252988c2018-04-01 15:50:36 +1000839 else
840 // Shouldn't happen due to higher level checks
841 WARN_ON_ONCE(1);
Michael Neuling9422de32012-12-20 14:06:44 +0000842}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000843
Michael Neuling404b27d2018-03-27 15:37:17 +1100844/* Check if we have DAWR or DABR hardware */
845bool ppc_breakpoint_available(void)
846{
Michael Neulingc1fe1902019-04-01 17:03:12 +1100847 if (dawr_enabled())
848 return true; /* POWER8 DAWR or POWER9 forced DAWR */
Michael Neuling404b27d2018-03-27 15:37:17 +1100849 if (cpu_has_feature(CPU_FTR_ARCH_207S))
850 return false; /* POWER9 with DAWR disabled */
851 /* DABR: Everything but POWER8 and POWER9 */
852 return true;
853}
854EXPORT_SYMBOL_GPL(ppc_breakpoint_available);
855
Michael Neulingfb096922013-02-13 16:21:37 +0000856#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Cyril Bur5d176f72016-09-14 18:02:16 +1000857
858static inline bool tm_enabled(struct task_struct *tsk)
859{
860 return tsk && tsk->thread.regs && (tsk->thread.regs->msr & MSR_TM);
861}
862
Cyril Buredd00b82018-02-01 12:07:46 +1100863static void tm_reclaim_thread(struct thread_struct *thr, uint8_t cause)
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100864{
Michael Neuling7f821fc2015-11-19 15:44:45 +1100865 /*
866 * Use the current MSR TM suspended bit to track if we have
867 * checkpointed state outstanding.
868 * On signal delivery, we'd normally reclaim the checkpointed
869 * state to obtain stack pointer (see:get_tm_stackpointer()).
870 * This will then directly return to userspace without going
871 * through __switch_to(). However, if the stack frame is bad,
872 * we need to exit this thread which calls __switch_to() which
873 * will again attempt to reclaim the already saved tm state.
874 * Hence we need to check that we've not already reclaimed
875 * this state.
876 * We do this using the current MSR, rather tracking it in
877 * some specific thread_struct bit, as it has the additional
Michael Ellerman027dfac2016-06-01 16:34:37 +1000878 * benefit of checking for a potential TM bad thing exception.
Michael Neuling7f821fc2015-11-19 15:44:45 +1100879 */
880 if (!MSR_TM_SUSPENDED(mfmsr()))
881 return;
882
Cyril Bur91381b92017-11-02 14:09:04 +1100883 giveup_all(container_of(thr, struct task_struct, thread));
884
Cyril Bureb5c3f12017-11-02 14:09:05 +1100885 tm_reclaim(thr, cause);
886
Michael Neulingf48e91e2017-05-08 17:16:26 +1000887 /*
888 * If we are in a transaction and FP is off then we can't have
889 * used FP inside that transaction. Hence the checkpointed
890 * state is the same as the live state. We need to copy the
891 * live state to the checkpointed state so that when the
892 * transaction is restored, the checkpointed state is correct
893 * and the aborted transaction sees the correct state. We use
894 * ckpt_regs.msr here as that's what tm_reclaim will use to
895 * determine if it's going to write the checkpointed state or
896 * not. So either this will write the checkpointed registers,
897 * or reclaim will. Similarly for VMX.
898 */
899 if ((thr->ckpt_regs.msr & MSR_FP) == 0)
900 memcpy(&thr->ckfp_state, &thr->fp_state,
901 sizeof(struct thread_fp_state));
902 if ((thr->ckpt_regs.msr & MSR_VEC) == 0)
903 memcpy(&thr->ckvr_state, &thr->vr_state,
904 sizeof(struct thread_vr_state));
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100905}
906
907void tm_reclaim_current(uint8_t cause)
908{
909 tm_enable();
Cyril Buredd00b82018-02-01 12:07:46 +1100910 tm_reclaim_thread(&current->thread, cause);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100911}
912
Michael Neulingfb096922013-02-13 16:21:37 +0000913static inline void tm_reclaim_task(struct task_struct *tsk)
914{
915 /* We have to work out if we're switching from/to a task that's in the
916 * middle of a transaction.
917 *
918 * In switching we need to maintain a 2nd register state as
919 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
Cyril Bur000ec282016-09-23 16:18:25 +1000920 * checkpointed (tbegin) state in ckpt_regs, ckfp_state and
921 * ckvr_state
Michael Neulingfb096922013-02-13 16:21:37 +0000922 *
923 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
924 */
925 struct thread_struct *thr = &tsk->thread;
926
927 if (!thr->regs)
928 return;
929
930 if (!MSR_TM_ACTIVE(thr->regs->msr))
931 goto out_and_saveregs;
932
Michael Neuling92fb8692017-10-12 21:17:19 +1100933 WARN_ON(tm_suspend_disabled);
934
Michael Neulingfb096922013-02-13 16:21:37 +0000935 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
936 "ccr=%lx, msr=%lx, trap=%lx)\n",
937 tsk->pid, thr->regs->nip,
938 thr->regs->ccr, thr->regs->msr,
939 thr->regs->trap);
940
Cyril Buredd00b82018-02-01 12:07:46 +1100941 tm_reclaim_thread(thr, TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000942
943 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
944 tsk->pid);
945
946out_and_saveregs:
947 /* Always save the regs here, even if a transaction's not active.
948 * This context-switches a thread's TM info SPRs. We do it here to
949 * be consistent with the restore path (in recheckpoint) which
950 * cannot happen later in _switch().
951 */
952 tm_save_sprs(thr);
953}
954
Cyril Bureb5c3f12017-11-02 14:09:05 +1100955extern void __tm_recheckpoint(struct thread_struct *thread);
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100956
Cyril Bureb5c3f12017-11-02 14:09:05 +1100957void tm_recheckpoint(struct thread_struct *thread)
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100958{
959 unsigned long flags;
960
Cyril Bur5d176f72016-09-14 18:02:16 +1000961 if (!(thread->regs->msr & MSR_TM))
962 return;
963
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100964 /* We really can't be interrupted here as the TEXASR registers can't
965 * change and later in the trecheckpoint code, we have a userspace R1.
966 * So let's hard disable over this region.
967 */
968 local_irq_save(flags);
969 hard_irq_disable();
970
971 /* The TM SPRs are restored here, so that TEXASR.FS can be set
972 * before the trecheckpoint and no explosion occurs.
973 */
974 tm_restore_sprs(thread);
975
Cyril Bureb5c3f12017-11-02 14:09:05 +1100976 __tm_recheckpoint(thread);
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100977
978 local_irq_restore(flags);
979}
980
Michael Neulingbc2a9402013-02-13 16:21:40 +0000981static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000982{
Michael Neulingfb096922013-02-13 16:21:37 +0000983 if (!cpu_has_feature(CPU_FTR_TM))
984 return;
985
986 /* Recheckpoint the registers of the thread we're about to switch to.
987 *
988 * If the task was using FP, we non-lazily reload both the original and
989 * the speculative FP register states. This is because the kernel
990 * doesn't see if/when a TM rollback occurs, so if we take an FP
Cyril Burdc310662016-09-23 16:18:24 +1000991 * unavailable later, we are unable to determine which set of FP regs
Michael Neulingfb096922013-02-13 16:21:37 +0000992 * need to be restored.
993 */
Cyril Bur5d176f72016-09-14 18:02:16 +1000994 if (!tm_enabled(new))
Michael Neulingfb096922013-02-13 16:21:37 +0000995 return;
996
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100997 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
998 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000999 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +11001000 }
Michael Neulingfb096922013-02-13 16:21:37 +00001001 /* Recheckpoint to restore original checkpointed register state. */
Cyril Bureb5c3f12017-11-02 14:09:05 +11001002 TM_DEBUG("*** tm_recheckpoint of pid %d (new->msr 0x%lx)\n",
1003 new->pid, new->thread.regs->msr);
Michael Neulingfb096922013-02-13 16:21:37 +00001004
Cyril Bureb5c3f12017-11-02 14:09:05 +11001005 tm_recheckpoint(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +00001006
Cyril Burdc310662016-09-23 16:18:24 +10001007 /*
1008 * The checkpointed state has been restored but the live state has
1009 * not, ensure all the math functionality is turned off to trigger
1010 * restore_math() to reload.
1011 */
1012 new->thread.regs->msr &= ~(MSR_FP | MSR_VEC | MSR_VSX);
Michael Neulingfb096922013-02-13 16:21:37 +00001013
1014 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
1015 "(kernel msr 0x%lx)\n",
1016 new->pid, mfmsr());
1017}
1018
Cyril Burdc310662016-09-23 16:18:24 +10001019static inline void __switch_to_tm(struct task_struct *prev,
1020 struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +00001021{
1022 if (cpu_has_feature(CPU_FTR_TM)) {
Cyril Bur5d176f72016-09-14 18:02:16 +10001023 if (tm_enabled(prev) || tm_enabled(new))
1024 tm_enable();
1025
1026 if (tm_enabled(prev)) {
1027 prev->thread.load_tm++;
1028 tm_reclaim_task(prev);
1029 if (!MSR_TM_ACTIVE(prev->thread.regs->msr) && prev->thread.load_tm == 0)
1030 prev->thread.regs->msr &= ~MSR_TM;
1031 }
1032
Cyril Burdc310662016-09-23 16:18:24 +10001033 tm_recheckpoint_new_task(new);
Michael Neulingfb096922013-02-13 16:21:37 +00001034 }
1035}
Paul Mackerrasd31626f2014-01-13 15:56:29 +11001036
1037/*
1038 * This is called if we are on the way out to userspace and the
1039 * TIF_RESTORE_TM flag is set. It checks if we need to reload
1040 * FP and/or vector state and does so if necessary.
1041 * If userspace is inside a transaction (whether active or
1042 * suspended) and FP/VMX/VSX instructions have ever been enabled
1043 * inside that transaction, then we have to keep them enabled
1044 * and keep the FP/VMX/VSX state loaded while ever the transaction
1045 * continues. The reason is that if we didn't, and subsequently
1046 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
1047 * we don't know whether it's the same transaction, and thus we
1048 * don't know which of the checkpointed state and the transactional
1049 * state to use.
1050 */
1051void restore_tm_state(struct pt_regs *regs)
1052{
1053 unsigned long msr_diff;
1054
Cyril Burdc310662016-09-23 16:18:24 +10001055 /*
1056 * This is the only moment we should clear TIF_RESTORE_TM as
1057 * it is here that ckpt_regs.msr and pt_regs.msr become the same
1058 * again, anything else could lead to an incorrect ckpt_msr being
1059 * saved and therefore incorrect signal contexts.
1060 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +11001061 clear_thread_flag(TIF_RESTORE_TM);
1062 if (!MSR_TM_ACTIVE(regs->msr))
1063 return;
1064
Anshuman Khandual829023d2015-07-06 16:24:10 +05301065 msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +11001066 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
Cyril Bur70fe3d92016-02-29 17:53:47 +11001067
Cyril Burdc16b552016-09-23 16:18:08 +10001068 /* Ensure that restore_math() will restore */
1069 if (msr_diff & MSR_FP)
1070 current->thread.load_fp = 1;
Valentin Rothberg39715bf2016-10-05 07:57:26 +02001071#ifdef CONFIG_ALTIVEC
Cyril Burdc16b552016-09-23 16:18:08 +10001072 if (cpu_has_feature(CPU_FTR_ALTIVEC) && msr_diff & MSR_VEC)
1073 current->thread.load_vec = 1;
1074#endif
Cyril Bur70fe3d92016-02-29 17:53:47 +11001075 restore_math(regs);
1076
Paul Mackerrasd31626f2014-01-13 15:56:29 +11001077 regs->msr |= msr_diff;
1078}
1079
Michael Neulingfb096922013-02-13 16:21:37 +00001080#else
1081#define tm_recheckpoint_new_task(new)
Cyril Burdc310662016-09-23 16:18:24 +10001082#define __switch_to_tm(prev, new)
Michael Neulingfb096922013-02-13 16:21:37 +00001083#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +00001084
Anton Blanchard152d5232015-10-29 11:43:55 +11001085static inline void save_sprs(struct thread_struct *t)
1086{
1087#ifdef CONFIG_ALTIVEC
Oliver O'Halloran01d7c2a22016-03-08 09:08:47 +11001088 if (cpu_has_feature(CPU_FTR_ALTIVEC))
Anton Blanchard152d5232015-10-29 11:43:55 +11001089 t->vrsave = mfspr(SPRN_VRSAVE);
1090#endif
1091#ifdef CONFIG_PPC_BOOK3S_64
1092 if (cpu_has_feature(CPU_FTR_DSCR))
1093 t->dscr = mfspr(SPRN_DSCR);
1094
1095 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
1096 t->bescr = mfspr(SPRN_BESCR);
1097 t->ebbhr = mfspr(SPRN_EBBHR);
1098 t->ebbrr = mfspr(SPRN_EBBRR);
1099
1100 t->fscr = mfspr(SPRN_FSCR);
1101
1102 /*
1103 * Note that the TAR is not available for use in the kernel.
1104 * (To provide this, the TAR should be backed up/restored on
1105 * exception entry/exit instead, and be in pt_regs. FIXME,
1106 * this should be in pt_regs anyway (for debug).)
1107 */
1108 t->tar = mfspr(SPRN_TAR);
1109 }
1110#endif
Ram Pai06bb53b2018-01-18 17:50:31 -08001111
1112 thread_pkey_regs_save(t);
Anton Blanchard152d5232015-10-29 11:43:55 +11001113}
1114
1115static inline void restore_sprs(struct thread_struct *old_thread,
1116 struct thread_struct *new_thread)
1117{
1118#ifdef CONFIG_ALTIVEC
1119 if (cpu_has_feature(CPU_FTR_ALTIVEC) &&
1120 old_thread->vrsave != new_thread->vrsave)
1121 mtspr(SPRN_VRSAVE, new_thread->vrsave);
1122#endif
1123#ifdef CONFIG_PPC_BOOK3S_64
1124 if (cpu_has_feature(CPU_FTR_DSCR)) {
1125 u64 dscr = get_paca()->dscr_default;
Michael Neulingb57bd2d2016-06-09 12:31:08 +10001126 if (new_thread->dscr_inherit)
Anton Blanchard152d5232015-10-29 11:43:55 +11001127 dscr = new_thread->dscr;
Anton Blanchard152d5232015-10-29 11:43:55 +11001128
1129 if (old_thread->dscr != dscr)
1130 mtspr(SPRN_DSCR, dscr);
Anton Blanchard152d5232015-10-29 11:43:55 +11001131 }
1132
1133 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
1134 if (old_thread->bescr != new_thread->bescr)
1135 mtspr(SPRN_BESCR, new_thread->bescr);
1136 if (old_thread->ebbhr != new_thread->ebbhr)
1137 mtspr(SPRN_EBBHR, new_thread->ebbhr);
1138 if (old_thread->ebbrr != new_thread->ebbrr)
1139 mtspr(SPRN_EBBRR, new_thread->ebbrr);
1140
Michael Neulingb57bd2d2016-06-09 12:31:08 +10001141 if (old_thread->fscr != new_thread->fscr)
1142 mtspr(SPRN_FSCR, new_thread->fscr);
1143
Anton Blanchard152d5232015-10-29 11:43:55 +11001144 if (old_thread->tar != new_thread->tar)
1145 mtspr(SPRN_TAR, new_thread->tar);
1146 }
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001147
Alastair D'Silva3449f192018-05-11 16:12:58 +10001148 if (cpu_has_feature(CPU_FTR_P9_TIDR) &&
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001149 old_thread->tidr != new_thread->tidr)
1150 mtspr(SPRN_TIDR, new_thread->tidr);
Anton Blanchard152d5232015-10-29 11:43:55 +11001151#endif
Ram Pai06bb53b2018-01-18 17:50:31 -08001152
1153 thread_pkey_regs_restore(new_thread, old_thread);
Anton Blanchard152d5232015-10-29 11:43:55 +11001154}
1155
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001156struct task_struct *__switch_to(struct task_struct *prev,
1157 struct task_struct *new)
1158{
1159 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001160 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001161#ifdef CONFIG_PPC_BOOK3S_64
1162 struct ppc64_tlb_batch *batch;
1163#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001164
Anton Blanchard152d5232015-10-29 11:43:55 +11001165 new_thread = &new->thread;
1166 old_thread = &current->thread;
1167
Michael Neuling7ba5fef2013-10-02 17:15:14 +10001168 WARN_ON(!irqs_disabled());
1169
Michael Ellerman4e003742017-10-19 15:08:43 +11001170#ifdef CONFIG_PPC_BOOK3S_64
Christoph Lameter69111ba2014-10-21 15:23:25 -05001171 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001172 if (batch->active) {
1173 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
1174 if (batch->index)
1175 __flush_tlb_pending(batch);
1176 batch->active = 0;
1177 }
Michael Ellerman4e003742017-10-19 15:08:43 +11001178#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001179
Anton Blanchardf3d885c2015-10-29 11:44:10 +11001180#ifdef CONFIG_PPC_ADV_DEBUG_REGS
1181 switch_booke_debug_regs(&new->thread.debug);
1182#else
1183/*
1184 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
1185 * schedule DABR
1186 */
1187#ifndef CONFIG_HAVE_HW_BREAKPOINT
Ravi Bangoria303e6a92020-05-14 16:47:34 +05301188 switch_hw_breakpoint(new);
Anton Blanchardf3d885c2015-10-29 11:44:10 +11001189#endif /* CONFIG_HAVE_HW_BREAKPOINT */
1190#endif
1191
1192 /*
1193 * We need to save SPRs before treclaim/trecheckpoint as these will
1194 * change a number of them.
1195 */
1196 save_sprs(&prev->thread);
1197
Anton Blanchardf3d885c2015-10-29 11:44:10 +11001198 /* Save FPU, Altivec, VSX and SPE state */
1199 giveup_all(prev);
1200
Cyril Burdc310662016-09-23 16:18:24 +10001201 __switch_to_tm(prev, new);
1202
Nicholas Piggine4c0fc52017-06-09 01:36:06 +10001203 if (!radix_enabled()) {
1204 /*
1205 * We can't take a PMU exception inside _switch() since there
1206 * is a window where the kernel stack SLB and the kernel stack
1207 * are out of sync. Hard disable here.
1208 */
1209 hard_irq_disable();
1210 }
Michael Neulingbc2a9402013-02-13 16:21:40 +00001211
Anton Blanchard20dbe672015-12-10 20:44:39 +11001212 /*
1213 * Call restore_sprs() before calling _switch(). If we move it after
1214 * _switch() then we miss out on calling it for new tasks. The reason
1215 * for this is we manually create a stack frame for new tasks that
1216 * directly returns through ret_from_fork() or
1217 * ret_from_kernel_thread(). See copy_thread() for details.
1218 */
Anton Blanchardf3d885c2015-10-29 11:44:10 +11001219 restore_sprs(old_thread, new_thread);
1220
Anton Blanchard20dbe672015-12-10 20:44:39 +11001221 last = _switch(old_thread, new_thread);
1222
Michael Ellerman4e003742017-10-19 15:08:43 +11001223#ifdef CONFIG_PPC_BOOK3S_64
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001224 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
1225 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
Christoph Lameter69111ba2014-10-21 15:23:25 -05001226 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001227 batch->active = 1;
1228 }
Cyril Bur70fe3d92016-02-29 17:53:47 +11001229
Christophe Leroy05b98792019-01-17 23:25:12 +11001230 if (current->thread.regs) {
1231 restore_math(current->thread.regs);
Nicholas Piggin07d2a622017-06-09 01:36:09 +10001232
1233 /*
1234 * The copy-paste buffer can only store into foreign real
1235 * addresses, so unprivileged processes can not see the
1236 * data or use it in any way unless they have foreign real
Sukadev Bhattiprolu9d2a4d72017-11-07 18:23:54 -08001237 * mappings. If the new process has the foreign real address
1238 * mappings, we must issue a cp_abort to clear any state and
1239 * prevent snooping, corruption or a covert channel.
Nicholas Piggin07d2a622017-06-09 01:36:09 +10001240 */
Haren Mynenic4206442020-04-15 23:08:11 -07001241 if (current->mm &&
1242 atomic_read(&current->mm->context.vas_windows))
Sukadev Bhattiprolu9d2a4d72017-11-07 18:23:54 -08001243 asm volatile(PPC_CP_ABORT);
Nicholas Piggin07d2a622017-06-09 01:36:09 +10001244 }
Michael Ellerman4e003742017-10-19 15:08:43 +11001245#endif /* CONFIG_PPC_BOOK3S_64 */
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001246
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001247 return last;
1248}
1249
Christophe Leroydf131022018-10-06 16:51:16 +00001250#define NR_INSN_TO_PRINT 16
Paul Mackerras06d67d52005-10-10 22:29:05 +10001251
Paul Mackerras06d67d52005-10-10 22:29:05 +10001252static void show_instructions(struct pt_regs *regs)
1253{
1254 int i;
Aneesh Kumar K.Va6e2c222020-05-24 15:08:19 +05301255 unsigned long nip = regs->nip;
Christophe Leroydf131022018-10-06 16:51:16 +00001256 unsigned long pc = regs->nip - (NR_INSN_TO_PRINT * 3 / 4 * sizeof(int));
Paul Mackerras06d67d52005-10-10 22:29:05 +10001257
1258 printk("Instruction dump:");
1259
Aneesh Kumar K.Va6e2c222020-05-24 15:08:19 +05301260 /*
1261 * If we were executing with the MMU off for instructions, adjust pc
1262 * rather than printing XXXXXXXX.
1263 */
1264 if (!IS_ENABLED(CONFIG_BOOKE) && !(regs->msr & MSR_IR)) {
1265 pc = (unsigned long)phys_to_virt(pc);
1266 nip = (unsigned long)phys_to_virt(regs->nip);
1267 }
1268
Christophe Leroydf131022018-10-06 16:51:16 +00001269 for (i = 0; i < NR_INSN_TO_PRINT; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001270 int instr;
1271
1272 if (!(i % 8))
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001273 pr_cont("\n");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001274
Anton Blanchard00ae36d2006-10-13 12:17:16 +10001275 if (!__kernel_text_address(pc) ||
Christoph Hellwig25f12ae2020-06-17 09:37:55 +02001276 get_kernel_nofault(instr, (const void *)pc)) {
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001277 pr_cont("XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001278 } else {
Aneesh Kumar K.Va6e2c222020-05-24 15:08:19 +05301279 if (nip == pc)
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001280 pr_cont("<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001281 else
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001282 pr_cont("%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001283 }
1284
1285 pc += sizeof(int);
1286 }
1287
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001288 pr_cont("\n");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001289}
1290
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001291void show_user_instructions(struct pt_regs *regs)
1292{
1293 unsigned long pc;
Christophe Leroydf131022018-10-06 16:51:16 +00001294 int n = NR_INSN_TO_PRINT;
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001295 struct seq_buf s;
1296 char buf[96]; /* enough for 8 times 9 + 2 chars */
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001297
Christophe Leroydf131022018-10-06 16:51:16 +00001298 pc = regs->nip - (NR_INSN_TO_PRINT * 3 / 4 * sizeof(int));
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001299
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001300 seq_buf_init(&s, buf, sizeof(buf));
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001301
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001302 while (n) {
1303 int i;
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001304
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001305 seq_buf_clear(&s);
1306
1307 for (i = 0; i < 8 && n; i++, n--, pc += sizeof(int)) {
1308 int instr;
1309
Christoph Hellwigc0ee37e2020-06-17 09:37:54 +02001310 if (copy_from_user_nofault(&instr, (void __user *)pc,
1311 sizeof(instr))) {
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001312 seq_buf_printf(&s, "XXXXXXXX ");
1313 continue;
1314 }
1315 seq_buf_printf(&s, regs->nip == pc ? "<%08x> " : "%08x ", instr);
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001316 }
1317
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001318 if (!seq_buf_has_overflowed(&s))
1319 pr_info("%s[%d]: code: %s\n", current->comm,
1320 current->pid, s.buffer);
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001321 }
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001322}
1323
Michael Neuling801c0b22015-11-20 15:15:32 +11001324struct regbit {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001325 unsigned long bit;
1326 const char *name;
Michael Neuling801c0b22015-11-20 15:15:32 +11001327};
1328
1329static struct regbit msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001330#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
1331 {MSR_SF, "SF"},
1332 {MSR_HV, "HV"},
1333#endif
1334 {MSR_VEC, "VEC"},
1335 {MSR_VSX, "VSX"},
1336#ifdef CONFIG_BOOKE
1337 {MSR_CE, "CE"},
1338#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001339 {MSR_EE, "EE"},
1340 {MSR_PR, "PR"},
1341 {MSR_FP, "FP"},
1342 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001343#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +00001344 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001345#else
1346 {MSR_SE, "SE"},
1347 {MSR_BE, "BE"},
1348#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001349 {MSR_IR, "IR"},
1350 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001351 {MSR_PMM, "PMM"},
1352#ifndef CONFIG_BOOKE
1353 {MSR_RI, "RI"},
1354 {MSR_LE, "LE"},
1355#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001356 {0, NULL}
1357};
1358
Michael Neuling801c0b22015-11-20 15:15:32 +11001359static void print_bits(unsigned long val, struct regbit *bits, const char *sep)
Paul Mackerras06d67d52005-10-10 22:29:05 +10001360{
Michael Neuling801c0b22015-11-20 15:15:32 +11001361 const char *s = "";
Paul Mackerras06d67d52005-10-10 22:29:05 +10001362
Paul Mackerras06d67d52005-10-10 22:29:05 +10001363 for (; bits->bit; ++bits)
1364 if (val & bits->bit) {
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001365 pr_cont("%s%s", s, bits->name);
Michael Neuling801c0b22015-11-20 15:15:32 +11001366 s = sep;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001367 }
Michael Neuling801c0b22015-11-20 15:15:32 +11001368}
1369
1370#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1371static struct regbit msr_tm_bits[] = {
1372 {MSR_TS_T, "T"},
1373 {MSR_TS_S, "S"},
1374 {MSR_TM, "E"},
1375 {0, NULL}
1376};
1377
1378static void print_tm_bits(unsigned long val)
1379{
1380/*
1381 * This only prints something if at least one of the TM bit is set.
1382 * Inside the TM[], the output means:
1383 * E: Enabled (bit 32)
1384 * S: Suspended (bit 33)
1385 * T: Transactional (bit 34)
1386 */
1387 if (val & (MSR_TM | MSR_TS_S | MSR_TS_T)) {
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001388 pr_cont(",TM[");
Michael Neuling801c0b22015-11-20 15:15:32 +11001389 print_bits(val, msr_tm_bits, "");
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001390 pr_cont("]");
Michael Neuling801c0b22015-11-20 15:15:32 +11001391 }
1392}
1393#else
1394static void print_tm_bits(unsigned long val) {}
1395#endif
1396
1397static void print_msr_bits(unsigned long val)
1398{
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001399 pr_cont("<");
Michael Neuling801c0b22015-11-20 15:15:32 +11001400 print_bits(val, msr_bits, ",");
1401 print_tm_bits(val);
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001402 pr_cont(">");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001403}
1404
1405#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001406#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001407#define REGS_PER_LINE 4
1408#define LAST_VOLATILE 13
1409#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001410#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001411#define REGS_PER_LINE 8
1412#define LAST_VOLATILE 12
1413#endif
1414
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001415void show_regs(struct pt_regs * regs)
1416{
1417 int i, trap;
1418
Tejun Heoa43cb952013-04-30 15:27:17 -07001419 show_regs_print_info(KERN_DEFAULT);
1420
Michael Ellermana6036102017-08-23 23:56:24 +10001421 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
Paul Mackerras06d67d52005-10-10 22:29:05 +10001422 regs->nip, regs->link, regs->ctr);
Michael Ellerman182dc9c2017-12-18 16:33:36 +11001423 printk("REGS: %px TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001424 regs, regs->trap, print_tainted(), init_utsname()->release);
Michael Ellermana6036102017-08-23 23:56:24 +10001425 printk("MSR: "REG" ", regs->msr);
Michael Neuling801c0b22015-11-20 15:15:32 +11001426 print_msr_bits(regs->msr);
Michael Ellermanf6fc73f2017-08-23 23:56:23 +10001427 pr_cont(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001428 trap = TRAP(regs);
Nicholas Piggin912237e2020-05-07 22:13:31 +10001429 if (!trap_is_syscall(regs) && cpu_has_feature(CPU_FTR_CFAR))
Michael Ellerman7dae8652016-11-03 20:45:26 +11001430 pr_cont("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +11001431 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +00001432#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Michael Ellerman7dae8652016-11-03 20:45:26 +11001433 pr_cont("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -05001434#else
Michael Ellerman7dae8652016-11-03 20:45:26 +11001435 pr_cont("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001436#endif
1437#ifdef CONFIG_PPC64
Nicholas Piggin3130a7b2018-05-10 11:04:24 +10001438 pr_cont("IRQMASK: %lx ", regs->softe);
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001439#endif
1440#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +11001441 if (MSR_TM_ACTIVE(regs->msr))
Michael Ellerman7dae8652016-11-03 20:45:26 +11001442 pr_cont("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -05001443#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001444
1445 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001446 if ((i % REGS_PER_LINE) == 0)
Michael Ellerman7dae8652016-11-03 20:45:26 +11001447 pr_cont("\nGPR%02d: ", i);
1448 pr_cont(REG " ", regs->gpr[i]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001449 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001450 break;
1451 }
Michael Ellerman7dae8652016-11-03 20:45:26 +11001452 pr_cont("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001453#ifdef CONFIG_KALLSYMS
1454 /*
1455 * Lookup NIP late so we have the best change of getting the
1456 * above info out without failing
1457 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001458 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1459 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001460#endif
Dmitry Safonov9cb8f062020-06-08 21:32:29 -07001461 show_stack(current, (unsigned long *) regs->gpr[1], KERN_DEFAULT);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001462 if (!user_mode(regs))
1463 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001464}
1465
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001466void flush_thread(void)
1467{
K.Prasade0780b72011-02-10 04:44:35 +00001468#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301469 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001470#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001471 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001472#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001473}
1474
Nicholas Piggin425d3312018-09-15 01:30:55 +10001475#ifdef CONFIG_PPC_BOOK3S_64
1476void arch_setup_new_exec(void)
1477{
1478 if (radix_enabled())
1479 return;
1480 hash__setup_new_exec();
1481}
1482#endif
1483
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001484#ifdef CONFIG_PPC64
Alastair D'Silva71cc64a2018-05-11 16:12:59 +10001485/**
1486 * Assign a TIDR (thread ID) for task @t and set it in the thread
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001487 * structure. For now, we only support setting TIDR for 'current' task.
Alastair D'Silva71cc64a2018-05-11 16:12:59 +10001488 *
1489 * Since the TID value is a truncated form of it PID, it is possible
1490 * (but unlikely) for 2 threads to have the same TID. In the unlikely event
1491 * that 2 threads share the same TID and are waiting, one of the following
1492 * cases will happen:
1493 *
1494 * 1. The correct thread is running, the wrong thread is not
1495 * In this situation, the correct thread is woken and proceeds to pass it's
1496 * condition check.
1497 *
1498 * 2. Neither threads are running
1499 * In this situation, neither thread will be woken. When scheduled, the waiting
1500 * threads will execute either a wait, which will return immediately, followed
1501 * by a condition check, which will pass for the correct thread and fail
1502 * for the wrong thread, or they will execute the condition check immediately.
1503 *
1504 * 3. The wrong thread is running, the correct thread is not
1505 * The wrong thread will be woken, but will fail it's condition check and
1506 * re-execute wait. The correct thread, when scheduled, will execute either
1507 * it's condition check (which will pass), or wait, which returns immediately
1508 * when called the first time after the thread is scheduled, followed by it's
1509 * condition check (which will pass).
1510 *
1511 * 4. Both threads are running
1512 * Both threads will be woken. The wrong thread will fail it's condition check
1513 * and execute another wait, while the correct thread will pass it's condition
1514 * check.
1515 *
1516 * @t: the task to set the thread ID for
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001517 */
1518int set_thread_tidr(struct task_struct *t)
1519{
Alastair D'Silva3449f192018-05-11 16:12:58 +10001520 if (!cpu_has_feature(CPU_FTR_P9_TIDR))
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001521 return -EINVAL;
1522
1523 if (t != current)
1524 return -EINVAL;
1525
Vaibhav Jain7e4d4232017-11-24 14:03:38 +05301526 if (t->thread.tidr)
1527 return 0;
1528
Alastair D'Silva71cc64a2018-05-11 16:12:59 +10001529 t->thread.tidr = (u16)task_pid_nr(t);
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001530 mtspr(SPRN_TIDR, t->thread.tidr);
1531
1532 return 0;
1533}
Christophe Lombardb1db5512018-01-11 09:55:25 +01001534EXPORT_SYMBOL_GPL(set_thread_tidr);
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001535
1536#endif /* CONFIG_PPC64 */
1537
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001538void
1539release_thread(struct task_struct *t)
1540{
1541}
1542
1543/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001544 * this gets called so that we can store coprocessor state into memory and
1545 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001546 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001547int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001548{
Anton Blanchard579e6332015-10-29 11:44:09 +11001549 flush_all_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001550 /*
1551 * Flush TM state out so we can copy it. __switch_to_tm() does this
1552 * flush but it removes the checkpointed state from the current CPU and
1553 * transitions the CPU out of TM mode. Hence we need to call
1554 * tm_recheckpoint_new_task() (on the same task) to restore the
1555 * checkpointed state back and the TM mode.
Cyril Bur5d176f72016-09-14 18:02:16 +10001556 *
1557 * Can't pass dst because it isn't ready. Doesn't matter, passing
1558 * dst is only important for __switch_to()
Michael Neuling621b5062014-03-03 14:21:40 +11001559 */
Cyril Burdc310662016-09-23 16:18:24 +10001560 __switch_to_tm(src, src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001561
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001562 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001563
1564 clear_task_ebb(dst);
1565
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001566 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001567}
1568
Michael Ellermancec15482014-07-10 12:29:21 +10001569static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1570{
Michael Ellerman4e003742017-10-19 15:08:43 +11001571#ifdef CONFIG_PPC_BOOK3S_64
Michael Ellermancec15482014-07-10 12:29:21 +10001572 unsigned long sp_vsid;
1573 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1574
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +10001575 if (radix_enabled())
1576 return;
1577
Michael Ellermancec15482014-07-10 12:29:21 +10001578 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1579 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1580 << SLB_VSID_SHIFT_1T;
1581 else
1582 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1583 << SLB_VSID_SHIFT;
1584 sp_vsid |= SLB_VSID_KERNEL | llp;
1585 p->thread.ksp_vsid = sp_vsid;
1586#endif
1587}
1588
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001589/*
1590 * Copy a thread..
1591 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001592
Alex Dowad6eca8932015-03-13 20:14:46 +02001593/*
1594 * Copy architecture-specific thread state
1595 */
Christian Brauner714acdb2020-06-11 11:04:15 +02001596int copy_thread(unsigned long clone_flags, unsigned long usp,
Nicholas Pigginfacd04a2019-08-27 13:30:06 +10001597 unsigned long kthread_arg, struct task_struct *p,
1598 unsigned long tls)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001599{
1600 struct pt_regs *childregs, *kregs;
1601 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001602 extern void ret_from_kernel_thread(void);
1603 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001604 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Michael Ellerman5d31a962016-03-24 22:04:04 +11001605 struct thread_info *ti = task_thread_info(p);
Ravi Bangoria6b424ef2020-05-14 16:47:35 +05301606#ifdef CONFIG_HAVE_HW_BREAKPOINT
1607 int i;
1608#endif
Michael Ellerman5d31a962016-03-24 22:04:04 +11001609
Christophe Leroyed1cd6d2019-01-31 10:08:58 +00001610 klp_init_thread_info(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001611
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001612 /* Copy registers */
1613 sp -= sizeof(struct pt_regs);
1614 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001615 if (unlikely(p->flags & PF_KTHREAD)) {
Alex Dowad6eca8932015-03-13 20:14:46 +02001616 /* kernel thread */
Al Viro58254e12012-09-12 18:32:42 -04001617 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001618 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001619 /* function */
1620 if (usp)
1621 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001622#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001623 clear_tsk_thread_flag(p, TIF_32BIT);
Madhavan Srinivasanc2e480b2017-12-20 09:25:42 +05301624 childregs->softe = IRQS_ENABLED;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001625#endif
Alex Dowad6eca8932015-03-13 20:14:46 +02001626 childregs->gpr[15] = kthread_arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001627 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001628 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001629 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001630 } else {
Alex Dowad6eca8932015-03-13 20:14:46 +02001631 /* user thread */
Al Viroafa86fc2012-10-22 22:51:14 -04001632 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001633 CHECK_FULL_REGS(regs);
1634 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001635 if (usp)
1636 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001637 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001638 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001639 if (clone_flags & CLONE_SETTLS) {
Denis Kirjanov9904b002010-07-29 22:04:39 +00001640 if (!is_32bit_task())
Nicholas Pigginfacd04a2019-08-27 13:30:06 +10001641 childregs->gpr[13] = tls;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001642 else
Nicholas Pigginfacd04a2019-08-27 13:30:06 +10001643 childregs->gpr[2] = tls;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001644 }
Al Viro58254e12012-09-12 18:32:42 -04001645
1646 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001647 }
Cyril Burd272f662016-02-29 17:53:46 +11001648 childregs->msr &= ~(MSR_FP|MSR_VEC|MSR_VSX);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001649 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001650
1651 /*
1652 * The way this works is that at some point in the future
1653 * some task will call _switch to switch to the new task.
1654 * That will pop off the stack frame created below and start
1655 * the new task running at ret_from_fork. The new task will
1656 * do some house keeping and then return from the fork or clone
1657 * system call, using the stack frame created above.
1658 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001659 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001660 sp -= sizeof(struct pt_regs);
1661 kregs = (struct pt_regs *) sp;
1662 sp -= STACK_FRAME_OVERHEAD;
1663 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001664#ifdef CONFIG_PPC32
Christophe Leroya7916a12019-01-31 10:09:00 +00001665 p->thread.ksp_limit = (unsigned long)end_of_stack(p);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001666#endif
Oleg Nesterov28d170ab2013-04-21 06:47:59 +00001667#ifdef CONFIG_HAVE_HW_BREAKPOINT
Ravi Bangoria6b424ef2020-05-14 16:47:35 +05301668 for (i = 0; i < nr_wp_slots(); i++)
1669 p->thread.ptrace_bps[i] = NULL;
Oleg Nesterov28d170ab2013-04-21 06:47:59 +00001670#endif
1671
Paul Mackerras18461962013-09-10 20:21:10 +10001672 p->thread.fp_save_area = NULL;
1673#ifdef CONFIG_ALTIVEC
1674 p->thread.vr_save_area = NULL;
1675#endif
1676
Michael Ellermancec15482014-07-10 12:29:21 +10001677 setup_ksp_vsid(p, sp);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001678
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001679#ifdef CONFIG_PPC64
1680 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001681 p->thread.dscr_inherit = current->thread.dscr_inherit;
Anton Blancharddb1231dc2015-12-09 20:11:47 +11001682 p->thread.dscr = mfspr(SPRN_DSCR);
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001683 }
Haren Myneni92779242012-12-06 21:49:56 +00001684 if (cpu_has_feature(CPU_FTR_HAS_PPR))
Nicholas Piggin4c2de742018-10-13 00:15:16 +11001685 childregs->ppr = DEFAULT_PPR;
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001686
1687 p->thread.tidr = 0;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001688#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001689 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001690 return 0;
1691}
1692
Nicholas Piggin5434ae72018-09-15 01:30:56 +10001693void preload_new_slb_context(unsigned long start, unsigned long sp);
1694
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001695/*
1696 * Set up a thread for executing a new program
1697 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001698void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001699{
Michael Ellerman90eac722005-10-21 16:01:33 +10001700#ifdef CONFIG_PPC64
1701 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
Nicholas Piggin5434ae72018-09-15 01:30:56 +10001702
1703#ifdef CONFIG_PPC_BOOK3S_64
Aneesh Kumar K.Vf89bd8b2019-04-09 09:33:28 +05301704 if (!radix_enabled())
1705 preload_new_slb_context(start, sp);
Nicholas Piggin5434ae72018-09-15 01:30:56 +10001706#endif
Michael Ellerman90eac722005-10-21 16:01:33 +10001707#endif
1708
Paul Mackerras06d67d52005-10-10 22:29:05 +10001709 /*
1710 * If we exec out of a kernel thread then thread.regs will not be
1711 * set. Do it now.
1712 */
1713 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001714 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1715 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001716 }
1717
Cyril Bur8e96a872016-06-17 14:58:34 +10001718#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1719 /*
1720 * Clear any transactional state, we're exec()ing. The cause is
1721 * not important as there will never be a recheckpoint so it's not
1722 * user visible.
1723 */
1724 if (MSR_TM_SUSPENDED(mfmsr()))
1725 tm_reclaim_current(0);
1726#endif
1727
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001728 memset(regs->gpr, 0, sizeof(regs->gpr));
1729 regs->ctr = 0;
1730 regs->link = 0;
1731 regs->xer = 0;
1732 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001733 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001734
Roland McGrath474f8192007-09-24 16:52:44 -07001735 /*
1736 * We have just cleared all the nonvolatile GPRs, so make
1737 * FULL_REGS(regs) return true. This is necessary to allow
1738 * ptrace to examine the thread immediately after exec.
1739 */
Nicholas Pigginfeb9df32020-05-07 22:13:29 +10001740 SET_FULL_REGS(regs);
Roland McGrath474f8192007-09-24 16:52:44 -07001741
Paul Mackerras06d67d52005-10-10 22:29:05 +10001742#ifdef CONFIG_PPC32
1743 regs->mq = 0;
1744 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001745 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001746#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001747 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001748 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001749
Rusty Russell94af3ab2013-11-20 22:15:02 +11001750 if (is_elf2_task()) {
1751 /* Look ma, no function descriptors! */
1752 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001753
Rusty Russell94af3ab2013-11-20 22:15:02 +11001754 /*
1755 * Ulrich says:
1756 * The latest iteration of the ABI requires that when
1757 * calling a function (at its global entry point),
1758 * the caller must ensure r12 holds the entry point
1759 * address (so that the function can quickly
1760 * establish addressability).
1761 */
1762 regs->gpr[12] = start;
1763 /* Make sure that's restored on entry to userspace. */
1764 set_thread_flag(TIF_RESTOREALL);
1765 } else {
1766 unsigned long toc;
1767
1768 /* start is a relocated pointer to the function
1769 * descriptor for the elf _start routine. The first
1770 * entry in the function descriptor is the entry
1771 * address of _start and the second entry is the TOC
1772 * value we need to use.
1773 */
1774 __get_user(entry, (unsigned long __user *)start);
1775 __get_user(toc, (unsigned long __user *)start+1);
1776
1777 /* Check whether the e_entry function descriptor entries
1778 * need to be relocated before we can use them.
1779 */
1780 if (load_addr != 0) {
1781 entry += load_addr;
1782 toc += load_addr;
1783 }
1784 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001785 }
1786 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001787 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001788 } else {
1789 regs->nip = start;
1790 regs->gpr[2] = 0;
1791 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001792 }
1793#endif
Michael Neulingce48b212008-06-25 14:07:18 +10001794#ifdef CONFIG_VSX
1795 current->thread.used_vsr = 0;
1796#endif
Nicholas Piggin5434ae72018-09-15 01:30:56 +10001797 current->thread.load_slb = 0;
Breno Leitao11958922017-06-02 18:43:30 -03001798 current->thread.load_fp = 0;
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001799 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001800 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001801#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001802 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1803 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001804 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001805 current->thread.vrsave = 0;
1806 current->thread.used_vr = 0;
Breno Leitao11958922017-06-02 18:43:30 -03001807 current->thread.load_vec = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001808#endif /* CONFIG_ALTIVEC */
1809#ifdef CONFIG_SPE
1810 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1811 current->thread.acc = 0;
1812 current->thread.spefscr = 0;
1813 current->thread.used_spe = 0;
1814#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001815#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Michael Neulingbc2a9402013-02-13 16:21:40 +00001816 current->thread.tm_tfhar = 0;
1817 current->thread.tm_texasr = 0;
1818 current->thread.tm_tfiar = 0;
Breno Leitao7f22ced2017-06-05 11:40:59 -03001819 current->thread.load_tm = 0;
Michael Neulingbc2a9402013-02-13 16:21:40 +00001820#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Ram Pai06bb53b2018-01-18 17:50:31 -08001821
1822 thread_pkey_regs_init(&current->thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001823}
Anton Blancharde1802b02014-08-20 08:00:02 +10001824EXPORT_SYMBOL(start_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001825
1826#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1827 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1828
1829int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1830{
1831 struct pt_regs *regs = tsk->thread.regs;
1832
1833 /* This is a bit hairy. If we are an SPE enabled processor
1834 * (have embedded fp) we store the IEEE exception enable flags in
1835 * fpexc_mode. fpexc_mode is also used for setting FP exception
1836 * mode (asyn, precise, disabled) for 'Classic' FP. */
1837 if (val & PR_FP_EXC_SW_ENABLE) {
1838#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001839 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001840 /*
1841 * When the sticky exception bits are set
1842 * directly by userspace, it must call prctl
1843 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1844 * in the existing prctl settings) or
1845 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1846 * the bits being set). <fenv.h> functions
1847 * saving and restoring the whole
1848 * floating-point environment need to do so
1849 * anyway to restore the prctl settings from
1850 * the saved environment.
1851 */
1852 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001853 tsk->thread.fpexc_mode = val &
1854 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1855 return 0;
1856 } else {
1857 return -EINVAL;
1858 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001859#else
1860 return -EINVAL;
1861#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001862 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001863
1864 /* on a CONFIG_SPE this does not hurt us. The bits that
1865 * __pack_fe01 use do not overlap with bits used for
1866 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1867 * on CONFIG_SPE implementations are reserved so writing to
1868 * them does not change anything */
1869 if (val > PR_FP_EXC_PRECISE)
1870 return -EINVAL;
1871 tsk->thread.fpexc_mode = __pack_fe01(val);
1872 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1873 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1874 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001875 return 0;
1876}
1877
1878int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1879{
1880 unsigned int val;
1881
1882 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1883#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001884 if (cpu_has_feature(CPU_FTR_SPE)) {
1885 /*
1886 * When the sticky exception bits are set
1887 * directly by userspace, it must call prctl
1888 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1889 * in the existing prctl settings) or
1890 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1891 * the bits being set). <fenv.h> functions
1892 * saving and restoring the whole
1893 * floating-point environment need to do so
1894 * anyway to restore the prctl settings from
1895 * the saved environment.
1896 */
1897 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001898 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001899 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001900 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001901#else
1902 return -EINVAL;
1903#endif
1904 else
1905 val = __unpack_fe01(tsk->thread.fpexc_mode);
1906 return put_user(val, (unsigned int __user *) adr);
1907}
1908
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001909int set_endian(struct task_struct *tsk, unsigned int val)
1910{
1911 struct pt_regs *regs = tsk->thread.regs;
1912
1913 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1914 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1915 return -EINVAL;
1916
1917 if (regs == NULL)
1918 return -EINVAL;
1919
1920 if (val == PR_ENDIAN_BIG)
1921 regs->msr &= ~MSR_LE;
1922 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1923 regs->msr |= MSR_LE;
1924 else
1925 return -EINVAL;
1926
1927 return 0;
1928}
1929
1930int get_endian(struct task_struct *tsk, unsigned long adr)
1931{
1932 struct pt_regs *regs = tsk->thread.regs;
1933 unsigned int val;
1934
1935 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1936 !cpu_has_feature(CPU_FTR_REAL_LE))
1937 return -EINVAL;
1938
1939 if (regs == NULL)
1940 return -EINVAL;
1941
1942 if (regs->msr & MSR_LE) {
1943 if (cpu_has_feature(CPU_FTR_REAL_LE))
1944 val = PR_ENDIAN_LITTLE;
1945 else
1946 val = PR_ENDIAN_PPC_LITTLE;
1947 } else
1948 val = PR_ENDIAN_BIG;
1949
1950 return put_user(val, (unsigned int __user *)adr);
1951}
1952
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001953int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1954{
1955 tsk->thread.align_ctl = val;
1956 return 0;
1957}
1958
1959int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1960{
1961 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1962}
1963
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001964static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1965 unsigned long nbytes)
1966{
1967 unsigned long stack_page;
1968 unsigned long cpu = task_cpu(p);
1969
Christophe Leroya7916a12019-01-31 10:09:00 +00001970 stack_page = (unsigned long)hardirq_ctx[cpu];
1971 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1972 return 1;
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001973
Christophe Leroya7916a12019-01-31 10:09:00 +00001974 stack_page = (unsigned long)softirq_ctx[cpu];
1975 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1976 return 1;
1977
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001978 return 0;
1979}
1980
Nicholas Piggina2e36682020-03-25 20:41:44 +10001981static inline int valid_emergency_stack(unsigned long sp, struct task_struct *p,
1982 unsigned long nbytes)
1983{
1984#ifdef CONFIG_PPC64
1985 unsigned long stack_page;
1986 unsigned long cpu = task_cpu(p);
1987
1988 stack_page = (unsigned long)paca_ptrs[cpu]->emergency_sp - THREAD_SIZE;
1989 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1990 return 1;
1991
1992# ifdef CONFIG_PPC_BOOK3S_64
1993 stack_page = (unsigned long)paca_ptrs[cpu]->nmi_emergency_sp - THREAD_SIZE;
1994 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1995 return 1;
1996
1997 stack_page = (unsigned long)paca_ptrs[cpu]->mc_emergency_sp - THREAD_SIZE;
1998 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1999 return 1;
2000# endif
2001#endif
2002
2003 return 0;
2004}
2005
2006
Anton Blanchard2f251942006-03-27 11:46:18 +11002007int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002008 unsigned long nbytes)
2009{
Al Viro0cec6fd2006-01-12 01:06:02 -08002010 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002011
Christophe Leroya7916a12019-01-31 10:09:00 +00002012 if (sp < THREAD_SIZE)
2013 return 0;
2014
2015 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002016 return 1;
2017
Nicholas Piggina2e36682020-03-25 20:41:44 +10002018 if (valid_irq_stack(sp, p, nbytes))
2019 return 1;
2020
2021 return valid_emergency_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002022}
2023
Anton Blanchard2f251942006-03-27 11:46:18 +11002024EXPORT_SYMBOL(validate_sp);
2025
Christophe Leroy018cce32019-01-31 10:08:52 +00002026static unsigned long __get_wchan(struct task_struct *p)
Paul Mackerras06d67d52005-10-10 22:29:05 +10002027{
2028 unsigned long ip, sp;
2029 int count = 0;
2030
2031 if (!p || p == current || p->state == TASK_RUNNING)
2032 return 0;
2033
2034 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002035 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10002036 return 0;
2037
2038 do {
2039 sp = *(unsigned long *)sp;
Kautuk Consul4ca360f2016-04-19 15:48:21 +05302040 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD) ||
2041 p->state == TASK_RUNNING)
Paul Mackerras06d67d52005-10-10 22:29:05 +10002042 return 0;
2043 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002044 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10002045 if (!in_sched_functions(ip))
2046 return ip;
2047 }
2048 } while (count++ < 16);
2049 return 0;
2050}
Paul Mackerras06d67d52005-10-10 22:29:05 +10002051
Christophe Leroy018cce32019-01-31 10:08:52 +00002052unsigned long get_wchan(struct task_struct *p)
2053{
2054 unsigned long ret;
2055
2056 if (!try_get_task_stack(p))
2057 return 0;
2058
2059 ret = __get_wchan(p);
2060
2061 put_task_stack(p);
2062
2063 return ret;
2064}
2065
Johannes Bergc4d04be2008-11-20 03:24:07 +00002066static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002067
Dmitry Safonov9cb8f062020-06-08 21:32:29 -07002068void show_stack(struct task_struct *tsk, unsigned long *stack,
2069 const char *loglvl)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002070{
Paul Mackerras06d67d52005-10-10 22:29:05 +10002071 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002072 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10002073 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08002074#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Naveen N. Rao7c1bb6b2019-09-05 23:50:30 +05302075 unsigned long ret_addr;
2076 int ftrace_idx = 0;
Steven Rostedt6794c782009-02-09 21:10:27 -08002077#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002078
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002079 if (tsk == NULL)
2080 tsk = current;
Christophe Leroy018cce32019-01-31 10:08:52 +00002081
2082 if (!try_get_task_stack(tsk))
2083 return;
2084
2085 sp = (unsigned long) stack;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002086 if (sp == 0) {
2087 if (tsk == current)
Michael Ellerman3d13e832020-02-20 22:51:37 +11002088 sp = current_stack_frame();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002089 else
2090 sp = tsk->thread.ksp;
2091 }
2092
Paul Mackerras06d67d52005-10-10 22:29:05 +10002093 lr = 0;
Dmitry Safonovb9677a82020-06-08 21:31:14 -07002094 printk("%sCall Trace:\n", loglvl);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002095 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002096 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Christophe Leroy018cce32019-01-31 10:08:52 +00002097 break;
Paul Mackerras06d67d52005-10-10 22:29:05 +10002098
2099 stack = (unsigned long *) sp;
2100 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002101 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10002102 if (!firstframe || ip != lr) {
Dmitry Safonovb9677a82020-06-08 21:31:14 -07002103 printk("%s["REG"] ["REG"] %pS",
2104 loglvl, sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08002105#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Naveen N. Rao7c1bb6b2019-09-05 23:50:30 +05302106 ret_addr = ftrace_graph_ret_addr(current,
2107 &ftrace_idx, ip, stack);
2108 if (ret_addr != ip)
2109 pr_cont(" (%pS)", (void *)ret_addr);
Steven Rostedt6794c782009-02-09 21:10:27 -08002110#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10002111 if (firstframe)
Michael Ellerman9a1f4902016-11-02 22:20:46 +11002112 pr_cont(" (unreliable)");
2113 pr_cont("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002114 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10002115 firstframe = 0;
2116
2117 /*
2118 * See if this is an exception frame.
2119 * We look for the "regshere" marker in the current frame.
2120 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002121 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
2122 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10002123 struct pt_regs *regs = (struct pt_regs *)
2124 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10002125 lr = regs->link;
Dmitry Safonovb9677a82020-06-08 21:31:14 -07002126 printk("%s--- interrupt: %lx at %pS\n LR = %pS\n",
2127 loglvl, regs->trap,
2128 (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10002129 firstframe = 1;
2130 }
2131
2132 sp = newsp;
2133 } while (count++ < kstack_depth_to_print);
Christophe Leroy018cce32019-01-31 10:08:52 +00002134
2135 put_task_stack(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002136}
Paul Mackerras06d67d52005-10-10 22:29:05 +10002137
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002138#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002139/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10002140void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002141{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002142 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002143
Nicholas Piggind1d0d5f2017-08-12 02:39:07 +10002144 if (cpu_has_feature(CPU_FTR_ARCH_206)) {
2145 /*
2146 * Least significant bit (RUN) is the only writable bit of
2147 * the CTRL register, so we can avoid mfspr. 2.06 is not the
2148 * earliest ISA where this is the case, but it's convenient.
2149 */
2150 mtspr(SPRN_CTRLT, CTRL_RUNLATCH);
2151 } else {
2152 unsigned long ctrl;
2153
2154 /*
2155 * Some architectures (e.g., Cell) have writable fields other
2156 * than RUN, so do the read-modify-write.
2157 */
2158 ctrl = mfspr(SPRN_CTRLF);
2159 ctrl |= CTRL_RUNLATCH;
2160 mtspr(SPRN_CTRLT, ctrl);
2161 }
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002162
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10002163 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002164}
2165
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002166/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10002167void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002168{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002169 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002170
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10002171 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002172
Nicholas Piggind1d0d5f2017-08-12 02:39:07 +10002173 if (cpu_has_feature(CPU_FTR_ARCH_206)) {
2174 mtspr(SPRN_CTRLT, 0);
2175 } else {
2176 unsigned long ctrl;
2177
2178 ctrl = mfspr(SPRN_CTRLF);
2179 ctrl &= ~CTRL_RUNLATCH;
2180 mtspr(SPRN_CTRLT, ctrl);
2181 }
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002182}
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002183#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10002184
Anton Blanchardd8390882009-02-22 01:50:03 +00002185unsigned long arch_align_stack(unsigned long sp)
2186{
2187 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
2188 sp -= get_random_int() & ~PAGE_MASK;
2189 return sp & ~0xf;
2190}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00002191
2192static inline unsigned long brk_rnd(void)
2193{
2194 unsigned long rnd = 0;
2195
2196 /* 8MB for 32bit, 1GB for 64bit */
2197 if (is_32bit_task())
Daniel Cashman5ef11c32016-02-26 15:19:37 -08002198 rnd = (get_random_long() % (1UL<<(23-PAGE_SHIFT)));
Anton Blanchard912f9ee2009-02-22 01:50:04 +00002199 else
Daniel Cashman5ef11c32016-02-26 15:19:37 -08002200 rnd = (get_random_long() % (1UL<<(30-PAGE_SHIFT)));
Anton Blanchard912f9ee2009-02-22 01:50:04 +00002201
2202 return rnd << PAGE_SHIFT;
2203}
2204
2205unsigned long arch_randomize_brk(struct mm_struct *mm)
2206{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00002207 unsigned long base = mm->brk;
2208 unsigned long ret;
2209
Michael Ellerman4e003742017-10-19 15:08:43 +11002210#ifdef CONFIG_PPC_BOOK3S_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00002211 /*
2212 * If we are using 1TB segments and we are allowed to randomise
2213 * the heap, we can put it above 1TB so it is backed by a 1TB
2214 * segment. Otherwise the heap will be in the bottom 1TB
2215 * which always uses 256MB segments and this may result in a
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +10002216 * performance penalty. We don't need to worry about radix. For
2217 * radix, mmu_highuser_ssize remains unchanged from 256MB.
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00002218 */
2219 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
2220 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
2221#endif
2222
2223 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00002224
2225 if (ret < mm->brk)
2226 return mm->brk;
2227
2228 return ret;
2229}
Anton Blanchard501cb162009-02-22 01:50:07 +00002230