//===- lib/ReaderWriter/ELF/DynamicFile.h ---------------------------------===// // // The LLVM Linker // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLD_READER_WRITER_ELF_DYNAMIC_FILE_H #define LLD_READER_WRITER_ELF_DYNAMIC_FILE_H #include "Atoms.h" #include "lld/Core/SharedLibraryFile.h" #include "lld/ReaderWriter/ELFLinkingContext.h" #include "llvm/Object/ELF.h" #include "llvm/Support/Path.h" #include namespace lld { namespace elf { template class DynamicFile : public SharedLibraryFile { public: static ErrorOr> create(std::unique_ptr mb, bool useShlibUndefines); virtual const atom_collection &defined() const { return _definedAtoms; } virtual const atom_collection &undefined() const { return _undefinedAtoms; } virtual const atom_collection &sharedLibrary() const { return _sharedLibraryAtoms; } virtual const atom_collection &absolute() const { return _absoluteAtoms; } virtual const SharedLibraryAtom *exports(StringRef name, bool dataSymbolOnly) const { assert(!dataSymbolOnly && "Invalid option for ELF exports!"); // See if we have the symbol. auto sym = _nameToSym.find(name); if (sym == _nameToSym.end()) return nullptr; // Have we already created a SharedLibraryAtom for it? if (sym->second._atom) return sym->second._atom; // Create a SharedLibraryAtom for this symbol. return sym->second._atom = new (_alloc) ELFDynamicAtom( *this, name, _soname, sym->second._symbol); } private: DynamicFile(StringRef name) : SharedLibraryFile(name) {} mutable llvm::BumpPtrAllocator _alloc; std::unique_ptr> _objFile; atom_collection_vector _definedAtoms; atom_collection_vector _undefinedAtoms; atom_collection_vector _sharedLibraryAtoms; atom_collection_vector _absoluteAtoms; /// \brief DT_SONAME StringRef _soname; struct SymAtomPair { SymAtomPair() : _symbol(nullptr), _atom(nullptr) {} const typename llvm::object::ELFFile::Elf_Sym *_symbol; const SharedLibraryAtom *_atom; }; mutable std::unordered_map _nameToSym; }; template ErrorOr>> DynamicFile::create(std::unique_ptr mb, bool useShlibUndefines) { std::unique_ptr file(new DynamicFile(mb->getBufferIdentifier())); error_code ec; file->_objFile.reset(new llvm::object::ELFFile(mb.release(), ec)); if (ec) return ec; llvm::object::ELFFile &obj = *file->_objFile; file->_soname = obj.getLoadName(); if (file->_soname.empty()) file->_soname = llvm::sys::path::filename(file->path()); // Create a map from names to dynamic symbol table entries. // TODO: This should use the object file's build in hash table instead if // it exists. for (auto i = obj.begin_dynamic_symbols(), e = obj.end_dynamic_symbols(); i != e; ++i) { auto name = obj.getSymbolName(i); if ((ec = name.getError())) return ec; // TODO: Add absolute symbols if (i->st_shndx == llvm::ELF::SHN_ABS) continue; if (i->st_shndx == llvm::ELF::SHN_UNDEF) { if (!useShlibUndefines) continue; // Create an undefined atom. if (!name->empty()) { auto *newAtom = new (file->_alloc) ELFUndefinedAtom(*file.get(), *name, &*i); file->_undefinedAtoms._atoms.push_back(newAtom); } continue; } file->_nameToSym[*name]._symbol = &*i; } return std::move(file); } } // end namespace elf } // end namespace lld #endif