ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / arm / kernel / sys_arm.c
1 /*
2  *  linux/arch/arm/kernel/sys_arm.c
3  *
4  *  Copyright (C) People who wrote linux/arch/i386/kernel/sys_i386.c
5  *  Copyright (C) 1995, 1996 Russell King.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  *  This file contains various random system calls that
12  *  have a non-standard calling sequence on the Linux/arm
13  *  platform.
14  */
15 #include <linux/errno.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/mm.h>
19 #include <linux/sem.h>
20 #include <linux/msg.h>
21 #include <linux/shm.h>
22 #include <linux/stat.h>
23 #include <linux/syscalls.h>
24 #include <linux/mman.h>
25 #include <linux/fs.h>
26 #include <linux/file.h>
27 #include <linux/utsname.h>
28
29 #include <asm/uaccess.h>
30 #include <asm/ipc.h>
31
32 extern unsigned long do_mremap(unsigned long addr, unsigned long old_len,
33                                unsigned long new_len, unsigned long flags,
34                                unsigned long new_addr);
35
36 /*
37  * sys_pipe() is the normal C calling standard for creating
38  * a pipe. It's not the way unix traditionally does this, though.
39  */
40 asmlinkage int sys_pipe(unsigned long __user *fildes)
41 {
42         int fd[2];
43         int error;
44
45         error = do_pipe(fd);
46         if (!error) {
47                 if (copy_to_user(fildes, fd, 2*sizeof(int)))
48                         error = -EFAULT;
49         }
50         return error;
51 }
52
53 /* common code for old and new mmaps */
54 inline long do_mmap2(
55         unsigned long addr, unsigned long len,
56         unsigned long prot, unsigned long flags,
57         unsigned long fd, unsigned long pgoff)
58 {
59         int error = -EINVAL;
60         struct file * file = NULL;
61
62         flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
63
64         /*
65          * If we are doing a fixed mapping, and address < PAGE_SIZE,
66          * then deny it.
67          */
68         if (flags & MAP_FIXED && addr < PAGE_SIZE && vectors_base() == 0)
69                 goto out;
70
71         error = -EBADF;
72         if (!(flags & MAP_ANONYMOUS)) {
73                 file = fget(fd);
74                 if (!file)
75                         goto out;
76         }
77
78         down_write(&current->mm->mmap_sem);
79         error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
80         up_write(&current->mm->mmap_sem);
81
82         if (file)
83                 fput(file);
84 out:
85         return error;
86 }
87
88 struct mmap_arg_struct {
89         unsigned long addr;
90         unsigned long len;
91         unsigned long prot;
92         unsigned long flags;
93         unsigned long fd;
94         unsigned long offset;
95 };
96
97 asmlinkage int old_mmap(struct mmap_arg_struct __user *arg)
98 {
99         int error = -EFAULT;
100         struct mmap_arg_struct a;
101
102         if (copy_from_user(&a, arg, sizeof(a)))
103                 goto out;
104
105         error = -EINVAL;
106         if (a.offset & ~PAGE_MASK)
107                 goto out;
108
109         error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset >> PAGE_SHIFT);
110 out:
111         return error;
112 }
113
114 asmlinkage unsigned long
115 sys_arm_mremap(unsigned long addr, unsigned long old_len,
116                unsigned long new_len, unsigned long flags,
117                unsigned long new_addr)
118 {
119         unsigned long ret = -EINVAL;
120
121         /*
122          * If we are doing a fixed mapping, and address < PAGE_SIZE,
123          * then deny it.
124          */
125         if (flags & MREMAP_FIXED && new_addr < PAGE_SIZE &&
126             vectors_base() == 0)
127                 goto out;
128
129         down_write(&current->mm->mmap_sem);
130         ret = do_mremap(addr, old_len, new_len, flags, new_addr);
131         up_write(&current->mm->mmap_sem);
132
133 out:
134         return ret;
135 }
136
137 /*
138  * Perform the select(nd, in, out, ex, tv) and mmap() system
139  * calls.
140  */
141
142 struct sel_arg_struct {
143         unsigned long n;
144         fd_set __user *inp, *outp, *exp;
145         struct timeval __user *tvp;
146 };
147
148 asmlinkage int old_select(struct sel_arg_struct __user *arg)
149 {
150         struct sel_arg_struct a;
151
152         if (copy_from_user(&a, arg, sizeof(a)))
153                 return -EFAULT;
154         /* sys_select() does the appropriate kernel locking */
155         return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
156 }
157
158 /*
159  * sys_ipc() is the de-multiplexer for the SysV IPC calls..
160  *
161  * This is really horribly ugly.
162  */
163 asmlinkage int sys_ipc(uint call, int first, int second, int third,
164                        void __user *ptr, long fifth)
165 {
166         int version, ret;
167
168         version = call >> 16; /* hack for backward compatibility */
169         call &= 0xffff;
170
171         switch (call) {
172         case SEMOP:
173                 return sys_semop(first, (struct sembuf __user *)ptr, second);
174         case SEMGET:
175                 return sys_semget (first, second, third);
176         case SEMCTL: {
177                 union semun fourth;
178                 if (!ptr)
179                         return -EINVAL;
180                 if (get_user(fourth.__pad, (void __user **) ptr))
181                         return -EFAULT;
182                 return sys_semctl (first, second, third, fourth);
183         }
184
185         case MSGSND:
186                 return sys_msgsnd(first, (struct msgbuf __user *) ptr, 
187                                   second, third);
188         case MSGRCV:
189                 switch (version) {
190                 case 0: {
191                         struct ipc_kludge tmp;
192                         if (!ptr)
193                                 return -EINVAL;
194                         if (copy_from_user(&tmp,(struct ipc_kludge __user *)ptr,
195                                            sizeof (tmp)))
196                                 return -EFAULT;
197                         return sys_msgrcv (first, tmp.msgp, second,
198                                            tmp.msgtyp, third);
199                 }
200                 default:
201                         return sys_msgrcv (first,
202                                            (struct msgbuf __user *) ptr,
203                                            second, fifth, third);
204                 }
205         case MSGGET:
206                 return sys_msgget ((key_t) first, second);
207         case MSGCTL:
208                 return sys_msgctl(first, second, (struct msqid_ds __user *)ptr);
209
210         case SHMAT:
211                 switch (version) {
212                 default: {
213                         ulong raddr;
214                         ret = do_shmat(first, (char __user *)ptr, second, &raddr);
215                         if (ret)
216                                 return ret;
217                         return put_user(raddr, (ulong __user *)third);
218                 }
219                 case 1: /* iBCS2 emulator entry point */
220                         if (!segment_eq(get_fs(), get_ds()))
221                                 return -EINVAL;
222                         return do_shmat(first, (char __user *) ptr,
223                                         second, (ulong __user *) third);
224                 }
225         case SHMDT: 
226                 return sys_shmdt ((char __user *)ptr);
227         case SHMGET:
228                 return sys_shmget (first, second, third);
229         case SHMCTL:
230                 return sys_shmctl (first, second,
231                                    (struct shmid_ds __user *) ptr);
232         default:
233                 return -ENOSYS;
234         }
235 }
236
237 /* Fork a new task - this creates a new program thread.
238  * This is called indirectly via a small wrapper
239  */
240 asmlinkage int sys_fork(struct pt_regs *regs)
241 {
242         return do_fork(SIGCHLD, regs->ARM_sp, regs, 0, NULL, NULL);
243 }
244
245 /* Clone a task - this clones the calling program thread.
246  * This is called indirectly via a small wrapper
247  */
248 asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp, struct pt_regs *regs)
249 {
250         /*
251          * We don't support SETTID / CLEARTID
252          */
253         if (clone_flags & (CLONE_PARENT_SETTID | CLONE_CHILD_CLEARTID))
254                 return -EINVAL;
255
256         if (!newsp)
257                 newsp = regs->ARM_sp;
258
259         return do_fork(clone_flags & ~CLONE_IDLETASK, newsp, regs, 0, NULL, NULL);
260 }
261
262 asmlinkage int sys_vfork(struct pt_regs *regs)
263 {
264         return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->ARM_sp, regs, 0, NULL, NULL);
265 }
266
267 /* sys_execve() executes a new program.
268  * This is called indirectly via a small wrapper
269  */
270 asmlinkage int sys_execve(char __user *filenamei, char __user * __user *argv,
271                           char __user * __user *envp, struct pt_regs *regs)
272 {
273         int error;
274         char * filename;
275
276         filename = getname(filenamei);
277         error = PTR_ERR(filename);
278         if (IS_ERR(filename))
279                 goto out;
280         error = do_execve(filename, argv, envp, regs);
281         putname(filename);
282 out:
283         return error;
284 }