Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 1 | //===-- DynamicLoaderDarwin.cpp -----------------------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // 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 Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Pavel Labath | 1408bf7 | 2016-11-01 16:11:14 +0000 | [diff] [blame] | 9 | #include "DynamicLoaderDarwin.h" |
| 10 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 11 | #include "lldb/Breakpoint/StoppointCallbackContext.h" |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 12 | #include "lldb/Core/Debugger.h" |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 13 | #include "lldb/Core/Module.h" |
| 14 | #include "lldb/Core/ModuleSpec.h" |
| 15 | #include "lldb/Core/PluginManager.h" |
| 16 | #include "lldb/Core/Section.h" |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 17 | #include "lldb/Expression/DiagnosticManager.h" |
Pavel Labath | 1408bf7 | 2016-11-01 16:11:14 +0000 | [diff] [blame] | 18 | #include "lldb/Host/FileSystem.h" |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 19 | #include "lldb/Symbol/ClangASTContext.h" |
| 20 | #include "lldb/Symbol/Function.h" |
| 21 | #include "lldb/Symbol/ObjectFile.h" |
| 22 | #include "lldb/Target/ABI.h" |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 23 | #include "lldb/Target/RegisterContext.h" |
| 24 | #include "lldb/Target/StackFrame.h" |
| 25 | #include "lldb/Target/Target.h" |
| 26 | #include "lldb/Target/Thread.h" |
| 27 | #include "lldb/Target/ThreadPlanCallFunction.h" |
| 28 | #include "lldb/Target/ThreadPlanRunToAddress.h" |
Zachary Turner | 666cc0b | 2017-03-04 01:30:05 +0000 | [diff] [blame] | 29 | #include "lldb/Utility/DataBuffer.h" |
| 30 | #include "lldb/Utility/DataBufferHeap.h" |
Zachary Turner | 6f9e690 | 2017-03-03 20:56:28 +0000 | [diff] [blame] | 31 | #include "lldb/Utility/Log.h" |
Pavel Labath | d821c99 | 2018-08-07 11:07:21 +0000 | [diff] [blame] | 32 | #include "lldb/Utility/State.h" |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 33 | |
Alex Langford | b5701710 | 2019-07-15 22:56:12 +0000 | [diff] [blame] | 34 | #include "Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h" |
| 35 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 36 | //#define ENABLE_DEBUG_PRINTF // COMMENT THIS LINE OUT PRIOR TO CHECKIN |
| 37 | #ifdef ENABLE_DEBUG_PRINTF |
| 38 | #include <stdio.h> |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 39 | #define DEBUG_PRINTF(fmt, ...) printf(fmt, ##__VA_ARGS__) |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 40 | #else |
| 41 | #define DEBUG_PRINTF(fmt, ...) |
| 42 | #endif |
| 43 | |
| 44 | #ifndef __APPLE__ |
| 45 | #include "Utility/UuidCompatibility.h" |
| 46 | #else |
| 47 | #include <uuid/uuid.h> |
| 48 | #endif |
| 49 | |
Jonas Devlieghere | 796ac80 | 2019-02-11 23:13:08 +0000 | [diff] [blame] | 50 | #include <memory> |
| 51 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 52 | using namespace lldb; |
| 53 | using namespace lldb_private; |
| 54 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 55 | // Constructor |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 56 | DynamicLoaderDarwin::DynamicLoaderDarwin(Process *process) |
| 57 | : DynamicLoader(process), m_dyld_module_wp(), m_libpthread_module_wp(), |
| 58 | m_pthread_getspecific_addr(), m_tid_to_tls_map(), m_dyld_image_infos(), |
| 59 | m_dyld_image_infos_stop_id(UINT32_MAX), m_dyld(), m_mutex() {} |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 60 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 61 | // Destructor |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 62 | DynamicLoaderDarwin::~DynamicLoaderDarwin() {} |
| 63 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 64 | /// Called after attaching a process. |
| 65 | /// |
| 66 | /// Allow DynamicLoader plug-ins to execute some code after |
| 67 | /// attaching to a process. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 68 | void DynamicLoaderDarwin::DidAttach() { |
| 69 | PrivateInitialize(m_process); |
| 70 | DoInitialImageFetch(); |
| 71 | SetNotificationBreakpoint(); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 74 | /// Called after attaching a process. |
| 75 | /// |
| 76 | /// Allow DynamicLoader plug-ins to execute some code after |
| 77 | /// attaching to a process. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 78 | void DynamicLoaderDarwin::DidLaunch() { |
| 79 | PrivateInitialize(m_process); |
| 80 | DoInitialImageFetch(); |
| 81 | SetNotificationBreakpoint(); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 84 | // Clear out the state of this class. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 85 | void DynamicLoaderDarwin::Clear(bool clear_process) { |
| 86 | std::lock_guard<std::recursive_mutex> guard(m_mutex); |
| 87 | if (clear_process) |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 88 | m_process = nullptr; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 89 | m_dyld_image_infos.clear(); |
| 90 | m_dyld_image_infos_stop_id = UINT32_MAX; |
| 91 | m_dyld.Clear(false); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 94 | ModuleSP DynamicLoaderDarwin::FindTargetModuleForImageInfo( |
| 95 | ImageInfo &image_info, bool can_create, bool *did_create_ptr) { |
| 96 | if (did_create_ptr) |
| 97 | *did_create_ptr = false; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 98 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 99 | Target &target = m_process->GetTarget(); |
| 100 | const ModuleList &target_images = target.GetImages(); |
| 101 | ModuleSpec module_spec(image_info.file_spec); |
| 102 | module_spec.GetUUID() = image_info.uuid; |
Adrian Prantl | 2461061 | 2019-09-04 17:23:15 +0000 | [diff] [blame] | 103 | |
| 104 | // macCatalyst support: Request matching os/environment. |
| 105 | { |
| 106 | auto &target_triple = target.GetArchitecture().GetTriple(); |
| 107 | if (target_triple.getOS() == llvm::Triple::IOS && |
| 108 | target_triple.getEnvironment() == llvm::Triple::MacABI) { |
| 109 | // Request the macCatalyst variant of frameworks that have both |
| 110 | // a PLATFORM_MACOS and a PLATFORM_MACCATALYST load command. |
| 111 | module_spec.GetArchitecture() = ArchSpec(target_triple); |
| 112 | } |
| 113 | } |
| 114 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 115 | ModuleSP module_sp(target_images.FindFirstModule(module_spec)); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 116 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 117 | if (module_sp && !module_spec.GetUUID().IsValid() && |
| 118 | !module_sp->GetUUID().IsValid()) { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 119 | // No UUID, we must rely upon the cached module modification time and the |
| 120 | // modification time of the file on disk |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 121 | if (module_sp->GetModificationTime() != |
Jonas Devlieghere | 4637696 | 2018-10-31 21:49:27 +0000 | [diff] [blame] | 122 | FileSystem::Instance().GetModificationTime(module_sp->GetFileSpec())) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 123 | module_sp.reset(); |
| 124 | } |
| 125 | |
| 126 | if (!module_sp) { |
| 127 | if (can_create) { |
Jason Molenda | 1724a17 | 2019-04-08 23:03:02 +0000 | [diff] [blame] | 128 | // We'll call Target::ModulesDidLoad after all the modules have been |
| 129 | // added to the target, don't let it be called for every one. |
| 130 | module_sp = target.GetOrCreateModule(module_spec, false /* notify */); |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 131 | if (!module_sp || module_sp->GetObjectFile() == nullptr) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 132 | module_sp = m_process->ReadModuleFromMemory(image_info.file_spec, |
| 133 | image_info.address); |
| 134 | |
| 135 | if (did_create_ptr) |
| 136 | *did_create_ptr = (bool)module_sp; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 137 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 138 | } |
| 139 | return module_sp; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 140 | } |
| 141 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 142 | void DynamicLoaderDarwin::UnloadImages( |
| 143 | const std::vector<lldb::addr_t> &solib_addresses) { |
| 144 | std::lock_guard<std::recursive_mutex> guard(m_mutex); |
| 145 | if (m_process->GetStopID() == m_dyld_image_infos_stop_id) |
| 146 | return; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 147 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 148 | Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); |
| 149 | Target &target = m_process->GetTarget(); |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 150 | LLDB_LOGF(log, "Removing %" PRId64 " modules.", |
| 151 | (uint64_t)solib_addresses.size()); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 152 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 153 | ModuleList unloaded_module_list; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 154 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 155 | for (addr_t solib_addr : solib_addresses) { |
| 156 | Address header; |
| 157 | if (header.SetLoadAddress(solib_addr, &target)) { |
| 158 | if (header.GetOffset() == 0) { |
| 159 | ModuleSP module_to_remove(header.GetModule()); |
| 160 | if (module_to_remove.get()) { |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 161 | LLDB_LOGF(log, "Removing module at address 0x%" PRIx64, solib_addr); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 162 | // remove the sections from the Target |
| 163 | UnloadSections(module_to_remove); |
| 164 | // add this to the list of modules to remove |
| 165 | unloaded_module_list.AppendIfNeeded(module_to_remove); |
| 166 | // remove the entry from the m_dyld_image_infos |
| 167 | ImageInfo::collection::iterator pos, end = m_dyld_image_infos.end(); |
| 168 | for (pos = m_dyld_image_infos.begin(); pos != end; pos++) { |
| 169 | if (solib_addr == (*pos).address) { |
| 170 | m_dyld_image_infos.erase(pos); |
| 171 | break; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 172 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 173 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 174 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 175 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 176 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 177 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 178 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 179 | if (unloaded_module_list.GetSize() > 0) { |
| 180 | if (log) { |
| 181 | log->PutCString("Unloaded:"); |
| 182 | unloaded_module_list.LogUUIDAndPaths( |
| 183 | log, "DynamicLoaderDarwin::UnloadModules"); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 184 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 185 | m_process->GetTarget().GetImages().Remove(unloaded_module_list); |
| 186 | m_dyld_image_infos_stop_id = m_process->GetStopID(); |
| 187 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 188 | } |
| 189 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 190 | void DynamicLoaderDarwin::UnloadAllImages() { |
| 191 | Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); |
| 192 | ModuleList unloaded_modules_list; |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 193 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 194 | Target &target = m_process->GetTarget(); |
| 195 | const ModuleList &target_modules = target.GetImages(); |
| 196 | std::lock_guard<std::recursive_mutex> guard(target_modules.GetMutex()); |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 197 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 198 | size_t num_modules = target_modules.GetSize(); |
| 199 | ModuleSP dyld_sp(GetDYLDModule()); |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 200 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 201 | for (size_t i = 0; i < num_modules; i++) { |
| 202 | ModuleSP module_sp = target_modules.GetModuleAtIndexUnlocked(i); |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 203 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 204 | // Don't remove dyld - else we'll lose our breakpoint notifying us about |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 205 | // libraries being re-loaded... |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 206 | if (module_sp.get() != nullptr && module_sp.get() != dyld_sp.get()) { |
| 207 | UnloadSections(module_sp); |
| 208 | unloaded_modules_list.Append(module_sp); |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 209 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 210 | } |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 211 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 212 | if (unloaded_modules_list.GetSize() != 0) { |
| 213 | if (log) { |
| 214 | log->PutCString("Unloaded:"); |
| 215 | unloaded_modules_list.LogUUIDAndPaths( |
| 216 | log, "DynamicLoaderDarwin::UnloadAllImages"); |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 217 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 218 | target.GetImages().Remove(unloaded_modules_list); |
| 219 | m_dyld_image_infos.clear(); |
| 220 | m_dyld_image_infos_stop_id = m_process->GetStopID(); |
| 221 | } |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 224 | // Update the load addresses for all segments in MODULE using the updated INFO |
| 225 | // that is passed in. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 226 | bool DynamicLoaderDarwin::UpdateImageLoadAddress(Module *module, |
| 227 | ImageInfo &info) { |
| 228 | bool changed = false; |
| 229 | if (module) { |
| 230 | ObjectFile *image_object_file = module->GetObjectFile(); |
| 231 | if (image_object_file) { |
| 232 | SectionList *section_list = image_object_file->GetSectionList(); |
| 233 | if (section_list) { |
| 234 | std::vector<uint32_t> inaccessible_segment_indexes; |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 235 | // We now know the slide amount, so go through all sections and update |
| 236 | // the load addresses with the correct values. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 237 | const size_t num_segments = info.segments.size(); |
| 238 | for (size_t i = 0; i < num_segments; ++i) { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 239 | // Only load a segment if it has protections. Things like __PAGEZERO |
| 240 | // don't have any protections, and they shouldn't be slid |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 241 | SectionSP section_sp( |
| 242 | section_list->FindSectionByName(info.segments[i].name)); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 243 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 244 | if (info.segments[i].maxprot == 0) { |
| 245 | inaccessible_segment_indexes.push_back(i); |
| 246 | } else { |
| 247 | const addr_t new_section_load_addr = |
| 248 | info.segments[i].vmaddr + info.slide; |
| 249 | static ConstString g_section_name_LINKEDIT("__LINKEDIT"); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 250 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 251 | if (section_sp) { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 252 | // __LINKEDIT sections from files in the shared cache can overlap |
| 253 | // so check to see what the segment name is and pass "false" so |
| 254 | // we don't warn of overlapping "Section" objects, and "true" for |
| 255 | // all other sections. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 256 | const bool warn_multiple = |
| 257 | section_sp->GetName() != g_section_name_LINKEDIT; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 258 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 259 | changed = m_process->GetTarget().SetSectionLoadAddress( |
| 260 | section_sp, new_section_load_addr, warn_multiple); |
Jason Molenda | 9073eb4 | 2019-01-25 03:01:48 +0000 | [diff] [blame] | 261 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 262 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 263 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 264 | |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 265 | // If the loaded the file (it changed) and we have segments that are |
| 266 | // not readable or writeable, add them to the invalid memory region |
| 267 | // cache for the process. This will typically only be the __PAGEZERO |
| 268 | // segment in the main executable. We might be able to apply this more |
| 269 | // generally to more sections that have no protections in the future, |
| 270 | // but for now we are going to just do __PAGEZERO. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 271 | if (changed && !inaccessible_segment_indexes.empty()) { |
| 272 | for (uint32_t i = 0; i < inaccessible_segment_indexes.size(); ++i) { |
| 273 | const uint32_t seg_idx = inaccessible_segment_indexes[i]; |
| 274 | SectionSP section_sp( |
| 275 | section_list->FindSectionByName(info.segments[seg_idx].name)); |
| 276 | |
| 277 | if (section_sp) { |
| 278 | static ConstString g_pagezero_section_name("__PAGEZERO"); |
| 279 | if (g_pagezero_section_name == section_sp->GetName()) { |
| 280 | // __PAGEZERO never slides... |
| 281 | const lldb::addr_t vmaddr = info.segments[seg_idx].vmaddr; |
| 282 | const lldb::addr_t vmsize = info.segments[seg_idx].vmsize; |
| 283 | Process::LoadRange pagezero_range(vmaddr, vmsize); |
| 284 | m_process->AddInvalidMemoryRegion(pagezero_range); |
| 285 | } |
| 286 | } |
| 287 | } |
| 288 | } |
| 289 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 290 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 291 | } |
| 292 | // We might have an in memory image that was loaded as soon as it was created |
| 293 | if (info.load_stop_id == m_process->GetStopID()) |
| 294 | changed = true; |
| 295 | else if (changed) { |
| 296 | // Update the stop ID when this library was updated |
| 297 | info.load_stop_id = m_process->GetStopID(); |
| 298 | } |
| 299 | return changed; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 300 | } |
| 301 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 302 | // Unload the segments in MODULE using the INFO that is passed in. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 303 | bool DynamicLoaderDarwin::UnloadModuleSections(Module *module, |
| 304 | ImageInfo &info) { |
| 305 | bool changed = false; |
| 306 | if (module) { |
| 307 | ObjectFile *image_object_file = module->GetObjectFile(); |
| 308 | if (image_object_file) { |
| 309 | SectionList *section_list = image_object_file->GetSectionList(); |
| 310 | if (section_list) { |
| 311 | const size_t num_segments = info.segments.size(); |
| 312 | for (size_t i = 0; i < num_segments; ++i) { |
| 313 | SectionSP section_sp( |
| 314 | section_list->FindSectionByName(info.segments[i].name)); |
| 315 | if (section_sp) { |
| 316 | const addr_t old_section_load_addr = |
| 317 | info.segments[i].vmaddr + info.slide; |
| 318 | if (m_process->GetTarget().SetSectionUnloaded( |
| 319 | section_sp, old_section_load_addr)) |
| 320 | changed = true; |
| 321 | } else { |
| 322 | Host::SystemLog(Host::eSystemLogWarning, |
| 323 | "warning: unable to find and unload segment named " |
| 324 | "'%s' in '%s' in macosx dynamic loader plug-in.\n", |
| 325 | info.segments[i].name.AsCString("<invalid>"), |
| 326 | image_object_file->GetFileSpec().GetPath().c_str()); |
| 327 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 328 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 329 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 330 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 331 | } |
| 332 | return changed; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 335 | // Given a JSON dictionary (from debugserver, most likely) of binary images |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 336 | // loaded in the inferior process, add the images to the ImageInfo collection. |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 337 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 338 | bool DynamicLoaderDarwin::JSONImageInformationIntoImageInfo( |
| 339 | StructuredData::ObjectSP image_details, |
| 340 | ImageInfo::collection &image_infos) { |
| 341 | StructuredData::ObjectSP images_sp = |
| 342 | image_details->GetAsDictionary()->GetValueForKey("images"); |
| 343 | if (images_sp.get() == nullptr) |
| 344 | return false; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 345 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 346 | image_infos.resize(images_sp->GetAsArray()->GetSize()); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 347 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 348 | for (size_t i = 0; i < image_infos.size(); i++) { |
| 349 | StructuredData::ObjectSP image_sp = |
| 350 | images_sp->GetAsArray()->GetItemAtIndex(i); |
| 351 | if (image_sp.get() == nullptr || image_sp->GetAsDictionary() == nullptr) |
| 352 | return false; |
| 353 | StructuredData::Dictionary *image = image_sp->GetAsDictionary(); |
Jonas Devlieghere | a6682a4 | 2018-12-15 00:15:33 +0000 | [diff] [blame] | 354 | // clang-format off |
| 355 | if (!image->HasKey("load_address") || |
| 356 | !image->HasKey("pathname") || |
| 357 | !image->HasKey("mod_date") || |
| 358 | !image->HasKey("mach_header") || |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 359 | image->GetValueForKey("mach_header")->GetAsDictionary() == nullptr || |
Jonas Devlieghere | a6682a4 | 2018-12-15 00:15:33 +0000 | [diff] [blame] | 360 | !image->HasKey("segments") || |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 361 | image->GetValueForKey("segments")->GetAsArray() == nullptr || |
Jonas Devlieghere | a6682a4 | 2018-12-15 00:15:33 +0000 | [diff] [blame] | 362 | !image->HasKey("uuid")) { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 363 | return false; |
| 364 | } |
Jonas Devlieghere | a6682a4 | 2018-12-15 00:15:33 +0000 | [diff] [blame] | 365 | // clang-format on |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 366 | image_infos[i].address = |
| 367 | image->GetValueForKey("load_address")->GetAsInteger()->GetValue(); |
| 368 | image_infos[i].mod_date = |
| 369 | image->GetValueForKey("mod_date")->GetAsInteger()->GetValue(); |
| 370 | image_infos[i].file_spec.SetFile( |
Jonas Devlieghere | 8f3be7a | 2018-11-01 21:05:36 +0000 | [diff] [blame] | 371 | image->GetValueForKey("pathname")->GetAsString()->GetValue(), |
Jonas Devlieghere | 937348c | 2018-06-13 22:08:14 +0000 | [diff] [blame] | 372 | FileSpec::Style::native); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 373 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 374 | StructuredData::Dictionary *mh = |
| 375 | image->GetValueForKey("mach_header")->GetAsDictionary(); |
| 376 | image_infos[i].header.magic = |
| 377 | mh->GetValueForKey("magic")->GetAsInteger()->GetValue(); |
| 378 | image_infos[i].header.cputype = |
| 379 | mh->GetValueForKey("cputype")->GetAsInteger()->GetValue(); |
| 380 | image_infos[i].header.cpusubtype = |
| 381 | mh->GetValueForKey("cpusubtype")->GetAsInteger()->GetValue(); |
| 382 | image_infos[i].header.filetype = |
| 383 | mh->GetValueForKey("filetype")->GetAsInteger()->GetValue(); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 384 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 385 | if (image->HasKey("min_version_os_name")) { |
| 386 | std::string os_name = image->GetValueForKey("min_version_os_name") |
| 387 | ->GetAsString() |
| 388 | ->GetValue(); |
| 389 | if (os_name == "macosx") |
| 390 | image_infos[i].os_type = llvm::Triple::MacOSX; |
| 391 | else if (os_name == "ios" || os_name == "iphoneos") |
| 392 | image_infos[i].os_type = llvm::Triple::IOS; |
| 393 | else if (os_name == "tvos") |
| 394 | image_infos[i].os_type = llvm::Triple::TvOS; |
| 395 | else if (os_name == "watchos") |
| 396 | image_infos[i].os_type = llvm::Triple::WatchOS; |
Jason Molenda | 32762fd | 2018-10-11 00:28:35 +0000 | [diff] [blame] | 397 | // NEED_BRIDGEOS_TRIPLE else if (os_name == "bridgeos") |
| 398 | // NEED_BRIDGEOS_TRIPLE image_infos[i].os_type = llvm::Triple::BridgeOS; |
Adrian Prantl | 2461061 | 2019-09-04 17:23:15 +0000 | [diff] [blame] | 399 | else if (os_name == "maccatalyst") { |
| 400 | image_infos[i].os_type = llvm::Triple::IOS; |
| 401 | image_infos[i].os_env = llvm::Triple::MacABI; |
| 402 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 403 | } |
| 404 | if (image->HasKey("min_version_os_sdk")) { |
| 405 | image_infos[i].min_version_os_sdk = |
| 406 | image->GetValueForKey("min_version_os_sdk") |
| 407 | ->GetAsString() |
| 408 | ->GetValue(); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 411 | // Fields that aren't used by DynamicLoaderDarwin so debugserver doesn't |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 412 | // currently send them in the reply. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 413 | |
| 414 | if (mh->HasKey("flags")) |
| 415 | image_infos[i].header.flags = |
| 416 | mh->GetValueForKey("flags")->GetAsInteger()->GetValue(); |
| 417 | else |
| 418 | image_infos[i].header.flags = 0; |
| 419 | |
| 420 | if (mh->HasKey("ncmds")) |
| 421 | image_infos[i].header.ncmds = |
| 422 | mh->GetValueForKey("ncmds")->GetAsInteger()->GetValue(); |
| 423 | else |
| 424 | image_infos[i].header.ncmds = 0; |
| 425 | |
| 426 | if (mh->HasKey("sizeofcmds")) |
| 427 | image_infos[i].header.sizeofcmds = |
| 428 | mh->GetValueForKey("sizeofcmds")->GetAsInteger()->GetValue(); |
| 429 | else |
| 430 | image_infos[i].header.sizeofcmds = 0; |
| 431 | |
| 432 | StructuredData::Array *segments = |
| 433 | image->GetValueForKey("segments")->GetAsArray(); |
| 434 | uint32_t segcount = segments->GetSize(); |
| 435 | for (size_t j = 0; j < segcount; j++) { |
| 436 | Segment segment; |
| 437 | StructuredData::Dictionary *seg = |
| 438 | segments->GetItemAtIndex(j)->GetAsDictionary(); |
Zachary Turner | 2833321 | 2017-05-12 05:49:54 +0000 | [diff] [blame] | 439 | segment.name = |
| 440 | ConstString(seg->GetValueForKey("name")->GetAsString()->GetValue()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 441 | segment.vmaddr = |
| 442 | seg->GetValueForKey("vmaddr")->GetAsInteger()->GetValue(); |
| 443 | segment.vmsize = |
| 444 | seg->GetValueForKey("vmsize")->GetAsInteger()->GetValue(); |
| 445 | segment.fileoff = |
| 446 | seg->GetValueForKey("fileoff")->GetAsInteger()->GetValue(); |
| 447 | segment.filesize = |
| 448 | seg->GetValueForKey("filesize")->GetAsInteger()->GetValue(); |
| 449 | segment.maxprot = |
| 450 | seg->GetValueForKey("maxprot")->GetAsInteger()->GetValue(); |
| 451 | |
| 452 | // Fields that aren't used by DynamicLoaderDarwin so debugserver doesn't |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 453 | // currently send them in the reply. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 454 | |
| 455 | if (seg->HasKey("initprot")) |
| 456 | segment.initprot = |
| 457 | seg->GetValueForKey("initprot")->GetAsInteger()->GetValue(); |
| 458 | else |
| 459 | segment.initprot = 0; |
| 460 | |
| 461 | if (seg->HasKey("flags")) |
| 462 | segment.flags = |
| 463 | seg->GetValueForKey("flags")->GetAsInteger()->GetValue(); |
| 464 | else |
| 465 | segment.flags = 0; |
| 466 | |
| 467 | if (seg->HasKey("nsects")) |
| 468 | segment.nsects = |
| 469 | seg->GetValueForKey("nsects")->GetAsInteger()->GetValue(); |
| 470 | else |
| 471 | segment.nsects = 0; |
| 472 | |
| 473 | image_infos[i].segments.push_back(segment); |
| 474 | } |
| 475 | |
Jim Ingham | f3ecbfc | 2019-01-24 22:43:44 +0000 | [diff] [blame] | 476 | image_infos[i].uuid.SetFromOptionalStringRef( |
Zachary Turner | 2833321 | 2017-05-12 05:49:54 +0000 | [diff] [blame] | 477 | image->GetValueForKey("uuid")->GetAsString()->GetValue()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 478 | |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 479 | // All sections listed in the dyld image info structure will all either be |
| 480 | // fixed up already, or they will all be off by a single slide amount that |
| 481 | // is determined by finding the first segment that is at file offset zero |
| 482 | // which also has bytes (a file size that is greater than zero) in the |
| 483 | // object file. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 484 | |
| 485 | // Determine the slide amount (if any) |
| 486 | const size_t num_sections = image_infos[i].segments.size(); |
| 487 | for (size_t k = 0; k < num_sections; ++k) { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 488 | // Iterate through the object file sections to find the first section |
| 489 | // that starts of file offset zero and that has bytes in the file... |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 490 | if ((image_infos[i].segments[k].fileoff == 0 && |
| 491 | image_infos[i].segments[k].filesize > 0) || |
Raphael Isemann | 05cfdb0 | 2019-04-26 07:21:36 +0000 | [diff] [blame] | 492 | (image_infos[i].segments[k].name == "__TEXT")) { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 493 | image_infos[i].slide = |
| 494 | image_infos[i].address - image_infos[i].segments[k].vmaddr; |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 495 | // We have found the slide amount, so we can exit this for loop. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 496 | break; |
| 497 | } |
| 498 | } |
| 499 | } |
| 500 | |
| 501 | return true; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 502 | } |
| 503 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 504 | void DynamicLoaderDarwin::UpdateSpecialBinariesFromNewImageInfos( |
| 505 | ImageInfo::collection &image_infos) { |
| 506 | uint32_t exe_idx = UINT32_MAX; |
| 507 | uint32_t dyld_idx = UINT32_MAX; |
| 508 | Target &target = m_process->GetTarget(); |
| 509 | Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); |
| 510 | ConstString g_dyld_sim_filename("dyld_sim"); |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 511 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 512 | ArchSpec target_arch = target.GetArchitecture(); |
| 513 | const size_t image_infos_size = image_infos.size(); |
| 514 | for (size_t i = 0; i < image_infos_size; i++) { |
| 515 | if (image_infos[i].header.filetype == llvm::MachO::MH_DYLINKER) { |
Jason Molenda | 32762fd | 2018-10-11 00:28:35 +0000 | [diff] [blame] | 516 | // In a "simulator" process (an x86 process that is |
| 517 | // ios/tvos/watchos/bridgeos) we will have two dyld modules -- |
| 518 | // a "dyld" that we want to keep track of, and a "dyld_sim" which |
| 519 | // we don't need to keep track of here. If the target is an x86 |
| 520 | // system and the OS of the dyld binary is ios/tvos/watchos/bridgeos, |
| 521 | // then we are looking at dyld_sym. |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 522 | |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 523 | // debugserver has only recently (late 2016) started sending up the os |
| 524 | // type for each binary it sees -- so if we don't have an os type, use a |
| 525 | // filename check as our next best guess. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 526 | if (image_infos[i].os_type == llvm::Triple::OSType::UnknownOS) { |
| 527 | if (image_infos[i].file_spec.GetFilename() != g_dyld_sim_filename) { |
| 528 | dyld_idx = i; |
| 529 | } |
| 530 | } else if (target_arch.GetTriple().getArch() == llvm::Triple::x86 || |
| 531 | target_arch.GetTriple().getArch() == llvm::Triple::x86_64) { |
| 532 | if (image_infos[i].os_type != llvm::Triple::OSType::IOS && |
| 533 | image_infos[i].os_type != llvm::Triple::TvOS && |
| 534 | image_infos[i].os_type != llvm::Triple::WatchOS) { |
Jason Molenda | 32762fd | 2018-10-11 00:28:35 +0000 | [diff] [blame] | 535 | // NEED_BRIDGEOS_TRIPLE image_infos[i].os_type != llvm::Triple::BridgeOS) { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 536 | dyld_idx = i; |
| 537 | } |
| 538 | } |
Jason Molenda | 777fcec | 2017-01-21 01:17:36 +0000 | [diff] [blame] | 539 | else { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 540 | // catch-all for any other environment -- trust that dyld is actually |
| 541 | // dyld |
Jason Molenda | 777fcec | 2017-01-21 01:17:36 +0000 | [diff] [blame] | 542 | dyld_idx = i; |
| 543 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 544 | } else if (image_infos[i].header.filetype == llvm::MachO::MH_EXECUTE) { |
| 545 | exe_idx = i; |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | if (exe_idx != UINT32_MAX) { |
| 550 | const bool can_create = true; |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 551 | ModuleSP exe_module_sp(FindTargetModuleForImageInfo(image_infos[exe_idx], |
| 552 | can_create, nullptr)); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 553 | if (exe_module_sp) { |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 554 | LLDB_LOGF(log, "Found executable module: %s", |
| 555 | exe_module_sp->GetFileSpec().GetPath().c_str()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 556 | target.GetImages().AppendIfNeeded(exe_module_sp); |
| 557 | UpdateImageLoadAddress(exe_module_sp.get(), image_infos[exe_idx]); |
| 558 | if (exe_module_sp.get() != target.GetExecutableModulePointer()) { |
Jonas Devlieghere | f9a07e9 | 2018-09-20 09:09:05 +0000 | [diff] [blame] | 559 | target.SetExecutableModule(exe_module_sp, eLoadDependentsNo); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 560 | } |
| 561 | } |
| 562 | } |
| 563 | |
| 564 | if (dyld_idx != UINT32_MAX) { |
| 565 | const bool can_create = true; |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 566 | ModuleSP dyld_sp = FindTargetModuleForImageInfo(image_infos[dyld_idx], |
| 567 | can_create, nullptr); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 568 | if (dyld_sp.get()) { |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 569 | LLDB_LOGF(log, "Found dyld module: %s", |
| 570 | dyld_sp->GetFileSpec().GetPath().c_str()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 571 | target.GetImages().AppendIfNeeded(dyld_sp); |
| 572 | UpdateImageLoadAddress(dyld_sp.get(), image_infos[dyld_idx]); |
| 573 | SetDYLDModule(dyld_sp); |
| 574 | } |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | void DynamicLoaderDarwin::UpdateDYLDImageInfoFromNewImageInfo( |
| 579 | ImageInfo &image_info) { |
| 580 | if (image_info.header.filetype == llvm::MachO::MH_DYLINKER) { |
| 581 | const bool can_create = true; |
| 582 | ModuleSP dyld_sp = |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 583 | FindTargetModuleForImageInfo(image_info, can_create, nullptr); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 584 | if (dyld_sp.get()) { |
| 585 | Target &target = m_process->GetTarget(); |
| 586 | target.GetImages().AppendIfNeeded(dyld_sp); |
| 587 | UpdateImageLoadAddress(dyld_sp.get(), image_info); |
| 588 | SetDYLDModule(dyld_sp); |
| 589 | } |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | void DynamicLoaderDarwin::SetDYLDModule(lldb::ModuleSP &dyld_module_sp) { |
| 594 | m_dyld_module_wp = dyld_module_sp; |
| 595 | } |
| 596 | |
| 597 | ModuleSP DynamicLoaderDarwin::GetDYLDModule() { |
| 598 | ModuleSP dyld_sp(m_dyld_module_wp.lock()); |
| 599 | return dyld_sp; |
| 600 | } |
| 601 | |
| 602 | bool DynamicLoaderDarwin::AddModulesUsingImageInfos( |
| 603 | ImageInfo::collection &image_infos) { |
| 604 | std::lock_guard<std::recursive_mutex> guard(m_mutex); |
| 605 | // Now add these images to the main list. |
| 606 | ModuleList loaded_module_list; |
| 607 | Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); |
| 608 | Target &target = m_process->GetTarget(); |
| 609 | ModuleList &target_images = target.GetImages(); |
| 610 | |
| 611 | for (uint32_t idx = 0; idx < image_infos.size(); ++idx) { |
| 612 | if (log) { |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 613 | LLDB_LOGF(log, "Adding new image at address=0x%16.16" PRIx64 ".", |
| 614 | image_infos[idx].address); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 615 | image_infos[idx].PutToLog(log); |
| 616 | } |
| 617 | |
| 618 | m_dyld_image_infos.push_back(image_infos[idx]); |
| 619 | |
| 620 | ModuleSP image_module_sp( |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 621 | FindTargetModuleForImageInfo(image_infos[idx], true, nullptr)); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 622 | |
| 623 | if (image_module_sp) { |
| 624 | ObjectFile *objfile = image_module_sp->GetObjectFile(); |
| 625 | if (objfile) { |
| 626 | SectionList *sections = objfile->GetSectionList(); |
| 627 | if (sections) { |
| 628 | ConstString commpage_dbstr("__commpage"); |
| 629 | Section *commpage_section = |
| 630 | sections->FindSectionByName(commpage_dbstr).get(); |
| 631 | if (commpage_section) { |
| 632 | ModuleSpec module_spec(objfile->GetFileSpec(), |
| 633 | image_infos[idx].GetArchitecture()); |
| 634 | module_spec.GetObjectName() = commpage_dbstr; |
| 635 | ModuleSP commpage_image_module_sp( |
| 636 | target_images.FindFirstModule(module_spec)); |
| 637 | if (!commpage_image_module_sp) { |
| 638 | module_spec.SetObjectOffset(objfile->GetFileOffset() + |
| 639 | commpage_section->GetFileOffset()); |
| 640 | module_spec.SetObjectSize(objfile->GetByteSize()); |
Jason Molenda | 1724a17 | 2019-04-08 23:03:02 +0000 | [diff] [blame] | 641 | commpage_image_module_sp = target.GetOrCreateModule(module_spec, |
| 642 | true /* notify */); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 643 | if (!commpage_image_module_sp || |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 644 | commpage_image_module_sp->GetObjectFile() == nullptr) { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 645 | commpage_image_module_sp = m_process->ReadModuleFromMemory( |
| 646 | image_infos[idx].file_spec, image_infos[idx].address); |
| 647 | // Always load a memory image right away in the target in case |
| 648 | // we end up trying to read the symbol table from memory... The |
| 649 | // __LINKEDIT will need to be mapped so we can figure out where |
| 650 | // the symbol table bits are... |
| 651 | bool changed = false; |
| 652 | UpdateImageLoadAddress(commpage_image_module_sp.get(), |
| 653 | image_infos[idx]); |
| 654 | target.GetImages().Append(commpage_image_module_sp); |
| 655 | if (changed) { |
| 656 | image_infos[idx].load_stop_id = m_process->GetStopID(); |
| 657 | loaded_module_list.AppendIfNeeded(commpage_image_module_sp); |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 658 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 659 | } |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 660 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 661 | } |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 662 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 663 | } |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 664 | |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 665 | // UpdateImageLoadAddress will return true if any segments change load |
| 666 | // address. We need to check this so we don't mention that all loaded |
| 667 | // shared libraries are newly loaded each time we hit out dyld breakpoint |
| 668 | // since dyld will list all shared libraries each time. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 669 | if (UpdateImageLoadAddress(image_module_sp.get(), image_infos[idx])) { |
| 670 | target_images.AppendIfNeeded(image_module_sp); |
| 671 | loaded_module_list.AppendIfNeeded(image_module_sp); |
| 672 | } |
Adrian Prantl | 2461061 | 2019-09-04 17:23:15 +0000 | [diff] [blame] | 673 | |
| 674 | // macCataylst support: |
| 675 | // Update the module's platform with the DYLD info. |
| 676 | ArchSpec dyld_spec = image_infos[idx].GetArchitecture(); |
| 677 | if (dyld_spec.GetTriple().getOS() == llvm::Triple::IOS && |
| 678 | dyld_spec.GetTriple().getEnvironment() == llvm::Triple::MacABI) { |
| 679 | image_module_sp->MergeArchitecture(dyld_spec); |
| 680 | const auto &target_triple = target.GetArchitecture().GetTriple(); |
| 681 | // If dyld reports the process as being loaded as MACCATALYST, |
| 682 | // force-update the target's architecture to MACCATALYST. |
| 683 | if (!(target_triple.getOS() == llvm::Triple::IOS && |
| 684 | target_triple.getEnvironment() == llvm::Triple::MacABI)) |
| 685 | target.SetArchitecture(dyld_spec); |
| 686 | } |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 687 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 688 | } |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 689 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 690 | if (loaded_module_list.GetSize() > 0) { |
| 691 | if (log) |
| 692 | loaded_module_list.LogUUIDAndPaths(log, |
| 693 | "DynamicLoaderDarwin::ModulesDidLoad"); |
| 694 | m_process->GetTarget().ModulesDidLoad(loaded_module_list); |
| 695 | } |
| 696 | return true; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 699 | // On Mac OS X libobjc (the Objective-C runtime) has several critical dispatch |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 700 | // functions written in hand-written assembly, and also have hand-written |
| 701 | // unwind information in the eh_frame section. Normally we prefer analyzing |
| 702 | // the assembly instructions of a currently executing frame to unwind from that |
| 703 | // frame -- but on hand-written functions this profiling can fail. We should |
| 704 | // use the eh_frame instructions for these functions all the time. |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 705 | // |
| 706 | // As an aside, it would be better if the eh_frame entries had a flag (or were |
| 707 | // extensible so they could have an Apple-specific flag) which indicates that |
| 708 | // the instructions are asynchronous -- accurate at every instruction, instead |
| 709 | // of our normal default assumption that they are not. |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 710 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 711 | bool DynamicLoaderDarwin::AlwaysRelyOnEHUnwindInfo(SymbolContext &sym_ctx) { |
| 712 | ModuleSP module_sp; |
| 713 | if (sym_ctx.symbol) { |
| 714 | module_sp = sym_ctx.symbol->GetAddressRef().GetModule(); |
| 715 | } |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 716 | if (module_sp.get() == nullptr && sym_ctx.function) { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 717 | module_sp = |
| 718 | sym_ctx.function->GetAddressRange().GetBaseAddress().GetModule(); |
| 719 | } |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 720 | if (module_sp.get() == nullptr) |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 721 | return false; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 722 | |
Alex Langford | e823bbe | 2019-06-10 20:53:23 +0000 | [diff] [blame] | 723 | ObjCLanguageRuntime *objc_runtime = ObjCLanguageRuntime::Get(*m_process); |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 724 | return objc_runtime != nullptr && |
| 725 | objc_runtime->IsModuleObjCLibrary(module_sp); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 726 | } |
| 727 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 728 | // Dump a Segment to the file handle provided. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 729 | void DynamicLoaderDarwin::Segment::PutToLog(Log *log, |
| 730 | lldb::addr_t slide) const { |
| 731 | if (log) { |
| 732 | if (slide == 0) |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 733 | LLDB_LOGF(log, "\t\t%16s [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 ")", |
| 734 | name.AsCString(""), vmaddr + slide, vmaddr + slide + vmsize); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 735 | else |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 736 | LLDB_LOGF(log, |
| 737 | "\t\t%16s [0x%16.16" PRIx64 " - 0x%16.16" PRIx64 |
| 738 | ") slide = 0x%" PRIx64, |
| 739 | name.AsCString(""), vmaddr + slide, vmaddr + slide + vmsize, |
| 740 | slide); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 741 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Adrian Prantl | 2461061 | 2019-09-04 17:23:15 +0000 | [diff] [blame] | 744 | lldb_private::ArchSpec DynamicLoaderDarwin::ImageInfo::GetArchitecture() const { |
| 745 | // Update the module's platform with the DYLD info. |
| 746 | lldb_private::ArchSpec arch_spec(lldb_private::eArchTypeMachO, header.cputype, |
| 747 | header.cpusubtype); |
| 748 | if (os_type == llvm::Triple::IOS && os_env == llvm::Triple::MacABI) { |
| 749 | llvm::Triple triple(llvm::Twine("x86_64-apple-ios") + min_version_os_sdk + |
| 750 | "-macabi"); |
| 751 | ArchSpec maccatalyst_spec(triple); |
| 752 | if (arch_spec.IsCompatibleMatch(maccatalyst_spec)) |
| 753 | arch_spec.MergeFrom(maccatalyst_spec); |
| 754 | } |
| 755 | return arch_spec; |
| 756 | } |
| 757 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 758 | const DynamicLoaderDarwin::Segment * |
Adrian Prantl | 0e4c482 | 2019-03-06 21:22:25 +0000 | [diff] [blame] | 759 | DynamicLoaderDarwin::ImageInfo::FindSegment(ConstString name) const { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 760 | const size_t num_segments = segments.size(); |
| 761 | for (size_t i = 0; i < num_segments; ++i) { |
| 762 | if (segments[i].name == name) |
| 763 | return &segments[i]; |
| 764 | } |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 765 | return nullptr; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 766 | } |
| 767 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 768 | // Dump an image info structure to the file handle provided. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 769 | void DynamicLoaderDarwin::ImageInfo::PutToLog(Log *log) const { |
Pavel Labath | fbb1428 | 2018-06-20 20:13:04 +0000 | [diff] [blame] | 770 | if (!log) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 771 | return; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 772 | if (address == LLDB_INVALID_ADDRESS) { |
Pavel Labath | fbb1428 | 2018-06-20 20:13:04 +0000 | [diff] [blame] | 773 | LLDB_LOG(log, "modtime={0:x+8} uuid={1} path='{2}' (UNLOADED)", mod_date, |
| 774 | uuid.GetAsString(), file_spec.GetPath()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 775 | } else { |
Pavel Labath | fbb1428 | 2018-06-20 20:13:04 +0000 | [diff] [blame] | 776 | LLDB_LOG(log, "address={0:x+16} modtime={1:x+8} uuid={2} path='{3}'", |
| 777 | address, mod_date, uuid.GetAsString(), file_spec.GetPath()); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 778 | for (uint32_t i = 0; i < segments.size(); ++i) |
| 779 | segments[i].PutToLog(log, slide); |
| 780 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 781 | } |
| 782 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 783 | void DynamicLoaderDarwin::PrivateInitialize(Process *process) { |
| 784 | DEBUG_PRINTF("DynamicLoaderDarwin::%s() process state = %s\n", __FUNCTION__, |
| 785 | StateAsCString(m_process->GetState())); |
| 786 | Clear(true); |
| 787 | m_process = process; |
| 788 | m_process->GetTarget().ClearAllLoadedSections(); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 789 | } |
| 790 | |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 791 | // Member function that gets called when the process state changes. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 792 | void DynamicLoaderDarwin::PrivateProcessStateChanged(Process *process, |
| 793 | StateType state) { |
| 794 | DEBUG_PRINTF("DynamicLoaderDarwin::%s(%s)\n", __FUNCTION__, |
| 795 | StateAsCString(state)); |
| 796 | switch (state) { |
| 797 | case eStateConnected: |
| 798 | case eStateAttaching: |
| 799 | case eStateLaunching: |
| 800 | case eStateInvalid: |
| 801 | case eStateUnloaded: |
| 802 | case eStateExited: |
| 803 | case eStateDetached: |
| 804 | Clear(false); |
| 805 | break; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 806 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 807 | case eStateStopped: |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 808 | // Keep trying find dyld and set our notification breakpoint each time we |
| 809 | // stop until we succeed |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 810 | if (!DidSetNotificationBreakpoint() && m_process->IsAlive()) { |
| 811 | if (NeedToDoInitialImageFetch()) |
| 812 | DoInitialImageFetch(); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 813 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 814 | SetNotificationBreakpoint(); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 815 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 816 | break; |
| 817 | |
| 818 | case eStateRunning: |
| 819 | case eStateStepping: |
| 820 | case eStateCrashed: |
| 821 | case eStateSuspended: |
| 822 | break; |
| 823 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 824 | } |
| 825 | |
| 826 | ThreadPlanSP |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 827 | DynamicLoaderDarwin::GetStepThroughTrampolinePlan(Thread &thread, |
| 828 | bool stop_others) { |
| 829 | ThreadPlanSP thread_plan_sp; |
| 830 | StackFrame *current_frame = thread.GetStackFrameAtIndex(0).get(); |
| 831 | const SymbolContext ¤t_context = |
| 832 | current_frame->GetSymbolContext(eSymbolContextSymbol); |
| 833 | Symbol *current_symbol = current_context.symbol; |
| 834 | Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP)); |
| 835 | TargetSP target_sp(thread.CalculateTarget()); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 836 | |
Konrad Kleine | 248a130 | 2019-05-23 11:14:47 +0000 | [diff] [blame] | 837 | if (current_symbol != nullptr) { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 838 | std::vector<Address> addresses; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 839 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 840 | if (current_symbol->IsTrampoline()) { |
Adrian Prantl | 0e4c482 | 2019-03-06 21:22:25 +0000 | [diff] [blame] | 841 | ConstString trampoline_name = current_symbol->GetMangled().GetName( |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 842 | current_symbol->GetLanguage(), Mangled::ePreferMangled); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 843 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 844 | if (trampoline_name) { |
| 845 | const ModuleList &images = target_sp->GetImages(); |
| 846 | |
| 847 | SymbolContextList code_symbols; |
| 848 | images.FindSymbolsWithNameAndType(trampoline_name, eSymbolTypeCode, |
| 849 | code_symbols); |
| 850 | size_t num_code_symbols = code_symbols.GetSize(); |
| 851 | |
| 852 | if (num_code_symbols > 0) { |
| 853 | for (uint32_t i = 0; i < num_code_symbols; i++) { |
| 854 | SymbolContext context; |
| 855 | AddressRange addr_range; |
| 856 | if (code_symbols.GetContextAtIndex(i, context)) { |
| 857 | context.GetAddressRange(eSymbolContextEverything, 0, false, |
| 858 | addr_range); |
| 859 | addresses.push_back(addr_range.GetBaseAddress()); |
| 860 | if (log) { |
| 861 | addr_t load_addr = |
| 862 | addr_range.GetBaseAddress().GetLoadAddress(target_sp.get()); |
| 863 | |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 864 | LLDB_LOGF(log, |
| 865 | "Found a trampoline target symbol at 0x%" PRIx64 ".", |
| 866 | load_addr); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 867 | } |
| 868 | } |
| 869 | } |
| 870 | } |
| 871 | |
| 872 | SymbolContextList reexported_symbols; |
| 873 | images.FindSymbolsWithNameAndType( |
| 874 | trampoline_name, eSymbolTypeReExported, reexported_symbols); |
| 875 | size_t num_reexported_symbols = reexported_symbols.GetSize(); |
| 876 | if (num_reexported_symbols > 0) { |
| 877 | for (uint32_t i = 0; i < num_reexported_symbols; i++) { |
| 878 | SymbolContext context; |
| 879 | if (reexported_symbols.GetContextAtIndex(i, context)) { |
| 880 | if (context.symbol) { |
| 881 | Symbol *actual_symbol = |
| 882 | context.symbol->ResolveReExportedSymbol(*target_sp.get()); |
| 883 | if (actual_symbol) { |
| 884 | const Address actual_symbol_addr = |
| 885 | actual_symbol->GetAddress(); |
| 886 | if (actual_symbol_addr.IsValid()) { |
| 887 | addresses.push_back(actual_symbol_addr); |
| 888 | if (log) { |
| 889 | lldb::addr_t load_addr = |
| 890 | actual_symbol_addr.GetLoadAddress(target_sp.get()); |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 891 | LLDB_LOGF( |
| 892 | log, |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 893 | "Found a re-exported symbol: %s at 0x%" PRIx64 ".", |
| 894 | actual_symbol->GetName().GetCString(), load_addr); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 895 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 896 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 897 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 898 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 899 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 900 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 901 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 902 | |
| 903 | SymbolContextList indirect_symbols; |
| 904 | images.FindSymbolsWithNameAndType(trampoline_name, eSymbolTypeResolver, |
| 905 | indirect_symbols); |
| 906 | size_t num_indirect_symbols = indirect_symbols.GetSize(); |
| 907 | if (num_indirect_symbols > 0) { |
| 908 | for (uint32_t i = 0; i < num_indirect_symbols; i++) { |
| 909 | SymbolContext context; |
| 910 | AddressRange addr_range; |
| 911 | if (indirect_symbols.GetContextAtIndex(i, context)) { |
| 912 | context.GetAddressRange(eSymbolContextEverything, 0, false, |
| 913 | addr_range); |
| 914 | addresses.push_back(addr_range.GetBaseAddress()); |
| 915 | if (log) { |
| 916 | addr_t load_addr = |
| 917 | addr_range.GetBaseAddress().GetLoadAddress(target_sp.get()); |
| 918 | |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 919 | LLDB_LOGF(log, |
| 920 | "Found an indirect target symbol at 0x%" PRIx64 ".", |
| 921 | load_addr); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 922 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 923 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 924 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 925 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 926 | } |
| 927 | } else if (current_symbol->GetType() == eSymbolTypeReExported) { |
| 928 | // I am not sure we could ever end up stopped AT a re-exported symbol. |
| 929 | // But just in case: |
| 930 | |
| 931 | const Symbol *actual_symbol = |
| 932 | current_symbol->ResolveReExportedSymbol(*(target_sp.get())); |
| 933 | if (actual_symbol) { |
| 934 | Address target_addr(actual_symbol->GetAddress()); |
| 935 | if (target_addr.IsValid()) { |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 936 | LLDB_LOGF( |
| 937 | log, |
| 938 | "Found a re-exported symbol: %s pointing to: %s at 0x%" PRIx64 |
| 939 | ".", |
| 940 | current_symbol->GetName().GetCString(), |
| 941 | actual_symbol->GetName().GetCString(), |
| 942 | target_addr.GetLoadAddress(target_sp.get())); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 943 | addresses.push_back(target_addr.GetLoadAddress(target_sp.get())); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 944 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 945 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 946 | } |
| 947 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 948 | if (addresses.size() > 0) { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 949 | // First check whether any of the addresses point to Indirect symbols, |
| 950 | // and if they do, resolve them: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 951 | std::vector<lldb::addr_t> load_addrs; |
| 952 | for (Address address : addresses) { |
| 953 | Symbol *symbol = address.CalculateSymbolContextSymbol(); |
| 954 | if (symbol && symbol->IsIndirect()) { |
Zachary Turner | 97206d5 | 2017-05-12 04:51:55 +0000 | [diff] [blame] | 955 | Status error; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 956 | Address symbol_address = symbol->GetAddress(); |
| 957 | addr_t resolved_addr = thread.GetProcess()->ResolveIndirectFunction( |
| 958 | &symbol_address, error); |
| 959 | if (error.Success()) { |
| 960 | load_addrs.push_back(resolved_addr); |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 961 | LLDB_LOGF(log, |
| 962 | "ResolveIndirectFunction found resolved target for " |
| 963 | "%s at 0x%" PRIx64 ".", |
| 964 | symbol->GetName().GetCString(), resolved_addr); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 965 | } |
| 966 | } else { |
| 967 | load_addrs.push_back(address.GetLoadAddress(target_sp.get())); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 968 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 969 | } |
Jonas Devlieghere | 796ac80 | 2019-02-11 23:13:08 +0000 | [diff] [blame] | 970 | thread_plan_sp = std::make_shared<ThreadPlanRunToAddress>( |
| 971 | thread, load_addrs, stop_others); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 972 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 973 | } else { |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 974 | LLDB_LOGF(log, "Could not find symbol for step through."); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 975 | } |
| 976 | |
| 977 | return thread_plan_sp; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 978 | } |
| 979 | |
Adrian Prantl | 1ad655e | 2019-10-17 19:56:40 +0000 | [diff] [blame] | 980 | void DynamicLoaderDarwin::FindEquivalentSymbols( |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 981 | lldb_private::Symbol *original_symbol, lldb_private::ModuleList &images, |
| 982 | lldb_private::SymbolContextList &equivalent_symbols) { |
Adrian Prantl | 0e4c482 | 2019-03-06 21:22:25 +0000 | [diff] [blame] | 983 | ConstString trampoline_name = original_symbol->GetMangled().GetName( |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 984 | original_symbol->GetLanguage(), Mangled::ePreferMangled); |
| 985 | if (!trampoline_name) |
Adrian Prantl | 1ad655e | 2019-10-17 19:56:40 +0000 | [diff] [blame] | 986 | return; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 987 | |
| 988 | static const char *resolver_name_regex = "(_gc|_non_gc|\\$[A-Za-z0-9\\$]+)$"; |
| 989 | std::string equivalent_regex_buf("^"); |
| 990 | equivalent_regex_buf.append(trampoline_name.GetCString()); |
| 991 | equivalent_regex_buf.append(resolver_name_regex); |
| 992 | |
Zachary Turner | 95eae42 | 2016-09-21 16:01:28 +0000 | [diff] [blame] | 993 | RegularExpression equivalent_name_regex(equivalent_regex_buf); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 994 | images.FindSymbolsMatchingRegExAndType(equivalent_name_regex, eSymbolTypeCode, |
Adrian Prantl | 1ad655e | 2019-10-17 19:56:40 +0000 | [diff] [blame] | 995 | equivalent_symbols); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 996 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 997 | } |
| 998 | |
| 999 | lldb::ModuleSP DynamicLoaderDarwin::GetPThreadLibraryModule() { |
| 1000 | ModuleSP module_sp = m_libpthread_module_wp.lock(); |
| 1001 | if (!module_sp) { |
| 1002 | SymbolContextList sc_list; |
| 1003 | ModuleSpec module_spec; |
| 1004 | module_spec.GetFileSpec().GetFilename().SetCString( |
| 1005 | "libsystem_pthread.dylib"); |
| 1006 | ModuleList module_list; |
Adrian Prantl | 1ad655e | 2019-10-17 19:56:40 +0000 | [diff] [blame] | 1007 | m_process->GetTarget().GetImages().FindModules(module_spec, module_list); |
| 1008 | if (!module_list.IsEmpty()) { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1009 | if (module_list.GetSize() == 1) { |
| 1010 | module_sp = module_list.GetModuleAtIndex(0); |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 1011 | if (module_sp) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1012 | m_libpthread_module_wp = module_sp; |
| 1013 | } |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 1014 | } |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1015 | } |
| 1016 | return module_sp; |
| 1017 | } |
| 1018 | |
| 1019 | Address DynamicLoaderDarwin::GetPthreadSetSpecificAddress() { |
| 1020 | if (!m_pthread_getspecific_addr.IsValid()) { |
| 1021 | ModuleSP module_sp = GetPThreadLibraryModule(); |
| 1022 | if (module_sp) { |
| 1023 | lldb_private::SymbolContextList sc_list; |
| 1024 | module_sp->FindSymbolsWithNameAndType(ConstString("pthread_getspecific"), |
| 1025 | eSymbolTypeCode, sc_list); |
| 1026 | SymbolContext sc; |
| 1027 | if (sc_list.GetContextAtIndex(0, sc)) { |
| 1028 | if (sc.symbol) |
| 1029 | m_pthread_getspecific_addr = sc.symbol->GetAddress(); |
| 1030 | } |
| 1031 | } |
| 1032 | } |
| 1033 | return m_pthread_getspecific_addr; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
| 1036 | lldb::addr_t |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1037 | DynamicLoaderDarwin::GetThreadLocalData(const lldb::ModuleSP module_sp, |
| 1038 | const lldb::ThreadSP thread_sp, |
| 1039 | lldb::addr_t tls_file_addr) { |
| 1040 | if (!thread_sp || !module_sp) |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 1041 | return LLDB_INVALID_ADDRESS; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1042 | |
| 1043 | std::lock_guard<std::recursive_mutex> guard(m_mutex); |
| 1044 | |
| 1045 | const uint32_t addr_size = m_process->GetAddressByteSize(); |
| 1046 | uint8_t buf[sizeof(lldb::addr_t) * 3]; |
| 1047 | |
| 1048 | lldb_private::Address tls_addr; |
| 1049 | if (module_sp->ResolveFileAddress(tls_file_addr, tls_addr)) { |
Zachary Turner | 97206d5 | 2017-05-12 04:51:55 +0000 | [diff] [blame] | 1050 | Status error; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1051 | const size_t tsl_data_size = addr_size * 3; |
| 1052 | Target &target = m_process->GetTarget(); |
| 1053 | if (target.ReadMemory(tls_addr, false, buf, tsl_data_size, error) == |
| 1054 | tsl_data_size) { |
| 1055 | const ByteOrder byte_order = m_process->GetByteOrder(); |
| 1056 | DataExtractor data(buf, sizeof(buf), byte_order, addr_size); |
| 1057 | lldb::offset_t offset = addr_size; // Skip the first pointer |
| 1058 | const lldb::addr_t pthread_key = data.GetAddress(&offset); |
| 1059 | const lldb::addr_t tls_offset = data.GetAddress(&offset); |
| 1060 | if (pthread_key != 0) { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 1061 | // First check to see if we have already figured out the location of |
| 1062 | // TLS data for the pthread_key on a specific thread yet. If we have we |
| 1063 | // can re-use it since its location will not change unless the process |
| 1064 | // execs. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1065 | const tid_t tid = thread_sp->GetID(); |
| 1066 | auto tid_pos = m_tid_to_tls_map.find(tid); |
| 1067 | if (tid_pos != m_tid_to_tls_map.end()) { |
| 1068 | auto tls_pos = tid_pos->second.find(pthread_key); |
| 1069 | if (tls_pos != tid_pos->second.end()) { |
| 1070 | return tls_pos->second + tls_offset; |
| 1071 | } |
| 1072 | } |
| 1073 | StackFrameSP frame_sp = thread_sp->GetStackFrameAtIndex(0); |
| 1074 | if (frame_sp) { |
| 1075 | ClangASTContext *clang_ast_context = |
| 1076 | target.GetScratchClangASTContext(); |
| 1077 | |
| 1078 | if (!clang_ast_context) |
| 1079 | return LLDB_INVALID_ADDRESS; |
| 1080 | |
| 1081 | CompilerType clang_void_ptr_type = |
| 1082 | clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); |
| 1083 | Address pthread_getspecific_addr = GetPthreadSetSpecificAddress(); |
| 1084 | if (pthread_getspecific_addr.IsValid()) { |
| 1085 | EvaluateExpressionOptions options; |
| 1086 | |
| 1087 | lldb::ThreadPlanSP thread_plan_sp(new ThreadPlanCallFunction( |
| 1088 | *thread_sp, pthread_getspecific_addr, clang_void_ptr_type, |
| 1089 | llvm::ArrayRef<lldb::addr_t>(pthread_key), options)); |
| 1090 | |
| 1091 | DiagnosticManager execution_errors; |
| 1092 | ExecutionContext exe_ctx(thread_sp); |
| 1093 | lldb::ExpressionResults results = m_process->RunThreadPlan( |
| 1094 | exe_ctx, thread_plan_sp, options, execution_errors); |
| 1095 | |
| 1096 | if (results == lldb::eExpressionCompleted) { |
| 1097 | lldb::ValueObjectSP result_valobj_sp = |
| 1098 | thread_plan_sp->GetReturnValueObject(); |
| 1099 | if (result_valobj_sp) { |
| 1100 | const lldb::addr_t pthread_key_data = |
| 1101 | result_valobj_sp->GetValueAsUnsigned(0); |
| 1102 | if (pthread_key_data) { |
| 1103 | m_tid_to_tls_map[tid].insert( |
| 1104 | std::make_pair(pthread_key, pthread_key_data)); |
| 1105 | return pthread_key_data + tls_offset; |
| 1106 | } |
| 1107 | } |
| 1108 | } |
| 1109 | } |
| 1110 | } |
| 1111 | } |
| 1112 | } |
| 1113 | } |
| 1114 | return LLDB_INVALID_ADDRESS; |
Jason Molenda | 5fe4d14 | 2016-07-17 21:27:32 +0000 | [diff] [blame] | 1115 | } |
| 1116 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1117 | bool DynamicLoaderDarwin::UseDYLDSPI(Process *process) { |
| 1118 | Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1119 | bool use_new_spi_interface = false; |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 1120 | |
Pavel Labath | 2272c48 | 2018-06-18 15:02:23 +0000 | [diff] [blame] | 1121 | llvm::VersionTuple version = process->GetHostOSVersion(); |
| 1122 | if (!version.empty()) { |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1123 | const llvm::Triple::OSType os_type = |
| 1124 | process->GetTarget().GetArchitecture().GetTriple().getOS(); |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 1125 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1126 | // macOS 10.12 and newer |
| 1127 | if (os_type == llvm::Triple::MacOSX && |
Pavel Labath | 2272c48 | 2018-06-18 15:02:23 +0000 | [diff] [blame] | 1128 | version >= llvm::VersionTuple(10, 12)) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1129 | use_new_spi_interface = true; |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 1130 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1131 | // iOS 10 and newer |
Pavel Labath | 2272c48 | 2018-06-18 15:02:23 +0000 | [diff] [blame] | 1132 | if (os_type == llvm::Triple::IOS && version >= llvm::VersionTuple(10)) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1133 | use_new_spi_interface = true; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1134 | |
| 1135 | // tvOS 10 and newer |
Pavel Labath | 2272c48 | 2018-06-18 15:02:23 +0000 | [diff] [blame] | 1136 | if (os_type == llvm::Triple::TvOS && version >= llvm::VersionTuple(10)) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1137 | use_new_spi_interface = true; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1138 | |
| 1139 | // watchOS 3 and newer |
Pavel Labath | 2272c48 | 2018-06-18 15:02:23 +0000 | [diff] [blame] | 1140 | if (os_type == llvm::Triple::WatchOS && version >= llvm::VersionTuple(3)) |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1141 | use_new_spi_interface = true; |
Jason Molenda | 32762fd | 2018-10-11 00:28:35 +0000 | [diff] [blame] | 1142 | |
| 1143 | // NEED_BRIDGEOS_TRIPLE // Any BridgeOS |
| 1144 | // NEED_BRIDGEOS_TRIPLE if (os_type == llvm::Triple::BridgeOS) |
| 1145 | // NEED_BRIDGEOS_TRIPLE use_new_spi_interface = true; |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1146 | } |
| 1147 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1148 | if (log) { |
| 1149 | if (use_new_spi_interface) |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 1150 | LLDB_LOGF( |
| 1151 | log, "DynamicLoaderDarwin::UseDYLDSPI: Use new DynamicLoader plugin"); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1152 | else |
Jonas Devlieghere | 63e5fb7 | 2019-07-24 17:56:10 +0000 | [diff] [blame] | 1153 | LLDB_LOGF( |
| 1154 | log, "DynamicLoaderDarwin::UseDYLDSPI: Use old DynamicLoader plugin"); |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1155 | } |
| 1156 | return use_new_spi_interface; |
Jason Molenda | 9ab5dc2 | 2016-07-21 08:30:55 +0000 | [diff] [blame] | 1157 | } |