lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 22 Aug 2022 12:43:10 -0700
From:   Randy Dunlap <rdunlap@...radead.org>
To:     linux-kernel@...r.kernel.org
Cc:     Randy Dunlap <rdunlap@...radead.org>,
        Arnd Bergmann <arnd@...db.de>,
        Andrew Morton <akpm@...ux-foundation.org>
Subject: [RFC PATCH] compat: update linux/compat.h and kernel/sys_ni.c

Add conditional syscalls entries in kernel/sys_ni.c
for any syscalls that are arch- or config-dependent.

Update the prototype entries in <linux/compat.h>.

Signed-off-by: Randy Dunlap <rdunlap@...radead.org>
Suggested-by: Arnd Bergmann <arnd@...db.de>
Cc: Andrew Morton <akpm@...ux-foundation.org>
---
 include/linux/compat.h |   27 ++++++---------------------
 kernel/sys_ni.c        |   20 ++++++++++++++++++--
 2 files changed, 24 insertions(+), 23 deletions(-)

--- a/include/linux/compat.h
+++ b/include/linux/compat.h
@@ -610,7 +610,7 @@ asmlinkage long compat_sys_fcntl64(unsig
 asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
 				 compat_ulong_t arg);
 
-/* fs/open.c */
+/* fs/statfs.c */
 asmlinkage long compat_sys_statfs(const char __user *pathname,
 				  struct compat_statfs __user *buf);
 asmlinkage long compat_sys_statfs64(const char __user *pathname,
@@ -620,6 +620,8 @@ asmlinkage long compat_sys_fstatfs(unsig
 				   struct compat_statfs __user *buf);
 asmlinkage long compat_sys_fstatfs64(unsigned int fd, compat_size_t sz,
 				     struct compat_statfs64 __user *buf);
+
+/* fs/open.c */
 asmlinkage long compat_sys_truncate(const char __user *, compat_off_t);
 asmlinkage long compat_sys_ftruncate(unsigned int, compat_ulong_t);
 /* No generic prototype for truncate64, ftruncate64, fallocate */
@@ -640,17 +642,12 @@ asmlinkage ssize_t compat_sys_preadv(com
 asmlinkage ssize_t compat_sys_pwritev(compat_ulong_t fd,
 		const struct iovec __user *vec,
 		compat_ulong_t vlen, u32 pos_low, u32 pos_high);
-#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64
 asmlinkage long compat_sys_preadv64(unsigned long fd,
 		const struct iovec __user *vec,
 		unsigned long vlen, loff_t pos);
-#endif
-
-#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64
 asmlinkage long compat_sys_pwritev64(unsigned long fd,
 		const struct iovec __user *vec,
 		unsigned long vlen, loff_t pos);
-#endif
 
 /* fs/sendfile.c */
 asmlinkage long compat_sys_sendfile(int out_fd, int in_fd,
@@ -702,7 +699,7 @@ asmlinkage long compat_sys_waitid(int, c
 
 
 
-/* kernel/futex.c */
+/* kernel/futex/syscalls.c */
 asmlinkage long
 compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
 			   compat_size_t len);
@@ -816,7 +813,7 @@ asmlinkage long compat_sys_sendmsg(int f
 asmlinkage long compat_sys_recvmsg(int fd, struct compat_msghdr __user *msg,
 				   unsigned int flags);
 
-/* mm/filemap.c: No generic prototype for readahead */
+/* mm/readahead.c: No generic prototype for readahead */
 
 /* security/keys/keyctl.c */
 asmlinkage long compat_sys_keyctl(u32 option,
@@ -857,18 +854,12 @@ asmlinkage ssize_t compat_sys_preadv2(co
 asmlinkage ssize_t compat_sys_pwritev2(compat_ulong_t fd,
 		const struct iovec __user *vec,
 		compat_ulong_t vlen, u32 pos_low, u32 pos_high, rwf_t flags);
-#ifdef __ARCH_WANT_COMPAT_SYS_PREADV64V2
 asmlinkage long  compat_sys_preadv64v2(unsigned long fd,
 		const struct iovec __user *vec,
 		unsigned long vlen, loff_t pos, rwf_t flags);
-#endif
-
-#ifdef __ARCH_WANT_COMPAT_SYS_PWRITEV64V2
 asmlinkage long compat_sys_pwritev64v2(unsigned long fd,
 		const struct iovec __user *vec,
 		unsigned long vlen, loff_t pos, rwf_t flags);
-#endif
-
 
 /*
  * Deprecated system calls which are still defined in
@@ -910,19 +901,13 @@ asmlinkage long compat_sys_old_select(st
 asmlinkage long compat_sys_ipc(u32, int, int, u32, compat_uptr_t, u32);
 
 /* obsolete: kernel/signal.c */
-#ifdef __ARCH_WANT_SYS_SIGPENDING
 asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set);
-#endif
-
-#ifdef __ARCH_WANT_SYS_SIGPROCMASK
 asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *nset,
 				       compat_old_sigset_t __user *oset);
-#endif
-#ifdef CONFIG_COMPAT_OLD_SIGACTION
+struct compat_old_sigaction;
 asmlinkage long compat_sys_sigaction(int sig,
                                    const struct compat_old_sigaction __user *act,
                                    struct compat_old_sigaction __user *oact);
-#endif
 
 /* obsolete: net/socket.c */
 asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
--- a/kernel/sys_ni.c
+++ b/kernel/sys_ni.c
@@ -63,7 +63,7 @@ COND_SYSCALL_COMPAT(lookup_dcookie);
 /* fs/eventfd.c */
 COND_SYSCALL(eventfd2);
 
-/* fs/eventfd.c */
+/* fs/eventpoll.c */
 COND_SYSCALL(epoll_create1);
 COND_SYSCALL(epoll_ctl);
 COND_SYSCALL(epoll_pwait);
@@ -94,6 +94,9 @@ COND_SYSCALL(flock);
 /* fs/nfsctl.c */
 
 /* fs/open.c */
+COND_SYSCALL_COMPAT(truncate64);
+COND_SYSCALL_COMPAT(ftruncate64);
+COND_SYSCALL_COMPAT(fallocate);
 
 /* fs/pipe.c */
 
@@ -104,6 +107,10 @@ COND_SYSCALL(quotactl_fd);
 /* fs/readdir.c */
 
 /* fs/read_write.c */
+COND_SYSCALL_COMPAT(preadv64);
+COND_SYSCALL_COMPAT(pwritev64);
+COND_SYSCALL_COMPAT(pread64);
+COND_SYSCALL_COMPAT(pwrite64);
 
 /* fs/sendfile.c */
 
@@ -118,6 +125,7 @@ COND_SYSCALL_COMPAT(signalfd4);
 /* fs/stat.c */
 
 /* fs/sync.c */
+COND_SYSCALL_COMPAT(sync_file_range);
 
 /* fs/timerfd.c */
 COND_SYSCALL(timerfd_create);
@@ -173,6 +181,11 @@ COND_SYSCALL(syslog);
 
 /* kernel/sched/core.c */
 
+/* kernel/signal.c */
+COND_SYSCALL_COMPAT(sigpending);
+COND_SYSCALL_COMPAT(sigprocmask);
+COND_SYSCALL_COMPAT(sigaction);
+
 /* kernel/sys.c */
 COND_SYSCALL(setregid);
 COND_SYSCALL(setgid);
@@ -257,7 +270,8 @@ COND_SYSCALL_COMPAT(sendmsg);
 COND_SYSCALL(recvmsg);
 COND_SYSCALL_COMPAT(recvmsg);
 
-/* mm/filemap.c */
+/* mm/readahead.c */
+COND_SYSCALL_COMPAT(readahead);
 
 /* mm/nommu.c, also with MMU */
 COND_SYSCALL(mremap);
@@ -306,6 +320,8 @@ COND_SYSCALL(recvmmsg);
 COND_SYSCALL(recvmmsg_time32);
 COND_SYSCALL_COMPAT(recvmmsg_time32);
 COND_SYSCALL_COMPAT(recvmmsg_time64);
+COND_SYSCALL_COMPAT(preadv64v2);
+COND_SYSCALL_COMPAT(pwritev64v2);
 
 /*
  * Architecture specific syscalls: see further below

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