arrfab / rpms / glibc

Forked from rpms/glibc 4 years ago
Clone

Blame SOURCES/glibc-rh1505492-bounded-6.patch

147e83
commit 6277fdabc074afa76ad5883a4b99cdf8e75de31a
147e83
Author: Joseph Myers <joseph@codesourcery.com>
147e83
Date:   Mon Feb 4 16:29:39 2013 +0000
147e83
147e83
    Remove CHECK_STRING, CHECK_STRING_NULL_OK and __ubp_memchr.
147e83
147e83
Conflicts:
147e83
	sysdeps/unix/sysv/linux/getcwd.c
147e83
147e83
Conflict due to context change in glibc-rh1534635.patch.
147e83
147e83
diff --git a/ports/sysdeps/ia64/memchr.S b/ports/sysdeps/ia64/memchr.S
147e83
index 6836571599c0a0af..a6f2451b9a3698a5 100644
147e83
--- a/ports/sysdeps/ia64/memchr.S
147e83
+++ b/ports/sysdeps/ia64/memchr.S
147e83
@@ -154,7 +154,4 @@ ENTRY(__memchr)
147e83
 END(__memchr)
147e83
 
147e83
 weak_alias (__memchr, memchr)
147e83
-#if !__BOUNDED_POINTERS__
147e83
-weak_alias (__memchr, __ubp_memchr)
147e83
-#endif
147e83
 libc_hidden_builtin_def (memchr)
147e83
diff --git a/ports/sysdeps/m68k/memchr.S b/ports/sysdeps/m68k/memchr.S
147e83
index 9e7aff816d84c6e6..5f2478f5d150e787 100644
147e83
--- a/ports/sysdeps/m68k/memchr.S
147e83
+++ b/ports/sysdeps/m68k/memchr.S
147e83
@@ -304,7 +304,4 @@ L(L9:)
147e83
 END(__memchr)
147e83
 
147e83
 weak_alias (__memchr, memchr)
147e83
-#if !__BOUNDED_POINTERS__
147e83
-weak_alias (__memchr, __ubp_memchr)
147e83
-#endif
147e83
 libc_hidden_builtin_def (memchr)
147e83
diff --git a/ports/sysdeps/unix/sysv/linux/arm/truncate64.c b/ports/sysdeps/unix/sysv/linux/arm/truncate64.c
147e83
index 3fad93f50e745396..a9a8059379fdbba5 100644
147e83
--- a/ports/sysdeps/unix/sysv/linux/arm/truncate64.c
147e83
+++ b/ports/sysdeps/unix/sysv/linux/arm/truncate64.c
147e83
@@ -22,7 +22,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 /* Truncate the file FD refers to to LENGTH bytes.  */
147e83
 int
147e83
@@ -30,7 +29,7 @@ truncate64 (const char *path, off64_t length)
147e83
 {
147e83
   unsigned int low = length & 0xffffffff;
147e83
   unsigned int high = length >> 32;
147e83
-  int result = INLINE_SYSCALL (truncate64, 4, CHECK_STRING (path), 0,
147e83
+  int result = INLINE_SYSCALL (truncate64, 4, path, 0,
147e83
 			       __LONG_LONG_PAIR (high, low));
147e83
   return result;
147e83
 }
147e83
diff --git a/ports/sysdeps/unix/sysv/linux/ia64/umount.c b/ports/sysdeps/unix/sysv/linux/ia64/umount.c
147e83
index ae0c03659f0fef9b..86b1acc9c634e55c 100644
147e83
--- a/ports/sysdeps/unix/sysv/linux/ia64/umount.c
147e83
+++ b/ports/sysdeps/unix/sysv/linux/ia64/umount.c
147e83
@@ -20,11 +20,10 @@
147e83
 #include <errno.h>
147e83
 
147e83
 #include <sysdep.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 /* Unmount a filesystem.  */
147e83
 int
147e83
 umount (const char *special_file)
147e83
 {
147e83
-  return INLINE_SYSCALL (umount, 2, CHECK_STRING (special_file), 0);
147e83
+  return INLINE_SYSCALL (umount, 2, special_file, 0);
147e83
 }
147e83
diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c b/ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c
147e83
index 3fad93f50e745396..a9a8059379fdbba5 100644
147e83
--- a/ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c
147e83
+++ b/ports/sysdeps/unix/sysv/linux/mips/mips32/truncate64.c
147e83
@@ -22,7 +22,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 /* Truncate the file FD refers to to LENGTH bytes.  */
147e83
 int
147e83
@@ -30,7 +29,7 @@ truncate64 (const char *path, off64_t length)
147e83
 {
147e83
   unsigned int low = length & 0xffffffff;
147e83
   unsigned int high = length >> 32;
147e83
-  int result = INLINE_SYSCALL (truncate64, 4, CHECK_STRING (path), 0,
147e83
+  int result = INLINE_SYSCALL (truncate64, 4, path, 0,
147e83
 			       __LONG_LONG_PAIR (high, low));
147e83
   return result;
147e83
 }
147e83
diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c
147e83
index 1078cc35ac0cc129..645ffa122ea62de6 100644
147e83
--- a/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c
147e83
+++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c
147e83
@@ -25,7 +25,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <kernel-features.h>
147e83
 
147e83
@@ -96,11 +95,9 @@ __fxstatat64 (int vers, int fd, const char *file, struct stat64 *st, int flag)
147e83
     }
147e83
 
147e83
   if (flag & AT_SYMLINK_NOFOLLOW)
147e83
-    result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
147e83
-			       __ptrvalue (&kst));
147e83
+    result = INTERNAL_SYSCALL (lstat, err, 2, file, __ptrvalue (&kst));
147e83
   else
