2014-12-29 19:04:37 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 16:44:11 +02:00
|
|
|
#include <algorithm>
|
2016-04-05 14:29:55 +02:00
|
|
|
#include <memory>
|
2015-06-21 16:44:11 +02:00
|
|
|
#include <vector>
|
2018-04-30 00:37:15 +02:00
|
|
|
#include <fmt/format.h>
|
2014-12-29 19:04:37 +01:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/file_util.h"
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/logging/log.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "core/file_sys/archive_extsavedata.h"
|
2014-12-29 19:04:37 +01:00
|
|
|
#include "core/file_sys/disk_archive.h"
|
2016-10-17 14:23:34 +02:00
|
|
|
#include "core/file_sys/errors.h"
|
|
|
|
#include "core/file_sys/path_parser.h"
|
|
|
|
#include "core/file_sys/savedata_archive.h"
|
2015-01-04 02:46:05 +01:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2014-12-29 19:04:37 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
2016-10-17 14:23:34 +02:00
|
|
|
/**
|
|
|
|
* A modified version of DiskFile for fixed-size file used by ExtSaveData
|
|
|
|
* The file size can't be changed by SetSize or Write.
|
|
|
|
*/
|
|
|
|
class FixSizeDiskFile : public DiskFile {
|
|
|
|
public:
|
2018-02-24 14:14:54 +01:00
|
|
|
FixSizeDiskFile(FileUtil::IOFile&& file, const Mode& mode,
|
|
|
|
std::unique_ptr<DelayGenerator> delay_generator_)
|
|
|
|
: DiskFile(std::move(file), mode, std::move(delay_generator_)) {
|
2016-10-17 14:23:34 +02:00
|
|
|
size = GetSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetSize(u64 size) const override {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-06 22:03:28 +02:00
|
|
|
ResultVal<std::size_t> Write(u64 offset, std::size_t length, bool flush,
|
|
|
|
const u8* buffer) override {
|
2016-10-17 14:23:34 +02:00
|
|
|
if (offset > size) {
|
2017-05-21 06:41:11 +02:00
|
|
|
return ERR_WRITE_BEYOND_END;
|
2016-10-17 14:23:34 +02:00
|
|
|
} else if (offset == size) {
|
2018-09-06 22:03:28 +02:00
|
|
|
return MakeResult<std::size_t>(0);
|
2016-10-17 14:23:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (offset + length > size) {
|
|
|
|
length = size - offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DiskFile::Write(offset, length, flush, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
u64 size{};
|
|
|
|
};
|
|
|
|
|
2018-02-24 14:14:54 +01:00
|
|
|
class ExtSaveDataDelayGenerator : public DelayGenerator {
|
|
|
|
public:
|
2018-09-06 22:03:28 +02:00
|
|
|
u64 GetReadDelayNs(std::size_t length) override {
|
2018-02-24 14:14:54 +01:00
|
|
|
// This is the delay measured for a savedate read,
|
|
|
|
// not for extsaveData
|
|
|
|
// For now we will take that
|
|
|
|
static constexpr u64 slope(183);
|
|
|
|
static constexpr u64 offset(524879);
|
|
|
|
static constexpr u64 minimum(631826);
|
2018-03-05 04:59:42 +01:00
|
|
|
u64 ipc_delay_nanoseconds =
|
|
|
|
std::max<u64>(static_cast<u64>(length) * slope + offset, minimum);
|
|
|
|
return ipc_delay_nanoseconds;
|
2018-02-24 14:14:54 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-17 14:23:34 +02:00
|
|
|
/**
|
|
|
|
* Archive backend for general extsave data archive type.
|
|
|
|
* The behaviour of ExtSaveDataArchive is almost the same as SaveDataArchive, except for
|
|
|
|
* - file size can't be changed once created (thus creating zero-size file and openning with create
|
|
|
|
* flag are prohibited);
|
|
|
|
* - always open a file with read+write permission.
|
|
|
|
*/
|
|
|
|
class ExtSaveDataArchive : public SaveDataArchive {
|
|
|
|
public:
|
2016-12-07 11:20:35 +01:00
|
|
|
explicit ExtSaveDataArchive(const std::string& mount_point) : SaveDataArchive(mount_point) {}
|
2016-10-17 14:23:34 +02:00
|
|
|
|
|
|
|
std::string GetName() const override {
|
|
|
|
return "ExtSaveDataArchive: " + mount_point;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultVal<std::unique_ptr<FileBackend>> OpenFile(const Path& path,
|
|
|
|
const Mode& mode) const override {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(Service_FS, "called path={} mode={:01X}", path.DebugStr(), mode.hex);
|
2016-10-17 14:23:34 +02:00
|
|
|
|
|
|
|
const PathParser path_parser(path);
|
|
|
|
|
|
|
|
if (!path_parser.IsValid()) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Service_FS, "Invalid path {}", path.DebugStr());
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_INVALID_PATH;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode.hex == 0) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Service_FS, "Empty open mode");
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_UNSUPPORTED_OPEN_FLAGS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode.create_flag) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Service_FS, "Create flag is not supported");
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_UNSUPPORTED_OPEN_FLAGS;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto full_path = path_parser.BuildHostPath(mount_point);
|
|
|
|
|
|
|
|
switch (path_parser.GetHostStatus(mount_point)) {
|
|
|
|
case PathParser::InvalidMountPoint:
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Service_FS, "(unreachable) Invalid mount point {}", mount_point);
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_FILE_NOT_FOUND;
|
|
|
|
case PathParser::PathNotFound:
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Service_FS, "Path not found {}", full_path);
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_PATH_NOT_FOUND;
|
|
|
|
case PathParser::FileInPath:
|
|
|
|
case PathParser::DirectoryFound:
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Service_FS, "Unexpected file or directory in {}", full_path);
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_UNEXPECTED_FILE_OR_DIRECTORY;
|
|
|
|
case PathParser::NotFound:
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Service_FS, "{} not found", full_path);
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_FILE_NOT_FOUND;
|
2017-01-29 17:31:12 +01:00
|
|
|
case PathParser::FileFound:
|
|
|
|
break; // Expected 'success' case
|
2016-10-17 14:23:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FileUtil::IOFile file(full_path, "r+b");
|
|
|
|
if (!file.IsOpen()) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Service_FS, "(unreachable) Unknown error opening {}", full_path);
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_FILE_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
Mode rwmode;
|
|
|
|
rwmode.write_flag.Assign(1);
|
|
|
|
rwmode.read_flag.Assign(1);
|
2018-02-24 14:14:54 +01:00
|
|
|
std::unique_ptr<DelayGenerator> delay_generator =
|
|
|
|
std::make_unique<ExtSaveDataDelayGenerator>();
|
|
|
|
auto disk_file =
|
|
|
|
std::make_unique<FixSizeDiskFile>(std::move(file), rwmode, std::move(delay_generator));
|
2016-10-17 14:23:34 +02:00
|
|
|
return MakeResult<std::unique_ptr<FileBackend>>(std::move(disk_file));
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode CreateFile(const Path& path, u64 size) const override {
|
|
|
|
if (size == 0) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Service_FS, "Zero-size file is not supported");
|
2016-10-17 14:23:34 +02:00
|
|
|
return ERROR_UNSUPPORTED_OPEN_FLAGS;
|
|
|
|
}
|
|
|
|
return SaveDataArchive::CreateFile(path, size);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-09 06:16:51 +01:00
|
|
|
struct ExtSaveDataArchivePath {
|
|
|
|
u32_le media_type;
|
|
|
|
u32_le save_low;
|
|
|
|
u32_le save_high;
|
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(sizeof(ExtSaveDataArchivePath) == 12, "Incorrect path size");
|
|
|
|
|
2015-01-14 05:56:00 +01:00
|
|
|
std::string GetExtSaveDataPath(const std::string& mount_point, const Path& path) {
|
2014-12-29 19:04:37 +01:00
|
|
|
std::vector<u8> vec_data = path.AsBinary();
|
2017-12-09 06:17:43 +01:00
|
|
|
|
|
|
|
ExtSaveDataArchivePath path_data;
|
|
|
|
std::memcpy(&path_data, vec_data.data(), sizeof(path_data));
|
|
|
|
|
2018-08-28 20:42:10 +02:00
|
|
|
return fmt::format("{}{:08X}/{:08X}/", mount_point, path_data.save_high, path_data.save_low);
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
|
|
|
|
2015-01-14 05:56:00 +01:00
|
|
|
std::string GetExtDataContainerPath(const std::string& mount_point, bool shared) {
|
2015-01-04 02:46:05 +01:00
|
|
|
if (shared)
|
2018-08-28 20:42:10 +02:00
|
|
|
return fmt::format("{}data/{}/extdata/", mount_point, SYSTEM_ID);
|
2015-05-25 20:34:09 +02:00
|
|
|
|
2018-08-28 20:42:10 +02:00
|
|
|
return fmt::format("{}Nintendo 3DS/{}/{}/extdata/", mount_point, SYSTEM_ID, SDCARD_ID);
|
2015-01-04 02:46:05 +01:00
|
|
|
}
|
|
|
|
|
2018-09-16 06:48:39 +02:00
|
|
|
std::string GetExtDataPathFromId(const std::string& mount_point, u64 extdata_id) {
|
|
|
|
u32 high = static_cast<u32>(extdata_id >> 32);
|
|
|
|
u32 low = static_cast<u32>(extdata_id & 0xFFFFFFFF);
|
|
|
|
|
|
|
|
return fmt::format("{}{:08x}/{:08x}/", GetExtDataContainerPath(mount_point, false), high, low);
|
|
|
|
}
|
|
|
|
|
2015-03-14 18:00:01 +01:00
|
|
|
Path ConstructExtDataBinaryPath(u32 media_type, u32 high, u32 low) {
|
2017-12-09 06:17:43 +01:00
|
|
|
ExtSaveDataArchivePath path;
|
|
|
|
path.media_type = media_type;
|
|
|
|
path.save_high = high;
|
|
|
|
path.save_low = low;
|
2015-03-14 18:00:01 +01:00
|
|
|
|
2017-12-09 06:17:43 +01:00
|
|
|
std::vector<u8> binary_path(sizeof(path));
|
|
|
|
std::memcpy(binary_path.data(), &path, binary_path.size());
|
2015-03-14 18:00:01 +01:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
return {binary_path};
|
2015-03-14 18:00:01 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
ArchiveFactory_ExtSaveData::ArchiveFactory_ExtSaveData(const std::string& mount_location,
|
|
|
|
bool shared)
|
|
|
|
: shared(shared), mount_point(GetExtDataContainerPath(mount_location, shared)) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(Service_FS, "Directory {} set as base for ExtSaveData.", mount_point);
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
|
|
|
|
2017-12-09 06:16:51 +01:00
|
|
|
Path ArchiveFactory_ExtSaveData::GetCorrectedPath(const Path& path) {
|
|
|
|
if (!shared)
|
|
|
|
return path;
|
|
|
|
|
|
|
|
static constexpr u32 SharedExtDataHigh = 0x48000;
|
|
|
|
|
|
|
|
ExtSaveDataArchivePath new_path;
|
|
|
|
std::memcpy(&new_path, path.AsBinary().data(), sizeof(new_path));
|
|
|
|
|
|
|
|
// The FS module overwrites the high value of the saveid when dealing with the SharedExtSaveData
|
|
|
|
// archive.
|
|
|
|
new_path.save_high = SharedExtDataHigh;
|
|
|
|
|
|
|
|
std::vector<u8> binary_data(sizeof(new_path));
|
|
|
|
std::memcpy(binary_data.data(), &new_path, binary_data.size());
|
|
|
|
|
|
|
|
return {binary_data};
|
|
|
|
}
|
|
|
|
|
2015-02-06 14:53:14 +01:00
|
|
|
ResultVal<std::unique_ptr<ArchiveBackend>> ArchiveFactory_ExtSaveData::Open(const Path& path) {
|
2017-12-09 06:16:51 +01:00
|
|
|
std::string fullpath = GetExtSaveDataPath(mount_point, GetCorrectedPath(path)) + "user/";
|
2014-12-29 19:04:37 +01:00
|
|
|
if (!FileUtil::Exists(fullpath)) {
|
2016-03-03 19:05:50 +01:00
|
|
|
// TODO(Subv): Verify the archive behavior of SharedExtSaveData compared to ExtSaveData.
|
|
|
|
// ExtSaveData seems to return FS_NotFound (120) when the archive doesn't exist.
|
|
|
|
if (!shared) {
|
2017-05-21 06:41:11 +02:00
|
|
|
return ERR_NOT_FOUND_INVALID_STATE;
|
2016-03-03 19:05:50 +01:00
|
|
|
} else {
|
2017-05-21 06:41:11 +02:00
|
|
|
return ERR_NOT_FORMATTED;
|
2016-03-03 19:05:50 +01:00
|
|
|
}
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
2016-10-17 14:23:34 +02:00
|
|
|
auto archive = std::make_unique<ExtSaveDataArchive>(fullpath);
|
2015-02-06 14:53:14 +01:00
|
|
|
return MakeResult<std::unique_ptr<ArchiveBackend>>(std::move(archive));
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
ResultCode ArchiveFactory_ExtSaveData::Format(const Path& path,
|
|
|
|
const FileSys::ArchiveFormatInfo& format_info) {
|
2017-12-09 06:16:51 +01:00
|
|
|
auto corrected_path = GetCorrectedPath(path);
|
|
|
|
|
2015-06-02 04:26:40 +02:00
|
|
|
// These folders are always created with the ExtSaveData
|
2017-12-09 06:16:51 +01:00
|
|
|
std::string user_path = GetExtSaveDataPath(mount_point, corrected_path) + "user/";
|
|
|
|
std::string boss_path = GetExtSaveDataPath(mount_point, corrected_path) + "boss/";
|
2015-06-02 04:26:40 +02:00
|
|
|
FileUtil::CreateFullPath(user_path);
|
|
|
|
FileUtil::CreateFullPath(boss_path);
|
2015-12-28 19:51:44 +01:00
|
|
|
|
|
|
|
// Write the format metadata
|
2017-12-09 06:16:51 +01:00
|
|
|
std::string metadata_path = GetExtSaveDataPath(mount_point, corrected_path) + "metadata";
|
2015-12-28 19:51:44 +01:00
|
|
|
FileUtil::IOFile file(metadata_path, "wb");
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
if (!file.IsOpen()) {
|
|
|
|
// TODO(Subv): Find the correct error code
|
|
|
|
return ResultCode(-1);
|
2015-12-28 19:51:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
file.WriteBytes(&format_info, sizeof(format_info));
|
|
|
|
return RESULT_SUCCESS;
|
2015-12-28 19:51:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ResultVal<ArchiveFormatInfo> ArchiveFactory_ExtSaveData::GetFormatInfo(const Path& path) const {
|
|
|
|
std::string metadata_path = GetExtSaveDataPath(mount_point, path) + "metadata";
|
|
|
|
FileUtil::IOFile file(metadata_path, "rb");
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
if (!file.IsOpen()) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Service_FS, "Could not open metadata information for archive");
|
2016-03-03 19:05:50 +01:00
|
|
|
// TODO(Subv): Verify error code
|
2017-05-21 06:41:11 +02:00
|
|
|
return ERR_NOT_FORMATTED;
|
2015-12-28 19:51:44 +01:00
|
|
|
}
|
|
|
|
|
2016-03-03 19:05:50 +01:00
|
|
|
ArchiveFormatInfo info = {};
|
|
|
|
file.ReadBytes(&info, sizeof(info));
|
|
|
|
return MakeResult<ArchiveFormatInfo>(info);
|
2015-12-28 19:51:44 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
void ArchiveFactory_ExtSaveData::WriteIcon(const Path& path, const u8* icon_data,
|
2018-09-06 22:03:28 +02:00
|
|
|
std::size_t icon_size) {
|
2015-12-28 19:51:44 +01:00
|
|
|
std::string game_path = FileSys::GetExtSaveDataPath(GetMountPoint(), path);
|
2016-03-03 19:05:50 +01:00
|
|
|
FileUtil::IOFile icon_file(game_path + "icon", "wb");
|
2015-12-28 19:51:44 +01:00
|
|
|
icon_file.WriteBytes(icon_data, icon_size);
|
2014-12-29 19:04:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace FileSys
|