CQtDeployer/Deploy/elf_type.cpp
2020-10-15 21:06:38 +03:00

95 lines
2.2 KiB
C++

//#
//# Copyright (C) 2018-2020 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#include "elf_type.h"
#include <cmath>
#include <QFileInfo>
#include <quasarapp.h>
ELF::ELF()
{
}
QByteArrayList ELF::getDynamicString(ElfReader& reader) const {
auto headers = reader.readHeaders();
for (const auto &sectionHeader : headers.sectionHeaders) {
if (sectionHeader.name == ".dynstr") {
auto arr = reader.readSection(sectionHeader.name).split(0);
return arr;
}
}
return {};
}
int ELF::getVersionOfTag(const QByteArray& tag, QByteArray& source) const {
auto versions = source.replace(tag, "").split('.');
int step = static_cast<int>(pow(100, 4));
int ver = 0;
auto it = versions.begin();
while (it != versions.end()) {
bool ok;
int curVer = it->toInt(&ok);
if (!ok) {
return -1;
}
ver += curVer * step;
step /= 100;
it++;
}
return ver;
}
bool ELF::getLibInfo(const QString &lib, LibInfo &info) const {
ElfReader reader(lib);
auto headers = reader.readHeaders();
if (headers.elfmachine == ElfMachine::Elf_EM_386) {
info.setPlatform(Unix_x86_32);
} else if (headers.elfmachine == ElfMachine::Elf_EM_X86_64) {
info.setPlatform(Unix_x86_64);
} else if (headers.elfmachine == ElfMachine::Elf_EM_ARM) {
info.setPlatform(Unix_ARM_32);
} else {
info.setPlatform(UnknownPlatform);
return false;
}
if (!QuasarAppUtils::Params::isEndable("noCheckRPATH")) {
auto dynStr = getDynamicString(reader);
for (auto i = dynStr.rbegin(); i != dynStr.rend(); ++i) {
if (i->contains("end_")) {
break;
}
if (QFileInfo(*i).isDir()) {
info.setQtPath(DeployCore::transportPathToSnapRoot(*i));
}
}
}
info.setName(QFileInfo(lib).fileName());
info.setPath(QFileInfo(lib).absolutePath());
auto dep = reader.dependencies();
for (const auto &i : dep) {
info.addDependncies(i);
}
return true;
}