fchown - change ownership of a file
#include <sys/types.h> /* For uid_t and gid_t / #include <unistd.h> / for fchown prototype */
int fchown(int fd, uid_t owner, gid_t group);
The owner of the file specified by fd is changed. Only the super-user may change the owner of a file. The owner of a file may change the group of the file to any group of which that owner is a member. The super-user may change the group arbitrarily.
If the owner or group is specified as -1, then that ID is not changed.
When the owner or group of an executable file are changed by a non-super-user, the S_ISUID and S_ISGID mode bits are cleared. POSIX does not specify whether this also should happen when root does the chown; the Linux behaviour depends on the kernel version. In case of a non-group-executable file (with clear S_IXGRP bit) the S_ISGID bit indicates mandatory locking, and is not cleared by a chown.
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.
Depending on the file system, other errors can be returned.
The prototype for fchown is only available if _BSD_SOURCE is defined (either explicitly, or implicitly, by not defining _POSIX_SOURCE or compiling with the -ansi flag).
The fchown call conforms to 4.4BSD and SVr4. SVr4 documents additional EINVAL, EIO, EINTR, and ENOLINK error conditions.
The fchown(2) semantics are deliberately violated on NFS file systems which have UID mapping enabled. Additionally, the semantics of all system calls which access the file contents are violated, because fchown(2) may cause immediate access revocation on already open files. Client side caching may lead to a delay between the time where ownership have been changed to allow access for a user and the time where the file can actually be accessed by the user on other clients.
/*
- This program creates a file, and uses fchown to change it's ownership.
*
- This program will fail with an error unless run as root.
- /
- include <sys/stat.h> /* for S_* constants */
- include <sys/types.h> /* for mode_t for creat(2) */
- include <unistd.h> /* for fchown(2) prototype */
- include <string.h> /* for strerror(3) prototype */
- include <fcntl.h> /* for creat(2) prototype */
- include <stdio.h> /* for fprintf(3),stderr protype */
- include <errno.h> /* for errno prototype */
- define FILENAME "/tmp/fchown.example"
- define UID 100
- define GID 100
int main(int argc,char **argv) {
int fd;
fd = creat(FILENAME,S_IRUSR|S_IWUSR); if (fd<0) {
fprintf(
stderr, "creat(\"%s\",S_IRUSR|S_IWUSR): %s (%i)\n", FILENAME, strerror(errno), errno);
return 1;
} if (fchown(fd,UID,GID)==-1) {
fprintf(
stderr, "fchown(fd,%i,%i): %s (%i)\n", UID, GID, strerror(errno), errno);
return 1;
} close(fd); printf(
"%s successfully changed to uid=%i, gid=%i\n", FILENAME, UID, GID);
return 0;
}
3 pages link to fchown(2):