147e83
-    result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
147e83
-			       __ptrvalue (&kst));
147e83
+    result = INTERNAL_SYSCALL (stat, err, 2, file, __ptrvalue (&kst));
147e83
 
147e83
   if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
147e83
     return __xstat64_conv (vers, &kst, st);
147e83
diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c
147e83
index 71123f2bf9094c0f..f698d9298a3855e6 100644
147e83
--- a/ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c
147e83
+++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/lxstat64.c
147e83
@@ -23,7 +23,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <xstatconv.h>
147e83
 
147e83
@@ -34,7 +33,7 @@ __lxstat64 (int vers, const char *name, struct stat64 *buf)
147e83
   int result;
147e83
   struct kernel_stat kbuf;
147e83
 
147e83
-  result = INLINE_SYSCALL (lstat, 2, CHECK_STRING (name), __ptrvalue (&kbuf));
147e83
+  result = INLINE_SYSCALL (lstat, 2, name, __ptrvalue (&kbuf));
147e83
   if (result == 0)
147e83
     result = __xstat64_conv (vers, &kbuf, buf);
147e83
 
147e83
diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c
147e83
index b5bb93614340c02a..623299c6b8db85c4 100644
147e83
--- a/ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c
147e83
+++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/xstat64.c
147e83
@@ -23,7 +23,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <xstatconv.h>
147e83
 
147e83
@@ -35,7 +34,7 @@ __xstat64 (int vers, const char *name, struct stat64 *buf)
147e83
   int result;
147e83
   struct kernel_stat kbuf;
147e83
 
147e83
-  result = INLINE_SYSCALL (stat, 2, CHECK_STRING (name), __ptrvalue (&kbuf));
147e83
+  result = INLINE_SYSCALL (stat, 2, name, __ptrvalue (&kbuf));
147e83
   if (result == 0)
147e83
     result = __xstat64_conv (vers, &kbuf, buf);
147e83
 
147e83
diff --git a/sysdeps/generic/bp-checks.h b/sysdeps/generic/bp-checks.h
147e83
index f2610786aed0cc85..bf10617a3f6b8474 100644
147e83
--- a/sysdeps/generic/bp-checks.h
147e83
+++ b/sysdeps/generic/bp-checks.h
147e83
@@ -41,16 +41,6 @@
147e83
     && BOUNDS_VIOLATED),				\
147e83
    __ptrvalue (ARG))
147e83
 
147e83
-extern void *__unbounded __ubp_memchr (const void *__unbounded, int, unsigned);
147e83
-
147e83
-# define _CHECK_STRING(ARG, COND)				\
147e83
-  (((COND)							\
147e83
-    && (__ptrvalue (ARG) < __ptrlow (ARG)			\
147e83
-	|| !__ubp_memchr (__ptrvalue (ARG), '\0',			\
147e83
-		      (__ptrhigh (ARG) - __ptrvalue (ARG))))	\
147e83
-    && BOUNDS_VIOLATED),					\
147e83
-   __ptrvalue (ARG))
147e83
-
147e83
 /* Check bounds of a pointer seated to an array of N objects.  */
147e83
 # define CHECK_N(ARG, N) _CHECK_N ((ARG), (N), 1)
147e83
 /* Same as CHECK_N, but tolerate ARG == NULL.  */
147e83
@@ -61,11 +51,6 @@ extern void *__unbounded __ubp_memchr (const void *__unbounded, int, unsigned);
147e83
 /* Same as CHECK_1, but tolerate ARG == NULL.  */
147e83
 # define CHECK_1_NULL_OK(ARG) CHECK_N_NULL_OK ((ARG), 1)
147e83
 
147e83
-/* Check for NUL-terminator within string's bounds.  */
147e83
-# define CHECK_STRING(ARG) _CHECK_STRING ((ARG), 1)
147e83
-/* Same as CHECK_STRING, but tolerate ARG == NULL.  */
147e83
-# define CHECK_STRING_NULL_OK(ARG) _CHECK_STRING ((ARG), __ptrvalue (ARG))
147e83
-
147e83
 #else /* !__BOUNDED_POINTERS__ */
147e83
 
147e83
 /* Do nothing if not compiling with -fbounded-pointers.  */
