mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-21 23:48:22 +08:00
cda0018a29
- more refactoring to go, because new NVRAM code was written in a hurry and needs to be cleaned up
138 lines
7.3 KiB
C++
138 lines
7.3 KiB
C++
/* ffsparser.h
|
|
|
|
Copyright (c) 2016, Nikolaj Schlej. All rights reserved.
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHWARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
*/
|
|
|
|
#ifndef FFSPARSER_H
|
|
#define FFSPARSER_H
|
|
|
|
#include <vector>
|
|
|
|
#include <QObject>
|
|
#include <QModelIndex>
|
|
#include <QByteArray>
|
|
|
|
#include "basetypes.h"
|
|
#include "treemodel.h"
|
|
#include "utility.h"
|
|
#include "peimage.h"
|
|
#include "parsingdata.h"
|
|
#include "types.h"
|
|
#include "treemodel.h"
|
|
#include "descriptor.h"
|
|
#include "ffs.h"
|
|
#include "gbe.h"
|
|
#include "me.h"
|
|
#include "fit.h"
|
|
#include "nvram.h"
|
|
|
|
class TreeModel;
|
|
|
|
class FfsParser
|
|
{
|
|
public:
|
|
// Default constructor and destructor
|
|
FfsParser(TreeModel* treeModel) : model(treeModel), capsuleOffsetFixup(0) {}
|
|
~FfsParser() {}
|
|
|
|
// Returns messages
|
|
std::vector<std::pair<QString, QModelIndex> > getMessages() const { return messagesVector; }
|
|
// Clears messages
|
|
void clearMessages() { messagesVector.clear(); }
|
|
|
|
// Firmware image parsing
|
|
STATUS parse(const QByteArray &buffer);
|
|
|
|
// Retuns index of the last VTF after parsing is done
|
|
const QModelIndex getLastVtf() {return lastVtf;};
|
|
|
|
private:
|
|
TreeModel *model;
|
|
std::vector<std::pair<QString, QModelIndex> > messagesVector;
|
|
QModelIndex lastVtf;
|
|
UINT32 capsuleOffsetFixup;
|
|
|
|
STATUS parseRawArea(const QModelIndex & index);
|
|
STATUS parseVolumeHeader(const QByteArray & volume, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index);
|
|
STATUS parseVolumeBody(const QModelIndex & index);
|
|
STATUS parseFileHeader(const QByteArray & file, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index);
|
|
STATUS parseFileBody(const QModelIndex & index);
|
|
STATUS parseSectionHeader(const QByteArray & section, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index, const bool preparse = false);
|
|
STATUS parseSectionBody(const QModelIndex & index);
|
|
|
|
STATUS parseIntelImage(const QByteArray & intelImage, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & root);
|
|
STATUS parseGbeRegion(const QByteArray & gbe, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index);
|
|
STATUS parseMeRegion(const QByteArray & me, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index);
|
|
STATUS parseBiosRegion(const QByteArray & bios, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index);
|
|
STATUS parsePdrRegion(const QByteArray & pdr, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index);
|
|
STATUS parseGeneralRegion(const UINT8 subtype, const QByteArray & region, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index);
|
|
|
|
STATUS parsePadFileBody(const QModelIndex & index);
|
|
STATUS parseVolumeNonUefiData(const QByteArray & data, const UINT32 parentOffset, const QModelIndex & index);
|
|
|
|
STATUS parseSections(const QByteArray & sections, const QModelIndex & index, const bool preparse = false);
|
|
STATUS parseCommonSectionHeader(const QByteArray & section, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index, const bool preparse);
|
|
STATUS parseCompressedSectionHeader(const QByteArray & section, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index, const bool preparse);
|
|
STATUS parseGuidedSectionHeader(const QByteArray & section, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index, const bool preparse);
|
|
STATUS parseFreeformGuidedSectionHeader(const QByteArray & section, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index, const bool preparse);
|
|
STATUS parseVersionSectionHeader(const QByteArray & section, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index, const bool preparse);
|
|
STATUS parsePostcodeSectionHeader(const QByteArray & section, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index, const bool preparse);
|
|
|
|
STATUS parseCompressedSectionBody(const QModelIndex & index);
|
|
STATUS parseGuidedSectionBody(const QModelIndex & index);
|
|
STATUS parseVersionSectionBody(const QModelIndex & index);
|
|
STATUS parseDepexSectionBody(const QModelIndex & index);
|
|
STATUS parseUiSectionBody(const QModelIndex & index);
|
|
STATUS parseRawSectionBody(const QModelIndex & index);
|
|
STATUS parsePeImageSectionBody(const QModelIndex & index);
|
|
STATUS parseTeImageSectionBody(const QModelIndex & index);
|
|
|
|
UINT8 getPaddingType(const QByteArray & padding);
|
|
STATUS parseAprioriRawSection(const QByteArray & body, QString & parsed);
|
|
STATUS findNextVolume(const QModelIndex & index, const QByteArray & bios, const UINT32 parentOffset, const UINT32 volumeOffset, UINT32 & nextVolumeOffset);
|
|
STATUS getVolumeSize(const QByteArray & bios, const UINT32 volumeOffset, UINT32 & volumeSize, UINT32 & bmVolumeSize);
|
|
UINT32 getFileSize(const QByteArray & volume, const UINT32 fileOffset, const UINT8 ffsVersion);
|
|
UINT32 getSectionSize(const QByteArray & file, const UINT32 sectionOffset, const UINT8 ffsVersion);
|
|
|
|
STATUS performFirstPass(const QByteArray & imageFile, QModelIndex & index);
|
|
STATUS performSecondPass(const QModelIndex & index);
|
|
STATUS addOffsetsRecursive(const QModelIndex & index);
|
|
STATUS addMemoryAddressesRecursive(const QModelIndex & index, const UINT32 diff);
|
|
|
|
// NVRAM parsing
|
|
STATUS parseNvramVolumeBody(const QModelIndex & index);
|
|
STATUS findNextStore(const QModelIndex & index, const QByteArray & volume, const UINT32 parentOffset, const UINT32 storeOffset, UINT32 & nextStoreOffset);
|
|
STATUS getStoreSize(const QByteArray & data, const UINT32 storeOffset, UINT32 & storeSize);
|
|
STATUS parseStoreHeader(const QByteArray & store, const UINT32 parentOffset, const QModelIndex & parent, QModelIndex & index);
|
|
|
|
STATUS parseNvarStore(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseVssStore(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseFtwStore(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseFdcStore(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseFsysStore(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseEvsaStore(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseFlashMapStore(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseCmdbStore(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseSlicData(const QByteArray & data, const QModelIndex & index);
|
|
//STATUS parseMicrocode(const QByteArray & data, const QModelIndex & index);
|
|
|
|
STATUS parseVssStoreBody(const QModelIndex & index);
|
|
STATUS parseFsysStoreBody(const QModelIndex & index);
|
|
STATUS parseEvsaStoreBody(const QModelIndex & index);
|
|
STATUS parseFlashMapBody(const QModelIndex & index);
|
|
|
|
// Message helper
|
|
void msg(const QString & message, const QModelIndex &index = QModelIndex()) {
|
|
messagesVector.push_back(std::pair<QString, QModelIndex>(message, index));
|
|
};
|
|
};
|
|
|
|
#endif // FFSPARSER_H
|