aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ubicom32/files/arch/ubicom32/kernel/signal.c
blob: f6ccbe3a75a0e49456d3b7b6b2b621464a7bdd20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/*
 * arch/ubicom32/kernel/signal.c
 *   Ubicom32 architecture signal handling implementation.
 *
 * (C) Copyright 2009, Ubicom, Inc.
 * Copyright (C) 1991, 1992  Linus Torvalds
 * Linux/m68k support by Hamish Macdonald
 * 68060 fixes by Jesper Skov
 * 1997-12-01  Modified for POSIX.1b signals by Andreas Schwab
 * mathemu support by Roman Zippel
 * ++roman (07/09/96): implemented signal stacks
 *
 * This file is part of the Ubicom32 Linux Kernel Port.
 *
 * The Ubicom32 Linux Kernel Port is free software: you can redistribute
 * it and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation, either version 2 of the
 * License, or (at your option) any later version.
 *
 * The Ubicom32 Linux Kernel Port is distributed in the hope that it
 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 * the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the Ubicom32 Linux Kernel Port.  If not,
 * see <http://www.gnu.org/licenses/>.
 *
 * Ubicom32 implementation derived from (with many thanks):
 *   arch/m68knommu
 *   arch/blackfin
 *   arch/parisc
 *
 * mathemu support by Roman Zippel
 *  (Note: fpstate in the signal context is completely ignored for the emulator
 *         and the internal floating point format is put on stack)
 *
 * ++roman (07/09/96): implemented signal stacks (specially for tosemu on
 * Atari :-) Current limitation: Only one sigstack can be active at one time.
 * If a second signal with SA_ONSTACK set arrives while working on a sigstack,
 * SA_ONSTACK is ignored. This behaviour avoids lots of trouble with nested
 * signal handlers!
 */

#include <linux/module.h>
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/kernel.h>
#include <linux/signal.h>
#include <linux/syscalls.h>
#include <linux/errno.h>
#include <linux/wait.h>
#include <linux/ptrace.h>
#include <linux/unistd.h>
#include <linux/stddef.h>
#include <linux/highuid.h>
#include <linux/tty.h>
#include <linux/personality.h>
#include <linux/binfmts.h>

#include <asm/setup.h>
#include <asm/uaccess.h>
#include <asm/pgtable.h>
#include <asm/traps.h>
#include <asm/ucontext.h>

#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))

/*
 * asm signal return handlers.
 */
void ret_from_user_signal(void);
void ret_from_user_rt_signal(void);
asmlinkage int do_signal(sigset_t *oldset, struct pt_regs *regs);

/*
 * Common signal suspend implementation
 */
static int signal_suspend(sigset_t *saveset, struct pt_regs *regs)
{
	regs->dn[0] = -EINTR;
	while (1) {
		current->state = TASK_INTERRUPTIBLE;
		schedule();
		if (!do_signal(saveset, regs)) {
			continue;
		}
		/*
		 * If the current frame type is a signal trampoline we are
		 * actually going to call the signal handler so we return the
		 * desired d0 as the return value.
		 */
		if (regs->frame_type == UBICOM32_FRAME_TYPE_SIGTRAMP) {
			return regs->dn[0];
		}
		return -EINTR;
	}
	/*
	 * Should never get here
	 */
	BUG();
	return 0;
}

/*
 * Atomically swap in the new signal mask, and wait for a signal.
 */
asmlinkage int do_sigsuspend(struct pt_regs *regs)
{
	old_sigset_t mask = regs->dn[0];
	sigset_t saveset;

	mask &= _BLOCKABLE;
	spin_lock_irq(&current->sighand->siglock);
	saveset = current->blocked;
	siginitset(&current->blocked, mask);
	recalc_sigpending();
	spin_unlock_irq(&current->sighand->siglock);

	/*
	 * Call common handler
	 */
	return signal_suspend(&saveset, regs);
}

asmlinkage int
do_rt_sigsuspend(struct pt_regs *regs)
{
	sigset_t *unewset = (sigset_t *)regs->dn[0];
	size_t sigsetsize = (size_t)regs->dn[1];
	sigset_t saveset, newset;

	/* XXX: Don't preclude handling different sized sigset_t's.  */
	if (sigsetsize != sizeof(sigset_t))
		return -EINVAL;

	if (copy_from_user(&newset, unewset, sizeof(newset)))
		return -EFAULT;
	sigdelsetmask(&newset, ~_BLOCKABLE);

	spin_lock_irq(&current->sighand->siglock);
	saveset = current->blocked;
	current->blocked = newset;
	recalc_sigpending();
	spin_unlock_irq(&current->sighand->siglock);

	/*
	 * Call common handler
	 */
	return signal_suspend(&saveset, regs);
}

