LLDB mainline
ObjectFile.h
Go to the documentation of this file.
1//===-- ObjectFile.h --------------------------------------------*- C++ -*-===//
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
9#ifndef LLDB_SYMBOL_OBJECTFILE_H
10#define LLDB_SYMBOL_OBJECTFILE_H
11
14#include "lldb/Symbol/Symtab.h"
18#include "lldb/Utility/Endian.h"
23#include "lldb/Utility/UUID.h"
24#include "lldb/lldb-private.h"
25#include "llvm/Support/Threading.h"
26#include "llvm/Support/VersionTuple.h"
27#include <optional>
28
29namespace lldb_private {
30
31/// \class ObjectFile ObjectFile.h "lldb/Symbol/ObjectFile.h"
32/// A plug-in interface definition class for object file parsers.
33///
34/// Object files belong to Module objects and know how to extract information
35/// from executable, shared library, and object (.o) files used by operating
36/// system runtime. The symbol table and section list for an object file.
37///
38/// Object files can be represented by the entire file, or by part of a file.
39/// An example of a partial file ObjectFile is one that contains information
40/// for one of multiple architectures in the same file.
41///
42/// Once an architecture is selected the object file information can be
43/// extracted from this abstract class.
44class ObjectFile : public std::enable_shared_from_this<ObjectFile>,
45 public PluginInterface,
46 public ModuleChild {
48
49public:
50 enum Type {
52 /// A core file that has a checkpoint of a program's execution state.
54 /// A normal executable.
56 /// An object file that contains only debug information.
58 /// The platform's dynamic linker executable.
60 /// An intermediate object file.
62 /// A shared library that can be used during execution.
64 /// A library that can be linked against but not used for execution.
66 /// JIT code that has symbols, sections and possibly debug info.
69 };
70
79
80 /// If we have a corefile binary hint, this enum
81 /// specifies the binary type which we can use to
82 /// select the correct DynamicLoader plugin.
86 /// kernel binary
88 /// user process binary, dyld addr
90 /// user process binary, dyld_all_image_infos addr
92 /// standalone binary / firmware
94 };
95
96 struct LoadableData {
98 llvm::ArrayRef<uint8_t> Contents;
99 };
100
101 /// Construct with a parent module, offset, and header data.
102 ///
103 /// Object files belong to modules and a valid module must be supplied upon
104 /// construction. The at an offset within a file for objects that contain
105 /// more than one architecture or object.
106 ObjectFile(const lldb::ModuleSP &module_sp, const FileSpec *file_spec_ptr,
107 lldb::offset_t file_offset, lldb::offset_t length,
108 lldb::DataExtractorSP extractor_sp, lldb::offset_t data_offset);
109
110 ObjectFile(const lldb::ModuleSP &module_sp, const lldb::ProcessSP &process_sp,
111 lldb::addr_t header_addr, lldb::DataExtractorSP extractor_sp);
112
113 /// Destructor.
114 ///
115 /// The destructor is virtual since this class is designed to be inherited
116 /// from by the plug-in instance.
117 ~ObjectFile() override;
118
119 /// Dump a description of this object to a Stream.
120 ///
121 /// Dump a description of the current contents of this object to the
122 /// supplied stream \a s. The dumping should include the section list if it
123 /// has been parsed, and the symbol table if it has been parsed.
124 ///
125 /// \param[in] s
126 /// The stream to which to dump the object description.
127 virtual void Dump(Stream *s) = 0;
128
129 /// Find a ObjectFile plug-in that can parse \a file_spec.
130 ///
131 /// Scans all loaded plug-in interfaces that implement versions of the
132 /// ObjectFile plug-in interface and returns the first instance that can
133 /// parse the file.
134 ///
135 /// \param[in] module_sp
136 /// The parent module that owns this object file.
137 ///
138 /// \param[in] file_spec
139 /// A file specification that indicates which file to use as the
140 /// object file.
141 ///
142 /// \param[in] file_offset
143 /// The offset into the file at which to start parsing the
144 /// object. This is for files that contain multiple
145 /// architectures or objects.
146 ///
147 /// \param[in] file_size
148 /// The size of the current object file if it can be determined
149 /// or if it is known. This can be zero.
150 ///
151 /// \see ObjectFile::ParseHeader()
152 static lldb::ObjectFileSP
153 FindPlugin(const lldb::ModuleSP &module_sp, const FileSpec *file_spec,
154 lldb::offset_t file_offset, lldb::offset_t file_size,
155 lldb::DataExtractorSP extractor_sp, lldb::offset_t &data_offset);
156
157 /// Find a ObjectFile plug-in that can parse a file in memory.
158 ///
159 /// Scans all loaded plug-in interfaces that implement versions of the
160 /// ObjectFile plug-in interface and returns the first instance that can
161 /// parse the file.
162 ///
163 /// \param[in] module_sp
164 /// The parent module that owns this object file.
165 ///
166 /// \param[in] process_sp
167 /// A shared pointer to the process whose memory space contains
168 /// an object file. This will be stored as a std::weak_ptr.
169 ///
170 /// \param[in] header_addr
171 /// The address of the header for the object file in memory.
172 static lldb::ObjectFileSP FindPlugin(const lldb::ModuleSP &module_sp,
173 const lldb::ProcessSP &process_sp,
174 lldb::addr_t header_addr,
175 lldb::WritableDataBufferSP file_data_sp);
176
177 static ModuleSpecList
178 GetModuleSpecifications(const FileSpec &file, lldb::offset_t file_offset,
179 lldb::offset_t file_size,
181
182 static ModuleSpecList
184 lldb::DataExtractorSP &extractor_sp,
185 lldb::offset_t file_offset, lldb::offset_t file_size);
186 static bool IsObjectFile(lldb_private::FileSpec file_spec);
187 /// Split a path into a file path with object name.
188 ///
189 /// For paths like "/tmp/foo.a(bar.o)" we often need to split a path up into
190 /// the actual path name and into the object name so we can make a valid
191 /// object file from it.
192 ///
193 /// \param[in] path_with_object
194 /// A path that might contain an archive path with a .o file
195 /// specified in parens in the basename of the path.
196 ///
197 /// \param[out] archive_file
198 /// If \b true is returned, \a file_spec will be filled in with
199 /// the path to the archive.
200 ///
201 /// \param[out] archive_object
202 /// If \b true is returned, \a object will be filled in with
203 /// the name of the object inside the archive.
204 ///
205 /// \return
206 /// \b true if the path matches the pattern of archive + object
207 /// and \a archive_file and \a archive_object are modified,
208 /// \b false otherwise and \a archive_file and \a archive_object
209 /// are guaranteed to be remain unchanged.
210 static bool SplitArchivePathWithObject(
211 llvm::StringRef path_with_object, lldb_private::FileSpec &archive_file,
212 lldb_private::ConstString &archive_object, bool must_exist);
213
214 // LLVM RTTI support
215 static char ID;
216 virtual bool isA(const void *ClassID) const { return ClassID == &ID; }
217
218 /// Gets the address size in bytes for the current object file.
219 ///
220 /// \return
221 /// The size of an address in bytes for the currently selected
222 /// architecture (and object for archives). Returns zero if no
223 /// architecture or object has been selected.
224 virtual uint32_t GetAddressByteSize() const = 0;
225
226 /// Get the address type given a file address in an object file.
227 ///
228 /// Many binary file formats know what kinds This is primarily for ARM
229 /// binaries, though it can be applied to any executable file format that
230 /// supports different opcode types within the same binary. ARM binaries
231 /// support having both ARM and Thumb within the same executable container.
232 /// We need to be able to get \return
233 /// The size of an address in bytes for the currently selected
234 /// architecture (and object for archives). Returns zero if no
235 /// architecture or object has been selected.
236 virtual AddressClass GetAddressClass(lldb::addr_t file_addr);
237
238 /// Extract the dependent modules from an object file.
239 ///
240 /// If an object file has information about which other images it depends on
241 /// (such as shared libraries), this function will provide the list. Since
242 /// many executables or shared libraries may depend on the same files,
243 /// FileSpecList::AppendIfUnique(const FileSpec &) should be used to make
244 /// sure any files that are added are not already in the list.
245 ///
246 /// \param[out] file_list
247 /// A list of file specification objects that gets dependent
248 /// files appended to.
249 ///
250 /// \return
251 /// The number of new files that were appended to \a file_list.
252 ///
253 /// \see FileSpecList::AppendIfUnique(const FileSpec &)
254 virtual uint32_t GetDependentModules(FileSpecList &file_list) = 0;
255
256 /// Tells whether this object file is capable of being the main executable
257 /// for a process.
258 ///
259 /// \return
260 /// \b true if it is, \b false otherwise.
261 virtual bool IsExecutable() const = 0;
262
263 /// Returns the offset into a file at which this object resides.
264 ///
265 /// Some files contain many object files, and this function allows access to
266 /// an object's offset within the file.
267 ///
268 /// \return
269 /// The offset in bytes into the file. Defaults to zero for
270 /// simple object files that a represented by an entire file.
271 virtual lldb::addr_t GetFileOffset() const { return m_file_offset; }
272
273 virtual lldb::addr_t GetByteSize() const { return m_length; }
274
275 /// Get accessor to the object file specification.
276 ///
277 /// \return
278 /// The file specification object pointer if there is one, or
279 /// NULL if this object is only from memory.
280 virtual FileSpec &GetFileSpec() { return m_file; }
281
282 /// Get const accessor to the object file specification.
283 ///
284 /// \return
285 /// The const file specification object pointer if there is one,
286 /// or NULL if this object is only from memory.
287 virtual const FileSpec &GetFileSpec() const { return m_file; }
288
289 /// Get the ArchSpec for this object file.
290 ///
291 /// \return
292 /// The ArchSpec of this object file. In case of error, an invalid
293 /// ArchSpec object is returned.
295
296 /// Gets the section list for the currently selected architecture (and
297 /// object for archives).
298 ///
299 /// Section list parsing can be deferred by ObjectFile instances until this
300 /// accessor is called the first time.
301 ///
302 /// \return
303 /// The list of sections contained in this object file.
304 virtual SectionList *GetSectionList(bool update_module_section_list = true);
305
306 virtual void CreateSections(SectionList &unified_section_list) = 0;
307
308 /// Notify the ObjectFile that the file addresses in the Sections for this
309 /// module have been changed.
311
312 /// Gets the symbol table for the currently selected architecture (and
313 /// object for archives).
314 ///
315 /// This function will manage when ParseSymtab(...) is called to actually do
316 /// the symbol table parsing in each plug-in. This function will take care of
317 /// taking all the necessary locks and finalizing the symbol table when the
318 /// symbol table does get parsed.
319 ///
320 /// \return
321 /// The symbol table for this object file.
322 Symtab *GetSymtab(bool can_create = true);
323
324 /// Parse the symbol table into the provides symbol table object.
325 ///
326 /// Symbol table parsing will be done once when this function is called by
327 /// each object file plugin. All of the necessary locks will already be
328 /// acquired before this function is called and the symbol table object to
329 /// populate is supplied as an argument and doesn't need to be created by
330 /// each plug-in.
331 ///
332 /// \param
333 /// The symbol table to populate.
334 virtual void ParseSymtab(Symtab &symtab) = 0;
335
336 /// Perform relocations on the section if necessary.
337 ///
338 virtual void RelocateSection(lldb_private::Section *section);
339
340 /// Detect if this object file has been stripped of local symbols.
341 /// Detect if this object file has been stripped of local symbols.
342 ///
343 /// \return
344 /// Return \b true if the object file has been stripped of local
345 /// symbols.
346 virtual bool IsStripped() = 0;
347
348 /// Frees the symbol table.
349 ///
350 /// This function should only be used when an object file is
351 virtual void ClearSymtab();
352
353 /// Gets the UUID for this object file.
354 ///
355 /// If the object file format contains a UUID, the value should be returned.
356 /// Else ObjectFile instances should return the MD5 checksum of all of the
357 /// bytes for the object file (or memory for memory based object files).
358 ///
359 /// \return
360 /// The object file's UUID. In case of an error, an empty UUID is
361 /// returned.
362 virtual UUID GetUUID() = 0;
363
364 /// Gets the file spec list of libraries re-exported by this object file.
365 ///
366 /// If the object file format has the notion of one library re-exporting the
367 /// symbols from another, the re-exported libraries will be returned in the
368 /// FileSpecList.
369 ///
370 /// \return
371 /// Returns filespeclist.
375
376 /// Sets the load address for an entire module, assuming a rigid slide of
377 /// sections, if possible in the implementation.
378 ///
379 /// \return
380 /// Returns true iff any section's load address changed.
381 virtual bool SetLoadAddress(Target &target, lldb::addr_t value,
382 bool value_is_offset) {
383 return false;
384 }
385
386 /// Gets whether endian swapping should occur when extracting data from this
387 /// object file.
388 ///
389 /// \return
390 /// Returns \b true if endian swapping is needed, \b false
391 /// otherwise.
392 virtual lldb::ByteOrder GetByteOrder() const = 0;
393
394 /// Attempts to parse the object header.
395 ///
396 /// This function is used as a test to see if a given plug-in instance can
397 /// parse the header data already contained in ObjectFile::m_data_nsp. If an
398 /// object file parser does not recognize that magic bytes in a header,
399 /// false should be returned and the next plug-in can attempt to parse an
400 /// object file.
401 ///
402 /// \return
403 /// Returns \b true if the header was parsed successfully, \b
404 /// false otherwise.
405 virtual bool ParseHeader() = 0;
406
407 /// Returns if the function bounds for symbols in this symbol file are
408 /// likely accurate.
409 ///
410 /// The unwinder can emulate the instructions of functions to understand
411 /// prologue/epilogue code sequences, where registers are spilled on the
412 /// stack, etc. This feature relies on having the correct start addresses
413 /// of all functions. If the ObjectFile has a way to tell that symbols have
414 /// been stripped and there's no way to reconstruct start addresses (e.g.
415 /// LC_FUNCTION_STARTS on Mach-O, or eh_frame unwind info), the ObjectFile
416 /// should indicate that assembly emulation should not be used for this
417 /// module.
418 ///
419 /// It is uncommon for this to return false. An ObjectFile needs to be sure
420 /// that symbol start addresses are unavailable before false is returned.
421 /// If it is unclear, this should return true.
422 ///
423 /// \return
424 /// Returns true if assembly emulation should be used for this
425 /// module.
426 /// Only returns false if the ObjectFile is sure that symbol
427 /// addresses are insufficient for accurate assembly emulation.
428 virtual bool AllowAssemblyEmulationUnwindPlans() { return true; }
429
430 /// Similar to Process::GetImageInfoAddress().
431 ///
432 /// Some platforms embed auxiliary structures useful to debuggers in the
433 /// address space of the inferior process. This method returns the address
434 /// of such a structure if the information can be resolved via entries in
435 /// the object file. ELF, for example, provides a means to hook into the
436 /// runtime linker so that a debugger may monitor the loading and unloading
437 /// of shared libraries.
438 ///
439 /// \return
440 /// The address of any auxiliary tables, or an invalid address if this
441 /// object file format does not support or contain such information.
443 return Address();
444 }
445
446 /// Returns the address of the Entry Point in this object file - if the
447 /// object file doesn't have an entry point (because it is not an executable
448 /// file) then an invalid address is returned.
449 ///
450 /// \return
451 /// Returns the entry address for this module.
453
454 /// Returns base address of this object file.
455 ///
456 /// This also sometimes referred to as the "preferred load address" or the
457 /// "image base address". Addresses within object files are often expressed
458 /// relative to this base. If this address corresponds to a specific section
459 /// (usually the first byte of the first section) then the returned address
460 /// will have this section set. Otherwise, the address will just have the
461 /// offset member filled in, indicating that this represents a file address.
465
466 virtual uint32_t GetNumThreadContexts() { return 0; }
467
468 /// Some object files may have an identifier string embedded in them, e.g.
469 /// in a Mach-O core file using the LC_IDENT load command (which is
470 /// obsolete, but can still be found in some old files)
471 ///
472 /// \return
473 /// Returns the identifier string if one exists, else an empty
474 /// string.
475 virtual std::string GetIdentifierString () {
476 return std::string();
477 }
478
479 /// Some object files may have the number of bits used for addressing
480 /// embedded in them, e.g. a Mach-O core file using an LC_NOTE. These
481 /// object files can return an AddressableBits object that can can be
482 /// used to set the address masks in the Process.
483 ///
484 /// \return
485 /// Returns an AddressableBits object which can be used to set
486 /// the address masks in the Process.
488
489 /// When the ObjectFile is a core file, lldb needs to locate the "binary" in
490 /// the core file. lldb can iterate over the pages looking for a valid
491 /// binary, but some core files may have metadata describing where the main
492 /// binary is exactly which removes ambiguity when there are multiple
493 /// binaries present in the captured memory pages.
494 ///
495 /// \param[out] value
496 /// The address or offset (slide) where the binary is loaded in memory.
497 /// LLDB_INVALID_ADDRESS for unspecified. If an offset is given,
498 /// this offset should be added to the binary's file address to get
499 /// the load address.
500 ///
501 /// \param[out] value_is_offset
502 /// Specifies if \b value is a load address, or an offset to calculate
503 /// the load address.
504 ///
505 /// \param[out] uuid
506 /// If the uuid of the binary is specified, this will be set.
507 /// If no UUID is available, will be cleared.
508 ///
509 /// \param[out] type
510 /// Return the type of the binary, which will dictate which
511 /// DynamicLoader plugin should be used.
512 ///
513 /// \return
514 /// Returns true if either address or uuid has been set.
516 bool &value_is_offset, UUID &uuid,
518 value = LLDB_INVALID_ADDRESS;
519 value_is_offset = false;
520 uuid.Clear();
521 return false;
522 }
523
524 /// Get metadata about thread ids from the corefile.
525 ///
526 /// The corefile may have metadata (e.g. a Mach-O "process metadata"
527 /// LC_NOTE) which for the threads in the process; this method tries
528 /// to retrieve them.
529 ///
530 /// \param[out] tids
531 /// Filled in with a vector of tid_t's that matches the number
532 /// of threads in the corefile (ObjectFile::GetNumThreadContexts).
533 /// If a tid is not specified for one of the corefile threads,
534 /// that entry in the vector will have LLDB_INVALID_THREAD_ID and
535 /// the caller should assign a tid to the thread that does not
536 /// conflict with the ones provided in this array.
537 /// As additional metadata are added, this method may return a
538 /// \a tids vector with no thread id's specified at all; the
539 /// corefile may only specify one of the other metadata.
540 ///
541 /// \return
542 /// Returns true if thread metadata was found in this corefile.
543 ///
544 virtual bool GetCorefileThreadExtraInfos(std::vector<lldb::tid_t> &tids) {
545 return false;
546 }
547
548 /// Get process metadata from the corefile in a StructuredData dictionary.
549 ///
550 /// The corefile may have notes (e.g. a Mach-O "process metadata" LC_NOTE)
551 /// which provide metadata about the process and threads in a JSON or
552 /// similar format.
553 ///
554 /// \return
555 /// A StructuredData object with the metadata in the note, if there is
556 /// one. An empty shared pointer is returned if not metadata is found,
557 /// or a problem parsing it.
559
563 }
564
565 /// The object file should be able to calculate its type by looking at its
566 /// file header and possibly the sections or other data in the object file.
567 /// The file type is used in the debugger to help select the correct plug-
568 /// ins for the job at hand, so this is important to get right. If any
569 /// eTypeXXX definitions do not match up with the type of file you are
570 /// loading, please feel free to add a new enumeration value.
571 ///
572 /// \return
573 /// The calculated file type for the current object file.
574 virtual Type CalculateType() = 0;
575
576 /// In cases where the type can't be calculated (elf files), this routine
577 /// allows someone to explicitly set it. As an example, SymbolVendorELF uses
578 /// this routine to set eTypeDebugInfo when loading debug link files.
579 virtual void SetType(Type type) { m_type = type; }
580
581 /// The object file should be able to calculate the strata of the object
582 /// file.
583 ///
584 /// Many object files for platforms might be for either user space debugging
585 /// or for kernel debugging. If your object file subclass can figure this
586 /// out, it will help with debugger plug-in selection when it comes time to
587 /// debug.
588 ///
589 /// \return
590 /// The calculated object file strata for the current object
591 /// file.
592 virtual Strata CalculateStrata() = 0;
593
594 /// Get the object file version numbers.
595 ///
596 /// Many object files have a set of version numbers that describe the
597 /// version of the executable or shared library. Typically there are major,
598 /// minor and build, but there may be more. This function will extract the
599 /// versions from object files if they are available.
600 ///
601 /// \return
602 /// This function returns extracted version numbers as a
603 /// llvm::VersionTuple. In case of error an empty VersionTuple is
604 /// returned.
605 virtual llvm::VersionTuple GetVersion() { return llvm::VersionTuple(); }
606
607 /// Get the minimum OS version this object file can run on.
608 ///
609 /// Some object files have information that specifies the minimum OS version
610 /// that they can be used on.
611 ///
612 /// \return
613 /// This function returns extracted version numbers as a
614 /// llvm::VersionTuple. In case of error an empty VersionTuple is
615 /// returned.
616 virtual llvm::VersionTuple GetMinimumOSVersion() {
617 return llvm::VersionTuple();
618 }
619
620 /// Get the SDK OS version this object file was built with.
621 ///
622 /// \return
623 /// This function returns extracted version numbers as a
624 /// llvm::VersionTuple. In case of error an empty VersionTuple is
625 /// returned.
626 virtual llvm::VersionTuple GetSDKVersion() { return llvm::VersionTuple(); }
627
628 /// Return true if this file is a dynamic link editor (dyld)
629 ///
630 /// Often times dyld has symbols that mirror symbols in libc and other
631 /// shared libraries (like "malloc" and "free") and the user does _not_ want
632 /// to stop in these shared libraries by default. We can ask the ObjectFile
633 /// if it is such a file and should be avoided for things like settings
634 /// breakpoints and doing function lookups for expressions.
635 virtual bool GetIsDynamicLinkEditor() { return false; }
636
637 // Member Functions
639 if (m_type == eTypeInvalid)
641 return m_type;
642 }
643
647 return m_strata;
648 }
649
650 // When an object file is in memory, subclasses should try and lock the
651 // process weak pointer. If the process weak pointer produces a valid
652 // ProcessSP, then subclasses can call this function to read memory.
654 ReadMemory(const lldb::ProcessSP &process_sp, lldb::addr_t addr,
655 size_t byte_size);
656
657 // This function returns raw file contents. Do not use it if you want
658 // transparent decompression of section contents.
659 size_t GetData(lldb::offset_t offset, size_t length,
660 lldb::DataExtractorSP &data_sp) const;
661
662 // This function returns raw file contents. Do not use it if you want
663 // transparent decompression of section contents.
664 size_t CopyData(lldb::offset_t offset, size_t length, void *dst) const;
665
666 // This function will transparently decompress section data if the section if
667 // compressed.
668 virtual size_t ReadSectionData(Section *section,
669 lldb::offset_t section_offset, void *dst,
670 size_t dst_len);
671
672 // This function will transparently decompress section data if the section if
673 // compressed. Note that for compressed section the resulting data size may
674 // be larger than what Section::GetFileSize reports.
675 virtual size_t ReadSectionData(Section *section,
676 DataExtractor &section_data);
677
678 // Returns the section data size. This is special-cased for PECOFF
679 // due to file alignment.
680 virtual size_t GetSectionDataSize(Section *section) {
681 return section->GetFileSize();
682 }
683
684 /// Returns true if the object file exists only in memory.
686
687 // Strip linker annotations (such as @@VERSION) from symbol names.
688 virtual llvm::StringRef
689 StripLinkerSymbolAnnotations(llvm::StringRef symbol_name) const {
690 return symbol_name;
691 }
692
693 /// Can we trust the address ranges accelerator associated with this object
694 /// file to be complete.
695 virtual bool CanTrustAddressRanges() { return false; }
696
698 llvm::StringRef name,
700
701 /// Parses the section type from a section name for DWARF sections.
702 ///
703 /// The \a name must be stripped of the default prefix (e.g. ".debug_" or
704 /// "__debug_"). If there's no matching section type, \a eSectionTypeOther
705 /// will be returned.
706 static lldb::SectionType GetDWARFSectionTypeFromName(llvm::StringRef name);
707
708 /// Loads this objfile to memory.
709 ///
710 /// Loads the bits needed to create an executable image to the memory. It is
711 /// useful with bare-metal targets where target does not have the ability to
712 /// start a process itself.
713 ///
714 /// \param[in] target
715 /// Target where to load.
716 virtual std::vector<LoadableData> GetLoadableData(Target &target);
717
718 /// Creates a plugin-specific call frame info
719 virtual std::unique_ptr<CallFrameInfo> CreateCallFrameInfo();
720
721 /// Load binaries listed in a corefile
722 ///
723 /// A corefile may have metadata listing binaries that can be loaded,
724 /// and the offsets at which they were loaded. This method will try
725 /// to add them to the Target. If any binaries were loaded,
726 ///
727 /// \param[in] process
728 /// Process where to load binaries.
729 ///
730 /// \return
731 /// Returns true if any binaries were loaded.
732
734 return false;
735 }
736
737 /// Returns true if the section is a global offset table section.
738 virtual bool IsGOTSection(const lldb_private::Section &section) const {
739 assert(section.GetObjectFile() == this && "Wrong object file!");
740 return false;
741 }
742
743 /// Get a hash that can be used for caching object file releated information.
744 ///
745 /// Data for object files can be cached between runs of debug sessions and
746 /// a module can end up using a main file and a symbol file, both of which
747 /// can be object files. So we need a unique hash that identifies an object
748 /// file when storing cached data.
749 uint32_t GetCacheHash();
750
751 static lldb::DataBufferSP MapFileData(const FileSpec &file, uint64_t Size,
752 uint64_t Offset);
753 std::string GetObjectName() const;
754
755protected:
757
758 // Member variables.
762 lldb::addr_t m_file_offset; ///< The offset in bytes into the file, or the
763 ///address in memory
764 lldb::addr_t m_length; ///< The length of this object file if it is known (can
765 ///be zero if length is unknown or can't be
766 ///determined).
767 DataExtractorNSP m_data_nsp; ///< The data for this object file so things
768 ///< can be parsed lazily. This shared pointer
769 ///< will always have a DataExtractor object,
770 ///< although it may only be default-constructed.
772 /// Set if the object file only exists in memory.
774 std::unique_ptr<lldb_private::SectionList> m_sections_up;
775 std::unique_ptr<lldb_private::Symtab> m_symtab_up;
776 /// We need a llvm::once_flag that we can use to avoid locking the module
777 /// lock and deadlocking LLDB. See comments in ObjectFile::GetSymtab() for
778 /// the full details. We also need to be able to clear the symbol table, so we
779 /// need to use a std::unique_ptr to a llvm::once_flag so if we clear the
780 /// symbol table, we can have a new once flag to use when it is created again.
781 std::unique_ptr<llvm::once_flag> m_symtab_once_up;
782 std::optional<uint32_t> m_cache_hash;
783
784 /// Sets the architecture for a module. At present the architecture can
785 /// only be set if it is invalid. It is not allowed to switch from one
786 /// concrete architecture to another.
787 ///
788 /// \param[in] new_arch
789 /// The architecture this module will be set to.
790 ///
791 /// \return
792 /// Returns \b true if the architecture was changed, \b
793 /// false otherwise.
794 bool SetModulesArchitecture(const ArchSpec &new_arch);
795
796 /// The number of bytes to read when going through the plugins.
798
799private:
800 ObjectFile(const ObjectFile &) = delete;
801 const ObjectFile &operator=(const ObjectFile &) = delete;
802};
803
804} // namespace lldb_private
805
806namespace llvm {
807template <> struct format_provider<lldb_private::ObjectFile::Type> {
808 static void format(const lldb_private::ObjectFile::Type &type,
809 raw_ostream &OS, StringRef Style);
810};
811
812template <> struct format_provider<lldb_private::ObjectFile::Strata> {
813 static void format(const lldb_private::ObjectFile::Strata &strata,
814 raw_ostream &OS, StringRef Style);
815};
816
817namespace json {
818bool fromJSON(const llvm::json::Value &value, lldb_private::ObjectFile::Type &,
819 llvm::json::Path path);
820} // namespace json
821} // namespace llvm
822
823#endif // LLDB_SYMBOL_OBJECTFILE_H
A section + offset based address class.
Definition Address.h:62
A class which holds the metadata from a remote stub/corefile note about how many bits are used for ad...
An architecture specification class.
Definition ArchSpec.h:32
A uniqued constant string class.
Definition ConstString.h:40
An data extractor class.
A file collection class.
A file utility class.
Definition FileSpec.h:57
ModuleChild(const lldb::ModuleSP &module_sp)
Construct with owning module.
A class that describes an executable image and its associated object and symbol files.
Definition Module.h:90
A non-nullable shared pointer that always holds a valid object.
virtual bool GetCorefileThreadExtraInfos(std::vector< lldb::tid_t > &tids)
Get metadata about thread ids from the corefile.
Definition ObjectFile.h:544
virtual std::string GetIdentifierString()
Some object files may have an identifier string embedded in them, e.g.
Definition ObjectFile.h:475
virtual bool SetLoadAddress(Target &target, lldb::addr_t value, bool value_is_offset)
Sets the load address for an entire module, assuming a rigid slide of sections, if possible in the im...
Definition ObjectFile.h:381
virtual const FileSpec & GetFileSpec() const
Get const accessor to the object file specification.
Definition ObjectFile.h:287
virtual void Dump(Stream *s)=0
Dump a description of this object to a Stream.
std::unique_ptr< lldb_private::SectionList > m_sections_up
Definition ObjectFile.h:774
const ObjectFile & operator=(const ObjectFile &)=delete
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 bool IsGOTSection(const lldb_private::Section &section) const
Returns true if the section is a global offset table section.
Definition ObjectFile.h:738
virtual std::vector< LoadableData > GetLoadableData(Target &target)
Loads this objfile to memory.
virtual llvm::StringRef StripLinkerSymbolAnnotations(llvm::StringRef symbol_name) const
Definition ObjectFile.h:689
~ObjectFile() override
Destructor.
std::unique_ptr< lldb_private::Symtab > m_symtab_up
Definition ObjectFile.h:775
virtual uint32_t GetDependentModules(FileSpecList &file_list)=0
Extract the dependent modules from an object file.
const lldb::addr_t m_memory_addr
Set if the object file only exists in memory.
Definition ObjectFile.h:773
virtual bool IsStripped()=0
Detect if this object file has been stripped of local symbols.
virtual lldb::RegisterContextSP GetThreadContextAtIndex(uint32_t idx, lldb_private::Thread &thread)
Definition ObjectFile.h:561
virtual uint32_t GetNumThreadContexts()
Definition ObjectFile.h:466
static size_t g_initial_bytes_to_read
The number of bytes to read when going through the plugins.
Definition ObjectFile.h:797
virtual lldb_private::Address GetImageInfoAddress(Target *target)
Similar to Process::GetImageInfoAddress().
Definition ObjectFile.h:442
virtual bool LoadCoreFileImages(lldb_private::Process &process)
Load binaries listed in a corefile.
Definition ObjectFile.h:733
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:767
virtual lldb::addr_t GetFileOffset() const
Returns the offset into a file at which this object resides.
Definition ObjectFile.h:271
virtual lldb_private::Address GetEntryPointAddress()
Returns the address of the Entry Point in this object file - if the object file doesn't have an entry...
Definition ObjectFile.h:452
static lldb::WritableDataBufferSP ReadMemory(const lldb::ProcessSP &process_sp, lldb::addr_t addr, size_t byte_size)
virtual Strata CalculateStrata()=0
The object file should be able to calculate the strata of the object file.
@ 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
virtual void SetType(Type type)
In cases where the type can't be calculated (elf files), this routine allows someone to explicitly se...
Definition ObjectFile.h:579
virtual lldb_private::AddressableBits GetAddressableBits()
Some object files may have the number of bits used for addressing embedded in them,...
Definition ObjectFile.h:487
lldb::addr_t m_file_offset
The offset in bytes into the file, or the address in memory.
Definition ObjectFile.h:762
static lldb::SymbolType GetSymbolTypeFromName(llvm::StringRef name, lldb::SymbolType symbol_type_hint=lldb::eSymbolTypeUndefined)
virtual bool IsExecutable() const =0
Tells whether this object file is capable of being the main executable for a process.
virtual size_t GetSectionDataSize(Section *section)
Definition ObjectFile.h:680
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 llvm::VersionTuple GetMinimumOSVersion()
Get the minimum OS version this object file can run on.
Definition ObjectFile.h:616
virtual bool ParseHeader()=0
Attempts to parse the object header.
virtual FileSpec & GetFileSpec()
Get accessor to the object file specification.
Definition ObjectFile.h:280
virtual Type CalculateType()=0
The object file should be able to calculate its type by looking at its file header and possibly the s...
ObjectFile(const ObjectFile &)=delete
std::string GetObjectName() const
virtual bool CanTrustAddressRanges()
Can we trust the address ranges accelerator associated with this object file to be complete.
Definition ObjectFile.h:695
virtual lldb::ByteOrder GetByteOrder() const =0
Gets whether endian swapping should occur when extracting data from this object file.
virtual bool AllowAssemblyEmulationUnwindPlans()
Returns if the function bounds for symbols in this symbol file are likely accurate.
Definition ObjectFile.h:428
NonNullSharedPtr< lldb_private::DataExtractor > DataExtractorNSP
Definition ObjectFile.h:756
virtual llvm::VersionTuple GetVersion()
Get the object file version numbers.
Definition ObjectFile.h:605
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
virtual bool isA(const void *ClassID) const
Definition ObjectFile.h:216
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 SectionFileAddressesChanged()
Notify the ObjectFile that the file addresses in the Sections for this module have been changed.
Definition ObjectFile.h:310
virtual uint32_t GetAddressByteSize() const =0
Gets the address size in bytes for the current object file.
virtual void RelocateSection(lldb_private::Section *section)
Perform relocations on the section if necessary.
std::optional< uint32_t > m_cache_hash
Definition ObjectFile.h:782
virtual SectionList * GetSectionList(bool update_module_section_list=true)
Gets the section list for the currently selected architecture (and object for archives).
static ModuleSpecList GetModuleSpecifications(const FileSpec &file, lldb::offset_t file_offset, lldb::offset_t file_size, lldb::DataExtractorSP=lldb::DataExtractorSP())
virtual UUID GetUUID()=0
Gets the UUID for this object file.
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:781
bool IsInMemory() const
Returns true if the object file exists only in memory.
Definition ObjectFile.h:685
lldb::ProcessWP m_process_wp
Definition ObjectFile.h:771
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:764
virtual bool GetCorefileMainBinaryInfo(lldb::addr_t &value, bool &value_is_offset, UUID &uuid, ObjectFile::BinaryType &type)
When the ObjectFile is a core file, lldb needs to locate the "binary" in the core file.
Definition ObjectFile.h:515
virtual size_t ReadSectionData(Section *section, lldb::offset_t section_offset, void *dst, size_t dst_len)
virtual StructuredData::ObjectSP GetCorefileProcessMetadata()
Get process metadata from the corefile in a StructuredData dictionary.
Definition ObjectFile.h:558
BinaryType
If we have a corefile binary hint, this enum specifies the binary type which we can use to select the...
Definition ObjectFile.h:83
@ eBinaryTypeKernel
kernel binary
Definition ObjectFile.h:87
@ eBinaryTypeUser
user process binary, dyld addr
Definition ObjectFile.h:89
@ eBinaryTypeUserAllImageInfos
user process binary, dyld_all_image_infos addr
Definition ObjectFile.h:91
@ eBinaryTypeStandalone
standalone binary / firmware
Definition ObjectFile.h:93
virtual lldb_private::Address GetBaseAddress()
Returns base address of this object file.
Definition ObjectFile.h:462
virtual bool GetIsDynamicLinkEditor()
Return true if this file is a dynamic link editor (dyld)
Definition ObjectFile.h:635
virtual llvm::VersionTuple GetSDKVersion()
Get the SDK OS version this object file was built with.
Definition ObjectFile.h:626
virtual lldb::addr_t GetByteSize() const
Definition ObjectFile.h:273
virtual lldb_private::FileSpecList GetReExportedLibraries()
Gets the file spec list of libraries re-exported by this object file.
Definition ObjectFile.h:372
virtual ArchSpec GetArchitecture()=0
Get the ArchSpec for this object file.
A plug-in interface definition class for debugging a process.
Definition Process.h:354
ObjectFile * GetObjectFile()
Definition Section.h:231
lldb::offset_t GetFileSize() const
Definition Section.h:187
A stream class that can stream formatted output to a file.
Definition Stream.h:28
std::shared_ptr< Object > ObjectSP
Represents UUID's of various sizes.
Definition UUID.h:27
void Clear()
Definition UUID.h:62
#define LLDB_INVALID_ADDRESS
A class that represents a running process on the host machine.
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
ByteOrder
Byte ordering definitions.
std::weak_ptr< lldb_private::Process > ProcessWP
std::shared_ptr< lldb_private::DataBuffer > DataBufferSP
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
uint64_t addr_t
Definition lldb-types.h:80
std::shared_ptr< lldb_private::RegisterContext > RegisterContextSP
std::shared_ptr< lldb_private::DataExtractor > DataExtractorSP
std::shared_ptr< lldb_private::Module > ModuleSP
bool fromJSON(const llvm::json::Value &value, lldb_private::JSONSection &section, llvm::json::Path path)
Definition Section.cpp:717
llvm::ArrayRef< uint8_t > Contents
Definition ObjectFile.h:98
static void format(const lldb_private::ObjectFile::Strata &strata, raw_ostream &OS, StringRef Style)
static void format(const lldb_private::ObjectFile::Type &type, raw_ostream &OS, StringRef Style)