blob: aa6d00b9d0bc03e96f89e78888ab6d42c8b59e62 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
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#ifndef _LINKER_H_
30#define _LINKER_H_
31
Dimitry Ivanov4a2c5aa2015-12-10 16:08:14 -080032#include <dlfcn.h>
Elliott Hughesafab3ff2015-07-28 14:58:37 -070033#include <android/dlext.h>
Nick Kralevich9ec0f032012-02-28 10:40:00 -080034#include <elf.h>
Dmitriy Ivanov0d150942014-08-22 12:25:04 -070035#include <inttypes.h>
Pavel Chupinb7beb692012-08-17 12:53:29 +040036#include <link.h>
Dmitriy Ivanovd59e5002014-05-09 09:10:14 -070037#include <sys/stat.h>
Elliott Hughesafab3ff2015-07-28 14:58:37 -070038#include <unistd.h>
Elliott Hughes46882792012-08-03 16:49:39 -070039
Elliott Hughesafab3ff2015-07-28 14:58:37 -070040#include "private/bionic_page.h"
Elliott Hughes8f2a5a02013-03-15 15:30:25 -070041#include "private/libc_logging.h"
Dmitriy Ivanovd59e5002014-05-09 09:10:14 -070042#include "linked_list.h"
Dimitry Ivanovb943f302016-08-03 16:00:10 -070043#include "linker_common_types.h"
Dimitry Ivanovb996d602016-07-11 18:11:39 -070044#include "linker_logger.h"
Dimitry Ivanov48ec2882016-08-04 11:50:36 -070045#include "linker_soinfo.h"
Elliott Hughes650be4e2013-03-05 18:47:58 -080046
Dmitriy Ivanovaae859c2015-03-31 11:14:03 -070047#include <string>
Dmitriy Ivanov2a815362015-04-09 13:42:33 -070048#include <vector>
Dmitriy Ivanovaae859c2015-03-31 11:14:03 -070049
Elliott Hughes0266ae52014-02-10 17:46:57 -080050#if defined(__LP64__)
51#define ELFW(what) ELF64_ ## what
52#else
53#define ELFW(what) ELF32_ ## what
54#endif
Elliott Hughes650be4e2013-03-05 18:47:58 -080055
Chris Dearman99186652014-02-06 20:36:51 -080056// mips64 interprets Elf64_Rel structures' r_info field differently.
57// bionic (like other C libraries) has macros that assume regular ELF files,
58// but the dynamic linker needs to be able to load mips64 ELF files.
59#if defined(__mips__) && defined(__LP64__)
60#undef ELF64_R_SYM
61#undef ELF64_R_TYPE
62#undef ELF64_R_INFO
63#define ELF64_R_SYM(info) (((info) >> 0) & 0xffffffff)
64#define ELF64_R_SSYM(info) (((info) >> 32) & 0xff)
65#define ELF64_R_TYPE3(info) (((info) >> 40) & 0xff)
66#define ELF64_R_TYPE2(info) (((info) >> 48) & 0xff)
67#define ELF64_R_TYPE(info) (((info) >> 56) & 0xff)
68#endif
69
Dmitriy Ivanovd225a5e2014-08-28 14:12:12 -070070#define SUPPORTED_DT_FLAGS_1 (DF_1_NOW | DF_1_GLOBAL | DF_1_NODELETE)
71
Dmitriy Ivanov2a815362015-04-09 13:42:33 -070072// Class used construct version dependency graph.
73class VersionTracker {
74 public:
75 VersionTracker() = default;
76 bool init(const soinfo* si_from);
77
78 const version_info* get_version_info(ElfW(Versym) source_symver) const;
79 private:
80 bool init_verneed(const soinfo* si_from);
81 bool init_verdef(const soinfo* si_from);
82 void add_version_info(size_t source_index, ElfW(Word) elf_hash,
83 const char* ver_name, const soinfo* target_si);
84
85 std::vector<version_info> version_infos;
86
87 DISALLOW_COPY_AND_ASSIGN(VersionTracker);
88};
89
Dmitriy Ivanov2a815362015-04-09 13:42:33 -070090bool soinfo_do_lookup(soinfo* si_from, const char* name, const version_info* vi,
Dimitry Ivanovb943f302016-08-03 16:00:10 -070091 soinfo** si_found_in, const soinfo_list_t& global_group,
92 const soinfo_list_t& local_group, const ElfW(Sym)** symbol);
Dmitriy Ivanov114ff692015-01-14 11:36:38 -080093
94enum RelocationKind {
95 kRelocAbsolute = 0,
96 kRelocRelative,
97 kRelocCopy,
98 kRelocSymbol,
99 kRelocMax
100};
101
102void count_relocation(RelocationKind kind);
103
Dmitriy Ivanov1b20daf2014-05-19 15:06:58 -0700104soinfo* get_libdl_info();
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800105
Elliott Hughesa4aafd12014-01-13 16:37:47 -0800106void do_android_get_LD_LIBRARY_PATH(char*, size_t);
Elliott Hughescade4c32012-12-20 14:42:14 -0800107void do_android_update_LD_LIBRARY_PATH(const char* ld_library_path);
Dimitry Ivanovd88e1f32016-03-24 15:30:30 -0700108void* do_dlopen(const char* name, int flags, const android_dlextinfo* extinfo, void* caller_addr);
109int do_dlclose(void* handle);
David 'Digit' Turner16084162012-06-12 16:25:37 +0200110
Dmitriy Ivanov7271caf2015-06-29 14:48:25 -0700111int do_dl_iterate_phdr(int (*cb)(dl_phdr_info* info, size_t size, void* data), void* data);
112
Dimitry Ivanov4a2c5aa2015-12-10 16:08:14 -0800113bool do_dlsym(void* handle, const char* sym_name, const char* sym_ver,
114 void* caller_addr, void** symbol);
Dmitriy Ivanov42d5fcb2015-10-29 17:01:24 -0700115
Dimitry Ivanov4a2c5aa2015-12-10 16:08:14 -0800116int do_dladdr(const void* addr, Dl_info* info);
Elliott Hughesd23736e2012-11-01 15:16:56 -0700117
Dmitriy Ivanov79fd6682015-05-21 17:43:49 -0700118void set_application_target_sdk_version(uint32_t target);
119uint32_t get_application_target_sdk_version();
120
Dimitry Ivanov41fd2952016-05-09 17:37:39 -0700121enum {
122 /* A regular namespace is the namespace with a custom search path that does
123 * not impose any restrictions on the location of native libraries.
124 */
125 ANDROID_NAMESPACE_TYPE_REGULAR = 0,
126
127 /* An isolated namespace requires all the libraries to be on the search path
128 * or under permitted_when_isolated_path. The search path is the union of
129 * ld_library_path and default_library_path.
130 */
131 ANDROID_NAMESPACE_TYPE_ISOLATED = 1,
132
133 /* The shared namespace clones the list of libraries of the caller namespace upon creation
134 * which means that they are shared between namespaces - the caller namespace and the new one
135 * will use the same copy of a library if it was loaded prior to android_create_namespace call.
136 *
137 * Note that libraries loaded after the namespace is created will not be shared.
138 *
139 * Shared namespaces can be isolated or regular. Note that they do not inherit the search path nor
140 * permitted_path from the caller's namespace.
141 */
142 ANDROID_NAMESPACE_TYPE_SHARED = 2,
143 ANDROID_NAMESPACE_TYPE_SHARED_ISOLATED = ANDROID_NAMESPACE_TYPE_SHARED |
144 ANDROID_NAMESPACE_TYPE_ISOLATED,
145};
146
Dmitriy Ivanov1ffec1c2015-11-23 11:26:35 -0800147bool init_namespaces(const char* public_ns_sonames, const char* anon_ns_library_path);
Dimitry Ivanovfc2da532016-05-12 15:20:21 -0700148android_namespace_t* create_namespace(const void* caller_addr,
149 const char* name,
150 const char* ld_library_path,
151 const char* default_library_path,
152 uint64_t type,
153 const char* permitted_when_isolated_path,
154 android_namespace_t* parent_namespace);
Dmitriy Ivanov42d5fcb2015-10-29 17:01:24 -0700155
Evgenii Stepanovd13e9a62016-07-15 16:31:42 -0700156constexpr unsigned kLibraryAlignmentBits = 18;
157constexpr size_t kLibraryAlignment = 1UL << kLibraryAlignmentBits;
158
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800159#endif