• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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  */
28 
29 #pragma once
30 
31 #include <dlfcn.h>
32 #include <android/dlext.h>
33 #include <elf.h>
34 #include <inttypes.h>
35 #include <link.h>
36 #include <sys/stat.h>
37 #include <unistd.h>
38 
39 #include "platform/bionic/page.h"
40 #include "linked_list.h"
41 #include "linker_common_types.h"
42 #include "linker_logger.h"
43 #include "linker_soinfo.h"
44 
45 #include <string>
46 #include <vector>
47 
48 #if defined(__LP64__)
49 #define ELFW(what) ELF64_ ## what
50 #else
51 #define ELFW(what) ELF32_ ## what
52 #endif
53 
54 #define SUPPORTED_DT_FLAGS_1 (DF_1_NOW | DF_1_GLOBAL | DF_1_NODELETE | DF_1_PIE)
55 
56 // Class used construct version dependency graph.
57 class VersionTracker {
58  public:
59   VersionTracker() = default;
60   bool init(const soinfo* si_from);
61 
62   const version_info* get_version_info(ElfW(Versym) source_symver) const;
63  private:
64   bool init_verneed(const soinfo* si_from);
65   bool init_verdef(const soinfo* si_from);
66   void add_version_info(size_t source_index, ElfW(Word) elf_hash,
67       const char* ver_name, const soinfo* target_si);
68 
69   std::vector<version_info> version_infos;
70 
71   DISALLOW_COPY_AND_ASSIGN(VersionTracker);
72 };
73 
74 soinfo* get_libdl_info(const soinfo& linker_si);
75 
76 soinfo* find_containing_library(const void* p);
77 
78 int open_executable(const char* path, off64_t* file_offset, std::string* realpath);
79 
80 void do_android_get_LD_LIBRARY_PATH(char*, size_t);
81 void do_android_update_LD_LIBRARY_PATH(const char* ld_library_path);
82 void* do_dlopen(const char* name,
83                 int flags,
84                 const android_dlextinfo* extinfo,
85                 const void* caller_addr);
86 
87 int do_dlclose(void* handle);
88 
89 int do_dl_iterate_phdr(int (*cb)(dl_phdr_info* info, size_t size, void* data), void* data);
90 
91 #if defined(__arm__)
92 _Unwind_Ptr do_dl_unwind_find_exidx(_Unwind_Ptr pc, int* pcount);
93 #endif
94 
95 bool do_dlsym(void* handle, const char* sym_name,
96               const char* sym_ver,
97               const void* caller_addr,
98               void** symbol);
99 
100 int do_dladdr(const void* addr, Dl_info* info);
101 
102 // void ___cfi_slowpath(uint64_t CallSiteTypeId, void *Ptr, void *Ret);
103 // void ___cfi_slowpath_diag(uint64_t CallSiteTypeId, void *Ptr, void *DiagData, void *Ret);
104 void ___cfi_fail(uint64_t CallSiteTypeId, void* Ptr, void *DiagData, void *Ret);
105 
106 void set_application_target_sdk_version(int target);
107 int get_application_target_sdk_version();
108 
109 enum {
110   /* A regular namespace is the namespace with a custom search path that does
111    * not impose any restrictions on the location of native libraries.
112    */
113   ANDROID_NAMESPACE_TYPE_REGULAR = 0,
114 
115   /* An isolated namespace requires all the libraries to be on the search path
116    * or under permitted_when_isolated_path. The search path is the union of
117    * ld_library_path and default_library_path.
118    */
119   ANDROID_NAMESPACE_TYPE_ISOLATED = 1,
120 
121   /* The shared namespace clones the list of libraries of the caller namespace upon creation
122    * which means that they are shared between namespaces - the caller namespace and the new one
123    * will use the same copy of a library if it was loaded prior to android_create_namespace call.
124    *
125    * Note that libraries loaded after the namespace is created will not be shared.
126    *
127    * Shared namespaces can be isolated or regular. Note that they do not inherit the search path nor
128    * permitted_path from the caller's namespace.
129    */
130   ANDROID_NAMESPACE_TYPE_SHARED = 2,
131 
132   /* This flag instructs linker to enable grey-list workaround for the namespace.
133    * See http://b/26394120 for details.
134    */
135   ANDROID_NAMESPACE_TYPE_GREYLIST_ENABLED = 0x08000000,
136 
137   /* This flag instructs linker to use this namespace as the anonymous
138    * namespace. There can be only one anonymous namespace in a process. If there
139    * already an anonymous namespace in the process, using this flag when
140    * creating a new namespace causes an error
141    */
142   ANDROID_NAMESPACE_TYPE_ALSO_USED_AS_ANONYMOUS = 0x10000000,
143 
144   ANDROID_NAMESPACE_TYPE_SHARED_ISOLATED = ANDROID_NAMESPACE_TYPE_SHARED |
145                                            ANDROID_NAMESPACE_TYPE_ISOLATED,
146 };
147 
148 bool init_anonymous_namespace(const char* shared_lib_sonames, const char* library_search_path);
149 android_namespace_t* create_namespace(const void* caller_addr,
150                                       const char* name,
151                                       const char* ld_library_path,
152                                       const char* default_library_path,
153                                       uint64_t type,
154                                       const char* permitted_when_isolated_path,
155                                       android_namespace_t* parent_namespace);
156 
157 bool link_namespaces(android_namespace_t* namespace_from,
158                      android_namespace_t* namespace_to,
159                      const char* shared_lib_sonames);
160 
161 bool link_namespaces_all_libs(android_namespace_t* namespace_from,
162                               android_namespace_t* namespace_to);
163 
164 android_namespace_t* get_exported_namespace(const char* name);
165 
166 void increment_dso_handle_reference_counter(void* dso_handle);
167 void decrement_dso_handle_reference_counter(void* dso_handle);
168 
169 void purge_unused_memory();
170 
171 struct address_space_params {
172   void* start_addr = nullptr;
173   size_t reserved_size = 0;
174   bool must_use_address = false;
175 };
176 
177 int get_application_target_sdk_version();
178 ElfW(Versym) find_verdef_version_index(const soinfo* si, const version_info* vi);
179 bool validate_verdef_section(const soinfo* si);
180