Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/kernel/process.c |
| 3 | * |
| 4 | * Copyright (C) 1996-2000 Russell King - Converted to ARM. |
| 5 | * Original Copyright (C) 1995 Linus Torvalds |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | #include <stdarg.h> |
| 12 | |
Paul Gortmaker | ecea4ab | 2011-07-22 10:58:34 -0400 | [diff] [blame] | 13 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/sched.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/mm.h> |
| 17 | #include <linux/stddef.h> |
| 18 | #include <linux/unistd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/user.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/interrupt.h> |
| 21 | #include <linux/kallsyms.h> |
| 22 | #include <linux/init.h> |
Ben Dooks | 84dff1a | 2006-03-15 23:17:23 +0000 | [diff] [blame] | 23 | #include <linux/elfcore.h> |
Richard Purdie | 74617fb | 2006-06-19 19:57:12 +0100 | [diff] [blame] | 24 | #include <linux/pm.h> |
Kevin Hilman | 9e4559d | 2007-03-14 17:33:24 +0100 | [diff] [blame] | 25 | #include <linux/tick.h> |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 26 | #include <linux/utsname.h> |
Russell King | 33fa9b1 | 2008-09-06 11:35:55 +0100 | [diff] [blame] | 27 | #include <linux/uaccess.h> |
Nicolas Pitre | 990cb8a | 2010-06-14 16:27:19 -0400 | [diff] [blame] | 28 | #include <linux/random.h> |
Will Deacon | 864232f | 2010-09-03 10:42:55 +0100 | [diff] [blame] | 29 | #include <linux/hw_breakpoint.h> |
Bryan Wu | fa8bbb1 | 2012-03-14 02:26:56 +0800 | [diff] [blame] | 30 | #include <linux/leds.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <asm/processor.h> |
Russell King | d6551e8 | 2006-06-21 13:31:52 +0100 | [diff] [blame] | 33 | #include <asm/thread_notify.h> |
Catalin Marinas | 2d7c11b | 2009-02-11 13:07:53 +0100 | [diff] [blame] | 34 | #include <asm/stacktrace.h> |
Russell King | 779dd95 | 2014-04-06 16:17:39 +0100 | [diff] [blame] | 35 | #include <asm/system_misc.h> |
Russell King | 2ea8339 | 2005-06-27 14:04:05 +0100 | [diff] [blame] | 36 | #include <asm/mach/time.h> |
André Hentschel | a4780ad | 2013-06-18 23:23:26 +0100 | [diff] [blame] | 37 | #include <asm/tls.h> |
Russell King | 045ab94 | 2015-04-01 17:02:45 +0100 | [diff] [blame] | 38 | #include <asm/vdso.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Nicolas Pitre | c743f38 | 2010-05-24 23:55:42 -0400 | [diff] [blame] | 40 | #ifdef CONFIG_CC_STACKPROTECTOR |
| 41 | #include <linux/stackprotector.h> |
| 42 | unsigned long __stack_chk_guard __read_mostly; |
| 43 | EXPORT_SYMBOL(__stack_chk_guard); |
| 44 | #endif |
| 45 | |
Uwe Kleine-König | e2e55fd | 2013-12-16 10:38:57 +0100 | [diff] [blame] | 46 | static const char *processor_modes[] __maybe_unused = { |
Russell King | ae0a846 | 2007-01-09 12:57:37 +0000 | [diff] [blame] | 47 | "USER_26", "FIQ_26" , "IRQ_26" , "SVC_26" , "UK4_26" , "UK5_26" , "UK6_26" , "UK7_26" , |
| 48 | "UK8_26" , "UK9_26" , "UK10_26", "UK11_26", "UK12_26", "UK13_26", "UK14_26", "UK15_26", |
Stephen Boyd | f3a0420 | 2014-12-01 19:45:19 +0100 | [diff] [blame] | 49 | "USER_32", "FIQ_32" , "IRQ_32" , "SVC_32" , "UK4_32" , "UK5_32" , "MON_32" , "ABT_32" , |
| 50 | "UK8_32" , "UK9_32" , "HYP_32", "UND_32" , "UK12_32", "UK13_32", "UK14_32", "SYS_32" |
Russell King | ae0a846 | 2007-01-09 12:57:37 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
Uwe Kleine-König | e2e55fd | 2013-12-16 10:38:57 +0100 | [diff] [blame] | 53 | static const char *isa_modes[] __maybe_unused = { |
George G. Davis | 909d6c6 | 2007-06-26 01:38:27 +0100 | [diff] [blame] | 54 | "ARM" , "Thumb" , "Jazelle", "ThumbEE" |
| 55 | }; |
| 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | /* |
Nicolas Pitre | 4fa2043 | 2011-08-01 17:25:06 -0400 | [diff] [blame] | 58 | * This is our default idle handler. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | */ |
Nicolas Pitre | 4fa2043 | 2011-08-01 17:25:06 -0400 | [diff] [blame] | 60 | |
| 61 | void (*arm_pm_idle)(void); |
| 62 | |
Nicolas Pitre | ad68cc7 | 2014-01-29 12:45:09 -0500 | [diff] [blame] | 63 | /* |
| 64 | * Called from the core idle loop. |
| 65 | */ |
| 66 | |
| 67 | void arch_cpu_idle(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
Nicolas Pitre | 4fa2043 | 2011-08-01 17:25:06 -0400 | [diff] [blame] | 69 | if (arm_pm_idle) |
| 70 | arm_pm_idle(); |
| 71 | else |
Nicolas Pitre | ae94091 | 2011-12-19 03:03:58 -0500 | [diff] [blame] | 72 | cpu_do_idle(); |
Russell King | 9ccdac3 | 2009-06-22 22:34:55 +0100 | [diff] [blame] | 73 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 76 | void arch_cpu_idle_prepare(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
| 78 | local_fiq_enable(); |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 79 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 81 | void arch_cpu_idle_enter(void) |
| 82 | { |
| 83 | ledtrig_cpu(CPU_LED_IDLE_START); |
Will Deacon | 11ed0ba | 2011-11-14 17:24:58 +0100 | [diff] [blame] | 84 | #ifdef CONFIG_PL310_ERRATA_769419 |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 85 | wmb(); |
Will Deacon | 11ed0ba | 2011-11-14 17:24:58 +0100 | [diff] [blame] | 86 | #endif |
Thomas Gleixner | f7b861b | 2013-03-21 22:49:38 +0100 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | void arch_cpu_idle_exit(void) |
| 90 | { |
| 91 | ledtrig_cpu(CPU_LED_IDLE_END); |
| 92 | } |
| 93 | |
| 94 | #ifdef CONFIG_HOTPLUG_CPU |
| 95 | void arch_cpu_idle_dead(void) |
| 96 | { |
| 97 | cpu_die(); |
| 98 | } |
| 99 | #endif |
| 100 | |
Russell King | 652a12e | 2005-04-17 15:50:36 +0100 | [diff] [blame] | 101 | void __show_regs(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 103 | unsigned long flags; |
| 104 | char buf[64]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Tejun Heo | a43cb95 | 2013-04-30 15:27:17 -0700 | [diff] [blame] | 106 | show_regs_print_info(KERN_DEFAULT); |
| 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | print_symbol("PC is at %s\n", instruction_pointer(regs)); |
| 109 | print_symbol("LR is at %s\n", regs->ARM_lr); |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 110 | printk("pc : [<%08lx>] lr : [<%08lx>] psr: %08lx\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | "sp : %08lx ip : %08lx fp : %08lx\n", |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 112 | regs->ARM_pc, regs->ARM_lr, regs->ARM_cpsr, |
| 113 | regs->ARM_sp, regs->ARM_ip, regs->ARM_fp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | printk("r10: %08lx r9 : %08lx r8 : %08lx\n", |
| 115 | regs->ARM_r10, regs->ARM_r9, |
| 116 | regs->ARM_r8); |
| 117 | printk("r7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n", |
| 118 | regs->ARM_r7, regs->ARM_r6, |
| 119 | regs->ARM_r5, regs->ARM_r4); |
| 120 | printk("r3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n", |
| 121 | regs->ARM_r3, regs->ARM_r2, |
| 122 | regs->ARM_r1, regs->ARM_r0); |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 123 | |
| 124 | flags = regs->ARM_cpsr; |
| 125 | buf[0] = flags & PSR_N_BIT ? 'N' : 'n'; |
| 126 | buf[1] = flags & PSR_Z_BIT ? 'Z' : 'z'; |
| 127 | buf[2] = flags & PSR_C_BIT ? 'C' : 'c'; |
| 128 | buf[3] = flags & PSR_V_BIT ? 'V' : 'v'; |
| 129 | buf[4] = '\0'; |
| 130 | |
Uwe Kleine-König | e2e55fd | 2013-12-16 10:38:57 +0100 | [diff] [blame] | 131 | #ifndef CONFIG_CPU_V7M |
George G. Davis | 909d6c6 | 2007-06-26 01:38:27 +0100 | [diff] [blame] | 132 | printk("Flags: %s IRQs o%s FIQs o%s Mode %s ISA %s Segment %s\n", |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 133 | buf, interrupts_enabled(regs) ? "n" : "ff", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | fast_interrupts_enabled(regs) ? "n" : "ff", |
| 135 | processor_modes[processor_mode(regs)], |
George G. Davis | 909d6c6 | 2007-06-26 01:38:27 +0100 | [diff] [blame] | 136 | isa_modes[isa_mode(regs)], |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | get_fs() == get_ds() ? "kernel" : "user"); |
Uwe Kleine-König | e2e55fd | 2013-12-16 10:38:57 +0100 | [diff] [blame] | 138 | #else |
| 139 | printk("xPSR: %08lx\n", regs->ARM_cpsr); |
| 140 | #endif |
| 141 | |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 142 | #ifdef CONFIG_CPU_CP15 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 144 | unsigned int ctrl; |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 145 | |
| 146 | buf[0] = '\0'; |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 147 | #ifdef CONFIG_CPU_CP15_MMU |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 148 | { |
Russell King | 1eef5d2 | 2015-08-19 21:23:48 +0100 | [diff] [blame^] | 149 | unsigned int transbase, dac = get_domain(); |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 150 | asm("mrc p15, 0, %0, c2, c0\n\t" |
Russell King | 1eef5d2 | 2015-08-19 21:23:48 +0100 | [diff] [blame^] | 151 | : "=r" (transbase)); |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 152 | snprintf(buf, sizeof(buf), " Table: %08x DAC: %08x", |
| 153 | transbase, dac); |
| 154 | } |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 155 | #endif |
Russell King | 154c772 | 2007-06-18 14:59:45 +0100 | [diff] [blame] | 156 | asm("mrc p15, 0, %0, c1, c0\n" : "=r" (ctrl)); |
| 157 | |
| 158 | printk("Control: %08x%s\n", ctrl, buf); |
| 159 | } |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 160 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | |
Russell King | 652a12e | 2005-04-17 15:50:36 +0100 | [diff] [blame] | 163 | void show_regs(struct pt_regs * regs) |
| 164 | { |
Russell King | 652a12e | 2005-04-17 15:50:36 +0100 | [diff] [blame] | 165 | __show_regs(regs); |
Laura Abbott | b380ab4 | 2011-08-31 02:04:06 +0100 | [diff] [blame] | 166 | dump_stack(); |
Russell King | 652a12e | 2005-04-17 15:50:36 +0100 | [diff] [blame] | 167 | } |
| 168 | |
Russell King | 797245f | 2009-12-18 14:34:43 +0000 | [diff] [blame] | 169 | ATOMIC_NOTIFIER_HEAD(thread_notify_head); |
| 170 | |
| 171 | EXPORT_SYMBOL_GPL(thread_notify_head); |
| 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | * Free current thread data structures etc.. |
| 175 | */ |
| 176 | void exit_thread(void) |
| 177 | { |
Russell King | 797245f | 2009-12-18 14:34:43 +0000 | [diff] [blame] | 178 | thread_notify(THREAD_NOTIFY_EXIT, current_thread_info()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | void flush_thread(void) |
| 182 | { |
| 183 | struct thread_info *thread = current_thread_info(); |
| 184 | struct task_struct *tsk = current; |
| 185 | |
Will Deacon | 864232f | 2010-09-03 10:42:55 +0100 | [diff] [blame] | 186 | flush_ptrace_hw_breakpoint(tsk); |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | memset(thread->used_cp, 0, sizeof(thread->used_cp)); |
| 189 | memset(&tsk->thread.debug, 0, sizeof(struct debug_info)); |
Russell King | d6551e8 | 2006-06-21 13:31:52 +0100 | [diff] [blame] | 190 | memset(&thread->fpstate, 0, sizeof(union fp_state)); |
| 191 | |
Nathan Lynch | fbfb872 | 2014-09-11 02:49:08 +0100 | [diff] [blame] | 192 | flush_tls(); |
| 193 | |
Russell King | d6551e8 | 2006-06-21 13:31:52 +0100 | [diff] [blame] | 194 | thread_notify(THREAD_NOTIFY_FLUSH, thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | void release_thread(struct task_struct *dead_task) |
| 198 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | asmlinkage void ret_from_fork(void) __asm__("ret_from_fork"); |
| 202 | |
| 203 | int |
Alexey Dobriyan | 6f2c55b | 2009-04-02 16:56:59 -0700 | [diff] [blame] | 204 | copy_thread(unsigned long clone_flags, unsigned long stack_start, |
Al Viro | afa86fc | 2012-10-22 22:51:14 -0400 | [diff] [blame] | 205 | unsigned long stk_sz, struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | { |
Al Viro | 815d5ec | 2006-01-12 01:05:57 -0800 | [diff] [blame] | 207 | struct thread_info *thread = task_thread_info(p); |
| 208 | struct pt_regs *childregs = task_pt_regs(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | memset(&thread->cpu_context, 0, sizeof(struct cpu_context_save)); |
Al Viro | 9e14f82 | 2012-09-09 21:31:07 -0400 | [diff] [blame] | 211 | |
Russell King | 1eef5d2 | 2015-08-19 21:23:48 +0100 | [diff] [blame^] | 212 | /* |
| 213 | * Copy the initial value of the domain access control register |
| 214 | * from the current thread: thread->addr_limit will have been |
| 215 | * copied from the current thread via setup_thread_stack() in |
| 216 | * kernel/fork.c |
| 217 | */ |
| 218 | thread->cpu_domain = get_domain(); |
| 219 | |
Al Viro | 38a61b6 | 2012-10-21 15:54:27 -0400 | [diff] [blame] | 220 | if (likely(!(p->flags & PF_KTHREAD))) { |
| 221 | *childregs = *current_pt_regs(); |
Al Viro | 9e14f82 | 2012-09-09 21:31:07 -0400 | [diff] [blame] | 222 | childregs->ARM_r0 = 0; |
Al Viro | 38a61b6 | 2012-10-21 15:54:27 -0400 | [diff] [blame] | 223 | if (stack_start) |
| 224 | childregs->ARM_sp = stack_start; |
Al Viro | 9e14f82 | 2012-09-09 21:31:07 -0400 | [diff] [blame] | 225 | } else { |
Al Viro | 9fff2fa | 2012-10-10 22:23:29 -0400 | [diff] [blame] | 226 | memset(childregs, 0, sizeof(struct pt_regs)); |
Al Viro | 9e14f82 | 2012-09-09 21:31:07 -0400 | [diff] [blame] | 227 | thread->cpu_context.r4 = stk_sz; |
| 228 | thread->cpu_context.r5 = stack_start; |
Al Viro | 9e14f82 | 2012-09-09 21:31:07 -0400 | [diff] [blame] | 229 | childregs->ARM_cpsr = SVC_MODE; |
| 230 | } |
Al Viro | 9fff2fa | 2012-10-10 22:23:29 -0400 | [diff] [blame] | 231 | thread->cpu_context.pc = (unsigned long)ret_from_fork; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | thread->cpu_context.sp = (unsigned long)childregs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Will Deacon | 864232f | 2010-09-03 10:42:55 +0100 | [diff] [blame] | 234 | clear_ptrace_hw_breakpoint(p); |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | if (clone_flags & CLONE_SETTLS) |
André Hentschel | a4780ad | 2013-06-18 23:23:26 +0100 | [diff] [blame] | 237 | thread->tp_value[0] = childregs->ARM_r3; |
| 238 | thread->tp_value[1] = get_tpuser(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Catalin Marinas | 2e82669a | 2011-04-06 16:16:29 +0100 | [diff] [blame] | 240 | thread_notify(THREAD_NOTIFY_COPY, thread); |
| 241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | /* |
Artem Bityutskiy | cde3f86 | 2009-10-13 08:54:30 +0100 | [diff] [blame] | 246 | * Fill in the task's elfregs structure for a core dump. |
| 247 | */ |
| 248 | int dump_task_regs(struct task_struct *t, elf_gregset_t *elfregs) |
| 249 | { |
| 250 | elf_core_copy_regs(elfregs, task_pt_regs(t)); |
| 251 | return 1; |
| 252 | } |
| 253 | |
| 254 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | * fill in the fpe structure for a core dump... |
| 256 | */ |
| 257 | int dump_fpu (struct pt_regs *regs, struct user_fp *fp) |
| 258 | { |
| 259 | struct thread_info *thread = current_thread_info(); |
| 260 | int used_math = thread->used_cp[1] | thread->used_cp[2]; |
| 261 | |
| 262 | if (used_math) |
| 263 | memcpy(fp, &thread->fpstate.soft, sizeof (*fp)); |
| 264 | |
| 265 | return used_math != 0; |
| 266 | } |
| 267 | EXPORT_SYMBOL(dump_fpu); |
| 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | unsigned long get_wchan(struct task_struct *p) |
| 270 | { |
Catalin Marinas | 2d7c11b | 2009-02-11 13:07:53 +0100 | [diff] [blame] | 271 | struct stackframe frame; |
Konstantin Khlebnikov | 1b15ec7a | 2013-12-05 14:21:36 +0100 | [diff] [blame] | 272 | unsigned long stack_page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | int count = 0; |
| 274 | if (!p || p == current || p->state == TASK_RUNNING) |
| 275 | return 0; |
| 276 | |
Catalin Marinas | 2d7c11b | 2009-02-11 13:07:53 +0100 | [diff] [blame] | 277 | frame.fp = thread_saved_fp(p); |
| 278 | frame.sp = thread_saved_sp(p); |
| 279 | frame.lr = 0; /* recovered from the stack */ |
| 280 | frame.pc = thread_saved_pc(p); |
Konstantin Khlebnikov | 1b15ec7a | 2013-12-05 14:21:36 +0100 | [diff] [blame] | 281 | stack_page = (unsigned long)task_stack_page(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | do { |
Konstantin Khlebnikov | 1b15ec7a | 2013-12-05 14:21:36 +0100 | [diff] [blame] | 283 | if (frame.sp < stack_page || |
| 284 | frame.sp >= stack_page + THREAD_SIZE || |
| 285 | unwind_frame(&frame) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | return 0; |
Catalin Marinas | 2d7c11b | 2009-02-11 13:07:53 +0100 | [diff] [blame] | 287 | if (!in_sched_functions(frame.pc)) |
| 288 | return frame.pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } while (count ++ < 16); |
| 290 | return 0; |
| 291 | } |
Nicolas Pitre | 990cb8a | 2010-06-14 16:27:19 -0400 | [diff] [blame] | 292 | |
| 293 | unsigned long arch_randomize_brk(struct mm_struct *mm) |
| 294 | { |
| 295 | unsigned long range_end = mm->brk + 0x02000000; |
| 296 | return randomize_range(mm->brk, range_end, 0) ? : mm->brk; |
| 297 | } |
Nicolas Pitre | ec706da | 2010-08-26 23:10:50 -0400 | [diff] [blame] | 298 | |
Will Deacon | 6cde6d4 | 2011-01-11 14:04:36 +0100 | [diff] [blame] | 299 | #ifdef CONFIG_MMU |
Russell King | a5463cd | 2013-07-31 21:58:56 +0100 | [diff] [blame] | 300 | #ifdef CONFIG_KUSER_HELPERS |
Nicolas Pitre | ec706da | 2010-08-26 23:10:50 -0400 | [diff] [blame] | 301 | /* |
| 302 | * The vectors page is always readable from user space for the |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 303 | * atomic helpers. Insert it into the gate_vma so that it is visible |
| 304 | * through ptrace and /proc/<pid>/mem. |
Nicolas Pitre | ec706da | 2010-08-26 23:10:50 -0400 | [diff] [blame] | 305 | */ |
Russell King | f6604ef | 2013-02-23 17:55:39 +0000 | [diff] [blame] | 306 | static struct vm_area_struct gate_vma = { |
| 307 | .vm_start = 0xffff0000, |
| 308 | .vm_end = 0xffff0000 + PAGE_SIZE, |
| 309 | .vm_flags = VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYEXEC, |
Russell King | f6604ef | 2013-02-23 17:55:39 +0000 | [diff] [blame] | 310 | }; |
Nicolas Pitre | ec706da | 2010-08-26 23:10:50 -0400 | [diff] [blame] | 311 | |
Will Deacon | f9d4861f | 2012-01-20 12:01:13 +0100 | [diff] [blame] | 312 | static int __init gate_vma_init(void) |
Nicolas Pitre | ec706da | 2010-08-26 23:10:50 -0400 | [diff] [blame] | 313 | { |
Russell King | f6604ef | 2013-02-23 17:55:39 +0000 | [diff] [blame] | 314 | gate_vma.vm_page_prot = PAGE_READONLY_EXEC; |
Will Deacon | f9d4861f | 2012-01-20 12:01:13 +0100 | [diff] [blame] | 315 | return 0; |
| 316 | } |
| 317 | arch_initcall(gate_vma_init); |
| 318 | |
| 319 | struct vm_area_struct *get_gate_vma(struct mm_struct *mm) |
| 320 | { |
| 321 | return &gate_vma; |
| 322 | } |
| 323 | |
| 324 | int in_gate_area(struct mm_struct *mm, unsigned long addr) |
| 325 | { |
| 326 | return (addr >= gate_vma.vm_start) && (addr < gate_vma.vm_end); |
| 327 | } |
| 328 | |
| 329 | int in_gate_area_no_mm(unsigned long addr) |
| 330 | { |
| 331 | return in_gate_area(NULL, addr); |
Nicolas Pitre | ec706da | 2010-08-26 23:10:50 -0400 | [diff] [blame] | 332 | } |
Russell King | 1d0bbf4 | 2013-08-06 09:49:14 +0100 | [diff] [blame] | 333 | #define is_gate_vma(vma) ((vma) == &gate_vma) |
Russell King | a5463cd | 2013-07-31 21:58:56 +0100 | [diff] [blame] | 334 | #else |
| 335 | #define is_gate_vma(vma) 0 |
| 336 | #endif |
Nicolas Pitre | ec706da | 2010-08-26 23:10:50 -0400 | [diff] [blame] | 337 | |
| 338 | const char *arch_vma_name(struct vm_area_struct *vma) |
| 339 | { |
Nathan Lynch | 02e0409 | 2014-09-22 22:08:42 +0100 | [diff] [blame] | 340 | return is_gate_vma(vma) ? "[vectors]" : NULL; |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 341 | } |
| 342 | |
Nathan Lynch | 389522b | 2014-09-22 22:12:35 +0100 | [diff] [blame] | 343 | /* If possible, provide a placement hint at a random offset from the |
Nathan Lynch | ecf99a4 | 2015-03-25 19:15:08 +0100 | [diff] [blame] | 344 | * stack for the sigpage and vdso pages. |
Nathan Lynch | 389522b | 2014-09-22 22:12:35 +0100 | [diff] [blame] | 345 | */ |
| 346 | static unsigned long sigpage_addr(const struct mm_struct *mm, |
| 347 | unsigned int npages) |
| 348 | { |
| 349 | unsigned long offset; |
| 350 | unsigned long first; |
| 351 | unsigned long last; |
| 352 | unsigned long addr; |
| 353 | unsigned int slots; |
| 354 | |
| 355 | first = PAGE_ALIGN(mm->start_stack); |
| 356 | |
| 357 | last = TASK_SIZE - (npages << PAGE_SHIFT); |
| 358 | |
| 359 | /* No room after stack? */ |
| 360 | if (first > last) |
| 361 | return 0; |
| 362 | |
| 363 | /* Just enough room? */ |
| 364 | if (first == last) |
| 365 | return first; |
| 366 | |
| 367 | slots = ((last - first) >> PAGE_SHIFT) + 1; |
| 368 | |
| 369 | offset = get_random_int() % slots; |
| 370 | |
| 371 | addr = first + (offset << PAGE_SHIFT); |
| 372 | |
| 373 | return addr; |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 374 | } |
| 375 | |
Russell King | e0d4075 | 2013-08-03 10:30:05 +0100 | [diff] [blame] | 376 | static struct page *signal_page; |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 377 | extern struct page *get_signal_page(void); |
| 378 | |
Nathan Lynch | 02e0409 | 2014-09-22 22:08:42 +0100 | [diff] [blame] | 379 | static const struct vm_special_mapping sigpage_mapping = { |
| 380 | .name = "[sigpage]", |
| 381 | .pages = &signal_page, |
| 382 | }; |
| 383 | |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 384 | int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp) |
| 385 | { |
| 386 | struct mm_struct *mm = current->mm; |
Nathan Lynch | 02e0409 | 2014-09-22 22:08:42 +0100 | [diff] [blame] | 387 | struct vm_area_struct *vma; |
Nathan Lynch | ecf99a4 | 2015-03-25 19:15:08 +0100 | [diff] [blame] | 388 | unsigned long npages; |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 389 | unsigned long addr; |
Nathan Lynch | 389522b | 2014-09-22 22:12:35 +0100 | [diff] [blame] | 390 | unsigned long hint; |
Nathan Lynch | 02e0409 | 2014-09-22 22:08:42 +0100 | [diff] [blame] | 391 | int ret = 0; |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 392 | |
Russell King | e0d4075 | 2013-08-03 10:30:05 +0100 | [diff] [blame] | 393 | if (!signal_page) |
| 394 | signal_page = get_signal_page(); |
| 395 | if (!signal_page) |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 396 | return -ENOMEM; |
| 397 | |
Nathan Lynch | ecf99a4 | 2015-03-25 19:15:08 +0100 | [diff] [blame] | 398 | npages = 1; /* for sigpage */ |
| 399 | npages += vdso_total_pages; |
| 400 | |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 401 | down_write(&mm->mmap_sem); |
Nathan Lynch | ecf99a4 | 2015-03-25 19:15:08 +0100 | [diff] [blame] | 402 | hint = sigpage_addr(mm, npages); |
| 403 | addr = get_unmapped_area(NULL, hint, npages << PAGE_SHIFT, 0, 0); |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 404 | if (IS_ERR_VALUE(addr)) { |
| 405 | ret = addr; |
| 406 | goto up_fail; |
| 407 | } |
| 408 | |
Nathan Lynch | 02e0409 | 2014-09-22 22:08:42 +0100 | [diff] [blame] | 409 | vma = _install_special_mapping(mm, addr, PAGE_SIZE, |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 410 | VM_READ | VM_EXEC | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC, |
Nathan Lynch | 02e0409 | 2014-09-22 22:08:42 +0100 | [diff] [blame] | 411 | &sigpage_mapping); |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 412 | |
Nathan Lynch | 02e0409 | 2014-09-22 22:08:42 +0100 | [diff] [blame] | 413 | if (IS_ERR(vma)) { |
| 414 | ret = PTR_ERR(vma); |
| 415 | goto up_fail; |
| 416 | } |
| 417 | |
| 418 | mm->context.sigpage = addr; |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 419 | |
Nathan Lynch | ecf99a4 | 2015-03-25 19:15:08 +0100 | [diff] [blame] | 420 | /* Unlike the sigpage, failure to install the vdso is unlikely |
| 421 | * to be fatal to the process, so no error check needed |
| 422 | * here. |
| 423 | */ |
| 424 | arm_install_vdso(mm, addr + PAGE_SIZE); |
| 425 | |
Russell King | 48be69a | 2013-07-24 00:29:18 +0100 | [diff] [blame] | 426 | up_fail: |
| 427 | up_write(&mm->mmap_sem); |
| 428 | return ret; |
Nicolas Pitre | ec706da | 2010-08-26 23:10:50 -0400 | [diff] [blame] | 429 | } |
Will Deacon | 6cde6d4 | 2011-01-11 14:04:36 +0100 | [diff] [blame] | 430 | #endif |