2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 02:38:44 +01:00
|
|
|
#include <android/api-level.h>
|
2013-02-07 19:14:39 +01:00
|
|
|
#include <elf.h>
|
|
|
|
#include <errno.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
#include <stddef.h>
|
2013-02-07 19:14:39 +01:00
|
|
|
#include <stdint.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2013-02-07 19:14:39 +01:00
|
|
|
#include <sys/auxv.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#include "libc_init_common.h"
|
2013-02-07 19:14:39 +01:00
|
|
|
#include "pthread_internal.h"
|
2012-11-10 01:51:36 +01:00
|
|
|
|
2016-06-30 01:47:53 +02:00
|
|
|
#include "private/bionic_globals.h"
|
2017-10-06 00:18:47 +02:00
|
|
|
#include "private/bionic_macros.h"
|
2015-07-28 23:58:37 +02:00
|
|
|
#include "private/bionic_page.h"
|
2013-10-10 00:50:50 +02:00
|
|
|
#include "private/bionic_tls.h"
|
|
|
|
#include "private/KernelArgumentBlock.h"
|
|
|
|
|
2018-05-18 02:14:18 +02:00
|
|
|
// Leave the variable uninitialized for the sake of the dynamic loader, which
|
|
|
|
// links in this file. The loader will initialize this variable before
|
|
|
|
// relocating itself.
|
|
|
|
#if defined(__i386__)
|
|
|
|
__LIBC_HIDDEN__ void* __libc_sysinfo;
|
|
|
|
#endif
|
|
|
|
|
2014-07-11 21:59:16 +02:00
|
|
|
extern "C" int __cxa_atexit(void (*)(void *), void *, void *);
|
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
static void call_array(void(**list)()) {
|
|
|
|
// First element is -1, list is null-terminated
|
|
|
|
while (*++list) {
|
|
|
|
(*list)();
|
|
|
|
}
|
2009-07-18 01:11:10 +02:00
|
|
|
}
|
|
|
|
|
2013-01-11 23:43:05 +01:00
|
|
|
static void apply_gnu_relro() {
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Phdr)* phdr_start = reinterpret_cast<ElfW(Phdr)*>(getauxval(AT_PHDR));
|
2013-02-07 19:14:39 +01:00
|
|
|
unsigned long int phdr_ct = getauxval(AT_PHNUM);
|
2012-11-10 01:51:36 +01:00
|
|
|
|
2014-02-11 02:46:57 +01:00
|
|
|
for (ElfW(Phdr)* phdr = phdr_start; phdr < (phdr_start + phdr_ct); phdr++) {
|
2013-02-07 19:14:39 +01:00
|
|
|
if (phdr->p_type != PT_GNU_RELRO) {
|
|
|
|
continue;
|
2012-11-10 01:51:36 +01:00
|
|
|
}
|
|
|
|
|
2014-02-11 02:46:57 +01:00
|
|
|
ElfW(Addr) seg_page_start = PAGE_START(phdr->p_vaddr);
|
|
|
|
ElfW(Addr) seg_page_end = PAGE_END(phdr->p_vaddr + phdr->p_memsz);
|
2009-07-18 01:11:10 +02:00
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
// Check return value here? What do we do if we fail?
|
|
|
|
mprotect(reinterpret_cast<void*>(seg_page_start), seg_page_end - seg_page_start, PROT_READ);
|
|
|
|
}
|
|
|
|
}
|
2009-07-18 01:11:10 +02:00
|
|
|
|
2016-01-07 04:51:43 +01:00
|
|
|
// The program startup function __libc_init() defined here is
|
|
|
|
// used for static executables only (i.e. those that don't depend
|
|
|
|
// on shared libraries). It is called from arch-$ARCH/bionic/crtbegin_static.S
|
|
|
|
// which is directly invoked by the kernel when the program is launched.
|
|
|
|
//
|
|
|
|
// The 'structors' parameter contains pointers to various initializer
|
|
|
|
// arrays that must be run before the program's 'main' routine is launched.
|
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
__noreturn void __libc_init(void* raw_args,
|
2014-06-04 00:22:34 +02:00
|
|
|
void (*onexit)(void) __unused,
|
2013-02-07 19:14:39 +01:00
|
|
|
int (*slingshot)(int, char**, char**),
|
|
|
|
structors_array_t const * const structors) {
|
2017-10-06 00:18:47 +02:00
|
|
|
BIONIC_STOP_UNWIND;
|
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
KernelArgumentBlock args(raw_args);
|
2015-10-06 20:08:13 +02:00
|
|
|
|
|
|
|
// Initializing the globals requires TLS to be available for errno.
|
2018-05-01 03:29:32 +02:00
|
|
|
__libc_init_main_thread(args);
|
2018-06-02 00:30:54 +02:00
|
|
|
|
|
|
|
static libc_shared_globals shared_globals;
|
|
|
|
__libc_shared_globals = &shared_globals;
|
|
|
|
__libc_init_shared_globals(&shared_globals);
|
|
|
|
|
2015-10-06 20:08:13 +02:00
|
|
|
__libc_init_globals(args);
|
|
|
|
|
2015-06-09 03:04:00 +02:00
|
|
|
__libc_init_AT_SECURE(args);
|
2013-02-07 19:14:39 +01:00
|
|
|
__libc_init_common(args);
|
2009-07-18 01:11:10 +02:00
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
apply_gnu_relro();
|
2009-07-18 01:11:10 +02:00
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
// Several Linux ABIs don't pass the onexit pointer, and the ones that
|
|
|
|
// do never use it. Therefore, we ignore it.
|
2009-07-18 01:11:10 +02:00
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
call_array(structors->preinit_array);
|
2014-09-04 23:54:34 +02:00
|
|
|
call_array(structors->init_array);
|
2009-07-18 01:11:10 +02:00
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
// The executable may have its own destructors listed in its .fini_array
|
|
|
|
// so we need to ensure that these are called when the program exits
|
|
|
|
// normally.
|
2014-09-04 23:54:34 +02:00
|
|
|
if (structors->fini_array != NULL) {
|
|
|
|
__cxa_atexit(__libc_fini,structors->fini_array,NULL);
|
|
|
|
}
|
2010-10-21 04:16:50 +02:00
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
exit(slingshot(args.argc, args.argv, args.envp));
|
2009-03-04 04:28:35 +01:00
|
|
|
}
|
2016-01-26 02:38:44 +01:00
|
|
|
|
2018-04-04 00:56:35 +02:00
|
|
|
static uint32_t g_target_sdk_version{__ANDROID_API__};
|
|
|
|
|
|
|
|
extern "C" uint32_t android_get_application_target_sdk_version() {
|
|
|
|
return g_target_sdk_version;
|
|
|
|
}
|
|
|
|
|
2016-01-26 02:38:44 +01:00
|
|
|
uint32_t bionic_get_application_target_sdk_version() {
|
2018-04-04 00:56:35 +02:00
|
|
|
return android_get_application_target_sdk_version();
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void android_set_application_target_sdk_version(uint32_t target) {
|
|
|
|
g_target_sdk_version = target;
|
2016-01-26 02:38:44 +01:00
|
|
|
}
|