signal: Don't use structure initializers for struct siginfo

The siginfo structure has all manners of holes with the result that a
structure initializer is not guaranteed to initialize all of the bits.
As we have to copy the structure to userspace don't even try to use
a structure initializer.  Instead use clear_siginfo followed by initializing
selected fields.  This gives a guarantee that uninitialized kernel memory
is not copied to userspace.

Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
Eric W. Biederman 2018-01-22 14:58:57 -06:00
parent 66e0f26315
commit 5f74972ce6
9 changed files with 89 additions and 60 deletions

View File

@ -65,12 +65,14 @@ unhandled_exception(const char *str, struct pt_regs *regs, siginfo_t *info)
#define DO_ERROR_INFO(signr, str, name, sicode) \ #define DO_ERROR_INFO(signr, str, name, sicode) \
int name(unsigned long address, struct pt_regs *regs) \ int name(unsigned long address, struct pt_regs *regs) \
{ \ { \
siginfo_t info = { \ siginfo_t info; \
.si_signo = signr, \ \
.si_errno = 0, \ clear_siginfo(&info); \
.si_code = sicode, \ info.si_signo = signr; \
.si_addr = (void __user *)address, \ info.si_errno = 0; \
}; \ info.si_code = sicode; \
info.si_addr = (void __user *)address; \
\
return unhandled_exception(str, regs, &info);\ return unhandled_exception(str, regs, &info);\
} }

View File

