运行时 C 函数详细信息
有没有办法在运行时或从任何方法中找到特定 C 语言函数的输入和输出参数,而无需知道标头。
它是一个框架,没有头文件。我用IDA Pro反编译它,它给了我函数名称,但没有输入和输出参数信息。
我可以使用 dlsym 加载这些私有函数。
是否可以在运行时(C 语言或 Objective C)或 IDA Pro 中找到参数信息?
问候,
拉古
Is there any way to find particular C language function's input and output parameters from a framework (apple's ARM) during the runtime or from any method with out knowing the headers.
It is a framework and there are no header files for it.I decompile it with IDA Pro and it gives me the function names but not input and output parameters information.
I am able to load those private functions using dlsym.
Is it possible to find the parameters info in runtime (C language or Objective C) or from IDA Pro ?
Regards,
Raghu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为,如果没有调试信息或其他东西,几乎不可能。如果传递了一些结构体或指针,无论如何,您将无法从反汇编中猜测它们的含义(可以猜测一些类型,例如浮点数,但仅此而已)
Almost impossible without debug information or something, i think. If there are some structs passed, or pointers, you won't be able to guess their meaning from disassembly, anyway (it could be possible to guess a few types, such as floats, but no more)