147e83
@@ -77,7 +62,6 @@ extern void *__unbounded __ubp_memchr (const void *__unbounded, int, unsigned);
147e83
 # define CHECK_1_NULL_OK(ARG) (ARG)
147e83
 # define CHECK_N(ARG, N) (ARG)
147e83
 # define CHECK_N_NULL_OK(ARG, N) (ARG)
147e83
-# define CHECK_STRING(ARG) (ARG)
147e83
 
147e83
 #endif /* !__BOUNDED_POINTERS__ */
147e83
 
147e83
diff --git a/sysdeps/i386/memchr.S b/sysdeps/i386/memchr.S
147e83
index 191641207efb9076..a3427c17dafd0cbf 100644
147e83
--- a/sysdeps/i386/memchr.S
147e83
+++ b/sysdeps/i386/memchr.S
147e83
@@ -333,7 +333,4 @@ L(pop):	popl %edi		/* pop saved registers */
147e83
 END (BP_SYM (__memchr))
147e83
 
147e83
 weak_alias (BP_SYM (__memchr), BP_SYM (memchr))
147e83
-#if !__BOUNDED_POINTERS__
147e83
-weak_alias (__memchr, __ubp_memchr)
147e83
-#endif
147e83
 libc_hidden_builtin_def (memchr)
147e83
diff --git a/sysdeps/sparc/sparc32/memchr.S b/sysdeps/sparc/sparc32/memchr.S
147e83
index b7a77298ab916ee0..e22b3d8c1adf4322 100644
147e83
--- a/sysdeps/sparc/sparc32/memchr.S
147e83
+++ b/sysdeps/sparc/sparc32/memchr.S
147e83
@@ -139,7 +139,4 @@ ENTRY(__memchr)
147e83
 END(__memchr)
147e83
 
147e83
 weak_alias (__memchr, memchr)
147e83
-#if !__BOUNDED_POINTERS__
147e83
-weak_alias (__memchr, __ubp_memchr)
147e83
-#endif
147e83
 libc_hidden_builtin_def (memchr)
147e83
diff --git a/sysdeps/sparc/sparc64/memchr.S b/sysdeps/sparc/sparc64/memchr.S
147e83
index 03423b93f5bd81e1..cf38e6a10329e37f 100644
147e83
--- a/sysdeps/sparc/sparc64/memchr.S
147e83
+++ b/sysdeps/sparc/sparc64/memchr.S
147e83
@@ -256,7 +256,4 @@ ENTRY(__memchr)
147e83
 END(__memchr)
147e83
 
147e83
 weak_alias (__memchr, memchr)
147e83
-#if !__BOUNDED_POINTERS__
147e83
-weak_alias (__memchr, __ubp_memchr)
147e83
-#endif
147e83
 libc_hidden_builtin_def (memchr)
147e83
diff --git a/sysdeps/unix/sysv/linux/execve.c b/sysdeps/unix/sysv/linux/execve.c
147e83
index f29615980c531bc2..34fd14bf6afc5417 100644
147e83
--- a/sysdeps/unix/sysv/linux/execve.c
147e83
+++ b/sysdeps/unix/sysv/linux/execve.c
147e83
@@ -21,7 +21,8 @@
147e83
 #include <sysdep.h>
147e83
 #include <alloca.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
+
147e83
+/* Consider moving to syscalls.list.  */
147e83
 
147e83
 int
147e83
 __execve (file, argv, envp)
147e83
@@ -29,34 +30,6 @@ __execve (file, argv, envp)
147e83
      char *const argv[];
147e83
      char *const envp[];
147e83
 {
147e83
-#if __BOUNDED_POINTERS__
147e83
-  {
147e83
-    char *const *v;
147e83
-    int i;
147e83
-    char *__unbounded *__unbounded ubp_argv;
147e83
-    char *__unbounded *__unbounded ubp_envp;
147e83
-    char *__unbounded *__unbounded ubp_v;
147e83
-
147e83
-    for (v = argv; *v; v++)
147e83
-      ;
147e83
-    i = v - argv + 1;
147e83
-    ubp_argv = (char *__unbounded *__unbounded) alloca (sizeof (*ubp_argv) * i);
147e83
-    for (v = argv, ubp_v = ubp_argv; --i; v++, ubp_v++)
147e83
-      *ubp_v = CHECK_STRING (*v);
147e83
-    *ubp_v = 0;
147e83
-
147e83
-    for (v = envp; *v; v++)
147e83
-      ;
147e83
-    i = v - envp + 1;
147e83
-    ubp_envp = (char *__unbounded *__unbounded) alloca (sizeof (*ubp_envp) * i);
147e83
-    for (v = envp, ubp_v = ubp_envp; --i; v++, ubp_v++)
147e83
-      *ubp_v = CHECK_STRING (*v);
147e83
-    *ubp_v = 0;
147e83
-
147e83
-    return INLINE_SYSCALL (execve, 3, CHECK_STRING (file), ubp_argv, ubp_envp);
147e83
-  }
147e83
-#else
147e83
   return INLINE_SYSCALL (execve, 3, file, argv, envp);
147e83
-#endif
147e83
 }
