blob: c0cb627bf594bd870aed412e9362679ee5d8613b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2000, 2001 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
6#include "linux/slab.h"
7#include "linux/smp_lock.h"
8#include "linux/ptrace.h"
9#include "asm/ptrace.h"
10#include "asm/pgtable.h"
11#include "asm/tlbflush.h"
12#include "asm/uaccess.h"
13#include "user_util.h"
14#include "kern_util.h"
15#include "mem_user.h"
16#include "kern.h"
17#include "irq_user.h"
18#include "tlb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "os.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "choose-mode.h"
21#include "mode_kern.h"
22
23void flush_thread(void)
24{
Paolo 'Blaisorblade' Giarrussoaa6758d2006-03-31 02:30:22 -080025 arch_flush_thread(&current->thread.arch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 CHOOSE_MODE(flush_thread_tt(), flush_thread_skas());
27}
28
29void start_thread(struct pt_regs *regs, unsigned long eip, unsigned long esp)
30{
31 CHOOSE_MODE_PROC(start_thread_tt, start_thread_skas, regs, eip, esp);
32}
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static long execve1(char *file, char __user * __user *argv,
Paolo 'Blaisorblade' Giarrusso42947cb2006-02-01 03:06:29 -080035 char __user *__user *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
37 long error;
38
39#ifdef CONFIG_TTY_LOG
40 log_exec(argv, current->tty);
41#endif
42 error = do_execve(file, argv, env, &current->thread.regs);
43 if (error == 0){
44 task_lock(current);
45 current->ptrace &= ~PT_DTRACE;
46 task_unlock(current);
47 set_cmdline(current_cmd());
48 }
49 return(error);
50}
51
52long um_execve(char *file, char __user *__user *argv, char __user *__user *env)
53{
54 long err;
55
56 err = execve1(file, argv, env);
57 if(!err)
58 do_longjmp(current->thread.exec_buf, 1);
59 return(err);
60}
61
Al Viro4d338e12006-03-31 02:30:15 -080062long sys_execve(char __user *file, char __user *__user *argv,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 char __user *__user *env)
64{
65 long error;
66 char *filename;
67
68 lock_kernel();
Al Viro4d338e12006-03-31 02:30:15 -080069 filename = getname(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 error = PTR_ERR(filename);
71 if (IS_ERR(filename)) goto out;
72 error = execve1(filename, argv, env);
73 putname(filename);
74 out:
75 unlock_kernel();
76 return(error);
77}