elf_object.hh revision 7581
112SN/A/* 21762SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan 312SN/A * All rights reserved. 412SN/A * 512SN/A * Redistribution and use in source and binary forms, with or without 612SN/A * modification, are permitted provided that the following conditions are 712SN/A * met: redistributions of source code must retain the above copyright 812SN/A * notice, this list of conditions and the following disclaimer; 912SN/A * redistributions in binary form must reproduce the above copyright 1012SN/A * notice, this list of conditions and the following disclaimer in the 1112SN/A * documentation and/or other materials provided with the distribution; 1212SN/A * neither the name of the copyright holders nor the names of its 1312SN/A * contributors may be used to endorse or promote products derived from 1412SN/A * this software without specific prior written permission. 1512SN/A * 1612SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1712SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1812SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 1912SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2012SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2112SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2212SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2312SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2412SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2512SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2612SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 272665Ssaidi@eecs.umich.edu * 282665Ssaidi@eecs.umich.edu * Authors: Steve Reinhardt 2912SN/A */ 3012SN/A 3112SN/A#ifndef __ELF_OBJECT_HH__ 3212SN/A#define __ELF_OBJECT_HH__ 3312SN/A 3456SN/A#include "base/loader/object_file.hh" 355070Ssaidi@eecs.umich.edu#include <set> 365090Sgblack@eecs.umich.edu#include <vector> 3712SN/A 3812SN/Aclass ElfObject : public ObjectFile 3912SN/A{ 4012SN/A protected: 4112SN/A 425090Sgblack@eecs.umich.edu //The global definition of a "Section" is closest to elf's segments. 435090Sgblack@eecs.umich.edu typedef ObjectFile::Section Segment; 445090Sgblack@eecs.umich.edu 452976Sgblack@eecs.umich.edu //These values are provided to a linux process by the kernel, so we 462976Sgblack@eecs.umich.edu //need to keep them around. 472976Sgblack@eecs.umich.edu Addr _programHeaderTable; 482976Sgblack@eecs.umich.edu uint16_t _programHeaderSize; 492976Sgblack@eecs.umich.edu uint16_t _programHeaderCount; 505070Ssaidi@eecs.umich.edu std::set<std::string> sectionNames; 512976Sgblack@eecs.umich.edu 52468SN/A /// Helper functions for loadGlobalSymbols() and loadLocalSymbols(). 537581SAli.Saidi@arm.com bool loadSomeSymbols(SymbolTable *symtab, int binding, Addr mask); 54468SN/A 5512SN/A ElfObject(const std::string &_filename, int _fd, 562479SN/A size_t _len, uint8_t *_data, 57360SN/A Arch _arch, OpSys _opSys); 5812SN/A 595070Ssaidi@eecs.umich.edu void getSections(); 605070Ssaidi@eecs.umich.edu bool sectionExists(std::string sec); 615070Ssaidi@eecs.umich.edu 625090Sgblack@eecs.umich.edu std::vector<Segment> extraSegments; 635090Sgblack@eecs.umich.edu 6412SN/A public: 6512SN/A virtual ~ElfObject() {} 6612SN/A 675090Sgblack@eecs.umich.edu bool loadSections(Port *memPort, 685090Sgblack@eecs.umich.edu Addr addrMask = std::numeric_limits<Addr>::max()); 693812Ssaidi@eecs.umich.edu virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask = 703812Ssaidi@eecs.umich.edu std::numeric_limits<Addr>::max()); 713812Ssaidi@eecs.umich.edu virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask = 723812Ssaidi@eecs.umich.edu std::numeric_limits<Addr>::max()); 7312SN/A 745070Ssaidi@eecs.umich.edu virtual bool isDynamic() { return sectionExists(".interp"); } 755070Ssaidi@eecs.umich.edu virtual bool hasTLS() { return sectionExists(".tbss"); } 763917Ssaidi@eecs.umich.edu 7712SN/A static ObjectFile *tryFile(const std::string &fname, int fd, 7812SN/A size_t len, uint8_t *data); 792976Sgblack@eecs.umich.edu Addr programHeaderTable() {return _programHeaderTable;} 802976Sgblack@eecs.umich.edu uint16_t programHeaderSize() {return _programHeaderSize;} 812976Sgblack@eecs.umich.edu uint16_t programHeaderCount() {return _programHeaderCount;} 8212SN/A}; 8312SN/A 8412SN/A#endif // __ELF_OBJECT_HH__ 85