64位Linux上程序/指令指针(RIP)和基址/帧指针(RBP)之间的关系

发布于 2024-09-08 15:34:01 字数 243 浏览 4 评论 0原文

我需要一些帮助来检索 Linux 64 位 机器上调用堆栈的指令指针 (RIP)。我可以使用 ptrace 遍历堆栈并检索所有帧/基指针(RBP)值。但由于我想要IP值,RIP和RBP之间的算术和概念关系是什么。 我假设 RIP 值存储在 (RBP + 8) 位置,并且可以使用 ptrace PEEKDATA 读取它。我的假设正确吗?

i need some help on retrieving Instruction pointers(RIP) of a call stack on Linux 64 bit machine. i can traverse the Stack using ptrace and retrieve all Frame/Base pointer(RBP) values. but as i want IP values, what is the arithmetic and conceptual relationship between RIP and RBP. i assume that RIP value is stored at (RBP + 8) location and a can read it using ptrace PEEKDATA. is my assumption correct?

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

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

发布评论

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

评论(1

狼亦尘 2024-09-15 15:34:01

压入堆栈的任何返回地址只会为您提供当前正在运行的函数返回后开始的 %rip,而不是当前正在执行的函数的 %rip。您应该能够像 GDB 一样获取当前的 %rip

  • 理想情况下,您的平台支持 PTRACE_GETREGSPTRACE_GETREGSET 参数。您的联机帮助页和头文件应该可以帮助您完成剩下的工作。
  • 如果失败,您应该能够使用带有适当偏移量的 PTRACE_PEEKUSER 参数从用户区域获取寄存器。

您可以在 GDB 源代码树中的 gdb/amd64-linux-nat.c 中查看详细信息。

Any return address pushed on the stack will only get you the %rip starting after the currently running function returns, not the %rip of the currently executing function. You should be able to get your hands on the current %rip the same way GDB does:

  • Ideally, your platform supports the PTRACE_GETREGS or PTRACE_GETREGSET argument. Your manpage and the header file should get you the rest of the way from here.
  • Failing that, you should be able to use the PTRACE_PEEKUSER argument with the appropriate offset to grab the register from the user area.

You can look at the gorey details in gdb/amd64-linux-nat.c in the GDB source tree.

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