blob: eb76434828e8b403e536ca6d496eeb00baf5a368 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1994 - 1999, 2000 by Ralf Baechle and others.
Ralf Baechle40ac5d42006-02-08 13:38:18 +00007 * Copyright (C) 2005, 2006 by Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
9 * Copyright (C) 2004 Thiemo Seufer
Leonid Yegoshin34c2f662013-03-25 13:18:07 -050010 * Copyright (C) 2013 Imagination Technologies Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/sched.h>
Ralf Baechle7bcf7712007-10-11 23:46:09 +010014#include <linux/tick.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/mm.h>
17#include <linux/stddef.h>
18#include <linux/unistd.h>
Paul Gortmakercae39d12011-07-28 18:46:31 -040019#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/mman.h>
22#include <linux/personality.h>
23#include <linux/sys.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/completion.h>
Atsushi Nemoto63077512006-02-08 01:48:03 +090026#include <linux/kallsyms.h>
Franck Bui-Huu94109102007-07-19 14:04:21 +020027#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Franck Bui-Huu94109102007-07-19 14:04:21 +020029#include <asm/asm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/bootinfo.h>
31#include <asm/cpu.h>
Ralf Baechlee50c0a82005-05-31 11:49:19 +000032#include <asm/dsp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/fpu.h>
Paul Burton1db1af82014-01-27 15:23:11 +000034#include <asm/msa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/mipsregs.h>
37#include <asm/processor.h>
Alex Smith60be9392014-07-23 14:40:15 +010038#include <asm/reg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/uaccess.h>
40#include <asm/io.h>
41#include <asm/elf.h>
42#include <asm/isadep.h>
43#include <asm/inst.h>
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +090044#include <asm/stacktrace.h>
Eunbong Song856839b72014-10-22 06:39:56 +000045#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Ralf Baechle1b2bc752009-06-23 10:00:31 +010047#ifdef CONFIG_HOTPLUG_CPU
Thomas Gleixnercdbedc62013-03-21 22:49:52 +010048void arch_cpu_idle_dead(void)
49{
50 /* What the heck is this check doing ? */
51 if (!cpu_isset(smp_processor_id(), cpu_callin_map))
52 play_dead();
53}
Ralf Baechle1b2bc752009-06-23 10:00:31 +010054#endif
Thomas Gleixnercdbedc62013-03-21 22:49:52 +010055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056asmlinkage void ret_from_fork(void);
Al Viro8f54bca2012-10-09 16:27:45 -040057asmlinkage void ret_from_kernel_thread(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59void start_thread(struct pt_regs * regs, unsigned long pc, unsigned long sp)
60{
61 unsigned long status;
62
63 /* New thread loses kernel privileges. */
Chris Dearmanbbaf2382007-12-13 22:42:19 +000064 status = regs->cp0_status & ~(ST0_CU0|ST0_CU1|ST0_FR|KU_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 status |= KU_USER;
66 regs->cp0_status = status;
67 clear_used_math();
Atsushi Nemotoe04582b2006-10-09 00:10:01 +090068 clear_fpu_owner();
Paul Burtona3056b12013-11-19 17:30:38 +000069 init_dsp();
Paul Burton7daef8f2014-07-11 16:47:05 +010070 clear_thread_flag(TIF_USEDMSA);
Paul Burton1db1af82014-01-27 15:23:11 +000071 clear_thread_flag(TIF_MSA_CTX_LIVE);
72 disable_msa();
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 regs->cp0_epc = pc;
74 regs->regs[29] = sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77void exit_thread(void)
78{
79}
80
81void flush_thread(void)
82{
83}
84
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -070085int copy_thread(unsigned long clone_flags, unsigned long usp,
Al Viroafa86fc2012-10-22 22:51:14 -040086 unsigned long arg, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Al Viro75bb07e2006-01-12 01:06:08 -080088 struct thread_info *ti = task_thread_info(p);
Al Viroafa86fc2012-10-22 22:51:14 -040089 struct pt_regs *childregs, *regs = current_pt_regs();
David Daney484889f2009-07-08 10:07:50 -070090 unsigned long childksp;
Ralf Baechle3c370262005-04-13 17:43:59 +000091 p->set_child_tid = p->clear_child_tid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Al Viro75bb07e2006-01-12 01:06:08 -080093 childksp = (unsigned long)task_stack_page(p) + THREAD_SIZE - 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 preempt_disable();
96
Paul Burton1db1af82014-01-27 15:23:11 +000097 if (is_msa_enabled())
98 save_msa(p);
99 else if (is_fpu_owner())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 save_fp(p);
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000101
102 if (cpu_has_dsp)
103 save_dsp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105 preempt_enable();
106
107 /* set up new TSS. */
108 childregs = (struct pt_regs *) childksp - 1;
David Daney484889f2009-07-08 10:07:50 -0700109 /* Put the stack after the struct pt_regs. */
110 childksp = (unsigned long) childregs;
Al Viro8f54bca2012-10-09 16:27:45 -0400111 p->thread.cp0_status = read_c0_status() & ~(ST0_CU2|ST0_CU1);
112 if (unlikely(p->flags & PF_KTHREAD)) {
113 unsigned long status = p->thread.cp0_status;
114 memset(childregs, 0, sizeof(struct pt_regs));
115 ti->addr_limit = KERNEL_DS;
116 p->thread.reg16 = usp; /* fn */
117 p->thread.reg17 = arg;
118 p->thread.reg29 = childksp;
119 p->thread.reg31 = (unsigned long) ret_from_kernel_thread;
120#if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_TX39XX)
121 status = (status & ~(ST0_KUP | ST0_IEP | ST0_IEC)) |
122 ((status & (ST0_KUC | ST0_IEC)) << 2);
123#else
124 status |= ST0_EXL;
125#endif
126 childregs->cp0_status = status;
127 return 0;
128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 *childregs = *regs;
Ralf Baechle70342282013-01-22 12:59:30 +0100130 childregs->regs[7] = 0; /* Clear error flag */
131 childregs->regs[2] = 0; /* Child gets zero as return value */
Al Viro64b31222012-12-27 11:52:32 -0500132 if (usp)
133 childregs->regs[29] = usp;
Al Viro8f54bca2012-10-09 16:27:45 -0400134 ti->addr_limit = USER_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 p->thread.reg29 = (unsigned long) childregs;
137 p->thread.reg31 = (unsigned long) ret_from_fork;
138
139 /*
140 * New tasks lose permission to use the fpu. This accelerates context
141 * switching for most programs since they don't use the fpu.
142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 childregs->cp0_status &= ~(ST0_CU2|ST0_CU1);
Kevin D. Kissell9cc12362008-09-09 21:33:36 +0200144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 clear_tsk_thread_flag(p, TIF_USEDFPU);
Paul Burton7daef8f2014-07-11 16:47:05 +0100146 clear_tsk_thread_flag(p, TIF_USEDMSA);
147 clear_tsk_thread_flag(p, TIF_MSA_CTX_LIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Ralf Baechlef088fc82006-04-05 09:45:47 +0100149#ifdef CONFIG_MIPS_MT_FPAFF
Ralf Baechle6657fe02008-09-09 15:19:10 +0200150 clear_tsk_thread_flag(p, TIF_FPUBOUND);
Ralf Baechlef088fc82006-04-05 09:45:47 +0100151#endif /* CONFIG_MIPS_MT_FPAFF */
152
Ralf Baechle3c370262005-04-13 17:43:59 +0000153 if (clone_flags & CLONE_SETTLS)
154 ti->tp_value = regs->regs[7];
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return 0;
157}
158
Gregory Fong36ecafc2013-06-12 17:08:54 +0000159#ifdef CONFIG_CC_STACKPROTECTOR
160#include <linux/stackprotector.h>
161unsigned long __stack_chk_guard __read_mostly;
162EXPORT_SYMBOL(__stack_chk_guard);
163#endif
164
Franck Bui-Huub5943182006-08-18 16:18:09 +0200165struct mips_frame_info {
166 void *func;
167 unsigned long func_size;
168 int frame_size;
169 int pc_offset;
170};
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000171
Tony Wu5000653e2013-05-12 15:05:34 +0000172#define J_TARGET(pc,target) \
173 (((unsigned long)(pc) & 0xf0000000) | ((target) << 2))
174
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200175static inline int is_ra_save_ins(union mips_instruction *ip)
176{
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500177#ifdef CONFIG_CPU_MICROMIPS
178 union mips_instruction mmi;
179
180 /*
181 * swsp ra,offset
182 * swm16 reglist,offset(sp)
183 * swm32 reglist,offset(sp)
184 * sw32 ra,offset(sp)
185 * jradiussp - NOT SUPPORTED
186 *
187 * microMIPS is way more fun...
188 */
189 if (mm_insn_16bit(ip->halfword[0])) {
190 mmi.word = (ip->halfword[0] << 16);
Ralf Baechle635c99072014-10-21 14:12:49 +0200191 return (mmi.mm16_r5_format.opcode == mm_swsp16_op &&
192 mmi.mm16_r5_format.rt == 31) ||
193 (mmi.mm16_m_format.opcode == mm_pool16c_op &&
194 mmi.mm16_m_format.func == mm_swm16_op);
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500195 }
196 else {
197 mmi.halfword[0] = ip->halfword[1];
198 mmi.halfword[1] = ip->halfword[0];
Ralf Baechle635c99072014-10-21 14:12:49 +0200199 return (mmi.mm_m_format.opcode == mm_pool32b_op &&
200 mmi.mm_m_format.rd > 9 &&
201 mmi.mm_m_format.base == 29 &&
202 mmi.mm_m_format.func == mm_swm32_func) ||
203 (mmi.i_format.opcode == mm_sw32_op &&
204 mmi.i_format.rs == 29 &&
205 mmi.i_format.rt == 31);
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500206 }
207#else
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200208 /* sw / sd $ra, offset($sp) */
209 return (ip->i_format.opcode == sw_op || ip->i_format.opcode == sd_op) &&
210 ip->i_format.rs == 29 &&
211 ip->i_format.rt == 31;
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500212#endif
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200213}
214
Tony Wue7438c42013-05-12 15:04:29 +0000215static inline int is_jump_ins(union mips_instruction *ip)
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200216{
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500217#ifdef CONFIG_CPU_MICROMIPS
218 /*
219 * jr16,jrc,jalr16,jalr16
220 * jal
221 * jalr/jr,jalr.hb/jr.hb,jalrs,jalrs.hb
222 * jraddiusp - NOT SUPPORTED
223 *
224 * microMIPS is kind of more fun...
225 */
226 union mips_instruction mmi;
227
228 mmi.word = (ip->halfword[0] << 16);
229
230 if ((mmi.mm16_r5_format.opcode == mm_pool16c_op &&
231 (mmi.mm16_r5_format.rt & mm_jr16_op) == mm_jr16_op) ||
232 ip->j_format.opcode == mm_jal32_op)
233 return 1;
234 if (ip->r_format.opcode != mm_pool32a_op ||
235 ip->r_format.func != mm_pool32axf_op)
236 return 0;
Ralf Baechle635c99072014-10-21 14:12:49 +0200237 return ((ip->u_format.uimmediate >> 6) & mm_jalr_op) == mm_jalr_op;
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500238#else
Tony Wue7438c42013-05-12 15:04:29 +0000239 if (ip->j_format.opcode == j_op)
240 return 1;
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200241 if (ip->j_format.opcode == jal_op)
242 return 1;
243 if (ip->r_format.opcode != spec_op)
244 return 0;
245 return ip->r_format.func == jalr_op || ip->r_format.func == jr_op;
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500246#endif
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200247}
248
249static inline int is_sp_move_ins(union mips_instruction *ip)
250{
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500251#ifdef CONFIG_CPU_MICROMIPS
252 /*
253 * addiusp -imm
254 * addius5 sp,-imm
255 * addiu32 sp,sp,-imm
256 * jradiussp - NOT SUPPORTED
257 *
258 * microMIPS is not more fun...
259 */
260 if (mm_insn_16bit(ip->halfword[0])) {
261 union mips_instruction mmi;
262
263 mmi.word = (ip->halfword[0] << 16);
Ralf Baechle635c99072014-10-21 14:12:49 +0200264 return (mmi.mm16_r3_format.opcode == mm_pool16d_op &&
265 mmi.mm16_r3_format.simmediate && mm_addiusp_func) ||
266 (mmi.mm16_r5_format.opcode == mm_pool16d_op &&
267 mmi.mm16_r5_format.rt == 29);
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500268 }
Ralf Baechle635c99072014-10-21 14:12:49 +0200269 return ip->mm_i_format.opcode == mm_addiu32_op &&
270 ip->mm_i_format.rt == 29 && ip->mm_i_format.rs == 29;
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500271#else
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200272 /* addiu/daddiu sp,sp,-imm */
273 if (ip->i_format.rs != 29 || ip->i_format.rt != 29)
274 return 0;
275 if (ip->i_format.opcode == addiu_op || ip->i_format.opcode == daddiu_op)
276 return 1;
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500277#endif
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200278 return 0;
279}
280
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900281static int get_frame_info(struct mips_frame_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500283#ifdef CONFIG_CPU_MICROMIPS
284 union mips_instruction *ip = (void *) (((char *) info->func) - 1);
285#else
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200286 union mips_instruction *ip = info->func;
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500287#endif
Franck Bui-Huu29b376f2006-08-18 16:18:08 +0200288 unsigned max_insns = info->func_size / sizeof(union mips_instruction);
289 unsigned i;
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 info->pc_offset = -1;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900292 info->frame_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Franck Bui-Huu29b376f2006-08-18 16:18:08 +0200294 if (!ip)
295 goto err;
296
297 if (max_insns == 0)
298 max_insns = 128U; /* unknown function size */
299 max_insns = min(128U, max_insns);
300
Franck Bui-Huuc0efbb62006-08-03 09:29:15 +0200301 for (i = 0; i < max_insns; i++, ip++) {
302
Tony Wue7438c42013-05-12 15:04:29 +0000303 if (is_jump_ins(ip))
Atsushi Nemoto63077512006-02-08 01:48:03 +0900304 break;
Franck Bui-Huu0cceb4a2006-08-03 09:29:20 +0200305 if (!info->frame_size) {
306 if (is_sp_move_ins(ip))
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500307 {
308#ifdef CONFIG_CPU_MICROMIPS
309 if (mm_insn_16bit(ip->halfword[0]))
310 {
311 unsigned short tmp;
312
313 if (ip->halfword[0] & mm_addiusp_func)
314 {
315 tmp = (((ip->halfword[0] >> 1) & 0x1ff) << 2);
316 info->frame_size = -(signed short)(tmp | ((tmp & 0x100) ? 0xfe00 : 0));
317 } else {
318 tmp = (ip->halfword[0] >> 1);
319 info->frame_size = -(signed short)(tmp & 0xf);
320 }
321 ip = (void *) &ip->halfword[1];
322 ip--;
323 } else
324#endif
Franck Bui-Huu0cceb4a2006-08-03 09:29:20 +0200325 info->frame_size = - ip->i_format.simmediate;
Leonid Yegoshin34c2f662013-03-25 13:18:07 -0500326 }
Franck Bui-Huu0cceb4a2006-08-03 09:29:20 +0200327 continue;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900328 }
Franck Bui-Huu0cceb4a2006-08-03 09:29:20 +0200329 if (info->pc_offset == -1 && is_ra_save_ins(ip)) {
Atsushi Nemoto63077512006-02-08 01:48:03 +0900330 info->pc_offset =
331 ip->i_format.simmediate / sizeof(long);
Franck Bui-Huu0cceb4a2006-08-03 09:29:20 +0200332 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334 }
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900335 if (info->frame_size && info->pc_offset >= 0) /* nested */
336 return 0;
337 if (info->pc_offset < 0) /* leaf */
338 return 1;
339 /* prologue seems boggus... */
Franck Bui-Huu29b376f2006-08-18 16:18:08 +0200340err:
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900341 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Franck Bui-Huub5943182006-08-18 16:18:09 +0200344static struct mips_frame_info schedule_mfi __read_mostly;
345
Tony Wu5000653e2013-05-12 15:05:34 +0000346#ifdef CONFIG_KALLSYMS
347static unsigned long get___schedule_addr(void)
348{
349 return kallsyms_lookup_name("__schedule");
350}
351#else
352static unsigned long get___schedule_addr(void)
353{
354 union mips_instruction *ip = (void *)schedule;
355 int max_insns = 8;
356 int i;
357
358 for (i = 0; i < max_insns; i++, ip++) {
359 if (ip->j_format.opcode == j_op)
360 return J_TARGET(ip, ip->j_format.target);
361 }
362 return 0;
363}
364#endif
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366static int __init frame_info_init(void)
367{
Franck Bui-Huub5943182006-08-18 16:18:09 +0200368 unsigned long size = 0;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900369#ifdef CONFIG_KALLSYMS
Franck Bui-Huub5943182006-08-18 16:18:09 +0200370 unsigned long ofs;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900371#endif
Tony Wu5000653e2013-05-12 15:05:34 +0000372 unsigned long addr;
373
374 addr = get___schedule_addr();
375 if (!addr)
376 addr = (unsigned long)schedule;
377
378#ifdef CONFIG_KALLSYMS
379 kallsyms_lookup_size_offset(addr, &size, &ofs);
380#endif
381 schedule_mfi.func = (void *)addr;
Franck Bui-Huub5943182006-08-18 16:18:09 +0200382 schedule_mfi.func_size = size;
383
384 get_frame_info(&schedule_mfi);
Franck Bui-Huu6057a792006-08-03 09:29:18 +0200385
386 /*
387 * Without schedule() frame info, result given by
388 * thread_saved_pc() and get_wchan() are not reliable.
389 */
Franck Bui-Huub5943182006-08-18 16:18:09 +0200390 if (schedule_mfi.pc_offset < 0)
Franck Bui-Huu6057a792006-08-03 09:29:18 +0200391 printk("Can't analyze schedule() prologue at %p\n", schedule);
Atsushi Nemoto63077512006-02-08 01:48:03 +0900392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return 0;
394}
395
396arch_initcall(frame_info_init);
397
398/*
399 * Return saved PC of a blocked thread.
400 */
401unsigned long thread_saved_pc(struct task_struct *tsk)
402{
403 struct thread_struct *t = &tsk->thread;
404
405 /* New born processes are a special case */
406 if (t->reg31 == (unsigned long) ret_from_fork)
407 return t->reg31;
Franck Bui-Huub5943182006-08-18 16:18:09 +0200408 if (schedule_mfi.pc_offset < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return 0;
Franck Bui-Huub5943182006-08-18 16:18:09 +0200410 return ((unsigned long *)t->reg29)[schedule_mfi.pc_offset];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900414#ifdef CONFIG_KALLSYMS
Daniel Kalmar94ea09c2011-05-13 08:38:04 -0400415/* generic stack unwinding function */
416unsigned long notrace unwind_stack_by_address(unsigned long stack_page,
417 unsigned long *sp,
418 unsigned long pc,
419 unsigned long *ra)
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900420{
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900421 struct mips_frame_info info;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900422 unsigned long size, ofs;
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200423 int leaf;
Atsushi Nemoto19246002006-09-29 18:02:51 +0900424 extern void ret_from_irq(void);
425 extern void ret_from_exception(void);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900426
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900427 if (!stack_page)
428 return 0;
429
Atsushi Nemoto19246002006-09-29 18:02:51 +0900430 /*
431 * If we reached the bottom of interrupt context,
432 * return saved pc in pt_regs.
433 */
434 if (pc == (unsigned long)ret_from_irq ||
435 pc == (unsigned long)ret_from_exception) {
436 struct pt_regs *regs;
437 if (*sp >= stack_page &&
438 *sp + sizeof(*regs) <= stack_page + THREAD_SIZE - 32) {
439 regs = (struct pt_regs *)*sp;
440 pc = regs->cp0_epc;
441 if (__kernel_text_address(pc)) {
442 *sp = regs->regs[29];
443 *ra = regs->regs[31];
444 return pc;
445 }
446 }
447 return 0;
448 }
Franck Bui-Huu55b74282006-10-13 13:37:35 +0200449 if (!kallsyms_lookup_size_offset(pc, &size, &ofs))
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900450 return 0;
Franck Bui-Huu1fd69092006-08-18 16:18:07 +0200451 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300452 * Return ra if an exception occurred at the first instruction
Franck Bui-Huu1fd69092006-08-18 16:18:07 +0200453 */
Atsushi Nemoto19246002006-09-29 18:02:51 +0900454 if (unlikely(ofs == 0)) {
455 pc = *ra;
456 *ra = 0;
457 return pc;
458 }
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900459
460 info.func = (void *)(pc - ofs);
461 info.func_size = ofs; /* analyze from start to ofs */
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200462 leaf = get_frame_info(&info);
463 if (leaf < 0)
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900464 return 0;
465
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200466 if (*sp < stack_page ||
467 *sp + info.frame_size > stack_page + THREAD_SIZE - 32)
468 return 0;
469
470 if (leaf)
471 /*
472 * For some extreme cases, get_frame_info() can
473 * consider wrongly a nested function as a leaf
474 * one. In that cases avoid to return always the
475 * same value.
476 */
Atsushi Nemoto19246002006-09-29 18:02:51 +0900477 pc = pc != *ra ? *ra : 0;
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200478 else
479 pc = ((unsigned long *)(*sp))[info.pc_offset];
480
481 *sp += info.frame_size;
Atsushi Nemoto19246002006-09-29 18:02:51 +0900482 *ra = 0;
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200483 return __kernel_text_address(pc) ? pc : 0;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900484}
Daniel Kalmar94ea09c2011-05-13 08:38:04 -0400485EXPORT_SYMBOL(unwind_stack_by_address);
486
487/* used by show_backtrace() */
488unsigned long unwind_stack(struct task_struct *task, unsigned long *sp,
489 unsigned long pc, unsigned long *ra)
490{
491 unsigned long stack_page = (unsigned long)task_stack_page(task);
492 return unwind_stack_by_address(stack_page, sp, pc, ra);
493}
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900494#endif
Franck Bui-Huub5943182006-08-18 16:18:09 +0200495
496/*
497 * get_wchan - a maintenance nightmare^W^Wpain in the ass ...
498 */
499unsigned long get_wchan(struct task_struct *task)
500{
501 unsigned long pc = 0;
502#ifdef CONFIG_KALLSYMS
503 unsigned long sp;
Atsushi Nemoto19246002006-09-29 18:02:51 +0900504 unsigned long ra = 0;
Franck Bui-Huub5943182006-08-18 16:18:09 +0200505#endif
506
507 if (!task || task == current || task->state == TASK_RUNNING)
508 goto out;
509 if (!task_stack_page(task))
510 goto out;
511
512 pc = thread_saved_pc(task);
513
514#ifdef CONFIG_KALLSYMS
515 sp = task->thread.reg29 + schedule_mfi.frame_size;
516
517 while (in_sched_functions(pc))
Atsushi Nemoto19246002006-09-29 18:02:51 +0900518 pc = unwind_stack(task, &sp, pc, &ra);
Franck Bui-Huub5943182006-08-18 16:18:09 +0200519#endif
520
521out:
522 return pc;
523}
Franck Bui-Huu94109102007-07-19 14:04:21 +0200524
525/*
526 * Don't forget that the stack pointer must be aligned on a 8 bytes
527 * boundary for 32-bits ABI and 16 bytes for 64-bits ABI.
528 */
529unsigned long arch_align_stack(unsigned long sp)
530{
531 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
532 sp -= get_random_int() & ~PAGE_MASK;
533
534 return sp & ALMASK;
535}
Eunbong Song856839b72014-10-22 06:39:56 +0000536
537static void arch_dump_stack(void *info)
538{
539 struct pt_regs *regs;
540
541 regs = get_irq_regs();
542
543 if (regs)
544 show_regs(regs);
545
546 dump_stack();
547}
548
549void arch_trigger_all_cpu_backtrace(bool include_self)
550{
551 smp_call_function(arch_dump_stack, NULL, 1);
552}