Add generic sys_old_select()
[safe/jmp/linux-2.6] / arch / m68knommu / kernel / sys_m68k.c
1 /*
2  * linux/arch/m68knommu/kernel/sys_m68k.c
3  *
4  * This file contains various random system calls that
5  * have a non-standard calling sequence on the Linux/m68k
6  * platform.
7  */
8
9 #include <linux/errno.h>
10 #include <linux/sched.h>
11 #include <linux/mm.h>
12 #include <linux/smp.h>
13 #include <linux/sem.h>
14 #include <linux/msg.h>
15 #include <linux/shm.h>
16 #include <linux/stat.h>
17 #include <linux/syscalls.h>
18 #include <linux/mman.h>
19 #include <linux/file.h>
20 #include <linux/ipc.h>
21 #include <linux/fs.h>
22
23 #include <asm/setup.h>
24 #include <asm/uaccess.h>
25 #include <asm/cachectl.h>
26 #include <asm/traps.h>
27 #include <asm/cacheflush.h>
28 #include <asm/unistd.h>
29
30 /*
31  * Perform the select(nd, in, out, ex, tv) and mmap() system
32  * calls. Linux/m68k cloned Linux/i386, which didn't use to be able to
33  * handle more than 4 system call parameters, so these system calls
34  * used a memory block for parameter passing..
35  */
36
37 struct mmap_arg_struct {
38         unsigned long addr;
39         unsigned long len;
40         unsigned long prot;
41         unsigned long flags;
42         unsigned long fd;
43         unsigned long offset;
44 };
45
46 asmlinkage int old_mmap(struct mmap_arg_struct *arg)
47 {
48         struct mmap_arg_struct a;
49         int error = -EFAULT;
50
51         if (copy_from_user(&a, arg, sizeof(a)))
52                 goto out;
53
54         error = -EINVAL;
55         if (a.offset & ~PAGE_MASK)
56                 goto out;
57
58         error = sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd,
59                                 a.offset >> PAGE_SHIFT);
60 out:
61         return error;
62 }
63
64 /*
65  * sys_ipc() is the de-multiplexer for the SysV IPC calls..
66  *
67  * This is really horribly ugly.
68  */
69 asmlinkage int sys_ipc (uint call, int first, int second,
70                         int third, void *ptr, long fifth)
71 {
72         int version, ret;
73
74         version = call >> 16; /* hack for backward compatibility */
75         call &= 0xffff;
76
77         if (call <= SEMCTL)
78                 switch (call) {
79                 case SEMOP:
80                         return sys_semop (first, (struct sembuf *)ptr, second);
81                 case SEMGET:
82                         return sys_semget (first, second, third);
83                 case SEMCTL: {
84                         union semun fourth;
85                         if (!ptr)
86                                 return -EINVAL;
87                         if (get_user(fourth.__pad, (void **) ptr))
88                                 return -EFAULT;
89                         return sys_semctl (first, second, third, fourth);
90                         }
91                 default:
92                         return -EINVAL;
93                 }
94         if (call <= MSGCTL) 
95                 switch (call) {
96                 case MSGSND:
97                         return sys_msgsnd (first, (struct msgbuf *) ptr, 
98                                           second, third);
99                 case MSGRCV:
100                         switch (version) {
101                         case 0: {
102                                 struct ipc_kludge tmp;
103                                 if (!ptr)
104                                         return -EINVAL;
105                                 if (copy_from_user (&tmp,
106                                                     (struct ipc_kludge *)ptr,
107                                                     sizeof (tmp)))
108                                         return -EFAULT;
109                                 return sys_msgrcv (first, tmp.msgp, second,
110                                                    tmp.msgtyp, third);
111                                 }
112                         default:
113                                 return sys_msgrcv (first,
114                                                    (struct msgbuf *) ptr,
115                                                    second, fifth, third);
116                         }
117                 case MSGGET:
118                         return sys_msgget ((key_t) first, second);
119                 case MSGCTL:
120                         return sys_msgctl (first, second,
121                                            (struct msqid_ds *) ptr);
122                 default:
123                         return -EINVAL;
124                 }
125         if (call <= SHMCTL)
126                 switch (call) {
127                 case SHMAT:
128                         switch (version) {
129                         default: {
130                                 ulong raddr;
131                                 ret = do_shmat (first, ptr, second, &raddr);
132                                 if (ret)
133                                         return ret;
134                                 return put_user (raddr, (ulong __user *) third);
135                         }
136                         }
137                 case SHMDT:
138                         return sys_shmdt (ptr);
139                 case SHMGET:
140                         return sys_shmget (first, second, third);
141                 case SHMCTL:
142                         return sys_shmctl (first, second, ptr);
143                 default:
144                         return -ENOSYS;
145                 }
146
147         return -EINVAL;
148 }
149
150 /* sys_cacheflush -- flush (part of) the processor cache.  */
151 asmlinkage int
152 sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len)
153 {
154         flush_cache_all();
155         return(0);
156 }
157
158 asmlinkage int sys_getpagesize(void)
159 {
160         return PAGE_SIZE;
161 }
162
163 /*
164  * Do a system call from kernel instead of calling sys_execve so we
165  * end up with proper pt_regs.
166  */
167 int kernel_execve(const char *filename, char *const argv[], char *const envp[])
168 {
169         register long __res asm ("%d0") = __NR_execve;
170         register long __a asm ("%d1") = (long)(filename);
171         register long __b asm ("%d2") = (long)(argv);
172         register long __c asm ("%d3") = (long)(envp);
173         asm volatile ("trap  #0" : "+d" (__res)
174                         : "d" (__a), "d" (__b), "d" (__c));
175         return __res;
176 }
177
178 asmlinkage unsigned long sys_get_thread_area(void)
179 {
180         return current_thread_info()->tp_value;
181 }
182
183 asmlinkage int sys_set_thread_area(unsigned long tp)
184 {
185         current_thread_info()->tp_value = tp;
186         return 0;
187 }
188
189 /* This syscall gets its arguments in A0 (mem), D2 (oldval) and
190    D1 (newval).  */
191 asmlinkage int
192 sys_atomic_cmpxchg_32(unsigned long newval, int oldval, int d3, int d4, int d5,
193                       unsigned long __user * mem)
194 {
195         struct mm_struct *mm = current->mm;
196         unsigned long mem_value;
197
198         down_read(&mm->mmap_sem);
199
200         mem_value = *mem;
201         if (mem_value == oldval)
202                 *mem = newval;
203
204         up_read(&mm->mmap_sem);
205         return mem_value;
206 }
207
208 asmlinkage int sys_atomic_barrier(void)
209 {
210         /* no code needed for uniprocs */
211         return 0;
212 }