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