blob: aac0a5dc26a0e9b7592aaa6747f9aeaa6fbfcaf2 [file] [log] [blame]
Jason Molenda5fe4d142016-07-17 21:27:32 +00001//===-- DynamicLoaderDarwin.h -------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Jason Molenda5fe4d142016-07-17 21:27:32 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_DynamicLoaderDarwin_h_
10#define liblldb_DynamicLoaderDarwin_h_
11
Jason Molenda5fe4d142016-07-17 21:27:32 +000012#include <map>
13#include <mutex>
14#include <vector>
15
Pavel Labath77044732018-09-12 12:26:05 +000016#include "lldb/Host/SafeMachO.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000017#include "lldb/Target/DynamicLoader.h"
Jason Molenda5fe4d142016-07-17 21:27:32 +000018#include "lldb/Target/Process.h"
Zachary Turner5713a052017-03-22 18:40:07 +000019#include "lldb/Utility/FileSpec.h"
Pavel Labathf2a8bcc2017-06-27 10:45:31 +000020#include "lldb/Utility/StructuredData.h"
Zachary Turner5713a052017-03-22 18:40:07 +000021#include "lldb/Utility/UUID.h"
Jason Molenda5fe4d142016-07-17 21:27:32 +000022
Jason Molenda9ab5dc22016-07-21 08:30:55 +000023#include "llvm/ADT/Triple.h"
24
Jason Molenda5fe4d142016-07-17 21:27:32 +000025namespace lldb_private {
26
Kate Stoneb9c1b512016-09-06 20:57:50 +000027class DynamicLoaderDarwin : public lldb_private::DynamicLoader {
Jason Molenda5fe4d142016-07-17 21:27:32 +000028public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000029 DynamicLoaderDarwin(lldb_private::Process *process);
Jason Molenda5fe4d142016-07-17 21:27:32 +000030
Raphael Isemann17566302019-05-03 10:03:28 +000031 ~DynamicLoaderDarwin() override;
Jason Molenda5fe4d142016-07-17 21:27:32 +000032
Kate Stoneb9c1b512016-09-06 20:57:50 +000033 /// Called after attaching a process.
34 ///
35 /// Allow DynamicLoader plug-ins to execute some code after
36 /// attaching to a process.
Kate Stoneb9c1b512016-09-06 20:57:50 +000037 void DidAttach() override;
Jason Molenda5fe4d142016-07-17 21:27:32 +000038
Kate Stoneb9c1b512016-09-06 20:57:50 +000039 void DidLaunch() override;
Jason Molenda5fe4d142016-07-17 21:27:32 +000040
Kate Stoneb9c1b512016-09-06 20:57:50 +000041 lldb::ThreadPlanSP GetStepThroughTrampolinePlan(lldb_private::Thread &thread,
42 bool stop_others) override;
Jason Molenda5fe4d142016-07-17 21:27:32 +000043
Kate Stoneb9c1b512016-09-06 20:57:50 +000044 size_t FindEquivalentSymbols(
45 lldb_private::Symbol *original_symbol,
46 lldb_private::ModuleList &module_list,
47 lldb_private::SymbolContextList &equivalent_symbols) override;
Jason Molenda5fe4d142016-07-17 21:27:32 +000048
Kate Stoneb9c1b512016-09-06 20:57:50 +000049 lldb::addr_t GetThreadLocalData(const lldb::ModuleSP module,
50 const lldb::ThreadSP thread,
51 lldb::addr_t tls_file_addr) override;
Jason Molenda5fe4d142016-07-17 21:27:32 +000052
Kate Stoneb9c1b512016-09-06 20:57:50 +000053 bool AlwaysRelyOnEHUnwindInfo(lldb_private::SymbolContext &sym_ctx) override;
Jason Molenda5fe4d142016-07-17 21:27:32 +000054
Kate Stoneb9c1b512016-09-06 20:57:50 +000055 virtual void DoInitialImageFetch() = 0;
56
57 virtual bool NeedToDoInitialImageFetch() = 0;
Jason Molenda5fe4d142016-07-17 21:27:32 +000058
59protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +000060 void PrivateInitialize(lldb_private::Process *process);
Jason Molenda5fe4d142016-07-17 21:27:32 +000061
Kate Stoneb9c1b512016-09-06 20:57:50 +000062 void PrivateProcessStateChanged(lldb_private::Process *process,
63 lldb::StateType state);
Jason Molenda5fe4d142016-07-17 21:27:32 +000064
Kate Stoneb9c1b512016-09-06 20:57:50 +000065 void Clear(bool clear_process);
Jason Molenda5fe4d142016-07-17 21:27:32 +000066
Kate Stoneb9c1b512016-09-06 20:57:50 +000067 // Clear method for classes derived from this one
68 virtual void DoClear() = 0;
Jason Molenda5fe4d142016-07-17 21:27:32 +000069
Kate Stoneb9c1b512016-09-06 20:57:50 +000070 void SetDYLDModule(lldb::ModuleSP &dyld_module_sp);
Jason Molenda5fe4d142016-07-17 21:27:32 +000071
Kate Stoneb9c1b512016-09-06 20:57:50 +000072 lldb::ModuleSP GetDYLDModule();
Jason Molenda5fe4d142016-07-17 21:27:32 +000073
Kate Stoneb9c1b512016-09-06 20:57:50 +000074 class Segment {
75 public:
76 Segment()
77 : name(), vmaddr(LLDB_INVALID_ADDRESS), vmsize(0), fileoff(0),
78 filesize(0), maxprot(0), initprot(0), nsects(0), flags(0) {}
Jason Molenda5fe4d142016-07-17 21:27:32 +000079
Kate Stoneb9c1b512016-09-06 20:57:50 +000080 lldb_private::ConstString name;
81 lldb::addr_t vmaddr;
82 lldb::addr_t vmsize;
83 lldb::addr_t fileoff;
84 lldb::addr_t filesize;
85 uint32_t maxprot;
86 uint32_t initprot;
87 uint32_t nsects;
88 uint32_t flags;
Jason Molenda5fe4d142016-07-17 21:27:32 +000089
Kate Stoneb9c1b512016-09-06 20:57:50 +000090 bool operator==(const Segment &rhs) const {
91 return name == rhs.name && vmaddr == rhs.vmaddr && vmsize == rhs.vmsize;
Jason Molenda5fe4d142016-07-17 21:27:32 +000092 }
93
Kate Stoneb9c1b512016-09-06 20:57:50 +000094 void PutToLog(lldb_private::Log *log, lldb::addr_t slide) const;
95 };
Jason Molenda5fe4d142016-07-17 21:27:32 +000096
Kate Stoneb9c1b512016-09-06 20:57:50 +000097 struct ImageInfo {
98 lldb::addr_t address; // Address of mach header for this dylib
99 lldb::addr_t slide; // The amount to slide all segments by if there is a
100 // global slide.
101 lldb::addr_t mod_date; // Modification date for this dylib
102 lldb_private::FileSpec file_spec; // Resolved path for this dylib
103 lldb_private::UUID
104 uuid; // UUID for this dylib if it has one, else all zeros
105 llvm::MachO::mach_header header; // The mach header for this image
106 std::vector<Segment> segments; // All segment vmaddr and vmsize pairs for
107 // this executable (from memory of inferior)
108 uint32_t load_stop_id; // The process stop ID that the sections for this
109 // image were loaded
110 llvm::Triple::OSType os_type; // LC_VERSION_MIN_... load command os type
111 std::string min_version_os_sdk; // LC_VERSION_MIN_... sdk value
Jason Molenda5fe4d142016-07-17 21:27:32 +0000112
Kate Stoneb9c1b512016-09-06 20:57:50 +0000113 ImageInfo()
114 : address(LLDB_INVALID_ADDRESS), slide(0), mod_date(0), file_spec(),
115 uuid(), header(), segments(), load_stop_id(0),
116 os_type(llvm::Triple::OSType::UnknownOS), min_version_os_sdk() {}
Jason Molenda5fe4d142016-07-17 21:27:32 +0000117
Kate Stoneb9c1b512016-09-06 20:57:50 +0000118 void Clear(bool load_cmd_data_only) {
119 if (!load_cmd_data_only) {
120 address = LLDB_INVALID_ADDRESS;
121 slide = 0;
122 mod_date = 0;
123 file_spec.Clear();
124 ::memset(&header, 0, sizeof(header));
125 }
126 uuid.Clear();
127 segments.clear();
128 load_stop_id = 0;
129 os_type = llvm::Triple::OSType::UnknownOS;
130 min_version_os_sdk.clear();
131 }
Jason Molenda5fe4d142016-07-17 21:27:32 +0000132
Kate Stoneb9c1b512016-09-06 20:57:50 +0000133 bool operator==(const ImageInfo &rhs) const {
134 return address == rhs.address && slide == rhs.slide &&
135 mod_date == rhs.mod_date && file_spec == rhs.file_spec &&
136 uuid == rhs.uuid &&
137 memcmp(&header, &rhs.header, sizeof(header)) == 0 &&
138 segments == rhs.segments && os_type == rhs.os_type;
139 }
Jason Molenda5fe4d142016-07-17 21:27:32 +0000140
Kate Stoneb9c1b512016-09-06 20:57:50 +0000141 bool UUIDValid() const { return uuid.IsValid(); }
Jason Molenda5fe4d142016-07-17 21:27:32 +0000142
Kate Stoneb9c1b512016-09-06 20:57:50 +0000143 uint32_t GetAddressByteSize() {
144 if (header.cputype) {
145 if (header.cputype & llvm::MachO::CPU_ARCH_ABI64)
146 return 8;
147 else
148 return 4;
149 }
150 return 0;
151 }
Jason Molenda5fe4d142016-07-17 21:27:32 +0000152
Kate Stoneb9c1b512016-09-06 20:57:50 +0000153 lldb_private::ArchSpec GetArchitecture() const {
154 return lldb_private::ArchSpec(lldb_private::eArchTypeMachO,
155 header.cputype, header.cpusubtype);
156 }
Jason Molenda9ab5dc22016-07-21 08:30:55 +0000157
Adrian Prantl0e4c4822019-03-06 21:22:25 +0000158 const Segment *FindSegment(lldb_private::ConstString name) const;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000159
160 void PutToLog(lldb_private::Log *log) const;
161
162 typedef std::vector<ImageInfo> collection;
163 typedef collection::iterator iterator;
164 typedef collection::const_iterator const_iterator;
165 };
166
167 bool UpdateImageLoadAddress(lldb_private::Module *module, ImageInfo &info);
168
169 bool UnloadModuleSections(lldb_private::Module *module, ImageInfo &info);
170
171 lldb::ModuleSP FindTargetModuleForImageInfo(ImageInfo &image_info,
172 bool can_create,
173 bool *did_create_ptr);
174
175 void UnloadImages(const std::vector<lldb::addr_t> &solib_addresses);
176
177 void UnloadAllImages();
178
179 virtual bool SetNotificationBreakpoint() = 0;
180
181 virtual void ClearNotificationBreakpoint() = 0;
182
183 virtual bool DidSetNotificationBreakpoint() = 0;
184
185 typedef std::map<uint64_t, lldb::addr_t> PthreadKeyToTLSMap;
186 typedef std::map<lldb::user_id_t, PthreadKeyToTLSMap> ThreadIDToTLSMap;
187
188 std::recursive_mutex &GetMutex() const { return m_mutex; }
189
190 lldb::ModuleSP GetPThreadLibraryModule();
191
192 lldb_private::Address GetPthreadSetSpecificAddress();
193
194 bool JSONImageInformationIntoImageInfo(
195 lldb_private::StructuredData::ObjectSP image_details,
196 ImageInfo::collection &image_infos);
197
198 // If image_infos contains / may contain dyld or executable image, call this
199 // method
200 // to keep our internal record keeping of the special binaries up-to-date.
201 void
202 UpdateSpecialBinariesFromNewImageInfos(ImageInfo::collection &image_infos);
203
204 // if image_info is a dyld binary, call this method
205 void UpdateDYLDImageInfoFromNewImageInfo(ImageInfo &image_info);
206
207 // If image_infos contains / may contain executable image, call this method
208 // to keep our internal record keeping of the special dyld binary up-to-date.
209 void AddExecutableModuleIfInImageInfos(ImageInfo::collection &image_infos);
210
211 bool AddModulesUsingImageInfos(ImageInfo::collection &image_infos);
212
213 // Whether we should use the new dyld SPI to get shared library information,
214 // or read
215 // it directly out of the dyld_all_image_infos. Whether we use the (newer)
216 // DynamicLoaderMacOS
217 // plugin or the (older) DynamicLoaderMacOSX plugin.
218 static bool UseDYLDSPI(lldb_private::Process *process);
219
220 lldb::ModuleWP m_dyld_module_wp; // the dyld whose file type (mac, ios, etc)
221 // matches the process
222 lldb::ModuleWP m_libpthread_module_wp;
223 lldb_private::Address m_pthread_getspecific_addr;
224 ThreadIDToTLSMap m_tid_to_tls_map;
225 ImageInfo::collection
226 m_dyld_image_infos; // Current shared libraries information
227 uint32_t m_dyld_image_infos_stop_id; // The process stop ID that
228 // "m_dyld_image_infos" is valid for
229 ImageInfo m_dyld;
230 mutable std::recursive_mutex m_mutex;
Jason Molenda5fe4d142016-07-17 21:27:32 +0000231
232private:
Kate Stoneb9c1b512016-09-06 20:57:50 +0000233 DISALLOW_COPY_AND_ASSIGN(DynamicLoaderDarwin);
Jason Molenda5fe4d142016-07-17 21:27:32 +0000234};
235
236} // namespace lldb_private
237
238#endif // liblldb_DynamicLoaderDarwin_h_