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();
32ebf9a99bSJonas Devlieghere     const llvm::Triple::ArchType arch_type = triple_ref.getArch();
33ebf9a99bSJonas Devlieghere     if (os_type == llvm::Triple::UnknownOS) {
34ebf9a99bSJonas Devlieghere       // The WASM and Hexagon plugin check the ArchType rather than the OSType,
35ebf9a99bSJonas Devlieghere       // so explicitly reject those here.
36ebf9a99bSJonas Devlieghere       switch(arch_type) {
37ebf9a99bSJonas Devlieghere         case llvm::Triple::hexagon:
38ebf9a99bSJonas Devlieghere         case llvm::Triple::wasm32:
39ebf9a99bSJonas Devlieghere         case llvm::Triple::wasm64:
40ebf9a99bSJonas Devlieghere           break;
41ebf9a99bSJonas Devlieghere         default:
42fc7117aeSGreg Clayton           create = true;
43fc7117aeSGreg Clayton       }
44ebf9a99bSJonas Devlieghere     }
45ebf9a99bSJonas 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 /// Called after attaching a process.
67fc7117aeSGreg Clayton ///
68fc7117aeSGreg Clayton /// Allow DynamicLoader plug-ins to execute some code after
69fc7117aeSGreg Clayton /// attaching to a process.
70b9c1b51eSKate Stone void DynamicLoaderStatic::DidAttach() { LoadAllImagesAtFileAddresses(); }
71fc7117aeSGreg Clayton 
72fc7117aeSGreg Clayton /// Called after attaching a process.
73fc7117aeSGreg Clayton ///
74fc7117aeSGreg Clayton /// Allow DynamicLoader plug-ins to execute some code after
75fc7117aeSGreg Clayton /// attaching to a process.
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 
86*f2e05855SJonas Devlieghere   for (ModuleSP module_sp : module_list.Modules()) {
87b9c1b51eSKate Stone     if (module_sp) {
88fc7117aeSGreg Clayton       bool changed = false;
89fc7117aeSGreg Clayton       ObjectFile *image_object_file = module_sp->GetObjectFile();
90b9c1b51eSKate Stone       if (image_object_file) {
91fc7117aeSGreg Clayton         SectionList *section_list = image_object_file->GetSectionList();
92b9c1b51eSKate Stone         if (section_list) {
93fc7117aeSGreg Clayton           // All sections listed in the dyld image info structure will all
94fc7117aeSGreg Clayton           // either be fixed up already, or they will all be off by a single
9505097246SAdrian Prantl           // slide amount that is determined by finding the first segment that
9605097246SAdrian Prantl           // is at file offset zero which also has bytes (a file size that is
9705097246SAdrian Prantl           // greater than zero) in the object file.
98fc7117aeSGreg Clayton 
99fc7117aeSGreg Clayton           // Determine the slide amount (if any)
100fc7117aeSGreg Clayton           const size_t num_sections = section_list->GetSize();
101fc7117aeSGreg Clayton           size_t sect_idx = 0;
102b9c1b51eSKate Stone           for (sect_idx = 0; sect_idx < num_sections; ++sect_idx) {
10305097246SAdrian Prantl             // Iterate through the object file sections to find the first
10405097246SAdrian Prantl             // section that starts of file offset zero and that has bytes in
10505097246SAdrian Prantl             // the file...
1067820bd1eSGreg Clayton             SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx));
107b9c1b51eSKate Stone             if (section_sp) {
108b9c1b51eSKate Stone               if (m_process->GetTarget().SetSectionLoadAddress(
109b9c1b51eSKate Stone                       section_sp, section_sp->GetFileAddress()))
110fc7117aeSGreg Clayton                 changed = true;
111fc7117aeSGreg Clayton             }
112fc7117aeSGreg Clayton           }
113fc7117aeSGreg Clayton         }
114fc7117aeSGreg Clayton       }
115fc7117aeSGreg Clayton 
116fc7117aeSGreg Clayton       if (changed)
117fc7117aeSGreg Clayton         loaded_module_list.AppendIfNeeded(module_sp);
118fc7117aeSGreg Clayton     }
119fc7117aeSGreg Clayton   }
120fc7117aeSGreg Clayton 
121fc7117aeSGreg Clayton   m_process->GetTarget().ModulesDidLoad(loaded_module_list);
122fc7117aeSGreg Clayton }
123fc7117aeSGreg Clayton 
124fc7117aeSGreg Clayton ThreadPlanSP
125b9c1b51eSKate Stone DynamicLoaderStatic::GetStepThroughTrampolinePlan(Thread &thread,
126b9c1b51eSKate Stone                                                   bool stop_others) {
127fc7117aeSGreg Clayton   return ThreadPlanSP();
128fc7117aeSGreg Clayton }
129fc7117aeSGreg Clayton 
13097206d57SZachary Turner Status DynamicLoaderStatic::CanLoadImage() {
13197206d57SZachary Turner   Status error;
132fc7117aeSGreg Clayton   error.SetErrorString("can't load images on with a static debug session");
133fc7117aeSGreg Clayton   return error;
134fc7117aeSGreg Clayton }
135fc7117aeSGreg Clayton 
136b9c1b51eSKate Stone void DynamicLoaderStatic::Initialize() {
137fc7117aeSGreg Clayton   PluginManager::RegisterPlugin(GetPluginNameStatic(),
138b9c1b51eSKate Stone                                 GetPluginDescriptionStatic(), CreateInstance);
139fc7117aeSGreg Clayton }
140fc7117aeSGreg Clayton 
141b9c1b51eSKate Stone void DynamicLoaderStatic::Terminate() {
142fc7117aeSGreg Clayton   PluginManager::UnregisterPlugin(CreateInstance);
143fc7117aeSGreg Clayton }
144fc7117aeSGreg Clayton 
145b9c1b51eSKate Stone lldb_private::ConstString DynamicLoaderStatic::GetPluginNameStatic() {
14657abc5d6SGreg Clayton   static ConstString g_name("static");
14757abc5d6SGreg Clayton   return g_name;
148fc7117aeSGreg Clayton }
149fc7117aeSGreg Clayton 
150b9c1b51eSKate Stone const char *DynamicLoaderStatic::GetPluginDescriptionStatic() {
151b9c1b51eSKate Stone   return "Dynamic loader plug-in that will load any images at the static "
152b9c1b51eSKate Stone          "addresses contained in each image.";
153fc7117aeSGreg Clayton }
154fc7117aeSGreg Clayton 
155fc7117aeSGreg Clayton // PluginInterface protocol
156b9c1b51eSKate Stone lldb_private::ConstString DynamicLoaderStatic::GetPluginName() {
157fc7117aeSGreg Clayton   return GetPluginNameStatic();
158fc7117aeSGreg Clayton }
159fc7117aeSGreg Clayton 
160b9c1b51eSKate Stone uint32_t DynamicLoaderStatic::GetPluginVersion() { return 1; }
161