如何获取当前进程的起始地址---Linux

发布于 2024-11-06 08:59:02 字数 63 浏览 0 评论 0原文

你们能告诉我如何在linux上获取当前进程的起始虚拟地址吗?有什么系统调用或设施会有帮助吗?任何指导将不胜感激。

Could you guys tell me how to get the start virtual address of the current process on linux? Any systems calls or facilities that would be helpful? Any guidance would be highly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

指尖上得阳光 2024-11-13 08:59:02

检查 objdump 是如何获取该地址的。然后在您自己的代码中的 /proc/self/exe 上运行它。

% objdump -f /proc/self/exe             

/proc/self/exe:     file format elf64-x86-64
architecture: i386:x86-64, flags 0x00000112:
EXEC_P, HAS_SYMS, D_PAGED
start address 0x0000000000402f80

Check what does objdump do to get that address. Then run it on /proc/self/exe in your own code.

% objdump -f /proc/self/exe             

/proc/self/exe:     file format elf64-x86-64
architecture: i386:x86-64, flags 0x00000112:
EXEC_P, HAS_SYMS, D_PAGED
start address 0x0000000000402f80
阳光①夏 2024-11-13 08:59:02

'grep'ing lsof 的输出怎么样?

lsof | grep <insert name of the program here>

How about 'grep'ing the output of lsof?

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