Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
  4 *  Chen Liqin <liqin.chen@sunplusct.com>
  5 *  Lennox Wu <lennox.wu@sunplusct.com>
  6 * Copyright (C) 2012 Regents of the University of California
  7 */
  8
  9#include <linux/compat.h>
 10#include <linux/signal.h>
 11#include <linux/uaccess.h>
 12#include <linux/syscalls.h>
 13#include <linux/resume_user_mode.h>
 14#include <linux/linkage.h>
 15#include <linux/entry-common.h>
 16
 17#include <asm/ucontext.h>
 18#include <asm/vdso.h>
 19#include <asm/signal.h>
 20#include <asm/signal32.h>
 21#include <asm/switch_to.h>
 22#include <asm/vector.h>
 23#include <asm/csr.h>
 24#include <asm/cacheflush.h>
 25
 26unsigned long signal_minsigstksz __ro_after_init;
 27
 28extern u32 __user_rt_sigreturn[2];
 29static size_t riscv_v_sc_size __ro_after_init;
 30
 31#define DEBUG_SIG 0
 32
 33struct rt_sigframe {
 34	struct siginfo info;
 35	struct ucontext uc;
 36#ifndef CONFIG_MMU
 37	u32 sigreturn_code[2];
 38#endif
 39};
 40
 41#ifdef CONFIG_FPU
 42static long restore_fp_state(struct pt_regs *regs,
 43			     union __riscv_fp_state __user *sc_fpregs)
 44{
 45	long err;
 46	struct __riscv_d_ext_state __user *state = &sc_fpregs->d;
 
 47
 48	err = __copy_from_user(&current->thread.fstate, state, sizeof(*state));
 49	if (unlikely(err))
 50		return err;
 51
 52	fstate_restore(current, regs);
 53	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 54}
 55
 56static long save_fp_state(struct pt_regs *regs,
 57			  union __riscv_fp_state __user *sc_fpregs)
 58{
 59	long err;
 60	struct __riscv_d_ext_state __user *state = &sc_fpregs->d;
 
 61
 62	fstate_save(current, regs);
 63	err = __copy_to_user(state, &current->thread.fstate, sizeof(*state));
 64	return err;
 65}
 66#else
 67#define save_fp_state(task, regs) (0)
 68#define restore_fp_state(task, regs) (0)
 69#endif
 70
 71#ifdef CONFIG_RISCV_ISA_V
 72
 73static long save_v_state(struct pt_regs *regs, void __user **sc_vec)
 74{
 75	struct __riscv_ctx_hdr __user *hdr;
 76	struct __sc_riscv_v_state __user *state;
 77	void __user *datap;
 78	long err;
 79
 80	hdr = *sc_vec;
 81	/* Place state to the user's signal context space after the hdr */
 82	state = (struct __sc_riscv_v_state __user *)(hdr + 1);
 83	/* Point datap right after the end of __sc_riscv_v_state */
 84	datap = state + 1;
 85
 86	/* datap is designed to be 16 byte aligned for better performance */
 87	WARN_ON(unlikely(!IS_ALIGNED((unsigned long)datap, 16)));
 88
 89	get_cpu_vector_context();
 90	riscv_v_vstate_save(&current->thread.vstate, regs);
 91	put_cpu_vector_context();
 92
 93	/* Copy everything of vstate but datap. */
 94	err = __copy_to_user(&state->v_state, &current->thread.vstate,
 95			     offsetof(struct __riscv_v_ext_state, datap));
 96	/* Copy the pointer datap itself. */
 97	err |= __put_user((__force void *)datap, &state->v_state.datap);
 98	/* Copy the whole vector content to user space datap. */
 99	err |= __copy_to_user(datap, current->thread.vstate.datap, riscv_v_vsize);
100	/* Copy magic to the user space after saving  all vector conetext */
101	err |= __put_user(RISCV_V_MAGIC, &hdr->magic);
102	err |= __put_user(riscv_v_sc_size, &hdr->size);
103	if (unlikely(err))
104		return err;
105
106	/* Only progress the sv_vec if everything has done successfully  */
107	*sc_vec += riscv_v_sc_size;
108	return 0;
109}
110
111/*
112 * Restore Vector extension context from the user's signal frame. This function
113 * assumes a valid extension header. So magic and size checking must be done by
114 * the caller.
115 */
116static long __restore_v_state(struct pt_regs *regs, void __user *sc_vec)
117{
118	long err;
119	struct __sc_riscv_v_state __user *state = sc_vec;
120	void __user *datap;
121
122	/* Copy everything of __sc_riscv_v_state except datap. */
123	err = __copy_from_user(&current->thread.vstate, &state->v_state,
124			       offsetof(struct __riscv_v_ext_state, datap));
125	if (unlikely(err))
126		return err;
127
128	/* Copy the pointer datap itself. */
129	err = __get_user(datap, &state->v_state.datap);
130	if (unlikely(err))
131		return err;
132	/*
133	 * Copy the whole vector content from user space datap. Use
134	 * copy_from_user to prevent information leak.
135	 */
136	err = copy_from_user(current->thread.vstate.datap, datap, riscv_v_vsize);
137	if (unlikely(err))
138		return err;
139
140	riscv_v_vstate_set_restore(current, regs);
141
142	return err;
143}
144#else
145#define save_v_state(task, regs) (0)
146#define __restore_v_state(task, regs) (0)
147#endif
148
149static long restore_sigcontext(struct pt_regs *regs,
150	struct sigcontext __user *sc)
151{
152	void __user *sc_ext_ptr = &sc->sc_extdesc.hdr;
153	__u32 rsvd;
154	long err;
155	/* sc_regs is structured the same as the start of pt_regs */
156	err = __copy_from_user(regs, &sc->sc_regs, sizeof(sc->sc_regs));
157	if (unlikely(err))
158		return err;
159
160	/* Restore the floating-point state. */
161	if (has_fpu()) {
162		err = restore_fp_state(regs, &sc->sc_fpregs);
163		if (unlikely(err))
164			return err;
165	}
166
167	/* Check the reserved word before extensions parsing */
168	err = __get_user(rsvd, &sc->sc_extdesc.reserved);
169	if (unlikely(err))
170		return err;
171	if (unlikely(rsvd))
172		return -EINVAL;
173
174	while (!err) {
175		__u32 magic, size;
176		struct __riscv_ctx_hdr __user *head = sc_ext_ptr;
177
178		err |= __get_user(magic, &head->magic);
179		err |= __get_user(size, &head->size);
180		if (unlikely(err))
181			return err;
182
183		sc_ext_ptr += sizeof(*head);
184		switch (magic) {
185		case END_MAGIC:
186			if (size != END_HDR_SIZE)
187				return -EINVAL;
188
189			return 0;
190		case RISCV_V_MAGIC:
191			if (!has_vector() || !riscv_v_vstate_query(regs) ||
192			    size != riscv_v_sc_size)
193				return -EINVAL;
194
195			err = __restore_v_state(regs, sc_ext_ptr);
196			break;
197		default:
198			return -EINVAL;
199		}
200		sc_ext_ptr = (void __user *)head + size;
201	}
202	return err;
203}
204
205static size_t get_rt_frame_size(bool cal_all)
206{
207	struct rt_sigframe __user *frame;
208	size_t frame_size;
209	size_t total_context_size = 0;
210
211	frame_size = sizeof(*frame);
212
213	if (has_vector()) {
214		if (cal_all || riscv_v_vstate_query(task_pt_regs(current)))
215			total_context_size += riscv_v_sc_size;
216	}
217	/*
218	 * Preserved a __riscv_ctx_hdr for END signal context header if an
219	 * extension uses __riscv_extra_ext_header
220	 */
221	if (total_context_size)
222		total_context_size += sizeof(struct __riscv_ctx_hdr);
223
224	frame_size += total_context_size;
225
226	frame_size = round_up(frame_size, 16);
227	return frame_size;
228}
229
230SYSCALL_DEFINE0(rt_sigreturn)
231{
232	struct pt_regs *regs = current_pt_regs();
233	struct rt_sigframe __user *frame;
234	struct task_struct *task;
235	sigset_t set;
236	size_t frame_size = get_rt_frame_size(false);
237
238	/* Always make any pending restarted system calls return -EINTR */
239	current->restart_block.fn = do_no_restart_syscall;
240
241	frame = (struct rt_sigframe __user *)regs->sp;
242
243	if (!access_ok(frame, frame_size))
244		goto badframe;
245
246	if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
247		goto badframe;
248
249	set_current_blocked(&set);
250
251	if (restore_sigcontext(regs, &frame->uc.uc_mcontext))
252		goto badframe;
253
254	if (restore_altstack(&frame->uc.uc_stack))
255		goto badframe;
256
257	regs->cause = -1UL;
258
259	return regs->a0;
260
261badframe:
262	task = current;
263	if (show_unhandled_signals) {
264		pr_info_ratelimited(
265			"%s[%d]: bad frame in %s: frame=%p pc=%p sp=%p\n",
266			task->comm, task_pid_nr(task), __func__,
267			frame, (void *)regs->epc, (void *)regs->sp);
268	}
269	force_sig(SIGSEGV);
270	return 0;
271}
272
273static long setup_sigcontext(struct rt_sigframe __user *frame,
274	struct pt_regs *regs)
275{
276	struct sigcontext __user *sc = &frame->uc.uc_mcontext;
277	struct __riscv_ctx_hdr __user *sc_ext_ptr = &sc->sc_extdesc.hdr;
278	long err;
279
280	/* sc_regs is structured the same as the start of pt_regs */
281	err = __copy_to_user(&sc->sc_regs, regs, sizeof(sc->sc_regs));
282	/* Save the floating-point state. */
283	if (has_fpu())
284		err |= save_fp_state(regs, &sc->sc_fpregs);
285	/* Save the vector state. */
286	if (has_vector() && riscv_v_vstate_query(regs))
287		err |= save_v_state(regs, (void __user **)&sc_ext_ptr);
288	/* Write zero to fp-reserved space and check it on restore_sigcontext */
289	err |= __put_user(0, &sc->sc_extdesc.reserved);
290	/* And put END __riscv_ctx_hdr at the end. */
291	err |= __put_user(END_MAGIC, &sc_ext_ptr->magic);
292	err |= __put_user(END_HDR_SIZE, &sc_ext_ptr->size);
293
294	return err;
295}
296
297static inline void __user *get_sigframe(struct ksignal *ksig,
298	struct pt_regs *regs, size_t framesize)
299{
300	unsigned long sp;
301	/* Default to using normal stack */
302	sp = regs->sp;
303
304	/*
305	 * If we are on the alternate signal stack and would overflow it, don't.
306	 * Return an always-bogus address instead so we will die with SIGSEGV.
307	 */
308	if (on_sig_stack(sp) && !likely(on_sig_stack(sp - framesize)))
309		return (void __user __force *)(-1UL);
310
311	/* This is the X/Open sanctioned signal stack switching. */
312	sp = sigsp(sp, ksig) - framesize;
313
314	/* Align the stack frame. */
315	sp &= ~0xfUL;
316
317	return (void __user *)sp;
318}
319
320static int setup_rt_frame(struct ksignal *ksig, sigset_t *set,
321	struct pt_regs *regs)
322{
323	struct rt_sigframe __user *frame;
324	long err = 0;
325	unsigned long __maybe_unused addr;
326	size_t frame_size = get_rt_frame_size(false);
327
328	frame = get_sigframe(ksig, regs, frame_size);
329	if (!access_ok(frame, frame_size))
330		return -EFAULT;
331
332	err |= copy_siginfo_to_user(&frame->info, &ksig->info);
333
334	/* Create the ucontext. */
335	err |= __put_user(0, &frame->uc.uc_flags);
336	err |= __put_user(NULL, &frame->uc.uc_link);
337	err |= __save_altstack(&frame->uc.uc_stack, regs->sp);
338	err |= setup_sigcontext(frame, regs);
339	err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
340	if (err)
341		return -EFAULT;
342
343	/* Set up to return from userspace. */
344#ifdef CONFIG_MMU
345	regs->ra = (unsigned long)VDSO_SYMBOL(
346		current->mm->context.vdso, rt_sigreturn);
347#else
348	/*
349	 * For the nommu case we don't have a VDSO.  Instead we push two
350	 * instructions to call the rt_sigreturn syscall onto the user stack.
351	 */
352	if (copy_to_user(&frame->sigreturn_code, __user_rt_sigreturn,
353			 sizeof(frame->sigreturn_code)))
354		return -EFAULT;
355
356	addr = (unsigned long)&frame->sigreturn_code;
357	/* Make sure the two instructions are pushed to icache. */
358	flush_icache_range(addr, addr + sizeof(frame->sigreturn_code));
359
360	regs->ra = addr;
361#endif /* CONFIG_MMU */
362
363	/*
364	 * Set up registers for signal handler.
365	 * Registers that we don't modify keep the value they had from
366	 * user-space at the time we took the signal.
367	 * We always pass siginfo and mcontext, regardless of SA_SIGINFO,
368	 * since some things rely on this (e.g. glibc's debug/segfault.c).
369	 */
370	regs->epc = (unsigned long)ksig->ka.sa.sa_handler;
371	regs->sp = (unsigned long)frame;
372	regs->a0 = ksig->sig;                     /* a0: signal number */
373	regs->a1 = (unsigned long)(&frame->info); /* a1: siginfo pointer */
374	regs->a2 = (unsigned long)(&frame->uc);   /* a2: ucontext pointer */
375
376#if DEBUG_SIG
377	pr_info("SIG deliver (%s:%d): sig=%d pc=%p ra=%p sp=%p\n",
378		current->comm, task_pid_nr(current), ksig->sig,
379		(void *)regs->epc, (void *)regs->ra, frame);
380#endif
381
382	return 0;
383}
384
385static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
386{
387	sigset_t *oldset = sigmask_to_save();
388	int ret;
389
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390	rseq_signal_deliver(ksig, regs);
391
392	/* Set up the stack frame */
393	if (is_compat_task())
394		ret = compat_setup_rt_frame(ksig, oldset, regs);
395	else
396		ret = setup_rt_frame(ksig, oldset, regs);
397
398	signal_setup_done(ret, ksig, 0);
399}
400
401void arch_do_signal_or_restart(struct pt_regs *regs)
402{
403	unsigned long continue_addr = 0, restart_addr = 0;
404	int retval = 0;
405	struct ksignal ksig;
406	bool syscall = (regs->cause == EXC_SYSCALL);
407
408	/* If we were from a system call, check for system call restarting */
409	if (syscall) {
410		continue_addr = regs->epc;
411		restart_addr = continue_addr - 4;
412		retval = regs->a0;
413
 
 
414		/* Avoid additional syscall restarting via ret_from_exception */
415		regs->cause = -1UL;
416
417		/*
418		 * Prepare for system call restart. We do this here so that a
419		 * debugger will see the already changed PC.
420		 */
421		switch (retval) {
422		case -ERESTARTNOHAND:
423		case -ERESTARTSYS:
424		case -ERESTARTNOINTR:
 
 
 
425		case -ERESTART_RESTARTBLOCK:
426			regs->a0 = regs->orig_a0;
427			regs->epc = restart_addr;
 
428			break;
429		}
430	}
431
432	/*
433	 * Get the signal to deliver. When running under ptrace, at this point
434	 * the debugger may change all of our registers.
435	 */
436	if (get_signal(&ksig)) {
437		/*
438		 * Depending on the signal settings, we may need to revert the
439		 * decision to restart the system call, but skip this if a
440		 * debugger has chosen to restart at a different PC.
441		 */
442		if (regs->epc == restart_addr &&
443		    (retval == -ERESTARTNOHAND ||
444		     retval == -ERESTART_RESTARTBLOCK ||
445		     (retval == -ERESTARTSYS &&
446		      !(ksig.ka.sa.sa_flags & SA_RESTART)))) {
447			regs->a0 = -EINTR;
448			regs->epc = continue_addr;
449		}
450
451		/* Actually deliver the signal */
452		handle_signal(&ksig, regs);
453		return;
454	}
455
456	/*
457	 * Handle restarting a different system call. As above, if a debugger
458	 * has chosen to restart at a different PC, ignore the restart.
459	 */
460	if (syscall && regs->epc == restart_addr && retval == -ERESTART_RESTARTBLOCK)
461		regs->a7 = __NR_restart_syscall;
462
463	/*
464	 * If there is no signal to deliver, we just put the saved
465	 * sigmask back.
466	 */
467	restore_saved_sigmask();
468}
469
470void init_rt_signal_env(void);
471void __init init_rt_signal_env(void)
472{
473	riscv_v_sc_size = sizeof(struct __riscv_ctx_hdr) +
474			  sizeof(struct __sc_riscv_v_state) + riscv_v_vsize;
475	/*
476	 * Determine the stack space required for guaranteed signal delivery.
477	 * The signal_minsigstksz will be populated into the AT_MINSIGSTKSZ entry
478	 * in the auxiliary array at process startup.
479	 */
480	signal_minsigstksz = get_rt_frame_size(true);
481}
482
483#ifdef CONFIG_DYNAMIC_SIGFRAME
484bool sigaltstack_size_valid(size_t ss_size)
485{
486	return ss_size > get_rt_frame_size(false);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
487}
488#endif /* CONFIG_DYNAMIC_SIGFRAME */
v6.2
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
  4 *  Chen Liqin <liqin.chen@sunplusct.com>
  5 *  Lennox Wu <lennox.wu@sunplusct.com>
  6 * Copyright (C) 2012 Regents of the University of California
  7 */
  8
  9#include <linux/compat.h>
 10#include <linux/signal.h>
 11#include <linux/uaccess.h>
 12#include <linux/syscalls.h>
 13#include <linux/resume_user_mode.h>
 14#include <linux/linkage.h>
 
 15
 16#include <asm/ucontext.h>
 17#include <asm/vdso.h>
 18#include <asm/signal.h>
 19#include <asm/signal32.h>
 20#include <asm/switch_to.h>
 
 21#include <asm/csr.h>
 
 
 
 22
 23extern u32 __user_rt_sigreturn[2];
 
 24
 25#define DEBUG_SIG 0
 26
 27struct rt_sigframe {
 28	struct siginfo info;
 29	struct ucontext uc;
 30#ifndef CONFIG_MMU
 31	u32 sigreturn_code[2];
 32#endif
 33};
 34
 35#ifdef CONFIG_FPU
 36static long restore_fp_state(struct pt_regs *regs,
 37			     union __riscv_fp_state __user *sc_fpregs)
 38{
 39	long err;
 40	struct __riscv_d_ext_state __user *state = &sc_fpregs->d;
 41	size_t i;
 42
 43	err = __copy_from_user(&current->thread.fstate, state, sizeof(*state));
 44	if (unlikely(err))
 45		return err;
 46
 47	fstate_restore(current, regs);
 48
 49	/* We support no other extension state at this time. */
 50	for (i = 0; i < ARRAY_SIZE(sc_fpregs->q.reserved); i++) {
 51		u32 value;
 52
 53		err = __get_user(value, &sc_fpregs->q.reserved[i]);
 54		if (unlikely(err))
 55			break;
 56		if (value != 0)
 57			return -EINVAL;
 58	}
 59
 60	return err;
 61}
 62
 63static long save_fp_state(struct pt_regs *regs,
 64			  union __riscv_fp_state __user *sc_fpregs)
 65{
 66	long err;
 67	struct __riscv_d_ext_state __user *state = &sc_fpregs->d;
 68	size_t i;
 69
 70	fstate_save(current, regs);
 71	err = __copy_to_user(state, &current->thread.fstate, sizeof(*state));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 72	if (unlikely(err))
 73		return err;
 74
 75	/* We support no other extension state at this time. */
 76	for (i = 0; i < ARRAY_SIZE(sc_fpregs->q.reserved); i++) {
 77		err = __put_user(0, &sc_fpregs->q.reserved[i]);
 78		if (unlikely(err))
 79			break;
 80	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 81
 82	return err;
 83}
 84#else
 85#define save_fp_state(task, regs) (0)
 86#define restore_fp_state(task, regs) (0)
 87#endif
 88
 89static long restore_sigcontext(struct pt_regs *regs,
 90	struct sigcontext __user *sc)
 91{
 
 
 92	long err;
 93	/* sc_regs is structured the same as the start of pt_regs */
 94	err = __copy_from_user(regs, &sc->sc_regs, sizeof(sc->sc_regs));
 
 
 
 95	/* Restore the floating-point state. */
 96	if (has_fpu())
 97		err |= restore_fp_state(regs, &sc->sc_fpregs);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 98	return err;
 99}
100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101SYSCALL_DEFINE0(rt_sigreturn)
102{
103	struct pt_regs *regs = current_pt_regs();
104	struct rt_sigframe __user *frame;
105	struct task_struct *task;
106	sigset_t set;
 
107
108	/* Always make any pending restarted system calls return -EINTR */
109	current->restart_block.fn = do_no_restart_syscall;
110
111	frame = (struct rt_sigframe __user *)regs->sp;
112
113	if (!access_ok(frame, sizeof(*frame)))
114		goto badframe;
115
116	if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
117		goto badframe;
118
119	set_current_blocked(&set);
120
121	if (restore_sigcontext(regs, &frame->uc.uc_mcontext))
122		goto badframe;
123
124	if (restore_altstack(&frame->uc.uc_stack))
125		goto badframe;
126
127	regs->cause = -1UL;
128
129	return regs->a0;
130
131badframe:
132	task = current;
133	if (show_unhandled_signals) {
134		pr_info_ratelimited(
135			"%s[%d]: bad frame in %s: frame=%p pc=%p sp=%p\n",
136			task->comm, task_pid_nr(task), __func__,
137			frame, (void *)regs->epc, (void *)regs->sp);
138	}
139	force_sig(SIGSEGV);
140	return 0;
141}
142
143static long setup_sigcontext(struct rt_sigframe __user *frame,
144	struct pt_regs *regs)
145{
146	struct sigcontext __user *sc = &frame->uc.uc_mcontext;
 
147	long err;
 
148	/* sc_regs is structured the same as the start of pt_regs */
149	err = __copy_to_user(&sc->sc_regs, regs, sizeof(sc->sc_regs));
150	/* Save the floating-point state. */
151	if (has_fpu())
152		err |= save_fp_state(regs, &sc->sc_fpregs);
 
 
 
 
 
 
 
 
 
153	return err;
154}
155
156static inline void __user *get_sigframe(struct ksignal *ksig,
157	struct pt_regs *regs, size_t framesize)
158{
159	unsigned long sp;
160	/* Default to using normal stack */
161	sp = regs->sp;
162
163	/*
164	 * If we are on the alternate signal stack and would overflow it, don't.
165	 * Return an always-bogus address instead so we will die with SIGSEGV.
166	 */
167	if (on_sig_stack(sp) && !likely(on_sig_stack(sp - framesize)))
168		return (void __user __force *)(-1UL);
169
170	/* This is the X/Open sanctioned signal stack switching. */
171	sp = sigsp(sp, ksig) - framesize;
172
173	/* Align the stack frame. */
174	sp &= ~0xfUL;
175
176	return (void __user *)sp;
177}
178
179static int setup_rt_frame(struct ksignal *ksig, sigset_t *set,
180	struct pt_regs *regs)
181{
182	struct rt_sigframe __user *frame;
183	long err = 0;
 
 
184
185	frame = get_sigframe(ksig, regs, sizeof(*frame));
186	if (!access_ok(frame, sizeof(*frame)))
187		return -EFAULT;
188
189	err |= copy_siginfo_to_user(&frame->info, &ksig->info);
190
191	/* Create the ucontext. */
192	err |= __put_user(0, &frame->uc.uc_flags);
193	err |= __put_user(NULL, &frame->uc.uc_link);
194	err |= __save_altstack(&frame->uc.uc_stack, regs->sp);
195	err |= setup_sigcontext(frame, regs);
196	err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
197	if (err)
198		return -EFAULT;
199
200	/* Set up to return from userspace. */
201#ifdef CONFIG_MMU
202	regs->ra = (unsigned long)VDSO_SYMBOL(
203		current->mm->context.vdso, rt_sigreturn);
204#else
205	/*
206	 * For the nommu case we don't have a VDSO.  Instead we push two
207	 * instructions to call the rt_sigreturn syscall onto the user stack.
208	 */
209	if (copy_to_user(&frame->sigreturn_code, __user_rt_sigreturn,
210			 sizeof(frame->sigreturn_code)))
211		return -EFAULT;
212	regs->ra = (unsigned long)&frame->sigreturn_code;
 
 
 
 
 
213#endif /* CONFIG_MMU */
214
215	/*
216	 * Set up registers for signal handler.
217	 * Registers that we don't modify keep the value they had from
218	 * user-space at the time we took the signal.
219	 * We always pass siginfo and mcontext, regardless of SA_SIGINFO,
220	 * since some things rely on this (e.g. glibc's debug/segfault.c).
221	 */
222	regs->epc = (unsigned long)ksig->ka.sa.sa_handler;
223	regs->sp = (unsigned long)frame;
224	regs->a0 = ksig->sig;                     /* a0: signal number */
225	regs->a1 = (unsigned long)(&frame->info); /* a1: siginfo pointer */
226	regs->a2 = (unsigned long)(&frame->uc);   /* a2: ucontext pointer */
227
228#if DEBUG_SIG
229	pr_info("SIG deliver (%s:%d): sig=%d pc=%p ra=%p sp=%p\n",
230		current->comm, task_pid_nr(current), ksig->sig,
231		(void *)regs->epc, (void *)regs->ra, frame);
232#endif
233
234	return 0;
235}
236
237static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
238{
239	sigset_t *oldset = sigmask_to_save();
240	int ret;
241
242	/* Are we from a system call? */
243	if (regs->cause == EXC_SYSCALL) {
244		/* Avoid additional syscall restarting via ret_from_exception */
245		regs->cause = -1UL;
246		/* If so, check system call restarting.. */
247		switch (regs->a0) {
248		case -ERESTART_RESTARTBLOCK:
249		case -ERESTARTNOHAND:
250			regs->a0 = -EINTR;
251			break;
252
253		case -ERESTARTSYS:
254			if (!(ksig->ka.sa.sa_flags & SA_RESTART)) {
255				regs->a0 = -EINTR;
256				break;
257			}
258			fallthrough;
259		case -ERESTARTNOINTR:
260                        regs->a0 = regs->orig_a0;
261			regs->epc -= 0x4;
262			break;
263		}
264	}
265
266	rseq_signal_deliver(ksig, regs);
267
268	/* Set up the stack frame */
269	if (is_compat_task())
270		ret = compat_setup_rt_frame(ksig, oldset, regs);
271	else
272		ret = setup_rt_frame(ksig, oldset, regs);
273
274	signal_setup_done(ret, ksig, 0);
275}
276
277static void do_signal(struct pt_regs *regs)
278{
 
 
279	struct ksignal ksig;
 
280
281	if (get_signal(&ksig)) {
282		/* Actually deliver the signal */
283		handle_signal(&ksig, regs);
284		return;
285	}
286
287	/* Did we come from a system call? */
288	if (regs->cause == EXC_SYSCALL) {
289		/* Avoid additional syscall restarting via ret_from_exception */
290		regs->cause = -1UL;
291
292		/* Restart the system call - no handlers present */
293		switch (regs->a0) {
 
 
 
294		case -ERESTARTNOHAND:
295		case -ERESTARTSYS:
296		case -ERESTARTNOINTR:
297                        regs->a0 = regs->orig_a0;
298			regs->epc -= 0x4;
299			break;
300		case -ERESTART_RESTARTBLOCK:
301                        regs->a0 = regs->orig_a0;
302			regs->a7 = __NR_restart_syscall;
303			regs->epc -= 0x4;
304			break;
305		}
306	}
307
308	/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309	 * If there is no signal to deliver, we just put the saved
310	 * sigmask back.
311	 */
312	restore_saved_sigmask();
313}
314
315/*
316 * Handle any pending work on the resume-to-userspace path, as indicated by
317 * _TIF_WORK_MASK. Entered from assembly with IRQs off.
318 */
319asmlinkage __visible void do_work_pending(struct pt_regs *regs,
320					  unsigned long thread_info_flags)
 
 
 
 
 
 
 
 
 
321{
322	do {
323		if (thread_info_flags & _TIF_NEED_RESCHED) {
324			schedule();
325		} else {
326			local_irq_enable();
327			if (thread_info_flags & _TIF_UPROBE)
328				uprobe_notify_resume(regs);
329			/* Handle pending signal delivery */
330			if (thread_info_flags & (_TIF_SIGPENDING |
331						 _TIF_NOTIFY_SIGNAL))
332				do_signal(regs);
333			if (thread_info_flags & _TIF_NOTIFY_RESUME)
334				resume_user_mode_work(regs);
335		}
336		local_irq_disable();
337		thread_info_flags = read_thread_flags();
338	} while (thread_info_flags & _TIF_WORK_MASK);
339}