blob: 8479c762aef2f0bd4f0633a2f6ac4b771b503143 [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
44#include <asm/pgtable.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100045#include <asm/io.h>
46#include <asm/processor.h>
47#include <asm/mmu.h>
48#include <asm/prom.h>
Michael Ellerman76032de2005-11-07 13:12:03 +110049#include <asm/machdep.h>
Paul Mackerrasc6622f62006-02-24 10:06:59 +110050#include <asm/time.h>
David Howellsae3a1972012-03-28 18:30:02 +010051#include <asm/runlatch.h>
Arnd Bergmanna7f31842006-03-23 00:00:08 +010052#include <asm/syscalls.h>
David Howellsae3a1972012-03-28 18:30:02 +010053#include <asm/switch_to.h>
Michael Neulingfb096922013-02-13 16:21:37 +000054#include <asm/tm.h>
David Howellsae3a1972012-03-28 18:30:02 +010055#include <asm/debug.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100056#ifdef CONFIG_PPC64
57#include <asm/firmware.h>
Madhavan Srinivasanc2e480b2017-12-20 09:25:42 +053058#include <asm/hw_irq.h>
Paul Mackerras06d67d52005-10-10 22:29:05 +100059#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +110060#include <asm/code-patching.h>
Daniel Axtens7f92bc52016-01-06 11:45:51 +110061#include <asm/exec.h>
Michael Ellerman5d31a962016-03-24 22:04:04 +110062#include <asm/livepatch.h>
Kevin Haob92a2262016-07-23 14:42:40 +053063#include <asm/cpu_has_feature.h>
Daniel Axtens0545d542016-09-06 15:32:43 +100064#include <asm/asm-prototypes.h>
Christophe Leroyc9386bf2018-10-09 16:46:25 +110065#include <asm/stacktrace.h>
Michael Neulingc1fe1902019-04-01 17:03:12 +110066#include <asm/hw_breakpoint.h>
Michael Ellerman5d31a962016-03-24 22:04:04 +110067
Luis Machadod6a61bf2008-07-24 02:10:41 +100068#include <linux/kprobes.h>
69#include <linux/kdebug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100070
Michael Neuling8b3c34c2013-02-13 16:21:32 +000071/* Transactional Memory debug */
72#ifdef TM_DEBUG_SW
73#define TM_DEBUG(x...) printk(KERN_INFO x)
74#else
75#define TM_DEBUG(x...) do { } while(0)
76#endif
77
Paul Mackerras14cf11a2005-09-26 16:04:21 +100078extern unsigned long _get_SP(void);
79
Paul Mackerrasd31626f2014-01-13 15:56:29 +110080#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Michael Ellerman54820532017-10-12 21:17:18 +110081/*
82 * Are we running in "Suspend disabled" mode? If so we have to block any
83 * sigreturn that would get us into suspended state, and we also warn in some
84 * other paths that we should never reach with suspend disabled.
85 */
86bool tm_suspend_disabled __ro_after_init = false;
87
Anton Blanchardb86fd2b2015-10-29 11:43:58 +110088static void check_if_tm_restore_required(struct task_struct *tsk)
Paul Mackerrasd31626f2014-01-13 15:56:29 +110089{
90 /*
91 * If we are saving the current thread's registers, and the
92 * thread is in a transactional state, set the TIF_RESTORE_TM
93 * bit so that we know to restore the registers before
94 * returning to userspace.
95 */
96 if (tsk == current && tsk->thread.regs &&
97 MSR_TM_ACTIVE(tsk->thread.regs->msr) &&
98 !test_thread_flag(TIF_RESTORE_TM)) {
Anshuman Khandual829023d2015-07-06 16:24:10 +053099 tsk->thread.ckpt_regs.msr = tsk->thread.regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100100 set_thread_flag(TIF_RESTORE_TM);
101 }
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100102}
Cyril Burdc16b552016-09-23 16:18:08 +1000103
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100104#else
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100105static inline void check_if_tm_restore_required(struct task_struct *tsk) { }
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100106#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
107
Anton Blanchard3eb5d582015-10-29 11:44:06 +1100108bool strict_msr_control;
109EXPORT_SYMBOL(strict_msr_control);
110
111static int __init enable_strict_msr_control(char *str)
112{
113 strict_msr_control = true;
114 pr_info("Enabling strict facility control\n");
115
116 return 0;
117}
118early_param("ppc_strict_facility_enable", enable_strict_msr_control);
119
Nicholas Piggine2b36d52019-05-02 15:21:07 +1000120/* notrace because it's called by restore_math */
121unsigned long notrace msr_check_and_set(unsigned long bits)
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100122{
123 unsigned long oldmsr = mfmsr();
124 unsigned long newmsr;
125
126 newmsr = oldmsr | bits;
127
128#ifdef CONFIG_VSX
129 if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
130 newmsr |= MSR_VSX;
131#endif
132
133 if (oldmsr != newmsr)
134 mtmsr_isync(newmsr);
Cyril Bur3cee0702016-09-23 16:18:10 +1000135
136 return newmsr;
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100137}
Simon Guod1c72112018-05-23 15:01:44 +0800138EXPORT_SYMBOL_GPL(msr_check_and_set);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100139
Nicholas Piggine2b36d52019-05-02 15:21:07 +1000140/* notrace because it's called by restore_math */
141void notrace __msr_check_and_clear(unsigned long bits)
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100142{
143 unsigned long oldmsr = mfmsr();
144 unsigned long newmsr;
145
146 newmsr = oldmsr & ~bits;
147
148#ifdef CONFIG_VSX
149 if (cpu_has_feature(CPU_FTR_VSX) && (bits & MSR_FP))
150 newmsr &= ~MSR_VSX;
151#endif
152
153 if (oldmsr != newmsr)
154 mtmsr_isync(newmsr);
155}
Anton Blanchard3eb5d582015-10-29 11:44:06 +1100156EXPORT_SYMBOL(__msr_check_and_clear);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100157
Kevin Hao037f0ee2013-07-14 17:02:05 +0800158#ifdef CONFIG_PPC_FPU
Mathieu Malaterre1cdf0392018-02-25 18:22:23 +0100159static void __giveup_fpu(struct task_struct *tsk)
Cyril Bur87924682016-02-29 17:53:49 +1100160{
Anton Blanchard8eb98032016-05-29 22:03:50 +1000161 unsigned long msr;
162
Cyril Bur87924682016-02-29 17:53:49 +1100163 save_fpu(tsk);
Anton Blanchard8eb98032016-05-29 22:03:50 +1000164 msr = tsk->thread.regs->msr;
Mark Cave-Aylandfe1ef6b2019-02-08 14:33:19 +0000165 msr &= ~(MSR_FP|MSR_FE0|MSR_FE1);
Cyril Bur87924682016-02-29 17:53:49 +1100166#ifdef CONFIG_VSX
167 if (cpu_has_feature(CPU_FTR_VSX))
Anton Blanchard8eb98032016-05-29 22:03:50 +1000168 msr &= ~MSR_VSX;
Cyril Bur87924682016-02-29 17:53:49 +1100169#endif
Anton Blanchard8eb98032016-05-29 22:03:50 +1000170 tsk->thread.regs->msr = msr;
Cyril Bur87924682016-02-29 17:53:49 +1100171}
172
Anton Blanchard98da5812015-10-29 11:44:01 +1100173void giveup_fpu(struct task_struct *tsk)
174{
Anton Blanchard98da5812015-10-29 11:44:01 +1100175 check_if_tm_restore_required(tsk);
176
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100177 msr_check_and_set(MSR_FP);
Anton Blanchard98da5812015-10-29 11:44:01 +1100178 __giveup_fpu(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100179 msr_check_and_clear(MSR_FP);
Anton Blanchard98da5812015-10-29 11:44:01 +1100180}
181EXPORT_SYMBOL(giveup_fpu);
182
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000183/*
184 * Make sure the floating-point register state in the
185 * the thread_struct is up to date for task tsk.
186 */
187void flush_fp_to_thread(struct task_struct *tsk)
188{
189 if (tsk->thread.regs) {
190 /*
191 * We need to disable preemption here because if we didn't,
192 * another process could get scheduled after the regs->msr
193 * test but before we have finished saving the FP registers
194 * to the thread_struct. That process could take over the
195 * FPU, and then when we get scheduled again we would store
196 * bogus values for the remaining FP registers.
197 */
198 preempt_disable();
199 if (tsk->thread.regs->msr & MSR_FP) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000200 /*
201 * This should only ever be called for current or
202 * for a stopped child process. Since we save away
Anton Blanchardaf1bbc32015-10-29 11:43:57 +1100203 * the FP register state on context switch,
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000204 * there is something wrong if a stopped child appears
205 * to still have its FP state in the CPU registers.
206 */
207 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100208 giveup_fpu(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000209 }
210 preempt_enable();
211 }
212}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000213EXPORT_SYMBOL_GPL(flush_fp_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000214
215void enable_kernel_fp(void)
216{
Cyril Bure909fb82016-09-23 16:18:11 +1000217 unsigned long cpumsr;
218
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000219 WARN_ON(preemptible());
220
Cyril Bure909fb82016-09-23 16:18:11 +1000221 cpumsr = msr_check_and_set(MSR_FP);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100222
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100223 if (current->thread.regs && (current->thread.regs->msr & MSR_FP)) {
224 check_if_tm_restore_required(current);
Cyril Bure909fb82016-09-23 16:18:11 +1000225 /*
226 * If a thread has already been reclaimed then the
227 * checkpointed registers are on the CPU but have definitely
228 * been saved by the reclaim code. Don't need to and *cannot*
229 * giveup as this would save to the 'live' structure not the
230 * checkpointed structure.
231 */
Breno Leitao5c784c82018-08-16 14:21:07 -0300232 if (!MSR_TM_ACTIVE(cpumsr) &&
233 MSR_TM_ACTIVE(current->thread.regs->msr))
Cyril Bure909fb82016-09-23 16:18:11 +1000234 return;
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100235 __giveup_fpu(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100236 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000237}
238EXPORT_SYMBOL(enable_kernel_fp);
Anton Blanchardd1e1cf22015-10-29 11:44:11 +1100239#endif /* CONFIG_PPC_FPU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000240
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000241#ifdef CONFIG_ALTIVEC
Cyril Bur6f515d82016-02-29 17:53:50 +1100242static void __giveup_altivec(struct task_struct *tsk)
243{
Anton Blanchard8eb98032016-05-29 22:03:50 +1000244 unsigned long msr;
245
Cyril Bur6f515d82016-02-29 17:53:50 +1100246 save_altivec(tsk);
Anton Blanchard8eb98032016-05-29 22:03:50 +1000247 msr = tsk->thread.regs->msr;
248 msr &= ~MSR_VEC;
Cyril Bur6f515d82016-02-29 17:53:50 +1100249#ifdef CONFIG_VSX
250 if (cpu_has_feature(CPU_FTR_VSX))
Anton Blanchard8eb98032016-05-29 22:03:50 +1000251 msr &= ~MSR_VSX;
Cyril Bur6f515d82016-02-29 17:53:50 +1100252#endif
Anton Blanchard8eb98032016-05-29 22:03:50 +1000253 tsk->thread.regs->msr = msr;
Cyril Bur6f515d82016-02-29 17:53:50 +1100254}
255
Anton Blanchard98da5812015-10-29 11:44:01 +1100256void giveup_altivec(struct task_struct *tsk)
257{
Anton Blanchard98da5812015-10-29 11:44:01 +1100258 check_if_tm_restore_required(tsk);
259
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100260 msr_check_and_set(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100261 __giveup_altivec(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100262 msr_check_and_clear(MSR_VEC);
Anton Blanchard98da5812015-10-29 11:44:01 +1100263}
264EXPORT_SYMBOL(giveup_altivec);
265
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000266void enable_kernel_altivec(void)
267{
Cyril Bure909fb82016-09-23 16:18:11 +1000268 unsigned long cpumsr;
269
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000270 WARN_ON(preemptible());
271
Cyril Bure909fb82016-09-23 16:18:11 +1000272 cpumsr = msr_check_and_set(MSR_VEC);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100273
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100274 if (current->thread.regs && (current->thread.regs->msr & MSR_VEC)) {
275 check_if_tm_restore_required(current);
Cyril Bure909fb82016-09-23 16:18:11 +1000276 /*
277 * If a thread has already been reclaimed then the
278 * checkpointed registers are on the CPU but have definitely
279 * been saved by the reclaim code. Don't need to and *cannot*
280 * giveup as this would save to the 'live' structure not the
281 * checkpointed structure.
282 */
Breno Leitao5c784c82018-08-16 14:21:07 -0300283 if (!MSR_TM_ACTIVE(cpumsr) &&
284 MSR_TM_ACTIVE(current->thread.regs->msr))
Cyril Bure909fb82016-09-23 16:18:11 +1000285 return;
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100286 __giveup_altivec(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100287 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000288}
289EXPORT_SYMBOL(enable_kernel_altivec);
290
291/*
292 * Make sure the VMX/Altivec register state in the
293 * the thread_struct is up to date for task tsk.
294 */
295void flush_altivec_to_thread(struct task_struct *tsk)
296{
297 if (tsk->thread.regs) {
298 preempt_disable();
299 if (tsk->thread.regs->msr & MSR_VEC) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000300 BUG_ON(tsk != current);
Anton Blanchardb86fd2b2015-10-29 11:43:58 +1100301 giveup_altivec(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000302 }
303 preempt_enable();
304 }
305}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000306EXPORT_SYMBOL_GPL(flush_altivec_to_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000307#endif /* CONFIG_ALTIVEC */
308
Michael Neulingce48b212008-06-25 14:07:18 +1000309#ifdef CONFIG_VSX
Cyril Burbf6a4d52016-02-29 17:53:51 +1100310static void __giveup_vsx(struct task_struct *tsk)
Anton Blancharda7d623d2015-10-29 11:44:02 +1100311{
Benjamin Herrenschmidtdc801082017-08-16 16:01:17 +1000312 unsigned long msr = tsk->thread.regs->msr;
313
314 /*
315 * We should never be ssetting MSR_VSX without also setting
316 * MSR_FP and MSR_VEC
317 */
318 WARN_ON((msr & MSR_VSX) && !((msr & MSR_FP) && (msr & MSR_VEC)));
319
320 /* __giveup_fpu will clear MSR_VSX */
321 if (msr & MSR_FP)
Anton Blancharda7d623d2015-10-29 11:44:02 +1100322 __giveup_fpu(tsk);
Benjamin Herrenschmidtdc801082017-08-16 16:01:17 +1000323 if (msr & MSR_VEC)
Anton Blancharda7d623d2015-10-29 11:44:02 +1100324 __giveup_altivec(tsk);
Cyril Burbf6a4d52016-02-29 17:53:51 +1100325}
326
327static void giveup_vsx(struct task_struct *tsk)
328{
329 check_if_tm_restore_required(tsk);
330
331 msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100332 __giveup_vsx(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100333 msr_check_and_clear(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blancharda7d623d2015-10-29 11:44:02 +1100334}
Cyril Burbf6a4d52016-02-29 17:53:51 +1100335
Michael Neulingce48b212008-06-25 14:07:18 +1000336void enable_kernel_vsx(void)
337{
Cyril Bure909fb82016-09-23 16:18:11 +1000338 unsigned long cpumsr;
339
Michael Neulingce48b212008-06-25 14:07:18 +1000340 WARN_ON(preemptible());
341
Cyril Bure909fb82016-09-23 16:18:11 +1000342 cpumsr = msr_check_and_set(MSR_FP|MSR_VEC|MSR_VSX);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100343
Benjamin Herrenschmidt5a69aec2017-08-16 16:01:14 +1000344 if (current->thread.regs &&
345 (current->thread.regs->msr & (MSR_VSX|MSR_VEC|MSR_FP))) {
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100346 check_if_tm_restore_required(current);
Cyril Bure909fb82016-09-23 16:18:11 +1000347 /*
348 * If a thread has already been reclaimed then the
349 * checkpointed registers are on the CPU but have definitely
350 * been saved by the reclaim code. Don't need to and *cannot*
351 * giveup as this would save to the 'live' structure not the
352 * checkpointed structure.
353 */
Breno Leitao5c784c82018-08-16 14:21:07 -0300354 if (!MSR_TM_ACTIVE(cpumsr) &&
355 MSR_TM_ACTIVE(current->thread.regs->msr))
Cyril Bure909fb82016-09-23 16:18:11 +1000356 return;
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100357 __giveup_vsx(current);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100358 }
Michael Neulingce48b212008-06-25 14:07:18 +1000359}
360EXPORT_SYMBOL(enable_kernel_vsx);
Michael Neulingce48b212008-06-25 14:07:18 +1000361
362void flush_vsx_to_thread(struct task_struct *tsk)
363{
364 if (tsk->thread.regs) {
365 preempt_disable();
Benjamin Herrenschmidt5a69aec2017-08-16 16:01:14 +1000366 if (tsk->thread.regs->msr & (MSR_VSX|MSR_VEC|MSR_FP)) {
Michael Neulingce48b212008-06-25 14:07:18 +1000367 BUG_ON(tsk != current);
Michael Neulingce48b212008-06-25 14:07:18 +1000368 giveup_vsx(tsk);
369 }
370 preempt_enable();
371 }
372}
Paul Mackerrasde56a942011-06-29 00:21:34 +0000373EXPORT_SYMBOL_GPL(flush_vsx_to_thread);
Michael Neulingce48b212008-06-25 14:07:18 +1000374#endif /* CONFIG_VSX */
375
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000376#ifdef CONFIG_SPE
Anton Blanchard98da5812015-10-29 11:44:01 +1100377void giveup_spe(struct task_struct *tsk)
378{
Anton Blanchard98da5812015-10-29 11:44:01 +1100379 check_if_tm_restore_required(tsk);
380
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100381 msr_check_and_set(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100382 __giveup_spe(tsk);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100383 msr_check_and_clear(MSR_SPE);
Anton Blanchard98da5812015-10-29 11:44:01 +1100384}
385EXPORT_SYMBOL(giveup_spe);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000386
387void enable_kernel_spe(void)
388{
389 WARN_ON(preemptible());
390
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100391 msr_check_and_set(MSR_SPE);
Anton Blanchard611b0e52015-10-29 11:43:59 +1100392
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100393 if (current->thread.regs && (current->thread.regs->msr & MSR_SPE)) {
394 check_if_tm_restore_required(current);
Anton Blancharda0e72cf2015-10-29 11:44:04 +1100395 __giveup_spe(current);
Anton Blanchardd64d02c2015-12-10 20:04:05 +1100396 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000397}
398EXPORT_SYMBOL(enable_kernel_spe);
399
400void flush_spe_to_thread(struct task_struct *tsk)
401{
402 if (tsk->thread.regs) {
403 preempt_disable();
404 if (tsk->thread.regs->msr & MSR_SPE) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000405 BUG_ON(tsk != current);
yu liu685659e2011-06-14 18:34:25 -0500406 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
Kumar Gala0ee6c152007-08-28 21:15:53 -0500407 giveup_spe(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000408 }
409 preempt_enable();
410 }
411}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000412#endif /* CONFIG_SPE */
413
Anton Blanchardc2085052015-10-29 11:44:08 +1100414static unsigned long msr_all_available;
415
416static int __init init_msr_all_available(void)
417{
418#ifdef CONFIG_PPC_FPU
419 msr_all_available |= MSR_FP;
420#endif
421#ifdef CONFIG_ALTIVEC
422 if (cpu_has_feature(CPU_FTR_ALTIVEC))
423 msr_all_available |= MSR_VEC;
424#endif
425#ifdef CONFIG_VSX
426 if (cpu_has_feature(CPU_FTR_VSX))
427 msr_all_available |= MSR_VSX;
428#endif
429#ifdef CONFIG_SPE
430 if (cpu_has_feature(CPU_FTR_SPE))
431 msr_all_available |= MSR_SPE;
432#endif
433
434 return 0;
435}
436early_initcall(init_msr_all_available);
437
438void giveup_all(struct task_struct *tsk)
439{
440 unsigned long usermsr;
441
442 if (!tsk->thread.regs)
443 return;
444
Gustavo Romero8205d5d2019-09-04 00:55:27 -0400445 check_if_tm_restore_required(tsk);
446
Anton Blanchardc2085052015-10-29 11:44:08 +1100447 usermsr = tsk->thread.regs->msr;
448
449 if ((usermsr & msr_all_available) == 0)
450 return;
451
452 msr_check_and_set(msr_all_available);
453
Benjamin Herrenschmidt96c79b62017-08-16 16:01:18 +1000454 WARN_ON((usermsr & MSR_VSX) && !((usermsr & MSR_FP) && (usermsr & MSR_VEC)));
455
Anton Blanchardc2085052015-10-29 11:44:08 +1100456#ifdef CONFIG_PPC_FPU
457 if (usermsr & MSR_FP)
458 __giveup_fpu(tsk);
459#endif
460#ifdef CONFIG_ALTIVEC
461 if (usermsr & MSR_VEC)
462 __giveup_altivec(tsk);
463#endif
Anton Blanchardc2085052015-10-29 11:44:08 +1100464#ifdef CONFIG_SPE
465 if (usermsr & MSR_SPE)
466 __giveup_spe(tsk);
467#endif
468
469 msr_check_and_clear(msr_all_available);
470}
471EXPORT_SYMBOL(giveup_all);
472
Nicholas Piggin6cc0c162020-02-26 03:35:37 +1000473#ifdef CONFIG_PPC_BOOK3S_64
474#ifdef CONFIG_PPC_FPU
475static int restore_fp(struct task_struct *tsk)
476{
477 if (tsk->thread.load_fp) {
478 load_fp_state(&current->thread.fp_state);
479 current->thread.load_fp++;
480 return 1;
481 }
482 return 0;
483}
484#else
485static int restore_fp(struct task_struct *tsk) { return 0; }
486#endif /* CONFIG_PPC_FPU */
487
488#ifdef CONFIG_ALTIVEC
489#define loadvec(thr) ((thr).load_vec)
490static int restore_altivec(struct task_struct *tsk)
491{
492 if (cpu_has_feature(CPU_FTR_ALTIVEC) && (tsk->thread.load_vec)) {
493 load_vr_state(&tsk->thread.vr_state);
494 tsk->thread.used_vr = 1;
495 tsk->thread.load_vec++;
496
497 return 1;
498 }
499 return 0;
500}
501#else
502#define loadvec(thr) 0
503static inline int restore_altivec(struct task_struct *tsk) { return 0; }
504#endif /* CONFIG_ALTIVEC */
505
506#ifdef CONFIG_VSX
507static int restore_vsx(struct task_struct *tsk)
508{
509 if (cpu_has_feature(CPU_FTR_VSX)) {
510 tsk->thread.used_vsr = 1;
511 return 1;
512 }
513
514 return 0;
515}
516#else
517static inline int restore_vsx(struct task_struct *tsk) { return 0; }
518#endif /* CONFIG_VSX */
519
Nicholas Piggine2b36d52019-05-02 15:21:07 +1000520/*
521 * The exception exit path calls restore_math() with interrupts hard disabled
522 * but the soft irq state not "reconciled". ftrace code that calls
523 * local_irq_save/restore causes warnings.
524 *
525 * Rather than complicate the exit path, just don't trace restore_math. This
526 * could be done by having ftrace entry code check for this un-reconciled
527 * condition where MSR[EE]=0 and PACA_IRQ_HARD_DIS is not set, and
528 * temporarily fix it up for the duration of the ftrace call.
529 */
530void notrace restore_math(struct pt_regs *regs)
Cyril Bur70fe3d92016-02-29 17:53:47 +1100531{
532 unsigned long msr;
533
Breno Leitao5c784c82018-08-16 14:21:07 -0300534 if (!MSR_TM_ACTIVE(regs->msr) &&
Cyril Burdc16b552016-09-23 16:18:08 +1000535 !current->thread.load_fp && !loadvec(current->thread))
Cyril Bur70fe3d92016-02-29 17:53:47 +1100536 return;
537
538 msr = regs->msr;
539 msr_check_and_set(msr_all_available);
540
541 /*
542 * Only reload if the bit is not set in the user MSR, the bit BEING set
543 * indicates that the registers are hot
544 */
545 if ((!(msr & MSR_FP)) && restore_fp(current))
546 msr |= MSR_FP | current->thread.fpexc_mode;
547
548 if ((!(msr & MSR_VEC)) && restore_altivec(current))
549 msr |= MSR_VEC;
550
551 if ((msr & (MSR_FP | MSR_VEC)) == (MSR_FP | MSR_VEC) &&
552 restore_vsx(current)) {
553 msr |= MSR_VSX;
554 }
555
556 msr_check_and_clear(msr_all_available);
557
558 regs->msr = msr;
559}
Nicholas Piggin6cc0c162020-02-26 03:35:37 +1000560#endif
Cyril Bur70fe3d92016-02-29 17:53:47 +1100561
Mathieu Malaterre1cdf0392018-02-25 18:22:23 +0100562static void save_all(struct task_struct *tsk)
Cyril Burde2a20a2016-02-29 17:53:48 +1100563{
564 unsigned long usermsr;
565
566 if (!tsk->thread.regs)
567 return;
568
569 usermsr = tsk->thread.regs->msr;
570
571 if ((usermsr & msr_all_available) == 0)
572 return;
573
574 msr_check_and_set(msr_all_available);
575
Benjamin Herrenschmidt96c79b62017-08-16 16:01:18 +1000576 WARN_ON((usermsr & MSR_VSX) && !((usermsr & MSR_FP) && (usermsr & MSR_VEC)));
Cyril Burde2a20a2016-02-29 17:53:48 +1100577
Benjamin Herrenschmidt96c79b62017-08-16 16:01:18 +1000578 if (usermsr & MSR_FP)
579 save_fpu(tsk);
580
581 if (usermsr & MSR_VEC)
582 save_altivec(tsk);
Cyril Burde2a20a2016-02-29 17:53:48 +1100583
584 if (usermsr & MSR_SPE)
585 __giveup_spe(tsk);
586
587 msr_check_and_clear(msr_all_available);
Ram Paic76662e2018-07-17 06:51:05 -0700588 thread_pkey_regs_save(&tsk->thread);
Cyril Burde2a20a2016-02-29 17:53:48 +1100589}
590
Anton Blanchard579e6332015-10-29 11:44:09 +1100591void flush_all_to_thread(struct task_struct *tsk)
592{
593 if (tsk->thread.regs) {
594 preempt_disable();
595 BUG_ON(tsk != current);
Anton Blanchard579e6332015-10-29 11:44:09 +1100596#ifdef CONFIG_SPE
597 if (tsk->thread.regs->msr & MSR_SPE)
598 tsk->thread.spefscr = mfspr(SPRN_SPEFSCR);
599#endif
Felipe Rechiae9013782018-10-24 10:57:22 -0300600 save_all(tsk);
Anton Blanchard579e6332015-10-29 11:44:09 +1100601
602 preempt_enable();
603 }
604}
605EXPORT_SYMBOL(flush_all_to_thread);
606
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000607#ifdef CONFIG_PPC_ADV_DEBUG_REGS
608void do_send_trap(struct pt_regs *regs, unsigned long address,
Eric W. Biederman47355042018-01-16 16:12:38 -0600609 unsigned long error_code, int breakpt)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000610{
Eric W. Biederman47355042018-01-16 16:12:38 -0600611 current->thread.trap_nr = TRAP_HWBKPT;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000612 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
613 11, SIGSEGV) == NOTIFY_STOP)
614 return;
615
616 /* Deliver the signal to userspace */
Eric W. Biedermanf71dd7d2018-01-22 14:37:25 -0600617 force_sig_ptrace_errno_trap(breakpt, /* breakpoint or watchpoint id */
618 (void __user *)address);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000619}
620#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
Michael Neuling9422de32012-12-20 14:06:44 +0000621void do_break (struct pt_regs *regs, unsigned long address,
Luis Machadod6a61bf2008-07-24 02:10:41 +1000622 unsigned long error_code)
623{
Ananth N Mavinakayanahalli41ab5262012-08-23 21:27:09 +0000624 current->thread.trap_nr = TRAP_HWBKPT;
Luis Machadod6a61bf2008-07-24 02:10:41 +1000625 if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
626 11, SIGSEGV) == NOTIFY_STOP)
627 return;
628
Michael Neuling9422de32012-12-20 14:06:44 +0000629 if (debugger_break_match(regs))
Luis Machadod6a61bf2008-07-24 02:10:41 +1000630 return;
631
Michael Neuling9422de32012-12-20 14:06:44 +0000632 /* Clear the breakpoint */
633 hw_breakpoint_disable();
Luis Machadod6a61bf2008-07-24 02:10:41 +1000634
635 /* Deliver the signal to userspace */
Eric W. Biederman2e1661d22019-05-23 11:04:24 -0500636 force_sig_fault(SIGTRAP, TRAP_HWBKPT, (void __user *)address);
Luis Machadod6a61bf2008-07-24 02:10:41 +1000637}
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000638#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
Luis Machadod6a61bf2008-07-24 02:10:41 +1000639
Michael Neuling9422de32012-12-20 14:06:44 +0000640static DEFINE_PER_CPU(struct arch_hw_breakpoint, current_brk);
Michael Ellermana2ceff52008-03-28 19:11:48 +1100641
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000642#ifdef CONFIG_PPC_ADV_DEBUG_REGS
643/*
644 * Set the debug registers back to their default "safe" values.
645 */
646static void set_debug_reg_defaults(struct thread_struct *thread)
647{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530648 thread->debug.iac1 = thread->debug.iac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000649#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530650 thread->debug.iac3 = thread->debug.iac4 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000651#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530652 thread->debug.dac1 = thread->debug.dac2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000653#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530654 thread->debug.dvc1 = thread->debug.dvc2 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000655#endif
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530656 thread->debug.dbcr0 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000657#ifdef CONFIG_BOOKE
658 /*
659 * Force User/Supervisor bits to b11 (user-only MSR[PR]=1)
660 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530661 thread->debug.dbcr1 = DBCR1_IAC1US | DBCR1_IAC2US |
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000662 DBCR1_IAC3US | DBCR1_IAC4US;
663 /*
664 * Force Data Address Compare User/Supervisor bits to be User-only
665 * (0b11 MSR[PR]=1) and set all other bits in DBCR2 register to be 0.
666 */
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530667 thread->debug.dbcr2 = DBCR2_DAC1US | DBCR2_DAC2US;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000668#else
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530669 thread->debug.dbcr1 = 0;
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000670#endif
671}
672
Scott Woodf5f97212013-11-22 15:52:29 -0600673static void prime_debug_regs(struct debug_reg *debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000674{
Scott Wood6cecf762013-05-13 14:14:53 +0000675 /*
676 * We could have inherited MSR_DE from userspace, since
677 * it doesn't get cleared on exception entry. Make sure
678 * MSR_DE is clear before we enable any debug events.
679 */
680 mtmsr(mfmsr() & ~MSR_DE);
681
Scott Woodf5f97212013-11-22 15:52:29 -0600682 mtspr(SPRN_IAC1, debug->iac1);
683 mtspr(SPRN_IAC2, debug->iac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000684#if CONFIG_PPC_ADV_DEBUG_IACS > 2
Scott Woodf5f97212013-11-22 15:52:29 -0600685 mtspr(SPRN_IAC3, debug->iac3);
686 mtspr(SPRN_IAC4, debug->iac4);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000687#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600688 mtspr(SPRN_DAC1, debug->dac1);
689 mtspr(SPRN_DAC2, debug->dac2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000690#if CONFIG_PPC_ADV_DEBUG_DVCS > 0
Scott Woodf5f97212013-11-22 15:52:29 -0600691 mtspr(SPRN_DVC1, debug->dvc1);
692 mtspr(SPRN_DVC2, debug->dvc2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000693#endif
Scott Woodf5f97212013-11-22 15:52:29 -0600694 mtspr(SPRN_DBCR0, debug->dbcr0);
695 mtspr(SPRN_DBCR1, debug->dbcr1);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000696#ifdef CONFIG_BOOKE
Scott Woodf5f97212013-11-22 15:52:29 -0600697 mtspr(SPRN_DBCR2, debug->dbcr2);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000698#endif
699}
700/*
701 * Unless neither the old or new thread are making use of the
702 * debug registers, set the debug registers from the values
703 * stored in the new thread.
704 */
Scott Woodf5f97212013-11-22 15:52:29 -0600705void switch_booke_debug_regs(struct debug_reg *new_debug)
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000706{
Bharat Bhushan51ae8d42013-07-04 11:45:46 +0530707 if ((current->thread.debug.dbcr0 & DBCR0_IDM)
Scott Woodf5f97212013-11-22 15:52:29 -0600708 || (new_debug->dbcr0 & DBCR0_IDM))
709 prime_debug_regs(new_debug);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000710}
Bharat Bhushan3743c9b2013-07-04 12:27:44 +0530711EXPORT_SYMBOL_GPL(switch_booke_debug_regs);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000712#else /* !CONFIG_PPC_ADV_DEBUG_REGS */
K.Prasade0780b72011-02-10 04:44:35 +0000713#ifndef CONFIG_HAVE_HW_BREAKPOINT
Christophe Leroyb5ac51d2018-07-05 16:25:05 +0000714static void set_breakpoint(struct arch_hw_breakpoint *brk)
715{
716 preempt_disable();
717 __set_breakpoint(brk);
718 preempt_enable();
719}
720
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000721static void set_debug_reg_defaults(struct thread_struct *thread)
722{
Michael Neuling9422de32012-12-20 14:06:44 +0000723 thread->hw_brk.address = 0;
724 thread->hw_brk.type = 0;
Ravi Bangoriab57aeab2019-10-17 15:01:59 +0530725 thread->hw_brk.len = 0;
726 thread->hw_brk.hw_len = 0;
Nicholas Piggin252988c2018-04-01 15:50:36 +1000727 if (ppc_breakpoint_available())
728 set_breakpoint(&thread->hw_brk);
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000729}
K.Prasade0780b72011-02-10 04:44:35 +0000730#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000731#endif /* CONFIG_PPC_ADV_DEBUG_REGS */
732
Dave Kleikamp172ae2e2010-02-08 11:50:57 +0000733#ifdef CONFIG_PPC_ADV_DEBUG_REGS
Michael Neuling9422de32012-12-20 14:06:44 +0000734static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
735{
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000736 mtspr(SPRN_DAC1, dabr);
Dave Kleikamp221c1852010-03-05 10:43:24 +0000737#ifdef CONFIG_PPC_47x
738 isync();
739#endif
Michael Neuling9422de32012-12-20 14:06:44 +0000740 return 0;
741}
Benjamin Herrenschmidtc6c9eac2009-09-08 14:16:58 +0000742#elif defined(CONFIG_PPC_BOOK3S)
Michael Neuling9422de32012-12-20 14:06:44 +0000743static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
744{
Michael Ellermancab0af92005-11-03 15:30:49 +1100745 mtspr(SPRN_DABR, dabr);
Michael Neuling82a9f162013-05-16 20:27:31 +0000746 if (cpu_has_feature(CPU_FTR_DABRX))
747 mtspr(SPRN_DABRX, dabrx);
Michael Ellermancab0af92005-11-03 15:30:49 +1100748 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000749}
Michael Neuling9422de32012-12-20 14:06:44 +0000750#else
751static inline int __set_dabr(unsigned long dabr, unsigned long dabrx)
752{
753 return -EINVAL;
754}
755#endif
756
757static inline int set_dabr(struct arch_hw_breakpoint *brk)
758{
759 unsigned long dabr, dabrx;
760
761 dabr = brk->address | (brk->type & HW_BRK_TYPE_DABR);
762 dabrx = ((brk->type >> 3) & 0x7);
763
764 if (ppc_md.set_dabr)
765 return ppc_md.set_dabr(dabr, dabrx);
766
767 return __set_dabr(dabr, dabrx);
768}
769
Christophe Leroy39413ae2019-11-26 17:43:29 +0000770static inline int set_breakpoint_8xx(struct arch_hw_breakpoint *brk)
771{
772 unsigned long lctrl1 = LCTRL1_CTE_GT | LCTRL1_CTF_LT | LCTRL1_CRWE_RW |
773 LCTRL1_CRWF_RW;
774 unsigned long lctrl2 = LCTRL2_LW0EN | LCTRL2_LW0LADC | LCTRL2_SLW0EN;
775 unsigned long start_addr = brk->address & ~HW_BREAKPOINT_ALIGN;
776 unsigned long end_addr = (brk->address + brk->len - 1) | HW_BREAKPOINT_ALIGN;
777
778 if (start_addr == 0)
779 lctrl2 |= LCTRL2_LW0LA_F;
780 else if (end_addr == ~0U)
781 lctrl2 |= LCTRL2_LW0LA_E;
782 else
783 lctrl2 |= LCTRL2_LW0LA_EandF;
784
785 mtspr(SPRN_LCTRL2, 0);
786
787 if ((brk->type & HW_BRK_TYPE_RDWR) == 0)
788 return 0;
789
790 if ((brk->type & HW_BRK_TYPE_RDWR) == HW_BRK_TYPE_READ)
791 lctrl1 |= LCTRL1_CRWE_RO | LCTRL1_CRWF_RO;
792 if ((brk->type & HW_BRK_TYPE_RDWR) == HW_BRK_TYPE_WRITE)
793 lctrl1 |= LCTRL1_CRWE_WO | LCTRL1_CRWF_WO;
794
795 mtspr(SPRN_CMPE, start_addr - 1);
796 mtspr(SPRN_CMPF, end_addr + 1);
797 mtspr(SPRN_LCTRL1, lctrl1);
798 mtspr(SPRN_LCTRL2, lctrl2);
799
800 return 0;
801}
802
Paul Gortmaker21f58502014-04-29 15:25:17 -0400803void __set_breakpoint(struct arch_hw_breakpoint *brk)
Michael Neuling9422de32012-12-20 14:06:44 +0000804{
Christoph Lameter69111ba2014-10-21 15:23:25 -0500805 memcpy(this_cpu_ptr(&current_brk), brk, sizeof(*brk));
Michael Neuling9422de32012-12-20 14:06:44 +0000806
Michael Neulingc1fe1902019-04-01 17:03:12 +1100807 if (dawr_enabled())
Nicholas Piggin252988c2018-04-01 15:50:36 +1000808 // Power8 or later
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400809 set_dawr(brk);
Christophe Leroy39413ae2019-11-26 17:43:29 +0000810 else if (IS_ENABLED(CONFIG_PPC_8xx))
811 set_breakpoint_8xx(brk);
Nicholas Piggin252988c2018-04-01 15:50:36 +1000812 else if (!cpu_has_feature(CPU_FTR_ARCH_207S))
813 // Power7 or earlier
Paul Gortmaker04c32a52014-04-29 15:25:16 -0400814 set_dabr(brk);
Nicholas Piggin252988c2018-04-01 15:50:36 +1000815 else
816 // Shouldn't happen due to higher level checks
817 WARN_ON_ONCE(1);
Michael Neuling9422de32012-12-20 14:06:44 +0000818}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000819
Michael Neuling404b27d2018-03-27 15:37:17 +1100820/* Check if we have DAWR or DABR hardware */
821bool ppc_breakpoint_available(void)
822{
Michael Neulingc1fe1902019-04-01 17:03:12 +1100823 if (dawr_enabled())
824 return true; /* POWER8 DAWR or POWER9 forced DAWR */
Michael Neuling404b27d2018-03-27 15:37:17 +1100825 if (cpu_has_feature(CPU_FTR_ARCH_207S))
826 return false; /* POWER9 with DAWR disabled */
827 /* DABR: Everything but POWER8 and POWER9 */
828 return true;
829}
830EXPORT_SYMBOL_GPL(ppc_breakpoint_available);
831
Michael Neuling9422de32012-12-20 14:06:44 +0000832static inline bool hw_brk_match(struct arch_hw_breakpoint *a,
833 struct arch_hw_breakpoint *b)
834{
835 if (a->address != b->address)
836 return false;
837 if (a->type != b->type)
838 return false;
839 if (a->len != b->len)
840 return false;
Ravi Bangoriab57aeab2019-10-17 15:01:59 +0530841 /* no need to check hw_len. it's calculated from address and len */
Michael Neuling9422de32012-12-20 14:06:44 +0000842 return true;
843}
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100844
Michael Neulingfb096922013-02-13 16:21:37 +0000845#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Cyril Bur5d176f72016-09-14 18:02:16 +1000846
847static inline bool tm_enabled(struct task_struct *tsk)
848{
849 return tsk && tsk->thread.regs && (tsk->thread.regs->msr & MSR_TM);
850}
851
Cyril Buredd00b82018-02-01 12:07:46 +1100852static void tm_reclaim_thread(struct thread_struct *thr, uint8_t cause)
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100853{
Michael Neuling7f821fc2015-11-19 15:44:45 +1100854 /*
855 * Use the current MSR TM suspended bit to track if we have
856 * checkpointed state outstanding.
857 * On signal delivery, we'd normally reclaim the checkpointed
858 * state to obtain stack pointer (see:get_tm_stackpointer()).
859 * This will then directly return to userspace without going
860 * through __switch_to(). However, if the stack frame is bad,
861 * we need to exit this thread which calls __switch_to() which
862 * will again attempt to reclaim the already saved tm state.
863 * Hence we need to check that we've not already reclaimed
864 * this state.
865 * We do this using the current MSR, rather tracking it in
866 * some specific thread_struct bit, as it has the additional
Michael Ellerman027dfac2016-06-01 16:34:37 +1000867 * benefit of checking for a potential TM bad thing exception.
Michael Neuling7f821fc2015-11-19 15:44:45 +1100868 */
869 if (!MSR_TM_SUSPENDED(mfmsr()))
870 return;
871
Cyril Bur91381b92017-11-02 14:09:04 +1100872 giveup_all(container_of(thr, struct task_struct, thread));
873
Cyril Bureb5c3f12017-11-02 14:09:05 +1100874 tm_reclaim(thr, cause);
875
Michael Neulingf48e91e2017-05-08 17:16:26 +1000876 /*
877 * If we are in a transaction and FP is off then we can't have
878 * used FP inside that transaction. Hence the checkpointed
879 * state is the same as the live state. We need to copy the
880 * live state to the checkpointed state so that when the
881 * transaction is restored, the checkpointed state is correct
882 * and the aborted transaction sees the correct state. We use
883 * ckpt_regs.msr here as that's what tm_reclaim will use to
884 * determine if it's going to write the checkpointed state or
885 * not. So either this will write the checkpointed registers,
886 * or reclaim will. Similarly for VMX.
887 */
888 if ((thr->ckpt_regs.msr & MSR_FP) == 0)
889 memcpy(&thr->ckfp_state, &thr->fp_state,
890 sizeof(struct thread_fp_state));
891 if ((thr->ckpt_regs.msr & MSR_VEC) == 0)
892 memcpy(&thr->ckvr_state, &thr->vr_state,
893 sizeof(struct thread_vr_state));
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100894}
895
896void tm_reclaim_current(uint8_t cause)
897{
898 tm_enable();
Cyril Buredd00b82018-02-01 12:07:46 +1100899 tm_reclaim_thread(&current->thread, cause);
Paul Mackerrasd31626f2014-01-13 15:56:29 +1100900}
901
Michael Neulingfb096922013-02-13 16:21:37 +0000902static inline void tm_reclaim_task(struct task_struct *tsk)
903{
904 /* We have to work out if we're switching from/to a task that's in the
905 * middle of a transaction.
906 *
907 * In switching we need to maintain a 2nd register state as
908 * oldtask->thread.ckpt_regs. We tm_reclaim(oldproc); this saves the
Cyril Bur000ec282016-09-23 16:18:25 +1000909 * checkpointed (tbegin) state in ckpt_regs, ckfp_state and
910 * ckvr_state
Michael Neulingfb096922013-02-13 16:21:37 +0000911 *
912 * We also context switch (save) TFHAR/TEXASR/TFIAR in here.
913 */
914 struct thread_struct *thr = &tsk->thread;
915
916 if (!thr->regs)
917 return;
918
919 if (!MSR_TM_ACTIVE(thr->regs->msr))
920 goto out_and_saveregs;
921
Michael Neuling92fb8692017-10-12 21:17:19 +1100922 WARN_ON(tm_suspend_disabled);
923
Michael Neulingfb096922013-02-13 16:21:37 +0000924 TM_DEBUG("--- tm_reclaim on pid %d (NIP=%lx, "
925 "ccr=%lx, msr=%lx, trap=%lx)\n",
926 tsk->pid, thr->regs->nip,
927 thr->regs->ccr, thr->regs->msr,
928 thr->regs->trap);
929
Cyril Buredd00b82018-02-01 12:07:46 +1100930 tm_reclaim_thread(thr, TM_CAUSE_RESCHED);
Michael Neulingfb096922013-02-13 16:21:37 +0000931
932 TM_DEBUG("--- tm_reclaim on pid %d complete\n",
933 tsk->pid);
934
935out_and_saveregs:
936 /* Always save the regs here, even if a transaction's not active.
937 * This context-switches a thread's TM info SPRs. We do it here to
938 * be consistent with the restore path (in recheckpoint) which
939 * cannot happen later in _switch().
940 */
941 tm_save_sprs(thr);
942}
943
Cyril Bureb5c3f12017-11-02 14:09:05 +1100944extern void __tm_recheckpoint(struct thread_struct *thread);
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100945
Cyril Bureb5c3f12017-11-02 14:09:05 +1100946void tm_recheckpoint(struct thread_struct *thread)
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100947{
948 unsigned long flags;
949
Cyril Bur5d176f72016-09-14 18:02:16 +1000950 if (!(thread->regs->msr & MSR_TM))
951 return;
952
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100953 /* We really can't be interrupted here as the TEXASR registers can't
954 * change and later in the trecheckpoint code, we have a userspace R1.
955 * So let's hard disable over this region.
956 */
957 local_irq_save(flags);
958 hard_irq_disable();
959
960 /* The TM SPRs are restored here, so that TEXASR.FS can be set
961 * before the trecheckpoint and no explosion occurs.
962 */
963 tm_restore_sprs(thread);
964
Cyril Bureb5c3f12017-11-02 14:09:05 +1100965 __tm_recheckpoint(thread);
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100966
967 local_irq_restore(flags);
968}
969
Michael Neulingbc2a9402013-02-13 16:21:40 +0000970static inline void tm_recheckpoint_new_task(struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +0000971{
Michael Neulingfb096922013-02-13 16:21:37 +0000972 if (!cpu_has_feature(CPU_FTR_TM))
973 return;
974
975 /* Recheckpoint the registers of the thread we're about to switch to.
976 *
977 * If the task was using FP, we non-lazily reload both the original and
978 * the speculative FP register states. This is because the kernel
979 * doesn't see if/when a TM rollback occurs, so if we take an FP
Cyril Burdc310662016-09-23 16:18:24 +1000980 * unavailable later, we are unable to determine which set of FP regs
Michael Neulingfb096922013-02-13 16:21:37 +0000981 * need to be restored.
982 */
Cyril Bur5d176f72016-09-14 18:02:16 +1000983 if (!tm_enabled(new))
Michael Neulingfb096922013-02-13 16:21:37 +0000984 return;
985
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100986 if (!MSR_TM_ACTIVE(new->thread.regs->msr)){
987 tm_restore_sprs(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000988 return;
Michael Neulinge6b8fd02014-04-04 20:19:48 +1100989 }
Michael Neulingfb096922013-02-13 16:21:37 +0000990 /* Recheckpoint to restore original checkpointed register state. */
Cyril Bureb5c3f12017-11-02 14:09:05 +1100991 TM_DEBUG("*** tm_recheckpoint of pid %d (new->msr 0x%lx)\n",
992 new->pid, new->thread.regs->msr);
Michael Neulingfb096922013-02-13 16:21:37 +0000993
Cyril Bureb5c3f12017-11-02 14:09:05 +1100994 tm_recheckpoint(&new->thread);
Michael Neulingfb096922013-02-13 16:21:37 +0000995
Cyril Burdc310662016-09-23 16:18:24 +1000996 /*
997 * The checkpointed state has been restored but the live state has
998 * not, ensure all the math functionality is turned off to trigger
999 * restore_math() to reload.
1000 */
1001 new->thread.regs->msr &= ~(MSR_FP | MSR_VEC | MSR_VSX);
Michael Neulingfb096922013-02-13 16:21:37 +00001002
1003 TM_DEBUG("*** tm_recheckpoint of pid %d complete "
1004 "(kernel msr 0x%lx)\n",
1005 new->pid, mfmsr());
1006}
1007
Cyril Burdc310662016-09-23 16:18:24 +10001008static inline void __switch_to_tm(struct task_struct *prev,
1009 struct task_struct *new)
Michael Neulingfb096922013-02-13 16:21:37 +00001010{
1011 if (cpu_has_feature(CPU_FTR_TM)) {
Cyril Bur5d176f72016-09-14 18:02:16 +10001012 if (tm_enabled(prev) || tm_enabled(new))
1013 tm_enable();
1014
1015 if (tm_enabled(prev)) {
1016 prev->thread.load_tm++;
1017 tm_reclaim_task(prev);
1018 if (!MSR_TM_ACTIVE(prev->thread.regs->msr) && prev->thread.load_tm == 0)
1019 prev->thread.regs->msr &= ~MSR_TM;
1020 }
1021
Cyril Burdc310662016-09-23 16:18:24 +10001022 tm_recheckpoint_new_task(new);
Michael Neulingfb096922013-02-13 16:21:37 +00001023 }
1024}
Paul Mackerrasd31626f2014-01-13 15:56:29 +11001025
1026/*
1027 * This is called if we are on the way out to userspace and the
1028 * TIF_RESTORE_TM flag is set. It checks if we need to reload
1029 * FP and/or vector state and does so if necessary.
1030 * If userspace is inside a transaction (whether active or
1031 * suspended) and FP/VMX/VSX instructions have ever been enabled
1032 * inside that transaction, then we have to keep them enabled
1033 * and keep the FP/VMX/VSX state loaded while ever the transaction
1034 * continues. The reason is that if we didn't, and subsequently
1035 * got a FP/VMX/VSX unavailable interrupt inside a transaction,
1036 * we don't know whether it's the same transaction, and thus we
1037 * don't know which of the checkpointed state and the transactional
1038 * state to use.
1039 */
1040void restore_tm_state(struct pt_regs *regs)
1041{
1042 unsigned long msr_diff;
1043
Cyril Burdc310662016-09-23 16:18:24 +10001044 /*
1045 * This is the only moment we should clear TIF_RESTORE_TM as
1046 * it is here that ckpt_regs.msr and pt_regs.msr become the same
1047 * again, anything else could lead to an incorrect ckpt_msr being
1048 * saved and therefore incorrect signal contexts.
1049 */
Paul Mackerrasd31626f2014-01-13 15:56:29 +11001050 clear_thread_flag(TIF_RESTORE_TM);
1051 if (!MSR_TM_ACTIVE(regs->msr))
1052 return;
1053
Anshuman Khandual829023d2015-07-06 16:24:10 +05301054 msr_diff = current->thread.ckpt_regs.msr & ~regs->msr;
Paul Mackerrasd31626f2014-01-13 15:56:29 +11001055 msr_diff &= MSR_FP | MSR_VEC | MSR_VSX;
Cyril Bur70fe3d92016-02-29 17:53:47 +11001056
Cyril Burdc16b552016-09-23 16:18:08 +10001057 /* Ensure that restore_math() will restore */
1058 if (msr_diff & MSR_FP)
1059 current->thread.load_fp = 1;
Valentin Rothberg39715bf2016-10-05 07:57:26 +02001060#ifdef CONFIG_ALTIVEC
Cyril Burdc16b552016-09-23 16:18:08 +10001061 if (cpu_has_feature(CPU_FTR_ALTIVEC) && msr_diff & MSR_VEC)
1062 current->thread.load_vec = 1;
1063#endif
Cyril Bur70fe3d92016-02-29 17:53:47 +11001064 restore_math(regs);
1065
Paul Mackerrasd31626f2014-01-13 15:56:29 +11001066 regs->msr |= msr_diff;
1067}
1068
Michael Neulingfb096922013-02-13 16:21:37 +00001069#else
1070#define tm_recheckpoint_new_task(new)
Cyril Burdc310662016-09-23 16:18:24 +10001071#define __switch_to_tm(prev, new)
Michael Neulingfb096922013-02-13 16:21:37 +00001072#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Michael Neuling9422de32012-12-20 14:06:44 +00001073
Anton Blanchard152d5232015-10-29 11:43:55 +11001074static inline void save_sprs(struct thread_struct *t)
1075{
1076#ifdef CONFIG_ALTIVEC
Oliver O'Halloran01d7c2a22016-03-08 09:08:47 +11001077 if (cpu_has_feature(CPU_FTR_ALTIVEC))
Anton Blanchard152d5232015-10-29 11:43:55 +11001078 t->vrsave = mfspr(SPRN_VRSAVE);
1079#endif
1080#ifdef CONFIG_PPC_BOOK3S_64
1081 if (cpu_has_feature(CPU_FTR_DSCR))
1082 t->dscr = mfspr(SPRN_DSCR);
1083
1084 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
1085 t->bescr = mfspr(SPRN_BESCR);
1086 t->ebbhr = mfspr(SPRN_EBBHR);
1087 t->ebbrr = mfspr(SPRN_EBBRR);
1088
1089 t->fscr = mfspr(SPRN_FSCR);
1090
1091 /*
1092 * Note that the TAR is not available for use in the kernel.
1093 * (To provide this, the TAR should be backed up/restored on
1094 * exception entry/exit instead, and be in pt_regs. FIXME,
1095 * this should be in pt_regs anyway (for debug).)
1096 */
1097 t->tar = mfspr(SPRN_TAR);
1098 }
1099#endif
Ram Pai06bb53b2018-01-18 17:50:31 -08001100
1101 thread_pkey_regs_save(t);
Anton Blanchard152d5232015-10-29 11:43:55 +11001102}
1103
1104static inline void restore_sprs(struct thread_struct *old_thread,
1105 struct thread_struct *new_thread)
1106{
1107#ifdef CONFIG_ALTIVEC
1108 if (cpu_has_feature(CPU_FTR_ALTIVEC) &&
1109 old_thread->vrsave != new_thread->vrsave)
1110 mtspr(SPRN_VRSAVE, new_thread->vrsave);
1111#endif
1112#ifdef CONFIG_PPC_BOOK3S_64
1113 if (cpu_has_feature(CPU_FTR_DSCR)) {
1114 u64 dscr = get_paca()->dscr_default;
Michael Neulingb57bd2d2016-06-09 12:31:08 +10001115 if (new_thread->dscr_inherit)
Anton Blanchard152d5232015-10-29 11:43:55 +11001116 dscr = new_thread->dscr;
Anton Blanchard152d5232015-10-29 11:43:55 +11001117
1118 if (old_thread->dscr != dscr)
1119 mtspr(SPRN_DSCR, dscr);
Anton Blanchard152d5232015-10-29 11:43:55 +11001120 }
1121
1122 if (cpu_has_feature(CPU_FTR_ARCH_207S)) {
1123 if (old_thread->bescr != new_thread->bescr)
1124 mtspr(SPRN_BESCR, new_thread->bescr);
1125 if (old_thread->ebbhr != new_thread->ebbhr)
1126 mtspr(SPRN_EBBHR, new_thread->ebbhr);
1127 if (old_thread->ebbrr != new_thread->ebbrr)
1128 mtspr(SPRN_EBBRR, new_thread->ebbrr);
1129
Michael Neulingb57bd2d2016-06-09 12:31:08 +10001130 if (old_thread->fscr != new_thread->fscr)
1131 mtspr(SPRN_FSCR, new_thread->fscr);
1132
Anton Blanchard152d5232015-10-29 11:43:55 +11001133 if (old_thread->tar != new_thread->tar)
1134 mtspr(SPRN_TAR, new_thread->tar);
1135 }
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001136
Alastair D'Silva3449f192018-05-11 16:12:58 +10001137 if (cpu_has_feature(CPU_FTR_P9_TIDR) &&
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001138 old_thread->tidr != new_thread->tidr)
1139 mtspr(SPRN_TIDR, new_thread->tidr);
Anton Blanchard152d5232015-10-29 11:43:55 +11001140#endif
Ram Pai06bb53b2018-01-18 17:50:31 -08001141
1142 thread_pkey_regs_restore(new_thread, old_thread);
Anton Blanchard152d5232015-10-29 11:43:55 +11001143}
1144
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001145struct task_struct *__switch_to(struct task_struct *prev,
1146 struct task_struct *new)
1147{
1148 struct thread_struct *new_thread, *old_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001149 struct task_struct *last;
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001150#ifdef CONFIG_PPC_BOOK3S_64
1151 struct ppc64_tlb_batch *batch;
1152#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001153
Anton Blanchard152d5232015-10-29 11:43:55 +11001154 new_thread = &new->thread;
1155 old_thread = &current->thread;
1156
Michael Neuling7ba5fef2013-10-02 17:15:14 +10001157 WARN_ON(!irqs_disabled());
1158
Michael Ellerman4e003742017-10-19 15:08:43 +11001159#ifdef CONFIG_PPC_BOOK3S_64
Christoph Lameter69111ba2014-10-21 15:23:25 -05001160 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001161 if (batch->active) {
1162 current_thread_info()->local_flags |= _TLF_LAZY_MMU;
1163 if (batch->index)
1164 __flush_tlb_pending(batch);
1165 batch->active = 0;
1166 }
Michael Ellerman4e003742017-10-19 15:08:43 +11001167#endif /* CONFIG_PPC_BOOK3S_64 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001168
Anton Blanchardf3d885c2015-10-29 11:44:10 +11001169#ifdef CONFIG_PPC_ADV_DEBUG_REGS
1170 switch_booke_debug_regs(&new->thread.debug);
1171#else
1172/*
1173 * For PPC_BOOK3S_64, we use the hw-breakpoint interfaces that would
1174 * schedule DABR
1175 */
1176#ifndef CONFIG_HAVE_HW_BREAKPOINT
1177 if (unlikely(!hw_brk_match(this_cpu_ptr(&current_brk), &new->thread.hw_brk)))
1178 __set_breakpoint(&new->thread.hw_brk);
1179#endif /* CONFIG_HAVE_HW_BREAKPOINT */
1180#endif
1181
1182 /*
1183 * We need to save SPRs before treclaim/trecheckpoint as these will
1184 * change a number of them.
1185 */
1186 save_sprs(&prev->thread);
1187
Anton Blanchardf3d885c2015-10-29 11:44:10 +11001188 /* Save FPU, Altivec, VSX and SPE state */
1189 giveup_all(prev);
1190
Cyril Burdc310662016-09-23 16:18:24 +10001191 __switch_to_tm(prev, new);
1192
Nicholas Piggine4c0fc52017-06-09 01:36:06 +10001193 if (!radix_enabled()) {
1194 /*
1195 * We can't take a PMU exception inside _switch() since there
1196 * is a window where the kernel stack SLB and the kernel stack
1197 * are out of sync. Hard disable here.
1198 */
1199 hard_irq_disable();
1200 }
Michael Neulingbc2a9402013-02-13 16:21:40 +00001201
Anton Blanchard20dbe672015-12-10 20:44:39 +11001202 /*
1203 * Call restore_sprs() before calling _switch(). If we move it after
1204 * _switch() then we miss out on calling it for new tasks. The reason
1205 * for this is we manually create a stack frame for new tasks that
1206 * directly returns through ret_from_fork() or
1207 * ret_from_kernel_thread(). See copy_thread() for details.
1208 */
Anton Blanchardf3d885c2015-10-29 11:44:10 +11001209 restore_sprs(old_thread, new_thread);
1210
Anton Blanchard20dbe672015-12-10 20:44:39 +11001211 last = _switch(old_thread, new_thread);
1212
Michael Ellerman4e003742017-10-19 15:08:43 +11001213#ifdef CONFIG_PPC_BOOK3S_64
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001214 if (current_thread_info()->local_flags & _TLF_LAZY_MMU) {
1215 current_thread_info()->local_flags &= ~_TLF_LAZY_MMU;
Christoph Lameter69111ba2014-10-21 15:23:25 -05001216 batch = this_cpu_ptr(&ppc64_tlb_batch);
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001217 batch->active = 1;
1218 }
Cyril Bur70fe3d92016-02-29 17:53:47 +11001219
Christophe Leroy05b98792019-01-17 23:25:12 +11001220 if (current->thread.regs) {
1221 restore_math(current->thread.regs);
Nicholas Piggin07d2a622017-06-09 01:36:09 +10001222
1223 /*
1224 * The copy-paste buffer can only store into foreign real
1225 * addresses, so unprivileged processes can not see the
1226 * data or use it in any way unless they have foreign real
Sukadev Bhattiprolu9d2a4d72017-11-07 18:23:54 -08001227 * mappings. If the new process has the foreign real address
1228 * mappings, we must issue a cp_abort to clear any state and
1229 * prevent snooping, corruption or a covert channel.
Nicholas Piggin07d2a622017-06-09 01:36:09 +10001230 */
Haren Mynenic4206442020-04-15 23:08:11 -07001231 if (current->mm &&
1232 atomic_read(&current->mm->context.vas_windows))
Sukadev Bhattiprolu9d2a4d72017-11-07 18:23:54 -08001233 asm volatile(PPC_CP_ABORT);
Nicholas Piggin07d2a622017-06-09 01:36:09 +10001234 }
Michael Ellerman4e003742017-10-19 15:08:43 +11001235#endif /* CONFIG_PPC_BOOK3S_64 */
Peter Zijlstrad6bf29b2011-05-24 17:11:48 -07001236
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001237 return last;
1238}
1239
Christophe Leroydf131022018-10-06 16:51:16 +00001240#define NR_INSN_TO_PRINT 16
Paul Mackerras06d67d52005-10-10 22:29:05 +10001241
Paul Mackerras06d67d52005-10-10 22:29:05 +10001242static void show_instructions(struct pt_regs *regs)
1243{
1244 int i;
Christophe Leroydf131022018-10-06 16:51:16 +00001245 unsigned long pc = regs->nip - (NR_INSN_TO_PRINT * 3 / 4 * sizeof(int));
Paul Mackerras06d67d52005-10-10 22:29:05 +10001246
1247 printk("Instruction dump:");
1248
Christophe Leroydf131022018-10-06 16:51:16 +00001249 for (i = 0; i < NR_INSN_TO_PRINT; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001250 int instr;
1251
1252 if (!(i % 8))
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001253 pr_cont("\n");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001254
Scott Wood0de2d822007-09-28 04:38:55 +10001255#if !defined(CONFIG_BOOKE)
1256 /* If executing with the IMMU off, adjust pc rather
1257 * than print XXXXXXXX.
1258 */
1259 if (!(regs->msr & MSR_IR))
1260 pc = (unsigned long)phys_to_virt(pc);
1261#endif
1262
Anton Blanchard00ae36d2006-10-13 12:17:16 +10001263 if (!__kernel_text_address(pc) ||
Christophe Leroy3b35bd42018-10-06 16:51:12 +00001264 probe_kernel_address((const void *)pc, instr)) {
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001265 pr_cont("XXXXXXXX ");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001266 } else {
1267 if (regs->nip == pc)
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001268 pr_cont("<%08x> ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001269 else
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001270 pr_cont("%08x ", instr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001271 }
1272
1273 pc += sizeof(int);
1274 }
1275
Andrew Donnellan2ffd04d2016-11-04 17:20:40 +11001276 pr_cont("\n");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001277}
1278
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001279void show_user_instructions(struct pt_regs *regs)
1280{
1281 unsigned long pc;
Christophe Leroydf131022018-10-06 16:51:16 +00001282 int n = NR_INSN_TO_PRINT;
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001283 struct seq_buf s;
1284 char buf[96]; /* enough for 8 times 9 + 2 chars */
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001285
Christophe Leroydf131022018-10-06 16:51:16 +00001286 pc = regs->nip - (NR_INSN_TO_PRINT * 3 / 4 * sizeof(int));
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001287
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001288 seq_buf_init(&s, buf, sizeof(buf));
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001289
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001290 while (n) {
1291 int i;
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001292
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001293 seq_buf_clear(&s);
1294
1295 for (i = 0; i < 8 && n; i++, n--, pc += sizeof(int)) {
1296 int instr;
1297
Christophe Leroydef0bfd2020-01-23 17:30:47 +00001298 if (probe_user_read(&instr, (void __user *)pc, sizeof(instr))) {
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001299 seq_buf_printf(&s, "XXXXXXXX ");
1300 continue;
1301 }
1302 seq_buf_printf(&s, regs->nip == pc ? "<%08x> " : "%08x ", instr);
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001303 }
1304
Christophe Leroyfb2d9502018-10-06 16:51:14 +00001305 if (!seq_buf_has_overflowed(&s))
1306 pr_info("%s[%d]: code: %s\n", current->comm,
1307 current->pid, s.buffer);
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001308 }
Murilo Opsfelder Araujo88b0fe12018-08-01 18:33:19 -03001309}
1310
Michael Neuling801c0b22015-11-20 15:15:32 +11001311struct regbit {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001312 unsigned long bit;
1313 const char *name;
Michael Neuling801c0b22015-11-20 15:15:32 +11001314};
1315
1316static struct regbit msr_bits[] = {
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001317#if defined(CONFIG_PPC64) && !defined(CONFIG_BOOKE)
1318 {MSR_SF, "SF"},
1319 {MSR_HV, "HV"},
1320#endif
1321 {MSR_VEC, "VEC"},
1322 {MSR_VSX, "VSX"},
1323#ifdef CONFIG_BOOKE
1324 {MSR_CE, "CE"},
1325#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001326 {MSR_EE, "EE"},
1327 {MSR_PR, "PR"},
1328 {MSR_FP, "FP"},
1329 {MSR_ME, "ME"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001330#ifdef CONFIG_BOOKE
Kumar Gala1b983262008-11-19 04:39:53 +00001331 {MSR_DE, "DE"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001332#else
1333 {MSR_SE, "SE"},
1334 {MSR_BE, "BE"},
1335#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001336 {MSR_IR, "IR"},
1337 {MSR_DR, "DR"},
Anton Blanchard3bfd0c9c2011-11-24 19:35:57 +00001338 {MSR_PMM, "PMM"},
1339#ifndef CONFIG_BOOKE
1340 {MSR_RI, "RI"},
1341 {MSR_LE, "LE"},
1342#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10001343 {0, NULL}
1344};
1345
Michael Neuling801c0b22015-11-20 15:15:32 +11001346static void print_bits(unsigned long val, struct regbit *bits, const char *sep)
Paul Mackerras06d67d52005-10-10 22:29:05 +10001347{
Michael Neuling801c0b22015-11-20 15:15:32 +11001348 const char *s = "";
Paul Mackerras06d67d52005-10-10 22:29:05 +10001349
Paul Mackerras06d67d52005-10-10 22:29:05 +10001350 for (; bits->bit; ++bits)
1351 if (val & bits->bit) {
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001352 pr_cont("%s%s", s, bits->name);
Michael Neuling801c0b22015-11-20 15:15:32 +11001353 s = sep;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001354 }
Michael Neuling801c0b22015-11-20 15:15:32 +11001355}
1356
1357#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1358static struct regbit msr_tm_bits[] = {
1359 {MSR_TS_T, "T"},
1360 {MSR_TS_S, "S"},
1361 {MSR_TM, "E"},
1362 {0, NULL}
1363};
1364
1365static void print_tm_bits(unsigned long val)
1366{
1367/*
1368 * This only prints something if at least one of the TM bit is set.
1369 * Inside the TM[], the output means:
1370 * E: Enabled (bit 32)
1371 * S: Suspended (bit 33)
1372 * T: Transactional (bit 34)
1373 */
1374 if (val & (MSR_TM | MSR_TS_S | MSR_TS_T)) {
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001375 pr_cont(",TM[");
Michael Neuling801c0b22015-11-20 15:15:32 +11001376 print_bits(val, msr_tm_bits, "");
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001377 pr_cont("]");
Michael Neuling801c0b22015-11-20 15:15:32 +11001378 }
1379}
1380#else
1381static void print_tm_bits(unsigned long val) {}
1382#endif
1383
1384static void print_msr_bits(unsigned long val)
1385{
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001386 pr_cont("<");
Michael Neuling801c0b22015-11-20 15:15:32 +11001387 print_bits(val, msr_bits, ",");
1388 print_tm_bits(val);
Michael Ellermandb5ba5a2016-11-02 22:20:47 +11001389 pr_cont(">");
Paul Mackerras06d67d52005-10-10 22:29:05 +10001390}
1391
1392#ifdef CONFIG_PPC64
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001393#define REG "%016lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001394#define REGS_PER_LINE 4
1395#define LAST_VOLATILE 13
1396#else
anton@samba.orgf6f7dde2007-03-20 20:38:19 -05001397#define REG "%08lx"
Paul Mackerras06d67d52005-10-10 22:29:05 +10001398#define REGS_PER_LINE 8
1399#define LAST_VOLATILE 12
1400#endif
1401
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001402void show_regs(struct pt_regs * regs)
1403{
1404 int i, trap;
1405
Tejun Heoa43cb952013-04-30 15:27:17 -07001406 show_regs_print_info(KERN_DEFAULT);
1407
Michael Ellermana6036102017-08-23 23:56:24 +10001408 printk("NIP: "REG" LR: "REG" CTR: "REG"\n",
Paul Mackerras06d67d52005-10-10 22:29:05 +10001409 regs->nip, regs->link, regs->ctr);
Michael Ellerman182dc9c2017-12-18 16:33:36 +11001410 printk("REGS: %px TRAP: %04lx %s (%s)\n",
Serge E. Hallyn96b644b2006-10-02 02:18:13 -07001411 regs, regs->trap, print_tainted(), init_utsname()->release);
Michael Ellermana6036102017-08-23 23:56:24 +10001412 printk("MSR: "REG" ", regs->msr);
Michael Neuling801c0b22015-11-20 15:15:32 +11001413 print_msr_bits(regs->msr);
Michael Ellermanf6fc73f2017-08-23 23:56:23 +10001414 pr_cont(" CR: %08lx XER: %08lx\n", regs->ccr, regs->xer);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001415 trap = TRAP(regs);
Benjamin Herrenschmidt2271db22018-01-12 13:28:49 +11001416 if ((TRAP(regs) != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
Michael Ellerman7dae8652016-11-03 20:45:26 +11001417 pr_cont("CFAR: "REG" ", regs->orig_gpr3);
Anton Blanchardc5400642013-11-15 15:41:19 +11001418 if (trap == 0x200 || trap == 0x300 || trap == 0x600)
Kumar Galaba28c9a2011-10-06 02:53:38 +00001419#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
Michael Ellerman7dae8652016-11-03 20:45:26 +11001420 pr_cont("DEAR: "REG" ESR: "REG" ", regs->dar, regs->dsisr);
Kumar Gala14170782007-07-26 00:46:15 -05001421#else
Michael Ellerman7dae8652016-11-03 20:45:26 +11001422 pr_cont("DAR: "REG" DSISR: %08lx ", regs->dar, regs->dsisr);
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001423#endif
1424#ifdef CONFIG_PPC64
Nicholas Piggin3130a7b2018-05-10 11:04:24 +10001425 pr_cont("IRQMASK: %lx ", regs->softe);
Anton Blanchard9db8bcf2013-11-15 15:48:38 +11001426#endif
1427#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Anton Blanchard6d888d12013-11-18 13:19:17 +11001428 if (MSR_TM_ACTIVE(regs->msr))
Michael Ellerman7dae8652016-11-03 20:45:26 +11001429 pr_cont("\nPACATMSCRATCH: %016llx ", get_paca()->tm_scratch);
Kumar Gala14170782007-07-26 00:46:15 -05001430#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001431
1432 for (i = 0; i < 32; i++) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10001433 if ((i % REGS_PER_LINE) == 0)
Michael Ellerman7dae8652016-11-03 20:45:26 +11001434 pr_cont("\nGPR%02d: ", i);
1435 pr_cont(REG " ", regs->gpr[i]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001436 if (i == LAST_VOLATILE && !FULL_REGS(regs))
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001437 break;
1438 }
Michael Ellerman7dae8652016-11-03 20:45:26 +11001439 pr_cont("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001440#ifdef CONFIG_KALLSYMS
1441 /*
1442 * Lookup NIP late so we have the best change of getting the
1443 * above info out without failing
1444 */
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10001445 printk("NIP ["REG"] %pS\n", regs->nip, (void *)regs->nip);
1446 printk("LR ["REG"] %pS\n", regs->link, (void *)regs->link);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001447#endif
1448 show_stack(current, (unsigned long *) regs->gpr[1]);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001449 if (!user_mode(regs))
1450 show_instructions(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001451}
1452
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001453void flush_thread(void)
1454{
K.Prasade0780b72011-02-10 04:44:35 +00001455#ifdef CONFIG_HAVE_HW_BREAKPOINT
K.Prasad5aae8a52010-06-15 11:35:19 +05301456 flush_ptrace_hw_breakpoint(current);
K.Prasade0780b72011-02-10 04:44:35 +00001457#else /* CONFIG_HAVE_HW_BREAKPOINT */
Dave Kleikamp3bffb652010-02-08 11:51:18 +00001458 set_debug_reg_defaults(&current->thread);
K.Prasade0780b72011-02-10 04:44:35 +00001459#endif /* CONFIG_HAVE_HW_BREAKPOINT */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001460}
1461
Nicholas Piggin425d3312018-09-15 01:30:55 +10001462#ifdef CONFIG_PPC_BOOK3S_64
1463void arch_setup_new_exec(void)
1464{
1465 if (radix_enabled())
1466 return;
1467 hash__setup_new_exec();
1468}
1469#endif
1470
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001471#ifdef CONFIG_PPC64
Alastair D'Silva71cc64a2018-05-11 16:12:59 +10001472/**
1473 * Assign a TIDR (thread ID) for task @t and set it in the thread
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001474 * structure. For now, we only support setting TIDR for 'current' task.
Alastair D'Silva71cc64a2018-05-11 16:12:59 +10001475 *
1476 * Since the TID value is a truncated form of it PID, it is possible
1477 * (but unlikely) for 2 threads to have the same TID. In the unlikely event
1478 * that 2 threads share the same TID and are waiting, one of the following
1479 * cases will happen:
1480 *
1481 * 1. The correct thread is running, the wrong thread is not
1482 * In this situation, the correct thread is woken and proceeds to pass it's
1483 * condition check.
1484 *
1485 * 2. Neither threads are running
1486 * In this situation, neither thread will be woken. When scheduled, the waiting
1487 * threads will execute either a wait, which will return immediately, followed
1488 * by a condition check, which will pass for the correct thread and fail
1489 * for the wrong thread, or they will execute the condition check immediately.
1490 *
1491 * 3. The wrong thread is running, the correct thread is not
1492 * The wrong thread will be woken, but will fail it's condition check and
1493 * re-execute wait. The correct thread, when scheduled, will execute either
1494 * it's condition check (which will pass), or wait, which returns immediately
1495 * when called the first time after the thread is scheduled, followed by it's
1496 * condition check (which will pass).
1497 *
1498 * 4. Both threads are running
1499 * Both threads will be woken. The wrong thread will fail it's condition check
1500 * and execute another wait, while the correct thread will pass it's condition
1501 * check.
1502 *
1503 * @t: the task to set the thread ID for
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001504 */
1505int set_thread_tidr(struct task_struct *t)
1506{
Alastair D'Silva3449f192018-05-11 16:12:58 +10001507 if (!cpu_has_feature(CPU_FTR_P9_TIDR))
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001508 return -EINVAL;
1509
1510 if (t != current)
1511 return -EINVAL;
1512
Vaibhav Jain7e4d4232017-11-24 14:03:38 +05301513 if (t->thread.tidr)
1514 return 0;
1515
Alastair D'Silva71cc64a2018-05-11 16:12:59 +10001516 t->thread.tidr = (u16)task_pid_nr(t);
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001517 mtspr(SPRN_TIDR, t->thread.tidr);
1518
1519 return 0;
1520}
Christophe Lombardb1db5512018-01-11 09:55:25 +01001521EXPORT_SYMBOL_GPL(set_thread_tidr);
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001522
1523#endif /* CONFIG_PPC64 */
1524
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001525void
1526release_thread(struct task_struct *t)
1527{
1528}
1529
1530/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001531 * this gets called so that we can store coprocessor state into memory and
1532 * copy the current task into the new thread.
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001533 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001534int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001535{
Anton Blanchard579e6332015-10-29 11:44:09 +11001536 flush_all_to_thread(src);
Michael Neuling621b5062014-03-03 14:21:40 +11001537 /*
1538 * Flush TM state out so we can copy it. __switch_to_tm() does this
1539 * flush but it removes the checkpointed state from the current CPU and
1540 * transitions the CPU out of TM mode. Hence we need to call
1541 * tm_recheckpoint_new_task() (on the same task) to restore the
1542 * checkpointed state back and the TM mode.
Cyril Bur5d176f72016-09-14 18:02:16 +10001543 *
1544 * Can't pass dst because it isn't ready. Doesn't matter, passing
1545 * dst is only important for __switch_to()
Michael Neuling621b5062014-03-03 14:21:40 +11001546 */
Cyril Burdc310662016-09-23 16:18:24 +10001547 __switch_to_tm(src, src);
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001548
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001549 *dst = *src;
Michael Ellerman330a1eb2013-06-28 18:15:16 +10001550
1551 clear_task_ebb(dst);
1552
Suresh Siddha55ccf3f2012-05-16 15:03:51 -07001553 return 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001554}
1555
Michael Ellermancec15482014-07-10 12:29:21 +10001556static void setup_ksp_vsid(struct task_struct *p, unsigned long sp)
1557{
Michael Ellerman4e003742017-10-19 15:08:43 +11001558#ifdef CONFIG_PPC_BOOK3S_64
Michael Ellermancec15482014-07-10 12:29:21 +10001559 unsigned long sp_vsid;
1560 unsigned long llp = mmu_psize_defs[mmu_linear_psize].sllp;
1561
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +10001562 if (radix_enabled())
1563 return;
1564
Michael Ellermancec15482014-07-10 12:29:21 +10001565 if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
1566 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_1T)
1567 << SLB_VSID_SHIFT_1T;
1568 else
1569 sp_vsid = get_kernel_vsid(sp, MMU_SEGSIZE_256M)
1570 << SLB_VSID_SHIFT;
1571 sp_vsid |= SLB_VSID_KERNEL | llp;
1572 p->thread.ksp_vsid = sp_vsid;
1573#endif
1574}
1575
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001576/*
1577 * Copy a thread..
1578 */
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001579
Alex Dowad6eca8932015-03-13 20:14:46 +02001580/*
1581 * Copy architecture-specific thread state
1582 */
Nicholas Pigginfacd04a2019-08-27 13:30:06 +10001583int copy_thread_tls(unsigned long clone_flags, unsigned long usp,
1584 unsigned long kthread_arg, struct task_struct *p,
1585 unsigned long tls)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001586{
1587 struct pt_regs *childregs, *kregs;
1588 extern void ret_from_fork(void);
Al Viro58254e12012-09-12 18:32:42 -04001589 extern void ret_from_kernel_thread(void);
1590 void (*f)(void);
Al Viro0cec6fd2006-01-12 01:06:02 -08001591 unsigned long sp = (unsigned long)task_stack_page(p) + THREAD_SIZE;
Michael Ellerman5d31a962016-03-24 22:04:04 +11001592 struct thread_info *ti = task_thread_info(p);
1593
Christophe Leroyed1cd6d2019-01-31 10:08:58 +00001594 klp_init_thread_info(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001595
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001596 /* Copy registers */
1597 sp -= sizeof(struct pt_regs);
1598 childregs = (struct pt_regs *) sp;
Al Viroab758192012-10-21 22:33:39 -04001599 if (unlikely(p->flags & PF_KTHREAD)) {
Alex Dowad6eca8932015-03-13 20:14:46 +02001600 /* kernel thread */
Al Viro58254e12012-09-12 18:32:42 -04001601 memset(childregs, 0, sizeof(struct pt_regs));
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001602 childregs->gpr[1] = sp + sizeof(struct pt_regs);
Anton Blanchard7cedd602014-02-04 16:08:51 +11001603 /* function */
1604 if (usp)
1605 childregs->gpr[14] = ppc_function_entry((void *)usp);
Al Viro58254e12012-09-12 18:32:42 -04001606#ifdef CONFIG_PPC64
Al Virob5e2fc12006-01-12 01:06:01 -08001607 clear_tsk_thread_flag(p, TIF_32BIT);
Madhavan Srinivasanc2e480b2017-12-20 09:25:42 +05301608 childregs->softe = IRQS_ENABLED;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001609#endif
Alex Dowad6eca8932015-03-13 20:14:46 +02001610 childregs->gpr[15] = kthread_arg;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001611 p->thread.regs = NULL; /* no user register state */
Al Viro138d1ce2012-10-11 08:41:43 -04001612 ti->flags |= _TIF_RESTOREALL;
Al Viro58254e12012-09-12 18:32:42 -04001613 f = ret_from_kernel_thread;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001614 } else {
Alex Dowad6eca8932015-03-13 20:14:46 +02001615 /* user thread */
Al Viroafa86fc2012-10-22 22:51:14 -04001616 struct pt_regs *regs = current_pt_regs();
Al Viro58254e12012-09-12 18:32:42 -04001617 CHECK_FULL_REGS(regs);
1618 *childregs = *regs;
Al Viroea516b12012-10-21 22:28:43 -04001619 if (usp)
1620 childregs->gpr[1] = usp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001621 p->thread.regs = childregs;
Al Viro58254e12012-09-12 18:32:42 -04001622 childregs->gpr[3] = 0; /* Result from fork() */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001623 if (clone_flags & CLONE_SETTLS) {
Denis Kirjanov9904b002010-07-29 22:04:39 +00001624 if (!is_32bit_task())
Nicholas Pigginfacd04a2019-08-27 13:30:06 +10001625 childregs->gpr[13] = tls;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001626 else
Nicholas Pigginfacd04a2019-08-27 13:30:06 +10001627 childregs->gpr[2] = tls;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001628 }
Al Viro58254e12012-09-12 18:32:42 -04001629
1630 f = ret_from_fork;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001631 }
Cyril Burd272f662016-02-29 17:53:46 +11001632 childregs->msr &= ~(MSR_FP|MSR_VEC|MSR_VSX);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001633 sp -= STACK_FRAME_OVERHEAD;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001634
1635 /*
1636 * The way this works is that at some point in the future
1637 * some task will call _switch to switch to the new task.
1638 * That will pop off the stack frame created below and start
1639 * the new task running at ret_from_fork. The new task will
1640 * do some house keeping and then return from the fork or clone
1641 * system call, using the stack frame created above.
1642 */
Li Zhongaf945cf2013-05-06 22:44:41 +00001643 ((unsigned long *)sp)[0] = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001644 sp -= sizeof(struct pt_regs);
1645 kregs = (struct pt_regs *) sp;
1646 sp -= STACK_FRAME_OVERHEAD;
1647 p->thread.ksp = sp;
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001648#ifdef CONFIG_PPC32
Christophe Leroya7916a12019-01-31 10:09:00 +00001649 p->thread.ksp_limit = (unsigned long)end_of_stack(p);
Benjamin Herrenschmidtcbc95652013-09-24 15:17:21 +10001650#endif
Oleg Nesterov28d170ab2013-04-21 06:47:59 +00001651#ifdef CONFIG_HAVE_HW_BREAKPOINT
1652 p->thread.ptrace_bps[0] = NULL;
1653#endif
1654
Paul Mackerras18461962013-09-10 20:21:10 +10001655 p->thread.fp_save_area = NULL;
1656#ifdef CONFIG_ALTIVEC
1657 p->thread.vr_save_area = NULL;
1658#endif
1659
Michael Ellermancec15482014-07-10 12:29:21 +10001660 setup_ksp_vsid(p, sp);
Paul Mackerras06d67d52005-10-10 22:29:05 +10001661
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001662#ifdef CONFIG_PPC64
1663 if (cpu_has_feature(CPU_FTR_DSCR)) {
Anton Blanchard1021cb22012-09-03 16:49:47 +00001664 p->thread.dscr_inherit = current->thread.dscr_inherit;
Anton Blancharddb1231dc2015-12-09 20:11:47 +11001665 p->thread.dscr = mfspr(SPRN_DSCR);
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001666 }
Haren Myneni92779242012-12-06 21:49:56 +00001667 if (cpu_has_feature(CPU_FTR_HAS_PPR))
Nicholas Piggin4c2de742018-10-13 00:15:16 +11001668 childregs->ppr = DEFAULT_PPR;
Sukadev Bhattiproluec233ed2017-11-07 18:23:53 -08001669
1670 p->thread.tidr = 0;
Alexey Kardashevskiyefcac652011-03-02 15:18:48 +00001671#endif
Anton Blanchard7cedd602014-02-04 16:08:51 +11001672 kregs->nip = ppc_function_entry(f);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001673 return 0;
1674}
1675
Nicholas Piggin5434ae72018-09-15 01:30:56 +10001676void preload_new_slb_context(unsigned long start, unsigned long sp);
1677
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001678/*
1679 * Set up a thread for executing a new program
1680 */
Paul Mackerras06d67d52005-10-10 22:29:05 +10001681void start_thread(struct pt_regs *regs, unsigned long start, unsigned long sp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001682{
Michael Ellerman90eac722005-10-21 16:01:33 +10001683#ifdef CONFIG_PPC64
1684 unsigned long load_addr = regs->gpr[2]; /* saved by ELF_PLAT_INIT */
Nicholas Piggin5434ae72018-09-15 01:30:56 +10001685
1686#ifdef CONFIG_PPC_BOOK3S_64
Aneesh Kumar K.Vf89bd8b2019-04-09 09:33:28 +05301687 if (!radix_enabled())
1688 preload_new_slb_context(start, sp);
Nicholas Piggin5434ae72018-09-15 01:30:56 +10001689#endif
Michael Ellerman90eac722005-10-21 16:01:33 +10001690#endif
1691
Paul Mackerras06d67d52005-10-10 22:29:05 +10001692 /*
1693 * If we exec out of a kernel thread then thread.regs will not be
1694 * set. Do it now.
1695 */
1696 if (!current->thread.regs) {
Al Viro0cec6fd2006-01-12 01:06:02 -08001697 struct pt_regs *regs = task_stack_page(current) + THREAD_SIZE;
1698 current->thread.regs = regs - 1;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001699 }
1700
Cyril Bur8e96a872016-06-17 14:58:34 +10001701#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1702 /*
1703 * Clear any transactional state, we're exec()ing. The cause is
1704 * not important as there will never be a recheckpoint so it's not
1705 * user visible.
1706 */
1707 if (MSR_TM_SUSPENDED(mfmsr()))
1708 tm_reclaim_current(0);
1709#endif
1710
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001711 memset(regs->gpr, 0, sizeof(regs->gpr));
1712 regs->ctr = 0;
1713 regs->link = 0;
1714 regs->xer = 0;
1715 regs->ccr = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001716 regs->gpr[1] = sp;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001717
Roland McGrath474f8192007-09-24 16:52:44 -07001718 /*
1719 * We have just cleared all the nonvolatile GPRs, so make
1720 * FULL_REGS(regs) return true. This is necessary to allow
1721 * ptrace to examine the thread immediately after exec.
1722 */
1723 regs->trap &= ~1UL;
1724
Paul Mackerras06d67d52005-10-10 22:29:05 +10001725#ifdef CONFIG_PPC32
1726 regs->mq = 0;
1727 regs->nip = start;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001728 regs->msr = MSR_USER;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001729#else
Denis Kirjanov9904b002010-07-29 22:04:39 +00001730 if (!is_32bit_task()) {
Rusty Russell94af3ab2013-11-20 22:15:02 +11001731 unsigned long entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001732
Rusty Russell94af3ab2013-11-20 22:15:02 +11001733 if (is_elf2_task()) {
1734 /* Look ma, no function descriptors! */
1735 entry = start;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001736
Rusty Russell94af3ab2013-11-20 22:15:02 +11001737 /*
1738 * Ulrich says:
1739 * The latest iteration of the ABI requires that when
1740 * calling a function (at its global entry point),
1741 * the caller must ensure r12 holds the entry point
1742 * address (so that the function can quickly
1743 * establish addressability).
1744 */
1745 regs->gpr[12] = start;
1746 /* Make sure that's restored on entry to userspace. */
1747 set_thread_flag(TIF_RESTOREALL);
1748 } else {
1749 unsigned long toc;
1750
1751 /* start is a relocated pointer to the function
1752 * descriptor for the elf _start routine. The first
1753 * entry in the function descriptor is the entry
1754 * address of _start and the second entry is the TOC
1755 * value we need to use.
1756 */
1757 __get_user(entry, (unsigned long __user *)start);
1758 __get_user(toc, (unsigned long __user *)start+1);
1759
1760 /* Check whether the e_entry function descriptor entries
1761 * need to be relocated before we can use them.
1762 */
1763 if (load_addr != 0) {
1764 entry += load_addr;
1765 toc += load_addr;
1766 }
1767 regs->gpr[2] = toc;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001768 }
1769 regs->nip = entry;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001770 regs->msr = MSR_USER64;
Stephen Rothwelld4bf9a72005-10-13 13:40:54 +10001771 } else {
1772 regs->nip = start;
1773 regs->gpr[2] = 0;
1774 regs->msr = MSR_USER32;
Paul Mackerras06d67d52005-10-10 22:29:05 +10001775 }
1776#endif
Michael Neulingce48b212008-06-25 14:07:18 +10001777#ifdef CONFIG_VSX
1778 current->thread.used_vsr = 0;
1779#endif
Nicholas Piggin5434ae72018-09-15 01:30:56 +10001780 current->thread.load_slb = 0;
Breno Leitao11958922017-06-02 18:43:30 -03001781 current->thread.load_fp = 0;
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001782 memset(&current->thread.fp_state, 0, sizeof(current->thread.fp_state));
Paul Mackerras18461962013-09-10 20:21:10 +10001783 current->thread.fp_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001784#ifdef CONFIG_ALTIVEC
Paul Mackerrasde79f7b2013-09-10 20:20:42 +10001785 memset(&current->thread.vr_state, 0, sizeof(current->thread.vr_state));
1786 current->thread.vr_state.vscr.u[3] = 0x00010000; /* Java mode disabled */
Paul Mackerras18461962013-09-10 20:21:10 +10001787 current->thread.vr_save_area = NULL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001788 current->thread.vrsave = 0;
1789 current->thread.used_vr = 0;
Breno Leitao11958922017-06-02 18:43:30 -03001790 current->thread.load_vec = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001791#endif /* CONFIG_ALTIVEC */
1792#ifdef CONFIG_SPE
1793 memset(current->thread.evr, 0, sizeof(current->thread.evr));
1794 current->thread.acc = 0;
1795 current->thread.spefscr = 0;
1796 current->thread.used_spe = 0;
1797#endif /* CONFIG_SPE */
Michael Neulingbc2a9402013-02-13 16:21:40 +00001798#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Michael Neulingbc2a9402013-02-13 16:21:40 +00001799 current->thread.tm_tfhar = 0;
1800 current->thread.tm_texasr = 0;
1801 current->thread.tm_tfiar = 0;
Breno Leitao7f22ced2017-06-05 11:40:59 -03001802 current->thread.load_tm = 0;
Michael Neulingbc2a9402013-02-13 16:21:40 +00001803#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
Ram Pai06bb53b2018-01-18 17:50:31 -08001804
1805 thread_pkey_regs_init(&current->thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001806}
Anton Blancharde1802b02014-08-20 08:00:02 +10001807EXPORT_SYMBOL(start_thread);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001808
1809#define PR_FP_ALL_EXCEPT (PR_FP_EXC_DIV | PR_FP_EXC_OVF | PR_FP_EXC_UND \
1810 | PR_FP_EXC_RES | PR_FP_EXC_INV)
1811
1812int set_fpexc_mode(struct task_struct *tsk, unsigned int val)
1813{
1814 struct pt_regs *regs = tsk->thread.regs;
1815
1816 /* This is a bit hairy. If we are an SPE enabled processor
1817 * (have embedded fp) we store the IEEE exception enable flags in
1818 * fpexc_mode. fpexc_mode is also used for setting FP exception
1819 * mode (asyn, precise, disabled) for 'Classic' FP. */
1820 if (val & PR_FP_EXC_SW_ENABLE) {
1821#ifdef CONFIG_SPE
Kumar Gala5e14d212007-09-13 01:44:20 -05001822 if (cpu_has_feature(CPU_FTR_SPE)) {
Joseph Myers640e9222013-12-10 23:07:45 +00001823 /*
1824 * When the sticky exception bits are set
1825 * directly by userspace, it must call prctl
1826 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1827 * in the existing prctl settings) or
1828 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1829 * the bits being set). <fenv.h> functions
1830 * saving and restoring the whole
1831 * floating-point environment need to do so
1832 * anyway to restore the prctl settings from
1833 * the saved environment.
1834 */
1835 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001836 tsk->thread.fpexc_mode = val &
1837 (PR_FP_EXC_SW_ENABLE | PR_FP_ALL_EXCEPT);
1838 return 0;
1839 } else {
1840 return -EINVAL;
1841 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001842#else
1843 return -EINVAL;
1844#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001845 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10001846
1847 /* on a CONFIG_SPE this does not hurt us. The bits that
1848 * __pack_fe01 use do not overlap with bits used for
1849 * PR_FP_EXC_SW_ENABLE. Additionally, the MSR[FE0,FE1] bits
1850 * on CONFIG_SPE implementations are reserved so writing to
1851 * them does not change anything */
1852 if (val > PR_FP_EXC_PRECISE)
1853 return -EINVAL;
1854 tsk->thread.fpexc_mode = __pack_fe01(val);
1855 if (regs != NULL && (regs->msr & MSR_FP) != 0)
1856 regs->msr = (regs->msr & ~(MSR_FE0|MSR_FE1))
1857 | tsk->thread.fpexc_mode;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001858 return 0;
1859}
1860
1861int get_fpexc_mode(struct task_struct *tsk, unsigned long adr)
1862{
1863 unsigned int val;
1864
1865 if (tsk->thread.fpexc_mode & PR_FP_EXC_SW_ENABLE)
1866#ifdef CONFIG_SPE
Joseph Myers640e9222013-12-10 23:07:45 +00001867 if (cpu_has_feature(CPU_FTR_SPE)) {
1868 /*
1869 * When the sticky exception bits are set
1870 * directly by userspace, it must call prctl
1871 * with PR_GET_FPEXC (with PR_FP_EXC_SW_ENABLE
1872 * in the existing prctl settings) or
1873 * PR_SET_FPEXC (with PR_FP_EXC_SW_ENABLE in
1874 * the bits being set). <fenv.h> functions
1875 * saving and restoring the whole
1876 * floating-point environment need to do so
1877 * anyway to restore the prctl settings from
1878 * the saved environment.
1879 */
1880 tsk->thread.spefscr_last = mfspr(SPRN_SPEFSCR);
Kumar Gala5e14d212007-09-13 01:44:20 -05001881 val = tsk->thread.fpexc_mode;
Joseph Myers640e9222013-12-10 23:07:45 +00001882 } else
Kumar Gala5e14d212007-09-13 01:44:20 -05001883 return -EINVAL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001884#else
1885 return -EINVAL;
1886#endif
1887 else
1888 val = __unpack_fe01(tsk->thread.fpexc_mode);
1889 return put_user(val, (unsigned int __user *) adr);
1890}
1891
Paul Mackerrasfab5db92006-06-07 16:14:40 +10001892int set_endian(struct task_struct *tsk, unsigned int val)
1893{
1894 struct pt_regs *regs = tsk->thread.regs;
1895
1896 if ((val == PR_ENDIAN_LITTLE && !cpu_has_feature(CPU_FTR_REAL_LE)) ||
1897 (val == PR_ENDIAN_PPC_LITTLE && !cpu_has_feature(CPU_FTR_PPC_LE)))
1898 return -EINVAL;
1899
1900 if (regs == NULL)
1901 return -EINVAL;
1902
1903 if (val == PR_ENDIAN_BIG)
1904 regs->msr &= ~MSR_LE;
1905 else if (val == PR_ENDIAN_LITTLE || val == PR_ENDIAN_PPC_LITTLE)
1906 regs->msr |= MSR_LE;
1907 else
1908 return -EINVAL;
1909
1910 return 0;
1911}
1912
1913int get_endian(struct task_struct *tsk, unsigned long adr)
1914{
1915 struct pt_regs *regs = tsk->thread.regs;
1916 unsigned int val;
1917
1918 if (!cpu_has_feature(CPU_FTR_PPC_LE) &&
1919 !cpu_has_feature(CPU_FTR_REAL_LE))
1920 return -EINVAL;
1921
1922 if (regs == NULL)
1923 return -EINVAL;
1924
1925 if (regs->msr & MSR_LE) {
1926 if (cpu_has_feature(CPU_FTR_REAL_LE))
1927 val = PR_ENDIAN_LITTLE;
1928 else
1929 val = PR_ENDIAN_PPC_LITTLE;
1930 } else
1931 val = PR_ENDIAN_BIG;
1932
1933 return put_user(val, (unsigned int __user *)adr);
1934}
1935
Paul Mackerrase9370ae2006-06-07 16:15:39 +10001936int set_unalign_ctl(struct task_struct *tsk, unsigned int val)
1937{
1938 tsk->thread.align_ctl = val;
1939 return 0;
1940}
1941
1942int get_unalign_ctl(struct task_struct *tsk, unsigned long adr)
1943{
1944 return put_user(tsk->thread.align_ctl, (unsigned int __user *)adr);
1945}
1946
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001947static inline int valid_irq_stack(unsigned long sp, struct task_struct *p,
1948 unsigned long nbytes)
1949{
1950 unsigned long stack_page;
1951 unsigned long cpu = task_cpu(p);
1952
Christophe Leroya7916a12019-01-31 10:09:00 +00001953 stack_page = (unsigned long)hardirq_ctx[cpu];
1954 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1955 return 1;
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001956
Christophe Leroya7916a12019-01-31 10:09:00 +00001957 stack_page = (unsigned long)softirq_ctx[cpu];
1958 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1959 return 1;
1960
Paul Mackerrasbb72c482007-02-19 11:42:42 +11001961 return 0;
1962}
1963
Nicholas Piggina2e36682020-03-25 20:41:44 +10001964static inline int valid_emergency_stack(unsigned long sp, struct task_struct *p,
1965 unsigned long nbytes)
1966{
1967#ifdef CONFIG_PPC64
1968 unsigned long stack_page;
1969 unsigned long cpu = task_cpu(p);
1970
1971 stack_page = (unsigned long)paca_ptrs[cpu]->emergency_sp - THREAD_SIZE;
1972 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1973 return 1;
1974
1975# ifdef CONFIG_PPC_BOOK3S_64
1976 stack_page = (unsigned long)paca_ptrs[cpu]->nmi_emergency_sp - THREAD_SIZE;
1977 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1978 return 1;
1979
1980 stack_page = (unsigned long)paca_ptrs[cpu]->mc_emergency_sp - THREAD_SIZE;
1981 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
1982 return 1;
1983# endif
1984#endif
1985
1986 return 0;
1987}
1988
1989
Anton Blanchard2f251942006-03-27 11:46:18 +11001990int validate_sp(unsigned long sp, struct task_struct *p,
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001991 unsigned long nbytes)
1992{
Al Viro0cec6fd2006-01-12 01:06:02 -08001993 unsigned long stack_page = (unsigned long)task_stack_page(p);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001994
Christophe Leroya7916a12019-01-31 10:09:00 +00001995 if (sp < THREAD_SIZE)
1996 return 0;
1997
1998 if (sp >= stack_page && sp <= stack_page + THREAD_SIZE - nbytes)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001999 return 1;
2000
Nicholas Piggina2e36682020-03-25 20:41:44 +10002001 if (valid_irq_stack(sp, p, nbytes))
2002 return 1;
2003
2004 return valid_emergency_stack(sp, p, nbytes);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002005}
2006
Anton Blanchard2f251942006-03-27 11:46:18 +11002007EXPORT_SYMBOL(validate_sp);
2008
Christophe Leroy018cce32019-01-31 10:08:52 +00002009static unsigned long __get_wchan(struct task_struct *p)
Paul Mackerras06d67d52005-10-10 22:29:05 +10002010{
2011 unsigned long ip, sp;
2012 int count = 0;
2013
2014 if (!p || p == current || p->state == TASK_RUNNING)
2015 return 0;
2016
2017 sp = p->thread.ksp;
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002018 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD))
Paul Mackerras06d67d52005-10-10 22:29:05 +10002019 return 0;
2020
2021 do {
2022 sp = *(unsigned long *)sp;
Kautuk Consul4ca360f2016-04-19 15:48:21 +05302023 if (!validate_sp(sp, p, STACK_FRAME_OVERHEAD) ||
2024 p->state == TASK_RUNNING)
Paul Mackerras06d67d52005-10-10 22:29:05 +10002025 return 0;
2026 if (count > 0) {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002027 ip = ((unsigned long *)sp)[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10002028 if (!in_sched_functions(ip))
2029 return ip;
2030 }
2031 } while (count++ < 16);
2032 return 0;
2033}
Paul Mackerras06d67d52005-10-10 22:29:05 +10002034
Christophe Leroy018cce32019-01-31 10:08:52 +00002035unsigned long get_wchan(struct task_struct *p)
2036{
2037 unsigned long ret;
2038
2039 if (!try_get_task_stack(p))
2040 return 0;
2041
2042 ret = __get_wchan(p);
2043
2044 put_task_stack(p);
2045
2046 return ret;
2047}
2048
Johannes Bergc4d04be2008-11-20 03:24:07 +00002049static int kstack_depth_to_print = CONFIG_PRINT_STACK_DEPTH;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002050
2051void show_stack(struct task_struct *tsk, unsigned long *stack)
2052{
Paul Mackerras06d67d52005-10-10 22:29:05 +10002053 unsigned long sp, ip, lr, newsp;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002054 int count = 0;
Paul Mackerras06d67d52005-10-10 22:29:05 +10002055 int firstframe = 1;
Steven Rostedt6794c782009-02-09 21:10:27 -08002056#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Naveen N. Rao7c1bb6b2019-09-05 23:50:30 +05302057 unsigned long ret_addr;
2058 int ftrace_idx = 0;
Steven Rostedt6794c782009-02-09 21:10:27 -08002059#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002060
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002061 if (tsk == NULL)
2062 tsk = current;
Christophe Leroy018cce32019-01-31 10:08:52 +00002063
2064 if (!try_get_task_stack(tsk))
2065 return;
2066
2067 sp = (unsigned long) stack;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002068 if (sp == 0) {
2069 if (tsk == current)
Michael Ellerman3d13e832020-02-20 22:51:37 +11002070 sp = current_stack_frame();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002071 else
2072 sp = tsk->thread.ksp;
2073 }
2074
Paul Mackerras06d67d52005-10-10 22:29:05 +10002075 lr = 0;
2076 printk("Call Trace:\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002077 do {
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002078 if (!validate_sp(sp, tsk, STACK_FRAME_OVERHEAD))
Christophe Leroy018cce32019-01-31 10:08:52 +00002079 break;
Paul Mackerras06d67d52005-10-10 22:29:05 +10002080
2081 stack = (unsigned long *) sp;
2082 newsp = stack[0];
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002083 ip = stack[STACK_FRAME_LR_SAVE];
Paul Mackerras06d67d52005-10-10 22:29:05 +10002084 if (!firstframe || ip != lr) {
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10002085 printk("["REG"] ["REG"] %pS", sp, ip, (void *)ip);
Steven Rostedt6794c782009-02-09 21:10:27 -08002086#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Naveen N. Rao7c1bb6b2019-09-05 23:50:30 +05302087 ret_addr = ftrace_graph_ret_addr(current,
2088 &ftrace_idx, ip, stack);
2089 if (ret_addr != ip)
2090 pr_cont(" (%pS)", (void *)ret_addr);
Steven Rostedt6794c782009-02-09 21:10:27 -08002091#endif
Paul Mackerras06d67d52005-10-10 22:29:05 +10002092 if (firstframe)
Michael Ellerman9a1f4902016-11-02 22:20:46 +11002093 pr_cont(" (unreliable)");
2094 pr_cont("\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002095 }
Paul Mackerras06d67d52005-10-10 22:29:05 +10002096 firstframe = 0;
2097
2098 /*
2099 * See if this is an exception frame.
2100 * We look for the "regshere" marker in the current frame.
2101 */
Benjamin Herrenschmidtec2b36b2008-04-17 14:34:59 +10002102 if (validate_sp(sp, tsk, STACK_INT_FRAME_SIZE)
2103 && stack[STACK_FRAME_MARKER] == STACK_FRAME_REGS_MARKER) {
Paul Mackerras06d67d52005-10-10 22:29:05 +10002104 struct pt_regs *regs = (struct pt_regs *)
2105 (sp + STACK_FRAME_OVERHEAD);
Paul Mackerras06d67d52005-10-10 22:29:05 +10002106 lr = regs->link;
Paul Mackerras9be9be22014-06-12 16:53:08 +10002107 printk("--- interrupt: %lx at %pS\n LR = %pS\n",
Benjamin Herrenschmidt058c78f2008-07-07 13:44:31 +10002108 regs->trap, (void *)regs->nip, (void *)lr);
Paul Mackerras06d67d52005-10-10 22:29:05 +10002109 firstframe = 1;
2110 }
2111
2112 sp = newsp;
2113 } while (count++ < kstack_depth_to_print);
Christophe Leroy018cce32019-01-31 10:08:52 +00002114
2115 put_task_stack(tsk);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002116}
Paul Mackerras06d67d52005-10-10 22:29:05 +10002117
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002118#ifdef CONFIG_PPC64
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002119/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10002120void notrace __ppc64_runlatch_on(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002121{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002122 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002123
Nicholas Piggind1d0d5f2017-08-12 02:39:07 +10002124 if (cpu_has_feature(CPU_FTR_ARCH_206)) {
2125 /*
2126 * Least significant bit (RUN) is the only writable bit of
2127 * the CTRL register, so we can avoid mfspr. 2.06 is not the
2128 * earliest ISA where this is the case, but it's convenient.
2129 */
2130 mtspr(SPRN_CTRLT, CTRL_RUNLATCH);
2131 } else {
2132 unsigned long ctrl;
2133
2134 /*
2135 * Some architectures (e.g., Cell) have writable fields other
2136 * than RUN, so do the read-modify-write.
2137 */
2138 ctrl = mfspr(SPRN_CTRLF);
2139 ctrl |= CTRL_RUNLATCH;
2140 mtspr(SPRN_CTRLT, ctrl);
2141 }
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002142
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10002143 ti->local_flags |= _TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002144}
2145
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002146/* Called with hard IRQs off */
Michael Ellerman0e377392013-06-13 21:04:56 +10002147void notrace __ppc64_runlatch_off(void)
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002148{
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11002149 struct thread_info *ti = current_thread_info();
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002150
Benjamin Herrenschmidtfae2e0f2012-04-11 10:42:15 +10002151 ti->local_flags &= ~_TLF_RUNLATCH;
Anton Blanchardcb2c9b22006-02-13 14:48:35 +11002152
Nicholas Piggind1d0d5f2017-08-12 02:39:07 +10002153 if (cpu_has_feature(CPU_FTR_ARCH_206)) {
2154 mtspr(SPRN_CTRLT, 0);
2155 } else {
2156 unsigned long ctrl;
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 Herrenschmidtfe1952f2012-03-01 12:45:27 +11002163#endif /* CONFIG_PPC64 */
Benjamin Herrenschmidtf6a61682008-04-18 16:56:17 +10002164
Anton Blanchardd8390882009-02-22 01:50:03 +00002165unsigned long arch_align_stack(unsigned long sp)
2166{
2167 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
2168 sp -= get_random_int() & ~PAGE_MASK;
2169 return sp & ~0xf;
2170}
Anton Blanchard912f9ee2009-02-22 01:50:04 +00002171
2172static inline unsigned long brk_rnd(void)
2173{
2174 unsigned long rnd = 0;
2175
2176 /* 8MB for 32bit, 1GB for 64bit */
2177 if (is_32bit_task())
Daniel Cashman5ef11c32016-02-26 15:19:37 -08002178 rnd = (get_random_long() % (1UL<<(23-PAGE_SHIFT)));
Anton Blanchard912f9ee2009-02-22 01:50:04 +00002179 else
Daniel Cashman5ef11c32016-02-26 15:19:37 -08002180 rnd = (get_random_long() % (1UL<<(30-PAGE_SHIFT)));
Anton Blanchard912f9ee2009-02-22 01:50:04 +00002181
2182 return rnd << PAGE_SHIFT;
2183}
2184
2185unsigned long arch_randomize_brk(struct mm_struct *mm)
2186{
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00002187 unsigned long base = mm->brk;
2188 unsigned long ret;
2189
Michael Ellerman4e003742017-10-19 15:08:43 +11002190#ifdef CONFIG_PPC_BOOK3S_64
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00002191 /*
2192 * If we are using 1TB segments and we are allowed to randomise
2193 * the heap, we can put it above 1TB so it is backed by a 1TB
2194 * segment. Otherwise the heap will be in the bottom 1TB
2195 * which always uses 256MB segments and this may result in a
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +10002196 * performance penalty. We don't need to worry about radix. For
2197 * radix, mmu_highuser_ssize remains unchanged from 256MB.
Anton Blanchard8bbde7a2009-09-21 16:52:35 +00002198 */
2199 if (!is_32bit_task() && (mmu_highuser_ssize == MMU_SEGSIZE_1T))
2200 base = max_t(unsigned long, mm->brk, 1UL << SID_SHIFT_1T);
2201#endif
2202
2203 ret = PAGE_ALIGN(base + brk_rnd());
Anton Blanchard912f9ee2009-02-22 01:50:04 +00002204
2205 if (ret < mm->brk)
2206 return mm->brk;
2207
2208 return ret;
2209}
Anton Blanchard501cb162009-02-22 01:50:07 +00002210