147e83
 weak_alias (__execve, execve)
147e83
diff --git a/sysdeps/unix/sysv/linux/fxstatat.c b/sysdeps/unix/sysv/linux/fxstatat.c
147e83
index 9bb608957ac98c9d..de98e667c76f9b3e 100644
147e83
--- a/sysdeps/unix/sysv/linux/fxstatat.c
147e83
+++ b/sysdeps/unix/sysv/linux/fxstatat.c
147e83
@@ -109,10 +109,10 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
147e83
   if (vers == _STAT_VER_KERNEL)
147e83
     {
147e83
       if (flag & AT_SYMLINK_NOFOLLOW)
147e83
-	result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
147e83
+	result = INTERNAL_SYSCALL (lstat, err, 2, file,
147e83
 				   CHECK_1 ((struct kernel_stat *) st));
147e83
       else
147e83
-	result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
147e83
+	result = INTERNAL_SYSCALL (stat, err, 2, file,
147e83
 				   CHECK_1 ((struct kernel_stat *) st));
147e83
 
147e83
       if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
147e83
@@ -126,11 +126,9 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
147e83
     }
147e83
 #else
147e83
   if (flag & AT_SYMLINK_NOFOLLOW)
147e83
-    result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
147e83
-			       __ptrvalue (&kst));
147e83
+    result = INTERNAL_SYSCALL (lstat, err, 2, file, __ptrvalue (&kst));
147e83
   else
147e83
-    result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
147e83
-			       __ptrvalue (&kst));
147e83
+    result = INTERNAL_SYSCALL (stat, err, 2, file, __ptrvalue (&kst));
147e83
 
147e83
   if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
147e83
     return __xstat_conv (vers, &kst, st);
147e83
diff --git a/sysdeps/unix/sysv/linux/fxstatat64.c b/sysdeps/unix/sysv/linux/fxstatat64.c
147e83
index 4aa60df7abc9d929..10488b6c1daa210e 100644
147e83
--- a/sysdeps/unix/sysv/linux/fxstatat64.c
147e83
+++ b/sysdeps/unix/sysv/linux/fxstatat64.c
147e83
@@ -99,11 +99,9 @@ __fxstatat64 (int vers, int fd, const char *file, struct stat64 *st, int flag)
147e83
     }
147e83
 
147e83
   if (flag & AT_SYMLINK_NOFOLLOW)
147e83
-    result = INTERNAL_SYSCALL (lstat64, err, 2, CHECK_STRING (file),
147e83
-			       CHECK_1 (st));
147e83
+    result = INTERNAL_SYSCALL (lstat64, err, 2, file, CHECK_1 (st));
147e83
   else
147e83
-    result = INTERNAL_SYSCALL (stat64, err, 2, CHECK_STRING (file),
147e83
-			       CHECK_1 (st));
147e83
+    result = INTERNAL_SYSCALL (stat64, err, 2, file, CHECK_1 (st));
147e83
   if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
147e83
     {
147e83
 # if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
147e83
diff --git a/sysdeps/unix/sysv/linux/getcwd.c b/sysdeps/unix/sysv/linux/getcwd.c
147e83
index 6a5e6262d997fc53..ab665ac9c6f6ac4d 100644
147e83
--- a/sysdeps/unix/sysv/linux/getcwd.c
147e83
+++ b/sysdeps/unix/sysv/linux/getcwd.c
147e83
@@ -26,7 +26,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <kernel-features.h>
147e83
 
147e83
@@ -78,7 +77,7 @@ __getcwd (char *buf, size_t size)
147e83
 
147e83
   int retval;
147e83
 
147e83
-  retval = INLINE_SYSCALL (getcwd, 2, CHECK_STRING (path), alloc_size);
147e83
+  retval = INLINE_SYSCALL (getcwd, 2, path, alloc_size);
147e83
   if (retval >= 0 && path[0] == '/')
147e83
     {
147e83
 #ifndef NO_ALLOCATION
147e83
diff --git a/sysdeps/unix/sysv/linux/i386/chown.c b/sysdeps/unix/sysv/linux/i386/chown.c
147e83
index 5ea3cfd8692f3bf5..0ddf0651ae2e03f3 100644
147e83
--- a/sysdeps/unix/sysv/linux/i386/chown.c
147e83
+++ b/sysdeps/unix/sysv/linux/i386/chown.c
147e83
@@ -21,7 +21,6 @@
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
 #include <shlib-compat.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <linux/posix_types.h>
147e83
 
147e83
@@ -45,7 +44,7 @@ extern int __real_chown (const char *__file, uid_t __owner, gid_t __group);
147e83
 int
147e83
 __real_chown (const char *file, uid_t owner, gid_t group)
147e83
 {
147e83
-  return INLINE_SYSCALL (chown32, 3, CHECK_STRING (file), owner, group);
147e83
+  return INLINE_SYSCALL (chown32, 3, file, owner, group);
147e83
 }
147e83
 
147e83
 
147e83
diff --git a/sysdeps/unix/sysv/linux/i386/fchownat.c b/sysdeps/unix/sysv/linux/i386/fchownat.c
147e83
index 18c8f0b317213b0f..116a24a07458e87c 100644
147e83
--- a/sysdeps/unix/sysv/linux/i386/fchownat.c
147e83
+++ b/sysdeps/unix/sysv/linux/i386/fchownat.c
147e83
@@ -24,7 +24,6 @@
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
 #include <shlib-compat.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <linux/posix_types.h>
147e83
 #include <kernel-features.h>
147e83
@@ -86,11 +85,9 @@ fchownat (int fd, const char *file, uid_t owner, gid_t group, int flag)
147e83
   INTERNAL_SYSCALL_DECL (err);
147e83
 
147e83
   if (flag & AT_SYMLINK_NOFOLLOW)
147e83
-    result = INTERNAL_SYSCALL (lchown32, err, 3, CHECK_STRING (file), owner,
147e83
-			       group);
147e83
+    result = INTERNAL_SYSCALL (lchown32, err, 3, file, owner, group);
147e83
   else
147e83
-    result = INTERNAL_SYSCALL (chown32, err, 3, CHECK_STRING (file), owner,
147e83
-			       group);
147e83
+    result = INTERNAL_SYSCALL (chown32, err, 3, file, owner, group);
147e83
 
147e83
   if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (result, err), 0))
