]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Linux: Add execveat system call wrapper sasha/execveat
authorAlexandra Hájková <ahajkova@redhat.com>
Mon, 27 Apr 2020 14:52:38 +0000 (10:52 -0400)
committerAlexandra Hájková <ahajkova@redhat.com>
Mon, 7 Sep 2020 15:36:23 +0000 (17:36 +0200)
38 files changed:
posix/Makefile
posix/Versions
posix/execveat.c [new file with mode: 0644]
posix/tst-execveat.c [new file with mode: 0644]
posix/unistd.h
sysdeps/mach/hurd/i386/libc.abilist
sysdeps/unix/sysv/linux/Makefile
sysdeps/unix/sysv/linux/aarch64/libc.abilist
sysdeps/unix/sysv/linux/alpha/libc.abilist
sysdeps/unix/sysv/linux/arm/be/libc.abilist
sysdeps/unix/sysv/linux/arm/le/libc.abilist
sysdeps/unix/sysv/linux/csky/libc.abilist
sysdeps/unix/sysv/linux/execveat.c [new file with mode: 0644]
sysdeps/unix/sysv/linux/hppa/libc.abilist
sysdeps/unix/sysv/linux/i386/libc.abilist
sysdeps/unix/sysv/linux/ia64/libc.abilist
sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist
sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist
sysdeps/unix/sysv/linux/microblaze/be/libc.abilist
sysdeps/unix/sysv/linux/microblaze/le/libc.abilist
sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
sysdeps/unix/sysv/linux/nios2/libc.abilist
sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libc.abilist
sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libc.abilist
sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist
sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist
sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist
sysdeps/unix/sysv/linux/sh/be/libc.abilist
sysdeps/unix/sysv/linux/sh/le/libc.abilist
sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist
sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist
sysdeps/unix/sysv/linux/x86_64/64/libc.abilist
sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist

index 605ddbade863d003b54dd7ffa2d79442d5d1846b..2e96d7e4a1e7a325e25d668c829820256fb784aa 100644 (file)
@@ -65,7 +65,8 @@ routines :=                                                                 \
        spawnattr_setsigmask spawnattr_setschedpolicy spawnattr_setschedparam \
        posix_madvise                                                         \
        get_child_max sched_cpucount sched_cpualloc sched_cpufree \
-       streams-compat
+       streams-compat                                            \
+       execveat
 
 aux            := init-posix environ
 tests          := test-errno tstgetopt testfnm runtests runptests \
@@ -102,7 +103,7 @@ tests               := test-errno tstgetopt testfnm runtests runptests \
                   tst-sysconf-empty-chroot tst-glob_symlinks tst-fexecve \
                   tst-glob-tilde test-ssize-max tst-spawn4 bug-regex37 \
                   bug-regex38 tst-regcomp-truncated tst-spawn-chdir \
-                  tst-wordexp-nocmd
+                  tst-wordexp-nocmd tst-execveat
 tests-internal := bug-regex5 bug-regex20 bug-regex33 \
                   tst-rfc3484 tst-rfc3484-2 tst-rfc3484-3 \
                   tst-glob_lstat_compat tst-spawn4-compat
index 7d06a6d0c0d5a4aa0365f19947714dcf8092cfb5..8a50a2b6172db658af4d1351b1508814933eb7d6 100644 (file)
@@ -147,6 +147,9 @@ libc {
   }
   GLIBC_2.30 {
   }
