2 * linux/arch/arm/kernel/sys_arm.c
4 * Copyright (C) People who wrote linux/arch/i386/kernel/sys_i386.c
5 * Copyright (C) 1995, 1996 Russell King.
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.
11 * This file contains various random system calls that
12 * have a non-standard calling sequence on the Linux/arm
15 #include <linux/module.h>
16 #include <linux/errno.h>
17 #include <linux/sched.h>
18 #include <linux/slab.h>
20 #include <linux/sem.h>
21 #include <linux/msg.h>
22 #include <linux/shm.h>
23 #include <linux/stat.h>
24 #include <linux/syscalls.h>
25 #include <linux/mman.h>
27 #include <linux/file.h>
28 #include <linux/utsname.h>
29 #include <linux/ipc.h>
31 #include <asm/uaccess.h>
33 extern unsigned long do_mremap(unsigned long addr, unsigned long old_len,
34 unsigned long new_len, unsigned long flags,
35 unsigned long new_addr);
37 /* common code for old and new mmaps */
39 unsigned long addr, unsigned long len,
40 unsigned long prot, unsigned long flags,
41 unsigned long fd, unsigned long pgoff)
44 struct file * file = NULL;
46 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
48 if (flags & MAP_FIXED && addr < FIRST_USER_ADDRESS)
52 if (!(flags & MAP_ANONYMOUS)) {
58 down_write(¤t->mm->mmap_sem);
59 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
60 up_write(¤t->mm->mmap_sem);
68 struct mmap_arg_struct {
77 asmlinkage int old_mmap(struct mmap_arg_struct __user *arg)
80 struct mmap_arg_struct a;
82 if (copy_from_user(&a, arg, sizeof(a)))
86 if (a.offset & ~PAGE_MASK)
89 error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset >> PAGE_SHIFT);
94 asmlinkage unsigned long
95 sys_arm_mremap(unsigned long addr, unsigned long old_len,
96 unsigned long new_len, unsigned long flags,
97 unsigned long new_addr)
99 unsigned long ret = -EINVAL;
101 if (flags & MREMAP_FIXED && new_addr < FIRST_USER_ADDRESS)
104 down_write(¤t->mm->mmap_sem);
105 ret = do_mremap(addr, old_len, new_len, flags, new_addr);
106 up_write(¤t->mm->mmap_sem);
113 * Perform the select(nd, in, out, ex, tv) and mmap() system
117 struct sel_arg_struct {
119 fd_set __user *inp, *outp, *exp;
120 struct timeval __user *tvp;
123 asmlinkage int old_select(struct sel_arg_struct __user *arg)
125 struct sel_arg_struct a;
127 if (copy_from_user(&a, arg, sizeof(a)))
129 /* sys_select() does the appropriate kernel locking */
130 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
133 #if !defined(CONFIG_AEABI) || defined(CONFIG_OABI_COMPAT)
135 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
137 * This is really horribly ugly.
139 asmlinkage int sys_ipc(uint call, int first, int second, int third,
140 void __user *ptr, long fifth)
144 version = call >> 16; /* hack for backward compatibility */
149 return sys_semtimedop (first, (struct sembuf __user *)ptr, second, NULL);
151 return sys_semtimedop(first, (struct sembuf __user *)ptr, second,
152 (const struct timespec __user *)fifth);
155 return sys_semget (first, second, third);
160 if (get_user(fourth.__pad, (void __user * __user *) ptr))
162 return sys_semctl (first, second, third, fourth);
166 return sys_msgsnd(first, (struct msgbuf __user *) ptr,
171 struct ipc_kludge tmp;
174 if (copy_from_user(&tmp,(struct ipc_kludge __user *)ptr,
177 return sys_msgrcv (first, tmp.msgp, second,
181 return sys_msgrcv (first,
182 (struct msgbuf __user *) ptr,
183 second, fifth, third);
186 return sys_msgget ((key_t) first, second);
188 return sys_msgctl(first, second, (struct msqid_ds __user *)ptr);
194 ret = do_shmat(first, (char __user *)ptr, second, &raddr);
197 return put_user(raddr, (ulong __user *)third);
199 case 1: /* Of course, we don't support iBCS2! */
203 return sys_shmdt ((char __user *)ptr);
205 return sys_shmget (first, second, third);
207 return sys_shmctl (first, second,
208 (struct shmid_ds __user *) ptr);
215 /* Fork a new task - this creates a new program thread.
216 * This is called indirectly via a small wrapper
218 asmlinkage int sys_fork(struct pt_regs *regs)
221 return do_fork(SIGCHLD, regs->ARM_sp, regs, 0, NULL, NULL);
223 /* can not support in nommu mode */
228 /* Clone a task - this clones the calling program thread.
229 * This is called indirectly via a small wrapper
231 asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp,
232 int __user *parent_tidptr, int tls_val,
233 int __user *child_tidptr, struct pt_regs *regs)
236 newsp = regs->ARM_sp;
238 return do_fork(clone_flags, newsp, regs, 0, parent_tidptr, child_tidptr);
241 asmlinkage int sys_vfork(struct pt_regs *regs)
243 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->ARM_sp, regs, 0, NULL, NULL);
246 /* sys_execve() executes a new program.
247 * This is called indirectly via a small wrapper
249 asmlinkage int sys_execve(char __user *filenamei, char __user * __user *argv,
250 char __user * __user *envp, struct pt_regs *regs)
255 filename = getname(filenamei);
256 error = PTR_ERR(filename);
257 if (IS_ERR(filename))
259 error = do_execve(filename, argv, envp, regs);
265 int kernel_execve(const char *filename, char *const argv[], char *const envp[])
270 memset(®s, 0, sizeof(struct pt_regs));
271 ret = do_execve((char *)filename, (char __user * __user *)argv,
272 (char __user * __user *)envp, ®s);
277 * Save argc to the register structure for userspace.
282 * We were successful. We won't be returning to our caller, but
283 * instead to user space by manipulating the kernel stack.
285 asm( "add r0, %0, %1\n\t"
288 "bl memmove\n\t" /* copy regs to top of stack */
289 "mov r8, #0\n\t" /* not a syscall */
290 "mov r9, %0\n\t" /* thread structure */
291 "mov sp, r0\n\t" /* reposition stack pointer */
294 : "r" (current_thread_info()),
295 "Ir" (THREAD_START_SP - sizeof(regs)),
298 : "r0", "r1", "r2", "r3", "ip", "lr", "memory");
303 EXPORT_SYMBOL(kernel_execve);
306 * Since loff_t is a 64 bit type we avoid a lot of ABI hassle
307 * with a different argument ordering.
309 asmlinkage long sys_arm_fadvise64_64(int fd, int advice,
310 loff_t offset, loff_t len)
312 return sys_fadvise64_64(fd, offset, len, advice);