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(),
121 section->GetName(), curr_module_sp->GetFileSpec().GetFilename(),
122 ats_pos->second->GetName());
123 }
124 }
125 ats_pos->second = section;
126 } else {
127 m_addr_to_sect.insert({load_addr, section});
128 }
129
130 // Remove the old address->section entry if there was one.
131 if (old_load_addr != LLDB_INVALID_ADDRESS && old_load_addr != load_addr)
132 m_addr_to_sect.erase(old_load_addr);
133
134 return true;
135}
136
138 size_t unload_count = 0;
139
140 if (section_sp) {
142
143 if (log && log->GetVerbose()) {
144 ModuleSP module_sp = section_sp->GetModule();
145 std::string module_name("<Unknown>");
146 if (module_sp) {
147 const FileSpec &module_file_spec(
148 section_sp->GetModule()->GetFileSpec());
149 module_name = module_file_spec.GetPath();
150 }
151 LLDB_LOG(log, "SectionLoadList::{0} (section = {1} ({2}.{3}))",
152 __FUNCTION__, static_cast<void *>(section_sp.get()), module_name,
153 section_sp->GetName());
154 }
155
156 std::lock_guard<std::recursive_mutex> guard(m_mutex);
157
158 sect_to_addr_collection::iterator sta_pos =
159 m_sect_to_addr.find(section_sp.get());
160 if (sta_pos != m_sect_to_addr.end()) {
161 ++unload_count;
162 addr_t load_addr = sta_pos->second;
163 m_sect_to_addr.erase(sta_pos);
164
165 addr_to_sect_collection::iterator ats_pos =
166 m_addr_to_sect.find(load_addr);
167 if (ats_pos != m_addr_to_sect.end())
168 m_addr_to_sect.erase(ats_pos);
169 }
170 }
171 return unload_count;
172}
173
175 addr_t load_addr) {
177
178 if (log && log->GetVerbose()) {
179 ModuleSP module_sp = section_sp->GetModule();
180 std::string module_name("<Unknown>");
181 if (module_sp) {
182 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec());
183 module_name = module_file_spec.GetPath();
184 }
185 LLDB_LOG(log,
186 "SectionLoadList::{0} (section = {1:x} ({2}.{3}), load_addr = "
187 "0x{4,16:x})",
188 __FUNCTION__, static_cast<void *>(section_sp.get()),
189 module_name.c_str(), section_sp->GetName(), load_addr);
190 }
191 bool erased = false;
192 std::lock_guard<std::recursive_mutex> guard(m_mutex);
193 sect_to_addr_collection::iterator sta_pos =
194 m_sect_to_addr.find(section_sp.get());
195 if (sta_pos != m_sect_to_addr.end()) {
196 erased = true;
197 m_sect_to_addr.erase(sta_pos);
198 }
199
200 addr_to_sect_collection::iterator ats_pos = m_addr_to_sect.find(load_addr);
201 if (ats_pos != m_addr_to_sect.end()) {
202 erased = true;
203 m_addr_to_sect.erase(ats_pos);
204 }
205
206 return erased;
207}
208
210 bool allow_section_end) const {
211 // First find the top level section that this load address exists in
212 std::lock_guard<std::recursive_mutex> guard(m_mutex);
213 if (!m_addr_to_sect.empty()) {
214 addr_to_sect_collection::const_iterator pos =
215 m_addr_to_sect.lower_bound(load_addr);
216 if (pos != m_addr_to_sect.end()) {
217 if (load_addr != pos->first && pos != m_addr_to_sect.begin())
218 --pos;
219 const addr_t pos_load_addr = pos->first;
220 if (load_addr >= pos_load_addr) {
221 addr_t offset = load_addr - pos_load_addr;
222 if (offset < pos->second->GetByteSize() + (allow_section_end ? 1 : 0)) {
223 // We have found the top level section, now we need to find the
224 // deepest child section.
225 return pos->second->ResolveContainedAddress(offset, so_addr,
226 allow_section_end);
227 }
228 }
229 } else {
230 // There are no entries that have an address that is >= load_addr, so we
231 // need to check the last entry on our collection.
232 addr_to_sect_collection::const_reverse_iterator rpos =
233 m_addr_to_sect.rbegin();
234 if (load_addr >= rpos->first) {
235 addr_t offset = load_addr - rpos->first;
236 if (offset <
237 rpos->second->GetByteSize() + (allow_section_end ? 1 : 0)) {
238 // We have found the top level section, now we need to find the
239 // deepest child section.
240 return rpos->second->ResolveContainedAddress(offset, so_addr,
241 allow_section_end);
242 }
243 }
244 }
245 }
246 so_addr.Clear();
247 return false;
248}
249
251 std::lock_guard<std::recursive_mutex> guard(m_mutex);
252 addr_to_sect_collection::const_iterator pos, end;
253 for (pos = m_addr_to_sect.begin(), end = m_addr_to_sect.end(); pos != end;
254 ++pos) {
255 s.Printf("addr = 0x%16.16" PRIx64 ", section = %p: ", pos->first,
256 static_cast<void *>(pos->second.get()));
257 pos->second->Dump(s.AsRawOstream(), s.GetIndentLevel(), target, 0);
258 }
259}
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
Definition Log.h:375
#define LLDB_LOG_VERBOSE(log,...)
Definition Log.h:382
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:376
bool GetVerbose() const
Definition Log.cpp:329
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:338
std::shared_ptr< lldb_private::Section > SectionSP
uint64_t addr_t
Definition lldb-types.h:80
std::shared_ptr< lldb_private::Module > ModuleSP