This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / arch / mips / kernel / syscall.c
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 1995, 1996, 1997, 2000, 2001, 05 by Ralf Baechle
7  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8  * Copyright (C) 2001 MIPS Technologies, Inc.
9  */
10 #include <linux/config.h>
11 #include <linux/a.out.h>
12 #include <linux/capability.h>
13 #include <linux/errno.h>
14 #include <linux/linkage.h>
15 #include <linux/mm.h>
16 #include <linux/smp.h>
17 #include <linux/smp_lock.h>
18 #include <linux/mman.h>
19 #include <linux/ptrace.h>
20 #include <linux/sched.h>
21 #include <linux/string.h>
22 #include <linux/syscalls.h>
23 #include <linux/file.h>
24 #include <linux/slab.h>
25 #include <linux/utsname.h>
26 #include <linux/unistd.h>
27 #include <linux/sem.h>
28 #include <linux/msg.h>
29 #include <linux/shm.h>
30 #include <linux/compiler.h>
31 #include <linux/module.h>
32 #include <linux/vs_cvirt.h>
33
34 #include <asm/branch.h>
35 #include <asm/cachectl.h>
36 #include <asm/cacheflush.h>
37 #include <asm/ipc.h>
38 #include <asm/asm-offsets.h>
39 #include <asm/signal.h>
40 #include <asm/sim.h>
41 #include <asm/shmparam.h>
42 #include <asm/sysmips.h>
43 #include <asm/uaccess.h>
44
45 asmlinkage int sys_pipe(nabi_no_regargs volatile struct pt_regs regs)
46 {
47         int fd[2];
48         int error, res;
49
50         error = do_pipe(fd);
51         if (error) {
52                 res = error;
53                 goto out;
54         }
55         regs.regs[3] = fd[1];
56         res = fd[0];
57 out:
58         return res;
59 }
60
61 unsigned long shm_align_mask = PAGE_SIZE - 1;   /* Sane caches */
62
63 EXPORT_SYMBOL(shm_align_mask);
64
65 #define COLOUR_ALIGN(addr,pgoff)                                \
66         ((((addr) + shm_align_mask) & ~shm_align_mask) +        \
67          (((pgoff) << PAGE_SHIFT) & shm_align_mask))
68
69 unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr,
70         unsigned long len, unsigned long pgoff, unsigned long flags)
71 {
72         struct vm_area_struct * vmm;
73         int do_color_align;
74         unsigned long task_size;
75
76         task_size = STACK_TOP;
77
78         if (flags & MAP_FIXED) {
79                 /*
80                  * We do not accept a shared mapping if it would violate
81                  * cache aliasing constraints.
82                  */
83                 if ((flags & MAP_SHARED) && (addr & shm_align_mask))
84                         return -EINVAL;
85                 return addr;
86         }
87
88         if (len > task_size)
89                 return -ENOMEM;
90         do_color_align = 0;
91         if (filp || (flags & MAP_SHARED))
92                 do_color_align = 1;
93         if (addr) {
94                 if (do_color_align)
95                         addr = COLOUR_ALIGN(addr, pgoff);
96                 else
97                         addr = PAGE_ALIGN(addr);
98                 vmm = find_vma(current->mm, addr);
99                 if (task_size - len >= addr &&
100                     (!vmm || addr + len <= vmm->vm_start))
101                         return addr;
102         }
103         addr = TASK_UNMAPPED_BASE;
104         if (do_color_align)
105                 addr = COLOUR_ALIGN(addr, pgoff);
106         else
107                 addr = PAGE_ALIGN(addr);
108
109         for (vmm = find_vma(current->mm, addr); ; vmm = vmm->vm_next) {
110                 /* At this point:  (!vmm || addr < vmm->vm_end). */
111                 if (task_size - len < addr)
112                         return -ENOMEM;
113                 if (!vmm || addr + len <= vmm->vm_start)
114                         return addr;
115                 addr = vmm->vm_end;
116                 if (do_color_align)
117                         addr = COLOUR_ALIGN(addr, pgoff);
118         }
119 }
120
121 /* common code for old and new mmaps */
122 static inline unsigned long
123 do_mmap2(unsigned long addr, unsigned long len, unsigned long prot,
124         unsigned long flags, unsigned long fd, unsigned long pgoff)
125 {
126         unsigned long error = -EBADF;
127         struct file * file = NULL;
128
129         flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
130         if (!(flags & MAP_ANONYMOUS)) {
131                 file = fget(fd);
132                 if (!file)
133                         goto out;
134         }
135
136         down_write(&current->mm->mmap_sem);
137         error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
138         up_write(&current->mm->mmap_sem);
139
140         if (file)
141                 fput(file);
142 out:
143         return error;
144 }
145
146 asmlinkage unsigned long
147 old_mmap(unsigned long addr, unsigned long len, int prot,
148         int flags, int fd, off_t offset)
149 {
150         unsigned long result;
151
152         result = -EINVAL;
153         if (offset & ~PAGE_MASK)
154                 goto out;
155
156         result = do_mmap2(addr, len, prot, flags, fd, offset >> PAGE_SHIFT);
157
158 out:
159         return result;
160 }
161
162 asmlinkage unsigned long
163 sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot,
164           unsigned long flags, unsigned long fd, unsigned long pgoff)
165 {
166         return do_mmap2(addr, len, prot, flags, fd, pgoff);
167 }
168
169 save_static_function(sys_fork);
170 __attribute_used__ noinline static int
171 _sys_fork(nabi_no_regargs struct pt_regs regs)
172 {
173         return do_fork(SIGCHLD, regs.regs[29], &regs, 0, NULL, NULL);
174 }
175
176 save_static_function(sys_clone);
177 __attribute_used__ noinline static int
178 _sys_clone(nabi_no_regargs struct pt_regs regs)
179 {
180         unsigned long clone_flags;
181         unsigned long newsp;
182         int __user *parent_tidptr, *child_tidptr;
183
184         clone_flags = regs.regs[4];
185         newsp = regs.regs[5];
186         if (!newsp)
187                 newsp = regs.regs[29];
188         parent_tidptr = (int __user *) regs.regs[6];
189 #ifdef CONFIG_32BIT
190         /* We need to fetch the fifth argument off the stack.  */
191         child_tidptr = NULL;
192         if (clone_flags & (CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID)) {
193                 int __user *__user *usp = (int __user *__user *) regs.regs[29];
194                 if (regs.regs[2] == __NR_syscall) {
195                         if (get_user (child_tidptr, &usp[5]))
196                                 return -EFAULT;
197                 }
198                 else if (get_user (child_tidptr, &usp[4]))
199                         return -EFAULT;
200         }
201 #else
202         child_tidptr = (int __user *) regs.regs[8];
203 #endif
204         return do_fork(clone_flags, newsp, &regs, 0,
205                        parent_tidptr, child_tidptr);
206 }
207
208 /*
209  * sys_execve() executes a new program.
210  */
211 asmlinkage int sys_execve(nabi_no_regargs struct pt_regs regs)
212 {
213         int error;
214         char * filename;
215
216         filename = getname((char __user *) (long)regs.regs[4]);
217         error = PTR_ERR(filename);
218         if (IS_ERR(filename))
219                 goto out;
220         error = do_execve(filename, (char __user *__user *) (long)regs.regs[5],
221                           (char __user *__user *) (long)regs.regs[6], &regs);
222         putname(filename);
223
224 out:
225         return error;
226 }
227
228 /*
229  * Compacrapability ...
230  */
231 asmlinkage int sys_uname(struct old_utsname __user * name)
232 {
233         if (name && !copy_to_user(name, vx_new_utsname(), sizeof (*name)))
234                 return 0;
235         return -EFAULT;
236 }
237
238 /*
239  * Compacrapability ...
240  */
241 asmlinkage int sys_olduname(struct oldold_utsname __user * name)
242 {
243         int error;
244         struct new_utsname *ptr;
245
246         if (!name)
247                 return -EFAULT;
248         if (!access_ok(VERIFY_WRITE,name,sizeof(struct oldold_utsname)))
249                 return -EFAULT;
250
251         ptr = vx_new_utsname();
252         error = __copy_to_user(&name->sysname,ptr->sysname,__OLD_UTS_LEN);
253         error -= __put_user(0,name->sysname+__OLD_UTS_LEN);
254         error -= __copy_to_user(&name->nodename,ptr->nodename,__OLD_UTS_LEN);
255         error -= __put_user(0,name->nodename+__OLD_UTS_LEN);
256         error -= __copy_to_user(&name->release,ptr->release,__OLD_UTS_LEN);
257         error -= __put_user(0,name->release+__OLD_UTS_LEN);
258         error -= __copy_to_user(&name->version,ptr->version,__OLD_UTS_LEN);
259         error -= __put_user(0,name->version+__OLD_UTS_LEN);
260         error -= __copy_to_user(&name->machine,ptr->machine,__OLD_UTS_LEN);
261         error = __put_user(0,name->machine+__OLD_UTS_LEN);
262         error = error ? -EFAULT : 0;
263
264         return error;
265 }
266
267 void sys_set_thread_area(unsigned long addr)
268 {
269         struct thread_info *ti = task_thread_info(current);
270
271         ti->tp_value = addr;
272
273         /* If some future MIPS implementation has this register in hardware,
274          * we will need to update it here (and in context switches).  */
275 }
276
277 asmlinkage int _sys_sysmips(int cmd, long arg1, int arg2, int arg3)
278 {
279         int     tmp, len;
280         char    __user *name;
281
282         switch(cmd) {
283         case SETNAME: {
284                 char nodename[__NEW_UTS_LEN + 1];
285
286                 if (!capable(CAP_SYS_ADMIN))
287                         return -EPERM;
288
289                 name = (char __user *) arg1;
290
291                 len = strncpy_from_user(nodename, name, __NEW_UTS_LEN);
292                 if (len < 0)
293                         return -EFAULT;
294
295                 down_write(&uts_sem);
296                 strncpy(vx_new_uts(nodename), nodename, len);
297                 nodename[__NEW_UTS_LEN] = '\0';
298                 strlcpy(vx_new_uts(nodename), nodename,
299                         sizeof(vx_new_uts(nodename)));
300                 up_write(&uts_sem);
301                 return 0;
302         }
303
304         case MIPS_ATOMIC_SET:
305                 printk(KERN_CRIT "How did I get here?\n");
306                 return -EINVAL;
307
308         case MIPS_FIXADE:
309                 tmp = current->thread.mflags & ~3;
310                 current->thread.mflags = tmp | (arg1 & 3);
311                 return 0;
312
313         case FLUSH_CACHE:
314                 __flush_cache_all();
315                 return 0;
316
317         case MIPS_RDNVRAM:
318                 return -EIO;
319         }
320
321         return -EINVAL;
322 }
323
324 /*
325  * sys_ipc() is the de-multiplexer for the SysV IPC calls..
326  *
327  * This is really horribly ugly.
328  */
329 asmlinkage int sys_ipc (uint call, int first, int second,
330                         unsigned long third, void __user *ptr, long fifth)
331 {
332         int version, ret;
333
334         version = call >> 16; /* hack for backward compatibility */
335         call &= 0xffff;
336
337         switch (call) {
338         case SEMOP:
339                 return sys_semtimedop (first, (struct sembuf __user *)ptr,
340                                        second, NULL);
341         case SEMTIMEDOP:
342                 return sys_semtimedop (first, (struct sembuf __user *)ptr,
343                                        second,
344                                        (const struct timespec __user *)fifth);
345         case SEMGET:
346                 return sys_semget (first, second, third);
347         case SEMCTL: {
348                 union semun fourth;
349                 if (!ptr)
350                         return -EINVAL;
351                 if (get_user(fourth.__pad, (void *__user *) ptr))
352                         return -EFAULT;
353                 return sys_semctl (first, second, third, fourth);
354         }
355
356         case MSGSND:
357                 return sys_msgsnd (first, (struct msgbuf __user *) ptr,
358                                    second, third);
359         case MSGRCV:
360                 switch (version) {
361                 case 0: {
362                         struct ipc_kludge tmp;
363                         if (!ptr)
364                                 return -EINVAL;
365
366                         if (copy_from_user(&tmp,
367                                            (struct ipc_kludge __user *) ptr,
368                                            sizeof (tmp)))
369                                 return -EFAULT;
370                         return sys_msgrcv (first, tmp.msgp, second,
371                                            tmp.msgtyp, third);
372                 }
373                 default:
374                         return sys_msgrcv (first,
375                                            (struct msgbuf __user *) ptr,
376                                            second, fifth, third);
377                 }
378         case MSGGET:
379                 return sys_msgget ((key_t) first, second);
380         case MSGCTL:
381                 return sys_msgctl (first, second,
382                                    (struct msqid_ds __user *) ptr);
383
384         case SHMAT:
385                 switch (version) {
386                 default: {
387                         ulong raddr;
388                         ret = do_shmat (first, (char __user *) ptr, second,
389                                         &raddr);
390                         if (ret)
391                                 return ret;
392                         return put_user (raddr, (ulong __user *) third);
393                 }
394                 case 1: /* iBCS2 emulator entry point */
395                         if (!segment_eq(get_fs(), get_ds()))
396                                 return -EINVAL;
397                         return do_shmat (first, (char __user *) ptr, second,
398                                          (ulong *) third);
399                 }
400         case SHMDT:
401                 return sys_shmdt ((char __user *)ptr);
402         case SHMGET:
403                 return sys_shmget (first, second, third);
404         case SHMCTL:
405                 return sys_shmctl (first, second,
406                                    (struct shmid_ds __user *) ptr);
407         default:
408                 return -ENOSYS;
409         }
410 }
411
412 /*
413  * No implemented yet ...
414  */
415 asmlinkage int sys_cachectl(char *addr, int nbytes, int op)
416 {
417         return -ENOSYS;
418 }
419
420 /*
421  * If we ever come here the user sp is bad.  Zap the process right away.
422  * Due to the bad stack signaling wouldn't work.
423  */
424 asmlinkage void bad_stack(void)
425 {
426         do_exit(SIGSEGV);
427 }