2 * linux/arch/sh/kernel/sys_sh.c
4 * This file contains various random system calls that
5 * have a non-standard calling sequence on the Linux/SuperH
8 * Taken from i386 version.
10 #include <linux/errno.h>
11 #include <linux/sched.h>
13 #include <linux/smp.h>
14 #include <linux/sem.h>
15 #include <linux/msg.h>
16 #include <linux/shm.h>
17 #include <linux/stat.h>
18 #include <linux/syscalls.h>
19 #include <linux/mman.h>
20 #include <linux/file.h>
21 #include <linux/utsname.h>
22 #include <linux/module.h>
24 #include <linux/ipc.h>
25 #include <asm/syscalls.h>
26 #include <asm/uaccess.h>
27 #include <asm/unistd.h>
30 do_mmap2(unsigned long addr
, unsigned long len
, unsigned long prot
,
31 unsigned long flags
, int fd
, unsigned long pgoff
)
34 struct file
*file
= NULL
;
36 flags
&= ~(MAP_EXECUTABLE
| MAP_DENYWRITE
);
37 if (!(flags
& MAP_ANONYMOUS
)) {
43 down_write(¤t
->mm
->mmap_sem
);
44 error
= do_mmap_pgoff(file
, addr
, len
, prot
, flags
, pgoff
);
45 up_write(¤t
->mm
->mmap_sem
);
53 asmlinkage
int old_mmap(unsigned long addr
, unsigned long len
,
54 unsigned long prot
, unsigned long flags
,
55 int fd
, unsigned long off
)
59 return do_mmap2(addr
, len
, prot
, flags
, fd
, off
>>PAGE_SHIFT
);
62 asmlinkage
long sys_mmap2(unsigned long addr
, unsigned long len
,
63 unsigned long prot
, unsigned long flags
,
64 unsigned long fd
, unsigned long pgoff
)
67 * The shift for mmap2 is constant, regardless of PAGE_SIZE
70 if (pgoff
& ((1 << (PAGE_SHIFT
- 12)) - 1))
73 pgoff
>>= PAGE_SHIFT
- 12;
75 return do_mmap2(addr
, len
, prot
, flags
, fd
, pgoff
);
79 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
81 * This is really horribly ugly.
83 asmlinkage
int sys_ipc(uint call
, int first
, int second
,
84 int third
, void __user
*ptr
, long fifth
)
88 version
= call
>> 16; /* hack for backward compatibility */
91 if (call
<= SEMTIMEDOP
)
94 return sys_semtimedop(first
,
95 (struct sembuf __user
*)ptr
,
98 return sys_semtimedop(first
,
99 (struct sembuf __user
*)ptr
, second
,
100 (const struct timespec __user
*)fifth
);
102 return sys_semget (first
, second
, third
);
107 if (get_user(fourth
.__pad
, (void __user
* __user
*) ptr
))
109 return sys_semctl (first
, second
, third
, fourth
);
118 return sys_msgsnd (first
, (struct msgbuf __user
*) ptr
,
124 struct ipc_kludge tmp
;
129 if (copy_from_user(&tmp
,
130 (struct ipc_kludge __user
*) ptr
,
134 return sys_msgrcv (first
, tmp
.msgp
, second
,
138 return sys_msgrcv (first
,
139 (struct msgbuf __user
*) ptr
,
140 second
, fifth
, third
);
143 return sys_msgget ((key_t
) first
, second
);
145 return sys_msgctl (first
, second
,
146 (struct msqid_ds __user
*) ptr
);
156 ret
= do_shmat (first
, (char __user
*) ptr
,
160 return put_user (raddr
, (ulong __user
*) third
);
162 case 1: /* iBCS2 emulator entry point */
163 if (!segment_eq(get_fs(), get_ds()))
165 return do_shmat (first
, (char __user
*) ptr
,
166 second
, (ulong
*) third
);
169 return sys_shmdt ((char __user
*)ptr
);
171 return sys_shmget (first
, second
, third
);
173 return sys_shmctl (first
, second
,
174 (struct shmid_ds __user
*) ptr
);
182 asmlinkage
int sys_uname(struct old_utsname __user
*name
)
188 err
= copy_to_user(name
, utsname(), sizeof(*name
));
190 return err
?-EFAULT
:0;