#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc,char *argv[])
{
if(argc != 2)
{
printf("parameter error");
exit(1);
}
if(access(argv[1],R_OK) < 0)
{
printf("access error for %s\n",argv[1]);
}else
printf("access ok\n");
if(open(argv[1],O_RDONLY) < 0)
{
printf("open error for %s\n",argv[1]);
}else
printf("open for reading ok\n");
exit(0);
}
./access /etc/shadow
测试程序是否具备读指定文件的权限
正常情况下用户不具备打开该文件的权限
su 成为超级用户
chown root access 将文件用户id改为root
chmod u+s access 使文件在执行阶段具有文件所有者的权限(具备root权限)
exit 退出超级用户
再次执行发现不能验证读但是可以打开文件了,因为验证是以实际用户去验证的