2009-03-04 04:28:35 +01:00
|
|
|
/*
|
2012-11-28 15:31:14 +01:00
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
2009-03-04 04:28:35 +01:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
#include "../../bionic/libc_init_common.h"
|
|
|
|
#include <stddef.h>
|
2013-02-07 21:16:10 +01:00
|
|
|
#include <stdint.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2017-07-25 01:53:11 +02:00
|
|
|
#define SECTION(name) __attribute__((__section__(name)))
|
2020-10-23 18:55:33 +02:00
|
|
|
SECTION(".preinit_array") init_func_t* __PREINIT_ARRAY__ = (init_func_t*)-1;
|
|
|
|
SECTION(".init_array.0") init_func_t* __INIT_ARRAY__ = (init_func_t*)-1;
|
|
|
|
SECTION(".fini_array.0") fini_func_t* __FINI_ARRAY__ = (fini_func_t*)-1;
|
2017-07-25 01:53:11 +02:00
|
|
|
#undef SECTION
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2018-01-24 22:19:08 +01:00
|
|
|
__used static void _start_main(void* raw_args) {
|
2012-11-28 15:31:14 +01:00
|
|
|
structors_array_t array;
|
|
|
|
array.preinit_array = &__PREINIT_ARRAY__;
|
2013-02-07 19:14:39 +01:00
|
|
|
array.init_array = &__INIT_ARRAY__;
|
2014-09-04 23:54:34 +02:00
|
|
|
array.fini_array = &__FINI_ARRAY__;
|
2012-11-28 15:31:14 +01:00
|
|
|
|
2013-02-07 19:14:39 +01:00
|
|
|
__libc_init(raw_args, NULL, &main, &array);
|
2012-11-28 15:31:14 +01:00
|
|
|
}
|
|
|
|
|
2017-05-23 20:03:58 +02:00
|
|
|
#define PRE ".text; .global _start; .type _start,%function; _start:"
|
|
|
|
#define POST "; .size _start, .-_start"
|
|
|
|
|
|
|
|
#if defined(__aarch64__)
|
2021-01-25 17:49:01 +01:00
|
|
|
__asm__(PRE "bti j; mov x0,sp; b _start_main" POST);
|
2017-05-23 20:03:58 +02:00
|
|
|
#elif defined(__arm__)
|
|
|
|
__asm__(PRE "mov r0,sp; b _start_main" POST);
|
|
|
|
#elif defined(__i386__)
|
2018-02-09 03:37:26 +01:00
|
|
|
__asm__(PRE "movl %esp,%eax; andl $~0xf,%esp; subl $12,%esp; pushl %eax; calll _start_main" POST);
|
2017-05-23 20:03:58 +02:00
|
|
|
#elif defined(__x86_64__)
|
|
|
|
__asm__(PRE "movq %rsp,%rdi; andq $~0xf,%rsp; callq _start_main" POST);
|
|
|
|
#else
|
|
|
|
#error unsupported architecture
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef PRE
|
|
|
|
#undef POST
|
|
|
|
|
2019-05-22 00:38:20 +02:00
|
|
|
// On arm32 and arm64, when targeting Q and up, overalign the TLS segment to
|
|
|
|
// (8 * sizeof(void*)), which reserves enough space between the thread pointer
|
|
|
|
// and the executable's TLS segment for Bionic's TLS slots. It has the side
|
|
|
|
// effect of placing a 0-sized TLS segment into Android executables that don't
|
|
|
|
// use TLS, but this should be harmless.
|
|
|
|
//
|
2019-05-30 02:09:47 +02:00
|
|
|
// To ensure that the .tdata input section isn't deleted (e.g. by
|
|
|
|
// --gc-sections), the .text input section (which contains _start) has a
|
|
|
|
// relocation to the .tdata input section.
|
2019-12-20 22:26:14 +01:00
|
|
|
#if __ANDROID_API__ >= 29
|
2019-05-22 00:38:20 +02:00
|
|
|
#if defined(__arm__)
|
|
|
|
asm(" .section .tdata,\"awT\",%progbits\n"
|
|
|
|
" .p2align 5\n"
|
|
|
|
" .text\n"
|
2019-05-30 02:09:47 +02:00
|
|
|
" .reloc 0, R_ARM_NONE, .tdata\n");
|
2019-05-22 00:38:20 +02:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
asm(" .section .tdata,\"awT\",@progbits\n"
|
|
|
|
" .p2align 6\n"
|
|
|
|
" .text\n"
|
2019-05-30 02:09:47 +02:00
|
|
|
" .reloc 0, R_AARCH64_NONE, .tdata\n");
|
2019-05-22 00:38:20 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-11-28 15:31:14 +01:00
|
|
|
#include "__dso_handle.h"
|
|
|
|
#include "atexit.h"
|
2014-11-21 05:47:02 +01:00
|
|
|
#include "pthread_atfork.h"
|
2018-01-24 23:09:29 +01:00
|
|
|
#ifdef __i386__
|
|
|
|
# include "../../arch-x86/bionic/__stack_chk_fail_local.h"
|
|
|
|
#endif
|