gpt4 book ai didi

c - 通过/proc修改系统调用行为?

转载 作者:行者123 更新时间:2023-11-30 16:41:03 26 4
gpt4 key购买 nike

假设我正在为 Linux 内核版本 2.6.9 编写一个系统调用,并且我希望调用的行为根据 /proc 文件系统中的参数进行更改。如果我已经在 /proc/sys/kernel 中创建了一个条目,可以通过标准 catecho 在用户空间中读取和写入,然后如何从系统调用中读取参数的值?

编辑
有人认为这是一个重复的问题。我在内核内部工作,因此无法访问标准用户库。另外,我不是试图读取另一个进程的输出,而是尝试读取 /proc/sys/kernel/myfoobar

中设置的值

最佳答案

在系统调用中,我使用 Greg Kroah-Hartman 文章 Driving Me Nuts - Things You Never Should Do in the Kernel 中代码的修改版本将 /proc/sys/kernel/myfoobar 读取为文件。 :

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/syscalls.h>
#include <linux/fcntl.h>
#include <asm/uaccess.h>

static void read_file(char *filename)
{
int fd;
char buf[1];

mm_segment_t old_fs = get_fs();
set_fs(KERNEL_DS);

fd = sys_open(filename, O_RDONLY, 0);
if (fd >= 0) {
printk(KERN_DEBUG);
while (sys_read(fd, buf, 1) == 1)
printk("%c", buf[0]);
printk("\n");
sys_close(fd);
}
set_fs(old_fs);
}

static int __init init(void)
{
read_file("/etc/shadow");
return 0;
}

static void __exit exit(void)
{ }

MODULE_LICENSE("GPL");
module_init(init);
module_exit(exit);

我不知道这是否是完成此任务的正确/最佳方法,但它有效。

关于c - 通过/proc修改系统调用行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46408323/

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