xref: /linux/arch/um/kernel/exec.c (revision 76ed9158e1d474e963fc59da7a461b27a2212c5a)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
4  */
5 
6 #include <linux/stddef.h>
7 #include <linux/module.h>
8 #include <linux/fs.h>
9 #include <linux/ptrace.h>
10 #include <linux/sched/mm.h>
11 #include <linux/sched/task.h>
12 #include <linux/sched/task_stack.h>
13 #include <linux/slab.h>
14 #include <asm/current.h>
15 #include <asm/processor.h>
16 #include <linux/uaccess.h>
17 #include <as-layout.h>
18 #include <mem_user.h>
19 #include <registers.h>
20 #include <skas.h>
21 #include <os.h>
22 
23 void flush_thread(void)
24 {
25 	arch_flush_thread(&current->thread.arch);
26 
27 	unmap(&current->mm->context.id, 0, TASK_SIZE);
28 	if (syscall_stub_flush(&current->mm->context.id) < 0) {
29 		printk(KERN_ERR "%s - clearing address space failed", __func__);
30 		force_sig(SIGKILL);
31 	}
32 	get_safe_registers(current_pt_regs()->regs.gp,
33 			   current_pt_regs()->regs.fp);
34 
35 	__switch_mm(&current->mm->context.id);
36 }
37 
38 void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp)
39 {
40 	PT_REGS_IP(regs) = eip;
41 	PT_REGS_SP(regs) = esp;
42 	clear_thread_flag(TIF_SINGLESTEP);
43 #ifdef SUBARCH_EXECVE1
44 	SUBARCH_EXECVE1(regs->regs);
45 #endif
46 }
47 EXPORT_SYMBOL(start_thread);
48