1 /*
2 * Copyright (C) 2016 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 #include "linker_namespaces.h"
30 #include "linker_globals.h"
31 #include "linker_soinfo.h"
32 #include "linker_utils.h"
33
34 #include <dlfcn.h>
35
36 // Given an absolute path, can this library be loaded into this namespace?
is_accessible(const std::string & file)37 bool android_namespace_t::is_accessible(const std::string& file) {
38 if (!is_isolated_) {
39 return true;
40 }
41
42 if (!whitelisted_libs_.empty()) {
43 const char *lib_name = basename(file.c_str());
44 if (std::find(whitelisted_libs_.begin(), whitelisted_libs_.end(),
45 lib_name) == whitelisted_libs_.end()) {
46 return false;
47 }
48 }
49
50 for (const auto& dir : ld_library_paths_) {
51 if (file_is_in_dir(file, dir)) {
52 return true;
53 }
54 }
55
56 for (const auto& dir : default_library_paths_) {
57 if (file_is_in_dir(file, dir)) {
58 return true;
59 }
60 }
61
62 for (const auto& dir : permitted_paths_) {
63 if (file_is_under_dir(file, dir)) {
64 return true;
65 }
66 }
67
68 return false;
69 }
70
71 // Are symbols from this shared object accessible for symbol lookups in a library from this
72 // namespace?
is_accessible(soinfo * s)73 bool android_namespace_t::is_accessible(soinfo* s) {
74 auto is_accessible_ftor = [this] (soinfo* si, bool allow_secondary) {
75 // This is workaround for apps hacking into soinfo list.
76 // and inserting their own entries into it. (http://b/37191433)
77 if (!si->has_min_version(3)) {
78 DL_WARN("Warning: invalid soinfo version for \"%s\" (assuming inaccessible)",
79 si->get_soname());
80 return false;
81 }
82
83 if (si->get_primary_namespace() == this) {
84 return true;
85 }
86
87 // When we're looking up symbols, we want to search libraries from the same namespace (whether
88 // the namespace membership is primary or secondary), but we also want to search the immediate
89 // dependencies of libraries in our namespace. (e.g. Supposing that libapp.so -> libandroid.so
90 // crosses a namespace boundary, we want to search libandroid.so but not any of libandroid.so's
91 // dependencies).
92 //
93 // Some libraries may be present in this namespace via the secondary namespace list:
94 // - the executable
95 // - LD_PRELOAD and DF_1_GLOBAL libraries
96 // - libraries inherited during dynamic namespace creation (e.g. because of
97 // RTLD_GLOBAL / DF_1_GLOBAL / ANDROID_NAMESPACE_TYPE_SHARED)
98 //
99 // When a library's membership is secondary, we want to search its symbols, but not the symbols
100 // of its dependencies. The executable may depend on internal system libraries which should not
101 // be searched.
102 if (allow_secondary) {
103 const android_namespace_list_t& secondary_namespaces = si->get_secondary_namespaces();
104 if (secondary_namespaces.find(this) != secondary_namespaces.end()) {
105 return true;
106 }
107 }
108
109 return false;
110 };
111
112 if (is_accessible_ftor(s, true)) {
113 return true;
114 }
115
116 return !s->get_parents().visit([&](soinfo* si) {
117 return !is_accessible_ftor(si, false);
118 });
119 }
120
121 // TODO: this is slightly unusual way to construct
122 // the global group for relocation. Not every RTLD_GLOBAL
123 // library is included in this group for backwards-compatibility
124 // reasons.
125 //
126 // This group consists of the main executable, LD_PRELOADs
127 // and libraries with the DF_1_GLOBAL flag set.
get_global_group()128 soinfo_list_t android_namespace_t::get_global_group() {
129 soinfo_list_t global_group;
130 soinfo_list().for_each([&](soinfo* si) {
131 if ((si->get_dt_flags_1() & DF_1_GLOBAL) != 0) {
132 global_group.push_back(si);
133 }
134 });
135
136 return global_group;
137 }
138
139 // This function provides a list of libraries to be shared
140 // by the namespace. For the default namespace this is the global
141 // group (see get_global_group). For all others this is a group
142 // of RTLD_GLOBAL libraries (which includes the global group from
143 // the default namespace).
get_shared_group()144 soinfo_list_t android_namespace_t::get_shared_group() {
145 if (this == &g_default_namespace) {
146 return get_global_group();
147 }
148
149 soinfo_list_t shared_group;
150 soinfo_list().for_each([&](soinfo* si) {
151 if ((si->get_rtld_flags() & RTLD_GLOBAL) != 0) {
152 shared_group.push_back(si);
153 }
154 });
155
156 return shared_group;
157 }
158