mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-24 17:08:23 +08:00
856ea2a3aa
+ Replace and rebuild functions + NVRAM volumes rebuild support (without changing the size of volume) + 'TXT' and 'Microcode' parsing tabs + 'Inspect with IDA' function
69 lines
2.7 KiB
C++
69 lines
2.7 KiB
C++
/* fssbuilder.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,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
*/
|
|
|
|
#ifndef FFSBUILDER_H
|
|
#define FFSBUILDER_H
|
|
|
|
#include <vector>
|
|
|
|
#include "basetypes.h"
|
|
#include "ubytearray.h"
|
|
#include "ustring.h"
|
|
#include "treemodel.h"
|
|
#include "ffsparser.h"
|
|
|
|
class FfsBuilder
|
|
{
|
|
public:
|
|
FfsBuilder(const TreeModel * treeModel) : model(treeModel) {}
|
|
FfsBuilder(const TreeModel * treeModel, FfsParser * ffsParser) : model(treeModel), parser(ffsParser) {}
|
|
|
|
~FfsBuilder() {}
|
|
|
|
std::vector<std::pair<UString, UModelIndex> > getMessages() const { return messagesVector; }
|
|
void clearMessages() { messagesVector.clear(); }
|
|
|
|
USTATUS build(const UModelIndex & root, UByteArray & image);
|
|
|
|
private:
|
|
const TreeModel * model;
|
|
FfsParser * parser;
|
|
|
|
std::vector<std::pair<UString, UModelIndex> > messagesVector;
|
|
void msg(const UString & message, const UModelIndex &index = UModelIndex()) {
|
|
messagesVector.push_back(std::pair<UString, UModelIndex>(message, index));
|
|
}
|
|
|
|
USTATUS buildCapsule(const UModelIndex & index, UByteArray & capsule);
|
|
USTATUS buildIntelImage(const UModelIndex & index, UByteArray & intelImage);
|
|
USTATUS buildRawArea(const UModelIndex & index, UByteArray & rawArea, bool includeHeader = true);
|
|
USTATUS buildPadding(const UModelIndex & index, UByteArray & padding);
|
|
USTATUS buildVolume(const UModelIndex & index, UByteArray & volume);
|
|
USTATUS buildNvramVolume(const UModelIndex & index, UByteArray & volume);
|
|
USTATUS buildNvramStore(const UModelIndex & index, UByteArray & store);
|
|
USTATUS buildNvarStore(const UModelIndex & index, UByteArray & store);
|
|
USTATUS buildNonUefiData(const UModelIndex & index, UByteArray & data);
|
|
USTATUS buildFreeSpace(const UModelIndex & index, UByteArray & freeSpace);
|
|
USTATUS buildPadFile(const UByteArray &guid, const UINT32 size, const UINT8 revision, const UINT8 erasePolarity, UByteArray & pad);
|
|
USTATUS buildFile(const UModelIndex & index, const UINT8 revision, const UINT8 erasePolarity, const UINT32 base, UByteArray & reconstructed);
|
|
USTATUS buildSection(const UModelIndex & index, const UINT32 base, UByteArray & reconstructed);
|
|
USTATUS buildRegion(const UModelIndex& index, UByteArray & reconstructed, bool includeHeader = true);
|
|
|
|
// Utility functions
|
|
USTATUS erase(const UModelIndex & index, UByteArray & erased);
|
|
|
|
|
|
};
|
|
|
|
#endif // FFSBUILDER_H
|