2010-05-29 11:09:12 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
* Copyright 2010 Tilera Corporation. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This program 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, version 2.
|
|
|
|
*
|
|
|
|
* This program 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, GOOD TITLE or
|
|
|
|
* NON INFRINGEMENT. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#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/unistd.h>
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/personality.h>
|
|
|
|
#include <linux/suspend.h>
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include <linux/elf.h>
|
|
|
|
#include <linux/compat.h>
|
|
|
|
#include <linux/syscalls.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/ucontext.h>
|
|
|
|
#include <asm/sigframe.h>
|
2010-06-26 05:04:17 +08:00
|
|
|
#include <asm/syscalls.h>
|
2013-08-08 03:33:32 +08:00
|
|
|
#include <asm/vdso.h>
|
2010-05-29 11:09:12 +08:00
|
|
|
#include <arch/interrupts.h>
|
|
|
|
|
|
|
|
#define DEBUG_SIG 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do a signal return; undo the signal stack.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int restore_sigcontext(struct pt_regs *regs,
|
2010-12-15 05:07:25 +08:00
|
|
|
struct sigcontext __user *sc)
|
2010-05-29 11:09:12 +08:00
|
|
|
{
|
arch: tile: kernel: signal.c: Use __copy_from/to_user() instead of __get/put_user()
setup/restore_sigcontext() want to copy all related registers between
user and kernel. So use block copy instead of each registers copy. Then
can let code simple and clearer (which can avoid compiler's warning):
The related warning (with allmodconfig under tile):
CC arch/tile/kernel/signal.o
In file included from include/linux/poll.h:11:0,
from include/linux/ring_buffer.h:7,
from include/linux/ftrace_event.h:5,
from include/trace/syscall.h:6,
from include/linux/syscalls.h:81,
from arch/tile/kernel/signal.c:30:
arch/tile/kernel/signal.c: In function 'setup_sigcontext':
arch/tile/kernel/signal.c:116:31: warning: iteration 53u invokes undefined behavior [-Waggressive-loop-optimizations]
err |= __put_user(regs->regs[i], &sc->gregs[i]);
^
./arch/tile/include/asm/uaccess.h:236:26: note: in definition of macro '__put_user_asm'
: "r" (ptr), "r" (x), "i" (-EFAULT))
^
./arch/tile/include/asm/uaccess.h:297:10: note: in expansion of macro '__put_user_8'
case 8: __put_user_8(x, ptr, __ret); break; \
^
arch/tile/kernel/signal.c:116:10: note: in expansion of macro '__put_user'
err |= __put_user(regs->regs[i], &sc->gregs[i]);
^
arch/tile/kernel/signal.c:115:2: note: containing loop
for (i = 0; i < sizeof(struct pt_regs)/sizeof(long); ++i)
^
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
2014-11-02 10:13:11 +08:00
|
|
|
int err;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
|
|
|
/* Always make any pending restarted system calls return -EINTR */
|
2015-02-13 07:01:14 +08:00
|
|
|
current->restart_block.fn = do_no_restart_syscall;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
2010-09-15 23:16:08 +08:00
|
|
|
/*
|
|
|
|
* Enforce that sigcontext is like pt_regs, and doesn't mess
|
|
|
|
* up our stack alignment rules.
|
|
|
|
*/
|
|
|
|
BUILD_BUG_ON(sizeof(struct sigcontext) != sizeof(struct pt_regs));
|
|
|
|
BUILD_BUG_ON(sizeof(struct sigcontext) % 8 != 0);
|
arch: tile: kernel: signal.c: Use __copy_from/to_user() instead of __get/put_user()
setup/restore_sigcontext() want to copy all related registers between
user and kernel. So use block copy instead of each registers copy. Then
can let code simple and clearer (which can avoid compiler's warning):
The related warning (with allmodconfig under tile):
CC arch/tile/kernel/signal.o
In file included from include/linux/poll.h:11:0,
from include/linux/ring_buffer.h:7,
from include/linux/ftrace_event.h:5,
from include/trace/syscall.h:6,
from include/linux/syscalls.h:81,
from arch/tile/kernel/signal.c:30:
arch/tile/kernel/signal.c: In function 'setup_sigcontext':
arch/tile/kernel/signal.c:116:31: warning: iteration 53u invokes undefined behavior [-Waggressive-loop-optimizations]
err |= __put_user(regs->regs[i], &sc->gregs[i]);
^
./arch/tile/include/asm/uaccess.h:236:26: note: in definition of macro '__put_user_asm'
: "r" (ptr), "r" (x), "i" (-EFAULT))
^
./arch/tile/include/asm/uaccess.h:297:10: note: in expansion of macro '__put_user_8'
case 8: __put_user_8(x, ptr, __ret); break; \
^
arch/tile/kernel/signal.c:116:10: note: in expansion of macro '__put_user'
err |= __put_user(regs->regs[i], &sc->gregs[i]);
^
arch/tile/kernel/signal.c:115:2: note: containing loop
for (i = 0; i < sizeof(struct pt_regs)/sizeof(long); ++i)
^
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
2014-11-02 10:13:11 +08:00
|
|
|
err = __copy_from_user(regs, sc, sizeof(*regs));
|
2010-05-29 11:09:12 +08:00
|
|
|
|
2010-10-29 03:47:06 +08:00
|
|
|
/* Ensure that the PL is always set to USER_PL. */
|
|
|
|
regs->ex1 = PL_ICS_EX1(USER_PL, EX1_ICS(regs->ex1));
|
|
|
|
|
2010-05-29 11:09:12 +08:00
|
|
|
regs->faultnum = INT_SWINT_1_SIGRETURN;
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-05-17 02:23:44 +08:00
|
|
|
void signal_fault(const char *type, struct pt_regs *regs,
|
|
|
|
void __user *frame, int sig)
|
|
|
|
{
|
|
|
|
trace_unhandled_signal(type, regs, (unsigned long)frame, SIGSEGV);
|
|
|
|
force_sigsegv(sig, current);
|
|
|
|
}
|
|
|
|
|
2010-12-15 05:07:25 +08:00
|
|
|
/* The assembly shim for this function arranges to ignore the return value. */
|
2012-10-24 01:30:54 +08:00
|
|
|
SYSCALL_DEFINE0(rt_sigreturn)
|
2010-05-29 11:09:12 +08:00
|
|
|
{
|
2012-10-24 01:30:54 +08:00
|
|
|
struct pt_regs *regs = current_pt_regs();
|
2010-05-29 11:09:12 +08:00
|
|
|
struct rt_sigframe __user *frame =
|
|
|
|
(struct rt_sigframe __user *)(regs->sp);
|
|
|
|
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;
|
|
|
|
|
2012-02-14 19:41:06 +08:00
|
|
|
set_current_blocked(&set);
|
2010-05-29 11:09:12 +08:00
|
|
|
|
2010-12-15 05:07:25 +08:00
|
|
|
if (restore_sigcontext(regs, &frame->uc.uc_mcontext))
|
2010-05-29 11:09:12 +08:00
|
|
|
goto badframe;
|
|
|
|
|
2012-12-23 16:50:34 +08:00
|
|
|
if (restore_altstack(&frame->uc.uc_stack))
|
2010-05-29 11:09:12 +08:00
|
|
|
goto badframe;
|
|
|
|
|
2010-12-15 05:07:25 +08:00
|
|
|
return 0;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
|
|
|
badframe:
|
2011-05-17 02:23:44 +08:00
|
|
|
signal_fault("bad sigreturn frame", regs, frame, 0);
|
2010-05-29 11:09:12 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up a signal frame.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs)
|
|
|
|
{
|
arch: tile: kernel: signal.c: Use __copy_from/to_user() instead of __get/put_user()
setup/restore_sigcontext() want to copy all related registers between
user and kernel. So use block copy instead of each registers copy. Then
can let code simple and clearer (which can avoid compiler's warning):
The related warning (with allmodconfig under tile):
CC arch/tile/kernel/signal.o
In file included from include/linux/poll.h:11:0,
from include/linux/ring_buffer.h:7,
from include/linux/ftrace_event.h:5,
from include/trace/syscall.h:6,
from include/linux/syscalls.h:81,
from arch/tile/kernel/signal.c:30:
arch/tile/kernel/signal.c: In function 'setup_sigcontext':
arch/tile/kernel/signal.c:116:31: warning: iteration 53u invokes undefined behavior [-Waggressive-loop-optimizations]
err |= __put_user(regs->regs[i], &sc->gregs[i]);
^
./arch/tile/include/asm/uaccess.h:236:26: note: in definition of macro '__put_user_asm'
: "r" (ptr), "r" (x), "i" (-EFAULT))
^
./arch/tile/include/asm/uaccess.h:297:10: note: in expansion of macro '__put_user_8'
case 8: __put_user_8(x, ptr, __ret); break; \
^
arch/tile/kernel/signal.c:116:10: note: in expansion of macro '__put_user'
err |= __put_user(regs->regs[i], &sc->gregs[i]);
^
arch/tile/kernel/signal.c:115:2: note: containing loop
for (i = 0; i < sizeof(struct pt_regs)/sizeof(long); ++i)
^
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
2014-11-02 10:13:11 +08:00
|
|
|
return __copy_to_user(sc, regs, sizeof(*regs));
|
2010-05-29 11:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine which stack to use..
|
|
|
|
*/
|
|
|
|
static inline void __user *get_sigframe(struct k_sigaction *ka,
|
|
|
|
struct pt_regs *regs,
|
|
|
|
size_t frame_size)
|
|
|
|
{
|
|
|
|
unsigned long sp;
|
|
|
|
|
|
|
|
/* Default to using normal stack */
|
|
|
|
sp = regs->sp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we are on the alternate signal stack and would overflow
|
|
|
|
* it, don't. Return an always-bogus address instead so we
|
|
|
|
* will die with SIGSEGV.
|
|
|
|
*/
|
|
|
|
if (on_sig_stack(sp) && !likely(on_sig_stack(sp - frame_size)))
|
2010-06-26 05:04:17 +08:00
|
|
|
return (void __user __force *)-1UL;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
|
|
|
/* This is the X/Open sanctioned signal stack switching. */
|
|
|
|
if (ka->sa.sa_flags & SA_ONSTACK) {
|
|
|
|
if (sas_ss_flags(sp) == 0)
|
|
|
|
sp = current->sas_ss_sp + current->sas_ss_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp -= frame_size;
|
|
|
|
/*
|
|
|
|
* Align the stack pointer according to the TILE ABI,
|
|
|
|
* i.e. so that on function entry (sp & 15) == 0.
|
|
|
|
*/
|
|
|
|
sp &= -16UL;
|
|
|
|
return (void __user *) sp;
|
|
|
|
}
|
|
|
|
|
2013-10-07 21:01:08 +08:00
|
|
|
static int setup_rt_frame(struct ksignal *ksig, sigset_t *set,
|
|
|
|
struct pt_regs *regs)
|
2010-05-29 11:09:12 +08:00
|
|
|
{
|
|
|
|
unsigned long restorer;
|
|
|
|
struct rt_sigframe __user *frame;
|
2013-10-07 21:01:08 +08:00
|
|
|
int err = 0, sig = ksig->sig;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
2013-10-07 21:01:08 +08:00
|
|
|
frame = get_sigframe(&ksig->ka, regs, sizeof(*frame));
|
2010-05-29 11:09:12 +08:00
|
|
|
|
|
|
|
if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
|
2013-10-07 21:01:08 +08:00
|
|
|
goto err;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
|
|
|
/* Always write at least the signal number for the stack backtracer. */
|
2013-10-07 21:01:08 +08:00
|
|
|
if (ksig->ka.sa.sa_flags & SA_SIGINFO) {
|
2010-05-29 11:09:12 +08:00
|
|
|
/* At sigreturn time, restore the callee-save registers too. */
|
2013-10-07 21:01:08 +08:00
|
|
|
err |= copy_siginfo_to_user(&frame->info, &ksig->info);
|
2010-05-29 11:09:12 +08:00
|
|
|
regs->flags |= PT_FLAGS_RESTORE_REGS;
|
|
|
|
} else {
|
2013-10-07 21:01:08 +08:00
|
|
|
err |= __put_user(ksig->info.si_signo, &frame->info.si_signo);
|
2010-05-29 11:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the ucontext. */
|
|
|
|
err |= __clear_user(&frame->save_area, sizeof(frame->save_area));
|
|
|
|
err |= __put_user(0, &frame->uc.uc_flags);
|
2010-06-26 05:04:17 +08:00
|
|
|
err |= __put_user(NULL, &frame->uc.uc_link);
|
2012-12-23 16:50:34 +08:00
|
|
|
err |= __save_altstack(&frame->uc.uc_stack, regs->sp);
|
2010-05-29 11:09:12 +08:00
|
|
|
err |= setup_sigcontext(&frame->uc.uc_mcontext, regs);
|
|
|
|
err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
|
|
|
|
if (err)
|
2013-10-07 21:01:08 +08:00
|
|
|
goto err;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
2013-08-08 03:33:32 +08:00
|
|
|
restorer = VDSO_SYM(&__vdso_rt_sigreturn);
|
2013-10-07 21:01:08 +08:00
|
|
|
if (ksig->ka.sa.sa_flags & SA_RESTORER)
|
|
|
|
restorer = (unsigned long) ksig->ka.sa.sa_restorer;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up registers for signal handler.
|
|
|
|
* Registers that we don't modify keep the value they had from
|
|
|
|
* user-space at the time we took the signal.
|
2010-09-15 23:16:08 +08:00
|
|
|
* We always pass siginfo and mcontext, regardless of SA_SIGINFO,
|
|
|
|
* since some things rely on this (e.g. glibc's debug/segfault.c).
|
2010-05-29 11:09:12 +08:00
|
|
|
*/
|
2013-10-07 21:01:08 +08:00
|
|
|
regs->pc = (unsigned long) ksig->ka.sa.sa_handler;
|
2010-05-29 11:09:12 +08:00
|
|
|
regs->ex1 = PL_ICS_EX1(USER_PL, 1); /* set crit sec in handler */
|
|
|
|
regs->sp = (unsigned long) frame;
|
|
|
|
regs->lr = restorer;
|
2014-07-13 23:40:49 +08:00
|
|
|
regs->regs[0] = (unsigned long) sig;
|
2010-09-15 23:16:08 +08:00
|
|
|
regs->regs[1] = (unsigned long) &frame->info;
|
|
|
|
regs->regs[2] = (unsigned long) &frame->uc;
|
|
|
|
regs->flags |= PT_FLAGS_CALLER_SAVES;
|
2010-05-29 11:09:12 +08:00
|
|
|
return 0;
|
|
|
|
|
2013-10-07 21:01:08 +08:00
|
|
|
err:
|
|
|
|
trace_unhandled_signal("bad sigreturn frame", regs,
|
|
|
|
(unsigned long)frame, SIGSEGV);
|
2010-05-29 11:09:12 +08:00
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OK, we're invoking a handler
|
|
|
|
*/
|
|
|
|
|
2013-10-07 21:01:08 +08:00
|
|
|
static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
|
2010-05-29 11:09:12 +08:00
|
|
|
{
|
2012-05-02 21:59:21 +08:00
|
|
|
sigset_t *oldset = sigmask_to_save();
|
2010-05-29 11:09:12 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Are we from a system call? */
|
|
|
|
if (regs->faultnum == INT_SWINT_1) {
|
|
|
|
/* If so, check system call restarting.. */
|
|
|
|
switch (regs->regs[0]) {
|
|
|
|
case -ERESTART_RESTARTBLOCK:
|
|
|
|
case -ERESTARTNOHAND:
|
|
|
|
regs->regs[0] = -EINTR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case -ERESTARTSYS:
|
2013-10-07 21:01:08 +08:00
|
|
|
if (!(ksig->ka.sa.sa_flags & SA_RESTART)) {
|
2010-05-29 11:09:12 +08:00
|
|
|
regs->regs[0] = -EINTR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* fallthrough */
|
|
|
|
case -ERESTARTNOINTR:
|
|
|
|
/* Reload caller-saves to restore r0..r5 and r10. */
|
|
|
|
regs->flags |= PT_FLAGS_CALLER_SAVES;
|
|
|
|
regs->regs[0] = regs->orig_r0;
|
|
|
|
regs->pc -= 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up the stack frame */
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
if (is_compat_task())
|
2013-10-07 21:01:08 +08:00
|
|
|
ret = compat_setup_rt_frame(ksig, oldset, regs);
|
2010-05-29 11:09:12 +08:00
|
|
|
else
|
|
|
|
#endif
|
2013-10-07 21:01:08 +08:00
|
|
|
ret = setup_rt_frame(ksig, oldset, regs);
|
|
|
|
|
|
|
|
signal_setup_done(ret, ksig, test_thread_flag(TIF_SINGLESTEP));
|
2010-05-29 11:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
void do_signal(struct pt_regs *regs)
|
|
|
|
{
|
2013-10-07 21:01:08 +08:00
|
|
|
struct ksignal ksig;
|
2010-05-29 11:09:12 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* i386 will check if we're coming from kernel mode and bail out
|
|
|
|
* here. In my experience this just turns weird crashes into
|
|
|
|
* weird spin-hangs. But if we find a case where this seems
|
|
|
|
* helpful, we can reinstate the check on "!user_mode(regs)".
|
|
|
|
*/
|
|
|
|
|
2013-10-07 21:01:08 +08:00
|
|
|
if (get_signal(&ksig)) {
|
2010-05-29 11:09:12 +08:00
|
|
|
/* Whee! Actually deliver the signal. */
|
2013-10-07 21:01:08 +08:00
|
|
|
handle_signal(&ksig, regs);
|
2010-10-29 03:03:30 +08:00
|
|
|
goto done;
|
2010-05-29 11:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Did we come from a system call? */
|
|
|
|
if (regs->faultnum == INT_SWINT_1) {
|
|
|
|
/* Restart the system call - no handlers present */
|
|
|
|
switch (regs->regs[0]) {
|
|
|
|
case -ERESTARTNOHAND:
|
|
|
|
case -ERESTARTSYS:
|
|
|
|
case -ERESTARTNOINTR:
|
|
|
|
regs->flags |= PT_FLAGS_CALLER_SAVES;
|
|
|
|
regs->regs[0] = regs->orig_r0;
|
|
|
|
regs->pc -= 8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case -ERESTART_RESTARTBLOCK:
|
|
|
|
regs->flags |= PT_FLAGS_CALLER_SAVES;
|
|
|
|
regs->regs[TREG_SYSCALL_NR] = __NR_restart_syscall;
|
|
|
|
regs->pc -= 8;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If there's no signal to deliver, just put the saved sigmask back. */
|
2012-05-22 11:33:55 +08:00
|
|
|
restore_saved_sigmask();
|
2010-10-29 03:03:30 +08:00
|
|
|
|
|
|
|
done:
|
|
|
|
/* Avoid double syscall restart if there are nested signals. */
|
|
|
|
regs->faultnum = INT_SWINT_1_SIGRETURN;
|
2010-05-29 11:09:12 +08:00
|
|
|
}
|
2011-05-17 02:23:44 +08:00
|
|
|
|
|
|
|
int show_unhandled_signals = 1;
|
|
|
|
|
|
|
|
static int __init crashinfo(char *str)
|
|
|
|
{
|
|
|
|
const char *word;
|
|
|
|
|
|
|
|
if (*str == '\0')
|
2014-05-27 05:59:32 +08:00
|
|
|
show_unhandled_signals = 2;
|
|
|
|
else if (*str != '=' || kstrtoint(++str, 0, &show_unhandled_signals) != 0)
|
2011-05-17 02:23:44 +08:00
|
|
|
return 0;
|
2014-05-27 05:59:32 +08:00
|
|
|
|
2011-05-17 02:23:44 +08:00
|
|
|
switch (show_unhandled_signals) {
|
|
|
|
case 0:
|
|
|
|
word = "No";
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
word = "One-line";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
word = "Detailed";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pr_info("%s crash reports will be generated on the console\n", word);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
__setup("crashinfo", crashinfo);
|
|
|
|
|
|
|
|
static void dump_mem(void __user *address)
|
|
|
|
{
|
|
|
|
void __user *addr;
|
|
|
|
enum { region_size = 256, bytes_per_line = 16 };
|
|
|
|
int i, j, k;
|
|
|
|
int found_readable_mem = 0;
|
|
|
|
|
|
|
|
if (!access_ok(VERIFY_READ, address, 1)) {
|
|
|
|
pr_err("Not dumping at address 0x%lx (kernel address)\n",
|
|
|
|
(unsigned long)address);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
addr = (void __user *)
|
|
|
|
(((unsigned long)address & -bytes_per_line) - region_size/2);
|
|
|
|
if (addr > address)
|
|
|
|
addr = NULL;
|
|
|
|
for (i = 0; i < region_size;
|
|
|
|
addr += bytes_per_line, i += bytes_per_line) {
|
|
|
|
unsigned char buf[bytes_per_line];
|
|
|
|
char line[100];
|
|
|
|
if (copy_from_user(buf, addr, bytes_per_line))
|
|
|
|
continue;
|
|
|
|
if (!found_readable_mem) {
|
|
|
|
pr_err("Dumping memory around address 0x%lx:\n",
|
|
|
|
(unsigned long)address);
|
|
|
|
found_readable_mem = 1;
|
|
|
|
}
|
2014-11-01 01:50:46 +08:00
|
|
|
j = sprintf(line, REGFMT ":", (unsigned long)addr);
|
2011-05-17 02:23:44 +08:00
|
|
|
for (k = 0; k < bytes_per_line; ++k)
|
|
|
|
j += sprintf(&line[j], " %02x", buf[k]);
|
|
|
|
pr_err("%s\n", line);
|
|
|
|
}
|
|
|
|
if (!found_readable_mem)
|
|
|
|
pr_err("No readable memory around address 0x%lx\n",
|
|
|
|
(unsigned long)address);
|
|
|
|
}
|
|
|
|
|
|
|
|
void trace_unhandled_signal(const char *type, struct pt_regs *regs,
|
|
|
|
unsigned long address, int sig)
|
|
|
|
{
|
|
|
|
struct task_struct *tsk = current;
|
|
|
|
|
|
|
|
if (show_unhandled_signals == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* If the signal is handled, don't show it here. */
|
|
|
|
if (!is_global_init(tsk)) {
|
|
|
|
void __user *handler =
|
|
|
|
tsk->sighand->action[sig-1].sa.sa_handler;
|
|
|
|
if (handler != SIG_IGN && handler != SIG_DFL)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Rate-limit the one-line output, not the detailed output. */
|
|
|
|
if (show_unhandled_signals <= 1 && !printk_ratelimit())
|
|
|
|
return;
|
|
|
|
|
|
|
|
printk("%s%s[%d]: %s at %lx pc "REGFMT" signal %d",
|
|
|
|
task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
|
|
|
|
tsk->comm, task_pid_nr(tsk), type, address, regs->pc, sig);
|
|
|
|
|
|
|
|
print_vma_addr(KERN_CONT " in ", regs->pc);
|
|
|
|
|
|
|
|
printk(KERN_CONT "\n");
|
|
|
|
|
|
|
|
if (show_unhandled_signals > 1) {
|
|
|
|
switch (sig) {
|
|
|
|
case SIGILL:
|
|
|
|
case SIGFPE:
|
|
|
|
case SIGSEGV:
|
|
|
|
case SIGBUS:
|
2014-11-01 01:50:46 +08:00
|
|
|
pr_err("User crash: signal %d, trap %ld, address 0x%lx\n",
|
2011-05-17 02:23:44 +08:00
|
|
|
sig, regs->faultnum, address);
|
|
|
|
show_regs(regs);
|
|
|
|
dump_mem((void __user *)address);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pr_err("User crash: signal %d, trap %ld\n",
|
|
|
|
sig, regs->faultnum);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|