License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2021-12-08 18:06:52 +08:00
|
|
|
* PA-RISC architecture-specific signal handling support.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2000 David Huggins-Daines <dhd@debian.org>
|
|
|
|
* Copyright (C) 2000 Linuxcare, Inc.
|
2021-12-08 18:06:52 +08:00
|
|
|
* Copyright (C) 2000-2022 Helge Deller <deller@gmx.de>
|
|
|
|
* Copyright (C) 2022 John David Anglin <dave.anglin@bell.net>
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Based on the ia64, i386, and alpha versions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/sched.h>
|
2017-02-09 01:51:35 +08:00
|
|
|
#include <linux/sched/debug.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/wait.h>
|
|
|
|
#include <linux/ptrace.h>
|
2022-02-10 02:20:45 +08:00
|
|
|
#include <linux/resume_user_mode.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/unistd.h>
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/compat.h>
|
|
|
|
#include <linux/elf.h>
|
|
|
|
#include <asm/ucontext.h>
|
|
|
|
#include <asm/rt_sigframe.h>
|
2016-12-25 03:46:01 +08:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/cacheflush.h>
|
2005-09-10 02:57:26 +08:00
|
|
|
#include <asm/asm-offsets.h>
|
2021-12-08 18:06:52 +08:00
|
|
|
#include <asm/vdso.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
#include "signal32.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEBUG_SIG 0
|
|
|
|
#define DEBUG_SIG_LEVEL 2
|
|
|
|
|
|
|
|
#if DEBUG_SIG
|
|
|
|
#define DBG(LEVEL, ...) \
|
|
|
|
((DEBUG_SIG_LEVEL >= LEVEL) \
|
|
|
|
? printk(__VA_ARGS__) : (void) 0)
|
|
|
|
#else
|
|
|
|
#define DBG(LEVEL, ...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* gcc will complain if a pointer is cast to an integer of different
|
|
|
|
* size. If you really need to do this (and we do for an ELF32 user
|
|
|
|
* application in an ELF64 kernel) then you have to do a cast to an
|
|
|
|
* integer of the same size first. The A() macro accomplishes
|
|
|
|
* this. */
|
|
|
|
#define A(__x) ((unsigned long)(__x))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do a signal return - restore sigcontext.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static long
|
|
|
|
restore_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
long err = 0;
|
|
|
|
|
|
|
|
err |= __copy_from_user(regs->gr, sc->sc_gr, sizeof(regs->gr));
|
|
|
|
err |= __copy_from_user(regs->fr, sc->sc_fr, sizeof(regs->fr));
|
|
|
|
err |= __copy_from_user(regs->iaoq, sc->sc_iaoq, sizeof(regs->iaoq));
|
|
|
|
err |= __copy_from_user(regs->iasq, sc->sc_iasq, sizeof(regs->iasq));
|
|
|
|
err |= __get_user(regs->sar, &sc->sc_sar);
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(2, "%s: iaoq is %#lx / %#lx\n",
|
|
|
|
__func__, regs->iaoq[0], regs->iaoq[1]);
|
|
|
|
DBG(2, "%s: r28 is %ld\n", __func__, regs->gr[28]);
|
2005-04-17 06:20:36 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sys_rt_sigreturn(struct pt_regs *regs, int in_syscall)
|
|
|
|
{
|
|
|
|
struct rt_sigframe __user *frame;
|
|
|
|
sigset_t set;
|
|
|
|
unsigned long usp = (regs->gr[30] & ~(0x01UL));
|
|
|
|
unsigned long sigframe_size = PARISC_RT_SIGFRAME_SIZE;
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2005-04-17 06:20:36 +08:00
|
|
|
struct compat_rt_sigframe __user * compat_frame;
|
|
|
|
|
2006-06-17 03:10:02 +08:00
|
|
|
if (is_compat_task())
|
2005-04-17 06:20:36 +08:00
|
|
|
sigframe_size = PARISC_RT_SIGFRAME_SIZE32;
|
|
|
|
#endif
|
|
|
|
|
2015-02-13 07:01:14 +08:00
|
|
|
current->restart_block.fn = do_no_restart_syscall;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Unwind the user stack to get the rt_sigframe structure. */
|
|
|
|
frame = (struct rt_sigframe __user *)
|
|
|
|
(usp - sigframe_size);
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(2, "%s: frame is %p pid %d\n", __func__, frame, task_pid_nr(current));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-05-19 12:29:22 +08:00
|
|
|
regs->orig_r28 = 1; /* no restarts for sigreturn */
|
|
|
|
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2005-04-17 06:20:36 +08:00
|
|
|
compat_frame = (struct compat_rt_sigframe __user *)frame;
|
|
|
|
|
2006-06-17 03:10:02 +08:00
|
|
|
if (is_compat_task()) {
|
2017-09-05 00:14:28 +08:00
|
|
|
if (get_compat_sigset(&set, &compat_frame->uc.uc_sigmask))
|
2005-04-17 06:20:36 +08:00
|
|
|
goto give_sigsegv;
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
|
|
|
|
goto give_sigsegv;
|
|
|
|
}
|
|
|
|
|
2012-05-11 08:58:58 +08:00
|
|
|
set_current_blocked(&set);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Good thing we saved the old gr[30], eh? */
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2006-06-17 03:10:02 +08:00
|
|
|
if (is_compat_task()) {
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: compat_frame->uc.uc_mcontext 0x%p\n",
|
|
|
|
__func__, &compat_frame->uc.uc_mcontext);
|
2005-04-17 06:20:36 +08:00
|
|
|
// FIXME: Load upper half from register file
|
|
|
|
if (restore_sigcontext32(&compat_frame->uc.uc_mcontext,
|
|
|
|
&compat_frame->regs, regs))
|
|
|
|
goto give_sigsegv;
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: usp %#08lx stack 0x%p\n",
|
|
|
|
__func__, usp, &compat_frame->uc.uc_stack);
|
2012-12-23 16:22:04 +08:00
|
|
|
if (compat_restore_altstack(&compat_frame->uc.uc_stack))
|
2005-04-17 06:20:36 +08:00
|
|
|
goto give_sigsegv;
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: frame->uc.uc_mcontext 0x%p\n",
|
|
|
|
__func__, &frame->uc.uc_mcontext);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (restore_sigcontext(&frame->uc.uc_mcontext, regs))
|
|
|
|
goto give_sigsegv;
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: usp %#08lx stack 0x%p\n",
|
|
|
|
__func__, usp, &frame->uc.uc_stack);
|
2012-12-23 16:22:04 +08:00
|
|
|
if (restore_altstack(&frame->uc.uc_stack))
|
2005-04-17 06:20:36 +08:00
|
|
|
goto give_sigsegv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* If we are on the syscall path IAOQ will not be restored, and
|
|
|
|
* if we are on the interrupt path we must not corrupt gr31.
|
|
|
|
*/
|
|
|
|
if (in_syscall)
|
|
|
|
regs->gr[31] = regs->iaoq[0];
|
2021-12-08 18:06:52 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
give_sigsegv:
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: Sending SIGSEGV\n", __func__);
|
2019-05-23 23:17:27 +08:00
|
|
|
force_sig(SIGSEGV);
|
2005-04-17 06:20:36 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up a signal frame.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline void __user *
|
|
|
|
get_sigframe(struct k_sigaction *ka, unsigned long sp, size_t frame_size)
|
|
|
|
{
|
|
|
|
/*FIXME: ELF32 vs. ELF64 has different frame_size, but since we
|
|
|
|
don't use the parameter it doesn't matter */
|
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: ka = %#lx, sp = %#lx, frame_size = %zu\n",
|
|
|
|
__func__, (unsigned long)ka, sp, frame_size);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-11-26 05:39:00 +08:00
|
|
|
/* Align alternate stack and reserve 64 bytes for the signal
|
|
|
|
handler's frame marker. */
|
2006-06-23 17:05:36 +08:00
|
|
|
if ((ka->sa.sa_flags & SA_ONSTACK) != 0 && ! sas_ss_flags(sp))
|
2012-11-26 05:39:00 +08:00
|
|
|
sp = (current->sas_ss_sp + 0x7f) & ~0x3f; /* Stacks grow up! */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: Returning sp = %#lx\n", __func__, (unsigned long)sp);
|
2005-04-17 06:20:36 +08:00
|
|
|
return (void __user *) sp; /* Stacks grow up. Fun. */
|
|
|
|
}
|
|
|
|
|
|
|
|
static long
|
|
|
|
setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs, int in_syscall)
|
|
|
|
|
|
|
|
{
|
|
|
|
unsigned long flags = 0;
|
|
|
|
long err = 0;
|
|
|
|
|
|
|
|
if (on_sig_stack((unsigned long) sc))
|
|
|
|
flags |= PARISC_SC_FLAG_ONSTACK;
|
|
|
|
if (in_syscall) {
|
|
|
|
flags |= PARISC_SC_FLAG_IN_SYSCALL;
|
|
|
|
/* regs->iaoq is undefined in the syscall return path */
|
|
|
|
err |= __put_user(regs->gr[31], &sc->sc_iaoq[0]);
|
|
|
|
err |= __put_user(regs->gr[31]+4, &sc->sc_iaoq[1]);
|
|
|
|
err |= __put_user(regs->sr[3], &sc->sc_iasq[0]);
|
|
|
|
err |= __put_user(regs->sr[3], &sc->sc_iasq[1]);
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: iaoq %#lx / %#lx (in syscall)\n",
|
|
|
|
__func__, regs->gr[31], regs->gr[31]+4);
|
2005-04-17 06:20:36 +08:00
|
|
|
} else {
|
|
|
|
err |= __copy_to_user(sc->sc_iaoq, regs->iaoq, sizeof(regs->iaoq));
|
|
|
|
err |= __copy_to_user(sc->sc_iasq, regs->iasq, sizeof(regs->iasq));
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: iaoq %#lx / %#lx (not in syscall)\n",
|
|
|
|
__func__, regs->iaoq[0], regs->iaoq[1]);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
err |= __put_user(flags, &sc->sc_flags);
|
|
|
|
err |= __copy_to_user(sc->sc_gr, regs->gr, sizeof(regs->gr));
|
|
|
|
err |= __copy_to_user(sc->sc_fr, regs->fr, sizeof(regs->fr));
|
|
|
|
err |= __put_user(regs->sar, &sc->sc_sar);
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: r28 is %ld\n", __func__, regs->gr[28]);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static long
|
2013-10-07 20:34:10 +08:00
|
|
|
setup_rt_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs,
|
|
|
|
int in_syscall)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct rt_sigframe __user *frame;
|
|
|
|
unsigned long rp, usp;
|
|
|
|
unsigned long haddr, sigframe_size;
|
2021-12-08 18:06:52 +08:00
|
|
|
unsigned long start;
|
2005-04-17 06:20:36 +08:00
|
|
|
int err = 0;
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2005-04-17 06:20:36 +08:00
|
|
|
struct compat_rt_sigframe __user * compat_frame;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
usp = (regs->gr[30] & ~(0x01UL));
|
2021-09-05 17:53:32 +08:00
|
|
|
sigframe_size = PARISC_RT_SIGFRAME_SIZE;
|
parisc: fix crash with signals and alloca
I was debugging some crashes on parisc and I found out that there is a
crash possibility if a function using alloca is interrupted by a signal.
The reason for the crash is that the gcc alloca implementation leaves
garbage in the upper 32 bits of the sp register. This normally doesn't
matter (the upper bits are ignored because the PSW W-bit is clear),
however the signal delivery routine in the kernel uses full 64 bits of sp
and it fails with -EFAULT if the upper 32 bits are not zero.
I created this program that demonstrates the problem:
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <alloca.h>
static __attribute__((noinline,noclone)) void aa(int *size)
{
void * volatile p = alloca(-*size);
while (1) ;
}
static void handler(int sig)
{
write(1, "signal delivered\n", 17);
_exit(0);
}
int main(void)
{
int size = -0x100;
signal(SIGALRM, handler);
alarm(1);
aa(&size);
}
If you compile it with optimizations, it will crash.
The "aa" function has this disassembly:
000106a0 <aa>:
106a0: 08 03 02 41 copy r3,r1
106a4: 08 1e 02 43 copy sp,r3
106a8: 6f c1 00 80 stw,ma r1,40(sp)
106ac: 37 dc 3f c1 ldo -20(sp),ret0
106b0: 0c 7c 12 90 stw ret0,8(r3)
106b4: 0f 40 10 9c ldw 0(r26),ret0 ; ret0 = 0x00000000FFFFFF00
106b8: 97 9c 00 7e subi 3f,ret0,ret0 ; ret0 = 0xFFFFFFFF0000013F
106bc: d7 80 1c 1a depwi 0,31,6,ret0 ; ret0 = 0xFFFFFFFF00000100
106c0: 0b 9e 0a 1e add,l sp,ret0,sp ; sp = 0xFFFFFFFFxxxxxxxx
106c4: e8 1f 1f f7 b,l,n 106c4 <aa+0x24>,r0
This patch fixes the bug by truncating the "usp" variable to 32 bits.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Cc: stable@vger.kernel.org
Signed-off-by: Helge Deller <deller@gmx.de>
2021-08-30 17:42:27 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
if (is_compat_task()) {
|
|
|
|
/* The gcc alloca implementation leaves garbage in the upper 32 bits of sp */
|
|
|
|
usp = (compat_uint_t)usp;
|
2021-09-05 17:53:32 +08:00
|
|
|
sigframe_size = PARISC_RT_SIGFRAME_SIZE32;
|
parisc: fix crash with signals and alloca
I was debugging some crashes on parisc and I found out that there is a
crash possibility if a function using alloca is interrupted by a signal.
The reason for the crash is that the gcc alloca implementation leaves
garbage in the upper 32 bits of the sp register. This normally doesn't
matter (the upper bits are ignored because the PSW W-bit is clear),
however the signal delivery routine in the kernel uses full 64 bits of sp
and it fails with -EFAULT if the upper 32 bits are not zero.
I created this program that demonstrates the problem:
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <alloca.h>
static __attribute__((noinline,noclone)) void aa(int *size)
{
void * volatile p = alloca(-*size);
while (1) ;
}
static void handler(int sig)
{
write(1, "signal delivered\n", 17);
_exit(0);
}
int main(void)
{
int size = -0x100;
signal(SIGALRM, handler);
alarm(1);
aa(&size);
}
If you compile it with optimizations, it will crash.
The "aa" function has this disassembly:
000106a0 <aa>:
106a0: 08 03 02 41 copy r3,r1
106a4: 08 1e 02 43 copy sp,r3
106a8: 6f c1 00 80 stw,ma r1,40(sp)
106ac: 37 dc 3f c1 ldo -20(sp),ret0
106b0: 0c 7c 12 90 stw ret0,8(r3)
106b4: 0f 40 10 9c ldw 0(r26),ret0 ; ret0 = 0x00000000FFFFFF00
106b8: 97 9c 00 7e subi 3f,ret0,ret0 ; ret0 = 0xFFFFFFFF0000013F
106bc: d7 80 1c 1a depwi 0,31,6,ret0 ; ret0 = 0xFFFFFFFF00000100
106c0: 0b 9e 0a 1e add,l sp,ret0,sp ; sp = 0xFFFFFFFFxxxxxxxx
106c4: e8 1f 1f f7 b,l,n 106c4 <aa+0x24>,r0
This patch fixes the bug by truncating the "usp" variable to 32 bits.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Cc: stable@vger.kernel.org
Signed-off-by: Helge Deller <deller@gmx.de>
2021-08-30 17:42:27 +08:00
|
|
|
}
|
|
|
|
#endif
|
2021-09-05 17:53:32 +08:00
|
|
|
frame = get_sigframe(&ksig->ka, usp, sigframe_size);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: frame %p info %p\n", __func__, frame, &ksig->info);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-09-05 17:53:32 +08:00
|
|
|
start = (unsigned long) frame;
|
2022-02-12 04:42:45 +08:00
|
|
|
if (start >= TASK_SIZE_MAX - sigframe_size)
|
2021-09-05 17:53:32 +08:00
|
|
|
return -EFAULT;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
compat_frame = (struct compat_rt_sigframe __user *)frame;
|
|
|
|
|
2006-06-17 03:10:02 +08:00
|
|
|
if (is_compat_task()) {
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: frame->info = 0x%p\n", __func__, &compat_frame->info);
|
2013-10-07 20:34:10 +08:00
|
|
|
err |= copy_siginfo_to_user32(&compat_frame->info, &ksig->info);
|
2012-12-23 16:22:04 +08:00
|
|
|
err |= __compat_save_altstack( &compat_frame->uc.uc_stack, regs->gr[30]);
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: frame->uc = 0x%p\n", __func__, &compat_frame->uc);
|
|
|
|
DBG(1, "%s: frame->uc.uc_mcontext = 0x%p\n",
|
|
|
|
__func__, &compat_frame->uc.uc_mcontext);
|
2005-04-17 06:20:36 +08:00
|
|
|
err |= setup_sigcontext32(&compat_frame->uc.uc_mcontext,
|
|
|
|
&compat_frame->regs, regs, in_syscall);
|
2017-09-05 00:14:28 +08:00
|
|
|
err |= put_compat_sigset(&compat_frame->uc.uc_sigmask, set,
|
|
|
|
sizeof(compat_sigset_t));
|
2005-04-17 06:20:36 +08:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: frame->info = 0x%p\n", __func__, &frame->info);
|
2013-10-07 20:34:10 +08:00
|
|
|
err |= copy_siginfo_to_user(&frame->info, &ksig->info);
|
2012-12-23 16:22:04 +08:00
|
|
|
err |= __save_altstack(&frame->uc.uc_stack, regs->gr[30]);
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: frame->uc = 0x%p\n", __func__, &frame->uc);
|
|
|
|
DBG(1, "%s: frame->uc.uc_mcontext = 0x%p\n",
|
|
|
|
__func__, &frame->uc.uc_mcontext);
|
2005-04-17 06:20:36 +08:00
|
|
|
err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, in_syscall);
|
2011-03-31 09:57:33 +08:00
|
|
|
/* FIXME: Should probably be converted as well for the compat case */
|
2005-04-17 06:20:36 +08:00
|
|
|
err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err)
|
2013-10-07 20:34:10 +08:00
|
|
|
return -EFAULT;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
if (!is_compat_task())
|
|
|
|
rp = VDSO64_SYMBOL(current, sigtramp_rt);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
rp = VDSO32_SYMBOL(current, sigtramp_rt);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
if (in_syscall)
|
|
|
|
rp += 4*4; /* skip 4 instructions and start at ldi 1,%r25 */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-10-07 20:34:10 +08:00
|
|
|
haddr = A(ksig->ka.sa.sa_handler);
|
2005-04-17 06:20:36 +08:00
|
|
|
/* The sa_handler may be a pointer to a function descriptor */
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2006-06-17 03:10:02 +08:00
|
|
|
if (is_compat_task()) {
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
if (haddr & PA_PLABEL_FDESC) {
|
|
|
|
Elf32_Fdesc fdesc;
|
|
|
|
Elf32_Fdesc __user *ufdesc = (Elf32_Fdesc __user *)A(haddr & ~3);
|
|
|
|
|
|
|
|
err = __copy_from_user(&fdesc, ufdesc, sizeof(fdesc));
|
|
|
|
|
|
|
|
if (err)
|
2013-10-07 20:34:10 +08:00
|
|
|
return -EFAULT;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
haddr = fdesc.addr;
|
|
|
|
regs->gr[19] = fdesc.gp;
|
|
|
|
}
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2005-04-17 06:20:36 +08:00
|
|
|
} else {
|
|
|
|
Elf64_Fdesc fdesc;
|
|
|
|
Elf64_Fdesc __user *ufdesc = (Elf64_Fdesc __user *)A(haddr & ~3);
|
|
|
|
|
|
|
|
err = __copy_from_user(&fdesc, ufdesc, sizeof(fdesc));
|
|
|
|
|
|
|
|
if (err)
|
2013-10-07 20:34:10 +08:00
|
|
|
return -EFAULT;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
haddr = fdesc.addr;
|
|
|
|
regs->gr[19] = fdesc.gp;
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: 64 bit signal, exe=%#lx, r19=%#lx, in_syscall=%d\n",
|
|
|
|
__func__, haddr, regs->gr[19], in_syscall);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* The syscall return path will create IAOQ values from r31.
|
|
|
|
*/
|
|
|
|
if (in_syscall) {
|
|
|
|
regs->gr[31] = haddr;
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2006-08-27 23:04:26 +08:00
|
|
|
if (!test_thread_flag(TIF_32BIT))
|
2021-12-08 18:06:52 +08:00
|
|
|
sigframe_size |= 1; /* XXX ???? */
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
unsigned long psw = USER_PSW;
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2006-08-27 23:04:26 +08:00
|
|
|
if (!test_thread_flag(TIF_32BIT))
|
2005-04-17 06:20:36 +08:00
|
|
|
psw |= PSW_W;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* If we are singlestepping, arrange a trap to be delivered
|
|
|
|
when we return to userspace. Note the semantics -- we
|
|
|
|
should trap before the first insn in the handler is
|
|
|
|
executed. Ref:
|
|
|
|
http://sources.redhat.com/ml/gdb/2004-11/msg00245.html
|
|
|
|
*/
|
|
|
|
if (pa_psw(current)->r) {
|
|
|
|
pa_psw(current)->r = 0;
|
|
|
|
psw |= PSW_R;
|
|
|
|
mtctl(-1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
regs->gr[0] = psw;
|
2021-12-08 18:06:52 +08:00
|
|
|
regs->iaoq[0] = haddr | PRIV_USER;
|
2005-04-17 06:20:36 +08:00
|
|
|
regs->iaoq[1] = regs->iaoq[0] + 4;
|
|
|
|
}
|
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
regs->gr[2] = rp; /* userland return pointer */
|
2013-10-07 20:34:10 +08:00
|
|
|
regs->gr[26] = ksig->sig; /* signal number */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-01-28 21:58:52 +08:00
|
|
|
#ifdef CONFIG_64BIT
|
2006-06-17 03:10:02 +08:00
|
|
|
if (is_compat_task()) {
|
2005-04-17 06:20:36 +08:00
|
|
|
regs->gr[25] = A(&compat_frame->info); /* siginfo pointer */
|
|
|
|
regs->gr[24] = A(&compat_frame->uc); /* ucontext pointer */
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
regs->gr[25] = A(&frame->info); /* siginfo pointer */
|
|
|
|
regs->gr[24] = A(&frame->uc); /* ucontext pointer */
|
|
|
|
}
|
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: making sigreturn frame: %#lx + %#lx = %#lx\n", __func__,
|
2005-04-17 06:20:36 +08:00
|
|
|
regs->gr[30], sigframe_size,
|
|
|
|
regs->gr[30] + sigframe_size);
|
|
|
|
/* Raise the user stack pointer to make a proper call frame. */
|
|
|
|
regs->gr[30] = (A(frame) + sigframe_size);
|
|
|
|
|
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: sig deliver (%s,%d) frame=0x%p sp=%#lx iaoq=%#lx/%#lx rp=%#lx\n",
|
|
|
|
__func__, current->comm, current->pid, frame, regs->gr[30],
|
2005-04-17 06:20:36 +08:00
|
|
|
regs->iaoq[0], regs->iaoq[1], rp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OK, we're invoking a handler.
|
|
|
|
*/
|
|
|
|
|
2012-05-19 13:13:01 +08:00
|
|
|
static void
|
2013-10-07 20:34:10 +08:00
|
|
|
handle_signal(struct ksignal *ksig, struct pt_regs *regs, int in_syscall)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-10-07 20:34:10 +08:00
|
|
|
int ret;
|
2012-05-02 21:59:21 +08:00
|
|
|
sigset_t *oldset = sigmask_to_save();
|
2013-10-07 20:34:10 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: sig=%d, ka=%p, info=%p, oldset=%p, regs=%p\n",
|
|
|
|
__func__, ksig->sig, &ksig->ka, &ksig->info, oldset, regs);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Set up the stack frame */
|
2013-10-07 20:34:10 +08:00
|
|
|
ret = setup_rt_frame(ksig, oldset, regs, in_syscall);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-10-07 20:34:10 +08:00
|
|
|
signal_setup_done(ret, ksig, test_thread_flag(TIF_SINGLESTEP) ||
|
|
|
|
test_thread_flag(TIF_BLOCKSTEP));
|
2009-04-27 12:29:53 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: Exit (success), regs->gr[28] = %ld\n",
|
|
|
|
__func__, regs->gr[28]);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2015-12-21 17:03:30 +08:00
|
|
|
/*
|
|
|
|
* Check how the syscall number gets loaded into %r20 within
|
|
|
|
* the delay branch in userspace and adjust as needed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void check_syscallno_in_delay_branch(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
u32 opcode, source_reg;
|
|
|
|
u32 __user *uaddr;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/* Usually we don't have to restore %r20 (the system call number)
|
|
|
|
* because it gets loaded in the delay slot of the branch external
|
|
|
|
* instruction via the ldi instruction.
|
|
|
|
* In some cases a register-to-register copy instruction might have
|
|
|
|
* been used instead, in which case we need to copy the syscall
|
|
|
|
* number into the source register before returning to userspace.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* A syscall is just a branch, so all we have to do is fiddle the
|
|
|
|
* return pointer so that the ble instruction gets executed again.
|
|
|
|
*/
|
|
|
|
regs->gr[31] -= 8; /* delayed branching */
|
|
|
|
|
|
|
|
/* Get assembler opcode of code in delay branch */
|
|
|
|
uaddr = (unsigned int *) ((regs->gr[31] & ~3) + 4);
|
|
|
|
err = get_user(opcode, uaddr);
|
|
|
|
if (err)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Check if delay branch uses "ldi int,%r20" */
|
|
|
|
if ((opcode & 0xffff0000) == 0x34140000)
|
|
|
|
return; /* everything ok, just return */
|
|
|
|
|
|
|
|
/* Check if delay branch uses "nop" */
|
|
|
|
if (opcode == INSN_NOP)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Check if delay branch uses "copy %rX,%r20" */
|
|
|
|
if ((opcode & 0xffe0ffff) == 0x08000254) {
|
|
|
|
source_reg = (opcode >> 16) & 31;
|
|
|
|
regs->gr[source_reg] = regs->gr[20];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pr_warn("syscall restart: %s (pid %d): unexpected opcode 0x%08x\n",
|
|
|
|
current->comm, task_pid_nr(current), opcode);
|
|
|
|
}
|
|
|
|
|
2007-01-15 13:36:26 +08:00
|
|
|
static inline void
|
|
|
|
syscall_restart(struct pt_regs *regs, struct k_sigaction *ka)
|
|
|
|
{
|
2012-05-19 12:29:22 +08:00
|
|
|
if (regs->orig_r28)
|
|
|
|
return;
|
|
|
|
regs->orig_r28 = 1; /* no more restarts */
|
2021-12-08 18:06:52 +08:00
|
|
|
|
|
|
|
DBG(1, "%s: orig_r28 = %ld pid %d r20 %ld\n",
|
|
|
|
__func__, regs->orig_r28, task_pid_nr(current), regs->gr[20]);
|
|
|
|
|
2007-01-15 13:36:26 +08:00
|
|
|
/* Check the return code */
|
|
|
|
switch (regs->gr[28]) {
|
|
|
|
case -ERESTART_RESTARTBLOCK:
|
|
|
|
case -ERESTARTNOHAND:
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: ERESTARTNOHAND: returning -EINTR\n", __func__);
|
2007-01-15 13:36:26 +08:00
|
|
|
regs->gr[28] = -EINTR;
|
|
|
|
break;
|
|
|
|
case -ERESTARTSYS:
|
|
|
|
if (!(ka->sa.sa_flags & SA_RESTART)) {
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: ERESTARTSYS: putting -EINTR pid %d\n",
|
|
|
|
__func__, task_pid_nr(current));
|
2007-01-15 13:36:26 +08:00
|
|
|
regs->gr[28] = -EINTR;
|
|
|
|
break;
|
|
|
|
}
|
2020-08-24 06:36:59 +08:00
|
|
|
fallthrough;
|
2007-01-15 13:36:26 +08:00
|
|
|
case -ERESTARTNOINTR:
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: %ld\n", __func__, regs->gr[28]);
|
2015-12-21 17:03:30 +08:00
|
|
|
check_syscallno_in_delay_branch(regs);
|
2007-01-15 13:36:26 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
insert_restart_trampoline(struct pt_regs *regs)
|
|
|
|
{
|
2012-05-19 12:29:22 +08:00
|
|
|
if (regs->orig_r28)
|
|
|
|
return;
|
|
|
|
regs->orig_r28 = 1; /* no more restarts */
|
2021-12-08 18:06:52 +08:00
|
|
|
|
|
|
|
DBG(2, "%s: gr28 = %ld pid %d\n",
|
|
|
|
__func__, regs->gr[28], task_pid_nr(current));
|
|
|
|
|
|
|
|
switch (regs->gr[28]) {
|
2007-01-15 13:36:26 +08:00
|
|
|
case -ERESTART_RESTARTBLOCK: {
|
|
|
|
/* Restart the system call - no handlers present */
|
|
|
|
unsigned int *usp = (unsigned int *)regs->gr[30];
|
2021-12-08 18:06:52 +08:00
|
|
|
unsigned long rp;
|
2015-02-04 04:52:47 +08:00
|
|
|
long err = 0;
|
2007-01-15 13:36:26 +08:00
|
|
|
|
2021-09-05 17:53:32 +08:00
|
|
|
/* check that we don't exceed the stack */
|
2022-02-12 04:42:45 +08:00
|
|
|
if (A(&usp[0]) >= TASK_SIZE_MAX - 5 * sizeof(int))
|
2021-09-05 17:53:32 +08:00
|
|
|
return;
|
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
/* Call trampoline in vdso to restart the syscall
|
|
|
|
* with __NR_restart_syscall.
|
|
|
|
* Original return addresses are on stack like this:
|
2007-01-15 13:36:26 +08:00
|
|
|
*
|
|
|
|
* 0: <return address (orig r31)>
|
|
|
|
* 4: <2nd half for 64-bit>
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_64BIT
|
2021-12-08 18:06:52 +08:00
|
|
|
if (!is_compat_task()) {
|
|
|
|
err |= put_user(regs->gr[31] >> 32, &usp[0]);
|
|
|
|
err |= put_user(regs->gr[31] & 0xffffffff, &usp[1]);
|
|
|
|
rp = VDSO64_SYMBOL(current, restart_syscall);
|
|
|
|
} else
|
2007-01-15 13:36:26 +08:00
|
|
|
#endif
|
2021-12-08 18:06:52 +08:00
|
|
|
{
|
|
|
|
err |= put_user(regs->gr[31], &usp[0]);
|
|
|
|
rp = VDSO32_SYMBOL(current, restart_syscall);
|
|
|
|
}
|
2015-02-04 04:52:47 +08:00
|
|
|
WARN_ON(err);
|
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
regs->gr[31] = rp;
|
|
|
|
DBG(1, "%s: ERESTART_RESTARTBLOCK\n", __func__);
|
2007-01-15 13:36:26 +08:00
|
|
|
return;
|
|
|
|
}
|
2021-12-08 18:06:52 +08:00
|
|
|
case -EINTR:
|
|
|
|
/* ok, was handled before and should be returned. */
|
|
|
|
break;
|
2007-01-15 13:36:26 +08:00
|
|
|
case -ERESTARTNOHAND:
|
|
|
|
case -ERESTARTSYS:
|
2015-12-21 17:03:30 +08:00
|
|
|
case -ERESTARTNOINTR:
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: Type %ld\n", __func__, regs->gr[28]);
|
2015-12-21 17:03:30 +08:00
|
|
|
check_syscallno_in_delay_branch(regs);
|
2007-01-15 13:36:26 +08:00
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* We need to be able to restore the syscall arguments (r21-r26) to
|
|
|
|
* restart syscalls. Thus, the syscall path should save them in the
|
|
|
|
* pt_regs structure (it's okay to do so since they are caller-save
|
|
|
|
* registers). As noted below, the syscall number gets restored for
|
|
|
|
* us due to the magic of delayed branching.
|
|
|
|
*/
|
2021-12-08 18:06:52 +08:00
|
|
|
static void do_signal(struct pt_regs *regs, long in_syscall)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-10-07 20:34:10 +08:00
|
|
|
struct ksignal ksig;
|
2021-12-08 18:06:52 +08:00
|
|
|
int restart_syscall;
|
|
|
|
bool has_handler;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
has_handler = get_signal(&ksig);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
restart_syscall = 0;
|
|
|
|
if (in_syscall)
|
|
|
|
restart_syscall = 1;
|
|
|
|
|
|
|
|
if (has_handler) {
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Restart a system call if necessary. */
|
2021-12-08 18:06:52 +08:00
|
|
|
if (restart_syscall)
|
2013-10-07 20:34:10 +08:00
|
|
|
syscall_restart(regs, &ksig.ka);
|
2007-01-15 13:36:26 +08:00
|
|
|
|
2013-10-07 20:34:10 +08:00
|
|
|
handle_signal(&ksig, regs, in_syscall);
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: Handled signal pid %d\n",
|
|
|
|
__func__, task_pid_nr(current));
|
2012-05-19 13:13:01 +08:00
|
|
|
return;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
/* Do we need to restart the system call? */
|
|
|
|
if (restart_syscall)
|
2007-01-15 13:36:26 +08:00
|
|
|
insert_restart_trampoline(regs);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2021-12-08 18:06:52 +08:00
|
|
|
DBG(1, "%s: Exit (not delivered), regs->gr[28] = %ld orig_r28 = %ld pid %d\n",
|
|
|
|
__func__, regs->gr[28], regs->orig_r28, task_pid_nr(current));
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-05-22 11:33:55 +08:00
|
|
|
restore_saved_sigmask();
|
2007-01-09 05:28:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void do_notify_resume(struct pt_regs *regs, long in_syscall)
|
|
|
|
{
|
2020-10-10 05:27:02 +08:00
|
|
|
if (test_thread_flag(TIF_SIGPENDING) ||
|
|
|
|
test_thread_flag(TIF_NOTIFY_SIGNAL))
|
2007-01-09 05:28:06 +08:00
|
|
|
do_signal(regs, in_syscall);
|
2009-09-02 16:14:16 +08:00
|
|
|
|
2020-10-04 00:49:22 +08:00
|
|
|
if (test_thread_flag(TIF_NOTIFY_RESUME))
|
2022-02-10 02:20:45 +08:00
|
|
|
resume_user_mode_work(regs);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|