process.c 7.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * This file handles the architecture dependent parts of process handling.
L
Linus Torvalds 已提交
3
 *
4
 *    Copyright IBM Corp. 1999, 2009
5 6 7
 *    Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
 *		 Hartmut Penner <hp@de.ibm.com>,
 *		 Denis Joseph Barrow,
L
Linus Torvalds 已提交
8 9 10 11 12 13 14
 */

#include <linux/compiler.h>
#include <linux/cpu.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/mm.h>
15
#include <linux/elfcore.h>
L
Linus Torvalds 已提交
16
#include <linux/smp.h>
17
#include <linux/slab.h>
L
Linus Torvalds 已提交
18
#include <linux/interrupt.h>
19
#include <linux/tick.h>
20
#include <linux/personality.h>
21
#include <linux/syscalls.h>
22
#include <linux/compat.h>
23
#include <linux/kprobes.h>
24
#include <linux/random.h>
25
#include <linux/module.h>
L
Linus Torvalds 已提交
26 27
#include <asm/io.h>
#include <asm/processor.h>
28
#include <asm/vtimer.h>
29
#include <asm/exec.h>
L
Linus Torvalds 已提交
30
#include <asm/irq.h>
31
#include <asm/nmi.h>
32
#include <asm/smp.h>
33
#include <asm/switch_to.h>
34
#include <asm/runtime_instr.h>
35
#include "entry.h"
L
Linus Torvalds 已提交
36

37
asmlinkage void ret_from_fork(void) asm ("ret_from_fork");
L
Linus Torvalds 已提交
38 39 40 41 42 43 44 45 46 47 48

/*
 * Return saved PC of a blocked thread. used in kernel/sched.
 * resume in entry.S does not create a new stack frame, it
 * just stores the registers %r6-%r15 to the frame given by
 * schedule. We want to return the address of the caller of
 * schedule, so we have to walk the backchain one time to
 * find the frame schedule() store its return address.
 */
unsigned long thread_saved_pc(struct task_struct *tsk)
{
H
Heiko Carstens 已提交
49
	struct stack_frame *sf, *low, *high;
L
Linus Torvalds 已提交
50

H
Heiko Carstens 已提交
51 52 53 54 55 56 57 58 59 60
	if (!tsk || !task_stack_page(tsk))
		return 0;
	low = task_stack_page(tsk);
	high = (struct stack_frame *) task_pt_regs(tsk);
	sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN);
	if (sf <= low || sf > high)
		return 0;
	sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
	if (sf <= low || sf > high)
		return 0;
L
Linus Torvalds 已提交
61 62 63
	return sf->gprs[8];
}

T
Thomas Gleixner 已提交
64
void arch_cpu_idle(void)
L
Linus Torvalds 已提交
65
{
66
	local_mcck_disable();
67
	if (test_cpu_flag(CIF_MCCK_PENDING)) {
68 69 70 71
		local_mcck_enable();
		local_irq_enable();
		return;
	}
M
Martin Schwidefsky 已提交
72
	/* Halt the cpu and keep track of cpu time accounting. */
73
	vtime_stop_cpu();
74
	local_irq_enable();
L
Linus Torvalds 已提交
75 76
}

T
Thomas Gleixner 已提交
77
void arch_cpu_idle_exit(void)
L
Linus Torvalds 已提交
78
{
79
	if (test_cpu_flag(CIF_MCCK_PENDING))
T
Thomas Gleixner 已提交
80 81 82 83 84 85
		s390_handle_mcck();
}

void arch_cpu_idle_dead(void)
{
	cpu_die();
L
Linus Torvalds 已提交
86 87
}

88
extern void __kprobes kernel_thread_starter(void);
L
Linus Torvalds 已提交
89 90 91 92 93 94

/*
 * Free current thread data structures etc..
 */
void exit_thread(void)
{
95
	exit_thread_runtime_instr();
L
Linus Torvalds 已提交
96 97 98 99 100 101 102 103 104 105
}

void flush_thread(void)
{
}

void release_thread(struct task_struct *dead_task)
{
}

