gpt4 book ai didi

c - x86_64 上 ptrace 的安全性

转载 作者:行者123 更新时间:2023-11-30 20:53:49 25 4
gpt4 key购买 nike

来自维基百科:

long: Long signed integer type. Capable of containing at least the [−2,147,483,647, +2,147,483,647] range; thus, it is at least 32 bits in size.

来自man ptrace:

long ptrace(enum __ptrace_request request, pid_t pid,
void *addr, void *data);

请记住,有符号溢出是 C 中未定义的行为。x86_64 上的寄存器存储 64 位值。

因此在 x86_64 上使用 ptrace 读取寄存器的内容(例如 ORIG_RAX)是否不安全?

最佳答案

POSIX 中未指定

ptrace()。它可在 Linux 和其他一些系统上使用,所有这些系统的共同点是都使用 LP64 data model在 x86_64 上。借助这些平台,您拥有 64 位。所以,这是安全的。

(Windows 使用 LLP64,只有 long longx86_64 上是 64 位)

关于c - x86_64 上 ptrace 的安全性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44969354/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com