aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/mm/fault.c
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2018-04-17 16:26:37 -0400
committerEric W. Biederman <ebiederm@xmission.com>2018-04-25 11:40:51 -0400
commit3eb0f5193b497083391aa05d35210d5645211eef (patch)
tree65f009d4cdd5e407741a4431c0aacd40452779bd /arch/s390/mm/fault.c
parentf6ed1ecad56fec7ab5c6bf741064b95801e9688f (diff)
signal: Ensure every siginfo we send has all bits initialized
Call clear_siginfo to ensure every stack allocated siginfo is properly initialized before being passed to the signal sending functions. Note: It is not safe to depend on C initializers to initialize struct siginfo on the stack because C is allowed to skip holes when initializing a structure. The initialization of struct siginfo in tracehook_report_syscall_exit was moved from the helper user_single_step_siginfo into tracehook_report_syscall_exit itself, to make it clear that the local variable siginfo gets fully initialized. In a few cases the scope of struct siginfo has been reduced to make it clear that siginfo siginfo is not used on other paths in the function in which it is declared. Instances of using memset to initialize siginfo have been replaced with calls clear_siginfo for clarity. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'arch/s390/mm/fault.c')
-rw-r--r--arch/s390/mm/fault.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/mm/fault.c b/arch/s390/mm/fault.c
index 93faeca52284..b3ff0e8e5860 100644
--- a/arch/s390/mm/fault.c
+++ b/arch/s390/mm/fault.c
@@ -268,6 +268,7 @@ static noinline void do_sigsegv(struct pt_regs *regs, int si_code)
268 struct siginfo si; 268 struct siginfo si;
269 269
270 report_user_fault(regs, SIGSEGV, 1); 270 report_user_fault(regs, SIGSEGV, 1);
271 clear_siginfo(&si);
271 si.si_signo = SIGSEGV; 272 si.si_signo = SIGSEGV;
272 si.si_errno = 0; 273 si.si_errno = 0;
273 si.si_code = si_code; 274 si.si_code = si_code;
@@ -323,6 +324,7 @@ static noinline void do_sigbus(struct pt_regs *regs)
323 * Send a sigbus, regardless of whether we were in kernel 324 * Send a sigbus, regardless of whether we were in kernel
324 * or user mode. 325 * or user mode.
325 */ 326 */
327 clear_siginfo(&si);
326 si.si_signo = SIGBUS; 328 si.si_signo = SIGBUS;
327 si.si_errno = 0; 329 si.si_errno = 0;
328 si.si_code = BUS_ADRERR; 330 si.si_code = BUS_ADRERR;