]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Linux: Use system call tables during build
authorFlorian Weimer <fweimer@redhat.com>
Thu, 2 Jan 2020 09:18:22 +0000 (10:18 +0100)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 2 Jan 2020 09:18:23 +0000 (10:18 +0100)
Use <arch-syscall.h> instead of <asm/unistd.h> to obtain the system
call numbers.  A few direct includes of <asm/unistd.h> need to be
removed (if the system call numbers are already provided indirectly
by <sysdep.h>) or replaced with <sys/syscall.h>.

Current Linux headers for alpha define the required system call names,
so most of the _NR_* hacks are no longer needed.  For the 32-bit arm
architecture, eliminate the INTERNAL_SYSCALL_ARM macro, now that we
have regular system call names for cacheflush and set_tls.  There are
more such cleanup opportunities for other architectures, but these
cleanups are required to avoid macro redefinition errors during the
build.

For ia64, it is desirable to use <asm/break.h> directly to obtain
the break number for system calls (which is not a system call number
itself).  This requires replacing __BREAK_SYSCALL with
__IA64_BREAK_SYSCALL because the former is defined as an alias in
<asm/unistd.h>, but not in <asm/break.h>.

Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
21 files changed:
NEWS
sysdeps/ia64/start.S
sysdeps/microblaze/backtrace_linux.c
sysdeps/unix/sysv/linux/alpha/kernel-features.h
sysdeps/unix/sysv/linux/alpha/sysdep.h
sysdeps/unix/sysv/linux/arm/dl-machine.h
sysdeps/unix/sysv/linux/arm/sysdep.h
sysdeps/unix/sysv/linux/arm/tls.h
sysdeps/unix/sysv/linux/hppa/clone.S
sysdeps/unix/sysv/linux/ia64/brk.S
sysdeps/unix/sysv/linux/ia64/clone2.S
sysdeps/unix/sysv/linux/ia64/syscall.S
sysdeps/unix/sysv/linux/ia64/sysdep.S
sysdeps/unix/sysv/linux/ia64/sysdep.h
sysdeps/unix/sysv/linux/include/sys/syscall.h [new file with mode: 0644]
sysdeps/unix/sysv/linux/mips/vfork.S
sysdeps/unix/sysv/linux/nios2/sysdep.h
sysdeps/unix/sysv/linux/riscv/flush-icache.c
sysdeps/unix/sysv/linux/sparc/sparc32/clone.S
sysdeps/unix/sysv/linux/sparc/sparc64/clone.S
sysdeps/unix/sysv/linux/sys/syscall.h

diff --git a/NEWS b/NEWS
index 7249fcad484564ae9e3c3dfd118be168ae03c049..b85989ec3d4752d623e6196776d35ed21a561aa9 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -101,7 +101,8 @@ Deprecated and removed features, and other changes affecting compatibility:
 
 Changes to build and runtime requirements:
 
-  [Add changes to build and runtime requirements here]
+* It is no longer necessary to have recent Linux kernel headers to build
+  working (non-stub) system call wrappers.
 
 Security related changes:
 
index dcd2aa013170fee4bcd4167b5612f4b6800caad4..18c8962b6eb0fb753faf771e1436213d5e42701a 100644 (file)
@@ -35,7 +35,6 @@
 
 #include <sysdep.h>
 
-#include <asm/unistd.h>
 #include <asm/fpu.h>
 
 /*
index 9ae5aeded9a08baa7786a96290bd2459f0edea51..49c955b5d611534818412ded47309b4e3c2b823c 100644 (file)
@@ -20,7 +20,7 @@
 #include <asm/sigcontext.h>
 #include <linux/signal.h>
 #include <asm-generic/ucontext.h>
-#include <asm/unistd.h>
+#include <sys/syscall.h>
 
 int
 _identify_sighandler (unsigned long fp, unsigned long pc,
index 24fd6ca38f39911b99af371d7374e362fdc6b6cd..5f003e634aeba9ed32bbfdd42c6cc6e694ed7520 100644 (file)
 # define __ASSUME_STATFS64 0
 #endif
 
-/* Alpha used to define SysV ipc shmat syscall with a different name.  */
-#ifndef __NR_shmat
-# define __NR_shmat __NR_osf_shmat
-#endif
-
 #define __ASSUME_RECV_SYSCALL  1
 #define __ASSUME_SEND_SYSCALL  1
 
