我认为我的问题可能看起来有点奇怪,但就是这样;我正在尝试在 C++ 中动态创建一个程序(主要是为了好玩,但也出于编程原因),它并不像听起来那么难。为此,您必须像这样在运行时使用程序集:
byte * buffer = new byte[5];
*buffer = '0xE9'; // Code for 'jmp'
*(uint*)(buffer + 1) = 'address destination'; // Address to jump to
这比看起来要容易得多,因为我只针对一个平台和编译器;带有 Linux 32 位的 GCC(也只有一个调用约定,cdecl)。所以我试图创建一个动态汇编函数来重定向来自触发器的调用,所以我可以使用类方法作为回调(即使使用 C API 库(当然使用 cdecl))。我只需要它来支持指针和本机类型(char、int、short 等......)。
ANYTHING MyRedirect(ANY AMOUNT ARGUMENTS)
{
return MyClassFunc('this', ANY AMOUNT ARGUMENTS);
}
上面的函数是我想在纯汇编中创建的函数(在 C++ 的内存中)。由于该函数非常简单,因此它的 ASM 也很简单(取决于参数)。
55 push %ebp
89 e5 mov %esp,%ebp
83 ec 04 sub $0x4,%esp
8b 45 08 mov 0x8(%ebp),%eax
89 04 24 mov %eax,(%esp)
e8 00 00 00 00 call <address>
c9 leave
c3 ret
所以在我的程序中,我创建了一个 ASM 模式生成器(因为我不是特别了解 ASM,所以我搜索模式)。这个函数可以通过指定函数需要的参数数量来生成汇编代码(以字节为单位,对于上面的确切情况,即重定向和返回的函数)。这是我的 C++ 代码的一个片段。
std::vector<byte> detourFunc(10 + stackSize, 0x90); // Base is 10 bytes + argument size
// This becomes 'push %ebp; move %esp, %ebp'
detourFunc.push_back(0x55); // push %ebp
detourFunc.push_back(0x89); // mov
detourFunc.push_back(0xE5); // %esp, %ebp
// Check for arguments
if(stackSize != 0)
{
detourFunc.push_back(0x83); // sub
detourFunc.push_back(0xEC); // %esp
detourFunc.push_back(stackSize); // stack size required
// If there are arguments, we want to push them
// in the opposite direction (cdecl convention)
for(int i = (argumentCount - 1); i >= 0; i--)
{
// This is what I'm trying to implement
// ...
}
// Check if we need to add 'this'
if(m_callbackClassPtr)
{
}
}
// This is our call operator
detourFunc.push_back(0xE8); // call
// All nop, this will be replaced by an address
detourFunc.push_back(0x90); // nop
detourFunc.push_back(0x90); // nop
detourFunc.push_back(0x90); // nop
detourFunc.push_back(0x90); // nop
if(stackSize == 0)
{
// In case of no arguments, just 'pop'
detourFunc.push_back(0x5D); // pop %ebp
}
else
{
// Use 'leave' if we have arguments
detourFunc.push_back(0xC9); // leave
}
// Return function
detourFunc.push_back(0xC3); // ret
如果我指定零作为stackSize
这将是输出:
55 push %ebp
89 e5 mov %esp,%ebp
e8 90 90 90 90 call <address>
5d pop %ebp
c3 ret
如您所见,这是完全有效的 32 位 ASM,如果它的参数为零且不需要“this”指针,它将充当“MyRedirect”。问题是,我想实现生成 ASM 代码的部分,具体取决于我指定的“重定向”函数将接收的参数数量。我已经在我的小 C++ 程序中成功地做到了这一点(破解了模式)。
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
int val = atoi(argv[1]);
printf("\tpush %%ebp\n");
printf("\tmov %%esp,%%ebp\n");
if(val == 0)
{
printf("\tcall <address>\n");
printf("\tpop %%ebp\n");
}
else
{
printf("\tsub $0x%x,%%esp\n", val * sizeof(int));
for(int i = val; i > 0; i--)
{
printf("\tmov 0x%x(%%ebp),%%eax\n", i * sizeof(int) + sizeof(int));
printf("\tmov %%eax,0x%x(%%esp)\n", i * sizeof(int) - sizeof(int));
}
printf("\tcall <address>\n");
printf("\tleave\n");
}
printf("\tret\n");
return 0;
}
此函数打印出与“objdump”生成的 ASM 代码完全相同的模式。所以我的问题是;如果我只想要上述重定向功能,无论参数如何,如果它仅在 Linux 32 位下,这在所有情况下都有效,还是我需要了解任何陷阱?例如; 生成的 ASM 是否会与“shorts”或“chars”不同,或者这会起作用(我只用整数测试过),以及如果我调用一个返回“void”的函数(这将如何影响 ASM)?
我可能已经解释了一切有点模糊,所以请询问而不是任何误解:)
注意:我不想知道替代方案,我喜欢我当前的实现,并认为这是一个非常有趣的实现,我非常感谢你在这个主题上的帮助。
编辑:如果有兴趣,这里是上述 C++ 代码的一些转储:链接