1 | /*
|
---|
2 | * Copyright (c) 2018 CZ.NIC, z.s.p.o.
|
---|
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 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #include "../private/libc.h"
|
---|
30 |
|
---|
31 | /*
|
---|
32 | * We shouldn't be accessing these symbols directly from libc,
|
---|
33 | * since it would create unwanted relocations in shared library
|
---|
34 | * code. Instead, we refer to them here, in a file that's always
|
---|
35 | * statically linked to the main executable, and write their values
|
---|
36 | * to a special structure that resides in libc.
|
---|
37 | */
|
---|
38 |
|
---|
39 | extern init_array_entry_t __preinit_array_start[] __attribute__((weak));
|
---|
40 | extern init_array_entry_t __preinit_array_end[] __attribute__((weak));
|
---|
41 | extern init_array_entry_t __init_array_start[] __attribute__((weak));
|
---|
42 | extern init_array_entry_t __init_array_end[] __attribute__((weak));
|
---|
43 | extern fini_array_entry_t __fini_array_start[] __attribute__((weak));
|
---|
44 | extern fini_array_entry_t __fini_array_end[] __attribute__((weak));
|
---|
45 | extern int main(int, char *[]);
|
---|
46 | extern unsigned char __executable_start[];
|
---|
47 | extern unsigned char _end[];
|
---|
48 |
|
---|
49 | /* __c_start is only called from _start in assembly. */
|
---|
50 | void __c_start(void *);
|
---|
51 |
|
---|
52 | void __c_start(void *pcb)
|
---|
53 | {
|
---|
54 | __progsymbols = (progsymbols_t) {
|
---|
55 | .main = main,
|
---|
56 | .elfstart = __executable_start,
|
---|
57 | .end = _end,
|
---|
58 | .preinit_array = __preinit_array_start,
|
---|
59 | .preinit_array_len = __preinit_array_end - __preinit_array_start,
|
---|
60 | .init_array = __init_array_start,
|
---|
61 | .init_array_len = __init_array_end - __init_array_start,
|
---|
62 | .fini_array = __fini_array_start,
|
---|
63 | .fini_array_len = __fini_array_end - __fini_array_start,
|
---|
64 | };
|
---|
65 |
|
---|
66 | __libc_main(pcb);
|
---|
67 | }
|
---|