cleanup includes now that stat, lstat no longer make direct syscalls
[musl] / src / stat / fchmodat.c
index 12e7ff0..be61bdf 100644 (file)
@@ -3,8 +3,6 @@
 #include <errno.h>
 #include "syscall.h"
 
-void __procfdname(char *, unsigned);
-
 int fchmodat(int fd, const char *path, mode_t mode, int flag)
 {
        if (!flag) return syscall(SYS_fchmodat, fd, path, mode, flag);
@@ -21,15 +19,18 @@ int fchmodat(int fd, const char *path, mode_t mode, int flag)
        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 = __syscall(SYS_openat, fd, path, O_RDONLY|O_PATH|O_NOFOLLOW|O_NOCTTY|O_CLOEXEC)) < 0) {
                if (fd2 == -ELOOP)
                        return __syscall_ret(-EOPNOTSUPP);
                return __syscall_ret(fd2);
        }
 
        __procfdname(proc, fd2);
-       if (!(ret = __syscall(SYS_stat, proc, &st)) && !S_ISLNK(st.st_mode))
-               ret = __syscall(SYS_chmod, proc, mode);
+       ret = __syscall(SYS_fstatat, AT_FDCWD, proc, &st, 0);
+       if (!ret) {
+               if (S_ISLNK(st.st_mode)) ret = -EOPNOTSUPP;
+               else ret = __syscall(SYS_fchmodat, AT_FDCWD, proc, mode);
+       }
 
        __syscall(SYS_close, fd2);
        return __syscall_ret(ret);