seteuid是Linux上的系统调用吗?
作者:互联网
到目前为止,我在setuid上阅读的所有文献都以一种暗示它是系统调用的方式讨论了seteuid.第2节手册页从不说明函数是否是系统调用,因此seteuid(2)没有帮助.如果它不是系统调用,意味着内核不提供功能,那么如何实现“设置有效UID”呢?
解决方法:
第2节手册页都是系统调用 – 这就是第2节的用途.第3节手册页都是库调用,这就是第3节的用途.有关章节列表及其内容,请参阅man(1)(man本身的手册页):
1 Executable programs or shell commands
2 System calls (functions provided by the kernel)
3 Library calls (functions within program libraries)
4 Special files (usually found in /dev)
5 File formats and conventions eg /etc/passwd
6 Games
7 Miscellaneous (including macro packages and conventions), e.g.
man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
标签:setuid,linux 来源: https://codeday.me/bug/20190823/1702329.html