C中的fchmod函数

时间:2015-09-12 09:48:04

标签: c linux unix chmod

程序:

#include<stdio.h>
#include<sys/stat.h>
#include<sys/types.h>
#include<fcntl.h>
void main()
{
    int fd=open("b.txt",O_RDONLY);
    fchmod(fd,S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH);
}

输出:

$ ls -l b.txt
----r----- 1 mohanraj mohanraj 0 Sep 12 15:09 b.txt
$ ./a.out
$ ls -l b.txt
----r----- 1 mohanraj mohanraj 0 Sep 12 15:09 b.txt  
$

对于上述程序,我的预期输出是将b.txt的权限设置为“rw_rw_r__”。但是,它仍然是旧的 允许。为什么会这样。这段代码有没有错误?

4 个答案:

答案 0 :(得分:1)

您无权修改该文件,请使用sudo调用您的程序以使其成功。

还要经常检查openfchmod等函数的返回值并处理错误。

答案 1 :(得分:1)

首先,您应该检查fd系统调用返回的open是否正常,您还应该检查fchmod系统调用状态。

其次,我测试了你的示例代码,在我的例子中,它的工作原理如下。

在运行程序之前:

pi@raspberrypi ~ $ ls -l hej.txt 
-rw-r--r-- 1 pi pi 0 Sep 12 11:53 hej.txt

运行程序后

pi@raspberrypi ~ $ ls -l hej.txt 
-rwxrwxrw- 1 pi pi 0 Sep 12 11:53 hej.txt

您的程序可能缺少此文件的权限。

答案 2 :(得分:1)

对于文件b.txt,我没有为所有者设置读取权限。因此,在我们调用open函数时,它没有打开b.txt的权限。因此,它返回错误的文件描述符错误。所以,它会是这样的。

程序:

#include<stdio.h>
#include<sys/stat.h>
#include<sys/types.h>
#include<fcntl.h>
void main()
{
      int fd=open("b.txt",O_RDONLY);
      perror("open");
      fchmod(fd,S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH);
      perror("fchmod");
}

输出:

$ ./a.out 
open: Permission denied
fchmod: Bad file descriptor
$

答案 3 :(得分:0)

$ ls -l b.txt ---- r ----- 1 mohanraj mohanraj 0 Sep 12 15:09 b.txt

---- r ----- ,表示b.txt的所有者没有读写权限

$chmod 644 b.txt //add read and write Permission, -rw-r--r--

另外,更改文件权限需要 O_RDWR 标志

在继续之前确保功能成功

void main()
{
    int fd=open("b.txt",O_RDWR);
    if (fd > 0) {
       //do some thing
    }
}