+  GLIBC_2.32 {
+    execveat;
+  }
   GLIBC_PRIVATE {
     __libc_fork; __libc_pread; __libc_pwrite;
     __nanosleep_nocancel; __pause_nocancel;
diff --git a/posix/execveat.c b/posix/execveat.c
new file mode 100644 (file)
index 0000000..cab6195
--- /dev/null
@@ -0,0 +1,40 @@
+/* Copyright (C) 1991-2020 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   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
+   <https://www.gnu.org/licenses/>.  */
+
+#include <errno.h>
+#include <stddef.h>
+#include <unistd.h>
+
+/* Replace the current process, executing PATH relative to DIFRD with
+ * arguments ARGV and environment ENVP.
+ * ARGV and ENVP are terminated by NULL pointers.  */
+int
+__execveat (int dirfd, const char *path, char *const argv[], char *const envp[],
+            int flags)
+{
+  if (difrd < 0 || path == NULL || argv == NULL || envp == NULL)
+    {
+      __set_errno (EINVAL);
+      return -1;
+    }
+
+  __set_errno (ENOSYS);
+  return -1;
+}
+stub_warning (execveat)
+
+weak_alias (__execveat, execveat)
diff --git a/posix/tst-execveat.c b/posix/tst-execveat.c
new file mode 100644 (file)
index 0000000..0e0a33d
--- /dev/null
@@ -0,0 +1,142 @@
+/* Copyright (C) 2017-2020 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   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
+   <https://www.gnu.org/licenses/>.  */
+
+#include <fcntl.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <dirent.h>
+#include <support/check.h>
+#include <support/xdlfcn.h>
+#include <support/xstdio.h>
+#include <support/xunistd.h>
+#include <wait.h>
+#include <support/test-driver.h>
+
+int
+call_execveat (int fd, const char *pathname, int flags, int expected_fail, int num)
+{
+  char *argv[] = { (char *) "sh", (char *) "-c", (char *) "exit 3", NULL };
+  char *envp[] = { (char *) "FOO=BAR", NULL };
+  pid_t pid;
+  int status;
+
+  printf("call number: %d\n", num);
+
+  pid = xfork ();
+  if (pid == 0)
+  {
+
+      TEST_COMPARE (execveat (fd, "sh", argv, envp, flags), -1);
+      if (errno == ENOSYS)
+          FAIL_UNSUPPORTED ("execveat is unimplemented");
+      else if (errno == expected_fail)
+      {
+          if (test_verbose > 0)
+              printf ("expected fail: errno %d\n", errno);
+          _exit(0);
+      }
+      else
+          FAIL_EXIT1 ("execveat failed, errno %d", errno);
+  }
+  xwaitpid (pid, &status, 0);
+
+  if (WIFEXITED (status))
+    if (expected_fail)
+      TEST_COMPARE (WEXITSTATUS (status), 0);
+    else
+      TEST_COMPARE (WEXITSTATUS (status), 3);
+  else if (!expected_fail)
+      FAIL_EXIT1 ("execveat failed");
+  return 0;
+}
+
+static int
+do_test (void)
+{
+  DIR *dirp;
+  int fd;
+
+  dirp = opendir ("/bin");
+  if (dirp == NULL)
+    FAIL_EXIT1 ("failed to open /bin");
+  fd = dirfd (dirp);
+
+  /* Call execveat for various fd/pathname combinations  */
+
+  /* fd: valid dir, pathname: relative, flags:: 0  */
+  call_execveat (fd, "sh", 0, 0, 1);
+  /* fd: valid dir, pathname: relative, flags: O_PATH  */
+  call_execveat (fd, "sh", O_PATH, 0, 2);
+  /* fd: AT_FDCWD, pathname: relative, flags: 0
+     If pathname is relative and dirfd is the special value AT_FDCWD, then
+     pathname is interpreted relative to the current working directory of
+     the calling process  */
+  chdir("/bin");
+  call_execveat (AT_FDCWD, "sh", 0, 0, 3);
+  xclose (fd);
+  closedir (dirp);
+
+  dirp = opendir ("/usr");
+  fd = dirfd (dirp);
+  chdir ("/etc");
+  /* fd: AT_FDCWD, pathname: absolute in different dir, flags: 0  */
+  call_execveat (AT_FDCWD, "/bin/sh", 0, 0, 4);
+
+  /* fd: valid dir, pathname: absolute in differen dir, flags: 0  */
+  call_execveat (fd, "/bin/sh", 0, 0, 5);
+  /* fd: valid dir, pathname: absolute, flags: O_PATH  */
+  call_execveat (fd, "/bin/sh", O_PATH, 0, 6);
+  xclose (fd);
+  closedir (dirp);
+
+  fd = xopen ("/bin/sh", 0, 0);
+  /* fd: regular file, pathname: relative, flags: 0  */
+  call_execveat(fd, "sh", 0, ENOTDIR, 7);
+  /* fd: regular file, pathname: absolute, flags: 0  */
+  call_execveat (fd, "/bin/sh", 0, 0, 8);
+  xclose (fd);
+
+  fd = xopen ("/bin/sh", O_PATH, 0);
+  /* fd: O_PATH of regular file, pathname: empty, flags: 0  */
+  call_execveat (fd, "", 0, ENOTDIR, 10);
+  /* fd: O_PATH of regular file, pathname: empty, flags: AT_EMPTY_PATH  */
+  call_execveat (fd, "", AT_EMPTY_PATH, 0, 11); // fails with ENOTDIR (20)
+  /* fd: O_PATH of regular file, pathname: empty,
+     flags: AT_EMPTY_PATH  AT_SYMLINK_NOFOLLOW  */
+  //   call_execveat (fd, "", AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW, NULL, 0, 12); //fails with ENOTDIR
+  xclose (fd);
+
+  fd = xopen ("/bin/sh", O_NOFOLLOW | O_PATH, 0);
+  /* fd: O_PATH of symbolic link, pathname: empty, flags:  */
+//    call_execveat(fd, "", 0, 1, 13); //fails with  errno ENOTDIR
+  /* fd: O_PATH of symbolic link, pathname: empty, flags:  */
+//    call_execveat (fd, "", AT_EMPTY_PATH, 0, 14); //fails with  errno ENOTDIR
+  /* fd: O_PATH of symbolic link, pathname: empty,
+    flags: AT_EMPTY_PATH  AT_SYMLINK_NOFOLLOW */
+  call_execveat (fd, "", AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW, ENOTDIR, 15);
+  xclose (fd);
+
+  /* Call execveat with closed fd, we expect this to fail with EBADF  */
+  call_execveat (fd, "sh", 0, EBADF, 16);
+  /* Call execveat with closed fd, we expect this to pass because the pathname is
+    absolute  */
+  call_execveat (fd, "/bin/sh", 0, 0, 17);
+
+  return 0;
+}
+
+#include <support/test-driver.c>
index 32b8161619e6cf3081b9e8c6d2f38120a378f9a5..b1117f2eda3f3592af435fe433bab1d6af774417 100644 (file)
@@ -295,6 +295,11 @@ extern int euidaccess (const char *__name, int __type)
 /* An alias for `euidaccess', used by some other systems.  */
 extern int eaccess (const char *__name, int __type)
      __THROW __nonnull ((1));
+
+/* Execute program relative to a directory file descriptor.  */
+extern int execveat (int __fd, const char *__path, char *const __argv[],
+                     char *const __envp[], int __flags)
+    __THROW __nonnull ((2, 3));
 #endif
 
 #ifdef __USE_ATFILE
index 72537218ba72070b476be5870674d13a8e988c31..3ef54af98cfa263527e223f8d377e19c70d372fd 100644 (file)
@@ -2181,6 +2181,7 @@ GLIBC_2.3.4 xdr_quad_t F
 GLIBC_2.3.4 xdr_u_quad_t F
 GLIBC_2.30 twalk_r F
 GLIBC_2.32 __libc_single_threaded D 0x1
+GLIBC_2.32 execveat F
 GLIBC_2.32 mach_print F
 GLIBC_2.32 mremap F
 GLIBC_2.32 sigabbrev_np F
index 5079f336556677e84dd846f3fb03d02cb324e793..889c8e9576d687034a62e44e32093431a8610123 100644 (file)
@@ -233,7 +233,7 @@ endif
 ifeq ($(subdir),posix)
 sysdep_headers += bits/initspin.h
 
-sysdep_routines += sched_getcpu oldglob getcpu
+sysdep_routines += sched_getcpu oldglob getcpu execveat
 
 tests += tst-affinity tst-affinity-pid
 
index 6cd61988b4e84baa624cac876999932bc13dd139..1c3e937ef05825ed0efc9c1d173cd75f8debe2f0 100644 (file)
@@ -2155,6 +2155,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 8edb5deea1a6eb0ef77eaf9d9af9df5961cda702..f7c8c9fe46238c2f299a23a8555c369fe0d4136e 100644 (file)
@@ -2237,6 +2237,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 7f4a146d2285a236423f7862f8ad28902f63cc36..e0e2a9feef39b6a027fdc08e0a612335b98b34ca 100644 (file)
@@ -139,6 +139,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index a83cc81958fe60b9476c075cb810d9a2013ede57..95785be85c81293dec3209279151f25233285e25 100644 (file)
@@ -136,6 +136,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 32887b1c58003bf78f45dfbf984771b7d91efba1..69db05ef0090069df474fa4e8f345b2ad725423f 100644 (file)
@@ -2099,6 +2099,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
diff --git a/sysdeps/unix/sysv/linux/execveat.c b/sysdeps/unix/sysv/linux/execveat.c
new file mode 100644 (file)
index 0000000..62f3f05
--- /dev/null
@@ -0,0 +1,79 @@
+/* Copyright (C) 1994-2020 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   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
+   <https://www.gnu.org/licenses/>.  */
+
+#include <errno.h>
+#include <stddef.h>
+#include <stdio.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+
+#include <sysdep.h>
+#include <sys/syscall.h>
+#include <kernel-features.h>
+#include <fd_to_filename.h>
+#include <not-cancel.h>
+
+/* Execute the file FD refers to, overlaying the running program image.
+   ARGV and ENVP are passed to the new program, as for `execve'.  */
+int
+execveat (int dirfd, const char *path, char *const argv[], char *const envp[],
+          int flags)
+{
+  /* Avoid implicit array coercion in syscall macros.  */
+  INLINE_SYSCALL_CALL (execveat, dirfd, path, &argv[0], &envp[0], flags);
+#ifndef __ASSUME_EXECVEAT
+  if (errno != ENOSYS)
+    return -1;
+
+  if ((flags & ~(AT_EMPTY_PATH | AT_SYMLINK_NOFOLLOW)) != 0)
+    return EINVAL;
+
+  int fd;
+  if (path[0] == '\0' && (flags & AT_EMPTY_PATH) && dirfd >= 0)
+    fd = dirfd;
+  else
+    {
+      int oflags = O_CLOEXEC;
+      if (flags & AT_SYMLINK_NOFOLLOW)
+        oflags |= O_NOFOLLOW;
+      fd = openat (dirfd, path, oflags);
+    }
+  if (fd < 0)
+    return -1;
+
+  struct fd_to_filename fdfilename;
+  const char *gfilename = __fd_to_filename (fd, &fdfilename);
+
+  /* We do not need the return value.  */
+  __execve (gfilename, argv, envp);
+
+  int save = errno;
+
+  /* We come here only if the 'execve' call fails.  Determine whether
+     /proc is mounted.  If not we return ENOSYS.  */
+  struct stat st;
+  if (stat ("/proc/self/fd", &st) != 0 && errno == ENOENT)
+    save = ENOSYS;
+
+  if (fd != dirfd)
+    __close_nocancel (fd);
+  __set_errno (save);
+#endif
+
+  return -1;
+}
index baf425072b04b5d2e1190fb41dee6e0184238130..e8c2d3d9a9bf80b4c351e6aee13330ec0dd3d88a 100644 (file)
@@ -2058,6 +2058,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 8b0242a9b1ef45837d651eabb560c94f97180cac..fe5ee285d5a67e395d14e61f2e307aeb778374fe 100644 (file)
@@ -2224,6 +2224,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index b6ba86dbe940db6df60d4b14c9b3fdf24279b9f1..4700db072b7635e30e5216fbdf47f80ce8bb8064 100644 (file)
@@ -2090,6 +2090,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index e1f7e19de9f9407f780ef0bd9e607a493e84e76c..d5e2f01c42218fae010c7cf4654dcf764d9d5e95 100644 (file)
@@ -140,6 +140,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 2d726097ca09c70d16951142cbae92698fffbc16..e57ceb352a973dffdf07c17e53a3ec27de29a8bf 100644 (file)
@@ -2170,6 +2170,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 7c78649e0361c52dc33d2438addf659ffd4494f2..4d62b5275b779ea125ac5e82efe5fd283f3d6f07 100644 (file)
@@ -2150,6 +2150,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index da2194b4986fa8d15a84055ce0dabb6b21479310..74f90d351f97d18df4df3466cc781d8d9868369d 100644 (file)
@@ -2147,6 +2147,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 9fa655b3a530856343c449176e4546bf3c25c29f..6abb53d15085018d18b70c10533beb2d1deee2d3 100644 (file)
@@ -2141,6 +2141,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 3f6da71769fc981045b68eace01095b1189ef732..1dd375d8aa18c3005fcc8afeae539a67ec9c6cd9 100644 (file)
@@ -2139,6 +2139,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index de990933cf06f7e2ec9412950b82f318896ce56e..a14d143e931385b8603d951ca04e851e138f5e76 100644 (file)
@@ -2147,6 +2147,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 754491f20957daca5856d4a97525df81023d03ba..0f33c153d3221f15e3a1edfc9d329d346337f5ba 100644 (file)
@@ -2141,6 +2141,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 36a875115c82c9347707c5cfe692faf7ef8a6342..1940513e01d7ec38610b485eae4291fde04a2189 100644 (file)
@@ -2188,6 +2188,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 6de9bed51d80f14bd86bb7c3578b4550d856ba15..0cf4438e56ad5ecc130870aedb2b1f26be0b597a 100644 (file)
@@ -2197,6 +2197,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 5c8c58974c936b576ae7777a9d0f9ab0adf12b0b..a545549cfa9c85b62e69ad21dd1c66c1c31f730a 100644 (file)
@@ -2230,6 +2230,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 92114806acd301649b8ca9ab42041b8a301379b0..fc355723581f3c5be1ef8f687a27f2556c58bfdf 100644 (file)
@@ -2060,6 +2060,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index b01fdcfae1b9e106bee71bbc7554e69215e426cd..cafdd74065ad0d292901ccbc5f4fc1758f5370bb 100644 (file)
@@ -2350,6 +2350,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 45cbeb1d98f376670f77a73d855fbb55d51bc89d..0e874bbcd143feddaa36ec25355fba28ef91f9aa 100644 (file)
@@ -2117,6 +2117,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index d0752dba6c20786ea454b6bae104cc416c47cb49..1ca91ad322b2ffdded1635557ce32b3e3412cf8b 100644 (file)
@@ -2195,6 +2195,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index af5f14d1c6ab2c9f13b50f731b5fe4a48933185a..083a3b31cd40a131584fdb56256b57aea554f19d 100644 (file)
@@ -2096,6 +2096,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 038ce27174ca09ed5e5717a7aaca6ee8099cd324..40fa763bfcd54861762ac03187f1522caebc803a 100644 (file)
@@ -2065,6 +2065,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 182970a7085e429b9049f4ac131e04a4aa34c4ed..5a9f2a2308a954fa149e4b6487e2a6a1f8bb9c62 100644 (file)
@@ -2062,6 +2062,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index a2521c3ee3f7694a3e91416f927032e93819114b..1e9d86b531675831d72c1c0010c2ced25f39229e 100644 (file)
@@ -2186,6 +2186,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index d8188903f922ce672be9d40df1fbca14fb5f54a2..91c35348c17c118c5dfedd537ff06fc48039d9e4 100644 (file)
@@ -2113,6 +2113,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 1a96103c681809179bbd3ab4cca72d9de0170b4f..aa0eee41de939c44747dcd58494185586dc42a9a 100644 (file)
@@ -2071,6 +2071,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F
index 35745a75b6f4a9477d229217674a1c3de24f94d4..694326c111c11bf0ec0ef1803e49406ab6cd0684 100644 (file)
@@ -2168,6 +2168,7 @@ GLIBC_2.32 pthread_attr_setaffinity_np F
 GLIBC_2.32 pthread_attr_setsigmask_np F
 GLIBC_2.32 pthread_getaffinity_np F
 GLIBC_2.32 pthread_getattr_np F
+GLIBC_2.32 execveat F
 GLIBC_2.32 pthread_sigmask F
 GLIBC_2.32 sigabbrev_np F
 GLIBC_2.32 sigdescr_np F