asmlinkage int
sys_sigaction(int sig, const struct old_sigaction *act,
	      struct old_sigaction *oact)
{
	struct k_sigaction new_ka, old_ka;
	int ret;

	if (act) {
		old_sigset_t mask;
		if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
		    __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
		    __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
			return -EFAULT;
		__get_user(new_ka.sa.sa_flags, &act->sa_flags);
		__get_user(mask, &act->sa_mask);
		siginitset(&new_ka.sa.sa_mask, mask);
	}

	ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);

	if (!ret && oact) {
		if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
		    __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
		    __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
			return -EFAULT;
		__put_user(old_ka.sa.sa_flags, &oact->sa_flags);
		__put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
	}

	return ret;
}

asmlinkage int
do_sys_sigaltstack(struct pt_regs *regs)
{
	const stack_t *uss = (stack_t *) regs->dn[0];
	stack_t *uoss = (stack_t *)regs->dn[1];
	return do_sigaltstack(uss, uoss, regs->an[7]);
}

/*
 * fdpic_func_descriptor describes sa_handler when the application is FDPIC
 */
struct fdpic_func_descriptor {
	unsigned long	text;
	unsigned long	GOT;
};

/*
 * rt_sigframe is stored on the user stack immediately before (above)
 * the signal handlers stack.
 */
struct rt_sigframe
{
	unsigned long syscall_number;	/* This holds __NR_rt_sigreturn. */
	unsigned long restore_all_regs; /* This field gets set to 1 if the frame
					 * type is TRAP or INTERRUPT. */
	siginfo_t *info;
	struct ucontext uc;
	int sig;
	void *pretcode;
};

/*
 * Do a signal return; undo the signal stack.
 */
asmlinkage int do_sigreturn(unsigned long __unused)
{
	BUG();
	return 0;
}

asmlinkage int do_rt_sigreturn(struct pt_regs *regs)
{
	unsigned long usp = regs->an[7];
	struct rt_sigframe *frame = (struct rt_sigframe *)(usp);
	sigset_t set;

	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
		goto badframe;
	if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
		goto badframe;

	sigdelsetmask(&set, ~_BLOCKABLE);
	spin_lock_irq(&current->sighand->siglock);
	current->blocked = set;
	recalc_sigpending();
	spin_unlock_irq(&current->sighand->siglock);

	if (copy_from_user(regs, &frame->uc.uc_mcontext, sizeof(struct pt_regs)))
		goto badframe;
	return regs->dn[0];

badframe:
	force_sig(SIGSEGV, current);
	return 0;
}

static inline void *
get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size)
{
	unsigned long usp;

	/* Default to using normal stack.  */
	usp = regs->an[7];

	/* This is the X/Open sanctioned signal stack switching.  */
	if (ka->sa.sa_flags & SA_ONSTACK) {
		if (!sas_ss_flags(usp))
			usp = current->sas_ss_sp + current->sas_ss_size;
	}
	return (void *)((usp - frame_size) & ~0x3);
}

/*
 * signal_trampoline:  Defined in ubicom32_syscall.S
 */
asmlinkage void signal_trampoline(void)__attribute__((naked));

