char device catch multiple(int)ioctl-arguments

时间:2012-01-13 10:54:11

标签: c linux kernel handler ioctl

我必须编写一个linux char设备,它根据unlock_ioctl处理ioctl(没有BKL)函数。目前,我可以从每个

的userspace ioctl命令接收一个参数
__get_user(myint, (int __user *) arg);

如何接收多个int-arguments(例如此调用)?:

ioctl(fp, SZ_NEW_DEV_FORMAT, 0, 1, 30);

1 个答案:

答案 0 :(得分:5)

是的,你必须使用结构。对于特定的ioctl命令,将有一些预定义的参数。您需要将所有参数包装到结构对象中并传入对象的地址。在内核中,您需要将给定的arg类型转换为结构指针并访问参数。例如。

 struct mesg {
         int size;
         char buf[100];
 };

 struct mesg msg1;

 /*Fill in the structure object here and call ioctl like this*/
 ret = ioctl(fd, SZ_NEW_DEV_FORMAT, &msg1);

在内核中,您可以像这样访问它:

      struct mesg *msg;
      copy_from_user((char *)msg, (char *)arg, sizeof(*msg));