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) {
72 log, "(section = {0} ({1}.{2}), load_addr = {3:x}) module = {4}",
73 section.get(), module_sp->GetFileSpec(), section->GetName(), load_addr,
74 module_sp.get());
75
76 if (section->GetByteSize() == 0)
77 return false; // No change
78
79 // Fill in the section -> load_addr map
80 std::lock_guard<std::recursive_mutex> guard(m_mutex);
81 sect_to_addr_collection::iterator sta_pos =
82 m_sect_to_addr.find(section.get());
83 if (sta_pos != m_sect_to_addr.end()) {
84 if (load_addr == sta_pos->second)
85 return false; // No change...
86 else
87 sta_pos->second = load_addr;
88 } else
89 m_sect_to_addr[section.get()] = load_addr;
90
91 // Fill in the load_addr -> section map
92 addr_to_sect_collection::iterator ats_pos = m_addr_to_sect.find(load_addr);
93 if (ats_pos != m_addr_to_sect.end()) {
94 // Some sections are ok to overlap, and for others we should warn. When
95 // we have multiple load addresses that correspond to a section, we will
96 // always attribute the section to the be last section that claims it
97 // exists at that address. Sometimes it is ok for more that one section
98 // to be loaded at a specific load address, and other times it isn't. The
99 // "warn_multiple" parameter tells us if we should warn in this case or
100 // not. The DynamicLoader plug-in subclasses should know which sections
101 // should warn and which shouldn't (darwin shared cache modules all
102 // shared the same "__LINKEDIT" sections, so the dynamic loader can pass
103 // false for "warn_multiple").
104 if (warn_multiple && section != ats_pos->second) {
105 ModuleSP module_sp(section->GetModule());
106 if (module_sp) {
107 ModuleSP curr_module_sp(ats_pos->second->GetModule());
108 if (curr_module_sp) {
109 module_sp->ReportWarning(
110 "address {0:x16} maps to more than one section: {1}.{2} and "
111 "{3}.{4}",
112 load_addr, module_sp->GetFileSpec().GetFilename().GetCString(),
113 section->GetName().GetCString(),
114 curr_module_sp->GetFileSpec().GetFilename().GetCString(),
115 ats_pos->second->GetName().GetCString());
116 }
117 }
118 }
119 ats_pos->second = section;
120 } else {
121 // Remove the old address->section entry, if
122 // there is one.
123 for (const auto &entry : m_addr_to_sect) {
124 if (entry.second == section) {
125 const auto &it_pos = m_addr_to_sect.find(entry.first);
126 m_addr_to_sect.erase(it_pos);
127 break;
128 }
129 }
130 m_addr_to_sect[load_addr] = section;
131 }
132 return true; // Changed
133
134 } else {
135 LLDB_LOGF(
136 log,
137 "SectionLoadList::%s (section = %p (%s), load_addr = 0x%16.16" PRIx64
138 ") error: module has been deleted",
139 __FUNCTION__, static_cast<void *>(section.get()),
140 section->GetName().AsCString(), load_addr);
141 }
142 return false;
143}
144
146 size_t unload_count = 0;
147
148 if (section_sp) {
150
151 if (log && log->GetVerbose()) {
152 ModuleSP module_sp = section_sp->GetModule();
153 std::string module_name("<Unknown>");
154 if (module_sp) {
155 const FileSpec &module_file_spec(
156 section_sp->GetModule()->GetFileSpec());
157 module_name = module_file_spec.GetPath();
158 }
159 LLDB_LOGF(log, "SectionLoadList::%s (section = %p (%s.%s))", __FUNCTION__,
160 static_cast<void *>(section_sp.get()), module_name.c_str(),
161 section_sp->GetName().AsCString());
162 }
163
164 std::lock_guard<std::recursive_mutex> guard(m_mutex);
165
166 sect_to_addr_collection::iterator sta_pos =
167 m_sect_to_addr.find(section_sp.get());
168 if (sta_pos != m_sect_to_addr.end()) {
169 ++unload_count;
170 addr_t load_addr = sta_pos->second;
171 m_sect_to_addr.erase(sta_pos);
172
173 addr_to_sect_collection::iterator ats_pos =
174 m_addr_to_sect.find(load_addr);
175 if (ats_pos != m_addr_to_sect.end())
176 m_addr_to_sect.erase(ats_pos);
177 }
178 }
179 return unload_count;
180}
181
183 addr_t load_addr) {
185
186 if (log && log->GetVerbose()) {
187 ModuleSP module_sp = section_sp->GetModule();
188 std::string module_name("<Unknown>");
189 if (module_sp) {
190 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec());
191 module_name = module_file_spec.GetPath();
192 }
193 LLDB_LOGF(
194 log,
195 "SectionLoadList::%s (section = %p (%s.%s), load_addr = 0x%16.16" PRIx64
196 ")",
197 __FUNCTION__, static_cast<void *>(section_sp.get()),
198 module_name.c_str(), section_sp->GetName().AsCString(), load_addr);
199 }
200 bool erased = false;
201 std::lock_guard<std::recursive_mutex> guard(m_mutex);
202 sect_to_addr_collection::iterator sta_pos =
203 m_sect_to_addr.find(section_sp.get());
204 if (sta_pos != m_sect_to_addr.end()) {
205 erased = true;
206 m_sect_to_addr.erase(sta_pos);
207 }
208
209 addr_to_sect_collection::iterator ats_pos = m_addr_to_sect.find(load_addr);
210 if (ats_pos != m_addr_to_sect.end()) {
211 erased = true;
212 m_addr_to_sect.erase(ats_pos);
213 }
214
215 return erased;
216}
217
219 bool allow_section_end) const {
220 // First find the top level section that this load address exists in
221 std::lock_guard<std::recursive_mutex> guard(m_mutex);
222 if (!m_addr_to_sect.empty()) {
223 addr_to_sect_collection::const_iterator pos =
224 m_addr_to_sect.lower_bound(load_addr);
225 if (pos != m_addr_to_sect.end()) {
226 if (load_addr != pos->first && pos != m_addr_to_sect.begin())
227 --pos;
228 const addr_t pos_load_addr = pos->first;
229 if (load_addr >= pos_load_addr) {
230 addr_t offset = load_addr - pos_load_addr;
231 if (offset < pos->second->GetByteSize() + (allow_section_end ? 1 : 0)) {
232 // We have found the top level section, now we need to find the
233 // deepest child section.
234 return pos->second->ResolveContainedAddress(offset, so_addr,
235 allow_section_end);
236 }
237 }
238 } else {
239 // There are no entries that have an address that is >= load_addr, so we
240 // need to check the last entry on our collection.
241 addr_to_sect_collection::const_reverse_iterator rpos =
242 m_addr_to_sect.rbegin();
243 if (load_addr >= rpos->first) {
244 addr_t offset = load_addr - rpos->first;
245 if (offset <
246 rpos->second->GetByteSize() + (allow_section_end ? 1 : 0)) {
247 // We have found the top level section, now we need to find the
248 // deepest child section.
249 return rpos->second->ResolveContainedAddress(offset, so_addr,
250 allow_section_end);
251 }
252 }
253 }
254 }
255 so_addr.Clear();
256 return false;
257}
258
260 std::lock_guard<std::recursive_mutex> guard(m_mutex);
261 addr_to_sect_collection::const_iterator pos, end;
262 for (pos = m_addr_to_sect.begin(), end = m_addr_to_sect.end(); pos != end;
263 ++pos) {
264 s.Printf("addr = 0x%16.16" PRIx64 ", section = %p: ", pos->first,
265 static_cast<void *>(pos->second.get()));
266 pos->second->Dump(s.AsRawOstream(), s.GetIndentLevel(), target, 0);
267 }
268}
#define LLDB_LOGF(log,...)
Definition Log.h:383
#define LLDB_LOG_VERBOSE(log,...)
Definition Log.h:376
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:326
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:418
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:332
std::shared_ptr< lldb_private::Section > SectionSP
uint64_t addr_t
Definition lldb-types.h:80
std::shared_ptr< lldb_private::Module > ModuleSP