A
Alexey Dobriyan 已提交
106
int copy_thread(unsigned long clone_flags, unsigned long new_stackp,
107
		unsigned long arg, struct task_struct *p)
L
Linus Torvalds 已提交
108
{
109
	struct thread_info *ti;
110 111 112 113 114 115 116 117
	struct fake_frame
	{
		struct stack_frame sf;
		struct pt_regs childregs;
	} *frame;

	frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
	p->thread.ksp = (unsigned long) frame;
118 119 120 121 122 123 124 125 126 127 128 129
	/* Save access registers to new thread structure. */
	save_access_regs(&p->thread.acrs[0]);
	/* start new process with ar4 pointing to the correct address space */
	p->thread.mm_segment = get_fs();
	/* Don't copy debug registers */
	memset(&p->thread.per_user, 0, sizeof(p->thread.per_user));
	memset(&p->thread.per_event, 0, sizeof(p->thread.per_event));
	clear_tsk_thread_flag(p, TIF_SINGLE_STEP);
	/* Initialize per thread user and system timer values */
	ti = task_thread_info(p);
	ti->user_timer = 0;
	ti->system_timer = 0;
L
Linus Torvalds 已提交
130

131
	frame->sf.back_chain = 0;
132 133 134 135
	/* new return point is ret_from_fork */
	frame->sf.gprs[8] = (unsigned long) ret_from_fork;
	/* fake return stack for resume(), don't go back to schedule */
	frame->sf.gprs[9] = (unsigned long) frame;
L
Linus Torvalds 已提交
136

137
	/* Store access registers to kernel stack of new process. */
A
Al Viro 已提交
138
	if (unlikely(p->flags & PF_KTHREAD)) {
139 140
		/* kernel thread */
		memset(&frame->childregs, 0, sizeof(struct pt_regs));
141
		frame->childregs.psw.mask = PSW_KERNEL_BITS | PSW_MASK_DAT |
142 143 144 145 146 147 148 149 150 151
				PSW_MASK_IO | PSW_MASK_EXT | PSW_MASK_MCHECK;
		frame->childregs.psw.addr = PSW_ADDR_AMODE |
				(unsigned long) kernel_thread_starter;
		frame->childregs.gprs[9] = new_stackp; /* function */
		frame->childregs.gprs[10] = arg;
		frame->childregs.gprs[11] = (unsigned long) do_exit;
		frame->childregs.orig_gpr2 = -1;

		return 0;
	}
A
Al Viro 已提交
152
	frame->childregs = *current_pt_regs();
153
	frame->childregs.gprs[2] = 0;	/* child returns 0 on fork. */
154
	frame->childregs.flags = 0;
A
Al Viro 已提交
155 156
	if (new_stackp)
		frame->childregs.gprs[15] = new_stackp;
L
Linus Torvalds 已提交
157

158 159 160 161 162
	/* Don't copy runtime instrumentation info */
	p->thread.ri_cb = NULL;
	p->thread.ri_signum = 0;
	frame->childregs.psw.mask &= ~PSW_MASK_RI;

163
#ifndef CONFIG_64BIT
164
	/*
L
Linus Torvalds 已提交
165 166 167
	 * save fprs to current->thread.fp_regs to merge them with
	 * the emulated registers and then copy the result to the child.
	 */
168 169
	save_fp_ctl(&current->thread.fp_regs.fpc);
	save_fp_regs(current->thread.fp_regs.fprs);
L
Linus Torvalds 已提交
170 171 172 173
	memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
	       sizeof(s390_fp_regs));
	/* Set a new TLS ?  */
	if (clone_flags & CLONE_SETTLS)
A
Al Viro 已提交
174
		p->thread.acrs[0] = frame->childregs.gprs[6];
175
#else /* CONFIG_64BIT */
L
Linus Torvalds 已提交
176
	/* Save the fpu registers to new thread structure. */
177 178 179
	save_fp_ctl(&p->thread.fp_regs.fpc);
	save_fp_regs(p->thread.fp_regs.fprs);
	p->thread.fp_regs.pad = 0;
