diff options
Diffstat (limited to 'arch/arc/kernel/signal.c')
-rw-r--r-- | arch/arc/kernel/signal.c | 360 |
1 files changed, 360 insertions, 0 deletions
diff --git a/arch/arc/kernel/signal.c b/arch/arc/kernel/signal.c new file mode 100644 index 000000000000..ee6ef2f60a28 --- /dev/null +++ b/arch/arc/kernel/signal.c | |||
@@ -0,0 +1,360 @@ | |||
1 | /* | ||
2 | * Signal Handling for ARC | ||
3 | * | ||
4 | * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * vineetg: Jan 2010 (Restarting of timer related syscalls) | ||
11 | * | ||
12 | * vineetg: Nov 2009 (Everything needed for TIF_RESTORE_SIGMASK) | ||
13 | * -do_signal() supports TIF_RESTORE_SIGMASK | ||
14 | * -do_signal() no loner needs oldset, required by OLD sys_sigsuspend | ||
15 | * -sys_rt_sigsuspend() now comes from generic code, so discard arch implemen | ||
16 | * -sys_sigsuspend() no longer needs to fudge ptregs, hence that arg removed | ||
17 | * -sys_sigsuspend() no longer loops for do_signal(), sets TIF_xxx and leaves | ||
18 | * the job to do_signal() | ||
19 | * | ||
20 | * vineetg: July 2009 | ||
21 | * -Modified Code to support the uClibc provided userland sigreturn stub | ||
22 | * to avoid kernel synthesing it on user stack at runtime, costing TLB | ||
23 | * probes and Cache line flushes. | ||
24 | * | ||
25 | * vineetg: July 2009 | ||
26 | * -In stash_usr_regs( ) and restore_usr_regs( ), save/restore of user regs | ||
27 | * in done in block copy rather than one word at a time. | ||
28 | * This saves around 2K of code and improves LMBench lat_sig <catch> | ||
29 | * | ||
30 | * rajeshwarr: Feb 2009 | ||
31 | * - Support for Realtime Signals | ||
32 | * | ||
33 | * vineetg: Aug 11th 2008: Bug #94183 | ||
34 | * -ViXS were still seeing crashes when using insmod to load drivers. | ||
35 | * It turned out that the code to change Execute permssions for TLB entries | ||
36 | * of user was not guarded for interrupts (mod_tlb_permission) | ||
37 | * This was cauing TLB entries to be overwritten on unrelated indexes | ||
38 | * | ||
39 | * Vineetg: July 15th 2008: Bug #94183 | ||
40 | * -Exception happens in Delay slot of a JMP, and before user space resumes, | ||
41 | * Signal is delivered (Ctrl + C) = >SIGINT. | ||
42 | * setup_frame( ) sets up PC,SP,BLINK to enable user space signal handler | ||
43 | * to run, but doesn't clear the Delay slot bit from status32. As a result, | ||
44 | * on resuming user mode, signal handler branches off to BTA of orig JMP | ||
45 | * -FIX: clear the DE bit from status32 in setup_frame( ) | ||
46 | * | ||
47 | * Rahul Trivedi, Kanika Nema: Codito Technologies 2004 | ||
48 | */ | ||
49 | |||
50 | #include <linux/signal.h> | ||
51 | #include <linux/ptrace.h> | ||
52 | #include <linux/personality.h> | ||
53 | #include <linux/uaccess.h> | ||
54 | #include <linux/syscalls.h> | ||
55 | #include <linux/tracehook.h> | ||
56 | #include <asm/ucontext.h> | ||
57 | |||
58 | struct rt_sigframe { | ||
59 | struct siginfo info; | ||
60 | struct ucontext uc; | ||
61 | #define MAGIC_SIGALTSTK 0x07302004 | ||
62 | unsigned int sigret_magic; | ||
63 | }; | ||
64 | |||
65 | static int | ||
66 | stash_usr_regs(struct rt_sigframe __user *sf, struct pt_regs *regs, | ||
67 | sigset_t *set) | ||
68 | { | ||
69 | int err; | ||
70 | err = __copy_to_user(&(sf->uc.uc_mcontext.regs), regs, | ||
71 | sizeof(sf->uc.uc_mcontext.regs.scratch)); | ||
72 | err |= __copy_to_user(&sf->uc.uc_sigmask, set, sizeof(sigset_t)); | ||
73 | |||
74 | return err; | ||
75 | } | ||
76 | |||
77 | static int restore_usr_regs(struct pt_regs *regs, struct rt_sigframe __user *sf) | ||
78 | { | ||
79 | sigset_t set; | ||
80 | int err; | ||
81 | |||
82 | err = __copy_from_user(&set, &sf->uc.uc_sigmask, sizeof(set)); | ||
83 | if (!err) | ||
84 | set_current_blocked(&set); | ||
85 | |||
86 | err |= __copy_from_user(regs, &(sf->uc.uc_mcontext.regs), | ||
87 | sizeof(sf->uc.uc_mcontext.regs.scratch)); | ||
88 | |||
89 | return err; | ||
90 | } | ||
91 | |||
92 | static inline int is_do_ss_needed(unsigned int magic) | ||
93 | { | ||
94 | if (MAGIC_SIGALTSTK == magic) | ||
95 | return 1; | ||
96 | else | ||
97 | return 0; | ||
98 | } | ||
99 | |||
100 | SYSCALL_DEFINE0(rt_sigreturn) | ||
101 | { | ||
102 | struct rt_sigframe __user *sf; | ||
103 | unsigned int magic; | ||
104 | int err; | ||
105 | struct pt_regs *regs = current_pt_regs(); | ||
106 | |||
107 | /* Always make any pending restarted system calls return -EINTR */ | ||
108 | current_thread_info()->restart_block.fn = do_no_restart_syscall; | ||
109 | |||
110 | /* Since we stacked the signal on a word boundary, | ||
111 | * then 'sp' should be word aligned here. If it's | ||
112 | * not, then the user is trying to mess with us. | ||
113 | */ | ||
114 | if (regs->sp & 3) | ||
115 | goto badframe; | ||
116 | |||
117 | sf = (struct rt_sigframe __force __user *)(regs->sp); | ||
118 | |||
119 | if (!access_ok(VERIFY_READ, sf, sizeof(*sf))) | ||
120 | goto badframe; | ||
121 | |||
122 | err = restore_usr_regs(regs, sf); | ||
123 | err |= __get_user(magic, &sf->sigret_magic); | ||
124 | if (err) | ||
125 | goto badframe; | ||
126 | |||
127 | if (unlikely(is_do_ss_needed(magic))) | ||
128 | if (restore_altstack(&sf->uc.uc_stack)) | ||
129 | goto badframe; | ||
130 | |||
131 | /* Don't restart from sigreturn */ | ||
132 | syscall_wont_restart(regs); | ||
133 | |||
134 | return regs->r0; | ||
135 | |||
136 | badframe: | ||
137 | force_sig(SIGSEGV, current); | ||
138 | return 0; | ||
139 | } | ||
140 | |||
141 | /* | ||
142 | * Determine which stack to use.. | ||
143 | */ | ||
144 | static inline void __user *get_sigframe(struct k_sigaction *ka, | ||
145 | struct pt_regs *regs, | ||
146 | unsigned long framesize) | ||
147 | { | ||
148 | unsigned long sp = regs->sp; | ||
149 | void __user *frame; | ||
150 | |||
151 | /* This is the X/Open sanctioned signal stack switching */ | ||
152 | if ((ka->sa.sa_flags & SA_ONSTACK) && !sas_ss_flags(sp)) | ||
153 | sp = current->sas_ss_sp + current->sas_ss_size; | ||
154 | |||
155 | /* No matter what happens, 'sp' must be word | ||
156 | * aligned otherwise nasty things could happen | ||
157 | */ | ||
158 | |||
159 | /* ATPCS B01 mandates 8-byte alignment */ | ||
160 | frame = (void __user *)((sp - framesize) & ~7); | ||
161 | |||
162 | /* Check that we can actually write to the signal frame */ | ||
163 | if (!access_ok(VERIFY_WRITE, frame, framesize)) | ||
164 | frame = NULL; | ||
165 | |||
166 | return frame; | ||
167 | } | ||
168 | |||
169 | /* | ||
170 | * translate the signal | ||
171 | */ | ||
172 | static inline int map_sig(int sig) | ||
173 | { | ||
174 | struct thread_info *thread = current_thread_info(); | ||
175 | if (thread->exec_domain && thread->exec_domain->signal_invmap | ||
176 | && sig < 32) | ||
177 | sig = thread->exec_domain->signal_invmap[sig]; | ||
178 | return sig; | ||
179 | } | ||
180 | |||
181 | static int | ||
182 | setup_rt_frame(int signo, struct k_sigaction *ka, siginfo_t *info, | ||
183 | sigset_t *set, struct pt_regs *regs) | ||
184 | { | ||
185 | struct rt_sigframe __user *sf; | ||
186 | unsigned int magic = 0; | ||
187 | int err = 0; | ||
188 | |||
189 | sf = get_sigframe(ka, regs, sizeof(struct rt_sigframe)); | ||
190 | if (!sf) | ||
191 | return 1; | ||
192 | |||
193 | /* | ||
194 | * SA_SIGINFO requires 3 args to signal handler: | ||
195 | * #1: sig-no (common to any handler) | ||
196 | * #2: struct siginfo | ||
197 | * #3: struct ucontext (completely populated) | ||
198 | */ | ||
199 | if (unlikely(ka->sa.sa_flags & SA_SIGINFO)) { | ||
200 | err |= copy_siginfo_to_user(&sf->info, info); | ||
201 | err |= __put_user(0, &sf->uc.uc_flags); | ||
202 | err |= __put_user(NULL, &sf->uc.uc_link); | ||
203 | err |= __save_altstack(&sf->uc.uc_stack, regs->sp); | ||
204 | |||
205 | /* setup args 2 and 3 for user mode handler */ | ||
206 | regs->r1 = (unsigned long)&sf->info; | ||
207 | regs->r2 = (unsigned long)&sf->uc; | ||
208 | |||
209 | /* | ||
210 | * small optim to avoid unconditonally calling do_sigaltstack | ||
211 | * in sigreturn path, now that we only have rt_sigreturn | ||
212 | */ | ||
213 | magic = MAGIC_SIGALTSTK; | ||
214 | } | ||
215 | |||
216 | /* | ||
217 | * w/o SA_SIGINFO, struct ucontext is partially populated (only | ||
218 | * uc_mcontext/uc_sigmask) for kernel's normal user state preservation | ||
219 | * during signal handler execution. This works for SA_SIGINFO as well | ||
220 | * although the semantics are now overloaded (the same reg state can be | ||
221 | * inspected by userland: but are they allowed to fiddle with it ? | ||
222 | */ | ||
223 | err |= stash_usr_regs(sf, regs, set); | ||
224 | err |= __put_user(magic, &sf->sigret_magic); | ||
225 | if (err) | ||
226 | return err; | ||
227 | |||
228 | /* #1 arg to the user Signal handler */ | ||
229 | regs->r0 = map_sig(signo); | ||
230 | |||
231 | /* setup PC of user space signal handler */ | ||
232 | regs->ret = (unsigned long)ka->sa.sa_handler; | ||
233 | |||
234 | /* | ||
235 | * handler returns using sigreturn stub provided already by userpsace | ||
236 | */ | ||
237 | BUG_ON(!(ka->sa.sa_flags & SA_RESTORER)); | ||
238 | regs->blink = (unsigned long)ka->sa.sa_restorer; | ||
239 | |||
240 | /* User Stack for signal handler will be above the frame just carved */ | ||
241 | regs->sp = (unsigned long)sf; | ||
242 | |||
243 | /* | ||
244 | * Bug 94183, Clear the DE bit, so that when signal handler | ||
245 | * starts to run, it doesn't use BTA | ||
246 | */ | ||
247 | regs->status32 &= ~STATUS_DE_MASK; | ||
248 | regs->status32 |= STATUS_L_MASK; | ||
249 | |||
250 | return err; | ||
251 | } | ||
252 | |||
253 | static void arc_restart_syscall(struct k_sigaction *ka, struct pt_regs *regs) | ||
254 | { | ||
255 | switch (regs->r0) { | ||
256 | case -ERESTART_RESTARTBLOCK: | ||
257 | case -ERESTARTNOHAND: | ||
258 | /* | ||
259 | * ERESTARTNOHAND means that the syscall should | ||
260 | * only be restarted if there was no handler for | ||
261 | * the signal, and since we only get here if there | ||
262 | * is a handler, we don't restart | ||
263 | */ | ||
264 | regs->r0 = -EINTR; /* ERESTART_xxx is internal */ | ||
265 | break; | ||
266 | |||
267 | case -ERESTARTSYS: | ||
268 | /* | ||
269 | * ERESTARTSYS means to restart the syscall if | ||
270 | * there is no handler or the handler was | ||
271 | * registered with SA_RESTART | ||
272 | */ | ||
273 | if (!(ka->sa.sa_flags & SA_RESTART)) { | ||
274 | regs->r0 = -EINTR; | ||
275 | break; | ||
276 | } | ||
277 | /* fallthrough */ | ||
278 | |||
279 | case -ERESTARTNOINTR: | ||
280 | /* | ||
281 | * ERESTARTNOINTR means that the syscall should | ||
282 | * be called again after the signal handler returns. | ||
283 | * Setup reg state just as it was before doing the trap | ||
284 | * r0 has been clobbered with sys call ret code thus it | ||
285 | * needs to be reloaded with orig first arg to syscall | ||
286 | * in orig_r0. Rest of relevant reg-file: | ||
287 | * r8 (syscall num) and (r1 - r7) will be reset to | ||
288 | * their orig user space value when we ret from kernel | ||
289 | */ | ||
290 | regs->r0 = regs->orig_r0; | ||
291 | regs->ret -= 4; | ||
292 | break; | ||
293 | } | ||
294 | } | ||
295 | |||
296 | /* | ||
297 | * OK, we're invoking a handler | ||
298 | */ | ||
299 | static void | ||
300 | handle_signal(unsigned long sig, struct k_sigaction *ka, siginfo_t *info, | ||
301 | struct pt_regs *regs) | ||
302 | { | ||
303 | sigset_t *oldset = sigmask_to_save(); | ||
304 | int ret; | ||
305 | |||
306 | /* Set up the stack frame */ | ||
307 | ret = setup_rt_frame(sig, ka, info, oldset, regs); | ||
308 | |||
309 | if (ret) | ||
310 | force_sigsegv(sig, current); | ||
311 | else | ||
312 | signal_delivered(sig, info, ka, regs, 0); | ||
313 | } | ||
314 | |||
315 | void do_signal(struct pt_regs *regs) | ||
316 | { | ||
317 | struct k_sigaction ka; | ||
318 | siginfo_t info; | ||
319 | int signr; | ||
320 | int restart_scall; | ||
321 | |||
322 | signr = get_signal_to_deliver(&info, &ka, regs, NULL); | ||
323 | |||
324 | restart_scall = in_syscall(regs) && syscall_restartable(regs); | ||
325 | |||
326 | if (signr > 0) { | ||
327 | if (restart_scall) { | ||
328 | arc_restart_syscall(&ka, regs); | ||
329 | syscall_wont_restart(regs); /* No more restarts */ | ||
330 | } | ||
331 | handle_signal(signr, &ka, &info, regs); | ||
332 | return; | ||
333 | } | ||
334 | |||
335 | if (restart_scall) { | ||
336 | /* No handler for syscall: restart it */ | ||
337 | if (regs->r0 == -ERESTARTNOHAND || | ||
338 | regs->r0 == -ERESTARTSYS || regs->r0 == -ERESTARTNOINTR) { | ||
339 | regs->r0 = regs->orig_r0; | ||
340 | regs->ret -= 4; | ||
341 | } else if (regs->r0 == -ERESTART_RESTARTBLOCK) { | ||
342 | regs->r8 = __NR_restart_syscall; | ||
343 | regs->ret -= 4; | ||
344 | } | ||
345 | syscall_wont_restart(regs); /* No more restarts */ | ||
346 | } | ||
347 | |||
348 | /* If there's no signal to deliver, restore the saved sigmask back */ | ||
349 | restore_saved_sigmask(); | ||
350 | } | ||
351 | |||
352 | void do_notify_resume(struct pt_regs *regs) | ||
353 | { | ||
354 | /* | ||
355 | * ASM glue gaurantees that this is only called when returning to | ||
356 | * user mode | ||
357 | */ | ||
358 | if (test_and_clear_thread_flag(TIF_NOTIFY_RESUME)) | ||
359 | tracehook_notify_resume(regs); | ||
360 | } | ||