2012-06-01 12:52:16 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-06-01 12:52:16 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-06-01 12:52:16 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-06-01 12:52:16 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-06-01 12:52:16 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2012-06-01 12:52:16 +02:00
|
|
|
|
|
|
|
|
#include "utils_global.h"
|
|
|
|
|
|
2014-09-07 23:24:10 +03:00
|
|
|
#include <qbytearray.h>
|
2012-06-01 12:52:16 +02:00
|
|
|
#include <qendian.h>
|
2014-09-07 23:24:10 +03:00
|
|
|
#include <qfile.h>
|
2012-06-06 16:08:59 +02:00
|
|
|
#include <qvector.h>
|
2012-07-30 17:31:06 +02:00
|
|
|
#include <qcoreapplication.h>
|
2014-09-07 23:24:10 +03:00
|
|
|
#include <qsharedpointer.h>
|
2012-06-01 12:52:16 +02:00
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
2014-09-07 23:24:10 +03:00
|
|
|
class ElfMapper;
|
|
|
|
|
|
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:
|
2018-07-23 10:45:40 +02:00
|
|
|
ElfData() = default;
|
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;
|
2018-07-23 10:45:40 +02:00
|
|
|
DebugSymbolsType symbolsType = UnknownSymbols;
|
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
|
|
|
|
|
{
|
2012-07-30 17:31:06 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(Utils::ElfReader)
|
2012-06-01 12:52:16 +02:00
|
|
|
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();
|
2014-09-07 23:24:10 +03:00
|
|
|
QSharedPointer<ElfMapper> 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
|
|
|
};
|
|
|
|
|
|
2014-09-07 23:24:10 +03:00
|
|
|
class QTCREATOR_UTILS_EXPORT ElfMapper
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ElfMapper(const ElfReader *reader);
|
|
|
|
|
bool map();
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
QFile file;
|
|
|
|
|
QByteArray raw;
|
|
|
|
|
union { const char *start; const uchar *ustart; };
|
2016-11-29 15:13:11 +01:00
|
|
|
quint64 fdlen = 0;
|
2014-09-07 23:24:10 +03:00
|
|
|
};
|
|
|
|
|
|
2012-06-01 12:52:16 +02:00
|
|
|
} // namespace Utils
|