index 81de842644aeb12f1a07f3c1f4c60ff4d2f6f2ed..2458f9860aa3e93a1236388a5563581d35ca0243 100644 (file)
 #undef SYS_ify
 #define SYS_ify(syscall_name)  __NR_##syscall_name
 
-/* Define some aliases to make automatic syscall generation work
-   properly.  The SYS_* variants are for the benefit of the files in
-   sysdeps/unix.  */
-#define __NR_getpid    __NR_getxpid
-#define __NR_getuid    __NR_getxuid
-#define __NR_getgid    __NR_getxgid
-#define SYS_getpid     __NR_getxpid
-#define SYS_getuid     __NR_getxuid
-#define SYS_getgid     __NR_getxgid
-
-/*
- * Some syscalls no Linux program should know about:
- */
-#define __NR_osf_sigprocmask    48
-#ifndef __NR_osf_shmat
-# define __NR_osf_shmat                209
-#endif
-#define __NR_osf_getsysinfo    256
-#define __NR_osf_setsysinfo    257
-
-/* Help old kernel headers where particular syscalls are not available.  */
-#ifndef __NR_semtimedop
-# define __NR_semtimedop       423
-#endif
-
 /* This is a kludge to make syscalls.list find these under the names
    pread and pwrite, since some kernel headers define those names
    and some define the *64 names for the same system calls.  */
index 11b56a62b1abdee2d73cbcc739d7b079091c5dcb..5fc685fdaf7b2ea639703c0b6c8ed4a65077ffc9 100644 (file)
@@ -20,7 +20,7 @@
 
 /* This definition is Linux-specific.  */
 #define CLEAR_CACHE(BEG,END)                                            \
-  INTERNAL_SYSCALL_ARM (cacheflush, , 3, (BEG), (END), 0)
+  INTERNAL_SYSCALL (cacheflush, , 3, (BEG), (END), 0)
 
 #endif
 
index 4c2dc2dbb26f15199ace5dd0ba5d5976c8180836..2304dad8f3196d4d891383b11470df2e446db8d7 100644 (file)
@@ -377,10 +377,6 @@ __local_syscall_error:                                             \
 #define INTERNAL_SYSCALL(name, err, nr, args...)               \
        INTERNAL_SYSCALL_RAW(SYS_ify(name), err, nr, args)
 
