linux 内核调用用户程序

在CentOS 7.4上进行实验,探讨如何从Linux内核调用用户程序。参考了相关内核API教程,通过示例代码说明在执行如echo到文件的操作时遇到的问题,可能是由于缺少终端和标准输出导致。为避免insmod加载模块时签名错误,需在Makefile中设置CONFIG_MODULE_SIG=n。
摘要由CSDN通过智能技术生成

实验环境:

CentOS Linux release 7.4.1708,3.10.0-693.el7.x86_64

 

参考:

内核 API,第 1 部分:从内核调用用户空间应用程序

https://www.ibm.com/developerworks/cn/linux/l-user-space-apps/index.html

 

demo:

#include <linux/module.h>

static int umh_test( void )
{
	struct subprocess_info *sub_info;
	char *argv[] = { "/usr/bin/touch", "/abc.txt", NULL };
	static char *envp[] = {
	    "HOME=/",
	    "TERM=linux",
	    "PATH=/sbin:/bin:/usr/sbin:/usr/bin", NULL };

	sub_info = call_usermodehelper_setup( argv[0], argv, envp, GFP_KERNEL , NULL, NULL, NULL);
	if (sub_info == NULL) {
		printk("call_usermodehelper_setup error");
		return -ENOMEM;
	}

	return call_usermodehelper_exec( sub_info, UMH_WAIT_PROC );
}

s
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值