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>] [<thread-prev] [day] [month] [year] [list]
Date:	Mon, 03 Jan 2011 10:02:49 +0100
From:	Peter Zijlstra <peterz@...radead.org>
To:	Samson Yeung <samson@...tshare.com>
Cc:	Ingo Molnar <mingo@...e.hu>, linux-kernel@...r.kernel.org
Subject: Re: Kernel oops - help interpreting partial trace info

On Thu, 2010-12-30 at 08:35 -0800, Samson Yeung wrote:
> Code: 00 44 8b 15 23 76 68 00 45 85 d2 74 32 48 8b 50 08 8b 5a 18 48
> 8b 90 90 06 00 00 48 8b 4a 50 48 85 c9 74 1b 48 63 db 48 8b 51 20 <48>
> 03 14 dd 00 fb 74 81 4c 01 32 48 8b 49 58 48 85 c9 75 e8 48
> All code
> ========
>    0:   00 44 8b 15             add    %al,0x15(%rbx,%rcx,4)
>    4:   23 76 68                and    0x68(%rsi),%esi
>    7:   00 45 85                add    %al,-0x7b(%rbp)
>    a:   d2                      (bad)
> ...
> 
> Should (bad) ever be output by decodecode? 

Don't think so, my guess is the decoder started at a non ins boundary
and got confused. "85 d2" is "test %edx, %edx" and is something that
occurs quite frequently in the code. The following 74 is "je", which
makes sense after a "test".

"8b 15 xx xx xx xx" is "movl xx,%edx"

That however does leave us with a 45 unexplained, that's usually part of
a mem argument, its x(%ebp) like stuff.

Dunno really..
--
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