HexRays - “__OFSUB__()”的目的是啥?
Posted
技术标签:
【中文标题】HexRays - “__OFSUB__()”的目的是啥?【英文标题】:HexRays - what is "__OFSUB__()" purpose?HexRays - “__OFSUB__()”的目的是什么? 【发布时间】:2015-08-10 12:45:05 【问题描述】:在以下使用 Ida pro 的 Hex 射线反编译的函数中:
int sub_409650()
int v0; // ecx@1
int result; // eax@1
bool v2; // zf@1
bool v3; // sf@1
unsigned __int8 v4; // of@1
unsigned __int16 v5; // cx@2
unsigned int v6; // ecx@2
v0 = gS1_dword_62EEA8 & 7;
result = gS1_dword_62EEA8 - v0;
v4 = __OFSUB__(gS1_dword_62EEA8 - v0, 16);
v2 = gS1_dword_62EEA8 - v0 == 16;
v3 = gS1_dword_62EEA8 - v0 - 16 < 0;
gS1_dword_62EEA8 -= v0;
gs2_dword_62EFB4 >>= v0;
if ( (unsigned __int8)(v3 ^ v4) | v2 )
v5 = *dword_62EFB0;
++dword_62EFB0;
v6 = (v5 << result) | gs2_dword_62EFB4;
result += 16;
gs2_dword_62EFB4 = v6;
gS1_dword_62EEA8 = result;
return result;
它调用__OFSUB__
,但这有什么作用?我认为这与溢出有关 - 但如果这是真的,那么为什么不是条件:
// Checking if subtracting v0 is 16 or negative?
if ( v3 | v2 )
更新:原始 asm 是(现在重命名了一些东西):
.text:00409650 sub_409650 proc near
.text:00409650 mov eax, gBitCounter_62EEA8
.text:00409655 push esi
.text:00409656 mov esi, gFirstAudioFrameDWORD_dword_62EFB4
.text:0040965C mov ecx, eax
.text:0040965E and ecx, 7
.text:00409661 shr esi, cl
.text:00409663 sub eax, ecx
.text:00409665 cmp eax, 10h
.text:00409668 mov gBitCounter_62EEA8, eax
.text:0040966D mov gFirstAudioFrameDWORD_dword_62EFB4, esi
.text:00409673 jg short loc_4096A5
.text:00409675 mov edx, gAudioFrameDataPtr
.text:0040967B xor ecx, ecx
.text:0040967D mov cx, [edx]
.text:00409680 add edx, 2
.text:00409683 mov esi, ecx
.text:00409685 mov ecx, eax
.text:00409687 shl esi, cl
.text:00409689 mov ecx, gFirstAudioFrameDWORD_dword_62EFB4
.text:0040968F mov gAudioFrameDataPtr, edx
.text:00409695 or ecx, esi
.text:00409697 add eax, 10h
.text:0040969A mov gFirstAudioFrameDWORD_dword_62EFB4, ecx
.text:004096A0 mov gBitCounter_62EEA8, eax
.text:004096A5
.text:004096A5 loc_4096A5: ; CODE XREF: sub_409650+23j
.text:004096A5 pop esi
.text:004096A6 retn
.text:004096A6 sub_409650 endp
【问题讨论】:
那么为什么代码也有 v3 = gS1_dword_62EEA8 - v0 - 16 也想提供组装吗? 我在 asm 列表中进行了编辑 【参考方案1】:没有什么好说的。 HexRays 在将这个函数反编译为清晰的东西方面做得很糟糕,但它没有出错。
给定程序集的快速分析:
mov eax, gBitCounter_62EEA8 ; eax = gBitCounter_62EEA8
push esi
mov esi, gFirstAudioFrameDWORD_dword_62EFB4 ; esi = gFirstAudioFrameDWORD_dword_62EFB4
mov ecx, eax
and ecx, 7
; esi = gFirstAudioFrameDWORD_dword_62EFB4 >> (gBitCounter_62EEA8 & 7)
; i.e, esi got shiftted by the 3 LSB's of gBitCounter_62EEA8
shr esi, cl
; eax = gBitCounter_62EEA8 - (gBitCounter_62EEA8 & 7)
sub eax, ecx
cmp eax, 10h
; gBitCounter_62EEA8 -= gBitCounter_62EEA8 & 7
mov gBitCounter_62EEA8, eax
; gFirstAudioFrameDWORD_dword_62EFB4 >>= gBitCounter_62EEA8 & 7
mov gFirstAudioFrameDWORD_dword_62EFB4, esi
; if gBitCounter_62EEA8 > 0x10 return;
jg short loc_4096A5
; else... continue work
....
loc_4096A5: ; CODE XREF: sub_409650+23j
pop esi
retn
更好的反编译应该是:
gBitCounter_62EEA8 -= gBitCounter_62EEA8 & 7
gFirstAudioFrameDWORD_dword_62EFB4 >>= gBitCounter_62EEA8 & 7
if (gBitCounter_62EEA8 > 0x10)
return;
else
// rest of code
但是,您可能会注意到 HexRays 逆转了这种情况。它产生了这个条件:
if ( (unsigned __int8)(
(gBitCounter_62EEA8 - 16 < 0) ^
(__OFSUB__(gBitCounter_62EEA8 - (gBitCounter_62EEA8 & 7), 16))) // when this is actually the gBitCounter_62EEA8 var before modifications
|
(gBitCounter_62EEA8 == 16) )
根据Intel's reference,如果ZF = 0 and SF = OF
,则采用jg
。
条件密切代表它:
Counter == 16
- 表示ZF = 0
所以jg
不被占用
Counter < 16 XOR __OFSUB__(gBitCounter_62EEA8 - (gBitCounter_62EEA8 & 7), 16)
,表示:
Counter < 16
(我们称它为 A) - 这意味着 SF=1
__OFSUB__(gBitCounter_62EEA8 - (gBitCounter_62EEA8 & 7), 16)
(我们叫B)这意味着OF=1
如果A=true
和B=false
表示SF=1,OF=0 => SF!=OF
。如果A=false
和B=true
表示SF=0,OF=1 = > SF!=OF
,表示如果A^B
然后SF!=OF
,表示如果A^B => jg not taken
。
一般来说,如果jg
没有被占用,那么“其余代码”就会被执行。
我希望这有助于您理解 HexRays 的行为。它的反编译是正确的但非常多余(它没有清除它可以清除的大量垃圾)并且它无法预测确定条件的适当方法(它采用了更“困难”的路径)
【讨论】:
但是如果 (gBitCounter_62EEA8 @paulm 我不知道。但它没有犯错误。它只是“不够聪明”,或者是以这种方式构建的。以上是关于HexRays - “__OFSUB__()”的目的是啥?的主要内容,如果未能解决你的问题,请参考以下文章