运行时 C 函数详细信息

发布于 2024-08-25 19:41:43 字数 216 浏览 3 评论 0原文

有没有办法在运行时或从任何方法中找到特定 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿透光 2024-09-01 19:41:44

我认为,如果没有调试信息或其他东西,几乎不可能。如果传递了一些结构体或指针,无论如何,您将无法从反汇编中猜测它们的含义(可以猜测一些类型,例如浮点数,但仅此而已)

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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文