mailing list of musl libc
 help / color / mirror / code / Atom feed
857e84e59c0b51c11a4e8007b71e94c522510170 blob 1358 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <stdint.h>
#include "syscall.h"
#include "kstat.h"
#include "statx.h"

int fchmodat(int fd, const char *path, mode_t mode, int flag)
{
	if (!flag) return syscall(SYS_fchmodat, fd, path, mode, flag);

	if (flag != AT_SYMLINK_NOFOLLOW)
		return __syscall_ret(-EINVAL);

	int ret, fd2;
	char proc[15+3*sizeof(int)];

#ifdef SYS_fstatat
	struct kstat st;
	if ((ret = __syscall(SYS_fstatat, fd, path, &st, flag)))
		return __syscall_ret(ret);
	mode_t get_mode = st.st_mode;
#else
	struct statx st;
	if ((ret = __syscall(SYS_statx, fd, path, flag, STATX_TYPE, &st)))
		return __syscall_ret(ret);
	mode_t get_mode = st.stx_mode;
#endif

	if (S_ISLNK(get_mode))
		return __syscall_ret(-EOPNOTSUPP);

	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);
#ifdef SYS_fstatat
	ret = __syscall(SYS_fstatat, AT_FDCWD, proc, &st, 0);
	get_mode = st.st_mode;
#else
	ret = __syscall(SYS_statx, AT_FDCWD, proc, 0, STATX_TYPE, &st);
	get_mode = st.stx_mode;
#endif
	if (!ret) {
		if (S_ISLNK(get_mode)) ret = -EOPNOTSUPP;
		else ret = __syscall(SYS_fchmodat, AT_FDCWD, proc, mode);
	}

	__syscall(SYS_close, fd2);
	return __syscall_ret(ret);
}
debug log:

solving 857e84e5 ...
found 857e84e5 in https://inbox.vuxu.org/musl/e792658a-fbaa-48bd-8704-7f9d2ec5a4ef@www.fastmail.com/
found 4ee00b0a in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 4ee00b0a3ed18cb1ce15c62ff4ce517c7bbf9ece	src/stat/fchmodat.c

applying [1/1] https://inbox.vuxu.org/musl/e792658a-fbaa-48bd-8704-7f9d2ec5a4ef@www.fastmail.com/
diff --git a/src/stat/fchmodat.c b/src/stat/fchmodat.c
index 4ee00b0a..857e84e5 100644

Checking patch src/stat/fchmodat.c...
Applied patch src/stat/fchmodat.c cleanly.

index at:
100644 857e84e59c0b51c11a4e8007b71e94c522510170	src/stat/fchmodat.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).