How do I use a Linux System call from a Linux Kernel Module

百般思念 提交于 2019-11-29 14:42:45
Sasi

You can directly call sys_mycall.

#include <linux/module.h>
#include <linux/unistd.h>


static int start_init(void)
{
   long value = sys_mycall (pass_arguments)
   printk("The value is %ld\n",value);

   return 0;
}

static void finish_exit(void)
{
      printk("Done!\n");
}

module_init(start_init);
module_exit(finish_exit);

Most of system calls uses asmlinkage , which means find the arguments on the stack rather than registers. Make sure that , when you call system call , pass the arguments on stack.

Also lot many system calls just uses copy_from_user. If you pass kernel address into such system call , they do fail.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!