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 
20bba9ba8dSJonas Devlieghere LLDB_PLUGIN_DEFINE(DynamicLoaderStatic)
21fbb4d1e4SJonas 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();
32*ebf9a99bSJonas Devlieghere     const llvm::Triple::ArchType arch_type = triple_ref.getArch();
33*ebf9a99bSJonas Devlieghere     if (os_type == llvm::Triple::UnknownOS) {
34*ebf9a99bSJonas Devlieghere       // The WASM and Hexagon plugin check the ArchType rather than the OSType,
35*ebf9a99bSJonas Devlieghere       // so explicitly reject those here.
36*ebf9a99bSJonas Devlieghere       switch(arch_type) {
37*ebf9a99bSJonas Devlieghere         case llvm::Triple::hexagon:
38*ebf9a99bSJonas Devlieghere         case llvm::Triple::wasm32:
39*ebf9a99bSJonas Devlieghere         case llvm::Triple::wasm64:
40*ebf9a99bSJonas Devlieghere           break;
41*ebf9a99bSJonas Devlieghere         default:
42fc7117aeSGreg Clayton           create = true;
43fc7117aeSGreg Clayton       }
44*ebf9a99bSJonas Devlieghere     }
45*ebf9a99bSJonas Devlieghere   }
46fc7117aeSGreg Clayton 
47b9c1b51eSKate Stone   if (!create) {
4849bce8ecSSean Callanan     Module *exe_module = process->GetTarget().GetExecutableModulePointer();
49b9c1b51eSKate Stone     if (exe_module) {
5049bce8ecSSean Callanan       ObjectFile *object_file = exe_module->GetObjectFile();
51b9c1b51eSKate Stone       if (object_file) {
5249bce8ecSSean Callanan         create = (object_file->GetStrata() == ObjectFile::eStrataRawImage);
5349bce8ecSSean Callanan       }
5449bce8ecSSean Callanan     }
5549bce8ecSSean Callanan   }
5649bce8ecSSean Callanan 
57fc7117aeSGreg Clayton   if (create)
58fc7117aeSGreg Clayton     return new DynamicLoaderStatic(process);
59248a1305SKonrad Kleine   return nullptr;
60fc7117aeSGreg Clayton }
61fc7117aeSGreg Clayton 
62fc7117aeSGreg Clayton // Constructor
63b9c1b51eSKate Stone DynamicLoaderStatic::DynamicLoaderStatic(Process *process)
64b9c1b51eSKate Stone     : DynamicLoader(process) {}
65fc7117aeSGreg Clayton 
66fc7117aeSGreg Clayton // Destructor
67b9c1b51eSKate Stone DynamicLoaderStatic::~DynamicLoaderStatic() {}
68fc7117aeSGreg Clayton 
69fc7117aeSGreg Clayton /// Called after attaching a process.
70fc7117aeSGreg Clayton ///
71fc7117aeSGreg Clayton /// Allow DynamicLoader plug-ins to execute some code after
72fc7117aeSGreg Clayton /// attaching to a process.
73b9c1b51eSKate Stone void DynamicLoaderStatic::DidAttach() { LoadAllImagesAtFileAddresses(); }
74fc7117aeSGreg Clayton 
75fc7117aeSGreg Clayton /// Called after attaching a process.
76fc7117aeSGreg Clayton ///
77fc7117aeSGreg Clayton /// Allow DynamicLoader plug-ins to execute some code after
78fc7117aeSGreg Clayton /// attaching to a process.
79b9c1b51eSKate Stone void DynamicLoaderStatic::DidLaunch() { LoadAllImagesAtFileAddresses(); }
80fc7117aeSGreg Clayton 
81b9c1b51eSKate Stone void DynamicLoaderStatic::LoadAllImagesAtFileAddresses() {
821759848bSEnrico Granata   const ModuleList &module_list = m_process->GetTarget().GetImages();
83fc7117aeSGreg Clayton 
84fc7117aeSGreg Clayton   ModuleList loaded_module_list;
85fc7117aeSGreg Clayton 
8662243f84SGreg Clayton   // Disable JIT for static dynamic loader targets
8762243f84SGreg Clayton   m_process->SetCanJIT(false);
8862243f84SGreg Clayton 
89bb19a13cSSaleem Abdulrasool   std::lock_guard<std::recursive_mutex> guard(module_list.GetMutex());
903ee12ef2SJim Ingham 
91fc7117aeSGreg Clayton   const size_t num_modules = module_list.GetSize();
92b9c1b51eSKate Stone   for (uint32_t idx = 0; idx < num_modules; ++idx) {
933ee12ef2SJim Ingham     ModuleSP module_sp(module_list.GetModuleAtIndexUnlocked(idx));
94b9c1b51eSKate Stone     if (module_sp) {
95fc7117aeSGreg Clayton       bool changed = false;
96fc7117aeSGreg Clayton       ObjectFile *image_object_file = module_sp->GetObjectFile();
97b9c1b51eSKate Stone       if (image_object_file) {
98fc7117aeSGreg Clayton         SectionList *section_list = image_object_file->GetSectionList();
99b9c1b51eSKate Stone         if (section_list) {
100fc7117aeSGreg Clayton           // All sections listed in the dyld image info structure will all
101fc7117aeSGreg Clayton           // either be fixed up already, or they will all be off by a single
10205097246SAdrian Prantl           // slide amount that is determined by finding the first segment that
10305097246SAdrian Prantl           // is at file offset zero which also has bytes (a file size that is
10405097246SAdrian Prantl           // greater than zero) in the object file.
105fc7117aeSGreg Clayton 
106fc7117aeSGreg Clayton           // Determine the slide amount (if any)
107fc7117aeSGreg Clayton           const size_t num_sections = section_list->GetSize();
108fc7117aeSGreg Clayton           size_t sect_idx = 0;
109b9c1b51eSKate Stone           for (sect_idx = 0; sect_idx < num_sections; ++sect_idx) {
11005097246SAdrian Prantl             // Iterate through the object file sections to find the first
11105097246SAdrian Prantl             // section that starts of file offset zero and that has bytes in
11205097246SAdrian Prantl             // the file...
1137820bd1eSGreg Clayton             SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx));
114b9c1b51eSKate Stone             if (section_sp) {
115b9c1b51eSKate Stone               if (m_process->GetTarget().SetSectionLoadAddress(
116b9c1b51eSKate Stone                       section_sp, section_sp->GetFileAddress()))
117fc7117aeSGreg Clayton                 changed = true;
118fc7117aeSGreg Clayton             }
119fc7117aeSGreg Clayton           }
120fc7117aeSGreg Clayton         }
121fc7117aeSGreg Clayton       }
122fc7117aeSGreg Clayton 
123fc7117aeSGreg Clayton       if (changed)
124fc7117aeSGreg Clayton         loaded_module_list.AppendIfNeeded(module_sp);
125fc7117aeSGreg Clayton     }
126fc7117aeSGreg Clayton   }
127fc7117aeSGreg Clayton 
128fc7117aeSGreg Clayton   m_process->GetTarget().ModulesDidLoad(loaded_module_list);
129fc7117aeSGreg Clayton }
130fc7117aeSGreg Clayton 
131fc7117aeSGreg Clayton ThreadPlanSP
132b9c1b51eSKate Stone DynamicLoaderStatic::GetStepThroughTrampolinePlan(Thread &thread,
133b9c1b51eSKate Stone                                                   bool stop_others) {
134fc7117aeSGreg Clayton   return ThreadPlanSP();
135fc7117aeSGreg Clayton }
136fc7117aeSGreg Clayton 
13797206d57SZachary Turner Status DynamicLoaderStatic::CanLoadImage() {
13897206d57SZachary Turner   Status error;
139fc7117aeSGreg Clayton   error.SetErrorString("can't load images on with a static debug session");
140fc7117aeSGreg Clayton   return error;
141fc7117aeSGreg Clayton }
142fc7117aeSGreg Clayton 
143b9c1b51eSKate Stone void DynamicLoaderStatic::Initialize() {
144fc7117aeSGreg Clayton   PluginManager::RegisterPlugin(GetPluginNameStatic(),
145b9c1b51eSKate Stone                                 GetPluginDescriptionStatic(), CreateInstance);
146fc7117aeSGreg Clayton }
147fc7117aeSGreg Clayton 
148b9c1b51eSKate Stone void DynamicLoaderStatic::Terminate() {
149fc7117aeSGreg Clayton   PluginManager::UnregisterPlugin(CreateInstance);
150fc7117aeSGreg Clayton }
151fc7117aeSGreg Clayton 
152b9c1b51eSKate Stone lldb_private::ConstString DynamicLoaderStatic::GetPluginNameStatic() {
15357abc5d6SGreg Clayton   static ConstString g_name("static");
15457abc5d6SGreg Clayton   return g_name;
155fc7117aeSGreg Clayton }
156fc7117aeSGreg Clayton 
157b9c1b51eSKate Stone const char *DynamicLoaderStatic::GetPluginDescriptionStatic() {
158b9c1b51eSKate Stone   return "Dynamic loader plug-in that will load any images at the static "
159b9c1b51eSKate Stone          "addresses contained in each image.";
160fc7117aeSGreg Clayton }
161fc7117aeSGreg Clayton 
162fc7117aeSGreg Clayton // PluginInterface protocol
163b9c1b51eSKate Stone lldb_private::ConstString DynamicLoaderStatic::GetPluginName() {
164fc7117aeSGreg Clayton   return GetPluginNameStatic();
165fc7117aeSGreg Clayton }
166fc7117aeSGreg Clayton 
167b9c1b51eSKate Stone uint32_t DynamicLoaderStatic::GetPluginVersion() { return 1; }
168