author | Rich Felker <dalias@aerifal.cx> | 2013年08月02日 12:25:32 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013年08月02日 12:25:32 -0400 |
commit | 0dc4824479e357a3e23a02d35527e23fca920343 (patch) | |
tree | a293864b7e9dc56a3ed9488576134a68812b82b1 /src | |
parent | 3e3753c1a8e047dc84f9db1dc26bb046cff457a6 (diff) | |
download | musl-0dc4824479e357a3e23a02d35527e23fca920343.tar.gz |
-rw-r--r-- | src/stat/fchmodat.c | 30 |
diff --git a/src/stat/fchmodat.c b/src/stat/fchmodat.c index 61d32065..c1410bc5 100644 --- a/src/stat/fchmodat.c +++ b/src/stat/fchmodat.c @@ -1,7 +1,35 @@ #include <sys/stat.h> +#include <fcntl.h> +#include <errno.h> +#include <stdio.h> #include "syscall.h" int fchmodat(int fd, const char *path, mode_t mode, int flag) { - return syscall(SYS_fchmodat, fd, path, mode, flag); + if (!flag) return syscall(SYS_fchmodat, fd, path, mode, flag); + + if (flag != AT_SYMLINK_NOFOLLOW) + return __syscall_ret(-EINVAL); + + struct stat st; + int ret, fd2; + char proc[15+3*sizeof(int)]; + + if ((ret = __syscall(SYS_fstatat, fd, path, &st, flag))) + return __syscall_ret(ret); + if (S_ISLNK(st.st_mode)) + return __syscall_ret(-EOPNOTSUPP); + + if ((fd2 = __syscall(SYS_openat, fd, path, O_RDONLY|O_PATH|O_NOFOLLOW|O_NOCTTY)) < 0) { + if (fd2 == -ELOOP) + return __syscall_ret(-EOPNOTSUPP); + return __syscall_ret(fd2); + } + + snprintf(proc, sizeof proc, "/proc/self/fd/%d", fd2); + if (!(ret = __syscall(SYS_stat, proc, &st)) && !S_ISLNK(st.st_mode)) + ret = __syscall(SYS_chmod, proc, mode); + + __syscall(SYS_close, fd2); + return __syscall_ret(ret); } |