LLDB mainline
ObjectFile.cpp
Go to the documentation of this file.
1//===-- ObjectFile.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#include "lldb/Core/Module.h"
13#include "lldb/Core/Section.h"
17#include "lldb/Target/Process.h"
19#include "lldb/Target/Target.h"
23#include "lldb/Utility/Log.h"
24#include "lldb/Utility/Timer.h"
25#include "lldb/lldb-private.h"
26
27#include "llvm/Support/DJB.h"
28
29using namespace lldb;
30using namespace lldb_private;
31
34
35static ObjectFileSP
37 lldb::offset_t file_offset, lldb::offset_t file_size,
38 DataBufferSP data_sp, lldb::offset_t &data_offset) {
40 std::unique_ptr<ObjectContainer> object_container_up(cbs.create_callback(
41 module_sp, data_sp, data_offset, file, file_offset, file_size));
42 if (object_container_up)
43 return object_container_up->GetObjectFile(file);
44 }
45 return {};
46}
47
49 const FileSpec *file,
50 lldb::offset_t file_offset,
51 lldb::offset_t file_size,
52 DataExtractorSP extractor_sp,
53 lldb::offset_t &data_offset) {
55 "ObjectFile::FindPlugin (module = %s, file = %p, file_offset = "
56 "0x%8.8" PRIx64 ", file_size = 0x%8.8" PRIx64 ")",
57 module_sp->GetFileSpec().GetPath().c_str(),
58 static_cast<const void *>(file), static_cast<uint64_t>(file_offset),
59 static_cast<uint64_t>(file_size));
60
61 if (!module_sp)
62 return {};
63
64 if (!file)
65 return {};
66
67 if (!extractor_sp || !extractor_sp->HasData()) {
68 const bool file_exists = FileSystem::Instance().Exists(*file);
69 // We have an object name which most likely means we have a .o file in
70 // a static archive (.a file). Try and see if we have a cached archive
71 // first without reading any data first
72 if (file_exists && module_sp->GetObjectName()) {
74 module_sp, file, file_offset, file_size, DataBufferSP(), data_offset);
75 if (object_file_sp)
76 return object_file_sp;
77 }
78 // Ok, we didn't find any containers that have a named object, now lets
79 // read the first 512 bytes from the file so the object file and object
80 // container plug-ins can use these bytes to see if they can parse this
81 // file.
82 if (file_size > 0) {
83 // Check that we made a data buffer. For instance, a directory node is
84 // not 0 size, but we can't make a data buffer for it.
85 if (DataBufferSP buffer_sp = FileSystem::Instance().CreateDataBuffer(
86 file->GetPath(), g_initial_bytes_to_read, file_offset)) {
87 extractor_sp = std::make_shared<DataExtractor>(buffer_sp);
88 data_offset = 0;
89 }
90 }
91 }
92
93 if (!extractor_sp || !extractor_sp->HasData()) {
94 // Check for archive file with format "/path/to/archive.a(object.o)"
95 llvm::SmallString<256> path_with_object;
96 module_sp->GetFileSpec().GetPath(path_with_object);
97
98 FileSpec archive_file;
99 ConstString archive_object;
100 const bool must_exist = true;
101 if (ObjectFile::SplitArchivePathWithObject(path_with_object, archive_file,
102 archive_object, must_exist)) {
103 file_size = FileSystem::Instance().GetByteSize(archive_file);
104 if (file_size > 0) {
105 file = &archive_file;
106 module_sp->SetFileSpecAndObjectName(archive_file, archive_object);
107 // Check if this is a object container by iterating through all
108 // object container plugin instances and then trying to get an
109 // object file from the container plugins since we had a name.
110 // Also, don't read
111 // ANY data in case there is data cached in the container plug-ins
112 // (like BSD archives caching the contained objects within an
113 // file).
115 module_sp, file, file_offset, file_size,
116 extractor_sp->GetSharedDataBuffer(), data_offset);
117 if (object_file_sp)
118 return object_file_sp;
119 // We failed to find any cached object files in the container plug-
120 // ins, so lets read the first 512 bytes and try again below...
122 archive_file.GetPath(), g_initial_bytes_to_read, file_offset);
123 extractor_sp = std::make_shared<DataExtractor>(buffer_sp);
124 }
125 }
126 }
127
128 if (extractor_sp && extractor_sp->HasData()) {
129 // Check if this is a normal object file by iterating through all
130 // object file plugin instances.
131 for (auto &cbs : PluginManager::GetObjectFileCallbacks()) {
132 // Make a copy of the extractor in case any plugin modifies it while
133 // processing.
134 DataExtractorSP extractor_copy_sp = extractor_sp->Clone();
135 ObjectFileSP object_file_sp(
136 cbs.create_callback(module_sp, extractor_copy_sp, data_offset, file,
137 file_offset, file_size));
138 if (object_file_sp.get())
139 return object_file_sp;
140 }
141
142 // Check if this is a object container by iterating through all object
143 // container plugin instances and then trying to get an object file
144 // from the container.
145 DataBufferSP buffer_sp = extractor_sp->GetSharedDataBuffer();
147 module_sp, file, file_offset, file_size, buffer_sp, data_offset);
148 if (object_file_sp)
149 return object_file_sp;
150 }
151
152 // We didn't find it, so clear our shared pointer in case it contains
153 // anything and return an empty shared pointer
154 return {};
155}
156
158 const ProcessSP &process_sp,
159 lldb::addr_t header_addr,
160 WritableDataBufferSP data_sp) {
161 ObjectFileSP object_file_sp;
162
163 if (module_sp) {
164 LLDB_SCOPED_TIMERF("ObjectFile::FindPlugin (module = "
165 "%s, process = %p, header_addr = "
166 "0x%" PRIx64 ")",
167 module_sp->GetFileSpec().GetPath().c_str(),
168 static_cast<void *>(process_sp.get()), header_addr);
169
170 // Check if this is a normal object file by iterating through all object
171 // file plugin instances.
172 for (auto &cbs : PluginManager::GetObjectFileCallbacks()) {
173 if (!cbs.create_memory_callback)
174 continue;
175 object_file_sp.reset(cbs.create_memory_callback(module_sp, data_sp,
176 process_sp, header_addr));
177 if (object_file_sp.get())
178 return object_file_sp;
179 }
180 }
181
182 // We didn't find it, so clear our shared pointer in case it contains
183 // anything and return an empty shared pointer
184 object_file_sp.reset();
185 return object_file_sp;
186}
187
189 DataExtractorSP extractor_sp;
190 offset_t data_offset = 0;
191 ModuleSP module_sp = std::make_shared<Module>(file_spec);
192 return static_cast<bool>(ObjectFile::FindPlugin(
193 module_sp, &file_spec, 0, FileSystem::Instance().GetByteSize(file_spec),
194 extractor_sp, data_offset));
195}
196
198 lldb::offset_t file_offset,
199 lldb::offset_t file_size,
200 ModuleSpecList &specs,
201 DataExtractorSP extractor_sp) {
202 if (!extractor_sp)
203 extractor_sp = std::make_shared<DataExtractor>();
204 if (!extractor_sp->HasData()) {
205 if (DataBufferSP file_data_sp = FileSystem::Instance().CreateDataBuffer(
206 file.GetPath(), g_initial_bytes_to_read, file_offset))
207 extractor_sp->SetData(file_data_sp);
208 }
209 if (extractor_sp->HasData()) {
210 if (file_size == 0) {
211 const lldb::offset_t actual_file_size =
213 if (actual_file_size > file_offset)
214 file_size = actual_file_size - file_offset;
215 }
216 return ObjectFile::GetModuleSpecifications(file, // file spec
217 extractor_sp, // data bytes
218 0, // data offset
219 file_offset, // file offset
220 file_size, // file length
221 specs);
222 }
223 return 0;
224}
225
227 const lldb_private::FileSpec &file, lldb::DataExtractorSP &extractor_sp,
228 lldb::offset_t data_offset, lldb::offset_t file_offset,
230 const size_t initial_count = specs.GetSize();
231 // Try the ObjectFile plug-ins
232 for (auto &cbs : PluginManager::GetObjectFileCallbacks()) {
233 if (cbs.get_module_specifications(file, extractor_sp, data_offset,
234 file_offset, file_size, specs) > 0)
235 return specs.GetSize() - initial_count;
236 }
237
238 // Try the ObjectContainer plug-ins
240 if (cbs.get_module_specifications(file, extractor_sp, data_offset,
241 file_offset, file_size, specs) > 0)
242 return specs.GetSize() - initial_count;
243 }
244 return 0;
245}
246
248 const FileSpec *file_spec_ptr,
249 lldb::offset_t file_offset, lldb::offset_t length,
250 lldb::DataExtractorSP extractor_sp,
251 lldb::offset_t data_offset)
252 : ModuleChild(module_sp),
253 m_file(), // This file could be different from the original module's file
255 m_file_offset(file_offset), m_length(length),
256 m_data_nsp(std::make_shared<DataExtractor>()), m_process_wp(),
258 m_symtab_once_up(new llvm::once_flag()) {
259 if (file_spec_ptr)
260 m_file = *file_spec_ptr;
261 if (extractor_sp && extractor_sp->HasData()) {
262 m_data_nsp = extractor_sp;
263 // The offset & length fields may be specifying a subset of the
264 // total data buffer.
265 m_data_nsp->SetData(extractor_sp->GetSharedDataBuffer(), data_offset,
266 length);
267 }
268 Log *log = GetLog(LLDBLog::Object);
269 LLDB_LOGF(log,
270 "%p ObjectFile::ObjectFile() module = %p (%s), file = %s, "
271 "file_offset = 0x%8.8" PRIx64 ", size = %" PRIu64,
272 static_cast<void *>(this), static_cast<void *>(module_sp.get()),
273 module_sp->GetSpecificationDescription().c_str(),
274 m_file ? m_file.GetPath().c_str() : "<NULL>", m_file_offset,
275 m_length);
276}
277
279 const ProcessSP &process_sp, lldb::addr_t header_addr,
280 DataExtractorSP header_extractor_sp)
281 : ModuleChild(module_sp), m_file(), m_type(eTypeInvalid),
283 m_data_nsp(std::make_shared<DataExtractor>()), m_process_wp(process_sp),
284 m_memory_addr(header_addr), m_sections_up(), m_symtab_up(),
285 m_symtab_once_up(new llvm::once_flag()) {
286 if (header_extractor_sp && header_extractor_sp->HasData())
287 m_data_nsp = header_extractor_sp;
288 Log *log = GetLog(LLDBLog::Object);
289 LLDB_LOGF(log,
290 "%p ObjectFile::ObjectFile() module = %p (%s), process = %p, "
291 "header_addr = 0x%" PRIx64,
292 static_cast<void *>(this), static_cast<void *>(module_sp.get()),
293 module_sp->GetSpecificationDescription().c_str(),
294 static_cast<void *>(process_sp.get()), m_memory_addr);
295}
296
298 Log *log = GetLog(LLDBLog::Object);
299 LLDB_LOGF(log, "%p ObjectFile::~ObjectFile ()\n", static_cast<void *>(this));
300}
301
303 ModuleSP module_sp(GetModule());
304 if (module_sp)
305 return module_sp->SetArchitecture(new_arch);
306 return false;
307}
308
310 Symtab *symtab = GetSymtab();
311 if (symtab) {
312 const Symbol *symbol = symtab->FindSymbolContainingFileAddress(file_addr);
313 if (symbol) {
314 if (symbol->ValueIsAddress()) {
315 const SectionSP section_sp(symbol->GetAddressRef().GetSection());
316 if (section_sp) {
317 const SectionType section_type = section_sp->GetType();
318 switch (section_type) {
321 case eSectionTypeCode:
322 return AddressClass::eCode;
325 case eSectionTypeData:
337 return AddressClass::eData;
373 case eSectionTypeCTF:
391 // In case of absolute sections decide the address class based on
392 // the symbol type because the section type isn't specify if it is
393 // a code or a data section.
394 break;
395 }
396 }
397 }
398
399 const SymbolType symbol_type = symbol->GetType();
400 switch (symbol_type) {
401 case eSymbolTypeAny:
405 case eSymbolTypeCode:
406 return AddressClass::eCode;
408 return AddressClass::eCode;
410 return AddressClass::eCode;
411 case eSymbolTypeData:
412 return AddressClass::eData;
425 case eSymbolTypeBlock:
427 case eSymbolTypeLocal:
428 return AddressClass::eData;
429 case eSymbolTypeParam:
430 return AddressClass::eData;
432 return AddressClass::eData;
459 }
460 }
461 }
463}
464
466 lldb::addr_t addr,
467 size_t byte_size) {
468 WritableDataBufferSP data_sp;
469 if (process_sp) {
470 std::unique_ptr<DataBufferHeap> data_up(new DataBufferHeap(byte_size, 0));
472 const size_t bytes_read = process_sp->ReadMemory(
473 addr, data_up->GetBytes(), data_up->GetByteSize(), error);
474 if (bytes_read == byte_size)
475 data_sp.reset(data_up.release());
476 }
477 return data_sp;
478}
479
480size_t ObjectFile::GetData(lldb::offset_t offset, size_t length,
481 DataExtractorSP &data_sp) const {
482 // The entire file has already been mmap'ed into m_data_nsp, so just copy from
483 // there as the back mmap buffer will be shared with shared pointers.
484 data_sp = m_data_nsp->GetSubsetExtractorSP(offset, length);
485 return data_sp->GetByteSize();
486}
487
488size_t ObjectFile::CopyData(lldb::offset_t offset, size_t length,
489 void *dst) const {
490 // The entire file has already been mmap'ed into m_data_nsp, so just copy from
491 // there Note that the data remains in target byte order.
492 return m_data_nsp->CopyData(offset, length, dst);
493}
494
496 lldb::offset_t section_offset, void *dst,
497 size_t dst_len) {
498 assert(section);
499
500 // If some other objectfile owns this data, pass this to them.
501 if (section->GetObjectFile() != this)
502 return section->GetObjectFile()->ReadSectionData(section, section_offset,
503 dst, dst_len);
504
505 if (!section->IsRelocated())
506 RelocateSection(section);
507
508 if (IsInMemory()) {
509 ProcessSP process_sp(m_process_wp.lock());
510 if (process_sp) {
512 const addr_t base_load_addr =
513 section->GetLoadBaseAddress(&process_sp->GetTarget());
514 if (base_load_addr != LLDB_INVALID_ADDRESS)
515 return process_sp->ReadMemory(base_load_addr + section_offset, dst,
516 dst_len, error);
517 }
518 } else {
519 const lldb::offset_t section_file_size = section->GetFileSize();
520 if (section_offset < section_file_size) {
521 const size_t section_bytes_left = section_file_size - section_offset;
522 size_t section_dst_len = dst_len;
523 if (section_dst_len > section_bytes_left)
524 section_dst_len = section_bytes_left;
525 return CopyData(section->GetFileOffset() + section_offset,
526 section_dst_len, dst);
527 } else {
528 if (section->GetType() == eSectionTypeZeroFill) {
529 const uint64_t section_size = section->GetByteSize();
530 const uint64_t section_bytes_left = section_size - section_offset;
531 uint64_t section_dst_len = dst_len;
532 if (section_dst_len > section_bytes_left)
533 section_dst_len = section_bytes_left;
534 memset(dst, 0, section_dst_len);
535 return section_dst_len;
536 }
537 }
538 }
539 return 0;
540}
541
542// Get the section data the file on disk
544 DataExtractor &section_data) {
545 // If some other objectfile owns this data, pass this to them.
546 if (section->GetObjectFile() != this)
547 return section->GetObjectFile()->ReadSectionData(section, section_data);
548
549 if (!section->IsRelocated())
550 RelocateSection(section);
551
552 if (IsInMemory()) {
553 ProcessSP process_sp(m_process_wp.lock());
554 if (process_sp) {
555 const addr_t base_load_addr =
556 section->GetLoadBaseAddress(&process_sp->GetTarget());
557 if (base_load_addr != LLDB_INVALID_ADDRESS) {
558 DataBufferSP data_sp(
559 ReadMemory(process_sp, base_load_addr, section->GetByteSize()));
560 if (data_sp) {
561 section_data.SetData(data_sp, 0, data_sp->GetByteSize());
562 section_data.SetByteOrder(process_sp->GetByteOrder());
563 section_data.SetAddressByteSize(process_sp->GetAddressByteSize());
564 return section_data.GetByteSize();
565 }
566 }
567 }
568 }
569
570 // The object file now contains a full mmap'ed copy of the object file
571 // data, so just use this
572 DataExtractorSP extractor_sp;
573 size_t ret_size = GetData(section->GetFileOffset(),
574 GetSectionDataSize(section), extractor_sp);
575 section_data = *extractor_sp;
576 return ret_size;
577}
578
579bool ObjectFile::SplitArchivePathWithObject(llvm::StringRef path_with_object,
580 FileSpec &archive_file,
581 ConstString &archive_object,
582 bool must_exist) {
583 size_t len = path_with_object.size();
584 if (len < 2 || path_with_object.back() != ')')
585 return false;
586 llvm::StringRef archive = path_with_object.substr(0, path_with_object.rfind('('));
587 if (archive.empty())
588 return false;
589 llvm::StringRef object = path_with_object.substr(archive.size() + 1).drop_back();
590 archive_file.SetFile(archive, FileSpec::Style::native);
591 if (must_exist && !FileSystem::Instance().Exists(archive_file))
592 return false;
593 archive_object.SetString(object);
594 return true;
595}
596
598 ModuleSP module_sp(GetModule());
599 if (module_sp) {
600 Log *log = GetLog(LLDBLog::Object);
601 LLDB_LOGF(log, "%p ObjectFile::ClearSymtab () symtab = %p",
602 static_cast<void *>(this),
603 static_cast<void *>(m_symtab_up.get()));
604 // Since we need to clear the symbol table, we need a new llvm::once_flag
605 // instance so we can safely create another symbol table
606 m_symtab_once_up.reset(new llvm::once_flag());
607 m_symtab_up.reset();
608 }
609}
610
611SectionList *ObjectFile::GetSectionList(bool update_module_section_list) {
612 if (m_sections_up == nullptr) {
613 if (update_module_section_list) {
614 ModuleSP module_sp(GetModule());
615 if (module_sp) {
616 std::lock_guard<std::recursive_mutex> guard(module_sp->GetMutex());
617 CreateSections(*module_sp->GetUnifiedSectionList());
618 }
619 } else {
620 SectionList unified_section_list;
621 CreateSections(unified_section_list);
622 }
623 }
624 return m_sections_up.get();
625}
626
629 lldb::SymbolType symbol_type_hint) {
630 if (!name.empty()) {
631 if (name.starts_with("_OBJC_")) {
632 // ObjC
633 if (name.starts_with("_OBJC_CLASS_$_"))
635 if (name.starts_with("_OBJC_METACLASS_$_"))
637 if (name.starts_with("_OBJC_IVAR_$_"))
639 } else if (name.starts_with(".objc_class_name_")) {
640 // ObjC v1
642 }
643 }
644 return symbol_type_hint;
645}
646
649 return llvm::StringSwitch<SectionType>(name)
650 .Case("abbrev", eSectionTypeDWARFDebugAbbrev)
651 .Case("abbrev.dwo", eSectionTypeDWARFDebugAbbrevDwo)
652 .Case("addr", eSectionTypeDWARFDebugAddr)
653 .Case("aranges", eSectionTypeDWARFDebugAranges)
654 .Case("cu_index", eSectionTypeDWARFDebugCuIndex)
655 .Case("frame", eSectionTypeDWARFDebugFrame)
656 .Case("info", eSectionTypeDWARFDebugInfo)
657 .Case("info.dwo", eSectionTypeDWARFDebugInfoDwo)
658 .Cases({"line", "line.dwo"}, eSectionTypeDWARFDebugLine)
659 .Cases({"line_str", "line_str.dwo"}, eSectionTypeDWARFDebugLineStr)
660 .Case("loc", eSectionTypeDWARFDebugLoc)
661 .Case("loc.dwo", eSectionTypeDWARFDebugLocDwo)
662 .Case("loclists", eSectionTypeDWARFDebugLocLists)
663 .Case("loclists.dwo", eSectionTypeDWARFDebugLocListsDwo)
664 .Case("macinfo", eSectionTypeDWARFDebugMacInfo)
665 .Cases({"macro", "macro.dwo"}, eSectionTypeDWARFDebugMacro)
666 .Case("names", eSectionTypeDWARFDebugNames)
667 .Case("pubnames", eSectionTypeDWARFDebugPubNames)
668 .Case("pubtypes", eSectionTypeDWARFDebugPubTypes)
669 .Case("ranges", eSectionTypeDWARFDebugRanges)
670 .Case("rnglists", eSectionTypeDWARFDebugRngLists)
671 .Case("rnglists.dwo", eSectionTypeDWARFDebugRngListsDwo)
672 .Case("str", eSectionTypeDWARFDebugStr)
673 .Case("str.dwo", eSectionTypeDWARFDebugStrDwo)
674 .Cases({"str_offsets", "str_offs"}, eSectionTypeDWARFDebugStrOffsets)
675 .Case("str_offsets.dwo", eSectionTypeDWARFDebugStrOffsetsDwo)
676 .Case("tu_index", eSectionTypeDWARFDebugTuIndex)
677 .Case("types", eSectionTypeDWARFDebugTypes)
678 .Case("types.dwo", eSectionTypeDWARFDebugTypesDwo)
679 .Default(eSectionTypeOther);
680}
681
682std::vector<ObjectFile::LoadableData>
684 std::vector<LoadableData> loadables;
685 SectionList *section_list = GetSectionList();
686 if (!section_list)
687 return loadables;
688 // Create a list of loadable data from loadable sections
689 size_t section_count = section_list->GetNumSections(0);
690 for (size_t i = 0; i < section_count; ++i) {
691 LoadableData loadable;
692 SectionSP section_sp = section_list->GetSectionAtIndex(i);
693 loadable.Dest = target.GetSectionLoadAddress(section_sp);
694 if (loadable.Dest == LLDB_INVALID_ADDRESS)
695 continue;
696 // We can skip sections like bss
697 if (section_sp->GetFileSize() == 0)
698 continue;
699 DataExtractor section_data;
700 section_sp->GetSectionData(section_data);
701 loadable.Contents = section_data.GetData();
702 loadables.push_back(loadable);
703 }
704 return loadables;
705}
706
707std::unique_ptr<CallFrameInfo> ObjectFile::CreateCallFrameInfo() {
708 return {};
709}
710
714
716 uint64_t Offset) {
717 return FileSystem::Instance().CreateDataBuffer(file.GetPath(), Size, Offset);
718}
719
720void llvm::format_provider<ObjectFile::Type>::format(
721 const ObjectFile::Type &type, raw_ostream &OS, StringRef Style) {
722 switch (type) {
724 OS << "invalid";
725 break;
727 OS << "core file";
728 break;
730 OS << "executable";
731 break;
733 OS << "debug info";
734 break;
736 OS << "dynamic linker";
737 break;
739 OS << "object file";
740 break;
742 OS << "shared library";
743 break;
745 OS << "stub library";
746 break;
748 OS << "jit";
749 break;
751 OS << "unknown";
752 break;
753 }
754}
755
756void llvm::format_provider<ObjectFile::Strata>::format(
757 const ObjectFile::Strata &strata, raw_ostream &OS, StringRef Style) {
758 switch (strata) {
760 OS << "invalid";
761 break;
763 OS << "unknown";
764 break;
766 OS << "user";
767 break;
769 OS << "kernel";
770 break;
772 OS << "raw image";
773 break;
775 OS << "jit";
776 break;
777 }
778}
779
780Symtab *ObjectFile::GetSymtab(bool can_create) {
781 ModuleSP module_sp(GetModule());
782 if (module_sp && can_create) {
783 // We can't take the module lock in ObjectFile::GetSymtab() or we can
784 // deadlock in DWARF indexing when any file asks for the symbol table from
785 // an object file. This currently happens in the preloading of symbols in
786 // SymbolFileDWARF::PreloadSymbols() because the main thread will take the
787 // module lock, and then threads will be spun up to index the DWARF and
788 // any of those threads might end up trying to relocate items in the DWARF
789 // sections which causes ObjectFile::GetSectionData(...) to relocate section
790 // data which requires the symbol table.
791 //
792 // So to work around this, we create the symbol table one time using
793 // llvm::once_flag, lock it, and then set the unique pointer. Any other
794 // thread that gets ahold of the symbol table before parsing is done, will
795 // not be able to access the symbol table contents since all APIs in Symtab
796 // are protected by a mutex in the Symtab object itself.
797 llvm::call_once(*m_symtab_once_up, [&]() {
798 Symtab *symtab = new Symtab(this);
799 std::lock_guard<std::recursive_mutex> symtab_guard(symtab->GetMutex());
800 m_symtab_up.reset(symtab);
801 if (!m_symtab_up->LoadFromCache()) {
802 ElapsedTime elapsed(module_sp->GetSymtabParseTime());
804 m_symtab_up->Finalize();
805 }
806 });
807 }
808 return m_symtab_up.get();
809}
810
812 if (m_cache_hash)
813 return *m_cache_hash;
814 StreamString strm;
815 strm.Format("{0}-{1}-{2}", m_file, GetType(), GetStrata());
816 m_cache_hash = llvm::djbHash(strm.GetString());
817 return *m_cache_hash;
818}
819
820std::string ObjectFile::GetObjectName() const {
821 if (ModuleSP module_sp = GetModule())
822 if (ConstString object_name = module_sp->GetObjectName())
823 return llvm::formatv("{0}({1})", GetFileSpec().GetFilename().GetString(),
824 object_name.GetString())
825 .str();
826 return GetFileSpec().GetFilename().GetString();
827}
828
829namespace llvm {
830namespace json {
831
832bool fromJSON(const llvm::json::Value &value,
833 lldb_private::ObjectFile::Type &type, llvm::json::Path path) {
834 if (auto str = value.getAsString()) {
835 type = llvm::StringSwitch<ObjectFile::Type>(*str)
836 .Case("corefile", ObjectFile::eTypeCoreFile)
837 .Case("executable", ObjectFile::eTypeExecutable)
838 .Case("debuginfo", ObjectFile::eTypeDebugInfo)
839 .Case("dynamiclinker", ObjectFile::eTypeDynamicLinker)
840 .Case("objectfile", ObjectFile::eTypeObjectFile)
841 .Case("sharedlibrary", ObjectFile::eTypeSharedLibrary)
842 .Case("stublibrary", ObjectFile::eTypeStubLibrary)
843 .Case("jit", ObjectFile::eTypeJIT)
844 .Case("unknown", ObjectFile::eTypeUnknown)
845 .Default(ObjectFile::eTypeInvalid);
846
847 if (type == ObjectFile::eTypeInvalid) {
848 path.report("invalid object type");
849 return false;
850 }
851
852 return true;
853 }
854 path.report("expected string");
855 return false;
856}
857} // namespace json
858} // namespace llvm
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOGF(log,...)
Definition Log.h:376
static ObjectFileSP CreateObjectFromContainer(const lldb::ModuleSP &module_sp, const FileSpec *file, lldb::offset_t file_offset, lldb::offset_t file_size, DataBufferSP data_sp, lldb::offset_t &data_offset)
static double elapsed(const StatsTimepoint &start, const StatsTimepoint &end)
#define LLDB_SCOPED_TIMERF(...)
Definition Timer.h:86
lldb::SectionSP GetSection() const
Get const accessor for the section.
Definition Address.h:432
An architecture specification class.
Definition ArchSpec.h:32
A uniqued constant string class.
Definition ConstString.h:40
std::string GetString() const
Get the string value as a std::string.
void SetString(llvm::StringRef s)
A subclass of DataBuffer that stores a data buffer on the heap.
An data extractor class.
virtual const void * GetData(lldb::offset_t *offset_ptr, lldb::offset_t length) const
Extract length bytes from *offset_ptr.
virtual uint64_t GetByteSize() const
Get the number of bytes contained in this object.
void SetByteOrder(lldb::ByteOrder byte_order)
Set the byte_order value.
virtual lldb::offset_t SetData(const void *bytes, lldb::offset_t length, lldb::ByteOrder byte_order)
Set data with a buffer that is caller owned.
void SetAddressByteSize(uint32_t addr_size)
Set the address byte size.
A class that measures elapsed time in an exception safe way.
Definition Statistics.h:76
A file utility class.
Definition FileSpec.h:57
void SetFile(llvm::StringRef path, Style style)
Change the file specified with a new path.
Definition FileSpec.cpp:174
const ConstString & GetFilename() const
Filename string const get accessor.
Definition FileSpec.h:250
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
uint64_t GetByteSize(const FileSpec &file_spec) const
Returns the on-disk size of the given file in bytes.
bool Exists(const FileSpec &file_spec) const
Returns whether the given file exists.
static FileSystem & Instance()
std::shared_ptr< DataBuffer > CreateDataBuffer(const llvm::Twine &path, uint64_t size=0, uint64_t offset=0)
Create memory buffer from path.
ModuleChild(const lldb::ModuleSP &module_sp)
Construct with owning module.
lldb::ModuleSP GetModule() const
Get const accessor for the module pointer.
std::unique_ptr< lldb_private::SectionList > m_sections_up
Definition ObjectFile.h:776
static bool IsObjectFile(lldb_private::FileSpec file_spec)
static lldb::ObjectFileSP FindPlugin(const lldb::ModuleSP &module_sp, const FileSpec *file_spec, lldb::offset_t file_offset, lldb::offset_t file_size, lldb::DataExtractorSP extractor_sp, lldb::offset_t &data_offset)
Find a ObjectFile plug-in that can parse file_spec.
static lldb::DataBufferSP MapFileData(const FileSpec &file, uint64_t Size, uint64_t Offset)
virtual std::vector< LoadableData > GetLoadableData(Target &target)
Loads this objfile to memory.
~ObjectFile() override
Destructor.
std::unique_ptr< lldb_private::Symtab > m_symtab_up
Definition ObjectFile.h:777
const lldb::addr_t m_memory_addr
Set if the object file only exists in memory.
Definition ObjectFile.h:775
static size_t g_initial_bytes_to_read
The number of bytes to read when going through the plugins.
Definition ObjectFile.h:799
static lldb::SectionType GetDWARFSectionTypeFromName(llvm::StringRef name)
Parses the section type from a section name for DWARF sections.
virtual void ParseSymtab(Symtab &symtab)=0
Parse the symbol table into the provides symbol table object.
virtual AddressClass GetAddressClass(lldb::addr_t file_addr)
Get the address type given a file address in an object file.
Symtab * GetSymtab(bool can_create=true)
Gets the symbol table for the currently selected architecture (and object for archives).
DataExtractorNSP m_data_nsp
The data for this object file so things can be parsed lazily.
Definition ObjectFile.h:769
static lldb::WritableDataBufferSP ReadMemory(const lldb::ProcessSP &process_sp, lldb::addr_t addr, size_t byte_size)
@ eTypeExecutable
A normal executable.
Definition ObjectFile.h:55
@ eTypeDebugInfo
An object file that contains only debug information.
Definition ObjectFile.h:57
@ eTypeStubLibrary
A library that can be linked against but not used for execution.
Definition ObjectFile.h:65
@ eTypeObjectFile
An intermediate object file.
Definition ObjectFile.h:61
@ eTypeDynamicLinker
The platform's dynamic linker executable.
Definition ObjectFile.h:59
@ eTypeCoreFile
A core file that has a checkpoint of a program's execution state.
Definition ObjectFile.h:53
@ eTypeSharedLibrary
A shared library that can be used during execution.
Definition ObjectFile.h:63
@ eTypeJIT
JIT code that has symbols, sections and possibly debug info.
Definition ObjectFile.h:67
lldb::addr_t m_file_offset
The offset in bytes into the file, or the address in memory.
Definition ObjectFile.h:764
static lldb::SymbolType GetSymbolTypeFromName(llvm::StringRef name, lldb::SymbolType symbol_type_hint=lldb::eSymbolTypeUndefined)
virtual size_t GetSectionDataSize(Section *section)
Definition ObjectFile.h:682
static size_t GetModuleSpecifications(const FileSpec &file, lldb::offset_t file_offset, lldb::offset_t file_size, ModuleSpecList &specs, lldb::DataExtractorSP=lldb::DataExtractorSP())
virtual std::unique_ptr< CallFrameInfo > CreateCallFrameInfo()
Creates a plugin-specific call frame info.
virtual void ClearSymtab()
Frees the symbol table.
bool SetModulesArchitecture(const ArchSpec &new_arch)
Sets the architecture for a module.
virtual FileSpec & GetFileSpec()
Get accessor to the object file specification.
Definition ObjectFile.h:282
std::string GetObjectName() const
static bool SplitArchivePathWithObject(llvm::StringRef path_with_object, lldb_private::FileSpec &archive_file, lldb_private::ConstString &archive_object, bool must_exist)
Split a path into a file path with object name.
virtual void CreateSections(SectionList &unified_section_list)=0
size_t GetData(lldb::offset_t offset, size_t length, lldb::DataExtractorSP &data_sp) const
size_t CopyData(lldb::offset_t offset, size_t length, void *dst) const
virtual void RelocateSection(lldb_private::Section *section)
Perform relocations on the section if necessary.
std::optional< uint32_t > m_cache_hash
Definition ObjectFile.h:784
virtual SectionList * GetSectionList(bool update_module_section_list=true)
Gets the section list for the currently selected architecture (and object for archives).
ObjectFile(const lldb::ModuleSP &module_sp, const FileSpec *file_spec_ptr, lldb::offset_t file_offset, lldb::offset_t length, lldb::DataExtractorSP extractor_sp, lldb::offset_t data_offset)
Construct with a parent module, offset, and header data.
std::unique_ptr< llvm::once_flag > m_symtab_once_up
We need a llvm::once_flag that we can use to avoid locking the module lock and deadlocking LLDB.
Definition ObjectFile.h:783
bool IsInMemory() const
Returns true if the object file exists only in memory.
Definition ObjectFile.h:687
lldb::ProcessWP m_process_wp
Definition ObjectFile.h:773
uint32_t GetCacheHash()
Get a hash that can be used for caching object file releated information.
lldb::addr_t m_length
The length of this object file if it is known (can be zero if length is unknown or can't be determine...
Definition ObjectFile.h:766
virtual size_t ReadSectionData(Section *section, lldb::offset_t section_offset, void *dst, size_t dst_len)
virtual lldb::addr_t GetByteSize() const
Definition ObjectFile.h:275
static llvm::SmallVector< ObjectFileCallbacks > GetObjectFileCallbacks()
static llvm::SmallVector< ObjectContainerCallbacks > GetObjectContainerCallbacks()
size_t GetNumSections(uint32_t depth) const
Definition Section.cpp:542
lldb::SectionSP GetSectionAtIndex(size_t idx) const
Definition Section.cpp:553
lldb::offset_t GetFileOffset() const
Definition Section.h:181
ObjectFile * GetObjectFile()
Definition Section.h:231
lldb::SectionType GetType() const
Definition Section.h:215
lldb::addr_t GetLoadBaseAddress(Target *target) const
Definition Section.cpp:229
lldb::addr_t GetByteSize() const
Definition Section.h:197
lldb::offset_t GetFileSize() const
Definition Section.h:187
bool IsRelocated() const
Definition Section.h:273
An error handling class.
Definition Status.h:118
llvm::StringRef GetString() const
void Format(const char *format, Args &&... args)
Definition Stream.h:364
bool ValueIsAddress() const
Definition Symbol.cpp:165
Address & GetAddressRef()
Definition Symbol.h:73
lldb::SymbolType GetType() const
Definition Symbol.h:169
Symbol * FindSymbolContainingFileAddress(lldb::addr_t file_addr)
Definition Symtab.cpp:1038
std::recursive_mutex & GetMutex()
Definition Symtab.h:51
lldb::addr_t GetSectionLoadAddress(const lldb::SectionSP &section_sp)
Definition Target.cpp:5347
#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
bool fromJSON(const llvm::json::Value &value, TraceSupportedResponse &info, llvm::json::Path path)
uint64_t offset_t
Definition lldb-types.h:85
std::shared_ptr< lldb_private::ObjectFile > ObjectFileSP
std::shared_ptr< lldb_private::Process > ProcessSP
SymbolType
Symbol types.
@ eSymbolTypeUndefined
@ eSymbolTypeVariableType
@ eSymbolTypeObjCMetaClass
@ eSymbolTypeReExported
@ eSymbolTypeObjCClass
@ eSymbolTypeObjectFile
@ eSymbolTypeTrampoline
@ eSymbolTypeResolver
@ eSymbolTypeSourceFile
@ eSymbolTypeException
@ eSymbolTypeVariable
@ eSymbolTypeAbsolute
@ eSymbolTypeAdditional
When symbols take more than one entry, the extra entries get this type.
@ eSymbolTypeInstrumentation
@ eSymbolTypeHeaderFile
@ eSymbolTypeCommonBlock
@ eSymbolTypeCompiler
@ eSymbolTypeLineHeader
@ eSymbolTypeObjCIVar
@ eSymbolTypeLineEntry
@ eSymbolTypeScopeBegin
@ eSymbolTypeScopeEnd
std::shared_ptr< lldb_private::DataBuffer > DataBufferSP
std::shared_ptr< lldb_private::Section > SectionSP
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
uint64_t addr_t
Definition lldb-types.h:80
@ eSectionTypeDWARFDebugStrOffsets
@ eSectionTypeELFDynamicSymbols
Elf SHT_DYNSYM section.
@ eSectionTypeInvalid
@ eSectionTypeDWARFDebugPubNames
@ eSectionTypeDataObjCCFStrings
Objective-C const CFString/NSString objects.
@ eSectionTypeZeroFill
@ eSectionTypeDWARFDebugLocDwo
@ eSectionTypeDWARFDebugFrame
@ eSectionTypeARMextab
@ eSectionTypeContainer
The section contains child sections.
@ eSectionTypeDWARFDebugLocLists
DWARF v5 .debug_loclists.
@ eSectionTypeDWARFDebugTypes
DWARF .debug_types section.
@ eSectionTypeDataSymbolAddress
Address of a symbol in the symbol table.
@ eSectionTypeELFDynamicLinkInfo
Elf SHT_DYNAMIC section.
@ eSectionTypeDWARFDebugMacInfo
@ eSectionTypeAbsoluteAddress
Dummy section for symbols with absolute address.
@ eSectionTypeCompactUnwind
compact unwind section in Mach-O, __TEXT,__unwind_info
@ eSectionTypeELFRelocationEntries
Elf SHT_REL or SHT_REL section.
@ eSectionTypeDWARFAppleNamespaces
@ eSectionTypeLLDBFormatters
@ eSectionTypeDWARFDebugNames
DWARF v5 .debug_names.
@ eSectionTypeDWARFDebugRngLists
DWARF v5 .debug_rnglists.
@ eSectionTypeEHFrame
@ eSectionTypeDWARFDebugStrOffsetsDwo
@ eSectionTypeDWARFDebugMacro
@ eSectionTypeDWARFAppleTypes
@ eSectionTypeDWARFDebugInfo
@ eSectionTypeDWARFDebugTypesDwo
@ eSectionTypeDWARFDebugRanges
@ eSectionTypeDWARFDebugRngListsDwo
@ eSectionTypeLLDBTypeSummaries
@ eSectionTypeGoSymtab
@ eSectionTypeARMexidx
@ eSectionTypeDWARFDebugLine
@ eSectionTypeDWARFDebugPubTypes
@ eSectionTypeDataObjCMessageRefs
Pointer to function pointer + selector.
@ eSectionTypeDWARFDebugTuIndex
@ eSectionTypeDWARFDebugStr
@ eSectionTypeDWARFDebugLineStr
DWARF v5 .debug_line_str.
@ eSectionTypeDWARFDebugLoc
@ eSectionTypeDWARFAppleNames
@ eSectionTypeDataCStringPointers
Pointers to C string data.
@ eSectionTypeDWARFAppleObjC
@ eSectionTypeSwiftModules
@ eSectionTypeDWARFDebugCuIndex
@ eSectionTypeDWARFDebugAranges
@ eSectionTypeDWARFDebugAbbrevDwo
@ eSectionTypeDWARFGNUDebugAltLink
@ eSectionTypeDWARFDebugStrDwo
@ eSectionTypeDWARFDebugAbbrev
@ eSectionTypeDataPointers
@ eSectionTypeDWARFDebugLocListsDwo
@ eSectionTypeDWARFDebugInfoDwo
@ eSectionTypeDWARFDebugAddr
@ eSectionTypeWasmName
@ eSectionTypeDataCString
Inlined C string data.
@ eSectionTypeELFSymbolTable
Elf SHT_SYMTAB section.
std::shared_ptr< lldb_private::DataExtractor > DataExtractorSP
std::shared_ptr< lldb_private::Module > ModuleSP
llvm::ArrayRef< uint8_t > Contents
Definition ObjectFile.h:98