blob: edbd592940276c350fc7f9a10310860bb9ea9824 [file] [log] [blame]
Dimitry Ivanovb943f302016-08-03 16:00:10 -07001/*
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"
Dimitry Ivanovd3a07e82017-04-11 15:22:49 -070030#include "linker_globals.h"
Dimitry Ivanov7a34b9d2017-02-03 14:07:34 -080031#include "linker_soinfo.h"
Dimitry Ivanovb943f302016-08-03 16:00:10 -070032#include "linker_utils.h"
33
Jiyong Park02586a22017-05-20 01:01:24 +090034#include <dlfcn.h>
35
Ryan Pricharde5033832020-01-31 14:41:56 -080036// Given an absolute path, can this library be loaded into this namespace?
Dimitry Ivanovb943f302016-08-03 16:00:10 -070037bool android_namespace_t::is_accessible(const std::string& file) {
38 if (!is_isolated_) {
39 return true;
40 }
41
Vic Yang2d020e42019-01-12 21:03:25 -080042 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
Dimitry Ivanovb943f302016-08-03 16:00:10 -070050 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
Ryan Pricharde5033832020-01-31 14:41:56 -080071// Are symbols from this shared object accessible for symbol lookups in a library from this
72// namespace?
Dimitry Ivanov7a34b9d2017-02-03 14:07:34 -080073bool android_namespace_t::is_accessible(soinfo* s) {
Dimitry Ivanov3b236ae2017-02-13 10:49:40 -080074 auto is_accessible_ftor = [this] (soinfo* si) {
Dimitry Ivanovd3a07e82017-04-11 15:22:49 -070075 // 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)) {
Elliott Hughes9076b0c2018-02-28 11:29:45 -080078 DL_WARN("Warning: invalid soinfo version for \"%s\" (assuming inaccessible)",
79 si->get_soname());
Dimitry Ivanovd3a07e82017-04-11 15:22:49 -070080 return false;
81 }
82
Dimitry Ivanov7a34b9d2017-02-03 14:07:34 -080083 if (si->get_primary_namespace() == this) {
84 return true;
85 }
86
87 const android_namespace_list_t& secondary_namespaces = si->get_secondary_namespaces();
88 if (secondary_namespaces.find(this) != secondary_namespaces.end()) {
89 return true;
90 }
91
92 return false;
Dimitry Ivanov3b236ae2017-02-13 10:49:40 -080093 };
94
95 if (is_accessible_ftor(s)) {
96 return true;
97 }
98
99 return !s->get_parents().visit([&](soinfo* si) {
100 return !is_accessible_ftor(si);
101 });
Dimitry Ivanov7a34b9d2017-02-03 14:07:34 -0800102}
Jiyong Park02586a22017-05-20 01:01:24 +0900103
104// TODO: this is slightly unusual way to construct
105// the global group for relocation. Not every RTLD_GLOBAL
106// library is included in this group for backwards-compatibility
107// reasons.
108//
109// This group consists of the main executable, LD_PRELOADs
110// and libraries with the DF_1_GLOBAL flag set.
111soinfo_list_t android_namespace_t::get_global_group() {
112 soinfo_list_t global_group;
113 soinfo_list().for_each([&](soinfo* si) {
114 if ((si->get_dt_flags_1() & DF_1_GLOBAL) != 0) {
115 global_group.push_back(si);
116 }
117 });
118
119 return global_group;
120}
121
122// This function provides a list of libraries to be shared
123// by the namespace. For the default namespace this is the global
124// group (see get_global_group). For all others this is a group
125// of RTLD_GLOBAL libraries (which includes the global group from
126// the default namespace).
127soinfo_list_t android_namespace_t::get_shared_group() {
128 if (this == &g_default_namespace) {
129 return get_global_group();
130 }
131
132 soinfo_list_t shared_group;
133 soinfo_list().for_each([&](soinfo* si) {
134 if ((si->get_rtld_flags() & RTLD_GLOBAL) != 0) {
135 shared_group.push_back(si);
136 }
137 });
138
139 return shared_group;
140}