blob: b9d92b2089aed6cb0b3a5d67d0dafce8fd0051dc [file] [log] [blame]
Jeff Dike1d3468a2006-07-10 04:45:13 -07001/*
Jeff Dikeba180fd2007-10-16 01:27:00 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "linux/file.h"
Alexey Dobriyan4e950f62007-07-30 02:36:13 +04007#include "linux/fs.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -07008#include "linux/mm.h"
9#include "linux/sched.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include "linux/utsname.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -070011#include "asm/current.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "asm/mman.h"
13#include "asm/uaccess.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -070014#include "asm/unistd.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16/* Unlocked, I don't care if this is a bit off */
17int nsyscalls = 0;
18
19long sys_fork(void)
20{
21 long ret;
22
23 current->thread.forking = 1;
Jeff Dikee0877f02005-06-25 14:55:21 -070024 ret = do_fork(SIGCHLD, UPT_SP(&current->thread.regs.regs),
25 &current->thread.regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 current->thread.forking = 0;
Jeff Dikeba180fd2007-10-16 01:27:00 -070027 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028}
29
30long sys_vfork(void)
31{
32 long ret;
33
34 current->thread.forking = 1;
Jeff Dikee0877f02005-06-25 14:55:21 -070035 ret = do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
36 UPT_SP(&current->thread.regs.regs),
37 &current->thread.regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 current->thread.forking = 0;
Jeff Dikeba180fd2007-10-16 01:27:00 -070039 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
42/* common code for old and new mmaps */
43long sys_mmap2(unsigned long addr, unsigned long len,
44 unsigned long prot, unsigned long flags,
45 unsigned long fd, unsigned long pgoff)
46{
47 long error = -EBADF;
48 struct file * file = NULL;
49
50 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
51 if (!(flags & MAP_ANONYMOUS)) {
52 file = fget(fd);
53 if (!file)
54 goto out;
55 }
56
57 down_write(&current->mm->mmap_sem);
58 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
59 up_write(&current->mm->mmap_sem);
60
61 if (file)
62 fput(file);
63 out:
64 return error;
65}
66
67long old_mmap(unsigned long addr, unsigned long len,
68 unsigned long prot, unsigned long flags,
69 unsigned long fd, unsigned long offset)
70{
71 long err = -EINVAL;
72 if (offset & ~PAGE_MASK)
73 goto out;
74
75 err = sys_mmap2(addr, len, prot, flags, fd, offset >> PAGE_SHIFT);
76 out:
77 return err;
78}
79/*
80 * sys_pipe() is the normal C calling standard for creating
81 * a pipe. It's not the way unix traditionally does this, though.
82 */
83long sys_pipe(unsigned long __user * fildes)
84{
Jeff Dikeba180fd2007-10-16 01:27:00 -070085 int fd[2];
86 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Jeff Dikeba180fd2007-10-16 01:27:00 -070088 error = do_pipe(fd);
89 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 if (copy_to_user(fildes, fd, sizeof(fd)))
Jeff Dikeba180fd2007-10-16 01:27:00 -070091 error = -EFAULT;
92 }
93 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96
Al Viro4d338e12006-03-31 02:30:15 -080097long sys_uname(struct old_utsname __user * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 long err;
100 if (!name)
101 return -EFAULT;
102 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700103 err = copy_to_user(name, utsname(), sizeof (*name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 up_read(&uts_sem);
105 return err?-EFAULT:0;
106}
107
Al Viro4d338e12006-03-31 02:30:15 -0800108long sys_olduname(struct oldold_utsname __user * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 long error;
111
112 if (!name)
113 return -EFAULT;
114 if (!access_ok(VERIFY_WRITE,name,sizeof(struct oldold_utsname)))
115 return -EFAULT;
Jeff Dike1d3468a2006-07-10 04:45:13 -0700116
Jeff Dikeba180fd2007-10-16 01:27:00 -0700117 down_read(&uts_sem);
Jeff Dike1d3468a2006-07-10 04:45:13 -0700118
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700119 error = __copy_to_user(&name->sysname, &utsname()->sysname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 __OLD_UTS_LEN);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700121 error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
122 error |= __copy_to_user(&name->nodename, &utsname()->nodename,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 __OLD_UTS_LEN);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700124 error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
125 error |= __copy_to_user(&name->release, &utsname()->release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 __OLD_UTS_LEN);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700127 error |= __put_user(0, name->release + __OLD_UTS_LEN);
128 error |= __copy_to_user(&name->version, &utsname()->version,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 __OLD_UTS_LEN);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700130 error |= __put_user(0, name->version + __OLD_UTS_LEN);
131 error |= __copy_to_user(&name->machine, &utsname()->machine,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 __OLD_UTS_LEN);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700133 error |= __put_user(0, name->machine + __OLD_UTS_LEN);
Jeff Dike1d3468a2006-07-10 04:45:13 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 up_read(&uts_sem);
Jeff Dike1d3468a2006-07-10 04:45:13 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 error = error ? -EFAULT : 0;
138
139 return error;
140}
141
Arnd Bergmann3db03b42006-10-02 02:18:31 -0700142int kernel_execve(const char *filename, char *const argv[], char *const envp[])
143{
144 mm_segment_t fs;
145 int ret;
146
147 fs = get_fs();
148 set_fs(KERNEL_DS);
149 ret = um_execve(filename, argv, envp);
150 set_fs(fs);
151
152 return ret;
153}