mirror of
https://github.com/jakcron/nstool
synced 2024-11-23 05:59:29 +00:00
76 lines
No EOL
1.7 KiB
C++
76 lines
No EOL
1.7 KiB
C++
#pragma once
|
|
#include "types.h"
|
|
#include "KeyBag.h"
|
|
#include "PfsProcess.h"
|
|
|
|
#include <nn/hac/GameCardHeader.h>
|
|
|
|
namespace nstool {
|
|
|
|
class GameCardProcess
|
|
{
|
|
public:
|
|
GameCardProcess();
|
|
|
|
void process();
|
|
|
|
// generic
|
|
void setInputFile(const std::shared_ptr<tc::io::IStream>& file);
|
|
void setKeyCfg(const KeyBag& keycfg);
|
|
void setCliOutputMode(CliOutputMode type);
|
|
void setVerifyMode(bool verify);
|
|
|
|
// xci specific
|
|
void setPartitionForExtract(const std::string& partition_name, const tc::io::Path& extract_path);
|
|
void setListFs(bool list_fs);
|
|
|
|
private:
|
|
const std::string kModuleName = "GameCardProcess";
|
|
const std::string kXciMountPointName = "gamecard:/";
|
|
|
|
std::shared_ptr<tc::io::IStream> mFile;
|
|
KeyBag mKeyCfg;
|
|
CliOutputMode mCliOutputMode;
|
|
bool mVerify;
|
|
bool mListFs;
|
|
|
|
struct sExtractInfo
|
|
{
|
|
std::string partition_name;
|
|
tc::io::Path extract_path;
|
|
|
|
void operator=(const sExtractInfo& other)
|
|
{
|
|
partition_name = other.partition_name;
|
|
extract_path = other.extract_path;
|
|
}
|
|
|
|
bool operator==(const tc::io::Path& name) const
|
|
{
|
|
return name == partition_name;
|
|
}
|
|
};
|
|
|
|
|
|
|
|
bool mIsTrueSdkXci;
|
|
bool mIsSdkXciEncrypted;
|
|
size_t mGcHeaderOffset;
|
|
bool mProccessExtendedHeader;
|
|
nn::hac::detail::rsa2048_signature_t mHdrSignature;
|
|
fnd::sha::sSha256Hash mHdrHash;
|
|
nn::hac::GameCardHeader mHdr;
|
|
|
|
PfsProcess mRootPfs;
|
|
std::vector<sExtractInfo> mExtractInfo;
|
|
|
|
void importHeader();
|
|
void displayHeader();
|
|
bool validateRegionOfFile(size_t offset, size_t len, const byte_t* test_hash, bool use_salt, byte_t salt);
|
|
bool validateRegionOfFile(size_t offset, size_t len, const byte_t* test_hash);
|
|
void validateXciSignature();
|
|
void processRootPfs();
|
|
void processPartitionPfs();
|
|
};
|
|
|
|
} |