-#undef INTERNAL_SYSCALL_ARM
-#define INTERNAL_SYSCALL_ARM(name, err, nr, args...)           \
-       INTERNAL_SYSCALL_RAW(__ARM_NR_##name, err, nr, args)
-
 #undef INTERNAL_SYSCALL_ERROR_P
 #define INTERNAL_SYSCALL_ERROR_P(val, err) \
   ((unsigned int) (val) >= 0xfffff001u)
index 3b91f46e3c00f7c2db7530038e3cc5cca7675c9c..18afe244d7ce9ac1d3186b5f57e7ef47fad2addc 100644 (file)
@@ -33,7 +33,7 @@
 # define TLS_INIT_TP(tcbp) \
   ({ INTERNAL_SYSCALL_DECL (err);                                      \
      long int result_var;                                              \
-     result_var = INTERNAL_SYSCALL_ARM (set_tls, err, 1, (tcbp));      \
+     result_var = INTERNAL_SYSCALL (set_tls, err, 1, (tcbp));          \
      INTERNAL_SYSCALL_ERROR_P (result_var, err)                                \
        ? "unknown error" : NULL; })
 
index e90dd5ed9c0fe7ecd278ae5995db0f2c1d1a3c7e..4eda812dd041a16a03eca9a105020ca8bf862851 100644 (file)
@@ -20,7 +20,6 @@
 /* clone() is even more special than fork() as it mucks with stacks
    and invokes a function in the right context after its all over.  */
 
-#include <asm/unistd.h>
 #include <sysdep.h>
 #define _ERRNO_H       1
 #include <bits/errno.h>
index f4195c8672f3d9c3d0204f3320c28fe7563f1866..734d3467a763e52ee3e5589a3ab589895a043307 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <sysdep.h>
 
-#include <asm/unistd.h>
 #include <asm/errno.h>
 
        .global __curbrk
index de6de43706957e95c45d32609d4b3dd701b0d446..c8c90e537267f9239df5f4165f886b01b8375903 100644 (file)
@@ -58,7 +58,7 @@ ENTRY(__clone2)
         */
        mov r15=SYS_ify (clone2)
        .save rp, r0
-       break __BREAK_SYSCALL
+       break __IA64_BREAK_SYSCALL
        .body
        cmp.eq p6,p0=-1,r10
        cmp.eq CHILD,PARENT=0,r8 /* Are we the child?   */
@@ -78,7 +78,7 @@ ENTRY(__clone2)
        mov gp=loc0
        mov r15=SYS_ify (exit)
        .save rp, r0
-       break __BREAK_SYSCALL
+       break __IA64_BREAK_SYSCALL
        ret                     /* Not reached.         */
 PSEUDO_END(__clone2)
 
index 14b3be692714d50a379a84e050712f662b9d5bfe..d819f79d4bc41458d86902863a0a0bb75f2cc36e 100644 (file)
@@ -25,7 +25,7 @@ ENTRY(syscall)
           in {out0...out5} like the kernel syscall handler expects.  */
        alloc r2=ar.pfs,1,0,8,0
        mov r15=r32             /* syscall number */
-       break __BREAK_SYSCALL
+       break __IA64_BREAK_SYSCALL
        ;;
        cmp.ne p6,p0=-1,r10     /* r10 = -1 on error */
 (p6)   ret
index be1aeb2e1cabf60a39a7b4f1849866cc28780ca3..75fc3d64565bdb2065b14bf251ceafd180393c75 100644 (file)
@@ -51,7 +51,7 @@ END(__syscall_error)
 
 ENTRY(__ia64_syscall)
        mov r15=r37             /* syscall number */
-       break __BREAK_SYSCALL
+       break __IA64_BREAK_SYSCALL
        cmp.eq p6,p0=-1,r10     /* r10 = -1 on error */
 (p6)   br.cond.spnt.few __syscall_error
        ret
index c4aa72a2fcb151f50bba06acfd1cb6d6155b4144..61f32ca8b438c159da1117c9f441f5e4f719ecb5 100644 (file)
@@ -25,6 +25,7 @@
 #include <sysdeps/ia64/sysdep.h>
 #include <dl-sysdep.h>
 #include <tls.h>
+#include <asm/break.h>
 
 /* In order to get __set_errno() definition in INLINE_SYSCALL.  */
 #ifndef __ASSEMBLER__
 
 #define DO_CALL_VIA_BREAK(num)                 \
        mov r15=num;                            \
-       break __BREAK_SYSCALL
+       break __IA64_BREAK_SYSCALL
 
 #ifdef IA64_USE_NEW_STUB
 # ifdef SHARED
     register long _r15 asm ("r15") = name;                     \
     long _retval;                                              \
     LOAD_REGS_##nr                                             \
-    __asm __volatile (BREAK_INSN (__BREAK_SYSCALL)             \
+    __asm __volatile (BREAK_INSN (__IA64_BREAK_SYSCALL)                \
                      : "=r" (_r8), "=r" (_r10), "=r" (_r15)    \
                        ASM_OUTARGS_##nr                        \
                      : "2" (_r15) ASM_ARGS_##nr                \
diff --git a/sysdeps/unix/sysv/linux/include/sys/syscall.h b/sysdeps/unix/sysv/linux/include/sys/syscall.h
new file mode 100644 (file)
index 0000000..9611ca4
--- /dev/null
@@ -0,0 +1,29 @@
+/* Wrapper header for <sys/syscall.h>.  Linux version.
+   Copyright (C) 2020 Free Software Foundation, Inc.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#ifndef _SYSCALL_H
+
+#ifdef _ISOMAC
+# include <sysdeps/unix/sysv/linux/sys/syscall.h>
+#else /* !_ISOMAC */
+/* Use the built-in system call list, not <asm/unistd.h>, which may
+   not list all the system call numbers we need.  */
+# define _SYSCALL_H
+# include <arch-syscall.h>
+#endif /* !_ISOMAC */
+
+#endif /* _SYSCALL_H */
index 1c08f222da29bb9633f9bdf5a10eff5004dd478d..ba3c64ae1e827092ba57a470d533a7edf7ed965f 100644 (file)
@@ -19,7 +19,6 @@
 
 #include <sys/asm.h>
 #include <sysdep.h>
-#include <asm/unistd.h>
 #include <sgidefs.h>
 #include <tls.h>
 
index 82a126b69704ecd5e28f9744874162d36874451f..b02730bd2364519c2db32d93fa80c83b5d6398e3 100644 (file)
@@ -19,7 +19,6 @@
 #ifndef _LINUX_NIOS2_SYSDEP_H
 #define _LINUX_NIOS2_SYSDEP_H 1
 
-#include <asm/unistd.h>
 #include <sysdeps/unix/sysdep.h>
 #include <sysdeps/nios2/sysdep.h>
 #include <sysdeps/unix/sysv/linux/generic/sysdep.h>
index ef41725f6fc9a2f51c26cf916c78934542c6d4e3..f1565ab2dd273d797f580b7b414b4cf086c2ddd4 100644 (file)
@@ -26,6 +26,7 @@
 #else
 # include <asm/unistd.h>
 #endif
+#include <sys/syscall.h>
 
 typedef int (*func_type) (void *, void *, unsigned long int);
 
index 94ce7aef280d9446e32934437a884b0196f83dd7..a6a797f30dff38751420245e54f2c9a4bded6d03 100644 (file)
@@ -20,7 +20,6 @@
    and invokes a function in the right context after its all over.  */
 
 #include <asm/errno.h>
-#include <asm/unistd.h>
 #include <tcb-offsets.h>
 #include <sysdep.h>
 
index 177ef93ef031fcd96e228ffc3069f5a8f8c4a368..de5e054d8461f2104457c90fa90451ae2e0315a6 100644 (file)
@@ -20,7 +20,6 @@
    and invokes a function in the right context after its all over.  */
 
 #include <asm/errno.h>
-#include <asm/unistd.h>
 #include <tcb-offsets.h>
 #include <sysdep.h>
 
index 2a42f5be2e1a0679c6ff966ba77fda2e2eacd8c7..aa89a74e6bb152ca8dae17fb59971b84b87e8418 100644 (file)
    from the kernel sources.  */
 #include <asm/unistd.h>
 
-#ifndef _LIBC
-/* The Linux kernel header file defines macros `__NR_<name>', but some
-   programs expect the traditional form `SYS_<name>'.  So in building libc
-   we scan the kernel's list and produce <bits/syscall.h> with macros for
-   all the `SYS_' names.  */
-# include <bits/syscall.h>
-#endif
+/* The Linux kernel header file defines macros __NR_*, but some
+   programs expect the traditional form SYS_*.  <bits/syscall.h>
+   defines SYS_* macros for __NR_* macros of known names.  */
+#include <bits/syscall.h>
 
 #endif