2018-08-16 21:08:13 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <vector>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/swap.h"
|
2018-08-25 02:15:32 +00:00
|
|
|
#include "core/crypto/key_manager.h"
|
2018-08-16 21:08:13 +00:00
|
|
|
#include "core/file_sys/content_archive.h"
|
|
|
|
#include "core/file_sys/vfs.h"
|
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
struct NAXHeader {
|
|
|
|
std::array<u8, 0x20> hmac;
|
|
|
|
u64_le magic;
|
|
|
|
std::array<Core::Crypto::Key128, 2> key_area;
|
|
|
|
u64_le file_size;
|
|
|
|
INSERT_PADDING_BYTES(0x30);
|
|
|
|
};
|
|
|
|
static_assert(sizeof(NAXHeader) == 0x80, "NAXHeader has incorrect size.");
|
|
|
|
|
|
|
|
enum class NAXContentType : u8 {
|
|
|
|
Save = 0,
|
|
|
|
NCA = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
class NAX : public ReadOnlyVfsDirectory {
|
|
|
|
public:
|
|
|
|
explicit NAX(VirtualFile file);
|
|
|
|
explicit NAX(VirtualFile file, std::array<u8, 0x10> nca_id);
|
|
|
|
|
2018-08-19 01:14:57 +00:00
|
|
|
Loader::ResultStatus GetStatus() const;
|
2018-08-16 21:08:13 +00:00
|
|
|
|
2018-08-19 01:14:57 +00:00
|
|
|
VirtualFile GetDecrypted() const;
|
2018-08-16 21:08:13 +00:00
|
|
|
|
2018-09-19 18:16:22 +00:00
|
|
|
std::unique_ptr<NCA> AsNCA() const;
|
2018-08-16 21:08:13 +00:00
|
|
|
|
2018-08-19 01:14:57 +00:00
|
|
|
NAXContentType GetContentType() const;
|
2018-08-16 21:08:13 +00:00
|
|
|
|
|
|
|
std::vector<std::shared_ptr<VfsFile>> GetFiles() const override;
|
|
|
|
|
|
|
|
std::vector<std::shared_ptr<VfsDirectory>> GetSubdirectories() const override;
|
|
|
|
|
|
|
|
std::string GetName() const override;
|
|
|
|
|
|
|
|
std::shared_ptr<VfsDirectory> GetParentDirectory() const override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool ReplaceFileWithSubdirectory(VirtualFile file, VirtualDir dir) override;
|
|
|
|
|
|
|
|
private:
|
2018-08-19 01:14:57 +00:00
|
|
|
Loader::ResultStatus Parse(std::string_view path);
|
2018-08-16 21:08:13 +00:00
|
|
|
|
|
|
|
std::unique_ptr<NAXHeader> header;
|
|
|
|
|
|
|
|
VirtualFile file;
|
|
|
|
Loader::ResultStatus status;
|
2018-09-19 17:46:32 +00:00
|
|
|
NAXContentType type{};
|
2018-08-16 21:08:13 +00:00
|
|
|
|
|
|
|
VirtualFile dec_file;
|
|
|
|
|
|
|
|
Core::Crypto::KeyManager keys;
|
|
|
|
};
|
|
|
|
} // namespace FileSys
|