| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #include <memory>
- #include "common/assert.h"
- #include "common/common_types.h"
- #include "common/logging/log.h"
- #include "common/uuid.h"
- #include "core/core.h"
- #include "core/file_sys/savedata_factory.h"
- #include "core/file_sys/vfs.h"
- namespace FileSys {
- namespace {
- void PrintSaveDataAttributeWarnings(SaveDataAttribute meta) {
- if (meta.type == SaveDataType::SystemSaveData || meta.type == SaveDataType::SaveData) {
- if (meta.zero_1 != 0) {
- LOG_WARNING(Service_FS,
- "Possibly incorrect SaveDataAttribute, type is "
- "SystemSaveData||SaveData but offset 0x28 is non-zero ({:016X}).",
- meta.zero_1);
- }
- if (meta.zero_2 != 0) {
- LOG_WARNING(Service_FS,
- "Possibly incorrect SaveDataAttribute, type is "
- "SystemSaveData||SaveData but offset 0x30 is non-zero ({:016X}).",
- meta.zero_2);
- }
- if (meta.zero_3 != 0) {
- LOG_WARNING(Service_FS,
- "Possibly incorrect SaveDataAttribute, type is "
- "SystemSaveData||SaveData but offset 0x38 is non-zero ({:016X}).",
- meta.zero_3);
- }
- }
- if (meta.type == SaveDataType::SystemSaveData && meta.title_id != 0) {
- LOG_WARNING(Service_FS,
- "Possibly incorrect SaveDataAttribute, type is SystemSaveData but title_id is "
- "non-zero ({:016X}).",
- meta.title_id);
- }
- if (meta.type == SaveDataType::DeviceSaveData && meta.user_id != u128{0, 0}) {
- LOG_WARNING(Service_FS,
- "Possibly incorrect SaveDataAttribute, type is DeviceSaveData but user_id is "
- "non-zero ({:016X}{:016X})",
- meta.user_id[1], meta.user_id[0]);
- }
- }
- bool ShouldSaveDataBeAutomaticallyCreated(SaveDataSpaceId space, const SaveDataAttribute& attr) {
- return attr.type == SaveDataType::CacheStorage || attr.type == SaveDataType::TemporaryStorage ||
- (space == SaveDataSpaceId::NandUser && ///< Normal Save Data -- Current Title & User
- (attr.type == SaveDataType::SaveData || attr.type == SaveDataType::DeviceSaveData) &&
- attr.title_id == 0 && attr.save_id == 0);
- }
- std::string GetFutureSaveDataPath(SaveDataSpaceId space_id, SaveDataType type, u64 title_id,
- u128 user_id) {
- // Only detect nand user saves.
- const auto space_id_path = [space_id]() -> std::string_view {
- switch (space_id) {
- case SaveDataSpaceId::NandUser:
- return "/user/save";
- default:
- return "";
- }
- }();
- if (space_id_path.empty()) {
- return "";
- }
- Common::UUID uuid;
- std::memcpy(uuid.uuid.data(), user_id.data(), sizeof(Common::UUID));
- // Only detect account/device saves from the future location.
- switch (type) {
- case SaveDataType::SaveData:
- return fmt::format("{}/account/{}/{:016X}/0", space_id_path, uuid.RawString(), title_id);
- case SaveDataType::DeviceSaveData:
- return fmt::format("{}/device/{:016X}/0", space_id_path, title_id);
- default:
- return "";
- }
- }
- } // Anonymous namespace
- std::string SaveDataAttribute::DebugInfo() const {
- return fmt::format("[title_id={:016X}, user_id={:016X}{:016X}, save_id={:016X}, type={:02X}, "
- "rank={}, index={}]",
- title_id, user_id[1], user_id[0], save_id, static_cast<u8>(type),
- static_cast<u8>(rank), index);
- }
- SaveDataFactory::SaveDataFactory(Core::System& system_, VirtualDir save_directory_)
- : dir{std::move(save_directory_)}, system{system_} {
- // Delete all temporary storages
- // On hardware, it is expected that temporary storage be empty at first use.
- dir->DeleteSubdirectoryRecursive("temp");
- }
- SaveDataFactory::~SaveDataFactory() = default;
- VirtualDir SaveDataFactory::Create(SaveDataSpaceId space, const SaveDataAttribute& meta) const {
- PrintSaveDataAttributeWarnings(meta);
- const auto save_directory =
- GetFullPath(system, dir, space, meta.type, meta.title_id, meta.user_id, meta.save_id);
- return dir->CreateDirectoryRelative(save_directory);
- }
- VirtualDir SaveDataFactory::Open(SaveDataSpaceId space, const SaveDataAttribute& meta) const {
- const auto save_directory =
- GetFullPath(system, dir, space, meta.type, meta.title_id, meta.user_id, meta.save_id);
- auto out = dir->GetDirectoryRelative(save_directory);
- if (out == nullptr && (ShouldSaveDataBeAutomaticallyCreated(space, meta) && auto_create)) {
- return Create(space, meta);
- }
- return out;
- }
- VirtualDir SaveDataFactory::GetSaveDataSpaceDirectory(SaveDataSpaceId space) const {
- return dir->GetDirectoryRelative(GetSaveDataSpaceIdPath(space));
- }
- std::string SaveDataFactory::GetSaveDataSpaceIdPath(SaveDataSpaceId space) {
- switch (space) {
- case SaveDataSpaceId::NandSystem:
- return "/system/";
- case SaveDataSpaceId::NandUser:
- return "/user/";
- case SaveDataSpaceId::TemporaryStorage:
- return "/temp/";
- default:
- ASSERT_MSG(false, "Unrecognized SaveDataSpaceId: {:02X}", static_cast<u8>(space));
- return "/unrecognized/"; ///< To prevent corruption when ignoring asserts.
- }
- }
- std::string SaveDataFactory::GetFullPath(Core::System& system, VirtualDir dir,
- SaveDataSpaceId space, SaveDataType type, u64 title_id,
- u128 user_id, u64 save_id) {
- // According to switchbrew, if a save is of type SaveData and the title id field is 0, it should
- // be interpreted as the title id of the current process.
- if (type == SaveDataType::SaveData || type == SaveDataType::DeviceSaveData) {
- if (title_id == 0) {
- title_id = system.GetApplicationProcessProgramID();
- }
- }
- // For compat with a future impl.
- if (std::string future_path =
- GetFutureSaveDataPath(space, type, title_id & ~(0xFFULL), user_id);
- !future_path.empty()) {
- // Check if this location exists, and prefer it over the old.
- if (const auto future_dir = dir->GetDirectoryRelative(future_path); future_dir != nullptr) {
- LOG_INFO(Service_FS, "Using save at new location: {}", future_path);
- return future_path;
- }
- }
- std::string out = GetSaveDataSpaceIdPath(space);
- switch (type) {
- case SaveDataType::SystemSaveData:
- return fmt::format("{}save/{:016X}/{:016X}{:016X}", out, save_id, user_id[1], user_id[0]);
- case SaveDataType::SaveData:
- case SaveDataType::DeviceSaveData:
- return fmt::format("{}save/{:016X}/{:016X}{:016X}/{:016X}", out, 0, user_id[1], user_id[0],
- title_id);
- case SaveDataType::TemporaryStorage:
- return fmt::format("{}{:016X}/{:016X}{:016X}/{:016X}", out, 0, user_id[1], user_id[0],
- title_id);
- case SaveDataType::CacheStorage:
- return fmt::format("{}save/cache/{:016X}", out, title_id);
- default:
- ASSERT_MSG(false, "Unrecognized SaveDataType: {:02X}", static_cast<u8>(type));
- return fmt::format("{}save/unknown_{:X}/{:016X}", out, static_cast<u8>(type), title_id);
- }
- }
- std::string SaveDataFactory::GetUserGameSaveDataRoot(u128 user_id, bool future) {
- if (future) {
- Common::UUID uuid;
- std::memcpy(uuid.uuid.data(), user_id.data(), sizeof(Common::UUID));
- return fmt::format("/user/save/account/{}", uuid.RawString());
- }
- return fmt::format("/user/save/{:016X}/{:016X}{:016X}", 0, user_id[1], user_id[0]);
- }
- SaveDataSize SaveDataFactory::ReadSaveDataSize(SaveDataType type, u64 title_id,
- u128 user_id) const {
- const auto path =
- GetFullPath(system, dir, SaveDataSpaceId::NandUser, type, title_id, user_id, 0);
- const auto relative_dir = GetOrCreateDirectoryRelative(dir, path);
- const auto size_file = relative_dir->GetFile(GetSaveDataSizeFileName());
- if (size_file == nullptr || size_file->GetSize() < sizeof(SaveDataSize)) {
- return {0, 0};
- }
- SaveDataSize out;
- if (size_file->ReadObject(&out) != sizeof(SaveDataSize)) {
- return {0, 0};
- }
- return out;
- }
- void SaveDataFactory::WriteSaveDataSize(SaveDataType type, u64 title_id, u128 user_id,
- SaveDataSize new_value) const {
- const auto path =
- GetFullPath(system, dir, SaveDataSpaceId::NandUser, type, title_id, user_id, 0);
- const auto relative_dir = GetOrCreateDirectoryRelative(dir, path);
- const auto size_file = relative_dir->CreateFile(GetSaveDataSizeFileName());
- if (size_file == nullptr) {
- return;
- }
- size_file->Resize(sizeof(SaveDataSize));
- size_file->WriteObject(new_value);
- }
- void SaveDataFactory::SetAutoCreate(bool state) {
- auto_create = state;
- }
- } // namespace FileSys
|