NameDateSize

..21-Nov-20124 KiB

Android.mk21-Nov-20122.5 KiB

arch/21-Nov-20124 KiB

debugger.c21-Nov-20128.8 KiB

dlfcn.c21-Nov-20127.3 KiB

linker.cpp21-Nov-201262.7 KiB

linker.h21-Nov-20125.8 KiB

linker_debug.h21-Nov-20124.6 KiB

linker_environ.c21-Nov-20125.4 KiB

linker_environ.h21-Nov-20122.5 KiB

linker_format.c21-Nov-201217.3 KiB

linker_format.h21-Nov-20121.9 KiB

linker_phdr.c21-Nov-201221.9 KiB

linker_phdr.h21-Nov-20124.1 KiB

MODULE_LICENSE_APACHE221-Nov-20120

NOTICE21-Nov-20127.4 KiB

README.TXT21-Nov-20123.2 KiB

rt.c21-Nov-20121.6 KiB

README.TXT

1Android Dynamic Linker Design Notes
2===================================
3
4Introduction:
5-------------
6
7This document provides several notes related to the design of the Android
8dynamic linker.
9
10
11Initialization and Termination functions:
12-----------------------------------------
13
14The Unix Sys V Binary Interface standard states that an
15executable can have the following entries in its .dynamic
16section:
17
18  DT_INIT
19      Points to the address of an initialization function
20      that must be called when the file is loaded.
21
22  DT_INIT_ARRAY
23      Points to an array of function addresses that must be
24      called, in-order, to perform initialization. Some of
25      the entries in the array can be 0 or -1, and should
26      be ignored.
27
28      Note: this is generally stored in a .init_array section
29
30  DT_INIT_ARRAYSZ
31      The size of the DT_INITARRAY, if any
32
33  DT_FINI
34      Points to the address of a finalization function which
35      must be called when the file is unloaded or the process
36      terminated.
37
38  DT_FINI_ARRAY
39      Same as DT_INITARRAY but for finalizers. Note that the
40      functions must be called in reverse-order though
41
42      Note: this is generally stored in a .fini_array section
43
44  DT_FINI_ARRAYSZ
45      Size of FT_FINIARRAY
46
47  DT_PREINIT_ARRAY
48      An array similar to DT_INIT_ARRAY which must *only* be
49      present in executables, not shared libraries, which contains
50      a list of functions that need to be called before any other
51      initialization function (i.e. DT_INIT and/or DT_INIT_ARRAY)
52      in the executable or any of its libraries.
53
54      Note: this is generally stored in a .preinit_array section
55
56  DT_PREINIT_ARRAYSZ
57      The size of DT_PREINIT_ARRAY
58
59If both a DT_INIT and DT_INITARRAY entry are present, the DT_INIT
60function must be called before the DT_INITARRAY functions.
61
62Consequently, the DT_FINIARRAY must be parsed in reverse order before
63the DT_FINI function, if both are available.
64
65Note that the implementation of static C++ constructors is very
66much processor dependent, and may use different ELF sections.
67
68On the ARM (see "C++ ABI for ARM" document), the static constructors
69must be called explicitly from the DT_INIT_ARRAY, and each one of them
70shall register a destructor by calling the special __eabi_atexit()
71function (provided by the C library). The DT_FINI_ARRAY is not used
72by static C++ destructors.
73
74On x86, the lists of constructors and destructors are placed in special
75sections named ".ctors" and ".dtors", and the DT_INIT / DT_FINI functions
76are in charge of calling them explicitly.
77
78
79Debugging:
80----------
81
82It is possible to enable debug output in the dynamic linker. To do so,
83follow these steps:
84
851/ Modify the line in Android.mk that says:
86
87    LOCAL_CFLAGS += -DLINKER_DEBUG=0
88
89  Into the following:
90
91    LOCAL_CFLAGS += -DLINKER_DEBUG=1
92
932/ Force-rebuild the dynamic linker:
94
95    cd bionic/linker
96    mm -B
97
983/ Rebuild a new system image.
99
100You can increase the verbosity of debug traces by defining the DEBUG
101environment variable to a numeric value from 0 to 2. This will only
102affect new processes being launched.
103
104By default, traces are sent to logcat, with the "linker" tag. You can
105change this to go to stdout instead by setting the definition of
106LINKER_DEBUG_TO_LOG to 0 in "linker_debug.h".
107