2 * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL
6 #include "linux/sched.h"
7 #include "linux/file.h"
8 #include "linux/smp_lock.h"
11 #include "linux/utsname.h"
12 #include "linux/msg.h"
13 #include "linux/shm.h"
14 #include "linux/sys.h"
15 #include "linux/syscalls.h"
16 #include "linux/unistd.h"
17 #include "linux/slab.h"
18 #include "linux/utime.h"
20 #include "asm/uaccess.h"
21 #include "kern_util.h"
22 #include "sysdep/syscalls.h"
23 #include "mode_kern.h"
24 #include "choose-mode.h"
26 /* Unlocked, I don't care if this is a bit off */
33 current->thread.forking = 1;
34 ret = do_fork(SIGCHLD, UPT_SP(¤t->thread.regs.regs),
35 ¤t->thread.regs, 0, NULL, NULL);
36 current->thread.forking = 0;
44 current->thread.forking = 1;
45 ret = do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
46 UPT_SP(¤t->thread.regs.regs),
47 ¤t->thread.regs, 0, NULL, NULL);
48 current->thread.forking = 0;
52 /* common code for old and new mmaps */
53 long sys_mmap2(unsigned long addr, unsigned long len,
54 unsigned long prot, unsigned long flags,
55 unsigned long fd, unsigned long pgoff)
58 struct file * file = NULL;
60 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
61 if (!(flags & MAP_ANONYMOUS)) {
67 down_write(¤t->mm->mmap_sem);
68 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
69 up_write(¤t->mm->mmap_sem);
77 long old_mmap(unsigned long addr, unsigned long len,
78 unsigned long prot, unsigned long flags,
79 unsigned long fd, unsigned long offset)
82 if (offset & ~PAGE_MASK)
85 err = sys_mmap2(addr, len, prot, flags, fd, offset >> PAGE_SHIFT);
90 * sys_pipe() is the normal C calling standard for creating
91 * a pipe. It's not the way unix traditionally does this, though.
93 long sys_pipe(unsigned long __user * fildes)
100 if (copy_to_user(fildes, fd, sizeof(fd)))
107 long sys_uname(struct old_utsname __user * name)
113 err = copy_to_user(name, utsname(), sizeof (*name));
115 return err?-EFAULT:0;
118 long sys_olduname(struct oldold_utsname __user * name)
124 if (!access_ok(VERIFY_WRITE,name,sizeof(struct oldold_utsname)))
129 error = __copy_to_user(&name->sysname, &utsname()->sysname,
131 error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
132 error |= __copy_to_user(&name->nodename, &utsname()->nodename,
134 error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
135 error |= __copy_to_user(&name->release, &utsname()->release,
137 error |= __put_user(0, name->release + __OLD_UTS_LEN);
138 error |= __copy_to_user(&name->version, &utsname()->version,
140 error |= __put_user(0, name->version + __OLD_UTS_LEN);
141 error |= __copy_to_user(&name->machine, &utsname()->machine,
143 error |= __put_user(0, name->machine + __OLD_UTS_LEN);
147 error = error ? -EFAULT : 0;
152 int kernel_execve(const char *filename, char *const argv[], char *const envp[])
159 ret = um_execve(filename, argv, envp);