@ -209,12 +209,13 @@ NOKPROBE_SYMBOL(call_step_hook);
static void send_user_sigtrap(int si_code) static void send_user_sigtrap(int si_code)
{ {
struct pt_regs *regs = current_pt_regs(); struct pt_regs *regs = current_pt_regs();
siginfo_t info = { siginfo_t info;
.si_signo = SIGTRAP,
.si_errno = 0, clear_siginfo(&info);
.si_code = si_code, info.si_signo = SIGTRAP;
.si_addr = (void __user *)instruction_pointer(regs), info.si_errno = 0;
}; info.si_code = si_code;
info.si_addr = (void __user *)instruction_pointer(regs);
if (WARN_ON(!user_mode(regs))) if (WARN_ON(!user_mode(regs)))
return; return;

View File

@ -180,12 +180,13 @@ static void ptrace_hbptriggered(struct perf_event *bp,
struct pt_regs *regs) struct pt_regs *regs)
{ {
struct arch_hw_breakpoint *bkpt = counter_arch_bp(bp); struct arch_hw_breakpoint *bkpt = counter_arch_bp(bp);
siginfo_t info = { siginfo_t info;
.si_signo = SIGTRAP,
.si_errno = 0, clear_siginfo(&info);
.si_code = TRAP_HWBKPT, info.si_signo = SIGTRAP;
.si_addr = (void __user *)(bkpt->trigger), info.si_errno = 0;
}; info.si_code = TRAP_HWBKPT;
info.si_addr = (void __user *)(bkpt->trigger);
#ifdef CONFIG_COMPAT #ifdef CONFIG_COMPAT
if (is_compat_task()) { if (is_compat_task()) {

View File

@ -21,8 +21,9 @@ extern void die_if_kernel(char *, struct pt_regs *, long);
int send_fault_sig(struct pt_regs *regs) int send_fault_sig(struct pt_regs *regs)
{ {
siginfo_t siginfo = { 0, 0, 0, }; siginfo_t siginfo;
clear_siginfo(&siginfo);
siginfo.si_signo = current->thread.signo; siginfo.si_signo = current->thread.signo;
siginfo.si_code = current->thread.code; siginfo.si_code = current->thread.code;
siginfo.si_addr = (void *)current->thread.faddr; siginfo.si_addr = (void *)current->thread.faddr;

View File

@ -699,11 +699,12 @@ static int simulate_sync(struct pt_regs *regs, unsigned int opcode)
asmlinkage void do_ov(struct pt_regs *regs) asmlinkage void do_ov(struct pt_regs *regs)
{ {
enum ctx_state prev_state; enum ctx_state prev_state;
siginfo_t info = { siginfo_t info;
.si_signo = SIGFPE,
.si_code = FPE_INTOVF, clear_siginfo(&info);
.si_addr = (void __user *)regs->cp0_epc, info.si_signo = SIGFPE;
}; info.si_code = FPE_INTOVF;
info.si_addr = (void __user *)regs->cp0_epc;
prev_state = exception_enter(); prev_state = exception_enter();
die_if_kernel("Integer overflow", regs); die_if_kernel("Integer overflow", regs);
@ -721,7 +722,11 @@ asmlinkage void do_ov(struct pt_regs *regs)
void force_fcr31_sig(unsigned long fcr31, void __user *fault_addr, void force_fcr31_sig(unsigned long fcr31, void __user *fault_addr,
struct task_struct *tsk) struct task_struct *tsk)
{ {
struct siginfo si = { .si_addr = fault_addr, .si_signo = SIGFPE }; struct siginfo si;
clear_siginfo(&si);
si.si_addr = fault_addr;
si.si_signo = SIGFPE;
if (fcr31 & FPU_CSR_INV_X) if (fcr31 & FPU_CSR_INV_X)
si.si_code = FPE_FLTINV; si.si_code = FPE_FLTINV;
@ -739,9 +744,10 @@ void force_fcr31_sig(unsigned long fcr31, void __user *fault_addr,
int process_fpemu_return(int sig, void __user *fault_addr, unsigned long fcr31) int process_fpemu_return(int sig, void __user *fault_addr, unsigned long fcr31)
{ {
struct siginfo si = { 0 }; struct siginfo si;
struct vm_area_struct *vma; struct vm_area_struct *vma;
clear_siginfo(&si);
switch (sig) { switch (sig) {
case 0: case 0:
return 0; return 0;
@ -890,9 +896,10 @@ out:
void do_trap_or_bp(struct pt_regs *regs, unsigned int code, int si_code, void do_trap_or_bp(struct pt_regs *regs, unsigned int code, int si_code,
const char *str) const char *str)
{ {
siginfo_t info = { 0 }; siginfo_t info;
char b[40]; char b[40];
clear_siginfo(&info);
#ifdef CONFIG_KGDB_LOW_LEVEL_TRAP #ifdef CONFIG_KGDB_LOW_LEVEL_TRAP
if (kgdb_ll_trap(DIE_TRAP, str, regs, code, current->thread.trap_nr, if (kgdb_ll_trap(DIE_TRAP, str, regs, code, current->thread.trap_nr,
SIGTRAP) == NOTIFY_STOP) SIGTRAP) == NOTIFY_STOP)
@ -1499,9 +1506,13 @@ asmlinkage void do_mdmx(struct pt_regs *regs)
*/ */
asmlinkage void do_watch(struct pt_regs *regs) asmlinkage void do_watch(struct pt_regs *regs)
{ {
siginfo_t info = { .si_signo = SIGTRAP, .si_code = TRAP_HWBKPT }; siginfo_t info;
enum ctx_state prev_state; enum ctx_state prev_state;
clear_siginfo(&info);
info.si_signo = SIGTRAP;
info.si_code = TRAP_HWBKPT;
prev_state = exception_enter(); prev_state = exception_enter();
/* /*
* Clear WP (bit 22) bit of cause register so we don't loop * Clear WP (bit 22) bit of cause register so we don't loop

View File

@ -163,11 +163,13 @@ static tilepro_bundle_bits rewrite_load_store_unaligned(
* actual bad address in an SPR, which it doesn't. * actual bad address in an SPR, which it doesn't.
*/ */
if (align_ctl == 0) { if (align_ctl == 0) {
siginfo_t info = { siginfo_t info;
.si_signo = SIGBUS,
.si_code = BUS_ADRALN, clear_siginfo(&info);
.si_addr = addr info.si_signo = SIGBUS;
}; info.si_code = BUS_ADRALN;
info.si_addr = addr;
trace_unhandled_signal("unaligned trap", regs, trace_unhandled_signal("unaligned trap", regs,
(unsigned long)addr, SIGBUS); (unsigned long)addr, SIGBUS);
force_sig_info(info.si_signo, &info, current); force_sig_info(info.si_signo, &info, current);
@ -210,11 +212,13 @@ static tilepro_bundle_bits rewrite_load_store_unaligned(
} }
if (err) { if (err) {
siginfo_t info = { siginfo_t info;
.si_signo = SIGBUS,
.si_code = BUS_ADRALN, clear_siginfo(&info);
.si_addr = addr info.si_signo = SIGBUS;
}; info.si_code = BUS_ADRALN;
info.si_addr = addr;
trace_unhandled_signal("bad address for unaligned fixup", regs, trace_unhandled_signal("bad address for unaligned fixup", regs,
(unsigned long)addr, SIGBUS); (unsigned long)addr, SIGBUS);
force_sig_info(info.si_signo, &info, current); force_sig_info(info.si_signo, &info, current);

View File

@ -256,12 +256,14 @@ static int do_bpt(struct pt_regs *regs)
void __kprobes do_trap(struct pt_regs *regs, int fault_num, void __kprobes do_trap(struct pt_regs *regs, int fault_num,
unsigned long reason) unsigned long reason)
{ {
siginfo_t info = { 0 }; siginfo_t info;
int signo, code; int signo, code;
unsigned long address = 0; unsigned long address = 0;
tile_bundle_bits instr; tile_bundle_bits instr;
int is_kernel = !user_mode(regs); int is_kernel = !user_mode(regs);
clear_siginfo(&info);
/* Handle breakpoints, etc. */ /* Handle breakpoints, etc. */
if (is_kernel && fault_num == INT_ILL && do_bpt(regs)) if (is_kernel && fault_num == INT_ILL && do_bpt(regs))
return; return;

View File

@ -980,11 +980,13 @@ void jit_bundle_gen(struct pt_regs *regs, tilegx_bundle_bits bundle,
} }
if ((align_ctl == 0) || unexpected) { if ((align_ctl == 0) || unexpected) {
siginfo_t info = { siginfo_t info;
.si_signo = SIGBUS,
.si_code = BUS_ADRALN, clear_siginfo(&info);
.si_addr = (unsigned char __user *)0 info.si_signo = SIGBUS;
}; info.si_code = BUS_ADRALN;
info.si_addr = (unsigned char __user *)0;
if (unaligned_printk) if (unaligned_printk)
pr_info("Unalign bundle: unexp @%llx, %llx\n", pr_info("Unalign bundle: unexp @%llx, %llx\n",
(unsigned long long)regs->pc, (unsigned long long)regs->pc,
@ -1396,11 +1398,12 @@ void jit_bundle_gen(struct pt_regs *regs, tilegx_bundle_bits bundle,
&frag, sizeof(frag)); &frag, sizeof(frag));
if (status) { if (status) {
/* Fail to copy JIT into user land. send SIGSEGV. */ /* Fail to copy JIT into user land. send SIGSEGV. */
siginfo_t info = { siginfo_t info;
.si_signo = SIGSEGV,
.si_code = SEGV_MAPERR, clear_siginfo(&info);
.si_addr = (void __user *)&jit_code_area[idx] info.si_signo = SIGSEGV;
}; info.si_code = SEGV_MAPERR;
info.si_addr = (void __user *)&jit_code_area[idx];
pr_warn("Unalign fixup: pid=%d %s jit_code_area=%llx\n", pr_warn("Unalign fixup: pid=%d %s jit_code_area=%llx\n",
current->pid, current->comm, current->pid, current->comm,
@ -1511,11 +1514,12 @@ void do_unaligned(struct pt_regs *regs, int vecnum)
* If so, we will trigger SIGBUS. * If so, we will trigger SIGBUS.
*/ */
if ((regs->sp & 0x7) || (regs->ex1) || (align_ctl < 0)) { if ((regs->sp & 0x7) || (regs->ex1) || (align_ctl < 0)) {
siginfo_t info = { siginfo_t info;
.si_signo = SIGBUS,
.si_code = BUS_ADRALN, clear_siginfo(&info);
.si_addr = (unsigned char __user *)0 info.si_signo = SIGBUS;
}; info.si_code = BUS_ADRALN;
info.si_addr = (unsigned char __user *)0;
if (unaligned_printk) if (unaligned_printk)
pr_info("Unalign fixup: %d %llx @%llx\n", pr_info("Unalign fixup: %d %llx @%llx\n",
@ -1535,11 +1539,13 @@ void do_unaligned(struct pt_regs *regs, int vecnum)
pc = (tilegx_bundle_bits __user *)(regs->pc); pc = (tilegx_bundle_bits __user *)(regs->pc);
if (get_user(bundle, pc) != 0) { if (get_user(bundle, pc) != 0) {
/* Probably never be here since pc is valid user address.*/ /* Probably never be here since pc is valid user address.*/
siginfo_t info = { siginfo_t info;
.si_signo = SIGSEGV,
.si_code = SEGV_MAPERR, clear_siginfo(&info);
.si_addr = (void __user *)pc info.si_signo = SIGSEGV;
}; info.si_code = SEGV_MAPERR;
info.si_addr = (void __user *)pc;
pr_err("Couldn't read instruction at %p trying to step\n", pc); pr_err("Couldn't read instruction at %p trying to step\n", pc);
trace_unhandled_signal("segfault in unalign fixup", regs, trace_unhandled_signal("segfault in unalign fixup", regs,
(unsigned long)info.si_addr, SIGSEGV); (unsigned long)info.si_addr, SIGSEGV);

View File

@ -3163,8 +3163,9 @@ do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
static int do_tkill(pid_t tgid, pid_t pid, int sig) static int do_tkill(pid_t tgid, pid_t pid, int sig)
{ {
struct siginfo info = {}; struct siginfo info;
clear_siginfo(&info);
info.si_signo = sig; info.si_signo = sig;
info.si_errno = 0; info.si_errno = 0;
info.si_code = SI_TKILL; info.si_code = SI_TKILL;