当分配struct file_operations字段时,从不兼容的指针类型中初始化。

问题描述 投票:0回答:1

我正在写一个Linux设备驱动器,我很困惑为什么会收到这个警告。

error: initialization from incompatible pointer type [-Werror=incompatible-pointer-types]
  .write = file_write,

这是我创建的代码,当我使用make命令时,我得到了上述错误。我试着改变了 ssize_tint 但我还是得到了同样的错误。

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

MODULE_LICENSE("NIKS");


static char msg[100]={0};
static short readPos =0;

static int file_open(struct inode * , struct file *);
static int file_release(struct inode * , struct file *);
static ssize_t file_read(struct file *, char *, size_t,loff_t * );
static ssize_t file_write(struct file *, char *, size_t,loff_t * );

static struct file_operations fo = 
{
    .read = file_read,
    .open = file_open,
    .write = file_write,
    .release = file_release,
};

int init_module(void)
{
    int t = register_chrdev(150,"encdev",&fo);
    if(t<0)
    {
        printk("error");
    }
    else
    {
        printk("success");
    }
    return t;
}

void cleanup_module(void)
{
    unregister_chrdev(150,"encdev");
}

static int file_open(struct inode *in , struct file *fil)
{
    return 0;
}

static ssize_t file_read(struct file *fil, char *buf, size_t len,loff_t *off )
{
    short count=0;
    printk("here %d",msg[0]!=0);
    while(len && (msg[readPos]!=0))
    {
        printk("read");
        put_user(msg[readPos],buf++);
        count++;
        len--;
        readPos++;
    }
    return count;
}

static ssize_t file_write(struct file *fil, char *buf, size_t len,loff_t *off )
{
    short ind = 0;
    short count =0;
    memset(msg,0,100);
    readPos = 0;
    int i =0;
    char bytes[16];
    char rand;
    while(i<16)
    {
        get_random_bytes(&rand, sizeof(rand));
        bytes[i]=rand;
        ++count;
        i++;
    }
    int _len = len+16;
    while(_len>0 || count%16){
        if(ind<16) msg[ind] = bytes[ind];
        else{
            msg[ind] = (_len>0?buf[ind-16]:'@')^msg[ind-16];
        }
        ++ind;
        --_len;
        ++count;
    }
    return count;

}

static int file_release(struct inode *in , struct file *fil)
{
    printk("done");
    return 0;
}

我是C语言的新手,我只是不明白为什么我会收到这个警告。谁能解释一下为什么我会收到这个警告,以及该怎么做?

c linux linux-kernel kernel kernel-module
1个回答
0
投票

的正确类型。readwrite 的功能指针 struct file_operations 是。

ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);

因此,在你的模块中,适当的签名是:

static ssize_t file_read(struct file *, char __user *, size_t, loff_t *);
static ssize_t file_write(struct file *, const char __user *, size_t, loff_t *);

// ...

static ssize_t file_read(struct file *fil, char __user *buf, size_t len,loff_t *off)
{

// ...

static ssize_t file_write(struct file *fil, const char __user *buf, size_t len, loff_t *off)
{

缺少的重要部分是... const 修饰符,但同样重要的是要记住,任何从用户空间传递的指针都应该用 __user 注解(尽管编译器不会在你忘记它的情况下警告你,但它只是用来作为对 稀疏).


你还有几个声明在其他规约后面,这在C90中是无效的。编译器会警告你这些,按照警告的内容,把它们移到函数体的顶部。

© www.soinside.com 2019 - 2024. All rights reserved.