static void setup_rt_frame (int sig, struct k_sigaction *ka, siginfo_t *info,
			    sigset_t *set, struct pt_regs *regs)
{
	struct rt_sigframe *frame;
	int err = 0;

	frame = (struct rt_sigframe *) get_sigframe(ka, regs, sizeof(*frame));

	/*
	 * The 'err |=' have been may criticized as bad code style, but I
	 * strongly suspect that we want this code to be fast.  So for
	 * now it stays as is.
	 */
	err |= __put_user( (  (current_thread_info()->exec_domain)
			   && (current_thread_info()->exec_domain->signal_invmap)
			   && (sig < 32) )
			   ? current_thread_info()->exec_domain->signal_invmap[sig]
			   : sig, &frame->sig);
	err |= __put_user(info, &frame->info);

	/* Create the ucontext.  */
	err |= __put_user(0, &frame->uc.uc_flags);
	err |= __put_user(0, &frame->uc.uc_link);
	err |= __put_user((void *)current->sas_ss_sp,
			  &frame->uc.uc_stack.ss_sp);
	err |= __put_user(sas_ss_flags(regs->an[7]),
			  &frame->uc.uc_stack.ss_flags);
	err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
	err |= __put_user(__NR_rt_sigreturn, &frame->syscall_number);
	if ((regs->frame_type == UBICOM32_FRAME_TYPE_TRAP) ||
	    (regs->frame_type == UBICOM32_FRAME_TYPE_INTERRUPT)) {
		err |= __put_user(1, &frame->restore_all_regs);
	} else {
		err |= __put_user(0, &frame->restore_all_regs);
	}
	err |= copy_to_user (&frame->uc.uc_mcontext.sc_regs, regs, sizeof(struct pt_regs));
	err |= copy_to_user (&frame->uc.uc_sigmask, set, sizeof(*set));

	if (err)
		goto give_sigsegv;

	/*
	 * Set up registers for signal handler NOTE: Do not modify dn[14], it
	 * contains the userspace tls pointer, so it important that it carries
	 * over to the signal handler.
	 */
	regs->an[7] = (unsigned long)frame;
	regs->pc = (unsigned long) signal_trampoline;
	regs->an[5] = (unsigned long) signal_trampoline;
	regs->dn[0] = sig;
	regs->dn[1] = (unsigned long) frame->info;
	regs->dn[2] = (unsigned int) &frame->uc;

	/*
	 * If this is FDPIC then the signal handler is actually a function
	 * descriptor.
	 */
	if (current->personality & FDPIC_FUNCPTRS) {
		struct fdpic_func_descriptor __user *funcptr =
			(struct fdpic_func_descriptor *) ka->sa.sa_handler;
		err |= __get_user(regs->dn[3], &funcptr->text);
		err |= __get_user(regs->an[0], &funcptr->GOT);
		if (err)
			goto give_sigsegv;

		/*
		 * The funcdesc must be in a3 as this is required for the lazy
		 * resolver in ld.so, if the application is not FDPIC a3 is not
		 * used.
		 */
		regs->an[3] = (unsigned long) funcptr;

	} else {
		regs->dn[3] = (unsigned long)ka->sa.sa_handler;
		regs->an[0] = 0;
	}

	regs->frame_type =  UBICOM32_FRAME_TYPE_SIGTRAMP;

	return;

give_sigsegv:
	/* user space exception */
	force_sigsegv(sig, current);
}

static inline void
handle_restart(struct pt_regs *regs, struct k_sigaction *ka, int has_handler)
{
	switch (regs->dn[0]) {
	case -ERESTARTNOHAND:
		if (!has_handler)
			goto do_restart;
		regs->dn[0] = -EINTR;
		break;

	case -ERESTARTSYS:
		if (has_handler && !(ka->sa.sa_flags & SA_RESTART)) {
			regs->dn[0] = -EINTR;
			break;
		}
	/* fallthrough */
	case -ERESTARTNOINTR:
	do_restart:
		regs->dn[0] = regs->original_dn_0;
		regs->pc -= 8;
		regs->an[5] -= 8;
		break;
	}
}

/*
 * OK, we're invoking a handler
 */
static void
handle_signal(int sig, struct k_sigaction *ka, siginfo_t *info,
	      sigset_t *oldset, struct pt_regs *regs)
{
	/* are we from a system call? */
	if (regs->frame_type == -1)
		/* If so, check system call restarting.. */
		handle_restart(regs, ka, 1);

	/* set up the stack frame */
	setup_rt_frame(sig, ka, info, oldset, regs);

	if (ka->sa.sa_flags & SA_ONESHOT)
		ka->sa.sa_handler = SIG_DFL;

	spin_lock_irq(&current->sighand->siglock);
	sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
	if (!(ka->sa.sa_flags & SA_NODEFER))
		sigaddset(&current->blocked,sig);
	recalc_sigpending();
	spin_unlock_irq(&current->sighand->siglock);
}

/*
 * Note that 'init' is a special process: it doesn't get signals it doesn't
 * want to handle. Thus you cannot kill init even with a SIGKILL even by
 * mistake.
 */
asmlinkage int do_signal(sigset_t *oldset, struct pt_regs *regs)
{
	struct k_sigaction ka;
	siginfo_t info;
	int signr;

	/*
	 * We want the common case to go fast, which
	 * is why we may in certain cases get here from
	 * kernel mode. Just return without doing anything
	 * if so.
	 */
	if (!user_mode(regs))
		return 1;

	if (!oldset)
		oldset = &current->blocked;

	signr = get_signal_to_deliver(&info, &ka, regs, NULL);
	if (signr > 0) {
		/* Whee!  Actually deliver the signal.  */
		handle_signal(signr, &ka, &info, oldset, regs);
		return 1;
	}

	/* Did we come from a system call? */
	if (regs->frame_type == -1) {
		/* Restart the system call - no handlers present */
		handle_restart(regs, NULL, 0);
	}

	return 0;
}

/*
 * sys_sigreturn()
 *	Return handler for signal clean-up.
 *
 * NOTE: Ubicom32 does not use this syscall.  Instead we rely
 * on do_rt_sigreturn().
 */
asmlinkage long sys_sigreturn(void)
{
	return -ENOSYS;
}