dolphin/Source/Core/DiscIO/NANDImporter.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

96 lines
2.7 KiB
C
Raw Normal View History

2017-03-19 08:00:49 +01:00
// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2017-03-19 08:00:49 +01:00
#pragma once
#include <array>
2017-03-19 08:00:49 +01:00
#include <functional>
#include <memory>
2017-03-19 08:00:49 +01:00
#include <string>
#include <vector>
#include <fmt/format.h>
2017-03-19 08:00:49 +01:00
#include "Common/CommonTypes.h"
#include "Common/Swap.h"
2017-03-19 08:00:49 +01:00
namespace DiscIO
{
class NANDImporter final
{
public:
NANDImporter();
~NANDImporter();
// Extract a NAND image to the configured NAND root.
// If the associated OTP/SEEPROM dump (keys.bin) is not included in the image,
// get_otp_dump_path will be called to get a path to it.
void ImportNANDBin(const std::string& path_to_bin, std::function<void()> update_callback,
std::function<std::string()> get_otp_dump_path);
bool ExtractCertificates();
2017-03-19 08:00:49 +01:00
enum class Type
{
File = 1,
Directory = 2,
};
2017-03-19 08:00:49 +01:00
#pragma pack(push, 1)
struct NANDFSTEntry
{
char name[12];
u8 mode;
u8 attr;
Common::BigEndianValue<u16> sub;
Common::BigEndianValue<u16> sib;
Common::BigEndianValue<u32> size;
Common::BigEndianValue<u32> uid;
Common::BigEndianValue<u16> gid;
Common::BigEndianValue<u32> x3;
2017-03-19 08:00:49 +01:00
};
static_assert(sizeof(NANDFSTEntry) == 0x20, "Wrong size");
struct NANDSuperblock
{
char magic[4]; // "SFFS"
Common::BigEndianValue<u32> version;
Common::BigEndianValue<u32> unknown;
Common::BigEndianValue<u16> fat[0x8000];
NANDFSTEntry fst[0x17FF];
u8 pad[0x14];
};
static_assert(sizeof(NANDSuperblock) == 0x40000, "Wrong size");
2017-03-19 08:00:49 +01:00
#pragma pack(pop)
private:
bool ReadNANDBin(const std::string& path_to_bin, std::function<std::string()> get_otp_dump_path);
bool FindSuperblock();
2017-03-19 08:00:49 +01:00
std::string GetPath(const NANDFSTEntry& entry, const std::string& parent_path);
2017-05-15 02:47:02 +02:00
std::string FormatDebugString(const NANDFSTEntry& entry);
2017-03-19 08:00:49 +01:00
void ProcessEntry(u16 entry_number, const std::string& parent_path);
std::vector<u8> GetEntryData(const NANDFSTEntry& entry);
void ExportKeys();
2017-03-19 08:00:49 +01:00
std::string m_nand_root;
2017-03-19 08:00:49 +01:00
std::vector<u8> m_nand;
std::vector<u8> m_nand_keys;
std::array<u8, 16> m_aes_key;
std::unique_ptr<NANDSuperblock> m_superblock;
std::function<void()> m_update_callback;
2017-03-19 08:00:49 +01:00
};
} // namespace DiscIO
template <>
struct fmt::formatter<DiscIO::NANDImporter::NANDFSTEntry>
{
constexpr auto parse(format_parse_context& ctx) { return ctx.begin(); }
template <typename FormatContext>
auto format(const DiscIO::NANDImporter::NANDFSTEntry& entry, FormatContext& ctx) const
{
return fmt::format_to(
ctx.out(), "{:12.12} {:#010b} {:#04x} {:#06x} {:#06x} {:#010x} {:#010x} {:#06x} {:#010x}",
entry.name, entry.mode, entry.attr, entry.sub, entry.sib, entry.size, entry.uid, entry.gid,
entry.x3);
}
};