]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
hurd: Fix exec usage of mach_setup_thread
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Tue, 31 Jul 2018 22:10:03 +0000 (00:10 +0200)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Tue, 31 Jul 2018 22:10:03 +0000 (00:10 +0200)
Exec needs that mach_setup_thread does *not* set up TLS since it works on
another task, so we have to split this into mach_setup_tls.

* mach/mach.h (__mach_setup_tls, mach_setup_tls): Add prototypes.
* mach/setup-thread.c (__mach_setup_thread): Move TLS setup to...
(__mach_setup_tls): ... new function.
(mach_setup_tls): New alias.
* hurd/hurdsig.c (_hurdsig_init): Call __mach_setup_tls after
__mach_setup_thread.
* sysdeps/mach/hurd/profil.c (update_waiter): Likewise.
* sysdeps/mach/hurd/setitimer.c (setitimer_locked): Likewise.
* mach/Versions [libc] (mach_setup_tls): Add symbol.
* sysdeps/mach/hurd/i386/libc.abilist (mach_setup_tls): Likewise.

ChangeLog
hurd/hurdsig.c
mach/Versions
mach/mach.h
mach/setup-thread.c
sysdeps/mach/hurd/i386/libc.abilist
sysdeps/mach/hurd/profil.c
sysdeps/mach/hurd/setitimer.c

index 7d9a66e659c7afebaa486d0e8cabc8c106b56c56..79bdb9da3b207faf770efba2885ba81575349e63 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,17 @@
        initialization...
        (init): ... before initializing libpthread.
 
+       * mach/mach.h (__mach_setup_tls, mach_setup_tls): Add prototypes.
+       * mach/setup-thread.c (__mach_setup_thread): Move TLS setup to...
+       (__mach_setup_tls): ... new function.
+       (mach_setup_tls): New alias.
+       * hurd/hurdsig.c (_hurdsig_init): Call __mach_setup_tls after
+       __mach_setup_thread.
+       * sysdeps/mach/hurd/profil.c (update_waiter): Likewise.
+       * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Likewise.
+       * mach/Versions [libc] (mach_setup_tls): Add symbol.
+       * sysdeps/mach/hurd/i386/libc.abilist (mach_setup_tls): Likewise.
+
 2018-07-31  Carlos O'Donell  <carlos@redhat.com>
 
        * manual/install.texi: Update versions.
index 6b73dcdbf38be8f30f715f5a459558ac70f93edc..aa82f63413539620d45388cdd6934506114057a4 100644 (file)
@@ -1280,6 +1280,8 @@ _hurdsig_init (const int *intarray, size_t intarraysize)
                                 (vm_address_t *) &__hurd_sigthread_stack_base,
                                 &stacksize);
       assert_perror (err);
+      err = __mach_setup_tls (_hurd_msgport_thread);
+      assert_perror (err);
 
       __hurd_sigthread_stack_end = __hurd_sigthread_stack_base + stacksize;
 
