cat:写入错误:参数无效

cat:写入错误:参数无效

使用写入自定义字符设备

猫 123 > /dev/chardev

给出

cat:写入错误:参数无效

我已经将权限更改为666,甚至尝试使用sudo。结果还是一样。也以类似的方式尝试了 echo

我使用 Arch Linux 4.8。

编辑:驱动程序的代码

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <asm/uaccess.h>


//Prototypes
static int __init init(void);
static void __exit cleanup(void);
static int device_open(struct inode *,struct file *);
static int device_release(struct inode *, struct file *);
static ssize_t device_read(struct file *, char *, size_t, loff_t *);
static ssize_t device_write(struct file *, const char *, size_t, loff_t *);

#define SUCCESS 0
#define DEVICE_NAME "chardev" /* Dev name as it appears in /proc/devices*/
#define BUF_LEN 80 /* Max length of the message from the device */

static int Major; //Major number of the devices
static int Device_Open = 0;

static char msg[BUF_LEN]; //Message given when asked
static char *msg_Ptr;

static struct file_operations fops = {
    .read = device_read,
    .write = device_write,
    .open = device_open,
    .release = device_release
};

static int __init init(){
    Major = register_chrdev(0,DEVICE_NAME,&fops);
    if(Major < 0){
        printk(KERN_ALERT "Failure in registering the device. %d\n", Major);
        return Major;
  }
    printk(KERN_INFO "%s registered with major %d \n",DEVICE_NAME,Major);
    printk(KERN_INFO "create a device with 'mknod /dev/%s c %d 0'\n",DEVICE_NAME,Major);
    printk(KERN_INFO "Try to cat and echo the file and shit man.\n");
    return SUCCESS;
}

static void __exit cleanup(){
    unregister_chrdev(Major, DEVICE_NAME);
    printk(KERN_ALERT "Unregistered the device %s i guess? \n"DEVICE_NAME);
}   

static int device_open(struct inode *inode,struct file *file){
    static int counter = 0;
    if(Device_Open)
        return -EBUSY;

    Device_Open++;
    sprintf(msg, "I already told you %d times Hello world!\n", counter++);
    msg_Ptr = msg;
    try_module_get(THIS_MODULE);
    return SUCCESS;
}

static int device_release(struct inode *inode,struct file *file){
    Device_Open--;
    module_put(THIS_MODULE);
    return 0;
}

static ssize_t device_read(struct file *filp, char *buffer, size_t length, loff_t * offset){
    int bytes_read = 0;
    if(*msg_Ptr == 0)
        return 0;
    while(length && *msg_Ptr){
        put_user(*(msg_Ptr++),buffer++);
        length--;   
        bytes_read++;
    }
    return bytes_read;
}

static ssize_t device_write(struct file *filp,const char *buff, size_t len, loff_t *off){
    printk(KERN_ALERT "You cannot write to this device.\n");
    return -EINVAL;
}

module_init(init);
module_exit(cleanup);

所以在这里我们可以看到我什至使用了 device_write 函数并将其在 fops 结构中分配给 .write 。那么它不是应该接受写入命令并在日志中打印该语句吗?

答案1

在内核中,每个驱动程序都提供了一系列可以对文件执行的各种操作的方法:open、close、read、write、seek、ioctl 等。这些方法存储在一个struct file_operations。对于设备,这些方法由注册该特定设备(即块/字符、主设备号和次设备号的特定组合)的驱动程序提供。

驱动程序可能只实现其中的一些方法;提供了默认值。默认值通常不执行任何操作,并返回 success(如果对该方法不执行任何操作是明智的)或 EINVAL(如果没有合理的默认值并且缺少方法意味着不支持该功能)。

“Write error: Invalid argument”表示write驱动程序的方法返回EINVAL。最可能的解释是该驱动程序write根本没有方法。驱动程序不支持某些操作是相当常见的,例如,某些驱动程序仅支持 ioctl 且不支持读/写,某些驱动程序本质上是单向的(例如输入设备)且仅支持读而不支持写,反之亦然。

“无效参数”与权限无关,而是设备能够执行的操作。如果您没有写入权限,但您有与驱动程序对话的权限,则会收到权限错误。只是你要求司机做的事情是它没有概念的。

相关内容