首页
社区
课程
招聘
[转帖]一个汇编指令:JL,所引发的深思
发表于: 2009-3-19 19:57 9832

[转帖]一个汇编指令:JL,所引发的深思

2009-3-19 19:57
9832

一个汇编指令:JL,所引发的深思
在RCE论坛上看到,值得学习,所以引用到这里了!
帖子的地址是:http://www.woodmann.com/forum/showthread.php?t=12464。
主题全文引用如下(作者是:nezumi-lab  ):引用:
months ago Bow Sineath (a very clever reverser!) asked me: “does JL [jump is less] instruction check ZF flag?” I said: “well, give me a second to think, well, it’s supposed to check it, otherwise it would act like JLE [jump if less or equal] and besides, JL is synonym of JNGE (jump if not great or equal), so JL should check ZF!“.

but, according to Intel’ manuals JL and JNGE check only if SF != OF. CMOVL/CMOVNGE work the same way. at that time I thought that it’s just a documentation bug and even pointed this out in my presentation on HITB 2008 conference.

fragment of Intel' manual

but I was wrong!!! I have checked it and found out that JL/JNGE does not check ZF flag!!! to do this I wrote extremely simple POC (if you’re too lazy to type, download source and binary):

__asm
{
mov eax, 002C2h ; S = 1, O = 0, Z = 1
push eax
popfd
jl jump_is_taken ; ==>
mov p, offset noo
jump_is_taken:
}

mov eax, 2C2h/push eax/popfd set SF with ZF and clear OF. so, SF != OF, but ZF is set. what CPU is going to do? easy to check with Olly! just load the program and start tracing. ops!!! JL is taken!!! JL ignores ZF!!! x86emu (plug-in for IDA-Pro) acts the same. didn’t check other emulators yet.

well, it’s interesting. why JL (and similar commands) ignores ZF?! guess, normal CPU command (like TEST/CMP/XOR/etc) never set ZF if result is less, so JL just ignores it. but… if we set flags manually or use other tricks… it becomes a real trap!!! consider the listing above and ask your co-worker: is the jump taken or not? I’m sure, some of them will answer: of course, the jump is not going to be taken! a good anti-reversing trick!!! I just wonder - how software is still working on buggy hardware.
   JLOlly.gif (21.6 KB)

2009-3-2 20:55三楼的回复也不错,一并引用下来(作者是:deroko ):引用:
supposed to check Z flag? In intel manual it says it's not supposed to check it and it's logical, it only deals with signed comparasion. You can't get S if you use cmp on 2 negative numbers which are the same, -1 for example, but you will get S flags if you compare 0FFFFFFFE(-2) and 0FFFFFFFF(-1), it's lower. also try for example this : 0FFFFFFFF (-1) compared with 1, you will get S flag as -1 is lower then 1, but CF will be cleared as in unsigned comparasion 0FFFFFFFFh is bigger then 1.
so it's not a bug really


[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

上传的附件:
收藏
免费 7
支持
分享
最新回复 (1)
雪    币: 2110
活跃值: (21)
能力值: (RANK:260 )
在线值:
发帖
回帖
粉丝
2
原作者已经说出了原因,正常情况下,ZF标志与SF标志不可能同时置位,所以002C2h实际上是个“不可能”的标志寄存器值。

这样来看,也可以算是一个BUG,但不是JL指令的问题,而是POPF指令的问题(合法性检查不够)。如果设置EFLAGS的指令(指POPF指令)检测并处理(比如产生一个异常)这种错误,那么就不会有文中描述的问题出现了。
2009-3-19 22:53
0
游客
登录 | 注册 方可回帖
返回
//