mailing list of musl libc
 help / color / mirror / code / Atom feed
a3f407e3b444e47f8d4106733f63171ba1b97f19 blob 994 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
 
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include "syscall.h"

int fchmodat(int fd, const char *path, mode_t mode, int flag)
{
	if (flag) {
		int ret = __syscall(SYS_fchmodat2, fd, path, mode, flag);
		if (ret != -ENOSYS) return __syscall_ret(ret);
	}

	if (!flag) return syscall(SYS_fchmodat, fd, path, mode);

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

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

	if (fstatat(fd, path, &st, flag))
		return -1;
	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|O_CLOEXEC)) < 0) {
		if (fd2 == -ELOOP)
			return __syscall_ret(-EOPNOTSUPP);
		return __syscall_ret(fd2);
	}

	__procfdname(proc, fd2);
	ret = stat(proc, &st);
	if (!ret) {
		if (S_ISLNK(st.st_mode)) ret = __syscall_ret(-EOPNOTSUPP);
		else ret = syscall(SYS_fchmodat, AT_FDCWD, proc, mode);
	}

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

solving a3f407e3 ...
found a3f407e3 in https://inbox.vuxu.org/musl/20240118000540.369070-4-gael.portay@rtone.fr/ ||
	https://inbox.vuxu.org/musl/20240218022650.1097269-9-gael.portay@rtone.fr/
found 41db0c46 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 41db0c46f623f2e7bbb6f6cf2a697a30e00b2af4	src/stat/fchmodat.c

applying [1/2] https://inbox.vuxu.org/musl/20240118000540.369070-4-gael.portay@rtone.fr/
diff --git a/src/stat/fchmodat.c b/src/stat/fchmodat.c
index 41db0c46..a3f407e3 100644

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

skipping https://inbox.vuxu.org/musl/20240218022650.1097269-9-gael.portay@rtone.fr/ for a3f407e3
index at:
100644 a3f407e3b444e47f8d4106733f63171ba1b97f19	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).