index 9cd2eee427728563a3cc2274e76350027d4a2f7a..c7a3d60bae6360993ab9f9253b028a9074ff6e5c 100644 (file)
@@ -32,6 +32,7 @@ libc {
     mach_port_allocate; mach_port_allocate_name; mach_port_deallocate;
     mach_port_insert_right; mach_reply_port;
     mach_setup_thread;
+    mach_setup_tls;
     mach_task_self;
     mach_thread_self;
     mig_allocate; mig_dealloc_reply_port; mig_deallocate;
index 684be91cc3d8f53ada8711e57f0d3b188a4d0480..93398b0da5c9bf31290314a41857ec5574e1a975 100644 (file)
@@ -96,5 +96,8 @@ kern_return_t mach_setup_thread (task_t task, thread_t thread, void *pc,
                                 vm_address_t *stack_base,
                                 vm_size_t *stack_size);
 
+/* Give THREAD a TLS area.  */
+kern_return_t __mach_setup_tls (thread_t thread);
+kern_return_t mach_setup_tls (thread_t thread);
 
 #endif /* mach.h */
index 79ec4320b32c2220714e51dcb03dbc28644d5954..ce60a7302af951aa78c86c09c48ad818abd05b4d 100644 (file)
@@ -42,7 +42,6 @@ __mach_setup_thread (task_t task, thread_t thread, void *pc,
   vm_address_t stack;
   vm_size_t size;
   int anywhere;
-  tcbhead_t *tcb;
 
   size = stack_size ? *stack_size ? : STACK_SIZE : STACK_SIZE;
   stack = stack_base ? *stack_base ? : 0 : 0;
@@ -52,10 +51,6 @@ __mach_setup_thread (task_t task, thread_t thread, void *pc,
   if (error)
     return error;
 
-  tcb = _dl_allocate_tls (NULL);
-  if (tcb == NULL)
-    return KERN_RESOURCE_SHORTAGE;
-
   if (stack_size)
     *stack_size = size;
 
@@ -78,9 +73,24 @@ __mach_setup_thread (task_t task, thread_t thread, void *pc,
   if (error = __vm_protect (task, stack, __vm_page_size, 0, VM_PROT_NONE))
     return error;
 
-  if (error = __thread_set_state (thread, MACHINE_NEW_THREAD_STATE_FLAVOR,
-                            (natural_t *) &ts, tssize))
-    return error;
+  return __thread_set_state (thread, MACHINE_NEW_THREAD_STATE_FLAVOR,
+                            (natural_t *) &ts, tssize);
+}
+
+weak_alias (__mach_setup_thread, mach_setup_thread)
+
+/* Give THREAD a TLS area.  */
+kern_return_t
+__mach_setup_tls (thread_t thread)
+{
+  kern_return_t error;
+  struct machine_thread_state ts;
+  mach_msg_type_number_t tssize = MACHINE_THREAD_STATE_COUNT;
+  tcbhead_t *tcb;
+
+  tcb = _dl_allocate_tls (NULL);
+  if (tcb == NULL)
+    return KERN_RESOURCE_SHORTAGE;
 
   if (error = __thread_get_state (thread, MACHINE_THREAD_STATE_FLAVOR,
                             (natural_t *) &ts, &tssize))
@@ -91,8 +101,7 @@ __mach_setup_thread (task_t task, thread_t thread, void *pc,
 
   error = __thread_set_state (thread, MACHINE_THREAD_STATE_FLAVOR,
                              (natural_t *) &ts, tssize);
-
   return error;
 }
 
-weak_alias (__mach_setup_thread, mach_setup_thread)
+weak_alias (__mach_setup_tls, mach_setup_tls)
index 64586d828d55b53648befbf2d6aa5070096eb2e1..e3fc05137b18194b18f287d6d30c670f2dd4ed36 100644 (file)
@@ -1228,6 +1228,7 @@ GLIBC_2.2.6 mach_port_deallocate F
 GLIBC_2.2.6 mach_port_insert_right F
 GLIBC_2.2.6 mach_reply_port F
 GLIBC_2.2.6 mach_setup_thread F
+GLIBC_2.2.6 mach_setup_tls F
 GLIBC_2.2.6 mach_task_self F
 GLIBC_2.2.6 mach_thread_self F
 GLIBC_2.2.6 madvise F
index 952398b4fa0db2e6a1a8351a6cdf5efc0a9d4547..c2c2f9f119d743a09ed3e77aade5265ca6efafb5 100644 (file)
@@ -70,6 +70,8 @@ update_waiter (u_short *sample_buffer, size_t size, size_t offset, u_int scale)
       if (! err)
        err = __mach_setup_thread (__mach_task_self (), profile_thread,
                                   &profile_waiter, NULL, NULL);
+      if (! err)
+       err = __mach_setup_tls(profile_thread);
     }
   else
     err = 0;
index a0d294162b17c0b46e7aab5d05ca443b1b019bc1..f5dfb7da84fce34d6b6b6ced32cbc68d2293c906 100644 (file)
@@ -221,11 +221,12 @@ setitimer_locked (const struct itimerval *new, struct itimerval *old,
            goto out;
          _hurd_itimer_thread_stack_base = 0; /* Anywhere.  */
          _hurd_itimer_thread_stack_size = __vm_page_size; /* Small stack.  */
-         if (err = __mach_setup_thread (__mach_task_self (),
+         if ((err = __mach_setup_thread (__mach_task_self (),
                                         _hurd_itimer_thread,
                                         &timer_thread,
                                         &_hurd_itimer_thread_stack_base,
                                         &_hurd_itimer_thread_stack_size))
+             || (err = __mach_setup_tls(_hurd_itimer_thread)))
            {
              __thread_terminate (_hurd_itimer_thread);
              _hurd_itimer_thread = MACH_PORT_NULL;