| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 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 | */ | 
| Elliott Hughes | 42d949f | 2016-01-06 19:51:43 -0800 | [diff] [blame] | 28 |  | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 29 | /* | 
|  | 30 | * libc_init_dynamic.c | 
|  | 31 | * | 
|  | 32 | * This source files provides two important functions for dynamic | 
|  | 33 | * executables: | 
|  | 34 | * | 
|  | 35 | * - a C runtime initializer (__libc_preinit), which is called by | 
|  | 36 | *   the dynamic linker when libc.so is loaded. This happens before | 
|  | 37 | *   any other initializer (e.g. static C++ constructors in other | 
|  | 38 | *   shared libraries the program depends on). | 
|  | 39 | * | 
|  | 40 | * - a program launch function (__libc_init), which is called after | 
|  | 41 | *   all dynamic linking has been performed. Technically, it is called | 
|  | 42 | *   from arch-$ARCH/bionic/crtbegin_dynamic.S which is itself called | 
|  | 43 | *   by the dynamic linker after all libraries have been loaded and | 
|  | 44 | *   initialized. | 
|  | 45 | */ | 
|  | 46 |  | 
|  | 47 | #include <stddef.h> | 
|  | 48 | #include <stdio.h> | 
|  | 49 | #include <stdlib.h> | 
|  | 50 | #include <stdint.h> | 
|  | 51 | #include <elf.h> | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 52 | #include "libc_init_common.h" | 
| Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 53 |  | 
| Josh Gao | 3c8fc2f | 2015-10-08 14:49:26 -0700 | [diff] [blame] | 54 | #include "private/bionic_globals.h" | 
| Josh Gao | b6453c5 | 2016-06-29 16:47:53 -0700 | [diff] [blame] | 55 | #include "private/bionic_ssp.h" | 
| Elliott Hughes | eb847bc | 2013-10-09 15:50:50 -0700 | [diff] [blame] | 56 | #include "private/bionic_tls.h" | 
|  | 57 | #include "private/KernelArgumentBlock.h" | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 58 |  | 
|  | 59 | extern "C" { | 
| Sreeram Ramachandran | ceb5bd7 | 2014-05-12 11:19:16 -0700 | [diff] [blame] | 60 | extern void netdClientInit(void); | 
| Dmitriy Ivanov | 53c3c27 | 2014-07-11 12:59:16 -0700 | [diff] [blame] | 61 | extern int __cxa_atexit(void (*)(void *), void *, void *); | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 62 | }; | 
|  | 63 |  | 
| Stephen Crane | f4b1cbd | 2017-05-09 14:27:43 -0700 | [diff] [blame] | 64 | // We need a helper function for __libc_preinit because compiling with LTO may | 
|  | 65 | // inline functions requiring a stack protector check, but __stack_chk_guard is | 
|  | 66 | // not initialized at the start of __libc_preinit. __libc_preinit_impl will run | 
|  | 67 | // after __stack_chk_guard is initialized and therefore can safely have a stack | 
|  | 68 | // protector. | 
|  | 69 | __attribute__((noinline)) | 
|  | 70 | static void __libc_preinit_impl(KernelArgumentBlock& args) { | 
|  | 71 | __libc_init_globals(args); | 
|  | 72 | __libc_init_common(args); | 
|  | 73 |  | 
|  | 74 | // Hooks for various libraries to let them know that we're starting up. | 
|  | 75 | __libc_globals.mutate(__libc_init_malloc); | 
|  | 76 | netdClientInit(); | 
|  | 77 | } | 
|  | 78 |  | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 79 | // We flag the __libc_preinit function as a constructor to ensure | 
|  | 80 | // that its address is listed in libc.so's .init_array section. | 
|  | 81 | // This ensures that the function is called by the dynamic linker | 
|  | 82 | // as soon as the shared library is loaded. | 
| Elliott Hughes | ce53272 | 2013-03-15 16:31:09 -0700 | [diff] [blame] | 83 | __attribute__((constructor)) static void __libc_preinit() { | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 84 | // Read the kernel argument block pointer from TLS. | 
| Elliott Hughes | 2a0b873 | 2013-10-08 18:50:24 -0700 | [diff] [blame] | 85 | void** tls = __get_tls(); | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 86 | KernelArgumentBlock** args_slot = &reinterpret_cast<KernelArgumentBlock**>(tls)[TLS_SLOT_BIONIC_PREINIT]; | 
|  | 87 | KernelArgumentBlock* args = *args_slot; | 
|  | 88 |  | 
|  | 89 | // Clear the slot so no other initializer sees its value. | 
|  | 90 | // __libc_init_common() will change the TLS area so the old one won't be accessible anyway. | 
|  | 91 | *args_slot = NULL; | 
|  | 92 |  | 
| Josh Gao | b6453c5 | 2016-06-29 16:47:53 -0700 | [diff] [blame] | 93 | // The linker has initialized its copy of the global stack_chk_guard, and filled in the main | 
|  | 94 | // thread's TLS slot with that value. Initialize the local global stack guard with its value. | 
|  | 95 | __stack_chk_guard = reinterpret_cast<uintptr_t>(tls[TLS_SLOT_STACK_GUARD]); | 
|  | 96 |  | 
| Stephen Crane | f4b1cbd | 2017-05-09 14:27:43 -0700 | [diff] [blame] | 97 | __libc_preinit_impl(*args); | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 98 | } | 
|  | 99 |  | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 100 | // This function is called from the executable's _start entry point | 
|  | 101 | // (see arch-$ARCH/bionic/crtbegin_dynamic.S), which is itself | 
|  | 102 | // called by the dynamic linker after it has loaded all shared | 
|  | 103 | // libraries the executable depends on. | 
|  | 104 | // | 
|  | 105 | // Note that the dynamic linker has also run all constructors in the | 
|  | 106 | // executable at this point. | 
|  | 107 | __noreturn void __libc_init(void* raw_args, | 
| Elliott Hughes | d286796 | 2014-06-03 15:22:34 -0700 | [diff] [blame] | 108 | void (*onexit)(void) __unused, | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 109 | int (*slingshot)(int, char**, char**), | 
| Dmitriy Ivanov | 4b41555 | 2014-09-04 21:54:34 +0000 | [diff] [blame] | 110 | structors_array_t const * const structors) { | 
|  | 111 |  | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 112 | KernelArgumentBlock args(raw_args); | 
|  | 113 |  | 
|  | 114 | // Several Linux ABIs don't pass the onexit pointer, and the ones that | 
|  | 115 | // do never use it.  Therefore, we ignore it. | 
|  | 116 |  | 
| Dmitriy Ivanov | 4b41555 | 2014-09-04 21:54:34 +0000 | [diff] [blame] | 117 | // The executable may have its own destructors listed in its .fini_array | 
|  | 118 | // so we need to ensure that these are called when the program exits | 
|  | 119 | // normally. | 
|  | 120 | if (structors->fini_array) { | 
|  | 121 | __cxa_atexit(__libc_fini,structors->fini_array,NULL); | 
|  | 122 | } | 
|  | 123 |  | 
| Elliott Hughes | 42b2c6a | 2013-02-07 10:14:39 -0800 | [diff] [blame] | 124 | exit(slingshot(args.argc, args.argv, args.envp)); | 
|  | 125 | } | 
| Yabin Cui | ca48274 | 2016-01-25 17:38:44 -0800 | [diff] [blame] | 126 |  | 
|  | 127 | extern "C" uint32_t android_get_application_target_sdk_version(); | 
|  | 128 |  | 
|  | 129 | uint32_t bionic_get_application_target_sdk_version() { | 
|  | 130 | return android_get_application_target_sdk_version(); | 
|  | 131 | } |