我正在查看stat()
和chmod()
等各种函数中使用的权限位,我想描述一下实际定义的宏是什么。例如S_IRUSR
说它由00400
(GNU/Linux)表示。我的问题是,有人能描述一下00400
到底是什么吗?它是一个数字,什么?我了解如何或宏,我只是不明白宏实际上是什么。
我将描述权限中最左边的三个数字,这也将解释S_IRUSR,
所以每个数字都是一个八进制数字。每个数字可以是 0 到 7。每个八进制数可以转换为 3 位二进制数。每个位代表一个权限。
Left most bit = Read permission
Middle bit = Write permission
Right most bit= Execute permission
让我们将 0 到 7 写入二进制文件并查看权限位:
Octal Binary
0 0 0 0 (No Read, No Write, No Execute) -- No permission
1 0 0 1 (No Read, No Write, Yes you can execute)
2 0 1 0 (No Read, Can Write, No execute)
3 0 1 1 (No Read, Can Write, Can execute)
4 1 0 0 (Can Read, No Write, No Execute)
5 1 0 1 (Can Read, No Write, Can execute)
6 1 1 0 (Can Read, Can Write, No execute)
7 1 1 1 (Can Read, Can Write, Can execute)
因此,每个数字代表权限。现在下一部分是关于这些任务是谁。让最左边的三个数字是 XYZ:现在
X means permission given to the owner of the file.
Y means permission given to the group of the owner.
Z means permission given to all other users in system , outside of user's group.
鉴于 Z_ISUSR = 00400,现在 4 表示用户可读 IRUSR = 用户可读。
这三个是权限中的重要数字,它们仅指定授予文件的权限。
Wiki 在这里有很好的解释
从链接页面:
0 --- no permission
1 --x execute
2 -w- write
3 -wx write and execute
4 r-- read
5 r-x read and execute
6 rw- read and write
7 rwx read, write, and execute