我已经编写了一个内核模块,可以读取和写入/proc文件,并且工作正常。现在,我想对其使用权限,但是当我为下面显示的权限编写函数时,它给了我一个错误。目标是使每个人都能够读取文件,但只有root可以写入该文件。

int my_permission(struct inode *inode, int op)
{
    if(op == 4||(op == 2 && current->euid = 0)) //euid is not a member of     task_struct
        return 0;
    return -EACCES;
}

const struct inode_operations my_iops = {
    .permission = my_permission,
};

我得到的错误是:
/home/karan/practice/procf/testproc1.c: In function ‘my_permission’:
/home/karan/practice/procf/testproc1.c:50:32: error: ‘struct task_struct’ has no member named ‘euid'

我知道current是#定义为get_current()。为什么会这样呢?是否有从get_current()返回的结构的成员列表?

最佳答案

struct task_struct在内核源代码树的include/linux/sched.h中定义,您可以在其中查看成员。当前凭据将在get_current()->cred中,有效用户ID为get_current()->cred->euid
直接访问这些成员并不安全,您必须从current_euid()调用include/linux/cred.h
http://www.kernel.org/doc/Documentation/security/credentials.txt也可能会让您感兴趣

10-07 16:42