blob: 18ba011b0a5ac0468702f1c83e70af5f2428cee4 [file] [log] [blame]
Dmitriy Ivanov0416d882014-11-04 09:38:18 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <gtest/gtest.h>
18
Jiyong Park4945d8f2017-08-30 11:30:53 +090019#if defined(__BIONIC__)
20#include <android-base/properties.h>
21#endif
22
Dmitriy Ivanov0416d882014-11-04 09:38:18 -080023#include <dlfcn.h>
24#include <libgen.h>
25#include <limits.h>
26#include <stdio.h>
27#include <stdint.h>
28
29#include <string>
Jiyong Park02586a22017-05-20 01:01:24 +090030#include <iostream>
31#include <fstream>
Dmitriy Ivanov0416d882014-11-04 09:38:18 -080032
Elliott Hugheseb04ed52017-03-29 13:48:02 -070033#include "gtest_globals.h"
Mark Salyzyn68a3bcc2018-11-13 07:35:21 -080034#include <android-base/file.h>
Dimitry Ivanov2a6955e2017-02-23 11:53:43 -080035#include "utils.h"
36
Dmitriy Ivanov0416d882014-11-04 09:38:18 -080037extern "C" int main_global_default_serial() {
38 return 3370318;
39}
40
41extern "C" int main_global_protected_serial() {
42 return 2716057;
43}
44
45// The following functions are defined in DT_NEEDED
46// libdl_preempt_test.so library.
47
48// This one calls main_global_default_serial
49extern "C" int main_global_default_get_serial();
50
51// This one calls main_global_protected_serial
52extern "C" int main_global_protected_get_serial();
53
54// This one calls lib_global_default_serial
55extern "C" int lib_global_default_get_serial();
56
57// This one calls lib_global_protected_serial
58extern "C" int lib_global_protected_get_serial();
59
60// This test verifies that the global default function
61// main_global_default_serial() is preempted by
62// the function defined above.
63TEST(dl, main_preempts_global_default) {
64 ASSERT_EQ(3370318, main_global_default_get_serial());
65}
66
67// This one makes sure that the global protected
68// symbols do not get preempted
69TEST(dl, main_does_not_preempt_global_protected) {
70 ASSERT_EQ(3370318, main_global_protected_get_serial());
71}
72
73// check same things for lib
74TEST(dl, lib_preempts_global_default) {
75 ASSERT_EQ(3370318, lib_global_default_get_serial());
76}
77
78TEST(dl, lib_does_not_preempt_global_protected) {
79 ASSERT_EQ(3370318, lib_global_protected_get_serial());
80}
81
Dimitry Ivanov2a6955e2017-02-23 11:53:43 -080082#if defined(__BIONIC__)
83#if defined(__LP64__)
84 static constexpr const char* kPathToLinker = "/system/bin/linker64";
85#else
86 static constexpr const char* kPathToLinker = "/system/bin/linker";
87#endif
Ryan Prichard8f639a42018-10-01 23:10:05 -070088#endif
89
90TEST(dl, exec_linker) {
91#if defined(__BIONIC__)
92 std::string usage_prefix = std::string("Usage: ") + kPathToLinker;
Dimitry Ivanov2a6955e2017-02-23 11:53:43 -080093 ExecTestHelper eth;
Ryan Prichard8f639a42018-10-01 23:10:05 -070094 eth.SetArgs({ kPathToLinker, nullptr });
95 eth.Run([&]() { execve(kPathToLinker, eth.GetArgs(), eth.GetEnv()); }, 0, nullptr);
96 ASSERT_EQ(0u, eth.GetOutput().find(usage_prefix)) << "Test output:\n" << eth.GetOutput();
97#endif
98}
99
100TEST(dl, exec_linker_load_file) {
101#if defined(__BIONIC__)
102 std::string helper = GetTestlibRoot() +
103 "/exec_linker_helper/exec_linker_helper";
104 std::string expected_output =
105 "ctor: argc=1 argv[0]=" + helper + "\n" +
106 "main: argc=1 argv[0]=" + helper + "\n" +
107 "helper_func called\n";
108 ExecTestHelper eth;
109 eth.SetArgs({ kPathToLinker, helper.c_str(), nullptr });
Dimitry Ivanov2a6955e2017-02-23 11:53:43 -0800110 eth.Run([&]() { execve(kPathToLinker, eth.GetArgs(), eth.GetEnv()); }, 0, expected_output.c_str());
111#endif
112}
113
Ryan Prichard8f639a42018-10-01 23:10:05 -0700114TEST(dl, exec_linker_load_from_zip) {
115#if defined(__BIONIC__)
116 std::string helper = GetTestlibRoot() +
117 "/libdlext_test_zip/libdlext_test_zip_zipaligned.zip!/libdir/exec_linker_helper";
118 std::string expected_output =
119 "ctor: argc=1 argv[0]=" + helper + "\n" +
120 "main: argc=1 argv[0]=" + helper + "\n" +
121 "helper_func called\n";
122 ExecTestHelper eth;
123 eth.SetArgs({ kPathToLinker, helper.c_str(), nullptr });
124 eth.Run([&]() { execve(kPathToLinker, eth.GetArgs(), eth.GetEnv()); }, 0, expected_output.c_str());
125#endif
126}
127
128TEST(dl, exec_linker_load_self) {
129#if defined(__BIONIC__)
130 std::string error_message = "error: linker cannot load itself\n";
131 ExecTestHelper eth;
132 eth.SetArgs({ kPathToLinker, kPathToLinker, nullptr });
133 eth.Run([&]() { execve(kPathToLinker, eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_message.c_str());
134#endif
135}
136
Elliott Hugheseb04ed52017-03-29 13:48:02 -0700137TEST(dl, preinit_system_calls) {
138#if defined(__BIONIC__)
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -0800139 SKIP_WITH_HWASAN; // hwasan not initialized in preinit_array
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700140 std::string helper = GetTestlibRoot() +
Elliott Hugheseb04ed52017-03-29 13:48:02 -0700141 "/preinit_syscall_test_helper/preinit_syscall_test_helper";
142 chmod(helper.c_str(), 0755); // TODO: "x" lost in CTS, b/34945607
143 ExecTestHelper eth;
144 eth.SetArgs({ helper.c_str(), nullptr });
145 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr);
146#endif
147}
148
149TEST(dl, xfail_preinit_getauxval) {
150#if defined(__BIONIC__)
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700151 std::string helper = GetTestlibRoot() +
Elliott Hugheseb04ed52017-03-29 13:48:02 -0700152 "/preinit_getauxval_test_helper/preinit_getauxval_test_helper";
153 chmod(helper.c_str(), 0755); // TODO: "x" lost in CTS, b/34945607
154 ExecTestHelper eth;
155 eth.SetArgs({ helper.c_str(), nullptr });
156 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr);
Christopher Ferris01db9bd2018-11-07 14:39:43 -0800157#else
158 // Force a failure when not compiled for bionic so the test is considered a pass.
159 ASSERT_TRUE(false);
Elliott Hugheseb04ed52017-03-29 13:48:02 -0700160#endif
161}
162
Jiyong Park02586a22017-05-20 01:01:24 +0900163
164TEST(dl, exec_without_ld_preload) {
165#if defined(__BIONIC__)
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700166 std::string helper = GetTestlibRoot() +
Jiyong Park02586a22017-05-20 01:01:24 +0900167 "/ld_preload_test_helper/ld_preload_test_helper";
168 chmod(helper.c_str(), 0755);
169 ExecTestHelper eth;
170 eth.SetArgs({ helper.c_str(), nullptr });
171 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "12345");
172#endif
173}
174
175TEST(dl, exec_with_ld_preload) {
176#if defined(__BIONIC__)
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700177 std::string helper = GetTestlibRoot() +
Jiyong Park02586a22017-05-20 01:01:24 +0900178 "/ld_preload_test_helper/ld_preload_test_helper";
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700179 std::string env = std::string("LD_PRELOAD=") + GetTestlibRoot() + "/ld_preload_test_helper_lib2.so";
Jiyong Park02586a22017-05-20 01:01:24 +0900180 chmod(helper.c_str(), 0755);
181 ExecTestHelper eth;
182 eth.SetArgs({ helper.c_str(), nullptr });
183 eth.SetEnv({ env.c_str(), nullptr });
184 // ld_preload_test_helper calls get_value_from_lib() and returns the value.
185 // The symbol is defined by two libs: ld_preload_test_helper_lib.so and
186 // ld_preloaded_lib.so. The former is DT_NEEDED and the latter is LD_PRELOADED
187 // via this execution. The main executable is linked to the LD_PRELOADED lib
188 // and the value given from the lib is returned.
189 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "54321");
190#endif
191}
192
193
194// ld_config_test_helper must fail because it is depending on a lib which is not
195// in the search path
196//
197// Call sequence is...
198// _helper -- (get_value_from_lib()) -->
199// _lib1.so -- (get_value_from_another_lib()) -->
200// _lib2.so (returns 12345)
201// The two libs are in ns2/ subdir.
202TEST(dl, exec_without_ld_config_file) {
203#if defined(__BIONIC__)
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700204 std::string error_message = "CANNOT LINK EXECUTABLE \"" + GetTestlibRoot() + "/ld_config_test_helper/ld_config_test_helper\": library \"ld_config_test_helper_lib1.so\" not found\n";
205 std::string helper = GetTestlibRoot() +
Jiyong Park02586a22017-05-20 01:01:24 +0900206 "/ld_config_test_helper/ld_config_test_helper";
207 chmod(helper.c_str(), 0755);
208 ExecTestHelper eth;
209 eth.SetArgs({ helper.c_str(), nullptr });
dimitry04f7a792017-09-29 11:52:17 +0200210 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_message.c_str());
Jiyong Park02586a22017-05-20 01:01:24 +0900211#endif
212}
213
214#if defined(__BIONIC__)
dimitry1280cf52018-05-09 14:37:47 +0200215extern "C" void android_get_LD_LIBRARY_PATH(char*, size_t);
Ryan Prichard0044cd12018-04-03 20:03:12 -0700216static void create_ld_config_file(const char* config_file) {
dimitry1280cf52018-05-09 14:37:47 +0200217 char default_search_paths[PATH_MAX];
218 android_get_LD_LIBRARY_PATH(default_search_paths, sizeof(default_search_paths));
219
Ryan Prichard0044cd12018-04-03 20:03:12 -0700220 std::ofstream fout(config_file, std::ios::out);
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700221 fout << "dir.test = " << GetTestlibRoot() << "/ld_config_test_helper/" << std::endl
Jiyong Park02586a22017-05-20 01:01:24 +0900222 << "[test]" << std::endl
223 << "additional.namespaces = ns2" << std::endl
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700224 << "namespace.default.search.paths = " << GetTestlibRoot() << std::endl
Jiyong Park02586a22017-05-20 01:01:24 +0900225 << "namespace.default.links = ns2" << std::endl
226 << "namespace.default.link.ns2.shared_libs = libc.so:libm.so:libdl.so:ld_config_test_helper_lib1.so" << std::endl
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700227 << "namespace.ns2.search.paths = " << default_search_paths << ":" << GetTestlibRoot() << "/ns2" << std::endl;
Jiyong Park02586a22017-05-20 01:01:24 +0900228 fout.close();
229}
230#endif
231
Jiyong Park41704cd2017-09-19 09:48:07 +0900232#if defined(__BIONIC__)
dimitry59d30622017-10-18 13:23:08 +0200233static bool is_debuggable_build() {
234 return android::base::GetBoolProperty("ro.debuggable", false);
Jiyong Park41704cd2017-09-19 09:48:07 +0900235}
236#endif
Jiyong Park02586a22017-05-20 01:01:24 +0900237
238// _lib1.so and _lib2.so are now searchable by having another namespace 'ns2'
239// whose search paths include the 'ns2/' subdir.
240TEST(dl, exec_with_ld_config_file) {
241#if defined(__BIONIC__)
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -0800242 SKIP_WITH_HWASAN; // libclang_rt.hwasan is not found with custom ld config
dimitry59d30622017-10-18 13:23:08 +0200243 if (!is_debuggable_build()) {
Jiyong Park41704cd2017-09-19 09:48:07 +0900244 // LD_CONFIG_FILE is not supported on user build
245 return;
246 }
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700247 std::string helper = GetTestlibRoot() +
Jiyong Park02586a22017-05-20 01:01:24 +0900248 "/ld_config_test_helper/ld_config_test_helper";
Ryan Prichard0044cd12018-04-03 20:03:12 -0700249 TemporaryFile config_file;
Mark Salyzyn68a3bcc2018-11-13 07:35:21 -0800250 create_ld_config_file(config_file.path);
251 std::string env = std::string("LD_CONFIG_FILE=") + config_file.path;
Jiyong Park02586a22017-05-20 01:01:24 +0900252 chmod(helper.c_str(), 0755);
253 ExecTestHelper eth;
254 eth.SetArgs({ helper.c_str(), nullptr });
255 eth.SetEnv({ env.c_str(), nullptr });
256 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "12345");
257#endif
258}
259
260// _lib3.so has same symbol as lib2.so but returns 54321. _lib3.so is
261// LD_PRELOADed. This test is to ensure LD_PRELOADed libs are available to
262// additional namespaces other than the default namespace.
263TEST(dl, exec_with_ld_config_file_with_ld_preload) {
264#if defined(__BIONIC__)
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -0800265 SKIP_WITH_HWASAN; // libclang_rt.hwasan is not found with custom ld config
dimitry59d30622017-10-18 13:23:08 +0200266 if (!is_debuggable_build()) {
Jiyong Park41704cd2017-09-19 09:48:07 +0900267 // LD_CONFIG_FILE is not supported on user build
268 return;
269 }
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700270 std::string helper = GetTestlibRoot() +
Jiyong Park02586a22017-05-20 01:01:24 +0900271 "/ld_config_test_helper/ld_config_test_helper";
Ryan Prichard0044cd12018-04-03 20:03:12 -0700272 TemporaryFile config_file;
Mark Salyzyn68a3bcc2018-11-13 07:35:21 -0800273 create_ld_config_file(config_file.path);
274 std::string env = std::string("LD_CONFIG_FILE=") + config_file.path;
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700275 std::string env2 = std::string("LD_PRELOAD=") + GetTestlibRoot() + "/ld_config_test_helper_lib3.so";
Jiyong Park02586a22017-05-20 01:01:24 +0900276 chmod(helper.c_str(), 0755);
277 ExecTestHelper eth;
278 eth.SetArgs({ helper.c_str(), nullptr });
279 eth.SetEnv({ env.c_str(), env2.c_str(), nullptr });
280 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "54321");
281#endif
282}
283
Jiyong Park02586a22017-05-20 01:01:24 +0900284// ensures that LD_CONFIG_FILE env var does not work for production builds.
285// The test input is the same as exec_with_ld_config_file, but it must fail in
286// this case.
287TEST(dl, disable_ld_config_file) {
288#if defined(__BIONIC__)
289 if (getuid() == 0) {
290 // when executed from the shell (e.g. not as part of CTS), skip the test.
291 // This test is only for CTS.
292 return;
293 }
dimitry59d30622017-10-18 13:23:08 +0200294 if (is_debuggable_build()) {
Jiyong Park4945d8f2017-08-30 11:30:53 +0900295 // Skip the test for non production devices
296 return;
297 }
298
Christopher Ferris6d2c0bd2018-08-21 18:13:10 -0700299 std::string error_message = "CANNOT LINK EXECUTABLE \"" + GetTestlibRoot() + "/ld_config_test_helper/ld_config_test_helper\": library \"ld_config_test_helper_lib1.so\" not found\n";
300 std::string helper = GetTestlibRoot() +
Jiyong Park02586a22017-05-20 01:01:24 +0900301 "/ld_config_test_helper/ld_config_test_helper";
Ryan Prichard0044cd12018-04-03 20:03:12 -0700302 TemporaryFile config_file;
Mark Salyzyn68a3bcc2018-11-13 07:35:21 -0800303 create_ld_config_file(config_file.path);
304 std::string env = std::string("LD_CONFIG_FILE=") + config_file.path;
Jiyong Park02586a22017-05-20 01:01:24 +0900305 chmod(helper.c_str(), 0755);
306 ExecTestHelper eth;
307 eth.SetArgs({ helper.c_str(), nullptr });
308 eth.SetEnv({ env.c_str(), nullptr });
Jiyong Park98283862017-11-28 13:37:03 +0900309 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_message.c_str());
Jiyong Park02586a22017-05-20 01:01:24 +0900310#endif
311}