uid相同 权限 linux,linux有关uid权限的使用

Linuxs中与uid相关的命令或者函数主要是setuid和chown,chown用来改变一个文件的所属,setuid用来改变当前的有效uid,这样以后当我们调用open等函数打开或者读写文件是,就可以进行相应的权限判断了。

首先看下chown

Chown命令也是busybox实现的,他会把用户名替换成相应的uid,最终调用chown

稍微看下chown跟uid相关的实现

b0336c3f4b3ef1e3aeb9175b97b7faa2.png

可以从上面的流程中看到,最终会将修改该文件对应的uid为设置的uid

下面再来看下setuid,他来设置实际用户ID和有效用户ID

他会修改当前task的

/* process credentials */

conststruct cred __rcu *real_cred; /* objective and real subjective task

* credentials (COW) */

conststruct cred __rcu *cred;         /*effective (overridable) subjective task

这两个变量

最后我们看一下open打开文件过程中是如何进行权限判断的

8950f390ad2d12cae965fbefa4e50334.png

最open打开文件进行路径查找时,会调用may_lookup查看是否有权限,而may_lookup最终调用acl_permission_check

/*

* This does basic POSIX ACL permission checking

*/

static int acl_permission_check(struct inode *inode, int mask, unsigned int flags,

int (*check_acl)(struct inode *inode, int mask, unsigned int flags))

{

unsigned int mode = inode->i_mode;

mask &= MAY_READ | MAY_WRITE | MAY_EXEC;

if (current_user_ns() != inode_userns(inode))

goto other_perms;

if (current_fsuid() == inode->i_uid)

mode >>= 6;

else {

if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {

int error = check_acl(inode, mask, flags);

if (error != -EAGAIN)

return error;

}

if (in_group_p(inode->i_gid))

mode >>= 3;

}

other_perms:

/*

* If the DACs are ok we don't need any capability check.

*/

if ((mask & ~mode) == 0)

return 0;

return -EACCES;

}

dc012f59ac5ce4a0395d0fd0bdd0a9bf.png

这里比较当前进程的Uid和文件的uid进行比较,看是否有权限

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值