L
Linus Torvalds 已提交
180 181
	/* Set a new TLS ?  */
	if (clone_flags & CLONE_SETTLS) {
A
Al Viro 已提交
182
		unsigned long tls = frame->childregs.gprs[6];
H
Heiko Carstens 已提交
183
		if (is_compat_task()) {
A
Al Viro 已提交
184
			p->thread.acrs[0] = (unsigned int)tls;
L
Linus Torvalds 已提交
185
		} else {
A
Al Viro 已提交
186 187
			p->thread.acrs[0] = (unsigned int)(tls >> 32);
			p->thread.acrs[1] = (unsigned int)tls;
L
Linus Torvalds 已提交
188 189
		}
	}
190
#endif /* CONFIG_64BIT */
191
	return 0;
L
Linus Torvalds 已提交
192 193
}

M
Martin Schwidefsky 已提交
194 195 196 197 198
asmlinkage void execve_tail(void)
{
	current->thread.fp_regs.fpc = 0;
	if (MACHINE_HAS_IEEE)
		asm volatile("sfpc %0,%0" : : "d" (0));
L
Linus Torvalds 已提交
199 200 201 202 203 204 205
}

/*
 * fill in the FPU structure for a core dump.
 */
int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
{
206
#ifndef CONFIG_64BIT
207
	/*
L
Linus Torvalds 已提交
208 209 210
	 * save fprs to current->thread.fp_regs to merge them with
	 * the emulated registers and then copy the result to the dump.
	 */
211 212
	save_fp_ctl(&current->thread.fp_regs.fpc);
	save_fp_regs(current->thread.fp_regs.fprs);
L
Linus Torvalds 已提交
213
	memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
214
#else /* CONFIG_64BIT */
215 216
	save_fp_ctl(&fpregs->fpc);
	save_fp_regs(fpregs->fprs);
217
#endif /* CONFIG_64BIT */
L
Linus Torvalds 已提交
218 219
	return 1;
}
220
EXPORT_SYMBOL(dump_fpu);
L
Linus Torvalds 已提交
221 222 223 224 225 226 227

unsigned long get_wchan(struct task_struct *p)
{
	struct stack_frame *sf, *low, *high;
	unsigned long return_address;
	int count;

A
Al Viro 已提交
228
	if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
L
Linus Torvalds 已提交
229
		return 0;
A
Al Viro 已提交
230 231
	low = task_stack_page(p);
	high = (struct stack_frame *) task_pt_regs(p);
L
Linus Torvalds 已提交
232 233 234 235 236 237 238 239 240 241 242 243 244
	sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
	if (sf <= low || sf > high)
		return 0;
	for (count = 0; count < 16; count++) {
		sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
		if (sf <= low || sf > high)
			return 0;
		return_address = sf->gprs[8] & PSW_ADDR_INSN;
		if (!in_sched_functions(return_address))
			return return_address;
	}
	return 0;
}
245 246 247 248 249 250 251

unsigned long arch_align_stack(unsigned long sp)
{
	if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
		sp -= get_random_int() & ~PAGE_MASK;
	return sp & ~0xf;
}
H
Heiko Carstens 已提交
252 253 254 255 256 257 258 259 260 261 262 263

static inline unsigned long brk_rnd(void)
{
	/* 8MB for 32bit, 1GB for 64bit */
	if (is_32bit_task())
		return (get_random_int() & 0x7ffUL) << PAGE_SHIFT;
	else
		return (get_random_int() & 0x3ffffUL) << PAGE_SHIFT;
}

unsigned long arch_randomize_brk(struct mm_struct *mm)
{
264
	unsigned long ret;
H
Heiko Carstens 已提交
265

266 267
	ret = PAGE_ALIGN(mm->brk + brk_rnd());
	return (ret > mm->brk) ? ret : mm->brk;
H
Heiko Carstens 已提交
268
}
H
Heiko Carstens 已提交
269 270 271

unsigned long randomize_et_dyn(unsigned long base)
{
272
	unsigned long ret;
H
Heiko Carstens 已提交
273 274 275

	if (!(current->flags & PF_RANDOMIZE))
		return base;
276 277
	ret = PAGE_ALIGN(base + brk_rnd());
	return (ret > base) ? ret : base;
H
Heiko Carstens 已提交
278
}