我正在某些应用程序中注入一个dylib以获得某些期望的行为.
我能够正确地连接平面C API.一旦我注入了dylib,我会在符号表中查看并使用我的函数地址更新其条目,然后调用原始函数.
因此,符号名称对我来说很重要.
我的问题是C名称错误.我们如何挂钩名称已被破坏的C函数.我读了堆栈溢出的一些地方,可以用mach_override挂钩c代码,但没有示例或引用.
有人能给我举例说明如何实现C的挂钩吗?
编辑:
我使用$c filt -n _ZN10WindowData12GetCGContextEv作为示例,得到了输出为WindowData :: GetCGContext()
> WindowData是类还是名称空间?
>我怎么挂钩?我需要一些前向声明和外部函数来正确使用WindowData :: GetCGContext()进行挂钩.
这样的东西……
typedef void* (*WindowData_GetCGContextProcPtr)(void* inObj); static WindowData_GetCGContextProcPtr gWindowDataGetCGContextProcPtr = NULL; void* try_WindowDataGetCGContextProcPtr(void* inObj) { printf("try_WindowDataGetCGContextProcPtr \n"); return gWindowDataGetCGContextProcPtr(inObj); }
现在,我想补丁这个方法.
gWindowDataGetCGContextProcPtr = (WindowData_GetCGContextProcPtr)Patch((const void*)&WindowData::GetCGContext,(const void*)&try_WindowDataGetCGContextProcPtr);
此修补程序提供编译错误.
error: 'WindowData' has not been declared error: 'GetCGContext' was not declared in this scope
我怎么解决?