ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / sparc64 / solaris / signal.c
1 /* $Id: signal.c,v 1.7 2000/09/05 21:44:54 davem Exp $
2  * signal.c: Signal emulation for Solaris
3  *
4  * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
5  */
6
7 #include <linux/types.h>
8 #include <linux/smp_lock.h>
9 #include <linux/errno.h>
10
11 #include <asm/uaccess.h>
12 #include <asm/svr4.h>
13 #include <asm/string.h>
14
15 #include "conv.h"
16 #include "signal.h"
17
18 #define _S(nr) (1L<<((nr)-1))
19
20 #define _BLOCKABLE (~(_S(SIGKILL) | _S(SIGSTOP)))
21
22 long linux_to_solaris_signals[] = {
23         0,
24         SOLARIS_SIGHUP,         SOLARIS_SIGINT, 
25         SOLARIS_SIGQUIT,        SOLARIS_SIGILL,
26         SOLARIS_SIGTRAP,        SOLARIS_SIGIOT,
27         SOLARIS_SIGEMT,         SOLARIS_SIGFPE,
28         SOLARIS_SIGKILL,        SOLARIS_SIGBUS,
29         SOLARIS_SIGSEGV,        SOLARIS_SIGSYS,
30         SOLARIS_SIGPIPE,        SOLARIS_SIGALRM,
31         SOLARIS_SIGTERM,        SOLARIS_SIGURG,
32         SOLARIS_SIGSTOP,        SOLARIS_SIGTSTP,
33         SOLARIS_SIGCONT,        SOLARIS_SIGCLD,
34         SOLARIS_SIGTTIN,        SOLARIS_SIGTTOU,
35         SOLARIS_SIGPOLL,        SOLARIS_SIGXCPU,
36         SOLARIS_SIGXFSZ,        SOLARIS_SIGVTALRM,
37         SOLARIS_SIGPROF,        SOLARIS_SIGWINCH,
38         SOLARIS_SIGUSR1,        SOLARIS_SIGUSR1,
39         SOLARIS_SIGUSR2,        -1,
40 };
41
42 long solaris_to_linux_signals[] = {
43         0,
44         SIGHUP,         SIGINT,         SIGQUIT,        SIGILL,
45         SIGTRAP,        SIGIOT,         SIGEMT,         SIGFPE,
46         SIGKILL,        SIGBUS,         SIGSEGV,        SIGSYS,
47         SIGPIPE,        SIGALRM,        SIGTERM,        SIGUSR1,
48         SIGUSR2,        SIGCHLD,        -1,             SIGWINCH,
49         SIGURG,         SIGPOLL,        SIGSTOP,        SIGTSTP,
50         SIGCONT,        SIGTTIN,        SIGTTOU,        SIGVTALRM,
51         SIGPROF,        SIGXCPU,        SIGXFSZ,        -1,
52         -1,             -1,             -1,             -1,
53         -1,             -1,             -1,             -1,
54         -1,             -1,             -1,             -1,
55 };
56
57 static inline long mapsig(long sig)
58 {
59         if ((unsigned long)sig > SOLARIS_NSIGNALS)
60                 return -EINVAL;
61         return solaris_to_linux_signals[sig];
62 }
63
64 asmlinkage int solaris_kill(int pid, int sig)
65 {
66         int (*sys_kill)(int,int) = 
67                 (int (*)(int,int))SYS(kill);
68         int s = mapsig(sig);
69         
70         if (s < 0) return s;
71         return sys_kill(pid, s);
72 }
73
74 static long sig_handler(int sig, u32 arg, int one_shot)
75 {
76         struct sigaction sa, old;
77         int ret;
78         mm_segment_t old_fs = get_fs();
79         int (*sys_sigaction)(int,struct sigaction *,struct sigaction *) = 
80                 (int (*)(int,struct sigaction *,struct sigaction *))SYS(sigaction);
81         
82         sigemptyset(&sa.sa_mask);
83         sa.sa_restorer = NULL;
84         sa.sa_handler = (__sighandler_t)A(arg);
85         sa.sa_flags = 0;
86         if (one_shot) sa.sa_flags = SA_ONESHOT | SA_NOMASK;
87         set_fs (KERNEL_DS);
88         ret = sys_sigaction(sig, &sa, &old);
89         set_fs (old_fs);
90         if (ret < 0) return ret;
91         return (u32)(long)old.sa_handler;
92 }
93
94 static inline long solaris_signal(int sig, u32 arg)
95 {
96         return sig_handler (sig, arg, 1);
97 }
98
99 static long solaris_sigset(int sig, u32 arg)
100 {
101         if (arg != 2) /* HOLD */ {
102                 spin_lock_irq(&current->sighand->siglock);
103                 sigdelsetmask(&current->blocked, _S(sig));
104                 recalc_sigpending();
105                 spin_unlock_irq(&current->sighand->siglock);
106                 return sig_handler (sig, arg, 0);
107         } else {
108                 spin_lock_irq(&current->sighand->siglock);
109                 sigaddsetmask(&current->blocked, (_S(sig) & ~_BLOCKABLE));
110                 recalc_sigpending();
111                 spin_unlock_irq(&current->sighand->siglock);
112                 return 0;
113         }
114 }
115
116 static inline long solaris_sighold(int sig)
117 {
118         return solaris_sigset(sig, 2);
119 }
120
121 static inline long solaris_sigrelse(int sig)
122 {
123         spin_lock_irq(&current->sighand->siglock);
124         sigdelsetmask(&current->blocked, _S(sig));
125         recalc_sigpending();
126         spin_unlock_irq(&current->sighand->siglock);
127         return 0;
128 }
129
130 static inline long solaris_sigignore(int sig)
131 {
132         return sig_handler (sig, (u32)SIG_IGN, 0);
133 }
134
135 static inline long solaris_sigpause(int sig)
136 {
137         printk ("Need to support solaris sigpause\n");
138         return -ENOSYS;
139 }
140
141 asmlinkage long solaris_sigfunc(int sig, u32 arg)
142 {
143         int func = sig & ~0xff;
144         
145         sig = mapsig(sig & 0xff); 
146         if (sig < 0) return sig; 
147         switch (func) {
148         case 0: return solaris_signal(sig, arg); 
149         case 0x100: return solaris_sigset(sig, arg); 
150         case 0x200: return solaris_sighold(sig);
151         case 0x400: return solaris_sigrelse(sig); 
152         case 0x800: return solaris_sigignore(sig); 
153         case 0x1000: return solaris_sigpause(sig);
154         }
155         return -EINVAL;
156 }
157
158 typedef struct {
159         u32 __sigbits[4];
160 } sol_sigset_t;
161
162 static inline int mapin(u32 *p, sigset_t *q)
163 {
164         int i;
165         u32 x;
166         int sig;
167         
168         sigemptyset(q);
169         x = p[0];
170         for (i = 1; i <= SOLARIS_NSIGNALS; i++) {
171                 if (x & 1) {
172                         sig = solaris_to_linux_signals[i];
173                         if (sig == -1)
174                                 return -EINVAL;
175                         sigaddsetmask(q, (1L << (sig - 1)));
176                 }
177                 x >>= 1;
178                 if (i == 32)
179                         x = p[1];
180         }
181         return 0;
182 }
183
184 static inline int mapout(sigset_t *q, u32 *p)
185 {
186         int i;
187         int sig;
188         
189         p[0] = 0;
190         p[1] = 0;
191         for (i = 1; i <= 32; i++) {
192                 if (sigismember(q, sigmask(i))) {
193                         sig = linux_to_solaris_signals[i];
194                         if (sig == -1)
195                                 return -EINVAL;
196                         if (sig > 32)
197                                 p[1] |= 1L << (sig - 33);
198                         else
199                                 p[0] |= 1L << (sig - 1);
200                 }
201         }
202         return 0;
203 }
204
205 asmlinkage int solaris_sigprocmask(int how, u32 in, u32 out)
206 {
207         sigset_t in_s, *ins, out_s, *outs;
208         mm_segment_t old_fs = get_fs();
209         int ret;
210         int (*sys_sigprocmask)(int,sigset_t *,sigset_t *) = 
211                 (int (*)(int,sigset_t *,sigset_t *))SYS(sigprocmask);
212         
213         ins = NULL; outs = NULL;
214         if (in) {
215                 u32 tmp[2];
216                 
217                 if (copy_from_user (tmp, (sol_sigset_t *)A(in), 2*sizeof(u32)))
218                         return -EFAULT;
219                 ins = &in_s;
220                 if (mapin (tmp, ins)) return -EINVAL;
221         }
222         if (out) outs = &out_s;
223         set_fs (KERNEL_DS);
224         ret = sys_sigprocmask((how == 3) ? SIG_SETMASK : how, ins, outs);
225         set_fs (old_fs);
226         if (ret) return ret;
227         if (out) {
228                 u32 tmp[4];
229                 
230                 tmp[2] = 0; tmp[3] = 0;
231                 if (mapout (outs, tmp)) return -EINVAL;
232                 if (copy_to_user((sol_sigset_t *)A(out), tmp, 4*sizeof(u32)))
233                         return -EFAULT;
234         }
235         return 0;
236 }
237
238 asmlinkage long do_sol_sigsuspend(u32 mask)
239 {
240         sigset_t s;
241         u32 tmp[2];
242                 
243         if (copy_from_user (tmp, (sol_sigset_t *)A(mask), 2*sizeof(u32)))
244                 return -EFAULT;
245         if (mapin (tmp, &s)) return -EINVAL;
246         return (long)s.sig[0];
247 }
248
249 struct sol_sigaction {
250         int     sa_flags;
251         u32     sa_handler;
252         u32     sa_mask[4];
253         int     sa_resv[2];
254 };
255
256 asmlinkage int solaris_sigaction(int sig, u32 act, u32 old)
257 {
258         u32 tmp, tmp2[4];
259         struct sigaction s, s2;
260         int ret;
261         mm_segment_t old_fs = get_fs();
262         int (*sys_sigaction)(int,struct sigaction *,struct sigaction *) = 
263                 (int (*)(int,struct sigaction *,struct sigaction *))SYS(sigaction);
264         
265         sig = mapsig(sig); 
266         if (sig < 0) {
267                 /* We cheat a little bit for Solaris only signals */
268                 if (old && clear_user((struct sol_sigaction *)A(old), sizeof(struct sol_sigaction)))
269                         return -EFAULT;
270                 return 0;
271         }
272         if (act) {
273                 if (get_user (tmp, &((struct sol_sigaction *)A(act))->sa_flags))
274                         return -EFAULT;
275                 s.sa_flags = 0;
276                 if (tmp & SOLARIS_SA_ONSTACK) s.sa_flags |= SA_STACK;
277                 if (tmp & SOLARIS_SA_RESTART) s.sa_flags |= SA_RESTART;
278                 if (tmp & SOLARIS_SA_NODEFER) s.sa_flags |= SA_NOMASK;
279                 if (tmp & SOLARIS_SA_RESETHAND) s.sa_flags |= SA_ONESHOT;
280                 if (tmp & SOLARIS_SA_NOCLDSTOP) s.sa_flags |= SA_NOCLDSTOP;
281                 if (get_user (tmp, &((struct sol_sigaction *)A(act))->sa_handler) ||
282                     copy_from_user (tmp2, &((struct sol_sigaction *)A(act))->sa_mask, 2*sizeof(u32)))
283                         return -EFAULT;
284                 s.sa_handler = (__sighandler_t)A(tmp);
285                 if (mapin (tmp2, &s.sa_mask)) return -EINVAL;
286                 s.sa_restorer = 0;
287         }
288         set_fs(KERNEL_DS);
289         ret = sys_sigaction(sig, act ? &s : NULL, old ? &s2 : NULL);
290         set_fs(old_fs);
291         if (ret) return ret;
292         if (old) {
293                 if (mapout (&s2.sa_mask, tmp2)) return -EINVAL;
294                 tmp = 0; tmp2[2] = 0; tmp2[3] = 0;
295                 if (s2.sa_flags & SA_STACK) tmp |= SOLARIS_SA_ONSTACK;
296                 if (s2.sa_flags & SA_RESTART) tmp |= SOLARIS_SA_RESTART;
297                 if (s2.sa_flags & SA_NOMASK) tmp |= SOLARIS_SA_NODEFER;
298                 if (s2.sa_flags & SA_ONESHOT) tmp |= SOLARIS_SA_RESETHAND;
299                 if (s2.sa_flags & SA_NOCLDSTOP) tmp |= SOLARIS_SA_NOCLDSTOP;
300                 if (put_user (tmp, &((struct sol_sigaction *)A(old))->sa_flags) ||
301                     __put_user ((u32)(long)s2.sa_handler, &((struct sol_sigaction *)A(old))->sa_handler) ||
302                     copy_to_user (&((struct sol_sigaction *)A(old))->sa_mask, tmp2, 4*sizeof(u32)))
303                         return -EFAULT;
304         }
305         return 0;
306 }
307
308 asmlinkage int solaris_sigpending(int which, u32 set)
309 {
310         sigset_t s;
311         u32 tmp[4];
312         switch (which) {
313         case 1: /* sigpending */
314                 spin_lock_irq(&current->sighand->siglock);
315                 sigandsets(&s, &current->blocked, &current->pending.signal);
316                 recalc_sigpending();
317                 spin_unlock_irq(&current->sighand->siglock);
318                 break;
319         case 2: /* sigfillset - I just set signals which have linux equivalents */
320                 sigfillset(&s);
321                 break;
322         default: return -EINVAL;
323         }
324         if (mapout (&s, tmp)) return -EINVAL;
325         tmp[2] = 0; tmp[3] = 0;
326         if (copy_to_user ((u32 *)A(set), tmp, sizeof(tmp)))
327                 return -EFAULT;
328         return 0;
329 }
330
331 asmlinkage int solaris_wait(u32 stat_loc)
332 {
333         int (*sys_wait4)(pid_t,unsigned int *, int, struct rusage *) =
334                 (int (*)(pid_t,unsigned int *, int, struct rusage *))SYS(wait4);
335         int ret, status;
336         
337         ret = sys_wait4(-1, (unsigned int *)A(stat_loc), WUNTRACED, NULL);
338         if (ret >= 0 && stat_loc) {
339                 if (get_user (status, (unsigned int *)A(stat_loc)))
340                         return -EFAULT;
341                 if (((status - 1) & 0xffff) < 0xff)
342                         status = linux_to_solaris_signals[status & 0x7f] & 0x7f;
343                 else if ((status & 0xff) == 0x7f)
344                         status = (linux_to_solaris_signals[(status >> 8) & 0xff] << 8) | 0x7f;
345                 if (__put_user (status, (unsigned int *)A(stat_loc)))
346                         return -EFAULT;
347         }
348         return ret;
349 }
350
351 asmlinkage int solaris_waitid(int idtype, s32 pid, u32 info, int options)
352 {
353         int (*sys_wait4)(pid_t,unsigned int *, int, struct rusage *) =
354                 (int (*)(pid_t,unsigned int *, int, struct rusage *))SYS(wait4);
355         int opts, status, ret;
356         
357         switch (idtype) {
358         case 0: /* P_PID */ break;
359         case 1: /* P_PGID */ pid = -pid; break;
360         case 7: /* P_ALL */ pid = -1; break;
361         default: return -EINVAL;
362         }
363         opts = 0;
364         if (options & SOLARIS_WUNTRACED) opts |= WUNTRACED;
365         if (options & SOLARIS_WNOHANG) opts |= WNOHANG;
366         current->state = TASK_RUNNING;
367         ret = sys_wait4(pid, (unsigned int *)A(info), opts, NULL);
368         if (ret < 0) return ret;
369         if (info) {
370                 struct sol_siginfo *s = (struct sol_siginfo *)A(info);
371         
372                 if (get_user (status, (unsigned int *)A(info)))
373                         return -EFAULT;
374
375                 if (__put_user (SOLARIS_SIGCLD, &s->si_signo) ||
376                     __put_user (ret, &s->_data._proc._pid))
377                         return -EFAULT;
378
379                 switch (status & 0xff) {
380                 case 0: ret = SOLARIS_CLD_EXITED;
381                         status = (status >> 8) & 0xff;
382                         break;
383                 case 0x7f:
384                         status = (status >> 8) & 0xff;
385                         switch (status) {
386                         case SIGSTOP:
387                         case SIGTSTP: ret = SOLARIS_CLD_STOPPED;
388                         default: ret = SOLARIS_CLD_EXITED;
389                         }
390                         status = linux_to_solaris_signals[status];
391                         break;
392                 default:
393                         if (status & 0x80) ret = SOLARIS_CLD_DUMPED;
394                         else ret = SOLARIS_CLD_KILLED;
395                         status = linux_to_solaris_signals[status & 0x7f];
396                         break;
397                 }
398
399                 if (__put_user (ret, &s->si_code) ||
400                     __put_user (status, &s->_data._proc._pdata._cld._status))
401                         return -EFAULT;
402         }
403         return 0;
404 }
405
406 extern int svr4_setcontext(svr4_ucontext_t *c, struct pt_regs *regs);
407 extern int svr4_getcontext(svr4_ucontext_t *c, struct pt_regs *regs);
408
409 asmlinkage int solaris_context(struct pt_regs *regs)
410 {
411         switch ((unsigned)regs->u_regs[UREG_I0]) {
412         case 0: /* getcontext */
413                 return svr4_getcontext((svr4_ucontext_t *)(long)(u32)regs->u_regs[UREG_I1], regs);
414         case 1: /* setcontext */
415                 return svr4_setcontext((svr4_ucontext_t *)(long)(u32)regs->u_regs[UREG_I1], regs);
416         default:
417                 return -EINVAL;
418
419         }
420 }
421
422 asmlinkage int solaris_sigaltstack(u32 ss, u32 oss)
423 {
424 /* XXX Implement this soon */
425         return 0;
426 }