2012-06-01 12:52:16 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of the QtCore module of the Qt Toolkit.
|
|
|
|
|
**
|
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this
|
|
|
|
|
** file. Please review the following information to ensure the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU General
|
|
|
|
|
** Public License version 3.0 as published by the Free Software Foundation
|
|
|
|
|
** and appearing in the file LICENSE.GPL included in the packaging of this
|
|
|
|
|
** file. Please review the following information to ensure the GNU General
|
|
|
|
|
** Public License version 3.0 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
|
**
|
|
|
|
|
** Other Usage
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef UTILS_ELFREADER_H
|
|
|
|
|
#define UTILS_ELFREADER_H
|
|
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
|
|
|
|
#include <qendian.h>
|
|
|
|
|
#include <qstring.h>
|
2012-06-06 16:08:59 +02:00
|
|
|
#include <qvector.h>
|
2012-06-01 12:52:16 +02:00
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
2012-06-08 14:40:18 +02:00
|
|
|
enum ElfProgramHeaderType
|
|
|
|
|
{
|
|
|
|
|
Elf_PT_NULL = 0,
|
|
|
|
|
Elf_PT_LOAD = 1,
|
|
|
|
|
Elf_PT_DYNAMIC = 2,
|
|
|
|
|
Elf_PT_INTERP = 3,
|
|
|
|
|
Elf_PT_NOTE = 4,
|
|
|
|
|
Elf_PT_SHLIB = 5,
|
|
|
|
|
Elf_PT_PHDR = 6,
|
|
|
|
|
Elf_PT_TLS = 7,
|
|
|
|
|
Elf_PT_NUM = 8
|
|
|
|
|
};
|
|
|
|
|
|
2012-06-08 17:16:27 +02:00
|
|
|
enum ElfSectionHeaderType
|
|
|
|
|
{
|
|
|
|
|
Elf_SHT_NULL = 0,
|
|
|
|
|
Elf_SHT_PROGBITS = 1,
|
|
|
|
|
Elf_SHT_SYMTAB = 2,
|
|
|
|
|
Elf_SHT_STRTAB = 3,
|
|
|
|
|
Elf_SHT_RELA = 4,
|
|
|
|
|
Elf_SHT_HASH = 5,
|
|
|
|
|
Elf_SHT_DYNAMIC = 6,
|
|
|
|
|
Elf_SHT_NOTE = 7,
|
|
|
|
|
Elf_SHT_NOBITS = 8,
|
|
|
|
|
Elf_SHT_REL = 9,
|
|
|
|
|
Elf_SHT_SHLIB = 10,
|
|
|
|
|
Elf_SHT_DYNSYM = 11,
|
|
|
|
|
Elf_SHT_INIT_ARRAY = 14,
|
|
|
|
|
Elf_SHT_FINI_ARRAY = 15,
|
|
|
|
|
Elf_SHT_PREINIT_ARRAY = 16,
|
|
|
|
|
Elf_SHT_GROUP = 17,
|
|
|
|
|
Elf_SHT_SYMTAB_SHNDX = 18
|
|
|
|
|
};
|
|
|
|
|
|
2012-06-08 14:40:18 +02:00
|
|
|
enum ElfEndian
|
|
|
|
|
{
|
2012-06-08 17:16:27 +02:00
|
|
|
Elf_ELFDATANONE = 0,
|
|
|
|
|
Elf_ELFDATA2LSB = 1,
|
|
|
|
|
Elf_ELFDATA2MSB = 2,
|
|
|
|
|
Elf_ELFDATANUM = 3
|
2012-06-08 14:40:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum ElfClass
|
|
|
|
|
{
|
|
|
|
|
Elf_ELFCLASS32 = 1,
|
|
|
|
|
Elf_ELFCLASS64 = 2
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum ElfType
|
|
|
|
|
{
|
|
|
|
|
Elf_ET_NONE = 0,
|
|
|
|
|
Elf_ET_REL = 1,
|
|
|
|
|
Elf_ET_EXEC = 2,
|
|
|
|
|
Elf_ET_DYN = 3,
|
|
|
|
|
Elf_ET_CORE = 4
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum ElfMachine
|
|
|
|
|
{
|
|
|
|
|
Elf_EM_386 = 3,
|
|
|
|
|
Elf_EM_ARM = 40,
|
|
|
|
|
Elf_EM_X86_64 = 62
|
|
|
|
|
};
|
|
|
|
|
|
2012-06-04 18:06:59 +02:00
|
|
|
enum DebugSymbolsType
|
|
|
|
|
{
|
2012-06-06 16:08:59 +02:00
|
|
|
UnknownSymbols = 0, // Unknown.
|
|
|
|
|
NoSymbols = 1, // No usable symbols.
|
|
|
|
|
LinkedSymbols = 2, // Link to symols available.
|
|
|
|
|
BuildIdSymbols = 4, // BuildId available.
|
|
|
|
|
PlainSymbols = 8, // Ordinary symbols available.
|
|
|
|
|
FastSymbols = 16 // Dwarf index available.
|
2012-06-04 18:06:59 +02:00
|
|
|
};
|
2012-06-04 17:23:16 +02:00
|
|
|
|
2012-06-06 16:08:59 +02:00
|
|
|
class ElfSectionHeader
|
2012-06-04 17:23:16 +02:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
QByteArray name;
|
|
|
|
|
quint32 index;
|
|
|
|
|
quint32 type;
|
2012-06-08 17:16:27 +02:00
|
|
|
quint32 flags;
|
2012-06-04 17:23:16 +02:00
|
|
|
quint64 offset;
|
|
|
|
|
quint64 size;
|
2012-06-08 17:16:27 +02:00
|
|
|
quint64 addr;
|
2012-06-05 19:55:32 +02:00
|
|
|
};
|
|
|
|
|
|
2012-06-06 16:08:59 +02:00
|
|
|
class ElfProgramHeader
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-06-08 17:16:27 +02:00
|
|
|
quint32 name;
|
2012-06-06 16:08:59 +02:00
|
|
|
quint32 type;
|
|
|
|
|
quint64 offset;
|
|
|
|
|
quint64 filesz;
|
|
|
|
|
quint64 memsz;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class QTCREATOR_UTILS_EXPORT ElfData
|
2012-06-05 19:55:32 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2012-06-06 16:08:59 +02:00
|
|
|
ElfData() : symbolsType(UnknownSymbols) {}
|
2012-06-05 19:55:32 +02:00
|
|
|
int indexOf(const QByteArray &name) const;
|
|
|
|
|
|
|
|
|
|
public:
|
2012-06-08 14:40:18 +02:00
|
|
|
ElfEndian endian;
|
|
|
|
|
ElfType elftype;
|
|
|
|
|
ElfMachine elfmachine;
|
|
|
|
|
ElfClass elfclass;
|
2012-06-08 17:16:27 +02:00
|
|
|
quint64 entryPoint;
|
2012-06-06 16:08:59 +02:00
|
|
|
QByteArray debugLink;
|
|
|
|
|
QByteArray buildId;
|
2012-06-05 19:55:32 +02:00
|
|
|
DebugSymbolsType symbolsType;
|
2012-06-06 16:08:59 +02:00
|
|
|
QVector<ElfSectionHeader> sectionHeaders;
|
|
|
|
|
QVector<ElfProgramHeader> programHeaders;
|
2012-06-04 17:23:16 +02:00
|
|
|
};
|
|
|
|
|
|
2012-06-01 12:52:16 +02:00
|
|
|
class QTCREATOR_UTILS_EXPORT ElfReader
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit ElfReader(const QString &binary);
|
2012-06-05 19:55:32 +02:00
|
|
|
enum Result { Ok, NotElf, Corrupt };
|
2012-06-01 12:52:16 +02:00
|
|
|
|
2012-06-06 16:08:59 +02:00
|
|
|
ElfData readHeaders();
|
2012-06-05 19:55:32 +02:00
|
|
|
QByteArray readSection(const QByteArray §ionName);
|
2012-06-01 12:52:16 +02:00
|
|
|
QString errorString() const { return m_errorString; }
|
2012-06-08 14:40:18 +02:00
|
|
|
QByteArray readCoreName(bool *isCore);
|
2012-06-01 12:52:16 +02:00
|
|
|
|
|
|
|
|
private:
|
2012-06-05 19:55:32 +02:00
|
|
|
friend class ElfMapper;
|
|
|
|
|
Result readIt();
|
2012-06-01 12:52:16 +02:00
|
|
|
|
|
|
|
|
QString m_binary;
|
|
|
|
|
QString m_errorString;
|
2012-06-06 16:08:59 +02:00
|
|
|
ElfData m_elfData;
|
2012-06-04 18:06:59 +02:00
|
|
|
};
|
|
|
|
|
|
2012-06-01 12:52:16 +02:00
|
|
|
} // namespace Utils
|
|
|
|
|
|
|
|
|
|
#endif // UTILS_ELFREADER_H
|