1 // SPDX-License-Identifier: GPL-2.0-only
3 * Based on arch/arm/kernel/signal.c
5 * Copyright (C) 1995-2009 Russell King
6 * Copyright (C) 2012 ARM Ltd.
9 #include <linux/cache.h>
10 #include <linux/compat.h>
11 #include <linux/errno.h>
12 #include <linux/kernel.h>
13 #include <linux/signal.h>
14 #include <linux/personality.h>
15 #include <linux/freezer.h>
16 #include <linux/stddef.h>
17 #include <linux/uaccess.h>
18 #include <linux/sizes.h>
19 #include <linux/string.h>
20 #include <linux/tracehook.h>
21 #include <linux/ratelimit.h>
22 #include <linux/syscalls.h>
24 #include <asm/daifflags.h>
25 #include <asm/debug-monitors.h>
27 #include <asm/cacheflush.h>
28 #include <asm/ucontext.h>
29 #include <asm/unistd.h>
30 #include <asm/fpsimd.h>
31 #include <asm/ptrace.h>
32 #include <asm/signal32.h>
33 #include <asm/traps.h>
37 * Do a signal return; undo the signal stack. These are aligned to 128-bit.
49 struct rt_sigframe_user_layout
{
50 struct rt_sigframe __user
*sigframe
;
51 struct frame_record __user
*next_frame
;
53 unsigned long size
; /* size of allocated sigframe data */
54 unsigned long limit
; /* largest allowed size */
56 unsigned long fpsimd_offset
;
57 unsigned long esr_offset
;
58 unsigned long sve_offset
;
59 unsigned long extra_offset
;
60 unsigned long end_offset
;
63 #define BASE_SIGFRAME_SIZE round_up(sizeof(struct rt_sigframe), 16)
64 #define TERMINATOR_SIZE round_up(sizeof(struct _aarch64_ctx), 16)
65 #define EXTRA_CONTEXT_SIZE round_up(sizeof(struct extra_context), 16)
67 static void init_user_layout(struct rt_sigframe_user_layout
*user
)
69 const size_t reserved_size
=
70 sizeof(user
->sigframe
->uc
.uc_mcontext
.__reserved
);
72 memset(user
, 0, sizeof(*user
));
73 user
->size
= offsetof(struct rt_sigframe
, uc
.uc_mcontext
.__reserved
);
75 user
->limit
= user
->size
+ reserved_size
;
77 user
->limit
-= TERMINATOR_SIZE
;
78 user
->limit
-= EXTRA_CONTEXT_SIZE
;
79 /* Reserve space for extension and terminator ^ */
82 static size_t sigframe_size(struct rt_sigframe_user_layout
const *user
)
84 return round_up(max(user
->size
, sizeof(struct rt_sigframe
)), 16);
88 * Sanity limit on the approximate maximum size of signal frame we'll
89 * try to generate. Stack alignment padding and the frame record are
90 * not taken into account. This limit is not a guarantee and is
93 #define SIGFRAME_MAXSZ SZ_64K
95 static int __sigframe_alloc(struct rt_sigframe_user_layout
*user
,
96 unsigned long *offset
, size_t size
, bool extend
)
98 size_t padded_size
= round_up(size
, 16);
100 if (padded_size
> user
->limit
- user
->size
&&
101 !user
->extra_offset
&&
105 user
->limit
+= EXTRA_CONTEXT_SIZE
;
106 ret
= __sigframe_alloc(user
, &user
->extra_offset
,
107 sizeof(struct extra_context
), false);
109 user
->limit
-= EXTRA_CONTEXT_SIZE
;
113 /* Reserve space for the __reserved[] terminator */
114 user
->size
+= TERMINATOR_SIZE
;
117 * Allow expansion up to SIGFRAME_MAXSZ, ensuring space for
120 user
->limit
= SIGFRAME_MAXSZ
- TERMINATOR_SIZE
;
123 /* Still not enough space? Bad luck! */
124 if (padded_size
> user
->limit
- user
->size
)
127 *offset
= user
->size
;
128 user
->size
+= padded_size
;
134 * Allocate space for an optional record of <size> bytes in the user
135 * signal frame. The offset from the signal frame base address to the
136 * allocated block is assigned to *offset.
138 static int sigframe_alloc(struct rt_sigframe_user_layout
*user
,
139 unsigned long *offset
, size_t size
)
141 return __sigframe_alloc(user
, offset
, size
, true);
144 /* Allocate the null terminator record and prevent further allocations */
145 static int sigframe_alloc_end(struct rt_sigframe_user_layout
*user
)
149 /* Un-reserve the space reserved for the terminator: */
150 user
->limit
+= TERMINATOR_SIZE
;
152 ret
= sigframe_alloc(user
, &user
->end_offset
,
153 sizeof(struct _aarch64_ctx
));
157 /* Prevent further allocation: */
158 user
->limit
= user
->size
;
162 static void __user
*apply_user_offset(
163 struct rt_sigframe_user_layout
const *user
, unsigned long offset
)
165 char __user
*base
= (char __user
*)user
->sigframe
;
167 return base
+ offset
;
170 static int preserve_fpsimd_context(struct fpsimd_context __user
*ctx
)
172 struct user_fpsimd_state
const *fpsimd
=
173 ¤t
->thread
.uw
.fpsimd_state
;
176 /* copy the FP and status/control registers */
177 err
= __copy_to_user(ctx
->vregs
, fpsimd
->vregs
, sizeof(fpsimd
->vregs
));
178 __put_user_error(fpsimd
->fpsr
, &ctx
->fpsr
, err
);
179 __put_user_error(fpsimd
->fpcr
, &ctx
->fpcr
, err
);
181 /* copy the magic/size information */
182 __put_user_error(FPSIMD_MAGIC
, &ctx
->head
.magic
, err
);
183 __put_user_error(sizeof(struct fpsimd_context
), &ctx
->head
.size
, err
);
185 return err
? -EFAULT
: 0;
188 static int restore_fpsimd_context(struct fpsimd_context __user
*ctx
)
190 struct user_fpsimd_state fpsimd
;
194 /* check the magic/size information */
195 __get_user_error(magic
, &ctx
->head
.magic
, err
);
196 __get_user_error(size
, &ctx
->head
.size
, err
);
199 if (magic
!= FPSIMD_MAGIC
|| size
!= sizeof(struct fpsimd_context
))
202 /* copy the FP and status/control registers */
203 err
= __copy_from_user(fpsimd
.vregs
, ctx
->vregs
,
204 sizeof(fpsimd
.vregs
));
205 __get_user_error(fpsimd
.fpsr
, &ctx
->fpsr
, err
);
206 __get_user_error(fpsimd
.fpcr
, &ctx
->fpcr
, err
);
208 clear_thread_flag(TIF_SVE
);
210 /* load the hardware registers from the fpsimd_state structure */
212 fpsimd_update_current_state(&fpsimd
);
214 return err
? -EFAULT
: 0;
219 struct fpsimd_context __user
*fpsimd
;
220 struct sve_context __user
*sve
;
223 #ifdef CONFIG_ARM64_SVE
225 static int preserve_sve_context(struct sve_context __user
*ctx
)
228 u16 reserved
[ARRAY_SIZE(ctx
->__reserved
)];
229 unsigned int vl
= current
->thread
.sve_vl
;
232 if (test_thread_flag(TIF_SVE
))
233 vq
= sve_vq_from_vl(vl
);
235 memset(reserved
, 0, sizeof(reserved
));
237 __put_user_error(SVE_MAGIC
, &ctx
->head
.magic
, err
);
238 __put_user_error(round_up(SVE_SIG_CONTEXT_SIZE(vq
), 16),
239 &ctx
->head
.size
, err
);
240 __put_user_error(vl
, &ctx
->vl
, err
);
241 BUILD_BUG_ON(sizeof(ctx
->__reserved
) != sizeof(reserved
));
242 err
|= __copy_to_user(&ctx
->__reserved
, reserved
, sizeof(reserved
));
246 * This assumes that the SVE state has already been saved to
247 * the task struct by calling the function
248 * fpsimd_signal_preserve_current_state().
250 err
|= __copy_to_user((char __user
*)ctx
+ SVE_SIG_REGS_OFFSET
,
251 current
->thread
.sve_state
,
252 SVE_SIG_REGS_SIZE(vq
));
255 return err
? -EFAULT
: 0;
258 static int restore_sve_fpsimd_context(struct user_ctxs
*user
)
262 struct user_fpsimd_state fpsimd
;
263 struct sve_context sve
;
265 if (__copy_from_user(&sve
, user
->sve
, sizeof(sve
)))
268 if (sve
.vl
!= current
->thread
.sve_vl
)
271 if (sve
.head
.size
<= sizeof(*user
->sve
)) {
272 clear_thread_flag(TIF_SVE
);
276 vq
= sve_vq_from_vl(sve
.vl
);
278 if (sve
.head
.size
< SVE_SIG_CONTEXT_SIZE(vq
))
282 * Careful: we are about __copy_from_user() directly into
283 * thread.sve_state with preemption enabled, so protection is
284 * needed to prevent a racing context switch from writing stale
285 * registers back over the new data.
288 fpsimd_flush_task_state(current
);
289 /* From now, fpsimd_thread_switch() won't touch thread.sve_state */
292 err
= __copy_from_user(current
->thread
.sve_state
,
293 (char __user
const *)user
->sve
+
295 SVE_SIG_REGS_SIZE(vq
));
299 set_thread_flag(TIF_SVE
);
302 /* copy the FP and status/control registers */
303 /* restore_sigframe() already checked that user->fpsimd != NULL. */
304 err
= __copy_from_user(fpsimd
.vregs
, user
->fpsimd
->vregs
,
305 sizeof(fpsimd
.vregs
));
306 __get_user_error(fpsimd
.fpsr
, &user
->fpsimd
->fpsr
, err
);
307 __get_user_error(fpsimd
.fpcr
, &user
->fpsimd
->fpcr
, err
);
309 /* load the hardware registers from the fpsimd_state structure */
311 fpsimd_update_current_state(&fpsimd
);
313 return err
? -EFAULT
: 0;
316 #else /* ! CONFIG_ARM64_SVE */
318 /* Turn any non-optimised out attempts to use these into a link error: */
319 extern int preserve_sve_context(void __user
*ctx
);
320 extern int restore_sve_fpsimd_context(struct user_ctxs
*user
);
322 #endif /* ! CONFIG_ARM64_SVE */
325 static int parse_user_sigframe(struct user_ctxs
*user
,
326 struct rt_sigframe __user
*sf
)
328 struct sigcontext __user
*const sc
= &sf
->uc
.uc_mcontext
;
329 struct _aarch64_ctx __user
*head
;
330 char __user
*base
= (char __user
*)&sc
->__reserved
;
332 size_t limit
= sizeof(sc
->__reserved
);
333 bool have_extra_context
= false;
334 char const __user
*const sfp
= (char const __user
*)sf
;
339 if (!IS_ALIGNED((unsigned long)base
, 16))
345 char const __user
*userp
;
346 struct extra_context
const __user
*extra
;
349 struct _aarch64_ctx
const __user
*end
;
350 u32 end_magic
, end_size
;
352 if (limit
- offset
< sizeof(*head
))
355 if (!IS_ALIGNED(offset
, 16))
358 head
= (struct _aarch64_ctx __user
*)(base
+ offset
);
359 __get_user_error(magic
, &head
->magic
, err
);
360 __get_user_error(size
, &head
->size
, err
);
364 if (limit
- offset
< size
)
375 if (!system_supports_fpsimd())
380 if (size
< sizeof(*user
->fpsimd
))
383 user
->fpsimd
= (struct fpsimd_context __user
*)head
;
391 if (!system_supports_sve())
397 if (size
< sizeof(*user
->sve
))
400 user
->sve
= (struct sve_context __user
*)head
;
404 if (have_extra_context
)
407 if (size
< sizeof(*extra
))
410 userp
= (char const __user
*)head
;
412 extra
= (struct extra_context
const __user
*)userp
;
415 __get_user_error(extra_datap
, &extra
->datap
, err
);
416 __get_user_error(extra_size
, &extra
->size
, err
);
420 /* Check for the dummy terminator in __reserved[]: */
422 if (limit
- offset
- size
< TERMINATOR_SIZE
)
425 end
= (struct _aarch64_ctx
const __user
*)userp
;
426 userp
+= TERMINATOR_SIZE
;
428 __get_user_error(end_magic
, &end
->magic
, err
);
429 __get_user_error(end_size
, &end
->size
, err
);
433 if (end_magic
|| end_size
)
436 /* Prevent looping/repeated parsing of extra_context */
437 have_extra_context
= true;
439 base
= (__force
void __user
*)extra_datap
;
440 if (!IS_ALIGNED((unsigned long)base
, 16))
443 if (!IS_ALIGNED(extra_size
, 16))
449 /* Reject "unreasonably large" frames: */
450 if (extra_size
> sfp
+ SIGFRAME_MAXSZ
- userp
)
454 * Ignore trailing terminator in __reserved[]
455 * and start parsing extra data:
460 if (!access_ok(base
, limit
))
469 if (size
< sizeof(*head
))
472 if (limit
- offset
< size
)
485 static int restore_sigframe(struct pt_regs
*regs
,
486 struct rt_sigframe __user
*sf
)
490 struct user_ctxs user
;
492 err
= __copy_from_user(&set
, &sf
->uc
.uc_sigmask
, sizeof(set
));
494 set_current_blocked(&set
);
496 for (i
= 0; i
< 31; i
++)
497 __get_user_error(regs
->regs
[i
], &sf
->uc
.uc_mcontext
.regs
[i
],
499 __get_user_error(regs
->sp
, &sf
->uc
.uc_mcontext
.sp
, err
);
500 __get_user_error(regs
->pc
, &sf
->uc
.uc_mcontext
.pc
, err
);
501 __get_user_error(regs
->pstate
, &sf
->uc
.uc_mcontext
.pstate
, err
);
504 * Avoid sys_rt_sigreturn() restarting.
506 forget_syscall(regs
);
508 err
|= !valid_user_regs(®s
->user_regs
, current
);
510 err
= parse_user_sigframe(&user
, sf
);
512 if (err
== 0 && system_supports_fpsimd()) {
517 if (!system_supports_sve())
520 err
= restore_sve_fpsimd_context(&user
);
522 err
= restore_fpsimd_context(user
.fpsimd
);
529 SYSCALL_DEFINE0(rt_sigreturn
)
531 struct pt_regs
*regs
= current_pt_regs();
532 struct rt_sigframe __user
*frame
;
534 /* Always make any pending restarted system calls return -EINTR */
535 current
->restart_block
.fn
= do_no_restart_syscall
;
538 * Since we stacked the signal on a 128-bit boundary, then 'sp' should
539 * be word aligned here.
544 frame
= (struct rt_sigframe __user
*)regs
->sp
;
546 if (!access_ok(frame
, sizeof (*frame
)))
549 if (restore_sigframe(regs
, frame
))
552 if (restore_altstack(&frame
->uc
.uc_stack
))
555 return regs
->regs
[0];
558 arm64_notify_segfault(regs
->sp
);
563 * Determine the layout of optional records in the signal frame
565 * add_all: if true, lays out the biggest possible signal frame for
566 * this task; otherwise, generates a layout for the current state
569 static int setup_sigframe_layout(struct rt_sigframe_user_layout
*user
,
574 err
= sigframe_alloc(user
, &user
->fpsimd_offset
,
575 sizeof(struct fpsimd_context
));
579 /* fault information, if valid */
580 if (add_all
|| current
->thread
.fault_code
) {
581 err
= sigframe_alloc(user
, &user
->esr_offset
,
582 sizeof(struct esr_context
));
587 if (system_supports_sve()) {
590 if (add_all
|| test_thread_flag(TIF_SVE
)) {
594 vl
= current
->thread
.sve_vl
;
596 vq
= sve_vq_from_vl(vl
);
599 err
= sigframe_alloc(user
, &user
->sve_offset
,
600 SVE_SIG_CONTEXT_SIZE(vq
));
605 return sigframe_alloc_end(user
);
608 static int setup_sigframe(struct rt_sigframe_user_layout
*user
,
609 struct pt_regs
*regs
, sigset_t
*set
)
612 struct rt_sigframe __user
*sf
= user
->sigframe
;
614 /* set up the stack frame for unwinding */
615 __put_user_error(regs
->regs
[29], &user
->next_frame
->fp
, err
);
616 __put_user_error(regs
->regs
[30], &user
->next_frame
->lr
, err
);
618 for (i
= 0; i
< 31; i
++)
619 __put_user_error(regs
->regs
[i
], &sf
->uc
.uc_mcontext
.regs
[i
],
621 __put_user_error(regs
->sp
, &sf
->uc
.uc_mcontext
.sp
, err
);
622 __put_user_error(regs
->pc
, &sf
->uc
.uc_mcontext
.pc
, err
);
623 __put_user_error(regs
->pstate
, &sf
->uc
.uc_mcontext
.pstate
, err
);
625 __put_user_error(current
->thread
.fault_address
, &sf
->uc
.uc_mcontext
.fault_address
, err
);
627 err
|= __copy_to_user(&sf
->uc
.uc_sigmask
, set
, sizeof(*set
));
629 if (err
== 0 && system_supports_fpsimd()) {
630 struct fpsimd_context __user
*fpsimd_ctx
=
631 apply_user_offset(user
, user
->fpsimd_offset
);
632 err
|= preserve_fpsimd_context(fpsimd_ctx
);
635 /* fault information, if valid */
636 if (err
== 0 && user
->esr_offset
) {
637 struct esr_context __user
*esr_ctx
=
638 apply_user_offset(user
, user
->esr_offset
);
640 __put_user_error(ESR_MAGIC
, &esr_ctx
->head
.magic
, err
);
641 __put_user_error(sizeof(*esr_ctx
), &esr_ctx
->head
.size
, err
);
642 __put_user_error(current
->thread
.fault_code
, &esr_ctx
->esr
, err
);
645 /* Scalable Vector Extension state, if present */
646 if (system_supports_sve() && err
== 0 && user
->sve_offset
) {
647 struct sve_context __user
*sve_ctx
=
648 apply_user_offset(user
, user
->sve_offset
);
649 err
|= preserve_sve_context(sve_ctx
);
652 if (err
== 0 && user
->extra_offset
) {
653 char __user
*sfp
= (char __user
*)user
->sigframe
;
655 apply_user_offset(user
, user
->extra_offset
);
657 struct extra_context __user
*extra
;
658 struct _aarch64_ctx __user
*end
;
662 extra
= (struct extra_context __user
*)userp
;
663 userp
+= EXTRA_CONTEXT_SIZE
;
665 end
= (struct _aarch64_ctx __user
*)userp
;
666 userp
+= TERMINATOR_SIZE
;
669 * extra_datap is just written to the signal frame.
670 * The value gets cast back to a void __user *
673 extra_datap
= (__force u64
)userp
;
674 extra_size
= sfp
+ round_up(user
->size
, 16) - userp
;
676 __put_user_error(EXTRA_MAGIC
, &extra
->head
.magic
, err
);
677 __put_user_error(EXTRA_CONTEXT_SIZE
, &extra
->head
.size
, err
);
678 __put_user_error(extra_datap
, &extra
->datap
, err
);
679 __put_user_error(extra_size
, &extra
->size
, err
);
681 /* Add the terminator */
682 __put_user_error(0, &end
->magic
, err
);
683 __put_user_error(0, &end
->size
, err
);
686 /* set the "end" magic */
688 struct _aarch64_ctx __user
*end
=
689 apply_user_offset(user
, user
->end_offset
);
691 __put_user_error(0, &end
->magic
, err
);
692 __put_user_error(0, &end
->size
, err
);
698 static int get_sigframe(struct rt_sigframe_user_layout
*user
,
699 struct ksignal
*ksig
, struct pt_regs
*regs
)
701 unsigned long sp
, sp_top
;
704 init_user_layout(user
);
705 err
= setup_sigframe_layout(user
, false);
709 sp
= sp_top
= sigsp(regs
->sp
, ksig
);
711 sp
= round_down(sp
- sizeof(struct frame_record
), 16);
712 user
->next_frame
= (struct frame_record __user
*)sp
;
714 sp
= round_down(sp
, 16) - sigframe_size(user
);
715 user
->sigframe
= (struct rt_sigframe __user
*)sp
;
718 * Check that we can actually write to the signal frame.
720 if (!access_ok(user
->sigframe
, sp_top
- sp
))
726 static void setup_return(struct pt_regs
*regs
, struct k_sigaction
*ka
,
727 struct rt_sigframe_user_layout
*user
, int usig
)
729 __sigrestore_t sigtramp
;
731 regs
->regs
[0] = usig
;
732 regs
->sp
= (unsigned long)user
->sigframe
;
733 regs
->regs
[29] = (unsigned long)&user
->next_frame
->fp
;
734 regs
->pc
= (unsigned long)ka
->sa
.sa_handler
;
737 * Signal delivery is a (wacky) indirect function call in
738 * userspace, so simulate the same setting of BTYPE as a BLR
739 * <register containing the signal handler entry point>.
740 * Signal delivery to a location in a PROT_BTI guarded page
741 * that is not a function entry point will now trigger a
742 * SIGILL in userspace.
744 * If the signal handler entry point is not in a PROT_BTI
745 * guarded page, this is harmless.
747 if (system_supports_bti()) {
748 regs
->pstate
&= ~PSR_BTYPE_MASK
;
749 regs
->pstate
|= PSR_BTYPE_C
;
752 /* TCO (Tag Check Override) always cleared for signal handlers */
753 regs
->pstate
&= ~PSR_TCO_BIT
;
755 if (ka
->sa
.sa_flags
& SA_RESTORER
)
756 sigtramp
= ka
->sa
.sa_restorer
;
758 sigtramp
= VDSO_SYMBOL(current
->mm
->context
.vdso
, sigtramp
);
760 regs
->regs
[30] = (unsigned long)sigtramp
;
763 static int setup_rt_frame(int usig
, struct ksignal
*ksig
, sigset_t
*set
,
764 struct pt_regs
*regs
)
766 struct rt_sigframe_user_layout user
;
767 struct rt_sigframe __user
*frame
;
770 fpsimd_signal_preserve_current_state();
772 if (get_sigframe(&user
, ksig
, regs
))
775 frame
= user
.sigframe
;
777 __put_user_error(0, &frame
->uc
.uc_flags
, err
);
778 __put_user_error(NULL
, &frame
->uc
.uc_link
, err
);
780 err
|= __save_altstack(&frame
->uc
.uc_stack
, regs
->sp
);
781 err
|= setup_sigframe(&user
, regs
, set
);
783 setup_return(regs
, &ksig
->ka
, &user
, usig
);
784 if (ksig
->ka
.sa
.sa_flags
& SA_SIGINFO
) {
785 err
|= copy_siginfo_to_user(&frame
->info
, &ksig
->info
);
786 regs
->regs
[1] = (unsigned long)&frame
->info
;
787 regs
->regs
[2] = (unsigned long)&frame
->uc
;
794 static void setup_restart_syscall(struct pt_regs
*regs
)
796 if (is_compat_task())
797 compat_setup_restart_syscall(regs
);
799 regs
->regs
[8] = __NR_restart_syscall
;
803 * OK, we're invoking a handler
805 static void handle_signal(struct ksignal
*ksig
, struct pt_regs
*regs
)
807 sigset_t
*oldset
= sigmask_to_save();
808 int usig
= ksig
->sig
;
811 rseq_signal_deliver(ksig
, regs
);
814 * Set up the stack frame
816 if (is_compat_task()) {
817 if (ksig
->ka
.sa
.sa_flags
& SA_SIGINFO
)
818 ret
= compat_setup_rt_frame(usig
, ksig
, oldset
, regs
);
820 ret
= compat_setup_frame(usig
, ksig
, oldset
, regs
);
822 ret
= setup_rt_frame(usig
, ksig
, oldset
, regs
);
826 * Check that the resulting registers are actually sane.
828 ret
|= !valid_user_regs(®s
->user_regs
, current
);
830 /* Step into the signal handler if we are stepping */
831 signal_setup_done(ret
, ksig
, test_thread_flag(TIF_SINGLESTEP
));
835 * Note that 'init' is a special process: it doesn't get signals it doesn't
836 * want to handle. Thus you cannot kill init even with a SIGKILL even by
839 * Note that we go through the signals twice: once to check the signals that
840 * the kernel can handle, and then we build all the user-level signal handling
841 * stack-frames in one go after that.
843 static void do_signal(struct pt_regs
*regs
)
845 unsigned long continue_addr
= 0, restart_addr
= 0;
848 bool syscall
= in_syscall(regs
);
851 * If we were from a system call, check for system call restarting...
854 continue_addr
= regs
->pc
;
855 restart_addr
= continue_addr
- (compat_thumb_mode(regs
) ? 2 : 4);
856 retval
= regs
->regs
[0];
859 * Avoid additional syscall restarting via ret_to_user.
861 forget_syscall(regs
);
864 * Prepare for system call restart. We do this here so that a
865 * debugger will see the already changed PC.
868 case -ERESTARTNOHAND
:
870 case -ERESTARTNOINTR
:
871 case -ERESTART_RESTARTBLOCK
:
872 regs
->regs
[0] = regs
->orig_x0
;
873 regs
->pc
= restart_addr
;
879 * Get the signal to deliver. When running under ptrace, at this point
880 * the debugger may change all of our registers.
882 if (get_signal(&ksig
)) {
884 * Depending on the signal settings, we may need to revert the
885 * decision to restart the system call, but skip this if a
886 * debugger has chosen to restart at a different PC.
888 if (regs
->pc
== restart_addr
&&
889 (retval
== -ERESTARTNOHAND
||
890 retval
== -ERESTART_RESTARTBLOCK
||
891 (retval
== -ERESTARTSYS
&&
892 !(ksig
.ka
.sa
.sa_flags
& SA_RESTART
)))) {
893 regs
->regs
[0] = -EINTR
;
894 regs
->pc
= continue_addr
;
897 handle_signal(&ksig
, regs
);
902 * Handle restarting a different system call. As above, if a debugger
903 * has chosen to restart at a different PC, ignore the restart.
905 if (syscall
&& regs
->pc
== restart_addr
) {
906 if (retval
== -ERESTART_RESTARTBLOCK
)
907 setup_restart_syscall(regs
);
908 user_rewind_single_step(current
);
911 restore_saved_sigmask();
914 asmlinkage
void do_notify_resume(struct pt_regs
*regs
,
915 unsigned long thread_flags
)
918 * The assembly code enters us with IRQs off, but it hasn't
919 * informed the tracing code of that for efficiency reasons.
920 * Update the trace code with the current status.
922 trace_hardirqs_off();
925 if (thread_flags
& _TIF_NEED_RESCHED
) {
926 /* Unmask Debug and SError for the next task */
927 local_daif_restore(DAIF_PROCCTX_NOIRQ
);
931 local_daif_restore(DAIF_PROCCTX
);
933 if (thread_flags
& _TIF_UPROBE
)
934 uprobe_notify_resume(regs
);
936 if (thread_flags
& _TIF_MTE_ASYNC_FAULT
) {
937 clear_thread_flag(TIF_MTE_ASYNC_FAULT
);
938 send_sig_fault(SIGSEGV
, SEGV_MTEAERR
,
939 (void __user
*)NULL
, current
);
942 if (thread_flags
& (_TIF_SIGPENDING
| _TIF_NOTIFY_SIGNAL
))
945 if (thread_flags
& _TIF_NOTIFY_RESUME
) {
946 tracehook_notify_resume(regs
);
947 rseq_handle_notify_resume(NULL
, regs
);
950 if (thread_flags
& _TIF_FOREIGN_FPSTATE
)
951 fpsimd_restore_current_state();
955 thread_flags
= READ_ONCE(current_thread_info()->flags
);
956 } while (thread_flags
& _TIF_WORK_MASK
);
959 unsigned long __ro_after_init signal_minsigstksz
;
962 * Determine the stack space required for guaranteed signal devliery.
963 * This function is used to populate AT_MINSIGSTKSZ at process startup.
964 * cpufeatures setup is assumed to be complete.
966 void __init
minsigstksz_setup(void)
968 struct rt_sigframe_user_layout user
;
970 init_user_layout(&user
);
973 * If this fails, SIGFRAME_MAXSZ needs to be enlarged. It won't
974 * be big enough, but it's our best guess:
976 if (WARN_ON(setup_sigframe_layout(&user
, true)))
979 signal_minsigstksz
= sigframe_size(&user
) +
980 round_up(sizeof(struct frame_record
), 16) +
981 16; /* max alignment padding */