pthread_create.cpp revision 6a7aaf46759db32c6ed0eb953a4a230dc96af0d9
1/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *  * Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 *  * Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in
12 *    the documentation and/or other materials provided with the
13 *    distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29#include <pthread.h>
30
31#include <errno.h>
32#include <sys/mman.h>
33#include <unistd.h>
34
35#include "pthread_internal.h"
36
37#include "private/bionic_macros.h"
38#include "private/bionic_prctl.h"
39#include "private/bionic_ssp.h"
40#include "private/bionic_tls.h"
41#include "private/libc_logging.h"
42#include "private/ErrnoRestorer.h"
43#include "private/ScopedPthreadMutexLocker.h"
44
45// x86 uses segment descriptors rather than a direct pointer to TLS.
46#if __i386__
47#include <asm/ldt.h>
48extern "C" __LIBC_HIDDEN__ void __init_user_desc(struct user_desc*, int, void*);
49#endif
50
51extern "C" int __isthreaded;
52
53// This code is used both by each new pthread and the code that initializes the main thread.
54void __init_tls(pthread_internal_t* thread) {
55  if (thread->user_allocated_stack()) {
56    // We don't know where the user got their stack, so assume the worst and zero the TLS area.
57    memset(&thread->tls[0], 0, BIONIC_TLS_SLOTS * sizeof(void*));
58  }
59
60  // Slot 0 must point to itself. The x86 Linux kernel reads the TLS from %fs:0.
61  thread->tls[TLS_SLOT_SELF] = thread->tls;
62  thread->tls[TLS_SLOT_THREAD_ID] = thread;
63  // GCC looks in the TLS for the stack guard on x86, so copy it there from our global.
64  thread->tls[TLS_SLOT_STACK_GUARD] = (void*) __stack_chk_guard;
65}
66
67void __init_alternate_signal_stack(pthread_internal_t* thread) {
68  // Create and set an alternate signal stack.
69  stack_t ss;
70  ss.ss_sp = mmap(NULL, SIGSTKSZ, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
71  if (ss.ss_sp != MAP_FAILED) {
72    ss.ss_size = SIGSTKSZ;
73    ss.ss_flags = 0;
74    sigaltstack(&ss, NULL);
75    thread->alternate_signal_stack = ss.ss_sp;
76
77    // We can only use const static allocated string for mapped region name, as Android kernel
78    // uses the string pointer directly when dumping /proc/pid/maps.
79    prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, ss.ss_sp, ss.ss_size, "thread signal stack");
80  }
81}
82
83int __init_thread(pthread_internal_t* thread, bool add_to_thread_list) {
84  int error = 0;
85
86  // Set the scheduling policy/priority of the thread.
87  if (thread->attr.sched_policy != SCHED_NORMAL) {
88    sched_param param;
89    param.sched_priority = thread->attr.sched_priority;
90    if (sched_setscheduler(thread->tid, thread->attr.sched_policy, &param) == -1) {
91#if __LP64__
92      // For backwards compatibility reasons, we only report failures on 64-bit devices.
93      error = errno;
94#endif
95      __libc_format_log(ANDROID_LOG_WARN, "libc",
96                        "pthread_create sched_setscheduler call failed: %s", strerror(errno));
97    }
98  }
99
100  thread->cleanup_stack = NULL;
101
102  if (add_to_thread_list) {
103    _pthread_internal_add(thread);
104  }
105
106  return error;
107}
108
109static void* __create_thread_stack(size_t stack_size, size_t guard_size) {
110  // Create a new private anonymous map.
111  int prot = PROT_READ | PROT_WRITE;
112  int flags = MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE;
113  void* stack = mmap(NULL, stack_size, prot, flags, -1, 0);
114  if (stack == MAP_FAILED) {
115    __libc_format_log(ANDROID_LOG_WARN,
116                      "libc",
117                      "pthread_create failed: couldn't allocate %zd-byte stack: %s",
118                      stack_size, strerror(errno));
119    return NULL;
120  }
121
122  // Set the guard region at the end of the stack to PROT_NONE.
123  if (mprotect(stack, guard_size, PROT_NONE) == -1) {
124    __libc_format_log(ANDROID_LOG_WARN, "libc",
125                      "pthread_create failed: couldn't mprotect PROT_NONE %zd-byte stack guard region: %s",
126                      guard_size, strerror(errno));
127    munmap(stack, stack_size);
128    return NULL;
129  }
130
131  return stack;
132}
133
134static int __allocate_thread(pthread_attr_t* attr, pthread_internal_t** threadp, void** child_stack) {
135  size_t allocate_stack_size;
136  uint8_t* stack_top;
137
138  if (attr->stack_base == NULL) {
139    // The caller didn't provide a stack, so allocate one.
140    // Make sure the stack size and guard size are multiples of PAGE_SIZE.
141    allocate_stack_size = BIONIC_ALIGN(attr->stack_size + sizeof(pthread_internal_t), PAGE_SIZE);
142    attr->guard_size = BIONIC_ALIGN(attr->guard_size, PAGE_SIZE);
143    attr->stack_base = __create_thread_stack(allocate_stack_size, attr->guard_size);
144    if (attr->stack_base == NULL) {
145      return EAGAIN;
146    }
147    stack_top = reinterpret_cast<uint8_t*>(attr->stack_base) + allocate_stack_size;
148  } else {
149    // The caller did provide a stack, so remember we're not supposed to free it.
150    attr->flags |= PTHREAD_ATTR_FLAG_USER_ALLOCATED_STACK;
151    allocate_stack_size = 0;
152    stack_top = reinterpret_cast<uint8_t*>(attr->stack_base) + attr->stack_size;
153  }
154
155  // Thread stack is used for two sections:
156  //   pthread_internal_t.
157  //   regular stack, from top to down.
158  stack_top -= sizeof(pthread_internal_t);
159  pthread_internal_t* thread = reinterpret_cast<pthread_internal_t*>(stack_top);
160
161  // No need to check stack_top alignment. The size of pthread_internal_t is 16-bytes aligned,
162  // and user allocated stack is guaranteed by pthread_attr_setstack.
163
164  thread->allocated_stack_size = allocate_stack_size;
165  thread->attr = *attr;
166  __init_tls(thread);
167
168  *threadp = thread;
169  *child_stack = stack_top;
170  return 0;
171}
172
173static int __pthread_start(void* arg) {
174  pthread_internal_t* thread = reinterpret_cast<pthread_internal_t*>(arg);
175
176  // Wait for our creating thread to release us. This lets it have time to
177  // notify gdb about this thread before we start doing anything.
178  // This also provides the memory barrier needed to ensure that all memory
179  // accesses previously made by the creating thread are visible to us.
180  pthread_mutex_lock(&thread->startup_handshake_mutex);
181  pthread_mutex_destroy(&thread->startup_handshake_mutex);
182
183  __init_alternate_signal_stack(thread);
184
185  void* result = thread->start_routine(thread->start_routine_arg);
186  pthread_exit(result);
187
188  return 0;
189}
190
191// A dummy start routine for pthread_create failures where we've created a thread but aren't
192// going to run user code on it. We swap out the user's start routine for this and take advantage
193// of the regular thread teardown to free up resources.
194static void* __do_nothing(void*) {
195  return NULL;
196}
197
198int pthread_create(pthread_t* thread_out, pthread_attr_t const* attr,
199                   void* (*start_routine)(void*), void* arg) {
200  ErrnoRestorer errno_restorer;
201
202  // Inform the rest of the C library that at least one thread was created.
203  __isthreaded = 1;
204
205  pthread_attr_t thread_attr;
206  if (attr == NULL) {
207    pthread_attr_init(&thread_attr);
208  } else {
209    thread_attr = *attr;
210    attr = NULL; // Prevent misuse below.
211  }
212
213  pthread_internal_t* thread = NULL;
214  void* child_stack = NULL;
215  int result = __allocate_thread(&thread_attr, &thread, &child_stack);
216  if (result != 0) {
217    return result;
218  }
219
220  // Create a mutex for the thread in TLS to wait on once it starts so we can keep
221  // it from doing anything until after we notify the debugger about it
222  //
223  // This also provides the memory barrier we need to ensure that all
224  // memory accesses previously performed by this thread are visible to
225  // the new thread.
226  pthread_mutex_init(&thread->startup_handshake_mutex, NULL);
227  pthread_mutex_lock(&thread->startup_handshake_mutex);
228
229  thread->start_routine = start_routine;
230  thread->start_routine_arg = arg;
231
232  thread->set_cached_pid(getpid());
233
234  int flags = CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND | CLONE_THREAD | CLONE_SYSVSEM |
235      CLONE_SETTLS | CLONE_PARENT_SETTID | CLONE_CHILD_CLEARTID;
236  void* tls = reinterpret_cast<void*>(thread->tls);
237#if defined(__i386__)
238  // On x86 (but not x86-64), CLONE_SETTLS takes a pointer to a struct user_desc rather than
239  // a pointer to the TLS itself.
240  user_desc tls_descriptor;
241  __init_user_desc(&tls_descriptor, false, tls);
242  tls = &tls_descriptor;
243#endif
244  int rc = clone(__pthread_start, child_stack, flags, thread, &(thread->tid), tls, &(thread->tid));
245  if (rc == -1) {
246    int clone_errno = errno;
247    // We don't have to unlock the mutex at all because clone(2) failed so there's no child waiting to
248    // be unblocked, but we're about to unmap the memory the mutex is stored in, so this serves as a
249    // reminder that you can't rewrite this function to use a ScopedPthreadMutexLocker.
250    pthread_mutex_unlock(&thread->startup_handshake_mutex);
251    if (!thread->user_allocated_stack()) {
252      munmap(thread->attr.stack_base, thread->allocated_stack_size);
253    }
254    __libc_format_log(ANDROID_LOG_WARN, "libc", "pthread_create failed: clone failed: %s", strerror(errno));
255    return clone_errno;
256  }
257
258  int init_errno = __init_thread(thread, true);
259  if (init_errno != 0) {
260    // Mark the thread detached and replace its start_routine with a no-op.
261    // Letting the thread run is the easiest way to clean up its resources.
262    thread->attr.flags |= PTHREAD_ATTR_FLAG_DETACHED;
263    thread->start_routine = __do_nothing;
264    pthread_mutex_unlock(&thread->startup_handshake_mutex);
265    return init_errno;
266  }
267
268  // Publish the pthread_t and unlock the mutex to let the new thread start running.
269  *thread_out = reinterpret_cast<pthread_t>(thread);
270  pthread_mutex_unlock(&thread->startup_handshake_mutex);
271
272  return 0;
273}
274