]> git.feebdaed.xyz Git - 0xmirror/glibc.git/commitdiff
nptl: Use __futex_abstimed_wait64 on pthread_create (BZ 33715)
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 11 Dec 2025 20:47:17 +0000 (17:47 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 19 Dec 2025 14:45:47 +0000 (11:45 -0300)
The pthread_create is annotated as __THROWNL.

Checked on x86_64-linux-gnu.

Suggested-by: Florian Weimer <fweimer@redhat.com>
Reviewed-by: Florian Weimer <fweimer@redhat.com>
nptl/Makefile
nptl/pthread_create.c
nptl/tst-cancel33.c [new file with mode: 0644]

index 81d6a5482cbb0a1e671c79f5fd472be9e36f59bb..bfce63427b412142852e2684fe41aaf56644e1f0 100644 (file)
@@ -277,6 +277,7 @@ tests = \
   tst-cancel17 \
   tst-cancel24 \
   tst-cancel31 \
+  tst-cancel33 \
   tst-cond26 \
   tst-context1 \
   tst-default-attr \
index 19e4ec806440b9ccb475a527ddd8daae86ad1f14..08a67ebd81dc47e599e7efbcff7fb72befe099de 100644 (file)
@@ -867,8 +867,8 @@ __pthread_create_2_1 (pthread_t *newthread, const pthread_attr_t *attr,
             startup there is no need to handle all the steps.  */
          pid_t tid;
          while ((tid = atomic_load_acquire (&pd->tid)) != 0)
-           __futex_abstimed_wait_cancelable64 ((unsigned int *) &pd->tid,
-                                               tid, 0, NULL, LLL_SHARED);
+           __futex_abstimed_wait64 ((unsigned int *) &pd->tid, tid, 0, NULL,
+                                    LLL_SHARED);
         }
 
       /* State (c) or (d) and we have ownership of PD (see CONCURRENCY
diff --git a/nptl/tst-cancel33.c b/nptl/tst-cancel33.c
new file mode 100644 (file)
index 0000000..3a736d1
--- /dev/null
@@ -0,0 +1,79 @@
+/* Check if pthread_create does not act as cancellation entrypoint (BZ 33715)
+   Copyright (C) 2025 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 <support/check.h>
+#include <support/xunistd.h>
+#include <support/xthread.h>
+#include <stdlib.h>
+
+static pthread_barrier_t b;
+
+static void *
+thr_func2 (void *arg)
+{
+  abort ();
+  return NULL;
+}
+
+static void *
+thr_func1 (void *closure)
+{
+  int max_cpu = xsysconf (_SC_NPROCESSORS_CONF) + 1;
+  /* Set a affinity mask with an invalid CPU.  */
+  cpu_set_t *cpuset = CPU_ALLOC (max_cpu);
+  TEST_VERIFY_EXIT (cpuset != NULL);
+  size_t cpusetsize = CPU_ALLOC_SIZE (max_cpu);
+  CPU_ZERO_S (cpusetsize, cpuset);
+  CPU_SET_S (max_cpu, cpusetsize, cpuset);
+
+  /* Check if the affinity mask does trigger an error.  */
+  TEST_COMPARE (sched_setaffinity (0, cpusetsize, cpuset), -1);
+  TEST_COMPARE (errno, EINVAL);
+
+  pthread_attr_t attr;
+  xpthread_attr_init (&attr);
+  xpthread_attr_setaffinity_np (&attr, cpusetsize, cpuset);
+
+  xpthread_barrier_wait (&b);
+
+  pthread_t thr;
+  TEST_COMPARE (pthread_create (&thr, &attr, thr_func2, NULL), EINVAL);
+  xpthread_attr_destroy (&attr);
+
+  return NULL;
+}
+
+static int
+do_test (void)
+{
+  xpthread_barrier_init (&b, NULL, 2);
+
+  pthread_t thr = xpthread_create (NULL, thr_func1, NULL);
+
+  xpthread_cancel (thr);
+
+  xpthread_barrier_wait (&b);
+
+  void *r = xpthread_join (thr);
+  TEST_VERIFY_EXIT (r == NULL);
+
+  return 0;
+}
+
+#include <support/test-driver.c>