blob: 8645df2cc924765665d9458bfbcd37169eba06ad [file] [log] [blame]
Elliott Hughes42d949f2016-01-06 19:51:43 -08001/*
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 "libc_init_common.h"
30
Josh Gaob6453c52016-06-29 16:47:53 -070031#include "private/KernelArgumentBlock.h"
Josh Gaoa170d9b2016-11-10 16:08:29 -080032#include "private/bionic_arc4random.h"
Elliott Hughes42d949f2016-01-06 19:51:43 -080033#include "private/bionic_auxv.h"
dimitryb6d2b872017-10-18 15:15:54 +020034#include "private/bionic_defs.h"
Elliott Hughes42d949f2016-01-06 19:51:43 -080035#include "private/bionic_globals.h"
Josh Gaob6453c52016-06-29 16:47:53 -070036#include "private/bionic_ssp.h"
Elliott Hughes42d949f2016-01-06 19:51:43 -080037#include "pthread_internal.h"
38
39extern "C" int __set_tls(void* ptr);
40extern "C" int __set_tid_address(int* tid_address);
41
Josh Gaob6453c52016-06-29 16:47:53 -070042// Declared in "private/bionic_ssp.h".
43uintptr_t __stack_chk_guard = 0;
44
Elliott Hughes42d949f2016-01-06 19:51:43 -080045// Setup for the main thread. For dynamic executables, this is called by the
46// linker _before_ libc is mapped in memory. This means that all writes to
47// globals from this function will apply to linker-private copies and will not
48// be visible from libc later on.
49//
50// Note: this function creates a pthread_internal_t for the initial thread and
51// stores the pointer in TLS, but does not add it to pthread's thread list. This
52// has to be done later from libc itself (see __libc_init_common).
53//
54// This is in a file by itself because it needs to be built with
55// -fno-stack-protector because it's responsible for setting up the main
56// thread's TLS (which stack protector relies on).
57
dimitryb6d2b872017-10-18 15:15:54 +020058__BIONIC_WEAK_FOR_NATIVE_BRIDGE
Elliott Hughes42d949f2016-01-06 19:51:43 -080059void __libc_init_main_thread(KernelArgumentBlock& args) {
60 __libc_auxv = args.auxv;
Mingwei Shibe910522015-11-12 07:02:14 +000061#if defined(__i386__)
62 __libc_init_sysinfo(args);
63#endif
Elliott Hughes42d949f2016-01-06 19:51:43 -080064
65 static pthread_internal_t main_thread;
66
67 // The -fstack-protector implementation uses TLS, so make sure that's
68 // set up before we call any function that might get a stack check inserted.
Josh Gao4159e862016-09-01 22:58:44 -070069 // TLS also needs to be set up before errno (and therefore syscalls) can be used.
Elliott Hughes42d949f2016-01-06 19:51:43 -080070 __set_tls(main_thread.tls);
Elliott Hughes53dc9dd2017-09-19 14:02:50 -070071 if (!__init_tls(&main_thread)) async_safe_fatal("failed to initialize TLS: %s", strerror(errno));
Elliott Hughes42d949f2016-01-06 19:51:43 -080072
73 // Tell the kernel to clear our tid field when we exit, so we're like any other pthread.
74 // As a side-effect, this tells us our pid (which is the same as the main thread's tid).
75 main_thread.tid = __set_tid_address(&main_thread.tid);
76 main_thread.set_cached_pid(main_thread.tid);
77
78 // We don't want to free the main thread's stack even when the main thread exits
79 // because things like environment variables with global scope live on it.
Ryan Prichard6631f9b2018-04-30 18:29:32 -070080 // We also can't free the pthread_internal_t itself, since it is a static variable.
Elliott Hughes42d949f2016-01-06 19:51:43 -080081 // The main thread has no mmap allocated space for stack or pthread_internal_t.
82 main_thread.mmap_size = 0;
Elliott Hughes374848a2017-10-26 12:54:32 -070083
Elliott Hughes42d949f2016-01-06 19:51:43 -080084 pthread_attr_init(&main_thread.attr);
Elliott Hughes374848a2017-10-26 12:54:32 -070085 // We don't want to explicitly set the main thread's scheduler attributes (http://b/68328561).
86 pthread_attr_setinheritsched(&main_thread.attr, PTHREAD_INHERIT_SCHED);
87 // The main thread has no guard page.
88 pthread_attr_setguardsize(&main_thread.attr, 0);
89 // User code should never see this; we'll compute it when asked.
90 pthread_attr_setstacksize(&main_thread.attr, 0);
Elliott Hughes42d949f2016-01-06 19:51:43 -080091
Elliott Hughesfc69a8a2016-03-04 11:53:09 -080092 // The TLS stack guard is set from the global, so ensure that we've initialized the global
Josh Gaob6453c52016-06-29 16:47:53 -070093 // before we initialize the TLS. Dynamic executables will initialize their copy of the global
94 // stack protector from the one in the main thread's TLS.
Ryan Prichardcb5f4102018-05-17 17:00:19 -070095 __libc_safe_arc4random_buf(&__stack_chk_guard, sizeof(__stack_chk_guard), args);
Josh Gao4159e862016-09-01 22:58:44 -070096 __init_thread_stack_guard(&main_thread);
Elliott Hughesfc69a8a2016-03-04 11:53:09 -080097
Elliott Hughes42d949f2016-01-06 19:51:43 -080098 __init_thread(&main_thread);
Elliott Hughes42d949f2016-01-06 19:51:43 -080099
Elliott Hughes42d949f2016-01-06 19:51:43 -0800100 __init_alternate_signal_stack(&main_thread);
101}