IDA - 已发现正sp值错误

时间:2012-04-15 19:53:37

标签: ida disassembly

我们有一个DLL,我们已经丢失了源代码,因此我试图通过IDA Dissembler弄清楚它是如何工作的。但是,似乎有一些我无法访问的功能,因为我收到以下错误:

Decompilation failure:
46AFAF: positive sp value has been found

在IDA网站上查看:

The stack pointer at the specified address is higher than the initial stack pointer.
Functions behaving so strangely can not be decompiled. If you see that the stack
pointer values are incorrect, modify them with the Alt-K (Edit, Functions, Change
stack pointer) command in IDA. 

http://www.hex-rays.com/products/decompiler/manual/failures.shtml#04

由于我是整个Dissembling场景的新手,任何人都能够提供更多信息,说明是什么原因导致堆栈指针高于初始堆栈指针以及这是否可以修复。 谢谢你的时间

1 个答案:

答案 0 :(得分:16)

这通常在函数有多个返回时发生,而ida没有捕获到它。 解决方案是使用alt-k将stackpointer偏移量更改回所需的值。

ARM代码示例:

.text:00012A10                 MOV     R0, #1          ; -0xd0 + 0
.text:00012A14                 ADD     SP, SP, #0xC8   ; -0xd0 + 0xc8
.text:00012A18                 LDMFD   SP!, {R4,PC}    ; -0x08 - 0xc8 <<< modified
.text:00012A1C ; ---------------------------------------------------------------------------
.text:00012A1C
.text:00012A1C loc_12A1C                               ; CODE XREF: sub_129E4+20j
.text:00012A1C                 MOV     R3, #0          ; -0xd0 + 0

在评论中我写了alt-k值。 在0x12A18处,sp偏移被重新调整回-0xd0