LLDB mainline
SectionLoadList.cpp
Go to the documentation of this file.
1//===-- SectionLoadList.cpp -----------------------------------------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
10
11#include "lldb/Core/Module.h"
12#include "lldb/Core/Section.h"
13#include "lldb/Symbol/Block.h"
14#include "lldb/Symbol/Symbol.h"
17#include "lldb/Utility/Log.h"
18#include "lldb/Utility/Stream.h"
19
20using namespace lldb;
21using namespace lldb_private;
22
25 std::lock_guard<std::recursive_mutex> guard(rhs.m_mutex);
28}
29
31 std::lock(m_mutex, rhs.m_mutex);
32 std::lock_guard<std::recursive_mutex> lhs_guard(m_mutex, std::adopt_lock);
33 std::lock_guard<std::recursive_mutex> rhs_guard(rhs.m_mutex, std::adopt_lock);
36}
37
39 std::lock_guard<std::recursive_mutex> guard(m_mutex);
40 return m_addr_to_sect.empty();
41}
42
44 std::lock_guard<std::recursive_mutex> guard(m_mutex);
45 m_addr_to_sect.clear();
46 m_sect_to_addr.clear();
47}
48
51 // TODO: add support for the same section having multiple load addresses
52 addr_t section_load_addr = LLDB_INVALID_ADDRESS;
53 if (section) {
54 std::lock_guard<std::recursive_mutex> guard(m_mutex);
55 sect_to_addr_collection::const_iterator pos =
56 m_sect_to_addr.find(section.get());
57
58 if (pos != m_sect_to_addr.end())
59 section_load_addr = pos->second;
60 }
61 return section_load_addr;
62}
63
65 addr_t load_addr,
66 bool warn_multiple) {
68 ModuleSP module_sp = section->GetModule();
69
70 if (!module_sp) {
71 LLDB_LOG(log,
72 "SectionLoadList::{0} (section = {1} ({2}), load_addr = {3:x}) "
73 "error: module has been deleted",
74 __FUNCTION__, static_cast<void *>(section.get()),
75 section->GetName(), load_addr);
76 return false;
77 }
78
80 "(section = {0} ({1}.{2}), load_addr = {3:x}) module = {4}",
81 section.get(), module_sp->GetFileSpec(), section->GetName(),
82 load_addr, module_sp.get());
83
84 if (section->GetByteSize() == 0)
85 return false;
86
87 // Fill in the section -> load_addr map.
88 std::lock_guard<std::recursive_mutex> guard(m_mutex);
89 sect_to_addr_collection::iterator sta_pos =
90 m_sect_to_addr.find(section.get());
91 addr_t old_load_addr = LLDB_INVALID_ADDRESS;
92
93 if (sta_pos != m_sect_to_addr.end()) {
94 if (load_addr == sta_pos->second)
95 return false;
96 old_load_addr = sta_pos->second;
97 sta_pos->second = load_addr;
98 } else {
99 m_sect_to_addr.insert({section.get(), load_addr});
100 }
101
102 // Fill in the load_addr -> section map.
103 addr_to_sect_collection::iterator ats_pos = m_addr_to_sect.find(load_addr);
104 if (ats_pos != m_addr_to_sect.end()) {
105 // Some sections are ok to overlap, and for others we should warn. When
106 // we have multiple load addresses that correspond to a section, we will
107 // always attribute the section to the be last section that claims it
108 // exists at that address. Sometimes it is ok for more that one section
109 // to be loaded at a specific load address, and other times it isn't. The
110 // "warn_multiple" parameter tells us if we should warn in this case or
111 // not. The DynamicLoader plug-in subclasses should know which sections
112 // should warn and which shouldn't (darwin shared cache modules all
113 // shared the same "__LINKEDIT" sections, so the dynamic loader can pass
114 // false for "warn_multiple").
115 if (warn_multiple && section != ats_pos->second) {
116 if (ModuleSP curr_module_sp = ats_pos->second->GetModule()) {
117 module_sp->ReportWarning(
118 "address {0:x16} maps to more than one section: {1}.{2} and "
119 "{3}.{4}",
120 load_addr, module_sp->GetFileSpec().GetFilename().GetCString(),
121 section->GetName().GetCString(),
122 curr_module_sp->GetFileSpec().GetFilename().GetCString(),
123 ats_pos->second->GetName().GetCString());
124 }
125 }
126 ats_pos->second = section;
127 } else {
128 m_addr_to_sect.insert({load_addr, section});
129 }
130
131 // Remove the old address->section entry if there was one.
132 if (old_load_addr != LLDB_INVALID_ADDRESS && old_load_addr != load_addr)
133 m_addr_to_sect.erase(old_load_addr);
134
135 return true;
136}
137
139 size_t unload_count = 0;
140
141 if (section_sp) {
143
144 if (log && log->GetVerbose()) {
145 ModuleSP module_sp = section_sp->GetModule();
146 std::string module_name("<Unknown>");
147 if (module_sp) {
148 const FileSpec &module_file_spec(
149 section_sp->GetModule()->GetFileSpec());
150 module_name = module_file_spec.GetPath();
151 }
152 LLDB_LOG(log, "SectionLoadList::{0} (section = {1} ({2}.{3}))",
153 __FUNCTION__, static_cast<void *>(section_sp.get()), module_name,
154 section_sp->GetName());
155 }
156
157 std::lock_guard<std::recursive_mutex> guard(m_mutex);
158
159 sect_to_addr_collection::iterator sta_pos =
160 m_sect_to_addr.find(section_sp.get());
161 if (sta_pos != m_sect_to_addr.end()) {
162 ++unload_count;
163 addr_t load_addr = sta_pos->second;
164 m_sect_to_addr.erase(sta_pos);
165
166 addr_to_sect_collection::iterator ats_pos =
167 m_addr_to_sect.find(load_addr);
168 if (ats_pos != m_addr_to_sect.end())
169 m_addr_to_sect.erase(ats_pos);
170 }
171 }
172 return unload_count;
173}
174
176 addr_t load_addr) {
178
179 if (log && log->GetVerbose()) {
180 ModuleSP module_sp = section_sp->GetModule();
181 std::string module_name("<Unknown>");
182 if (module_sp) {
183 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec());
184 module_name = module_file_spec.GetPath();
185 }
186 LLDB_LOGF(
187 log,
188 "SectionLoadList::%s (section = %p (%s.%s), load_addr = 0x%16.16" PRIx64
189 ")",
190 __FUNCTION__, static_cast<void *>(section_sp.get()),
191 module_name.c_str(), section_sp->GetName().AsCString(""), load_addr);
192 }
193 bool erased = false;
194 std::lock_guard<std::recursive_mutex> guard(m_mutex);
195 sect_to_addr_collection::iterator sta_pos =
196 m_sect_to_addr.find(section_sp.get());
197 if (sta_pos != m_sect_to_addr.end()) {
198 erased = true;
199 m_sect_to_addr.erase(sta_pos);
200 }
201
202 addr_to_sect_collection::iterator ats_pos = m_addr_to_sect.find(load_addr);
203 if (ats_pos != m_addr_to_sect.end()) {
204 erased = true;
205 m_addr_to_sect.erase(ats_pos);
206 }
207
208 return erased;
209}
210
212 bool allow_section_end) const {
213 // First find the top level section that this load address exists in
214 std::lock_guard<std::recursive_mutex> guard(m_mutex);
215 if (!m_addr_to_sect.empty()) {
216 addr_to_sect_collection::const_iterator pos =
217 m_addr_to_sect.lower_bound(load_addr);
218 if (pos != m_addr_to_sect.end()) {
219 if (load_addr != pos->first && pos != m_addr_to_sect.begin())
220 --pos;
221 const addr_t pos_load_addr = pos->first;
222 if (load_addr >= pos_load_addr) {
223 addr_t offset = load_addr - pos_load_addr;
224 if (offset < pos->second->GetByteSize() + (allow_section_end ? 1 : 0)) {
225 // We have found the top level section, now we need to find the
226 // deepest child section.
227 return pos->second->ResolveContainedAddress(offset, so_addr,
228 allow_section_end);
229 }
230 }
231 } else {
232 // There are no entries that have an address that is >= load_addr, so we
233 // need to check the last entry on our collection.
234 addr_to_sect_collection::const_reverse_iterator rpos =
235 m_addr_to_sect.rbegin();
236 if (load_addr >= rpos->first) {
237 addr_t offset = load_addr - rpos->first;
238 if (offset <
239 rpos->second->GetByteSize() + (allow_section_end ? 1 : 0)) {
240 // We have found the top level section, now we need to find the
241 // deepest child section.
242 return rpos->second->ResolveContainedAddress(offset, so_addr,
243 allow_section_end);
244 }
245 }
246 }
247 }
248 so_addr.Clear();
249 return false;
250}
251
253 std::lock_guard<std::recursive_mutex> guard(m_mutex);
254 addr_to_sect_collection::const_iterator pos, end;
255 for (pos = m_addr_to_sect.begin(), end = m_addr_to_sect.end(); pos != end;
256 ++pos) {
257 s.Printf("addr = 0x%16.16" PRIx64 ", section = %p: ", pos->first,
258 static_cast<void *>(pos->second.get()));
259 pos->second->Dump(s.AsRawOstream(), s.GetIndentLevel(), target, 0);
260 }
261}
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
Definition Log.h:364
#define LLDB_LOGF(log,...)
Definition Log.h:378
#define LLDB_LOG_VERBOSE(log,...)
Definition Log.h:371
A section + offset based address class.
Definition Address.h:62
void Clear()
Clear the object's state.
Definition Address.h:181
A file utility class.
Definition FileSpec.h:57
size_t GetPath(char *path, size_t max_path_length, bool denormalize=true) const
Extract the full path to the file.
Definition FileSpec.cpp:374
bool GetVerbose() const
Definition Log.cpp:300
void Dump(Stream &s, Target *target)
bool SetSectionUnloaded(const lldb::SectionSP &section_sp, lldb::addr_t load_addr)
void operator=(const SectionLoadList &rhs)
bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr, bool allow_section_end=false) const
std::recursive_mutex m_mutex
addr_to_sect_collection m_addr_to_sect
bool SetSectionLoadAddress(const lldb::SectionSP &section_sp, lldb::addr_t load_addr, bool warn_multiple=false)
lldb::addr_t GetSectionLoadAddress(const lldb::SectionSP &section_sp) const
sect_to_addr_collection m_sect_to_addr
A stream class that can stream formatted output to a file.
Definition Stream.h:28
llvm::raw_ostream & AsRawOstream()
Returns a raw_ostream that forwards the data to this Stream object.
Definition Stream.h:405
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition Stream.cpp:134
unsigned GetIndentLevel() const
Get the current indentation level.
Definition Stream.cpp:193
#define LLDB_INVALID_ADDRESS
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition Log.h:327
std::shared_ptr< lldb_private::Section > SectionSP
uint64_t addr_t
Definition lldb-types.h:80
std::shared_ptr< lldb_private::Module > ModuleSP