lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Mon, 5 Jul 2010 18:39:44 -0600
From:	Jeffrey Merkey <jeffmerkey@...il.com>
To:	linux-kernel@...r.kernel.org
Subject: 2.6.34 FSAVE floating point instruction causes BUG! condition memory 
	allocation from coprocessor interrupt context

The function "save_npx" below will trigger the coprocessor exception
interrupt to allocate memory from a bad context and
report a bug.  Shows up under extremely heavy load, but normally does
not happen.  Does not crash the system just
spills out garbage into the dmesg logs.  Definitely a bug in Linux in
how the coprocessor is handled when a floating point
instruction is executed and the chip has not been setup yet.

void save_npx(NUMERIC_FRAME *v)
{
    __asm__ __volatile__("fsave %0":"=m"(*v));
}

void load_npx(NUMERIC_FRAME *v)
{
    __asm__ __volatile__("frstor %0":"=m"(*v));
}

Jul  5 16:45:48 cloudstream kernel: SysRq : MDB
Jul  5 16:45:48 cloudstream kernel: BUG: sleeping function called from
invalid context at mm/slub.c:1705
Jul  5 16:45:48 cloudstream kernel: in_atomic(): 1, irqs_disabled():
0, pid: 5661, name: bash
Jul  5 16:45:48 cloudstream kernel: Pid: 5661, comm: bash Tainted: P
        2.6.34 #1
Jul  5 16:45:48 cloudstream kernel: Call Trace:
Jul  5 16:45:48 cloudstream kernel:  [<804ad54b>] ? kmem_cache_alloc+0x35/0xe1
Jul  5 16:45:48 cloudstream kernel:  [<804082ff>] ? init_fpu+0xcf/0x142
Jul  5 16:45:48 cloudstream kernel:  [<80692f68>] ?
do_device_not_available+0x0/0x40
Jul  5 16:45:48 cloudstream kernel:  [<804082ff>] ? init_fpu+0xcf/0x142
Jul  5 16:45:48 cloudstream kernel:  [<80692f68>] ?
do_device_not_available+0x0/0x40
Jul  5 16:45:48 cloudstream kernel:  [<80402d4f>] ? math_state_restore+0x15/0x2b
Jul  5 16:45:48 cloudstream kernel:  [<80692f9d>] ?
do_device_not_available+0x35/0x40
Jul  5 16:45:48 cloudstream kernel:  [<8069287a>] ? error_code+0x66/0x6c
Jul  5 16:45:48 cloudstream kernel:  [<80692f68>] ?
do_device_not_available+0x0/0x40
Jul  5 16:45:48 cloudstream kernel:  [<9e9a4ffa>] ? save_npx+0x0/0x4 [mdb]
Jul  5 16:45:48 cloudstream kernel:  [<9e9ab75f>] ?
debugger_entry+0x68/0x259 [mdb]
Jul  5 16:45:48 cloudstream kernel:  [<9e9868f3>] ? mdb+0x96/0xc1 [mdb]
Jul  5 16:45:48 cloudstream kernel:  [<9e986a39>] ? mdb_notify+0x11b/0x14e [mdb]
Jul  5 16:45:48 cloudstream kernel:  [<8069495f>] ?
notifier_call_chain+0x2a/0x47
Jul  5 16:45:48 cloudstream kernel:  [<806949a5>] ?
__atomic_notifier_call_chain+0x29/0x4f
Jul  5 16:45:48 cloudstream kernel:  [<806949d4>] ?
atomic_notifier_call_chain+0x9/0xc
Jul  5 16:45:48 cloudstream kernel:  [<80694a07>] ? notify_die+0x30/0x34
Jul  5 16:45:48 cloudstream kernel:  [<80692fc4>] ? do_int3+0x1c/0x68
Jul  5 16:45:48 cloudstream kernel:  [<80692a19>] ? int3+0x29/0x30
Jul  5 16:45:48 cloudstream kernel:  [<9e9b007b>] ?
print_insn+0x1278/0x1423 [mdb]
Jul  5 16:45:48 cloudstream kernel:  [<9e9a5e35>] ? mdb_breakpoint+0x1/0x2 [mdb]
Jul  5 16:45:48 cloudstream kernel:  [<805a09a3>] ? __handle_sysrq+0x83/0xfa
Jul  5 16:45:48 cloudstream kernel:  [<805a0a1a>] ? write_sysrq_trigger+0x0/0x3e
Jul  5 16:45:48 cloudstream kernel:  [<805a0a51>] ?
write_sysrq_trigger+0x37/0x3e
Jul  5 16:45:48 cloudstream kernel:  [<804e6297>] ? proc_reg_write+0x60/0x73
Jul  5 16:45:48 cloudstream kernel:  [<804e6237>] ? proc_reg_write+0x0/0x73
Jul  5 16:45:48 cloudstream kernel:  [<804b12df>] ? vfs_write+0x83/0x12e
Jul  5 16:45:48 cloudstream kernel:  [<804b1896>] ? sys_write+0x3c/0x63
Jul  5 16:45:48 cloudstream kernel:  [<804026cc>] ? sysenter_do_call+0x12/0x22
Jul  5 16:46:02 cloudstream kernel: SysRq : MDB
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