blob: 733175373a4c6e9a95c204f30f47214d81351f73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Heiko Carstenscbdc2292009-03-26 15:23:52 +01002 * This file handles the architecture dependent parts of process handling.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 1999, 2009
Heiko Carstenscbdc2292009-03-26 15:23:52 +01005 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
6 * Hartmut Penner <hp@de.ibm.com>,
7 * Denis Joseph Barrow,
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/compiler.h>
11#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/sched.h>
13#include <linux/kernel.h>
14#include <linux/mm.h>
Martin Schwidefsky638ad342011-10-30 15:17:13 +010015#include <linux/elfcore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/smp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/interrupt.h>
Heiko Carstens5a62b192008-04-17 07:46:25 +020019#include <linux/tick.h>
Heiko Carstens9887a1f2011-01-12 09:55:28 +010020#include <linux/personality.h>
Heiko Carstens26689452009-01-14 14:14:36 +010021#include <linux/syscalls.h>
Heiko Carstens3e86a8c2009-09-22 22:58:42 +020022#include <linux/compat.h>
Martin Schwidefsky860dba42011-01-05 12:47:25 +010023#include <linux/kprobes.h>
Heiko Carstens9887a1f2011-01-12 09:55:28 +010024#include <linux/random.h>
Jan Glauber3af6fb62011-05-23 10:24:44 +020025#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/io.h>
27#include <asm/processor.h>
Martin Schwidefsky27f6b412012-07-20 11:15:08 +020028#include <asm/vtimer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/irq.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010030#include <asm/nmi.h>
Heiko Carstensda7f51c2011-01-05 12:48:09 +010031#include <asm/smp.h>
David Howellsa0616cd2012-03-28 18:30:02 +010032#include <asm/switch_to.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020033#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020035asmlinkage void ret_from_fork(void) asm ("ret_from_fork");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/*
38 * Return saved PC of a blocked thread. used in kernel/sched.
39 * resume in entry.S does not create a new stack frame, it
40 * just stores the registers %r6-%r15 to the frame given by
41 * schedule. We want to return the address of the caller of
42 * schedule, so we have to walk the backchain one time to
43 * find the frame schedule() store its return address.
44 */
45unsigned long thread_saved_pc(struct task_struct *tsk)
46{
Heiko Carstenseb33c192006-01-14 13:20:57 -080047 struct stack_frame *sf, *low, *high;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Heiko Carstenseb33c192006-01-14 13:20:57 -080049 if (!tsk || !task_stack_page(tsk))
50 return 0;
51 low = task_stack_page(tsk);
52 high = (struct stack_frame *) task_pt_regs(tsk);
53 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN);
54 if (sf <= low || sf > high)
55 return 0;
56 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
57 if (sf <= low || sf > high)
58 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return sf->gprs[8];
60}
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
63 * The idle loop on a S390...
64 */
Adrian Bunkcdb04522006-03-24 03:15:57 -080065static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Heiko Carstensda7f51c2011-01-05 12:48:09 +010067 if (cpu_is_offline(smp_processor_id()))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 cpu_die();
Heiko Carstens6931be02010-10-25 16:10:12 +020069 local_irq_disable();
70 if (need_resched()) {
71 local_irq_enable();
72 return;
73 }
Heiko Carstens77fa2242005-06-25 14:55:30 -070074 local_mcck_disable();
75 if (test_thread_flag(TIF_MCCK_PENDING)) {
76 local_mcck_enable();
77 local_irq_enable();
Heiko Carstens77fa2242005-06-25 14:55:30 -070078 return;
79 }
Martin Schwidefsky4c1051e2012-03-11 11:59:27 -040080 /* Halt the cpu and keep track of cpu time accounting. */
Martin Schwidefsky9cfb9b32008-12-31 15:11:41 +010081 vtime_stop_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84void cpu_idle(void)
85{
Nick Piggin5bfb5d62005-11-08 21:39:01 -080086 for (;;) {
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010087 tick_nohz_idle_enter();
88 rcu_idle_enter();
Heiko Carstensf36123042012-02-17 10:29:20 +010089 while (!need_resched() && !test_thread_flag(TIF_MCCK_PENDING))
Nick Piggin5bfb5d62005-11-08 21:39:01 -080090 default_idle();
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010091 rcu_idle_exit();
92 tick_nohz_idle_exit();
Heiko Carstensf36123042012-02-17 10:29:20 +010093 if (test_thread_flag(TIF_MCCK_PENDING))
94 s390_handle_mcck();
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +010095 schedule_preempt_disabled();
Nick Piggin5bfb5d62005-11-08 21:39:01 -080096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Martin Schwidefsky860dba42011-01-05 12:47:25 +010099extern void __kprobes kernel_thread_starter(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200101asm(
Martin Schwidefsky860dba42011-01-05 12:47:25 +0100102 ".section .kprobes.text, \"ax\"\n"
103 ".global kernel_thread_starter\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 "kernel_thread_starter:\n"
105 " la 2,0(10)\n"
106 " basr 14,9\n"
107 " la 2,0\n"
Martin Schwidefsky860dba42011-01-05 12:47:25 +0100108 " br 11\n"
109 ".previous\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
112{
113 struct pt_regs regs;
114
115 memset(&regs, 0, sizeof(regs));
Martin Schwidefskyb50511e2011-10-30 15:16:50 +0100116 regs.psw.mask = psw_kernel_bits |
117 PSW_MASK_DAT | PSW_MASK_IO | PSW_MASK_EXT | PSW_MASK_MCHECK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
119 regs.gprs[9] = (unsigned long) fn;
120 regs.gprs[10] = (unsigned long) arg;
121 regs.gprs[11] = (unsigned long) do_exit;
122 regs.orig_gpr2 = -1;
123
124 /* Ok, create the new process.. */
125 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
126 0, &regs, 0, NULL, NULL);
127}
Heiko Carstens1485c5c2009-03-26 15:24:04 +0100128EXPORT_SYMBOL(kernel_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
131 * Free current thread data structures etc..
132 */
133void exit_thread(void)
134{
135}
136
137void flush_thread(void)
138{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141void release_thread(struct task_struct *dead_task)
142{
143}
144
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700145int copy_thread(unsigned long clone_flags, unsigned long new_stackp,
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100146 unsigned long unused,
147 struct task_struct *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Heiko Carstens5168ce2c2009-03-26 15:23:53 +0100149 struct thread_info *ti;
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100150 struct fake_frame
151 {
152 struct stack_frame sf;
153 struct pt_regs childregs;
154 } *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100156 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
157 p->thread.ksp = (unsigned long) frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 /* Store access registers to kernel stack of new process. */
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100159 frame->childregs = *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100161 frame->childregs.gprs[15] = new_stackp;
162 frame->sf.back_chain = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100164 /* new return point is ret_from_fork */
165 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100167 /* fake return stack for resume(), don't go back to schedule */
168 frame->sf.gprs[9] = (unsigned long) frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* Save access registers to new thread structure. */
171 save_access_regs(&p->thread.acrs[0]);
172
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800173#ifndef CONFIG_64BIT
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100174 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * save fprs to current->thread.fp_regs to merge them with
176 * the emulated registers and then copy the result to the child.
177 */
178 save_fp_regs(&current->thread.fp_regs);
179 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
180 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* Set a new TLS ? */
182 if (clone_flags & CLONE_SETTLS)
183 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800184#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 /* Save the fpu registers to new thread structure. */
186 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* Set a new TLS ? */
188 if (clone_flags & CLONE_SETTLS) {
Heiko Carstens77575912009-06-12 10:26:25 +0200189 if (is_compat_task()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
191 } else {
192 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
193 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
194 }
195 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800196#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* start new process with ar4 pointing to the correct address space */
198 p->thread.mm_segment = get_fs();
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100199 /* Don't copy debug registers */
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100200 memset(&p->thread.per_user, 0, sizeof(p->thread.per_user));
201 memset(&p->thread.per_event, 0, sizeof(p->thread.per_event));
Martin Schwidefskyf8d5faf2010-01-13 20:44:26 +0100202 clear_tsk_thread_flag(p, TIF_SINGLE_STEP);
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100203 clear_tsk_thread_flag(p, TIF_PER_TRAP);
Heiko Carstens5168ce2c2009-03-26 15:23:53 +0100204 /* Initialize per thread user and system timer values */
205 ti = task_thread_info(p);
206 ti->user_timer = 0;
207 ti->system_timer = 0;
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Heiko Carstens26689452009-01-14 14:14:36 +0100211SYSCALL_DEFINE0(fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200213 struct pt_regs *regs = task_pt_regs(current);
214 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Heiko Carstens2d70ca22009-09-22 22:58:41 +0200217SYSCALL_DEFINE4(clone, unsigned long, newsp, unsigned long, clone_flags,
218 int __user *, parent_tidptr, int __user *, child_tidptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200220 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200222 if (!newsp)
223 newsp = regs->gprs[15];
224 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 parent_tidptr, child_tidptr);
226}
227
228/*
229 * This is trivial, and on the face of it looks like it
230 * could equally well be done in user mode.
231 *
232 * Not so, for quite unobvious reasons - register pressure.
233 * In user mode vfork() cannot have a stack frame, and if
234 * done by calling the "clone()" system call directly, you
235 * do not have enough call-clobbered registers to hold all
236 * the information you need.
237 */
Heiko Carstens26689452009-01-14 14:14:36 +0100238SYSCALL_DEFINE0(vfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200240 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200242 regs->gprs[15], regs, 0, NULL, NULL);
243}
244
245asmlinkage void execve_tail(void)
246{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200247 current->thread.fp_regs.fpc = 0;
248 if (MACHINE_HAS_IEEE)
249 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252/*
253 * sys_execve() executes a new program.
254 */
David Howellsd7627462010-08-17 23:52:56 +0100255SYSCALL_DEFINE3(execve, const char __user *, name,
256 const char __user *const __user *, argv,
257 const char __user *const __user *, envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200259 struct pt_regs *regs = task_pt_regs(current);
260 char *filename;
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200261 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200263 filename = getname(name);
264 rc = PTR_ERR(filename);
265 if (IS_ERR(filename))
266 return rc;
267 rc = do_execve(filename, argv, envp, regs);
268 if (rc)
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200269 goto out;
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200270 execve_tail();
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200271 rc = regs->gprs[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272out:
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200273 putname(filename);
274 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/*
278 * fill in the FPU structure for a core dump.
279 */
280int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
281{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800282#ifndef CONFIG_64BIT
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100283 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * save fprs to current->thread.fp_regs to merge them with
285 * the emulated registers and then copy the result to the dump.
286 */
287 save_fp_regs(&current->thread.fp_regs);
288 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800289#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800291#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 1;
293}
Heiko Carstens1485c5c2009-03-26 15:24:04 +0100294EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296unsigned long get_wchan(struct task_struct *p)
297{
298 struct stack_frame *sf, *low, *high;
299 unsigned long return_address;
300 int count;
301
Al Viro30af7122006-01-12 01:05:50 -0800302 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800304 low = task_stack_page(p);
305 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
307 if (sf <= low || sf > high)
308 return 0;
309 for (count = 0; count < 16; count++) {
310 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
311 if (sf <= low || sf > high)
312 return 0;
313 return_address = sf->gprs[8] & PSW_ADDR_INSN;
314 if (!in_sched_functions(return_address))
315 return return_address;
316 }
317 return 0;
318}
Heiko Carstens9887a1f2011-01-12 09:55:28 +0100319
320unsigned long arch_align_stack(unsigned long sp)
321{
322 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
323 sp -= get_random_int() & ~PAGE_MASK;
324 return sp & ~0xf;
325}
Heiko Carstens33519182011-01-12 09:55:30 +0100326
327static inline unsigned long brk_rnd(void)
328{
329 /* 8MB for 32bit, 1GB for 64bit */
330 if (is_32bit_task())
331 return (get_random_int() & 0x7ffUL) << PAGE_SHIFT;
332 else
333 return (get_random_int() & 0x3ffffUL) << PAGE_SHIFT;
334}
335
336unsigned long arch_randomize_brk(struct mm_struct *mm)
337{
338 unsigned long ret = PAGE_ALIGN(mm->brk + brk_rnd());
339
340 if (ret < mm->brk)
341 return mm->brk;
342 return ret;
343}
Heiko Carstensd2c9dfcc2011-01-12 09:55:31 +0100344
345unsigned long randomize_et_dyn(unsigned long base)
346{
347 unsigned long ret = PAGE_ALIGN(base + brk_rnd());
348
349 if (!(current->flags & PF_RANDOMIZE))
350 return base;
351 if (ret < base)
352 return base;
353 return ret;
354}