]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/frv/kernel/signal.c
frv: Remove signal translation and exec_domain
[karo-tx-linux.git] / arch / frv / kernel / signal.c
1 /* signal.c: FRV specific bits of signal handling
2  *
3  * Copyright (C) 2003-5 Red Hat, Inc. All Rights Reserved.
4  * Written by David Howells (dhowells@redhat.com)
5  * - Derived from arch/m68k/kernel/signal.c
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version
10  * 2 of the License, or (at your option) any later version.
11  */
12
13 #include <linux/sched.h>
14 #include <linux/mm.h>
15 #include <linux/smp.h>
16 #include <linux/kernel.h>
17 #include <linux/signal.h>
18 #include <linux/errno.h>
19 #include <linux/wait.h>
20 #include <linux/ptrace.h>
21 #include <linux/unistd.h>
22 #include <linux/personality.h>
23 #include <linux/tracehook.h>
24 #include <asm/ucontext.h>
25 #include <asm/uaccess.h>
26 #include <asm/cacheflush.h>
27
28 #define DEBUG_SIG 0
29
30 struct fdpic_func_descriptor {
31         unsigned long   text;
32         unsigned long   GOT;
33 };
34
35 /*
36  * Do a signal return; undo the signal stack.
37  */
38
39 struct sigframe
40 {
41         __sigrestore_t pretcode;
42         int sig;
43         struct sigcontext sc;
44         unsigned long extramask[_NSIG_WORDS-1];
45         uint32_t retcode[2];
46 };
47
48 struct rt_sigframe
49 {
50         __sigrestore_t pretcode;
51         int sig;
52         struct siginfo __user *pinfo;
53         void __user *puc;
54         struct siginfo info;
55         struct ucontext uc;
56         uint32_t retcode[2];
57 };
58
59 static int restore_sigcontext(struct sigcontext __user *sc, int *_gr8)
60 {
61         struct user_context *user = current->thread.user;
62         unsigned long tbr, psr;
63
64         /* Always make any pending restarted system calls return -EINTR */
65         current->restart_block.fn = do_no_restart_syscall;
66
67         tbr = user->i.tbr;
68         psr = user->i.psr;
69         if (copy_from_user(user, &sc->sc_context, sizeof(sc->sc_context)))
70                 goto badframe;
71         user->i.tbr = tbr;
72         user->i.psr = psr;
73
74         restore_user_regs(user);
75
76         user->i.syscallno = -1;         /* disable syscall checks */
77
78         *_gr8 = user->i.gr[8];
79         return 0;
80
81  badframe:
82         return 1;
83 }
84
85 asmlinkage int sys_sigreturn(void)
86 {
87         struct sigframe __user *frame = (struct sigframe __user *) __frame->sp;
88         sigset_t set;
89         int gr8;
90
91         if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
92                 goto badframe;
93         if (__get_user(set.sig[0], &frame->sc.sc_oldmask))
94                 goto badframe;
95
96         if (_NSIG_WORDS > 1 &&
97             __copy_from_user(&set.sig[1], &frame->extramask, sizeof(frame->extramask)))
98                 goto badframe;
99
100         set_current_blocked(&set);
101
102         if (restore_sigcontext(&frame->sc, &gr8))
103                 goto badframe;
104         return gr8;
105
106  badframe:
107         force_sig(SIGSEGV, current);
108         return 0;
109 }
110
111 asmlinkage int sys_rt_sigreturn(void)
112 {
113         struct rt_sigframe __user *frame = (struct rt_sigframe __user *) __frame->sp;
114         sigset_t set;
115         int gr8;
116
117         if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
118                 goto badframe;
119         if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
120                 goto badframe;
121
122         set_current_blocked(&set);
123
124         if (restore_sigcontext(&frame->uc.uc_mcontext, &gr8))
125                 goto badframe;
126
127         if (restore_altstack(&frame->uc.uc_stack))
128                 goto badframe;
129
130         return gr8;
131
132 badframe:
133         force_sig(SIGSEGV, current);
134         return 0;
135 }
136
137 /*
138  * Set up a signal frame
139  */
140 static int setup_sigcontext(struct sigcontext __user *sc, unsigned long mask)
141 {
142         save_user_regs(current->thread.user);
143
144         if (copy_to_user(&sc->sc_context, current->thread.user, sizeof(sc->sc_context)) != 0)
145                 goto badframe;
146
147         /* non-iBCS2 extensions.. */
148         if (__put_user(mask, &sc->sc_oldmask) < 0)
149                 goto badframe;
150
151         return 0;
152
153  badframe:
154         return 1;
155 }
156
157 /*****************************************************************************/
158 /*
159  * Determine which stack to use..
160  */
161 static inline void __user *get_sigframe(struct ksignal *ksig,
162                                         size_t frame_size)
163 {
164         unsigned long sp = sigsp(__frame->sp, ksig);
165
166         return (void __user *) ((sp - frame_size) & ~7UL);
167
168 } /* end get_sigframe() */
169
170 /*****************************************************************************/
171 /*
172  *
173  */
174 static int setup_frame(struct ksignal *ksig, sigset_t *set)
175 {
176         struct sigframe __user *frame;
177         int sig = ksig->sig;
178
179         set_fs(USER_DS);
180
181         frame = get_sigframe(ksig, sizeof(*frame));
182
183         if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
184                 return -EFAULT;
185
186         if (__put_user(sig, &frame->sig) < 0)
187                 return -EFAULT;
188
189         if (setup_sigcontext(&frame->sc, set->sig[0]))
190                 return -EFAULT;
191
192         if (_NSIG_WORDS > 1) {
193                 if (__copy_to_user(frame->extramask, &set->sig[1],
194                                    sizeof(frame->extramask)))
195                         return -EFAULT;
196         }
197
198         /* Set up to return from userspace.  If provided, use a stub
199          * already in userspace.  */
200         if (ksig->ka.sa.sa_flags & SA_RESTORER) {
201                 if (__put_user(ksig->ka.sa.sa_restorer, &frame->pretcode) < 0)
202                         return -EFAULT;
203         }
204         else {
205                 /* Set up the following code on the stack:
206                  *      setlos  #__NR_sigreturn,gr7
207                  *      tira    gr0,0
208                  */
209                 if (__put_user((__sigrestore_t)frame->retcode, &frame->pretcode) ||
210                     __put_user(0x8efc0000|__NR_sigreturn, &frame->retcode[0]) ||
211                     __put_user(0xc0700000, &frame->retcode[1]))
212                         return -EFAULT;
213
214                 flush_icache_range((unsigned long) frame->retcode,
215                                    (unsigned long) (frame->retcode + 2));
216         }
217
218         /* Set up registers for the signal handler */
219         if (current->personality & FDPIC_FUNCPTRS) {
220                 struct fdpic_func_descriptor __user *funcptr =
221                         (struct fdpic_func_descriptor __user *) ksig->ka.sa.sa_handler;
222                 struct fdpic_func_descriptor desc;
223                 if (copy_from_user(&desc, funcptr, sizeof(desc)))
224                         return -EFAULT;
225                 __frame->pc = desc.text;
226                 __frame->gr15 = desc.GOT;
227         } else {
228                 __frame->pc   = (unsigned long) ksig->ka.sa.sa_handler;
229                 __frame->gr15 = 0;
230         }
231
232         __frame->sp   = (unsigned long) frame;
233         __frame->lr   = (unsigned long) &frame->retcode;
234         __frame->gr8  = sig;
235
236 #if DEBUG_SIG
237         printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
238                sig, current->comm, current->pid, frame, __frame->pc,
239                frame->pretcode);
240 #endif
241
242         return 0;
243 } /* end setup_frame() */
244
245 /*****************************************************************************/
246 /*
247  *
248  */
249 static int setup_rt_frame(struct ksignal *ksig, sigset_t *set)
250 {
251         struct rt_sigframe __user *frame;
252         int sig = ksig->sig;
253
254         set_fs(USER_DS);
255
256         frame = get_sigframe(ksig, sizeof(*frame));
257
258         if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
259                 return -EFAULT;
260
261         if (__put_user(sig,             &frame->sig) ||
262             __put_user(&frame->info,    &frame->pinfo) ||
263             __put_user(&frame->uc,      &frame->puc))
264                 return -EFAULT;
265
266         if (copy_siginfo_to_user(&frame->info, &ksig->info))
267                 return -EFAULT;
268
269         /* Create the ucontext.  */
270         if (__put_user(0, &frame->uc.uc_flags) ||
271             __put_user(NULL, &frame->uc.uc_link) ||
272             __save_altstack(&frame->uc.uc_stack, __frame->sp))
273                 return -EFAULT;
274
275         if (setup_sigcontext(&frame->uc.uc_mcontext, set->sig[0]))
276                 return -EFAULT;
277
278         if (__copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set)))
279                 return -EFAULT;
280
281         /* Set up to return from userspace.  If provided, use a stub
282          * already in userspace.  */
283         if (ksig->ka.sa.sa_flags & SA_RESTORER) {
284                 if (__put_user(ksig->ka.sa.sa_restorer, &frame->pretcode))
285                         return -EFAULT;
286         }
287         else {
288                 /* Set up the following code on the stack:
289                  *      setlos  #__NR_sigreturn,gr7
290                  *      tira    gr0,0
291                  */
292                 if (__put_user((__sigrestore_t)frame->retcode, &frame->pretcode) ||
293                     __put_user(0x8efc0000|__NR_rt_sigreturn, &frame->retcode[0]) ||
294                     __put_user(0xc0700000, &frame->retcode[1]))
295                         return -EFAULT;
296
297                 flush_icache_range((unsigned long) frame->retcode,
298                                    (unsigned long) (frame->retcode + 2));
299         }
300
301         /* Set up registers for signal handler */
302         if (current->personality & FDPIC_FUNCPTRS) {
303                 struct fdpic_func_descriptor __user *funcptr =
304                         (struct fdpic_func_descriptor __user *) ksig->ka.sa.sa_handler;
305                 struct fdpic_func_descriptor desc;
306                 if (copy_from_user(&desc, funcptr, sizeof(desc)))
307                         return -EFAULT;
308                 __frame->pc = desc.text;
309                 __frame->gr15 = desc.GOT;
310         } else {
311                 __frame->pc   = (unsigned long) ksig->ka.sa.sa_handler;
312                 __frame->gr15 = 0;
313         }
314
315         __frame->sp  = (unsigned long) frame;
316         __frame->lr  = (unsigned long) &frame->retcode;
317         __frame->gr8 = sig;
318         __frame->gr9 = (unsigned long) &frame->info;
319
320 #if DEBUG_SIG
321         printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
322                sig, current->comm, current->pid, frame, __frame->pc,
323                frame->pretcode);
324 #endif
325         return 0;
326
327 } /* end setup_rt_frame() */
328
329 /*****************************************************************************/
330 /*
331  * OK, we're invoking a handler
332  */
333 static void handle_signal(struct ksignal *ksig)
334 {
335         sigset_t *oldset = sigmask_to_save();
336         int ret;
337
338         /* Are we from a system call? */
339         if (__frame->syscallno != -1) {
340                 /* If so, check system call restarting.. */
341                 switch (__frame->gr8) {
342                 case -ERESTART_RESTARTBLOCK:
343                 case -ERESTARTNOHAND:
344                         __frame->gr8 = -EINTR;
345                         break;
346
347                 case -ERESTARTSYS:
348                         if (!(ksig->ka.sa.sa_flags & SA_RESTART)) {
349                                 __frame->gr8 = -EINTR;
350                                 break;
351                         }
352
353                         /* fallthrough */
354                 case -ERESTARTNOINTR:
355                         __frame->gr8 = __frame->orig_gr8;
356                         __frame->pc -= 4;
357                 }
358                 __frame->syscallno = -1;
359         }
360
361         /* Set up the stack frame */
362         if (ksig->ka.sa.sa_flags & SA_SIGINFO)
363                 ret = setup_rt_frame(ksig, oldset);
364         else
365                 ret = setup_frame(ksig, oldset);
366
367         signal_setup_done(ret, ksig, test_thread_flag(TIF_SINGLESTEP));
368 } /* end handle_signal() */
369
370 /*****************************************************************************/
371 /*
372  * Note that 'init' is a special process: it doesn't get signals it doesn't
373  * want to handle. Thus you cannot kill init even with a SIGKILL even by
374  * mistake.
375  */
376 static void do_signal(void)
377 {
378         struct ksignal ksig;
379
380         if (get_signal(&ksig)) {
381                 handle_signal(&ksig);
382                 return;
383         }
384
385         /* Did we come from a system call? */
386         if (__frame->syscallno != -1) {
387                 /* Restart the system call - no handlers present */
388                 switch (__frame->gr8) {
389                 case -ERESTARTNOHAND:
390                 case -ERESTARTSYS:
391                 case -ERESTARTNOINTR:
392                         __frame->gr8 = __frame->orig_gr8;
393                         __frame->pc -= 4;
394                         break;
395
396                 case -ERESTART_RESTARTBLOCK:
397                         __frame->gr7 = __NR_restart_syscall;
398                         __frame->pc -= 4;
399                         break;
400                 }
401                 __frame->syscallno = -1;
402         }
403
404         /* if there's no signal to deliver, we just put the saved sigmask
405          * back */
406         restore_saved_sigmask();
407 } /* end do_signal() */
408
409 /*****************************************************************************/
410 /*
411  * notification of userspace execution resumption
412  * - triggered by the TIF_WORK_MASK flags
413  */
414 asmlinkage void do_notify_resume(__u32 thread_info_flags)
415 {
416         /* pending single-step? */
417         if (thread_info_flags & _TIF_SINGLESTEP)
418                 clear_thread_flag(TIF_SINGLESTEP);
419
420         /* deal with pending signal delivery */
421         if (thread_info_flags & _TIF_SIGPENDING)
422                 do_signal();
423
424         /* deal with notification on about to resume userspace execution */
425         if (thread_info_flags & _TIF_NOTIFY_RESUME) {
426                 clear_thread_flag(TIF_NOTIFY_RESUME);
427                 tracehook_notify_resume(__frame);
428         }
429
430 } /* end do_notify_resume() */