| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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/module.h> | 
|  | 16 | #include <linux/errno.h> | 
|  | 17 | #include <linux/sched.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> | 
| Adrian Bunk | cba4fbb | 2007-10-16 23:29:24 -0700 | [diff] [blame] | 27 | #include <linux/ipc.h> | 
| Russell King | 33fa9b1 | 2008-09-06 11:35:55 +0100 | [diff] [blame] | 28 | #include <linux/uaccess.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | /* Fork a new task - this creates a new program thread. | 
|  | 32 | * This is called indirectly via a small wrapper | 
|  | 33 | */ | 
|  | 34 | asmlinkage int sys_fork(struct pt_regs *regs) | 
|  | 35 | { | 
| Hyok S. Choi | f24284a | 2006-02-24 21:37:50 +0000 | [diff] [blame] | 36 | #ifdef CONFIG_MMU | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | return do_fork(SIGCHLD, regs->ARM_sp, regs, 0, NULL, NULL); | 
| Hyok S. Choi | f24284a | 2006-02-24 21:37:50 +0000 | [diff] [blame] | 38 | #else | 
|  | 39 | /* can not support in nommu mode */ | 
|  | 40 | return(-EINVAL); | 
|  | 41 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | } | 
|  | 43 |  | 
|  | 44 | /* Clone a task - this clones the calling program thread. | 
|  | 45 | * This is called indirectly via a small wrapper | 
|  | 46 | */ | 
|  | 47 | asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp, | 
|  | 48 | int __user *parent_tidptr, int tls_val, | 
|  | 49 | int __user *child_tidptr, struct pt_regs *regs) | 
|  | 50 | { | 
|  | 51 | if (!newsp) | 
|  | 52 | newsp = regs->ARM_sp; | 
|  | 53 |  | 
|  | 54 | return do_fork(clone_flags, newsp, regs, 0, parent_tidptr, child_tidptr); | 
|  | 55 | } | 
|  | 56 |  | 
|  | 57 | asmlinkage int sys_vfork(struct pt_regs *regs) | 
|  | 58 | { | 
|  | 59 | return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->ARM_sp, regs, 0, NULL, NULL); | 
|  | 60 | } | 
|  | 61 |  | 
|  | 62 | /* sys_execve() executes a new program. | 
|  | 63 | * This is called indirectly via a small wrapper | 
|  | 64 | */ | 
|  | 65 | asmlinkage int sys_execve(char __user *filenamei, char __user * __user *argv, | 
|  | 66 | char __user * __user *envp, struct pt_regs *regs) | 
|  | 67 | { | 
|  | 68 | int error; | 
|  | 69 | char * filename; | 
|  | 70 |  | 
|  | 71 | filename = getname(filenamei); | 
|  | 72 | error = PTR_ERR(filename); | 
|  | 73 | if (IS_ERR(filename)) | 
|  | 74 | goto out; | 
|  | 75 | error = do_execve(filename, argv, envp, regs); | 
|  | 76 | putname(filename); | 
|  | 77 | out: | 
|  | 78 | return error; | 
|  | 79 | } | 
|  | 80 |  | 
| Arnd Bergmann | 3db03b4 | 2006-10-02 02:18:31 -0700 | [diff] [blame] | 81 | int kernel_execve(const char *filename, char *const argv[], char *const envp[]) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { | 
|  | 83 | struct pt_regs regs; | 
|  | 84 | int ret; | 
|  | 85 |  | 
|  | 86 | memset(®s, 0, sizeof(struct pt_regs)); | 
|  | 87 | ret = do_execve((char *)filename, (char __user * __user *)argv, | 
|  | 88 | (char __user * __user *)envp, ®s); | 
|  | 89 | if (ret < 0) | 
|  | 90 | goto out; | 
|  | 91 |  | 
|  | 92 | /* | 
|  | 93 | * Save argc to the register structure for userspace. | 
|  | 94 | */ | 
|  | 95 | regs.ARM_r0 = ret; | 
|  | 96 |  | 
|  | 97 | /* | 
|  | 98 | * We were successful.  We won't be returning to our caller, but | 
|  | 99 | * instead to user space by manipulating the kernel stack. | 
|  | 100 | */ | 
|  | 101 | asm(	"add	r0, %0, %1\n\t" | 
|  | 102 | "mov	r1, %2\n\t" | 
|  | 103 | "mov	r2, %3\n\t" | 
|  | 104 | "bl	memmove\n\t"	/* copy regs to top of stack */ | 
|  | 105 | "mov	r8, #0\n\t"	/* not a syscall */ | 
|  | 106 | "mov	r9, %0\n\t"	/* thread structure */ | 
|  | 107 | "mov	sp, r0\n\t"	/* reposition stack pointer */ | 
|  | 108 | "b	ret_to_user" | 
|  | 109 | : | 
|  | 110 | : "r" (current_thread_info()), | 
| Russell King | 4f7a181 | 2005-05-05 13:11:00 +0100 | [diff] [blame] | 111 | "Ir" (THREAD_START_SP - sizeof(regs)), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | "r" (®s), | 
|  | 113 | "Ir" (sizeof(regs)) | 
| Nicolas Pitre | c2f4808 | 2005-10-04 23:17:53 +0100 | [diff] [blame] | 114 | : "r0", "r1", "r2", "r3", "ip", "lr", "memory"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 |  | 
|  | 116 | out: | 
|  | 117 | return ret; | 
|  | 118 | } | 
| Arnd Bergmann | 3db03b4 | 2006-10-02 02:18:31 -0700 | [diff] [blame] | 119 | EXPORT_SYMBOL(kernel_execve); | 
| Nicolas Pitre | 68d9102 | 2005-09-01 12:37:13 +0100 | [diff] [blame] | 120 |  | 
|  | 121 | /* | 
| Simon Arlott | 6cbdc8c | 2007-05-11 20:40:30 +0100 | [diff] [blame] | 122 | * Since loff_t is a 64 bit type we avoid a lot of ABI hassle | 
| Nicolas Pitre | 68d9102 | 2005-09-01 12:37:13 +0100 | [diff] [blame] | 123 | * with a different argument ordering. | 
|  | 124 | */ | 
|  | 125 | asmlinkage long sys_arm_fadvise64_64(int fd, int advice, | 
|  | 126 | loff_t offset, loff_t len) | 
|  | 127 | { | 
|  | 128 | return sys_fadvise64_64(fd, offset, len, advice); | 
|  | 129 | } |