ACPI: Kconfig: ACPI should depend on, not select PCI
[pandora-kernel.git] / arch / um / sys-i386 / syscalls.c
1 /* 
2  * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
3  * Licensed under the GPL
4  */
5
6 #include "linux/sched.h"
7 #include "linux/shm.h"
8 #include "asm/ipc.h"
9 #include "asm/mman.h"
10 #include "asm/uaccess.h"
11 #include "asm/unistd.h"
12
13 /*
14  * Perform the select(nd, in, out, ex, tv) and mmap() system
15  * calls. Linux/i386 didn't use to be able to handle more than
16  * 4 system call parameters, so these system calls used a memory
17  * block for parameter passing..
18  */
19
20 struct mmap_arg_struct {
21         unsigned long addr;
22         unsigned long len;
23         unsigned long prot;
24         unsigned long flags;
25         unsigned long fd;
26         unsigned long offset;
27 };
28
29 extern int old_mmap(unsigned long addr, unsigned long len,
30                     unsigned long prot, unsigned long flags,
31                     unsigned long fd, unsigned long offset);
32
33 long old_mmap_i386(struct mmap_arg_struct __user *arg)
34 {
35         struct mmap_arg_struct a;
36         int err = -EFAULT;
37
38         if (copy_from_user(&a, arg, sizeof(a)))
39                 goto out;
40
41         err = old_mmap(a.addr, a.len, a.prot, a.flags, a.fd, a.offset);
42  out:
43         return err;
44 }
45
46 struct sel_arg_struct {
47         unsigned long n;
48         fd_set __user *inp;
49         fd_set __user *outp;
50         fd_set __user *exp;
51         struct timeval __user *tvp;
52 };
53
54 long old_select(struct sel_arg_struct __user *arg)
55 {
56         struct sel_arg_struct a;
57
58         if (copy_from_user(&a, arg, sizeof(a)))
59                 return -EFAULT;
60         /* sys_select() does the appropriate kernel locking */
61         return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
62 }
63
64 /*
65  * The prototype on i386 is:
66  *
67  *     int clone(int flags, void * child_stack, int * parent_tidptr, struct user_desc * newtls, int * child_tidptr)
68  *
69  * and the "newtls" arg. on i386 is read by copy_thread directly from the
70  * register saved on the stack.
71  */
72 long sys_clone(unsigned long clone_flags, unsigned long newsp,
73                int __user *parent_tid, void *newtls, int __user *child_tid)
74 {
75         long ret;
76
77         if (!newsp)
78                 newsp = UPT_SP(&current->thread.regs.regs);
79
80         current->thread.forking = 1;
81         ret = do_fork(clone_flags, newsp, &current->thread.regs, 0, parent_tid,
82                       child_tid);
83         current->thread.forking = 0;
84         return ret;
85 }
86
87 /*
88  * sys_ipc() is the de-multiplexer for the SysV IPC calls..
89  *
90  * This is really horribly ugly.
91  */
92 long sys_ipc (uint call, int first, int second,
93              int third, void __user *ptr, long fifth)
94 {
95         int version, ret;
96
97         version = call >> 16; /* hack for backward compatibility */
98         call &= 0xffff;
99
100         switch (call) {
101         case SEMOP:
102                 return sys_semtimedop(first, (struct sembuf *) ptr, second,
103                                       NULL);
104         case SEMTIMEDOP:
105                 return sys_semtimedop(first, (struct sembuf *) ptr, second,
106                                       (const struct timespec *) fifth);
107         case SEMGET:
108                 return sys_semget (first, second, third);
109         case SEMCTL: {
110                 union semun fourth;
111                 if (!ptr)
112                         return -EINVAL;
113                 if (get_user(fourth.__pad, (void __user * __user *) ptr))
114                         return -EFAULT;
115                 return sys_semctl (first, second, third, fourth);
116         }
117
118         case MSGSND:
119                 return sys_msgsnd (first, (struct msgbuf *) ptr,
120                                    second, third);
121         case MSGRCV:
122                 switch (version) {
123                 case 0: {
124                         struct ipc_kludge tmp;
125                         if (!ptr)
126                                 return -EINVAL;
127
128                         if (copy_from_user(&tmp,
129                                            (struct ipc_kludge *) ptr,
130                                            sizeof (tmp)))
131                                 return -EFAULT;
132                         return sys_msgrcv (first, tmp.msgp, second,
133                                            tmp.msgtyp, third);
134                 }
135                 default:
136                         panic("msgrcv with version != 0");
137                         return sys_msgrcv (first,
138                                            (struct msgbuf *) ptr,
139                                            second, fifth, third);
140                 }
141         case MSGGET:
142                 return sys_msgget ((key_t) first, second);
143         case MSGCTL:
144                 return sys_msgctl (first, second, (struct msqid_ds *) ptr);
145
146         case SHMAT:
147                 switch (version) {
148                 default: {
149                         ulong raddr;
150                         ret = do_shmat (first, (char *) ptr, second, &raddr);
151                         if (ret)
152                                 return ret;
153                         return put_user (raddr, (ulong *) third);
154                 }
155                 case 1: /* iBCS2 emulator entry point */
156                         if (!segment_eq(get_fs(), get_ds()))
157                                 return -EINVAL;
158                         return do_shmat (first, (char *) ptr, second, (ulong *) third);
159                 }
160         case SHMDT:
161                 return sys_shmdt ((char *)ptr);
162         case SHMGET:
163                 return sys_shmget (first, second, third);
164         case SHMCTL:
165                 return sys_shmctl (first, second,
166                                    (struct shmid_ds *) ptr);
167         default:
168                 return -ENOSYS;
169         }
170 }
171
172 long sys_sigaction(int sig, const struct old_sigaction __user *act,
173                          struct old_sigaction __user *oact)
174 {
175         struct k_sigaction new_ka, old_ka;
176         int ret;
177
178         if (act) {
179                 old_sigset_t mask;
180                 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
181                     __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
182                     __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
183                         return -EFAULT;
184                 __get_user(new_ka.sa.sa_flags, &act->sa_flags);
185                 __get_user(mask, &act->sa_mask);
186                 siginitset(&new_ka.sa.sa_mask, mask);
187         }
188
189         ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
190
191         if (!ret && oact) {
192                 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
193                     __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
194                     __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
195                         return -EFAULT;
196                 __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
197                 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
198         }
199
200         return ret;
201 }