147e83
     {
147e83
diff --git a/sysdeps/unix/sysv/linux/i386/fxstatat.c b/sysdeps/unix/sysv/linux/i386/fxstatat.c
147e83
index d1e81e081b7e91bf..010f637155d35d76 100644
147e83
--- a/sysdeps/unix/sysv/linux/i386/fxstatat.c
147e83
+++ b/sysdeps/unix/sysv/linux/i386/fxstatat.c
147e83
@@ -102,20 +102,18 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
147e83
   if (vers == _STAT_VER_KERNEL)
147e83
     {
147e83
       if (flag & AT_SYMLINK_NOFOLLOW)
147e83
-	result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
147e83
+	result = INTERNAL_SYSCALL (lstat, err, 2, file,
147e83
 				   CHECK_1 ((struct kernel_stat *) st));
147e83
       else
147e83
-	result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
147e83
+	result = INTERNAL_SYSCALL (stat, err, 2, file,
147e83
 				   CHECK_1 ((struct kernel_stat *) st));
147e83
       goto out;
147e83
     }
147e83
 
147e83
   if (flag & AT_SYMLINK_NOFOLLOW)
147e83
-    result = INTERNAL_SYSCALL (lstat64, err, 2, CHECK_STRING (file),
147e83
-			       __ptrvalue (&st64));
147e83
+    result = INTERNAL_SYSCALL (lstat64, err, 2, file, __ptrvalue (&st64));
147e83
   else
147e83
-    result = INTERNAL_SYSCALL (stat64, err, 2, CHECK_STRING (file),
147e83
-			       __ptrvalue (&st64));
147e83
+    result = INTERNAL_SYSCALL (stat64, err, 2, file, __ptrvalue (&st64));
147e83
   if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
147e83
     return __xstat32_conv (vers, &st64, st);
147e83
 
147e83
diff --git a/sysdeps/unix/sysv/linux/i386/lchown.c b/sysdeps/unix/sysv/linux/i386/lchown.c
147e83
index 6190d02a6f068c5b..d90a0b5e350221ab 100644
147e83
--- a/sysdeps/unix/sysv/linux/i386/lchown.c
147e83
+++ b/sysdeps/unix/sysv/linux/i386/lchown.c
147e83
@@ -20,7 +20,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <linux/posix_types.h>
147e83
 
147e83
@@ -29,7 +28,7 @@
147e83
 int
147e83
 __lchown (const char *file, uid_t owner, gid_t group)
147e83
 {
147e83
-  return INLINE_SYSCALL (lchown32, 3, CHECK_STRING (file), owner, group);
147e83
+  return INLINE_SYSCALL (lchown32, 3, file, owner, group);
147e83
 }
147e83
 
147e83
 weak_alias (__lchown, lchown)
147e83
diff --git a/sysdeps/unix/sysv/linux/i386/lxstat.c b/sysdeps/unix/sysv/linux/i386/lxstat.c
147e83
index 2b1ecaa0d94d86fc..9be5ff0f0e382c7e 100644
147e83
--- a/sysdeps/unix/sysv/linux/i386/lxstat.c
147e83
+++ b/sysdeps/unix/sysv/linux/i386/lxstat.c
147e83
@@ -41,12 +41,12 @@ __lxstat (int vers, const char *name, struct stat *buf)
147e83
   int result;
147e83
 
147e83
   if (vers == _STAT_VER_KERNEL)
147e83
-    return INLINE_SYSCALL (lstat, 2, CHECK_STRING (name), CHECK_1 ((struct kernel_stat *) buf));
147e83
+    return INLINE_SYSCALL (lstat, 2, name, CHECK_1 ((struct kernel_stat *) buf));
147e83
 
147e83
   {
147e83
     struct stat64 buf64;
147e83
 
147e83
-    result = INLINE_SYSCALL (lstat64, 2, CHECK_STRING (name), __ptrvalue (&buf64));
147e83
+    result = INLINE_SYSCALL (lstat64, 2, name, __ptrvalue (&buf64));
147e83
     if (result == 0)
147e83
       result = __xstat32_conv (vers, &buf64, buf);
147e83
     return result;
147e83
diff --git a/sysdeps/unix/sysv/linux/i386/xstat.c b/sysdeps/unix/sysv/linux/i386/xstat.c
147e83
index 0fe7a9dcdf028541..e44599c85a836419 100644
147e83
--- a/sysdeps/unix/sysv/linux/i386/xstat.c
147e83
+++ b/sysdeps/unix/sysv/linux/i386/xstat.c
147e83
@@ -41,12 +41,12 @@ __xstat (int vers, const char *name, struct stat *buf)
147e83
   int result;
147e83
 
147e83
   if (vers == _STAT_VER_KERNEL)
147e83
-    return INLINE_SYSCALL (stat, 2, CHECK_STRING (name), CHECK_1 ((struct kernel_stat *) buf));
147e83
+    return INLINE_SYSCALL (stat, 2, name, CHECK_1 ((struct kernel_stat *) buf));
147e83
 
147e83
   {
147e83
     struct stat64 buf64;
147e83
 
147e83
-    result = INLINE_SYSCALL (stat64, 2, CHECK_STRING (name), __ptrvalue (&buf64));
147e83
+    result = INLINE_SYSCALL (stat64, 2, name, __ptrvalue (&buf64));
147e83
     if (result == 0)
147e83
       result = __xstat32_conv (vers, &buf64, buf);
147e83
     return result;
147e83
diff --git a/sysdeps/unix/sysv/linux/lxstat.c b/sysdeps/unix/sysv/linux/lxstat.c
147e83
index c7359647b67ee461..62b4650d8f771854 100644
147e83
--- a/sysdeps/unix/sysv/linux/lxstat.c
147e83
+++ b/sysdeps/unix/sysv/linux/lxstat.c
147e83
@@ -36,7 +36,7 @@ int
147e83
 __lxstat (int vers, const char *name, struct stat *buf)
147e83
 {
147e83
   if (vers == _STAT_VER_KERNEL)
147e83
-    return INLINE_SYSCALL (lstat, 2, CHECK_STRING (name),
147e83
+    return INLINE_SYSCALL (lstat, 2, name,
147e83
 			   CHECK_1 ((struct kernel_stat *) buf));
147e83
 
147e83
 #ifdef STAT_IS_KERNEL_STAT
147e83
@@ -46,7 +46,7 @@ __lxstat (int vers, const char *name, struct stat *buf)
147e83
   struct kernel_stat kbuf;
147e83
   int result;
147e83
 
147e83
-  result = INLINE_SYSCALL (lstat, 2, CHECK_STRING (name), __ptrvalue (&kbuf));
147e83
+  result = INLINE_SYSCALL (lstat, 2, name, __ptrvalue (&kbuf));
147e83
   if (result == 0)
147e83
     result = __xstat_conv (vers, &kbuf, buf);
147e83
 
147e83
diff --git a/sysdeps/unix/sysv/linux/lxstat64.c b/sysdeps/unix/sysv/linux/lxstat64.c
147e83
index 765b195c6ceb6554..d5d9f93f782d0221 100644
147e83
--- a/sysdeps/unix/sysv/linux/lxstat64.c
147e83
+++ b/sysdeps/unix/sysv/linux/lxstat64.c
147e83
@@ -32,7 +32,7 @@ int
147e83
 ___lxstat64 (int vers, const char *name, struct stat64 *buf)
147e83
 {
147e83
   int result;
147e83
-  result = INLINE_SYSCALL (lstat64, 2, CHECK_STRING (name), CHECK_1 (buf));
147e83
+  result = INLINE_SYSCALL (lstat64, 2, name, CHECK_1 (buf));
147e83
 #if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
147e83
   if (__builtin_expect (!result, 1) && buf->__st_ino != (__ino_t) buf->st_ino)
147e83
     buf->st_ino = buf->__st_ino;
147e83
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c b/sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c
147e83
index c9f66164ce2397c9..6f416599e9ebdd1d 100644
147e83
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c
147e83
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c
147e83
@@ -21,7 +21,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 /* Truncate the file referenced by FD to LENGTH bytes.  */
147e83
 int
147e83
@@ -30,7 +29,7 @@ truncate64 (path, length)
147e83
      off64_t length;
147e83
 {
147e83
   /* On PPC32 64bit values are aligned in odd/even register pairs.  */
147e83
-  int result = INLINE_SYSCALL (truncate64, 4, CHECK_STRING (path), 0,
147e83
+  int result = INLINE_SYSCALL (truncate64, 4, path, 0,
147e83
 			       (long) (length >> 32),
147e83
 			       (long) length);
147e83
   return result;
147e83
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/chown.c b/sysdeps/unix/sysv/linux/s390/s390-32/chown.c
147e83
index cc0503cbca14e822..f6a533d2b3fbe74e 100644
147e83
--- a/sysdeps/unix/sysv/linux/s390/s390-32/chown.c
147e83
+++ b/sysdeps/unix/sysv/linux/s390/s390-32/chown.c
147e83
@@ -21,7 +21,6 @@
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
 #include <shlib-compat.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <linux/posix_types.h>
147e83
 
147e83
@@ -42,7 +41,7 @@
147e83
 int
147e83
 __real_chown (const char *file, uid_t owner, gid_t group)
147e83
 {
147e83
-  return INLINE_SYSCALL (chown32, 3, CHECK_STRING (file), owner, group);
147e83
+  return INLINE_SYSCALL (chown32, 3, file, owner, group);
147e83
 }
147e83
 
147e83
 
147e83
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/lchown.c b/sysdeps/unix/sysv/linux/s390/s390-32/lchown.c
147e83
index 6190d02a6f068c5b..d90a0b5e350221ab 100644
147e83
--- a/sysdeps/unix/sysv/linux/s390/s390-32/lchown.c
147e83
+++ b/sysdeps/unix/sysv/linux/s390/s390-32/lchown.c
147e83
@@ -20,7 +20,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <linux/posix_types.h>
147e83
 
147e83
@@ -29,7 +28,7 @@
147e83
 int
147e83
 __lchown (const char *file, uid_t owner, gid_t group)
147e83
 {
147e83
-  return INLINE_SYSCALL (lchown32, 3, CHECK_STRING (file), owner, group);
147e83
+  return INLINE_SYSCALL (lchown32, 3, file, owner, group);
147e83
 }
147e83
 
147e83
 weak_alias (__lchown, lchown)
147e83
diff --git a/sysdeps/unix/sysv/linux/sh/chown.c b/sysdeps/unix/sysv/linux/sh/chown.c
147e83
index 5ae94b6b25b84e85..9ff0453d0ceb52ee 100644
147e83
--- a/sysdeps/unix/sysv/linux/sh/chown.c
147e83
+++ b/sysdeps/unix/sysv/linux/sh/chown.c
147e83
@@ -20,7 +20,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 #include <linux/posix_types.h>
147e83
 
147e83
@@ -29,7 +28,7 @@
147e83
 int
147e83
 __chown (const char *file, uid_t owner, gid_t group)
147e83
 {
147e83
-  return INLINE_SYSCALL (chown32, 3, CHECK_STRING (file), owner, group);
147e83
+  return INLINE_SYSCALL (chown32, 3, file, owner, group);
147e83
 }
147e83
 libc_hidden_def (__chown)
147e83
 weak_alias (__chown, chown)
147e83
diff --git a/sysdeps/unix/sysv/linux/truncate64.c b/sysdeps/unix/sysv/linux/truncate64.c
147e83
index b31b74d1dee485b4..98f8ec2691bad3a5 100644
147e83
--- a/sysdeps/unix/sysv/linux/truncate64.c
147e83
+++ b/sysdeps/unix/sysv/linux/truncate64.c
147e83
@@ -22,7 +22,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 /* Truncate the file referenced by FD to LENGTH bytes.  */
147e83
 int
147e83
@@ -30,7 +29,7 @@ truncate64 (const char *path, off64_t length)
147e83
 {
147e83
   unsigned int low = length & 0xffffffff;
147e83
   unsigned int high = length >> 32;
147e83
-  int result = INLINE_SYSCALL (truncate64, 3, CHECK_STRING (path),
147e83
+  int result = INLINE_SYSCALL (truncate64, 3, path,
147e83
 			       __LONG_LONG_PAIR (high, low));
147e83
   return result;
147e83
 }
147e83
diff --git a/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c b/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c
147e83
index cec71518524c2bc2..f44778e787e5ad80 100644
147e83
--- a/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c
147e83
+++ b/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c
147e83
@@ -34,7 +34,7 @@ int
147e83
 __lxstat (int vers, const char *name, struct stat *buf)
147e83
 {
147e83
   if (vers == _STAT_VER_KERNEL || vers == _STAT_VER_LINUX)
147e83
-    return INLINE_SYSCALL (lstat, 2, CHECK_STRING (name), CHECK_1 (buf));
147e83
+    return INLINE_SYSCALL (lstat, 2, name, CHECK_1 (buf));
147e83
 
147e83
   __set_errno (EINVAL);
147e83
   return -1;
147e83
diff --git a/sysdeps/unix/sysv/linux/xmknod.c b/sysdeps/unix/sysv/linux/xmknod.c
147e83
index 9bd8b6b0d46bee4b..5b782b7af070f2ce 100644
147e83
--- a/sysdeps/unix/sysv/linux/xmknod.c
147e83
+++ b/sysdeps/unix/sysv/linux/xmknod.c
147e83
@@ -24,7 +24,6 @@
147e83
 
147e83
 #include <sysdep.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 /* Create a device file named PATH, with permission and special bits MODE
147e83
    and device number DEV (which can be constructed from major and minor
147e83
@@ -48,8 +47,7 @@ __xmknod (int vers, const char *path, mode_t mode, dev_t *dev)
147e83
       return -1;
147e83
     }
147e83
 
147e83
-  return INLINE_SYSCALL (mknod, 3, CHECK_STRING (path), mode,
147e83
-			 (unsigned int) k_dev);
147e83
+  return INLINE_SYSCALL (mknod, 3, path, mode, (unsigned int) k_dev);
147e83
 }
147e83
 
147e83
 weak_alias (__xmknod, _xmknod)
147e83
diff --git a/sysdeps/unix/sysv/linux/xmknodat.c b/sysdeps/unix/sysv/linux/xmknodat.c
147e83
index bf91d25329a0193a..a0fa0a7984d0aa51 100644
147e83
--- a/sysdeps/unix/sysv/linux/xmknodat.c
147e83
+++ b/sysdeps/unix/sysv/linux/xmknodat.c
147e83
@@ -26,7 +26,6 @@
147e83
 #include <sysdep.h>
147e83
 #include <kernel-features.h>
147e83
 #include <sys/syscall.h>
147e83
-#include <bp-checks.h>
147e83
 
147e83
 
147e83
 /* Create a device file named PATH relative to FD, with permission and
147e83
@@ -92,8 +91,7 @@ __xmknodat (int vers, int fd, const char *file, mode_t mode, dev_t *dev)
147e83
       file = buf;
147e83
     }
147e83
 
147e83
-  return INLINE_SYSCALL (mknod, 3, CHECK_STRING (file), mode,
147e83
-			 (unsigned int) k_dev);
147e83
+  return INLINE_SYSCALL (mknod, 3, file, mode, (unsigned int) k_dev);
147e83
 #endif
147e83
 }
147e83
 
147e83
diff --git a/sysdeps/unix/sysv/linux/xstat.c b/sysdeps/unix/sysv/linux/xstat.c
147e83
index d62feaf9fe5ee1df..179ea9e30123fb81 100644
147e83
--- a/sysdeps/unix/sysv/linux/xstat.c
147e83
+++ b/sysdeps/unix/sysv/linux/xstat.c
147e83
@@ -36,7 +36,7 @@ int
147e83
 __xstat (int vers, const char *name, struct stat *buf)
147e83
 {
147e83
   if (vers == _STAT_VER_KERNEL)
147e83
-    return INLINE_SYSCALL (stat, 2, CHECK_STRING (name),
147e83
+    return INLINE_SYSCALL (stat, 2, name,
147e83
 			   CHECK_1 ((struct kernel_stat *) buf));
147e83
 
147e83
 #ifdef STAT_IS_KERNEL_STAT
147e83
@@ -46,8 +46,7 @@ __xstat (int vers, const char *name, struct stat *buf)
147e83
   struct kernel_stat kbuf;
147e83
   int result;
147e83
 
147e83
-  result = INLINE_SYSCALL (stat, 2, CHECK_STRING (name),
147e83
-			   __ptrvalue (&kbuf));
147e83
+  result = INLINE_SYSCALL (stat, 2, name, __ptrvalue (&kbuf));
147e83
   if (result == 0)
147e83
     result = __xstat_conv (vers, &kbuf, buf);
147e83
 
147e83
diff --git a/sysdeps/unix/sysv/linux/xstat64.c b/sysdeps/unix/sysv/linux/xstat64.c
147e83
index dd0f996760502423..89976a68e9d86699 100644
147e83
--- a/sysdeps/unix/sysv/linux/xstat64.c
147e83
+++ b/sysdeps/unix/sysv/linux/xstat64.c
147e83
@@ -33,7 +33,7 @@ int
147e83
 ___xstat64 (int vers, const char *name, struct stat64 *buf)
147e83
 {
147e83
   int result;
147e83
-  result = INLINE_SYSCALL (stat64, 2, CHECK_STRING (name), CHECK_1 (buf));
147e83
+  result = INLINE_SYSCALL (stat64, 2, name, CHECK_1 (buf));
147e83
 #if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
147e83
   if (__builtin_expect (!result, 1) && buf->__st_ino != (__ino_t) buf->st_ino)
147e83
     buf->st_ino = buf->__st_ino;