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 /// Whether a symbol that this object file has not itself tagged as a
377 /// re-export can still be shadowed by one of GetReExportedLibraries().
379 return false;
380 }
381
382 /// Sets the load address for an entire module, assuming a rigid slide of
383 /// sections, if possible in the implementation.
384 ///
385 /// \return
386 /// Returns true iff any section's load address changed.
387 virtual bool SetLoadAddress(Target &target, lldb::addr_t value,
388 bool value_is_offset) {
389 return false;
390 }
391
392 /// Gets whether endian swapping should occur when extracting data from this
393 /// object file.
394 ///
395 /// \return
396 /// Returns \b true if endian swapping is needed, \b false
397 /// otherwise.
398 virtual lldb::ByteOrder GetByteOrder() const = 0;
399
400 /// Attempts to parse the object header.
401 ///
402 /// This function is used as a test to see if a given plug-in instance can
403 /// parse the header data already contained in ObjectFile::m_data_nsp. If an
404 /// object file parser does not recognize that magic bytes in a header,
405 /// false should be returned and the next plug-in can attempt to parse an
406 /// object file.
407 ///
408 /// \return
409 /// Returns \b true if the header was parsed successfully, \b
410 /// false otherwise.
411 virtual bool ParseHeader() = 0;
412
413 /// Returns if the function bounds for symbols in this symbol file are
414 /// likely accurate.
415 ///
416 /// The unwinder can emulate the instructions of functions to understand
417 /// prologue/epilogue code sequences, where registers are spilled on the
418 /// stack, etc. This feature relies on having the correct start addresses
419 /// of all functions. If the ObjectFile has a way to tell that symbols have
420 /// been stripped and there's no way to reconstruct start addresses (e.g.
421 /// LC_FUNCTION_STARTS on Mach-O, or eh_frame unwind info), the ObjectFile
422 /// should indicate that assembly emulation should not be used for this
423 /// module.
424 ///
425 /// It is uncommon for this to return false. An ObjectFile needs to be sure
426 /// that symbol start addresses are unavailable before false is returned.
427 /// If it is unclear, this should return true.
428 ///
429 /// \return
430 /// Returns true if assembly emulation should be used for this
431 /// module.
432 /// Only returns false if the ObjectFile is sure that symbol
433 /// addresses are insufficient for accurate assembly emulation.
434 virtual bool AllowAssemblyEmulationUnwindPlans() { return true; }
435
436 /// Similar to Process::GetImageInfoAddress().
437 ///
438 /// Some platforms embed auxiliary structures useful to debuggers in the
439 /// address space of the inferior process. This method returns the address
440 /// of such a structure if the information can be resolved via entries in
441 /// the object file. ELF, for example, provides a means to hook into the
442 /// runtime linker so that a debugger may monitor the loading and unloading
443 /// of shared libraries.
444 ///
445 /// \return
446 /// The address of any auxiliary tables, or an invalid address if this
447 /// object file format does not support or contain such information.
449 return Address();
450 }
451
452 /// Returns the address of the Entry Point in this object file - if the
453 /// object file doesn't have an entry point (because it is not an executable
454 /// file) then an invalid address is returned.
455 ///
456 /// \return
457 /// Returns the entry address for this module.
459
460 /// Returns base address of this object file.
461 ///
462 /// This also sometimes referred to as the "preferred load address" or the
463 /// "image base address". Addresses within object files are often expressed
464 /// relative to this base. If this address corresponds to a specific section
465 /// (usually the first byte of the first section) then the returned address
466 /// will have this section set. Otherwise, the address will just have the
467 /// offset member filled in, indicating that this represents a file address.
471
472 virtual uint32_t GetNumThreadContexts() { return 0; }
473
474 /// Some object files may have an identifier string embedded in them, e.g.
475 /// in a Mach-O core file using the LC_IDENT load command (which is
476 /// obsolete, but can still be found in some old files)
477 ///
478 /// \return
479 /// Returns the identifier string if one exists, else an empty
480 /// string.
481 virtual std::string GetIdentifierString () {
482 return std::string();
483 }
484
485 /// Some object files may have the number of bits used for addressing
486 /// embedded in them, e.g. a Mach-O core file using an LC_NOTE. These
487 /// object files can return an AddressableBits object that can can be
488 /// used to set the address masks in the Process.
489 ///
490 /// \return
491 /// Returns an AddressableBits object which can be used to set
492 /// the address masks in the Process.
494
495 /// When the ObjectFile is a core file, lldb needs to locate the "binary" in
496 /// the core file. lldb can iterate over the pages looking for a valid
497 /// binary, but some core files may have metadata describing where the main
498 /// binary is exactly which removes ambiguity when there are multiple
499 /// binaries present in the captured memory pages.
500 ///
501 /// \param[out] value
502 /// The address or offset (slide) where the binary is loaded in memory.
503 /// LLDB_INVALID_ADDRESS for unspecified. If an offset is given,
504 /// this offset should be added to the binary's file address to get
505 /// the load address.
506 ///
507 /// \param[out] value_is_offset
508 /// Specifies if \b value is a load address, or an offset to calculate
509 /// the load address.
510 ///
511 /// \param[out] uuid
512 /// If the uuid of the binary is specified, this will be set.
513 /// If no UUID is available, will be cleared.
514 ///
515 /// \param[out] type
516 /// Return the type of the binary, which will dictate which
517 /// DynamicLoader plugin should be used.
518 ///
519 /// \return
520 /// Returns true if either address or uuid has been set.
522 bool &value_is_offset, UUID &uuid,
524 value = LLDB_INVALID_ADDRESS;
525 value_is_offset = false;
526 uuid.Clear();
527 return false;
528 }
529
530 /// Get metadata about thread ids from the corefile.
531 ///
532 /// The corefile may have metadata (e.g. a Mach-O "process metadata"
533 /// LC_NOTE) which for the threads in the process; this method tries
534 /// to retrieve them.
535 ///
536 /// \param[out] tids
537 /// Filled in with a vector of tid_t's that matches the number
538 /// of threads in the corefile (ObjectFile::GetNumThreadContexts).
539 /// If a tid is not specified for one of the corefile threads,
540 /// that entry in the vector will have LLDB_INVALID_THREAD_ID and
541 /// the caller should assign a tid to the thread that does not
542 /// conflict with the ones provided in this array.
543 /// As additional metadata are added, this method may return a
544 /// \a tids vector with no thread id's specified at all; the
545 /// corefile may only specify one of the other metadata.
546 ///
547 /// \return
548 /// Returns true if thread metadata was found in this corefile.
549 ///
550 virtual bool GetCorefileThreadExtraInfos(std::vector<lldb::tid_t> &tids) {
551 return false;
552 }
553
554 /// Get process metadata from the corefile in a StructuredData dictionary.
555 ///
556 /// The corefile may have notes (e.g. a Mach-O "process metadata" LC_NOTE)
557 /// which provide metadata about the process and threads in a JSON or
558 /// similar format.
559 ///
560 /// \return
561 /// A StructuredData object with the metadata in the note, if there is
562 /// one. An empty shared pointer is returned if not metadata is found,
563 /// or a problem parsing it.
565
569 }
570
571 /// The object file should be able to calculate its type by looking at its
572 /// file header and possibly the sections or other data in the object file.
573 /// The file type is used in the debugger to help select the correct plug-
574 /// ins for the job at hand, so this is important to get right. If any
575 /// eTypeXXX definitions do not match up with the type of file you are
576 /// loading, please feel free to add a new enumeration value.
577 ///
578 /// \return
579 /// The calculated file type for the current object file.
580 virtual Type CalculateType() = 0;
581
582 /// In cases where the type can't be calculated (elf files), this routine
583 /// allows someone to explicitly set it. As an example, SymbolVendorELF uses
584 /// this routine to set eTypeDebugInfo when loading debug link files.
585 virtual void SetType(Type type) { m_type = type; }
586
587 /// The object file should be able to calculate the strata of the object
588 /// file.
589 ///
590 /// Many object files for platforms might be for either user space debugging
591 /// or for kernel debugging. If your object file subclass can figure this
592 /// out, it will help with debugger plug-in selection when it comes time to
593 /// debug.
594 ///
595 /// \return
596 /// The calculated object file strata for the current object
597 /// file.
598 virtual Strata CalculateStrata() = 0;
599
600 /// Get the object file version numbers.
601 ///
602 /// Many object files have a set of version numbers that describe the
603 /// version of the executable or shared library. Typically there are major,
604 /// minor and build, but there may be more. This function will extract the
605 /// versions from object files if they are available.
606 ///
607 /// \return
608 /// This function returns extracted version numbers as a
609 /// llvm::VersionTuple. In case of error an empty VersionTuple is
610 /// returned.
611 virtual llvm::VersionTuple GetVersion() { return llvm::VersionTuple(); }
612
613 /// Get the minimum OS version this object file can run on.
614 ///
615 /// Some object files have information that specifies the minimum OS version
616 /// that they can be used on.
617 ///
618 /// \return
619 /// This function returns extracted version numbers as a
620 /// llvm::VersionTuple. In case of error an empty VersionTuple is
621 /// returned.
622 virtual llvm::VersionTuple GetMinimumOSVersion() {
623 return llvm::VersionTuple();
624 }
625
626 /// Get the SDK OS version this object file was built with.
627 ///
628 /// \return
629 /// This function returns extracted version numbers as a
630 /// llvm::VersionTuple. In case of error an empty VersionTuple is
631 /// returned.
632 virtual llvm::VersionTuple GetSDKVersion() { return llvm::VersionTuple(); }
633
634 /// Return true if this file is a dynamic link editor (dyld)
635 ///
636 /// Often times dyld has symbols that mirror symbols in libc and other
637 /// shared libraries (like "malloc" and "free") and the user does _not_ want
638 /// to stop in these shared libraries by default. We can ask the ObjectFile
639 /// if it is such a file and should be avoided for things like settings
640 /// breakpoints and doing function lookups for expressions.
641 virtual bool GetIsDynamicLinkEditor() { return false; }
642
643 // Member Functions
645 if (m_type == eTypeInvalid)
647 return m_type;
648 }
649
653 return m_strata;
654 }
655
656 // When an object file is in memory, subclasses should try and lock the
657 // process weak pointer. If the process weak pointer produces a valid
658 // ProcessSP, then subclasses can call this function to read memory.
660 ReadMemory(const lldb::ProcessSP &process_sp, lldb::addr_t addr,
661 size_t byte_size);
662
663 // This function returns raw file contents. Do not use it if you want
664 // transparent decompression of section contents.
665 size_t GetData(lldb::offset_t offset, size_t length,
666 lldb::DataExtractorSP &data_sp) const;
667
668 // This function returns raw file contents. Do not use it if you want
669 // transparent decompression of section contents.
670 size_t CopyData(lldb::offset_t offset, size_t length, void *dst) const;
671
672 // This function will transparently decompress section data if the section if
673 // compressed.
674 virtual size_t ReadSectionData(Section *section,
675 lldb::offset_t section_offset, void *dst,
676 size_t dst_len);
677
678 // This function will transparently decompress section data if the section if
679 // compressed. Note that for compressed section the resulting data size may
680 // be larger than what Section::GetFileSize reports.
681 virtual size_t ReadSectionData(Section *section,
682 DataExtractor &section_data);
683
684 // Returns the section data size. This is special-cased for PECOFF
685 // due to file alignment.
686 virtual size_t GetSectionDataSize(Section *section) {
687 return section->GetFileSize();
688 }
689
690 /// Returns true if the object file exists only in memory.
692
693 // Strip linker annotations (such as @@VERSION) from symbol names.
694 virtual llvm::StringRef
695 StripLinkerSymbolAnnotations(llvm::StringRef symbol_name) const {
696 return symbol_name;
697 }
698
699 /// Can we trust the address ranges accelerator associated with this object
700 /// file to be complete.
701 virtual bool CanTrustAddressRanges() { return false; }
702
704 llvm::StringRef name,
706
707 /// Parses the section type from a section name for DWARF sections.
708 ///
709 /// The \a name must be stripped of the default prefix (e.g. ".debug_" or
710 /// "__debug_"). If there's no matching section type, \a eSectionTypeOther
711 /// will be returned.
712 static lldb::SectionType GetDWARFSectionTypeFromName(llvm::StringRef name);
713
714 /// Loads this objfile to memory.
715 ///
716 /// Loads the bits needed to create an executable image to the memory. It is
717 /// useful with bare-metal targets where target does not have the ability to
718 /// start a process itself.
719 ///
720 /// \param[in] target
721 /// Target where to load.
722 virtual std::vector<LoadableData> GetLoadableData(Target &target);
723
724 /// Creates a plugin-specific call frame info
725 virtual std::unique_ptr<CallFrameInfo> CreateCallFrameInfo();
726
727 /// Load binaries listed in a corefile
728 ///
729 /// A corefile may have metadata listing binaries that can be loaded,
730 /// and the offsets at which they were loaded. This method will try
731 /// to add them to the Target. If any binaries were loaded,
732 ///
733 /// \param[in] process
734 /// Process where to load binaries.
735 ///
736 /// \return
737 /// Returns true if any binaries were loaded.
738
740 return false;
741 }
742
743 /// Returns true if the section is a global offset table section.
744 virtual bool IsGOTSection(const lldb_private::Section &section) const {
745 assert(section.GetObjectFile() == this && "Wrong object file!");
746 return false;
747 }
748
749 /// Get a hash that can be used for caching object file related information.
750 ///
751 /// Data for object files can be cached between runs of debug sessions and
752 /// a Module can end up using a ObjectFile and a SymbolFile, both of which
753 /// can be ObjectFiles in reality. We need a unique hash that identifies
754 /// an ObjectFile when storing cached data.
755 ///
756 /// The hash value returned does not change when the same binary is
757 /// rebuilt with changes; it does not incorporate a mod date or UUID
758 /// like DataFileCache's CacheSignature does.
759 uint32_t GetCacheHash();
760
761 static lldb::DataBufferSP MapFileData(const FileSpec &file, uint64_t Size,
762 uint64_t Offset);
763 std::string GetObjectName() const;
764
765protected:
767
768 // Member variables.
772 lldb::addr_t m_file_offset; ///< The offset in bytes into the file, or the
773 ///address in memory
774 lldb::addr_t m_length; ///< The length of this object file if it is known (can
775 ///be zero if length is unknown or can't be
776 ///determined).
777 DataExtractorNSP m_data_nsp; ///< The data for this object file so things
778 ///< can be parsed lazily. This shared pointer
779 ///< will always have a DataExtractor object,
780 ///< although it may only be default-constructed.
782 /// Set if the object file only exists in memory.
784
785 std::unique_ptr<lldb_private::SectionList> m_sections_up;
786 std::recursive_mutex m_sections_mutex;
787
788 std::unique_ptr<lldb_private::Symtab> m_symtab_up;
789 /// We need a llvm::once_flag that we can use to avoid locking the module
790 /// lock and deadlocking LLDB. See comments in ObjectFile::GetSymtab() for
791 /// the full details. We also need to be able to clear the symbol table, so we
792 /// need to use a std::unique_ptr to a llvm::once_flag so if we clear the
793 /// symbol table, we can have a new once flag to use when it is created again.
794 std::unique_ptr<llvm::once_flag> m_symtab_once_up;
795 std::optional<uint32_t> m_cache_hash;
796
797 /// Sets the architecture for a module. At present the architecture can
798 /// only be set if it is invalid. It is not allowed to switch from one
799 /// concrete architecture to another.
800 ///
801 /// \param[in] new_arch
802 /// The architecture this module will be set to.
803 ///
804 /// \return
805 /// Returns \b true if the architecture was changed, \b
806 /// false otherwise.
807 bool SetModulesArchitecture(const ArchSpec &new_arch);
808
809 /// The number of bytes to read when going through the plugins.
811
812private:
813 ObjectFile(const ObjectFile &) = delete;
814 const ObjectFile &operator=(const ObjectFile &) = delete;
815};
816
817} // namespace lldb_private
818
819namespace llvm {
820template <> struct format_provider<lldb_private::ObjectFile::Type> {
821 static void format(const lldb_private::ObjectFile::Type &type,
822 raw_ostream &OS, StringRef Style);
823};
824
825template <> struct format_provider<lldb_private::ObjectFile::Strata> {
826 static void format(const lldb_private::ObjectFile::Strata &strata,
827 raw_ostream &OS, StringRef Style);
828};
829
830namespace json {
831bool fromJSON(const llvm::json::Value &value, lldb_private::ObjectFile::Type &,
832 llvm::json::Path path);
833} // namespace json
834} // namespace llvm
835
836#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:56
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:91
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:550
virtual std::string GetIdentifierString()
Some object files may have an identifier string embedded in them, e.g.
Definition ObjectFile.h:481
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:387
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:785
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:744
virtual std::vector< LoadableData > GetLoadableData(Target &target)
Loads this objfile to memory.
virtual llvm::StringRef StripLinkerSymbolAnnotations(llvm::StringRef symbol_name) const
Definition ObjectFile.h:695
~ObjectFile() override
Destructor.
std::unique_ptr< lldb_private::Symtab > m_symtab_up
Definition ObjectFile.h:788
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:783
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:567
virtual uint32_t GetNumThreadContexts()
Definition ObjectFile.h:472
virtual bool ReExportedLibrariesShadowLocalDefinitions() const
Whether a symbol that this object file has not itself tagged as a re-export can still be shadowed by ...
Definition ObjectFile.h:378
static size_t g_initial_bytes_to_read
The number of bytes to read when going through the plugins.
Definition ObjectFile.h:810
virtual lldb_private::Address GetImageInfoAddress(Target *target)
Similar to Process::GetImageInfoAddress().
Definition ObjectFile.h:448
virtual bool LoadCoreFileImages(lldb_private::Process &process)
Load binaries listed in a corefile.
Definition ObjectFile.h:739
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:777
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:458
std::recursive_mutex m_sections_mutex
Definition ObjectFile.h:786
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:585
virtual lldb_private::AddressableBits GetAddressableBits()
Some object files may have the number of bits used for addressing embedded in them,...
Definition ObjectFile.h:493
lldb::addr_t m_file_offset
The offset in bytes into the file, or the address in memory.
Definition ObjectFile.h:772
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:686
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:622
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:701
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:434
NonNullSharedPtr< lldb_private::DataExtractor > DataExtractorNSP
Definition ObjectFile.h:766
virtual llvm::VersionTuple GetVersion()
Get the object file version numbers.
Definition ObjectFile.h:611
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:795
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:794
bool IsInMemory() const
Returns true if the object file exists only in memory.
Definition ObjectFile.h:691
lldb::ProcessWP m_process_wp
Definition ObjectFile.h:781
uint32_t GetCacheHash()
Get a hash that can be used for caching object file related 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:774
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:521
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:564
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:468
virtual bool GetIsDynamicLinkEditor()
Return true if this file is a dynamic link editor (dyld)
Definition ObjectFile.h:641
virtual llvm::VersionTuple GetSDKVersion()
Get the SDK OS version this object file was built with.
Definition ObjectFile.h:632
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:367
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:86
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:720
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)