1fc7117aeSGreg Clayton //===-- DynamicLoaderStatic.cpp ---------------------------------*- C++ -*-===// 2fc7117aeSGreg Clayton // 3*2946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*2946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 5*2946cd70SChandler 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 20fc7117aeSGreg Clayton //---------------------------------------------------------------------- 2105097246SAdrian Prantl // Create an instance of this class. This function is filled into the plugin 2205097246SAdrian Prantl // info class that gets handed out by the plugin factory and allows the lldb to 2305097246SAdrian Prantl // instantiate an instance of this class. 24fc7117aeSGreg Clayton //---------------------------------------------------------------------- 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); 48fc7117aeSGreg Clayton return NULL; 49fc7117aeSGreg Clayton } 50fc7117aeSGreg Clayton 51fc7117aeSGreg Clayton //---------------------------------------------------------------------- 52fc7117aeSGreg Clayton // Constructor 53fc7117aeSGreg Clayton //---------------------------------------------------------------------- 54b9c1b51eSKate Stone DynamicLoaderStatic::DynamicLoaderStatic(Process *process) 55b9c1b51eSKate Stone : DynamicLoader(process) {} 56fc7117aeSGreg Clayton 57fc7117aeSGreg Clayton //---------------------------------------------------------------------- 58fc7117aeSGreg Clayton // Destructor 59fc7117aeSGreg Clayton //---------------------------------------------------------------------- 60b9c1b51eSKate Stone DynamicLoaderStatic::~DynamicLoaderStatic() {} 61fc7117aeSGreg Clayton 62fc7117aeSGreg Clayton //------------------------------------------------------------------ 63fc7117aeSGreg Clayton /// Called after attaching a process. 64fc7117aeSGreg Clayton /// 65fc7117aeSGreg Clayton /// Allow DynamicLoader plug-ins to execute some code after 66fc7117aeSGreg Clayton /// attaching to a process. 67fc7117aeSGreg Clayton //------------------------------------------------------------------ 68b9c1b51eSKate Stone void DynamicLoaderStatic::DidAttach() { LoadAllImagesAtFileAddresses(); } 69fc7117aeSGreg Clayton 70fc7117aeSGreg Clayton //------------------------------------------------------------------ 71fc7117aeSGreg Clayton /// Called after attaching a process. 72fc7117aeSGreg Clayton /// 73fc7117aeSGreg Clayton /// Allow DynamicLoader plug-ins to execute some code after 74fc7117aeSGreg Clayton /// attaching to a process. 75fc7117aeSGreg Clayton //------------------------------------------------------------------ 76b9c1b51eSKate Stone void DynamicLoaderStatic::DidLaunch() { LoadAllImagesAtFileAddresses(); } 77fc7117aeSGreg Clayton 78b9c1b51eSKate Stone void DynamicLoaderStatic::LoadAllImagesAtFileAddresses() { 791759848bSEnrico Granata const ModuleList &module_list = m_process->GetTarget().GetImages(); 80fc7117aeSGreg Clayton 81fc7117aeSGreg Clayton ModuleList loaded_module_list; 82fc7117aeSGreg Clayton 8362243f84SGreg Clayton // Disable JIT for static dynamic loader targets 8462243f84SGreg Clayton m_process->SetCanJIT(false); 8562243f84SGreg Clayton 86bb19a13cSSaleem Abdulrasool std::lock_guard<std::recursive_mutex> guard(module_list.GetMutex()); 873ee12ef2SJim Ingham 88fc7117aeSGreg Clayton const size_t num_modules = module_list.GetSize(); 89b9c1b51eSKate Stone for (uint32_t idx = 0; idx < num_modules; ++idx) { 903ee12ef2SJim Ingham ModuleSP module_sp(module_list.GetModuleAtIndexUnlocked(idx)); 91b9c1b51eSKate Stone if (module_sp) { 92fc7117aeSGreg Clayton bool changed = false; 93fc7117aeSGreg Clayton ObjectFile *image_object_file = module_sp->GetObjectFile(); 94b9c1b51eSKate Stone if (image_object_file) { 95fc7117aeSGreg Clayton SectionList *section_list = image_object_file->GetSectionList(); 96b9c1b51eSKate Stone if (section_list) { 97fc7117aeSGreg Clayton // All sections listed in the dyld image info structure will all 98fc7117aeSGreg Clayton // either be fixed up already, or they will all be off by a single 9905097246SAdrian Prantl // slide amount that is determined by finding the first segment that 10005097246SAdrian Prantl // is at file offset zero which also has bytes (a file size that is 10105097246SAdrian Prantl // greater than zero) in the object file. 102fc7117aeSGreg Clayton 103fc7117aeSGreg Clayton // Determine the slide amount (if any) 104fc7117aeSGreg Clayton const size_t num_sections = section_list->GetSize(); 105fc7117aeSGreg Clayton size_t sect_idx = 0; 106b9c1b51eSKate Stone for (sect_idx = 0; sect_idx < num_sections; ++sect_idx) { 10705097246SAdrian Prantl // Iterate through the object file sections to find the first 10805097246SAdrian Prantl // section that starts of file offset zero and that has bytes in 10905097246SAdrian Prantl // the file... 1107820bd1eSGreg Clayton SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx)); 111b9c1b51eSKate Stone if (section_sp) { 112b9c1b51eSKate Stone if (m_process->GetTarget().SetSectionLoadAddress( 113b9c1b51eSKate Stone section_sp, section_sp->GetFileAddress())) 114fc7117aeSGreg Clayton changed = true; 115fc7117aeSGreg Clayton } 116fc7117aeSGreg Clayton } 117fc7117aeSGreg Clayton } 118fc7117aeSGreg Clayton } 119fc7117aeSGreg Clayton 120fc7117aeSGreg Clayton if (changed) 121fc7117aeSGreg Clayton loaded_module_list.AppendIfNeeded(module_sp); 122fc7117aeSGreg Clayton } 123fc7117aeSGreg Clayton } 124fc7117aeSGreg Clayton 125fc7117aeSGreg Clayton m_process->GetTarget().ModulesDidLoad(loaded_module_list); 126fc7117aeSGreg Clayton } 127fc7117aeSGreg Clayton 128fc7117aeSGreg Clayton ThreadPlanSP 129b9c1b51eSKate Stone DynamicLoaderStatic::GetStepThroughTrampolinePlan(Thread &thread, 130b9c1b51eSKate Stone bool stop_others) { 131fc7117aeSGreg Clayton return ThreadPlanSP(); 132fc7117aeSGreg Clayton } 133fc7117aeSGreg Clayton 13497206d57SZachary Turner Status DynamicLoaderStatic::CanLoadImage() { 13597206d57SZachary Turner Status error; 136fc7117aeSGreg Clayton error.SetErrorString("can't load images on with a static debug session"); 137fc7117aeSGreg Clayton return error; 138fc7117aeSGreg Clayton } 139fc7117aeSGreg Clayton 140b9c1b51eSKate Stone void DynamicLoaderStatic::Initialize() { 141fc7117aeSGreg Clayton PluginManager::RegisterPlugin(GetPluginNameStatic(), 142b9c1b51eSKate Stone GetPluginDescriptionStatic(), CreateInstance); 143fc7117aeSGreg Clayton } 144fc7117aeSGreg Clayton 145b9c1b51eSKate Stone void DynamicLoaderStatic::Terminate() { 146fc7117aeSGreg Clayton PluginManager::UnregisterPlugin(CreateInstance); 147fc7117aeSGreg Clayton } 148fc7117aeSGreg Clayton 149b9c1b51eSKate Stone lldb_private::ConstString DynamicLoaderStatic::GetPluginNameStatic() { 15057abc5d6SGreg Clayton static ConstString g_name("static"); 15157abc5d6SGreg Clayton return g_name; 152fc7117aeSGreg Clayton } 153fc7117aeSGreg Clayton 154b9c1b51eSKate Stone const char *DynamicLoaderStatic::GetPluginDescriptionStatic() { 155b9c1b51eSKate Stone return "Dynamic loader plug-in that will load any images at the static " 156b9c1b51eSKate Stone "addresses contained in each image."; 157fc7117aeSGreg Clayton } 158fc7117aeSGreg Clayton 159fc7117aeSGreg Clayton //------------------------------------------------------------------ 160fc7117aeSGreg Clayton // PluginInterface protocol 161fc7117aeSGreg Clayton //------------------------------------------------------------------ 162b9c1b51eSKate Stone lldb_private::ConstString DynamicLoaderStatic::GetPluginName() { 163fc7117aeSGreg Clayton return GetPluginNameStatic(); 164fc7117aeSGreg Clayton } 165fc7117aeSGreg Clayton 166b9c1b51eSKate Stone uint32_t DynamicLoaderStatic::GetPluginVersion() { return 1; } 167