blob: 4261aa799774f5972940f22ebd1b7c7ea29220f8 [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 Carstenscbdc2292009-03-26 15:23:52 +01004 * Copyright IBM Corp. 1999,2009
5 * 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/system.h>
27#include <asm/io.h>
28#include <asm/processor.h>
29#include <asm/irq.h>
30#include <asm/timer.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010031#include <asm/nmi.h>
Jan Glauber3af6fb62011-05-23 10:24:44 +020032#include <asm/compat.h>
Heiko Carstensda7f51c2011-01-05 12:48:09 +010033#include <asm/smp.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020034#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020036asmlinkage void ret_from_fork(void) asm ("ret_from_fork");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * Return saved PC of a blocked thread. used in kernel/sched.
40 * resume in entry.S does not create a new stack frame, it
41 * just stores the registers %r6-%r15 to the frame given by
42 * schedule. We want to return the address of the caller of
43 * schedule, so we have to walk the backchain one time to
44 * find the frame schedule() store its return address.
45 */
46unsigned long thread_saved_pc(struct task_struct *tsk)
47{
Heiko Carstenseb33c192006-01-14 13:20:57 -080048 struct stack_frame *sf, *low, *high;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Heiko Carstenseb33c192006-01-14 13:20:57 -080050 if (!tsk || !task_stack_page(tsk))
51 return 0;
52 low = task_stack_page(tsk);
53 high = (struct stack_frame *) task_pt_regs(tsk);
54 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN);
55 if (sf <= low || sf > high)
56 return 0;
57 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
58 if (sf <= low || sf > high)
59 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return sf->gprs[8];
61}
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * The idle loop on a S390...
65 */
Adrian Bunkcdb04522006-03-24 03:15:57 -080066static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Heiko Carstensda7f51c2011-01-05 12:48:09 +010068 if (cpu_is_offline(smp_processor_id()))
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 cpu_die();
Heiko Carstens6931be02010-10-25 16:10:12 +020070 local_irq_disable();
71 if (need_resched()) {
72 local_irq_enable();
73 return;
74 }
Heiko Carstens77fa2242005-06-25 14:55:30 -070075 local_mcck_disable();
76 if (test_thread_flag(TIF_MCCK_PENDING)) {
77 local_mcck_enable();
78 local_irq_enable();
Heiko Carstens77fa2242005-06-25 14:55:30 -070079 return;
80 }
Heiko Carstens1f194a42006-07-03 00:24:46 -070081 trace_hardirqs_on();
Heiko Carstens632448f2008-11-14 18:18:04 +010082 /* Don't trace preempt off for idle. */
83 stop_critical_timings();
Martin Schwidefsky9cfb9b32008-12-31 15:11:41 +010084 /* Stop virtual timer and halt the cpu. */
85 vtime_stop_cpu();
86 /* Reenable preemption tracer. */
Heiko Carstens632448f2008-11-14 18:18:04 +010087 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90void cpu_idle(void)
91{
Nick Piggin5bfb5d62005-11-08 21:39:01 -080092 for (;;) {
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010093 tick_nohz_idle_enter();
94 rcu_idle_enter();
Heiko Carstensf36123042012-02-17 10:29:20 +010095 while (!need_resched() && !test_thread_flag(TIF_MCCK_PENDING))
Nick Piggin5bfb5d62005-11-08 21:39:01 -080096 default_idle();
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010097 rcu_idle_exit();
98 tick_nohz_idle_exit();
Heiko Carstensf36123042012-02-17 10:29:20 +010099 if (test_thread_flag(TIF_MCCK_PENDING))
100 s390_handle_mcck();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800101 preempt_enable_no_resched();
102 schedule();
103 preempt_disable();
104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Martin Schwidefsky860dba42011-01-05 12:47:25 +0100107extern void __kprobes kernel_thread_starter(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200109asm(
Martin Schwidefsky860dba42011-01-05 12:47:25 +0100110 ".section .kprobes.text, \"ax\"\n"
111 ".global kernel_thread_starter\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 "kernel_thread_starter:\n"
113 " la 2,0(10)\n"
114 " basr 14,9\n"
115 " la 2,0\n"
Martin Schwidefsky860dba42011-01-05 12:47:25 +0100116 " br 11\n"
117 ".previous\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
120{
121 struct pt_regs regs;
122
123 memset(&regs, 0, sizeof(regs));
Martin Schwidefskyb50511e2011-10-30 15:16:50 +0100124 regs.psw.mask = psw_kernel_bits |
125 PSW_MASK_DAT | PSW_MASK_IO | PSW_MASK_EXT | PSW_MASK_MCHECK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
127 regs.gprs[9] = (unsigned long) fn;
128 regs.gprs[10] = (unsigned long) arg;
129 regs.gprs[11] = (unsigned long) do_exit;
130 regs.orig_gpr2 = -1;
131
132 /* Ok, create the new process.. */
133 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
134 0, &regs, 0, NULL, NULL);
135}
Heiko Carstens1485c5c2009-03-26 15:24:04 +0100136EXPORT_SYMBOL(kernel_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/*
139 * Free current thread data structures etc..
140 */
141void exit_thread(void)
142{
143}
144
145void flush_thread(void)
146{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149void release_thread(struct task_struct *dead_task)
150{
151}
152
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700153int copy_thread(unsigned long clone_flags, unsigned long new_stackp,
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100154 unsigned long unused,
155 struct task_struct *p, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Heiko Carstens5168ce22009-03-26 15:23:53 +0100157 struct thread_info *ti;
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100158 struct fake_frame
159 {
160 struct stack_frame sf;
161 struct pt_regs childregs;
162 } *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100164 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
165 p->thread.ksp = (unsigned long) frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /* Store access registers to kernel stack of new process. */
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100167 frame->childregs = *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100169 frame->childregs.gprs[15] = new_stackp;
170 frame->sf.back_chain = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100172 /* new return point is ret_from_fork */
173 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100175 /* fake return stack for resume(), don't go back to schedule */
176 frame->sf.gprs[9] = (unsigned long) frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /* Save access registers to new thread structure. */
179 save_access_regs(&p->thread.acrs[0]);
180
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800181#ifndef CONFIG_64BIT
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100182 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * save fprs to current->thread.fp_regs to merge them with
184 * the emulated registers and then copy the result to the child.
185 */
186 save_fp_regs(&current->thread.fp_regs);
187 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
188 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 /* Set a new TLS ? */
190 if (clone_flags & CLONE_SETTLS)
191 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800192#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 /* Save the fpu registers to new thread structure. */
194 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /* Set a new TLS ? */
196 if (clone_flags & CLONE_SETTLS) {
Heiko Carstens77575912009-06-12 10:26:25 +0200197 if (is_compat_task()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
199 } else {
200 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
201 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
202 }
203 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800204#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* start new process with ar4 pointing to the correct address space */
206 p->thread.mm_segment = get_fs();
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100207 /* Don't copy debug registers */
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100208 memset(&p->thread.per_user, 0, sizeof(p->thread.per_user));
209 memset(&p->thread.per_event, 0, sizeof(p->thread.per_event));
Martin Schwidefskyf8d5faf2010-01-13 20:44:26 +0100210 clear_tsk_thread_flag(p, TIF_SINGLE_STEP);
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100211 clear_tsk_thread_flag(p, TIF_PER_TRAP);
Heiko Carstens5168ce22009-03-26 15:23:53 +0100212 /* Initialize per thread user and system timer values */
213 ti = task_thread_info(p);
214 ti->user_timer = 0;
215 ti->system_timer = 0;
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100216 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Heiko Carstens26689452009-01-14 14:14:36 +0100219SYSCALL_DEFINE0(fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200221 struct pt_regs *regs = task_pt_regs(current);
222 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Heiko Carstens2d70ca22009-09-22 22:58:41 +0200225SYSCALL_DEFINE4(clone, unsigned long, newsp, unsigned long, clone_flags,
226 int __user *, parent_tidptr, int __user *, child_tidptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200228 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200230 if (!newsp)
231 newsp = regs->gprs[15];
232 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 parent_tidptr, child_tidptr);
234}
235
236/*
237 * This is trivial, and on the face of it looks like it
238 * could equally well be done in user mode.
239 *
240 * Not so, for quite unobvious reasons - register pressure.
241 * In user mode vfork() cannot have a stack frame, and if
242 * done by calling the "clone()" system call directly, you
243 * do not have enough call-clobbered registers to hold all
244 * the information you need.
245 */
Heiko Carstens26689452009-01-14 14:14:36 +0100246SYSCALL_DEFINE0(vfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200248 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200250 regs->gprs[15], regs, 0, NULL, NULL);
251}
252
253asmlinkage void execve_tail(void)
254{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200255 current->thread.fp_regs.fpc = 0;
256 if (MACHINE_HAS_IEEE)
257 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260/*
261 * sys_execve() executes a new program.
262 */
David Howellsd7627462010-08-17 23:52:56 +0100263SYSCALL_DEFINE3(execve, const char __user *, name,
264 const char __user *const __user *, argv,
265 const char __user *const __user *, envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200267 struct pt_regs *regs = task_pt_regs(current);
268 char *filename;
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200269 long rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200271 filename = getname(name);
272 rc = PTR_ERR(filename);
273 if (IS_ERR(filename))
274 return rc;
275 rc = do_execve(filename, argv, envp, regs);
276 if (rc)
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200277 goto out;
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200278 execve_tail();
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200279 rc = regs->gprs[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280out:
Heiko Carstens3e86a8c2009-09-22 22:58:42 +0200281 putname(filename);
282 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285/*
286 * fill in the FPU structure for a core dump.
287 */
288int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
289{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800290#ifndef CONFIG_64BIT
Heiko Carstenscbdc2292009-03-26 15:23:52 +0100291 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 * save fprs to current->thread.fp_regs to merge them with
293 * the emulated registers and then copy the result to the dump.
294 */
295 save_fp_regs(&current->thread.fp_regs);
296 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800297#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800299#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return 1;
301}
Heiko Carstens1485c5c2009-03-26 15:24:04 +0100302EXPORT_SYMBOL(dump_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304unsigned long get_wchan(struct task_struct *p)
305{
306 struct stack_frame *sf, *low, *high;
307 unsigned long return_address;
308 int count;
309
Al Viro30af7122006-01-12 01:05:50 -0800310 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800312 low = task_stack_page(p);
313 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
315 if (sf <= low || sf > high)
316 return 0;
317 for (count = 0; count < 16; count++) {
318 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
319 if (sf <= low || sf > high)
320 return 0;
321 return_address = sf->gprs[8] & PSW_ADDR_INSN;
322 if (!in_sched_functions(return_address))
323 return return_address;
324 }
325 return 0;
326}
Heiko Carstens9887a1f2011-01-12 09:55:28 +0100327
328unsigned long arch_align_stack(unsigned long sp)
329{
330 if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
331 sp -= get_random_int() & ~PAGE_MASK;
332 return sp & ~0xf;
333}
Heiko Carstens33519182011-01-12 09:55:30 +0100334
335static inline unsigned long brk_rnd(void)
336{
337 /* 8MB for 32bit, 1GB for 64bit */
338 if (is_32bit_task())
339 return (get_random_int() & 0x7ffUL) << PAGE_SHIFT;
340 else
341 return (get_random_int() & 0x3ffffUL) << PAGE_SHIFT;
342}
343
344unsigned long arch_randomize_brk(struct mm_struct *mm)
345{
346 unsigned long ret = PAGE_ALIGN(mm->brk + brk_rnd());
347
348 if (ret < mm->brk)
349 return mm->brk;
350 return ret;
351}
Heiko Carstensd2c9dfc2011-01-12 09:55:31 +0100352
353unsigned long randomize_et_dyn(unsigned long base)
354{
355 unsigned long ret = PAGE_ALIGN(base + brk_rnd());
356
357 if (!(current->flags & PF_RANDOMIZE))
358 return base;
359 if (ret < base)
360 return base;
361 return ret;
362}