180814287SRaphael Isemann //===-- DynamicLoaderStatic.cpp -------------------------------------------===// 2fc7117aeSGreg Clayton // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6fc7117aeSGreg Clayton // 7fc7117aeSGreg Clayton //===----------------------------------------------------------------------===// 8fc7117aeSGreg Clayton 9fc7117aeSGreg Clayton #include "lldb/Core/Module.h" 10fc7117aeSGreg Clayton #include "lldb/Core/PluginManager.h" 111f746071SGreg Clayton #include "lldb/Core/Section.h" 121f746071SGreg Clayton #include "lldb/Symbol/ObjectFile.h" 13fc7117aeSGreg Clayton #include "lldb/Target/Target.h" 14fc7117aeSGreg Clayton 15fc7117aeSGreg Clayton #include "DynamicLoaderStatic.h" 16fc7117aeSGreg Clayton 17fc7117aeSGreg Clayton using namespace lldb; 18fc7117aeSGreg Clayton using namespace lldb_private; 19fc7117aeSGreg Clayton 20*fbb4d1e4SJonas Devlieghere LLDB_PLUGIN(DynamicLoaderStatic); 21*fbb4d1e4SJonas Devlieghere 2205097246SAdrian Prantl // Create an instance of this class. This function is filled into the plugin 2305097246SAdrian Prantl // info class that gets handed out by the plugin factory and allows the lldb to 2405097246SAdrian Prantl // instantiate an instance of this class. 25b9c1b51eSKate Stone DynamicLoader *DynamicLoaderStatic::CreateInstance(Process *process, 26b9c1b51eSKate Stone bool force) { 27fc7117aeSGreg Clayton bool create = force; 28b9c1b51eSKate Stone if (!create) { 29b9c1b51eSKate Stone const llvm::Triple &triple_ref = 30b9c1b51eSKate Stone process->GetTarget().GetArchitecture().GetTriple(); 31fc7117aeSGreg Clayton const llvm::Triple::OSType os_type = triple_ref.getOS(); 32fb0b7583SSean Callanan if ((os_type == llvm::Triple::UnknownOS)) 33fc7117aeSGreg Clayton create = true; 34fc7117aeSGreg Clayton } 35fc7117aeSGreg Clayton 36b9c1b51eSKate Stone if (!create) { 3749bce8ecSSean Callanan Module *exe_module = process->GetTarget().GetExecutableModulePointer(); 38b9c1b51eSKate Stone if (exe_module) { 3949bce8ecSSean Callanan ObjectFile *object_file = exe_module->GetObjectFile(); 40b9c1b51eSKate Stone if (object_file) { 4149bce8ecSSean Callanan create = (object_file->GetStrata() == ObjectFile::eStrataRawImage); 4249bce8ecSSean Callanan } 4349bce8ecSSean Callanan } 4449bce8ecSSean Callanan } 4549bce8ecSSean Callanan 46fc7117aeSGreg Clayton if (create) 47fc7117aeSGreg Clayton return new DynamicLoaderStatic(process); 48248a1305SKonrad Kleine return nullptr; 49fc7117aeSGreg Clayton } 50fc7117aeSGreg Clayton 51fc7117aeSGreg Clayton // Constructor 52b9c1b51eSKate Stone DynamicLoaderStatic::DynamicLoaderStatic(Process *process) 53b9c1b51eSKate Stone : DynamicLoader(process) {} 54fc7117aeSGreg Clayton 55fc7117aeSGreg Clayton // Destructor 56b9c1b51eSKate Stone DynamicLoaderStatic::~DynamicLoaderStatic() {} 57fc7117aeSGreg Clayton 58fc7117aeSGreg Clayton /// Called after attaching a process. 59fc7117aeSGreg Clayton /// 60fc7117aeSGreg Clayton /// Allow DynamicLoader plug-ins to execute some code after 61fc7117aeSGreg Clayton /// attaching to a process. 62b9c1b51eSKate Stone void DynamicLoaderStatic::DidAttach() { LoadAllImagesAtFileAddresses(); } 63fc7117aeSGreg Clayton 64fc7117aeSGreg Clayton /// Called after attaching a process. 65fc7117aeSGreg Clayton /// 66fc7117aeSGreg Clayton /// Allow DynamicLoader plug-ins to execute some code after 67fc7117aeSGreg Clayton /// attaching to a process. 68b9c1b51eSKate Stone void DynamicLoaderStatic::DidLaunch() { LoadAllImagesAtFileAddresses(); } 69fc7117aeSGreg Clayton 70b9c1b51eSKate Stone void DynamicLoaderStatic::LoadAllImagesAtFileAddresses() { 711759848bSEnrico Granata const ModuleList &module_list = m_process->GetTarget().GetImages(); 72fc7117aeSGreg Clayton 73fc7117aeSGreg Clayton ModuleList loaded_module_list; 74fc7117aeSGreg Clayton 7562243f84SGreg Clayton // Disable JIT for static dynamic loader targets 7662243f84SGreg Clayton m_process->SetCanJIT(false); 7762243f84SGreg Clayton 78bb19a13cSSaleem Abdulrasool std::lock_guard<std::recursive_mutex> guard(module_list.GetMutex()); 793ee12ef2SJim Ingham 80fc7117aeSGreg Clayton const size_t num_modules = module_list.GetSize(); 81b9c1b51eSKate Stone for (uint32_t idx = 0; idx < num_modules; ++idx) { 823ee12ef2SJim Ingham ModuleSP module_sp(module_list.GetModuleAtIndexUnlocked(idx)); 83b9c1b51eSKate Stone if (module_sp) { 84fc7117aeSGreg Clayton bool changed = false; 85fc7117aeSGreg Clayton ObjectFile *image_object_file = module_sp->GetObjectFile(); 86b9c1b51eSKate Stone if (image_object_file) { 87fc7117aeSGreg Clayton SectionList *section_list = image_object_file->GetSectionList(); 88b9c1b51eSKate Stone if (section_list) { 89fc7117aeSGreg Clayton // All sections listed in the dyld image info structure will all 90fc7117aeSGreg Clayton // either be fixed up already, or they will all be off by a single 9105097246SAdrian Prantl // slide amount that is determined by finding the first segment that 9205097246SAdrian Prantl // is at file offset zero which also has bytes (a file size that is 9305097246SAdrian Prantl // greater than zero) in the object file. 94fc7117aeSGreg Clayton 95fc7117aeSGreg Clayton // Determine the slide amount (if any) 96fc7117aeSGreg Clayton const size_t num_sections = section_list->GetSize(); 97fc7117aeSGreg Clayton size_t sect_idx = 0; 98b9c1b51eSKate Stone for (sect_idx = 0; sect_idx < num_sections; ++sect_idx) { 9905097246SAdrian Prantl // Iterate through the object file sections to find the first 10005097246SAdrian Prantl // section that starts of file offset zero and that has bytes in 10105097246SAdrian Prantl // the file... 1027820bd1eSGreg Clayton SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx)); 103b9c1b51eSKate Stone if (section_sp) { 104b9c1b51eSKate Stone if (m_process->GetTarget().SetSectionLoadAddress( 105b9c1b51eSKate Stone section_sp, section_sp->GetFileAddress())) 106fc7117aeSGreg Clayton changed = true; 107fc7117aeSGreg Clayton } 108fc7117aeSGreg Clayton } 109fc7117aeSGreg Clayton } 110fc7117aeSGreg Clayton } 111fc7117aeSGreg Clayton 112fc7117aeSGreg Clayton if (changed) 113fc7117aeSGreg Clayton loaded_module_list.AppendIfNeeded(module_sp); 114fc7117aeSGreg Clayton } 115fc7117aeSGreg Clayton } 116fc7117aeSGreg Clayton 117fc7117aeSGreg Clayton m_process->GetTarget().ModulesDidLoad(loaded_module_list); 118fc7117aeSGreg Clayton } 119fc7117aeSGreg Clayton 120fc7117aeSGreg Clayton ThreadPlanSP 121b9c1b51eSKate Stone DynamicLoaderStatic::GetStepThroughTrampolinePlan(Thread &thread, 122b9c1b51eSKate Stone bool stop_others) { 123fc7117aeSGreg Clayton return ThreadPlanSP(); 124fc7117aeSGreg Clayton } 125fc7117aeSGreg Clayton 12697206d57SZachary Turner Status DynamicLoaderStatic::CanLoadImage() { 12797206d57SZachary Turner Status error; 128fc7117aeSGreg Clayton error.SetErrorString("can't load images on with a static debug session"); 129fc7117aeSGreg Clayton return error; 130fc7117aeSGreg Clayton } 131fc7117aeSGreg Clayton 132b9c1b51eSKate Stone void DynamicLoaderStatic::Initialize() { 133fc7117aeSGreg Clayton PluginManager::RegisterPlugin(GetPluginNameStatic(), 134b9c1b51eSKate Stone GetPluginDescriptionStatic(), CreateInstance); 135fc7117aeSGreg Clayton } 136fc7117aeSGreg Clayton 137b9c1b51eSKate Stone void DynamicLoaderStatic::Terminate() { 138fc7117aeSGreg Clayton PluginManager::UnregisterPlugin(CreateInstance); 139fc7117aeSGreg Clayton } 140fc7117aeSGreg Clayton 141b9c1b51eSKate Stone lldb_private::ConstString DynamicLoaderStatic::GetPluginNameStatic() { 14257abc5d6SGreg Clayton static ConstString g_name("static"); 14357abc5d6SGreg Clayton return g_name; 144fc7117aeSGreg Clayton } 145fc7117aeSGreg Clayton 146b9c1b51eSKate Stone const char *DynamicLoaderStatic::GetPluginDescriptionStatic() { 147b9c1b51eSKate Stone return "Dynamic loader plug-in that will load any images at the static " 148b9c1b51eSKate Stone "addresses contained in each image."; 149fc7117aeSGreg Clayton } 150fc7117aeSGreg Clayton 151fc7117aeSGreg Clayton // PluginInterface protocol 152b9c1b51eSKate Stone lldb_private::ConstString DynamicLoaderStatic::GetPluginName() { 153fc7117aeSGreg Clayton return GetPluginNameStatic(); 154fc7117aeSGreg Clayton } 155fc7117aeSGreg Clayton 156b9c1b51eSKate Stone uint32_t DynamicLoaderStatic::GetPluginVersion() { return 1; } 157