gpt4 book ai didi

c - Root 执行 RDMSR 汇编代码时出现段错误

转载 作者:行者123 更新时间:2023-11-30 17:27:35 25 4
gpt4 key购买 nike

我想使用 root 权限直接从 C 代码读取 msr 0x19a (IA32_CLOCK_MODULATIOn)。但是,我收到以下段错误。

a.out[27843] general protection ip:40053b sp:7fffefc38020 error:0 in a.out[400000+1000]

有谁知道这种调用 rdmsr 的方式是否可行?

提前致谢!

#include <stdio.h>
#define __init

typedef unsigned uint32_t;
static int __init test3_init(void)
{
uint32_t hi,lo;
hi=0x0; lo=0x0;
asm volatile("mov $0x19a,%ecx");
asm volatile("rdmsr":"=a"(lo),"=d"(hi));
printf("exit_readmsr: hi=%08x lo=%08x\n",hi,lo);
return 0;
}

int main(void)
{
return test3_init();
}

顺便说一句,代码摘自 this回答。

最佳答案

这条指令必须在特权级别0执行。换句话说,你必须在内核内部。

关于c - Root 执行 RDMSR 汇编代码时出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26331730/

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