diff options
| author | 2020-08-15 08:33:16 -0400 | |
|---|---|---|
| committer | 2020-08-16 06:52:40 -0400 | |
| commit | c4ed791164df7e3e74042a37a62077b4dc4ade91 (patch) | |
| tree | 12bbcc09d0db32a0b6b5dc1bc49245964486da63 | |
| parent | Merge pull request #4528 from lioncash/discard (diff) | |
| download | yuzu-c4ed791164df7e3e74042a37a62077b4dc4ade91.tar.gz yuzu-c4ed791164df7e3e74042a37a62077b4dc4ade91.tar.xz yuzu-c4ed791164df7e3e74042a37a62077b4dc4ade91.zip | |
common/fileutil: Convert namespace to Common::FS
Migrates a remaining common file over to the Common namespace, making it
consistent with the rest of common files.
This also allows for high-traffic FS related code to alias the
filesystem function namespace as
namespace FS = Common::FS;
for more concise typing.
40 files changed, 639 insertions, 547 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 4ede9f72c..c869e7b82 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp | |||
| @@ -74,7 +74,7 @@ | |||
| 74 | // This namespace has various generic functions related to files and paths. | 74 | // This namespace has various generic functions related to files and paths. |
| 75 | // The code still needs a ton of cleanup. | 75 | // The code still needs a ton of cleanup. |
| 76 | // REMEMBER: strdup considered harmful! | 76 | // REMEMBER: strdup considered harmful! |
| 77 | namespace FileUtil { | 77 | namespace Common::FS { |
| 78 | 78 | ||
| 79 | // Remove any ending forward slashes from directory paths | 79 | // Remove any ending forward slashes from directory paths |
| 80 | // Modifies argument. | 80 | // Modifies argument. |
| @@ -196,7 +196,7 @@ bool CreateFullPath(const std::string& fullPath) { | |||
| 196 | int panicCounter = 100; | 196 | int panicCounter = 100; |
| 197 | LOG_TRACE(Common_Filesystem, "path {}", fullPath); | 197 | LOG_TRACE(Common_Filesystem, "path {}", fullPath); |
| 198 | 198 | ||
| 199 | if (FileUtil::Exists(fullPath)) { | 199 | if (Exists(fullPath)) { |
| 200 | LOG_DEBUG(Common_Filesystem, "path exists {}", fullPath); | 200 | LOG_DEBUG(Common_Filesystem, "path exists {}", fullPath); |
| 201 | return true; | 201 | return true; |
| 202 | } | 202 | } |
| @@ -212,7 +212,7 @@ bool CreateFullPath(const std::string& fullPath) { | |||
| 212 | 212 | ||
| 213 | // Include the '/' so the first call is CreateDir("/") rather than CreateDir("") | 213 | // Include the '/' so the first call is CreateDir("/") rather than CreateDir("") |
| 214 | std::string const subPath(fullPath.substr(0, position + 1)); | 214 | std::string const subPath(fullPath.substr(0, position + 1)); |
| 215 | if (!FileUtil::IsDirectory(subPath) && !FileUtil::CreateDir(subPath)) { | 215 | if (!IsDirectory(subPath) && !CreateDir(subPath)) { |
| 216 | LOG_ERROR(Common, "CreateFullPath: directory creation failed"); | 216 | LOG_ERROR(Common, "CreateFullPath: directory creation failed"); |
| 217 | return false; | 217 | return false; |
| 218 | } | 218 | } |
| @@ -231,7 +231,7 @@ bool DeleteDir(const std::string& filename) { | |||
| 231 | LOG_TRACE(Common_Filesystem, "directory {}", filename); | 231 | LOG_TRACE(Common_Filesystem, "directory {}", filename); |
| 232 | 232 | ||
| 233 | // check if a directory | 233 | // check if a directory |
| 234 | if (!FileUtil::IsDirectory(filename)) { | 234 | if (!IsDirectory(filename)) { |
| 235 | LOG_ERROR(Common_Filesystem, "Not a directory {}", filename); | 235 | LOG_ERROR(Common_Filesystem, "Not a directory {}", filename); |
| 236 | return false; | 236 | return false; |
| 237 | } | 237 | } |
| @@ -371,7 +371,7 @@ u64 GetSize(FILE* f) { | |||
| 371 | bool CreateEmptyFile(const std::string& filename) { | 371 | bool CreateEmptyFile(const std::string& filename) { |
| 372 | LOG_TRACE(Common_Filesystem, "{}", filename); | 372 | LOG_TRACE(Common_Filesystem, "{}", filename); |
| 373 | 373 | ||
| 374 | if (!FileUtil::IOFile(filename, "wb").IsOpen()) { | 374 | if (!IOFile(filename, "wb").IsOpen()) { |
| 375 | LOG_ERROR(Common_Filesystem, "failed {}: {}", filename, GetLastErrorMsg()); | 375 | LOG_ERROR(Common_Filesystem, "failed {}: {}", filename, GetLastErrorMsg()); |
| 376 | return false; | 376 | return false; |
| 377 | } | 377 | } |
| @@ -488,29 +488,34 @@ bool DeleteDirRecursively(const std::string& directory, unsigned int recursion) | |||
| 488 | return false; | 488 | return false; |
| 489 | 489 | ||
| 490 | // Delete the outermost directory | 490 | // Delete the outermost directory |
| 491 | FileUtil::DeleteDir(directory); | 491 | DeleteDir(directory); |
| 492 | return true; | 492 | return true; |
| 493 | } | 493 | } |
| 494 | 494 | ||
| 495 | void CopyDir(const std::string& source_path, const std::string& dest_path) { | 495 | void CopyDir(const std::string& source_path, const std::string& dest_path) { |
| 496 | #ifndef _WIN32 | 496 | #ifndef _WIN32 |
| 497 | if (source_path == dest_path) | 497 | if (source_path == dest_path) { |
| 498 | return; | 498 | return; |
| 499 | if (!FileUtil::Exists(source_path)) | 499 | } |
| 500 | if (!Exists(source_path)) { | ||
| 500 | return; | 501 | return; |
| 501 | if (!FileUtil::Exists(dest_path)) | 502 | } |
| 502 | FileUtil::CreateFullPath(dest_path); | 503 | if (!Exists(dest_path)) { |
| 504 | CreateFullPath(dest_path); | ||
| 505 | } | ||
| 503 | 506 | ||
| 504 | DIR* dirp = opendir(source_path.c_str()); | 507 | DIR* dirp = opendir(source_path.c_str()); |
| 505 | if (!dirp) | 508 | if (!dirp) { |
| 506 | return; | 509 | return; |
| 510 | } | ||
| 507 | 511 | ||
| 508 | while (struct dirent* result = readdir(dirp)) { | 512 | while (struct dirent* result = readdir(dirp)) { |
| 509 | const std::string virtualName(result->d_name); | 513 | const std::string virtualName(result->d_name); |
| 510 | // check for "." and ".." | 514 | // check for "." and ".." |
| 511 | if (((virtualName[0] == '.') && (virtualName[1] == '\0')) || | 515 | if (((virtualName[0] == '.') && (virtualName[1] == '\0')) || |
| 512 | ((virtualName[0] == '.') && (virtualName[1] == '.') && (virtualName[2] == '\0'))) | 516 | ((virtualName[0] == '.') && (virtualName[1] == '.') && (virtualName[2] == '\0'))) { |
| 513 | continue; | 517 | continue; |
| 518 | } | ||
| 514 | 519 | ||
| 515 | std::string source, dest; | 520 | std::string source, dest; |
| 516 | source = source_path + virtualName; | 521 | source = source_path + virtualName; |
| @@ -518,11 +523,13 @@ void CopyDir(const std::string& source_path, const std::string& dest_path) { | |||
| 518 | if (IsDirectory(source)) { | 523 | if (IsDirectory(source)) { |
| 519 | source += '/'; | 524 | source += '/'; |
| 520 | dest += '/'; | 525 | dest += '/'; |
| 521 | if (!FileUtil::Exists(dest)) | 526 | if (!Exists(dest)) { |
| 522 | FileUtil::CreateFullPath(dest); | 527 | CreateFullPath(dest); |
| 528 | } | ||
| 523 | CopyDir(source, dest); | 529 | CopyDir(source, dest); |
| 524 | } else if (!FileUtil::Exists(dest)) | 530 | } else if (!Exists(dest)) { |
| 525 | FileUtil::Copy(source, dest); | 531 | Copy(source, dest); |
| 532 | } | ||
| 526 | } | 533 | } |
| 527 | closedir(dirp); | 534 | closedir(dirp); |
| 528 | #endif | 535 | #endif |
| @@ -538,7 +545,7 @@ std::optional<std::string> GetCurrentDir() { | |||
| 538 | if (!dir) { | 545 | if (!dir) { |
| 539 | #endif | 546 | #endif |
| 540 | LOG_ERROR(Common_Filesystem, "GetCurrentDirectory failed: {}", GetLastErrorMsg()); | 547 | LOG_ERROR(Common_Filesystem, "GetCurrentDirectory failed: {}", GetLastErrorMsg()); |
| 541 | return {}; | 548 | return std::nullopt; |
| 542 | } | 549 | } |
| 543 | #ifdef _WIN32 | 550 | #ifdef _WIN32 |
| 544 | std::string strDir = Common::UTF16ToUTF8(dir); | 551 | std::string strDir = Common::UTF16ToUTF8(dir); |
| @@ -546,7 +553,7 @@ std::optional<std::string> GetCurrentDir() { | |||
| 546 | std::string strDir = dir; | 553 | std::string strDir = dir; |
| 547 | #endif | 554 | #endif |
| 548 | free(dir); | 555 | free(dir); |
| 549 | return strDir; | 556 | return std::move(strDir); |
| 550 | } | 557 | } |
| 551 | 558 | ||
| 552 | bool SetCurrentDir(const std::string& directory) { | 559 | bool SetCurrentDir(const std::string& directory) { |
| @@ -668,7 +675,7 @@ const std::string& GetUserPath(UserPath path, const std::string& new_path) { | |||
| 668 | if (user_path.empty()) { | 675 | if (user_path.empty()) { |
| 669 | #ifdef _WIN32 | 676 | #ifdef _WIN32 |
| 670 | user_path = GetExeDirectory() + DIR_SEP USERDATA_DIR DIR_SEP; | 677 | user_path = GetExeDirectory() + DIR_SEP USERDATA_DIR DIR_SEP; |
| 671 | if (!FileUtil::IsDirectory(user_path)) { | 678 | if (!IsDirectory(user_path)) { |
| 672 | user_path = AppDataRoamingDirectory() + DIR_SEP EMU_DATA_DIR DIR_SEP; | 679 | user_path = AppDataRoamingDirectory() + DIR_SEP EMU_DATA_DIR DIR_SEP; |
| 673 | } else { | 680 | } else { |
| 674 | LOG_INFO(Common_Filesystem, "Using the local user directory"); | 681 | LOG_INFO(Common_Filesystem, "Using the local user directory"); |
| @@ -677,7 +684,7 @@ const std::string& GetUserPath(UserPath path, const std::string& new_path) { | |||
| 677 | paths.emplace(UserPath::ConfigDir, user_path + CONFIG_DIR DIR_SEP); | 684 | paths.emplace(UserPath::ConfigDir, user_path + CONFIG_DIR DIR_SEP); |
| 678 | paths.emplace(UserPath::CacheDir, user_path + CACHE_DIR DIR_SEP); | 685 | paths.emplace(UserPath::CacheDir, user_path + CACHE_DIR DIR_SEP); |
| 679 | #else | 686 | #else |
| 680 | if (FileUtil::Exists(ROOT_DIR DIR_SEP USERDATA_DIR)) { | 687 | if (Exists(ROOT_DIR DIR_SEP USERDATA_DIR)) { |
| 681 | user_path = ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP; | 688 | user_path = ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP; |
| 682 | paths.emplace(UserPath::ConfigDir, user_path + CONFIG_DIR DIR_SEP); | 689 | paths.emplace(UserPath::ConfigDir, user_path + CONFIG_DIR DIR_SEP); |
| 683 | paths.emplace(UserPath::CacheDir, user_path + CACHE_DIR DIR_SEP); | 690 | paths.emplace(UserPath::CacheDir, user_path + CACHE_DIR DIR_SEP); |
| @@ -704,7 +711,7 @@ const std::string& GetUserPath(UserPath path, const std::string& new_path) { | |||
| 704 | } | 711 | } |
| 705 | 712 | ||
| 706 | if (!new_path.empty()) { | 713 | if (!new_path.empty()) { |
| 707 | if (!FileUtil::IsDirectory(new_path)) { | 714 | if (!IsDirectory(new_path)) { |
| 708 | LOG_ERROR(Common_Filesystem, "Invalid path specified {}", new_path); | 715 | LOG_ERROR(Common_Filesystem, "Invalid path specified {}", new_path); |
| 709 | return paths[path]; | 716 | return paths[path]; |
| 710 | } else { | 717 | } else { |
| @@ -946,17 +953,18 @@ bool IOFile::Open(const std::string& filename, const char openmode[], int flags) | |||
| 946 | } | 953 | } |
| 947 | 954 | ||
| 948 | bool IOFile::Close() { | 955 | bool IOFile::Close() { |
| 949 | if (!IsOpen() || 0 != std::fclose(m_file)) | 956 | if (!IsOpen() || 0 != std::fclose(m_file)) { |
| 950 | return false; | 957 | return false; |
| 958 | } | ||
| 951 | 959 | ||
| 952 | m_file = nullptr; | 960 | m_file = nullptr; |
| 953 | return true; | 961 | return true; |
| 954 | } | 962 | } |
| 955 | 963 | ||
| 956 | u64 IOFile::GetSize() const { | 964 | u64 IOFile::GetSize() const { |
| 957 | if (IsOpen()) | 965 | if (IsOpen()) { |
| 958 | return FileUtil::GetSize(m_file); | 966 | return FS::GetSize(m_file); |
| 959 | 967 | } | |
| 960 | return 0; | 968 | return 0; |
| 961 | } | 969 | } |
| 962 | 970 | ||
| @@ -965,9 +973,9 @@ bool IOFile::Seek(s64 off, int origin) const { | |||
| 965 | } | 973 | } |
| 966 | 974 | ||
| 967 | u64 IOFile::Tell() const { | 975 | u64 IOFile::Tell() const { |
| 968 | if (IsOpen()) | 976 | if (IsOpen()) { |
| 969 | return ftello(m_file); | 977 | return ftello(m_file); |
| 970 | 978 | } | |
| 971 | return std::numeric_limits<u64>::max(); | 979 | return std::numeric_limits<u64>::max(); |
| 972 | } | 980 | } |
| 973 | 981 | ||
| @@ -1016,4 +1024,4 @@ bool IOFile::Resize(u64 size) { | |||
| 1016 | ; | 1024 | ; |
| 1017 | } | 1025 | } |
| 1018 | 1026 | ||
| 1019 | } // namespace FileUtil | 1027 | } // namespace Common::FS |
diff --git a/src/common/file_util.h b/src/common/file_util.h index 681b28137..8b587320f 100644 --- a/src/common/file_util.h +++ b/src/common/file_util.h | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #include "common/string_util.h" | 19 | #include "common/string_util.h" |
| 20 | #endif | 20 | #endif |
| 21 | 21 | ||
| 22 | namespace FileUtil { | 22 | namespace Common::FS { |
| 23 | 23 | ||
| 24 | // User paths for GetUserPath | 24 | // User paths for GetUserPath |
| 25 | enum class UserPath { | 25 | enum class UserPath { |
| @@ -204,6 +204,16 @@ enum class DirectorySeparator { | |||
| 204 | std::string_view path, | 204 | std::string_view path, |
| 205 | DirectorySeparator directory_separator = DirectorySeparator::ForwardSlash); | 205 | DirectorySeparator directory_separator = DirectorySeparator::ForwardSlash); |
| 206 | 206 | ||
| 207 | // To deal with Windows being dumb at Unicode | ||
| 208 | template <typename T> | ||
| 209 | void OpenFStream(T& fstream, const std::string& filename, std::ios_base::openmode openmode) { | ||
| 210 | #ifdef _MSC_VER | ||
| 211 | fstream.open(Common::UTF8ToUTF16W(filename), openmode); | ||
| 212 | #else | ||
| 213 | fstream.open(filename, openmode); | ||
| 214 | #endif | ||
| 215 | } | ||
| 216 | |||
| 207 | // simple wrapper for cstdlib file functions to | 217 | // simple wrapper for cstdlib file functions to |
| 208 | // hopefully will make error checking easier | 218 | // hopefully will make error checking easier |
| 209 | // and make forgetting an fclose() harder | 219 | // and make forgetting an fclose() harder |
| @@ -285,14 +295,4 @@ private: | |||
| 285 | std::FILE* m_file = nullptr; | 295 | std::FILE* m_file = nullptr; |
| 286 | }; | 296 | }; |
| 287 | 297 | ||
| 288 | } // namespace FileUtil | 298 | } // namespace Common::FS |
| 289 | |||
| 290 | // To deal with Windows being dumb at unicode: | ||
| 291 | template <typename T> | ||
| 292 | void OpenFStream(T& fstream, const std::string& filename, std::ios_base::openmode openmode) { | ||
| 293 | #ifdef _MSC_VER | ||
| 294 | fstream.open(Common::UTF8ToUTF16W(filename), openmode); | ||
| 295 | #else | ||
| 296 | fstream.open(filename, openmode); | ||
| 297 | #endif | ||
| 298 | } | ||
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h index e5d702568..da1c2f185 100644 --- a/src/common/logging/backend.h +++ b/src/common/logging/backend.h | |||
| @@ -94,7 +94,7 @@ public: | |||
| 94 | void Write(const Entry& entry) override; | 94 | void Write(const Entry& entry) override; |
| 95 | 95 | ||
| 96 | private: | 96 | private: |
| 97 | FileUtil::IOFile file; | 97 | Common::FS::IOFile file; |
| 98 | std::size_t bytes_written; | 98 | std::size_t bytes_written; |
| 99 | }; | 99 | }; |
| 100 | 100 | ||
diff --git a/src/core/core.cpp b/src/core/core.cpp index 42277e2cd..1d8c0f1cd 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -113,7 +113,7 @@ FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs, | |||
| 113 | return FileSys::ConcatenatedVfsFile::MakeConcatenatedFile(concat, dir->GetName()); | 113 | return FileSys::ConcatenatedVfsFile::MakeConcatenatedFile(concat, dir->GetName()); |
| 114 | } | 114 | } |
| 115 | 115 | ||
| 116 | if (FileUtil::IsDirectory(path)) | 116 | if (Common::FS::IsDirectory(path)) |
| 117 | return vfs->OpenFile(path + "/" + "main", FileSys::Mode::Read); | 117 | return vfs->OpenFile(path + "/" + "main", FileSys::Mode::Read); |
| 118 | 118 | ||
| 119 | return vfs->OpenFile(path, FileSys::Mode::Read); | 119 | return vfs->OpenFile(path, FileSys::Mode::Read); |
diff --git a/src/core/crypto/key_manager.cpp b/src/core/crypto/key_manager.cpp index c09f7ad41..8783d1ac2 100644 --- a/src/core/crypto/key_manager.cpp +++ b/src/core/crypto/key_manager.cpp | |||
| @@ -96,13 +96,13 @@ u64 GetSignatureTypePaddingSize(SignatureType type) { | |||
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | SignatureType Ticket::GetSignatureType() const { | 98 | SignatureType Ticket::GetSignatureType() const { |
| 99 | if (auto ticket = std::get_if<RSA4096Ticket>(&data)) { | 99 | if (const auto* ticket = std::get_if<RSA4096Ticket>(&data)) { |
| 100 | return ticket->sig_type; | 100 | return ticket->sig_type; |
| 101 | } | 101 | } |
| 102 | if (auto ticket = std::get_if<RSA2048Ticket>(&data)) { | 102 | if (const auto* ticket = std::get_if<RSA2048Ticket>(&data)) { |
| 103 | return ticket->sig_type; | 103 | return ticket->sig_type; |
| 104 | } | 104 | } |
| 105 | if (auto ticket = std::get_if<ECDSATicket>(&data)) { | 105 | if (const auto* ticket = std::get_if<ECDSATicket>(&data)) { |
| 106 | return ticket->sig_type; | 106 | return ticket->sig_type; |
| 107 | } | 107 | } |
| 108 | 108 | ||
| @@ -110,13 +110,13 @@ SignatureType Ticket::GetSignatureType() const { | |||
| 110 | } | 110 | } |
| 111 | 111 | ||
| 112 | TicketData& Ticket::GetData() { | 112 | TicketData& Ticket::GetData() { |
| 113 | if (auto ticket = std::get_if<RSA4096Ticket>(&data)) { | 113 | if (auto* ticket = std::get_if<RSA4096Ticket>(&data)) { |
| 114 | return ticket->data; | 114 | return ticket->data; |
| 115 | } | 115 | } |
| 116 | if (auto ticket = std::get_if<RSA2048Ticket>(&data)) { | 116 | if (auto* ticket = std::get_if<RSA2048Ticket>(&data)) { |
| 117 | return ticket->data; | 117 | return ticket->data; |
| 118 | } | 118 | } |
| 119 | if (auto ticket = std::get_if<ECDSATicket>(&data)) { | 119 | if (auto* ticket = std::get_if<ECDSATicket>(&data)) { |
| 120 | return ticket->data; | 120 | return ticket->data; |
| 121 | } | 121 | } |
| 122 | 122 | ||
| @@ -124,13 +124,13 @@ TicketData& Ticket::GetData() { | |||
| 124 | } | 124 | } |
| 125 | 125 | ||
| 126 | const TicketData& Ticket::GetData() const { | 126 | const TicketData& Ticket::GetData() const { |
| 127 | if (auto ticket = std::get_if<RSA4096Ticket>(&data)) { | 127 | if (const auto* ticket = std::get_if<RSA4096Ticket>(&data)) { |
| 128 | return ticket->data; | 128 | return ticket->data; |
| 129 | } | 129 | } |
| 130 | if (auto ticket = std::get_if<RSA2048Ticket>(&data)) { | 130 | if (const auto* ticket = std::get_if<RSA2048Ticket>(&data)) { |
| 131 | return ticket->data; | 131 | return ticket->data; |
| 132 | } | 132 | } |
| 133 | if (auto ticket = std::get_if<ECDSATicket>(&data)) { | 133 | if (const auto* ticket = std::get_if<ECDSATicket>(&data)) { |
| 134 | return ticket->data; | 134 | return ticket->data; |
| 135 | } | 135 | } |
| 136 | 136 | ||
| @@ -233,8 +233,9 @@ void KeyManager::DeriveGeneralPurposeKeys(std::size_t crypto_revision) { | |||
| 233 | } | 233 | } |
| 234 | 234 | ||
| 235 | RSAKeyPair<2048> KeyManager::GetETicketRSAKey() const { | 235 | RSAKeyPair<2048> KeyManager::GetETicketRSAKey() const { |
| 236 | if (IsAllZeroArray(eticket_extended_kek) || !HasKey(S128KeyType::ETicketRSAKek)) | 236 | if (IsAllZeroArray(eticket_extended_kek) || !HasKey(S128KeyType::ETicketRSAKek)) { |
| 237 | return {}; | 237 | return {}; |
| 238 | } | ||
| 238 | 239 | ||
| 239 | const auto eticket_final = GetKey(S128KeyType::ETicketRSAKek); | 240 | const auto eticket_final = GetKey(S128KeyType::ETicketRSAKek); |
| 240 | 241 | ||
| @@ -261,27 +262,30 @@ Key128 DeriveKeyblobMACKey(const Key128& keyblob_key, const Key128& mac_source) | |||
| 261 | } | 262 | } |
| 262 | 263 | ||
| 263 | std::optional<Key128> DeriveSDSeed() { | 264 | std::optional<Key128> DeriveSDSeed() { |
| 264 | const FileUtil::IOFile save_43(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 265 | const Common::FS::IOFile save_43(Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + |
| 265 | "/system/save/8000000000000043", | 266 | "/system/save/8000000000000043", |
| 266 | "rb+"); | 267 | "rb+"); |
| 267 | if (!save_43.IsOpen()) | 268 | if (!save_43.IsOpen()) { |
| 268 | return {}; | 269 | return std::nullopt; |
| 270 | } | ||
| 269 | 271 | ||
| 270 | const FileUtil::IOFile sd_private( | 272 | const Common::FS::IOFile sd_private(Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir) + |
| 271 | FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir) + "/Nintendo/Contents/private", "rb+"); | 273 | "/Nintendo/Contents/private", |
| 272 | if (!sd_private.IsOpen()) | 274 | "rb+"); |
| 273 | return {}; | 275 | if (!sd_private.IsOpen()) { |
| 276 | return std::nullopt; | ||
| 277 | } | ||
| 274 | 278 | ||
| 275 | std::array<u8, 0x10> private_seed{}; | 279 | std::array<u8, 0x10> private_seed{}; |
| 276 | if (sd_private.ReadBytes(private_seed.data(), private_seed.size()) != private_seed.size()) { | 280 | if (sd_private.ReadBytes(private_seed.data(), private_seed.size()) != private_seed.size()) { |
| 277 | return {}; | 281 | return std::nullopt; |
| 278 | } | 282 | } |
| 279 | 283 | ||
| 280 | std::array<u8, 0x10> buffer{}; | 284 | std::array<u8, 0x10> buffer{}; |
| 281 | std::size_t offset = 0; | 285 | std::size_t offset = 0; |
| 282 | for (; offset + 0x10 < save_43.GetSize(); ++offset) { | 286 | for (; offset + 0x10 < save_43.GetSize(); ++offset) { |
| 283 | if (!save_43.Seek(offset, SEEK_SET)) { | 287 | if (!save_43.Seek(offset, SEEK_SET)) { |
| 284 | return {}; | 288 | return std::nullopt; |
| 285 | } | 289 | } |
| 286 | 290 | ||
| 287 | save_43.ReadBytes(buffer.data(), buffer.size()); | 291 | save_43.ReadBytes(buffer.data(), buffer.size()); |
| @@ -291,23 +295,26 @@ std::optional<Key128> DeriveSDSeed() { | |||
| 291 | } | 295 | } |
| 292 | 296 | ||
| 293 | if (!save_43.Seek(offset + 0x10, SEEK_SET)) { | 297 | if (!save_43.Seek(offset + 0x10, SEEK_SET)) { |
| 294 | return {}; | 298 | return std::nullopt; |
| 295 | } | 299 | } |
| 296 | 300 | ||
| 297 | Key128 seed{}; | 301 | Key128 seed{}; |
| 298 | if (save_43.ReadBytes(seed.data(), seed.size()) != seed.size()) { | 302 | if (save_43.ReadBytes(seed.data(), seed.size()) != seed.size()) { |
| 299 | return {}; | 303 | return std::nullopt; |
| 300 | } | 304 | } |
| 301 | return seed; | 305 | return seed; |
| 302 | } | 306 | } |
| 303 | 307 | ||
| 304 | Loader::ResultStatus DeriveSDKeys(std::array<Key256, 2>& sd_keys, KeyManager& keys) { | 308 | Loader::ResultStatus DeriveSDKeys(std::array<Key256, 2>& sd_keys, KeyManager& keys) { |
| 305 | if (!keys.HasKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::SDKek))) | 309 | if (!keys.HasKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::SDKek))) { |
| 306 | return Loader::ResultStatus::ErrorMissingSDKEKSource; | 310 | return Loader::ResultStatus::ErrorMissingSDKEKSource; |
| 307 | if (!keys.HasKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::AESKekGeneration))) | 311 | } |
| 312 | if (!keys.HasKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::AESKekGeneration))) { | ||
| 308 | return Loader::ResultStatus::ErrorMissingAESKEKGenerationSource; | 313 | return Loader::ResultStatus::ErrorMissingAESKEKGenerationSource; |
| 309 | if (!keys.HasKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::AESKeyGeneration))) | 314 | } |
| 315 | if (!keys.HasKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::AESKeyGeneration))) { | ||
| 310 | return Loader::ResultStatus::ErrorMissingAESKeyGenerationSource; | 316 | return Loader::ResultStatus::ErrorMissingAESKeyGenerationSource; |
| 317 | } | ||
| 311 | 318 | ||
| 312 | const auto sd_kek_source = | 319 | const auto sd_kek_source = |
| 313 | keys.GetKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::SDKek)); | 320 | keys.GetKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::SDKek)); |
| @@ -320,14 +327,17 @@ Loader::ResultStatus DeriveSDKeys(std::array<Key256, 2>& sd_keys, KeyManager& ke | |||
| 320 | GenerateKeyEncryptionKey(sd_kek_source, master_00, aes_kek_gen, aes_key_gen); | 327 | GenerateKeyEncryptionKey(sd_kek_source, master_00, aes_kek_gen, aes_key_gen); |
| 321 | keys.SetKey(S128KeyType::SDKek, sd_kek); | 328 | keys.SetKey(S128KeyType::SDKek, sd_kek); |
| 322 | 329 | ||
| 323 | if (!keys.HasKey(S128KeyType::SDSeed)) | 330 | if (!keys.HasKey(S128KeyType::SDSeed)) { |
| 324 | return Loader::ResultStatus::ErrorMissingSDSeed; | 331 | return Loader::ResultStatus::ErrorMissingSDSeed; |
| 332 | } | ||
| 325 | const auto sd_seed = keys.GetKey(S128KeyType::SDSeed); | 333 | const auto sd_seed = keys.GetKey(S128KeyType::SDSeed); |
| 326 | 334 | ||
| 327 | if (!keys.HasKey(S256KeyType::SDKeySource, static_cast<u64>(SDKeyType::Save))) | 335 | if (!keys.HasKey(S256KeyType::SDKeySource, static_cast<u64>(SDKeyType::Save))) { |
| 328 | return Loader::ResultStatus::ErrorMissingSDSaveKeySource; | 336 | return Loader::ResultStatus::ErrorMissingSDSaveKeySource; |
| 329 | if (!keys.HasKey(S256KeyType::SDKeySource, static_cast<u64>(SDKeyType::NCA))) | 337 | } |
| 338 | if (!keys.HasKey(S256KeyType::SDKeySource, static_cast<u64>(SDKeyType::NCA))) { | ||
| 330 | return Loader::ResultStatus::ErrorMissingSDNCAKeySource; | 339 | return Loader::ResultStatus::ErrorMissingSDNCAKeySource; |
| 340 | } | ||
| 331 | 341 | ||
| 332 | std::array<Key256, 2> sd_key_sources{ | 342 | std::array<Key256, 2> sd_key_sources{ |
| 333 | keys.GetKey(S256KeyType::SDKeySource, static_cast<u64>(SDKeyType::Save)), | 343 | keys.GetKey(S256KeyType::SDKeySource, static_cast<u64>(SDKeyType::Save)), |
| @@ -336,8 +346,9 @@ Loader::ResultStatus DeriveSDKeys(std::array<Key256, 2>& sd_keys, KeyManager& ke | |||
| 336 | 346 | ||
| 337 | // Combine sources and seed | 347 | // Combine sources and seed |
| 338 | for (auto& source : sd_key_sources) { | 348 | for (auto& source : sd_key_sources) { |
| 339 | for (std::size_t i = 0; i < source.size(); ++i) | 349 | for (std::size_t i = 0; i < source.size(); ++i) { |
| 340 | source[i] ^= sd_seed[i & 0xF]; | 350 | source[i] ^= sd_seed[i & 0xF]; |
| 351 | } | ||
| 341 | } | 352 | } |
| 342 | 353 | ||
| 343 | AESCipher<Key128> cipher(sd_kek, Mode::ECB); | 354 | AESCipher<Key128> cipher(sd_kek, Mode::ECB); |
| @@ -355,9 +366,10 @@ Loader::ResultStatus DeriveSDKeys(std::array<Key256, 2>& sd_keys, KeyManager& ke | |||
| 355 | return Loader::ResultStatus::Success; | 366 | return Loader::ResultStatus::Success; |
| 356 | } | 367 | } |
| 357 | 368 | ||
| 358 | std::vector<Ticket> GetTicketblob(const FileUtil::IOFile& ticket_save) { | 369 | std::vector<Ticket> GetTicketblob(const Common::FS::IOFile& ticket_save) { |
| 359 | if (!ticket_save.IsOpen()) | 370 | if (!ticket_save.IsOpen()) { |
| 360 | return {}; | 371 | return {}; |
| 372 | } | ||
| 361 | 373 | ||
| 362 | std::vector<u8> buffer(ticket_save.GetSize()); | 374 | std::vector<u8> buffer(ticket_save.GetSize()); |
| 363 | if (ticket_save.ReadBytes(buffer.data(), buffer.size()) != buffer.size()) { | 375 | if (ticket_save.ReadBytes(buffer.data(), buffer.size()) != buffer.size()) { |
| @@ -417,7 +429,7 @@ static std::optional<u64> FindTicketOffset(const std::array<u8, size>& data) { | |||
| 417 | offset = i + 1; | 429 | offset = i + 1; |
| 418 | break; | 430 | break; |
| 419 | } else if (data[i] != 0x0) { | 431 | } else if (data[i] != 0x0) { |
| 420 | return {}; | 432 | return std::nullopt; |
| 421 | } | 433 | } |
| 422 | } | 434 | } |
| 423 | 435 | ||
| @@ -427,16 +439,18 @@ static std::optional<u64> FindTicketOffset(const std::array<u8, size>& data) { | |||
| 427 | std::optional<std::pair<Key128, Key128>> ParseTicket(const Ticket& ticket, | 439 | std::optional<std::pair<Key128, Key128>> ParseTicket(const Ticket& ticket, |
| 428 | const RSAKeyPair<2048>& key) { | 440 | const RSAKeyPair<2048>& key) { |
| 429 | const auto issuer = ticket.GetData().issuer; | 441 | const auto issuer = ticket.GetData().issuer; |
| 430 | if (IsAllZeroArray(issuer)) | 442 | if (IsAllZeroArray(issuer)) { |
| 431 | return {}; | 443 | return std::nullopt; |
| 444 | } | ||
| 432 | if (issuer[0] != 'R' || issuer[1] != 'o' || issuer[2] != 'o' || issuer[3] != 't') { | 445 | if (issuer[0] != 'R' || issuer[1] != 'o' || issuer[2] != 'o' || issuer[3] != 't') { |
| 433 | LOG_INFO(Crypto, "Attempting to parse ticket with non-standard certificate authority."); | 446 | LOG_INFO(Crypto, "Attempting to parse ticket with non-standard certificate authority."); |
| 434 | } | 447 | } |
| 435 | 448 | ||
| 436 | Key128 rights_id = ticket.GetData().rights_id; | 449 | Key128 rights_id = ticket.GetData().rights_id; |
| 437 | 450 | ||
| 438 | if (rights_id == Key128{}) | 451 | if (rights_id == Key128{}) { |
| 439 | return {}; | 452 | return std::nullopt; |
| 453 | } | ||
| 440 | 454 | ||
| 441 | if (!std::any_of(ticket.GetData().title_key_common_pad.begin(), | 455 | if (!std::any_of(ticket.GetData().title_key_common_pad.begin(), |
| 442 | ticket.GetData().title_key_common_pad.end(), [](u8 b) { return b != 0; })) { | 456 | ticket.GetData().title_key_common_pad.end(), [](u8 b) { return b != 0; })) { |
| @@ -468,15 +482,17 @@ std::optional<std::pair<Key128, Key128>> ParseTicket(const Ticket& ticket, | |||
| 468 | std::array<u8, 0xDF> m_2; | 482 | std::array<u8, 0xDF> m_2; |
| 469 | std::memcpy(m_2.data(), rsa_step.data() + 0x21, m_2.size()); | 483 | std::memcpy(m_2.data(), rsa_step.data() + 0x21, m_2.size()); |
| 470 | 484 | ||
| 471 | if (m_0 != 0) | 485 | if (m_0 != 0) { |
| 472 | return {}; | 486 | return std::nullopt; |
| 487 | } | ||
| 473 | 488 | ||
| 474 | m_1 = m_1 ^ MGF1<0x20>(m_2); | 489 | m_1 = m_1 ^ MGF1<0x20>(m_2); |
| 475 | m_2 = m_2 ^ MGF1<0xDF>(m_1); | 490 | m_2 = m_2 ^ MGF1<0xDF>(m_1); |
| 476 | 491 | ||
| 477 | const auto offset = FindTicketOffset(m_2); | 492 | const auto offset = FindTicketOffset(m_2); |
| 478 | if (!offset) | 493 | if (!offset) { |
| 479 | return {}; | 494 | return std::nullopt; |
| 495 | } | ||
| 480 | ASSERT(*offset > 0); | 496 | ASSERT(*offset > 0); |
| 481 | 497 | ||
| 482 | Key128 key_temp{}; | 498 | Key128 key_temp{}; |
| @@ -487,8 +503,8 @@ std::optional<std::pair<Key128, Key128>> ParseTicket(const Ticket& ticket, | |||
| 487 | 503 | ||
| 488 | KeyManager::KeyManager() { | 504 | KeyManager::KeyManager() { |
| 489 | // Initialize keys | 505 | // Initialize keys |
| 490 | const std::string hactool_keys_dir = FileUtil::GetHactoolConfigurationPath(); | 506 | const std::string hactool_keys_dir = Common::FS::GetHactoolConfigurationPath(); |
| 491 | const std::string yuzu_keys_dir = FileUtil::GetUserPath(FileUtil::UserPath::KeysDir); | 507 | const std::string yuzu_keys_dir = Common::FS::GetUserPath(Common::FS::UserPath::KeysDir); |
| 492 | if (Settings::values.use_dev_keys) { | 508 | if (Settings::values.use_dev_keys) { |
| 493 | dev_mode = true; | 509 | dev_mode = true; |
| 494 | AttemptLoadKeyFile(yuzu_keys_dir, hactool_keys_dir, "dev.keys", false); | 510 | AttemptLoadKeyFile(yuzu_keys_dir, hactool_keys_dir, "dev.keys", false); |
| @@ -506,34 +522,39 @@ KeyManager::KeyManager() { | |||
| 506 | } | 522 | } |
| 507 | 523 | ||
| 508 | static bool ValidCryptoRevisionString(std::string_view base, size_t begin, size_t length) { | 524 | static bool ValidCryptoRevisionString(std::string_view base, size_t begin, size_t length) { |
| 509 | if (base.size() < begin + length) | 525 | if (base.size() < begin + length) { |
| 510 | return false; | 526 | return false; |
| 527 | } | ||
| 511 | return std::all_of(base.begin() + begin, base.begin() + begin + length, | 528 | return std::all_of(base.begin() + begin, base.begin() + begin + length, |
| 512 | [](u8 c) { return std::isxdigit(c); }); | 529 | [](u8 c) { return std::isxdigit(c); }); |
| 513 | } | 530 | } |
| 514 | 531 | ||
| 515 | void KeyManager::LoadFromFile(const std::string& filename, bool is_title_keys) { | 532 | void KeyManager::LoadFromFile(const std::string& filename, bool is_title_keys) { |
| 516 | std::ifstream file; | 533 | std::ifstream file; |
| 517 | OpenFStream(file, filename, std::ios_base::in); | 534 | Common::FS::OpenFStream(file, filename, std::ios_base::in); |
| 518 | if (!file.is_open()) | 535 | if (!file.is_open()) { |
| 519 | return; | 536 | return; |
| 537 | } | ||
| 520 | 538 | ||
| 521 | std::string line; | 539 | std::string line; |
| 522 | while (std::getline(file, line)) { | 540 | while (std::getline(file, line)) { |
| 523 | std::vector<std::string> out; | 541 | std::vector<std::string> out; |
| 524 | std::stringstream stream(line); | 542 | std::stringstream stream(line); |
| 525 | std::string item; | 543 | std::string item; |
| 526 | while (std::getline(stream, item, '=')) | 544 | while (std::getline(stream, item, '=')) { |
| 527 | out.push_back(std::move(item)); | 545 | out.push_back(std::move(item)); |
| 546 | } | ||
| 528 | 547 | ||
| 529 | if (out.size() != 2) | 548 | if (out.size() != 2) { |
| 530 | continue; | 549 | continue; |
| 550 | } | ||
| 531 | 551 | ||
| 532 | out[0].erase(std::remove(out[0].begin(), out[0].end(), ' '), out[0].end()); | 552 | out[0].erase(std::remove(out[0].begin(), out[0].end(), ' '), out[0].end()); |
| 533 | out[1].erase(std::remove(out[1].begin(), out[1].end(), ' '), out[1].end()); | 553 | out[1].erase(std::remove(out[1].begin(), out[1].end(), ' '), out[1].end()); |
| 534 | 554 | ||
| 535 | if (out[0].compare(0, 1, "#") == 0) | 555 | if (out[0].compare(0, 1, "#") == 0) { |
| 536 | continue; | 556 | continue; |
| 557 | } | ||
| 537 | 558 | ||
| 538 | if (is_title_keys) { | 559 | if (is_title_keys) { |
| 539 | auto rights_id_raw = Common::HexStringToArray<16>(out[0]); | 560 | auto rights_id_raw = Common::HexStringToArray<16>(out[0]); |
| @@ -553,14 +574,16 @@ void KeyManager::LoadFromFile(const std::string& filename, bool is_title_keys) { | |||
| 553 | s256_keys[{index.type, index.field1, index.field2}] = key; | 574 | s256_keys[{index.type, index.field1, index.field2}] = key; |
| 554 | } else if (out[0].compare(0, 8, "keyblob_") == 0 && | 575 | } else if (out[0].compare(0, 8, "keyblob_") == 0 && |
| 555 | out[0].compare(0, 9, "keyblob_k") != 0) { | 576 | out[0].compare(0, 9, "keyblob_k") != 0) { |
| 556 | if (!ValidCryptoRevisionString(out[0], 8, 2)) | 577 | if (!ValidCryptoRevisionString(out[0], 8, 2)) { |
| 557 | continue; | 578 | continue; |
| 579 | } | ||
| 558 | 580 | ||
| 559 | const auto index = std::stoul(out[0].substr(8, 2), nullptr, 16); | 581 | const auto index = std::stoul(out[0].substr(8, 2), nullptr, 16); |
| 560 | keyblobs[index] = Common::HexStringToArray<0x90>(out[1]); | 582 | keyblobs[index] = Common::HexStringToArray<0x90>(out[1]); |
| 561 | } else if (out[0].compare(0, 18, "encrypted_keyblob_") == 0) { | 583 | } else if (out[0].compare(0, 18, "encrypted_keyblob_") == 0) { |
| 562 | if (!ValidCryptoRevisionString(out[0], 18, 2)) | 584 | if (!ValidCryptoRevisionString(out[0], 18, 2)) { |
| 563 | continue; | 585 | continue; |
| 586 | } | ||
| 564 | 587 | ||
| 565 | const auto index = std::stoul(out[0].substr(18, 2), nullptr, 16); | 588 | const auto index = std::stoul(out[0].substr(18, 2), nullptr, 16); |
| 566 | encrypted_keyblobs[index] = Common::HexStringToArray<0xB0>(out[1]); | 589 | encrypted_keyblobs[index] = Common::HexStringToArray<0xB0>(out[1]); |
| @@ -568,8 +591,9 @@ void KeyManager::LoadFromFile(const std::string& filename, bool is_title_keys) { | |||
| 568 | eticket_extended_kek = Common::HexStringToArray<576>(out[1]); | 591 | eticket_extended_kek = Common::HexStringToArray<576>(out[1]); |
| 569 | } else { | 592 | } else { |
| 570 | for (const auto& kv : KEYS_VARIABLE_LENGTH) { | 593 | for (const auto& kv : KEYS_VARIABLE_LENGTH) { |
| 571 | if (!ValidCryptoRevisionString(out[0], kv.second.size(), 2)) | 594 | if (!ValidCryptoRevisionString(out[0], kv.second.size(), 2)) { |
| 572 | continue; | 595 | continue; |
| 596 | } | ||
| 573 | if (out[0].compare(0, kv.second.size(), kv.second) == 0) { | 597 | if (out[0].compare(0, kv.second.size(), kv.second) == 0) { |
| 574 | const auto index = | 598 | const auto index = |
| 575 | std::stoul(out[0].substr(kv.second.size(), 2), nullptr, 16); | 599 | std::stoul(out[0].substr(kv.second.size(), 2), nullptr, 16); |
| @@ -604,10 +628,11 @@ void KeyManager::LoadFromFile(const std::string& filename, bool is_title_keys) { | |||
| 604 | 628 | ||
| 605 | void KeyManager::AttemptLoadKeyFile(const std::string& dir1, const std::string& dir2, | 629 | void KeyManager::AttemptLoadKeyFile(const std::string& dir1, const std::string& dir2, |
| 606 | const std::string& filename, bool title) { | 630 | const std::string& filename, bool title) { |
| 607 | if (FileUtil::Exists(dir1 + DIR_SEP + filename)) | 631 | if (Common::FS::Exists(dir1 + DIR_SEP + filename)) { |
| 608 | LoadFromFile(dir1 + DIR_SEP + filename, title); | 632 | LoadFromFile(dir1 + DIR_SEP + filename, title); |
| 609 | else if (FileUtil::Exists(dir2 + DIR_SEP + filename)) | 633 | } else if (Common::FS::Exists(dir2 + DIR_SEP + filename)) { |
| 610 | LoadFromFile(dir2 + DIR_SEP + filename, title); | 634 | LoadFromFile(dir2 + DIR_SEP + filename, title); |
| 635 | } | ||
| 611 | } | 636 | } |
| 612 | 637 | ||
| 613 | bool KeyManager::BaseDeriveNecessary() const { | 638 | bool KeyManager::BaseDeriveNecessary() const { |
| @@ -615,8 +640,9 @@ bool KeyManager::BaseDeriveNecessary() const { | |||
| 615 | return !HasKey(key_type, index1, index2); | 640 | return !HasKey(key_type, index1, index2); |
| 616 | }; | 641 | }; |
| 617 | 642 | ||
| 618 | if (check_key_existence(S256KeyType::Header)) | 643 | if (check_key_existence(S256KeyType::Header)) { |
| 619 | return true; | 644 | return true; |
| 645 | } | ||
| 620 | 646 | ||
| 621 | for (size_t i = 0; i < CURRENT_CRYPTO_REVISION; ++i) { | 647 | for (size_t i = 0; i < CURRENT_CRYPTO_REVISION; ++i) { |
| 622 | if (check_key_existence(S128KeyType::Master, i) || | 648 | if (check_key_existence(S128KeyType::Master, i) || |
| @@ -641,14 +667,16 @@ bool KeyManager::HasKey(S256KeyType id, u64 field1, u64 field2) const { | |||
| 641 | } | 667 | } |
| 642 | 668 | ||
| 643 | Key128 KeyManager::GetKey(S128KeyType id, u64 field1, u64 field2) const { | 669 | Key128 KeyManager::GetKey(S128KeyType id, u64 field1, u64 field2) const { |
| 644 | if (!HasKey(id, field1, field2)) | 670 | if (!HasKey(id, field1, field2)) { |
| 645 | return {}; | 671 | return {}; |
| 672 | } | ||
| 646 | return s128_keys.at({id, field1, field2}); | 673 | return s128_keys.at({id, field1, field2}); |
| 647 | } | 674 | } |
| 648 | 675 | ||
| 649 | Key256 KeyManager::GetKey(S256KeyType id, u64 field1, u64 field2) const { | 676 | Key256 KeyManager::GetKey(S256KeyType id, u64 field1, u64 field2) const { |
| 650 | if (!HasKey(id, field1, field2)) | 677 | if (!HasKey(id, field1, field2)) { |
| 651 | return {}; | 678 | return {}; |
| 679 | } | ||
| 652 | return s256_keys.at({id, field1, field2}); | 680 | return s256_keys.at({id, field1, field2}); |
| 653 | } | 681 | } |
| 654 | 682 | ||
| @@ -670,7 +698,7 @@ Key256 KeyManager::GetBISKey(u8 partition_id) const { | |||
| 670 | template <size_t Size> | 698 | template <size_t Size> |
| 671 | void KeyManager::WriteKeyToFile(KeyCategory category, std::string_view keyname, | 699 | void KeyManager::WriteKeyToFile(KeyCategory category, std::string_view keyname, |
| 672 | const std::array<u8, Size>& key) { | 700 | const std::array<u8, Size>& key) { |
| 673 | const std::string yuzu_keys_dir = FileUtil::GetUserPath(FileUtil::UserPath::KeysDir); | 701 | const std::string yuzu_keys_dir = Common::FS::GetUserPath(Common::FS::UserPath::KeysDir); |
| 674 | std::string filename = "title.keys_autogenerated"; | 702 | std::string filename = "title.keys_autogenerated"; |
| 675 | if (category == KeyCategory::Standard) { | 703 | if (category == KeyCategory::Standard) { |
| 676 | filename = dev_mode ? "dev.keys_autogenerated" : "prod.keys_autogenerated"; | 704 | filename = dev_mode ? "dev.keys_autogenerated" : "prod.keys_autogenerated"; |
| @@ -679,9 +707,9 @@ void KeyManager::WriteKeyToFile(KeyCategory category, std::string_view keyname, | |||
| 679 | } | 707 | } |
| 680 | 708 | ||
| 681 | const auto path = yuzu_keys_dir + DIR_SEP + filename; | 709 | const auto path = yuzu_keys_dir + DIR_SEP + filename; |
| 682 | const auto add_info_text = !FileUtil::Exists(path); | 710 | const auto add_info_text = !Common::FS::Exists(path); |
| 683 | FileUtil::CreateFullPath(path); | 711 | Common::FS::CreateFullPath(path); |
| 684 | FileUtil::IOFile file{path, "a"}; | 712 | Common::FS::IOFile file{path, "a"}; |
| 685 | if (!file.IsOpen()) { | 713 | if (!file.IsOpen()) { |
| 686 | return; | 714 | return; |
| 687 | } | 715 | } |
| @@ -765,29 +793,31 @@ void KeyManager::SetKey(S256KeyType id, Key256 key, u64 field1, u64 field2) { | |||
| 765 | } | 793 | } |
| 766 | 794 | ||
| 767 | bool KeyManager::KeyFileExists(bool title) { | 795 | bool KeyManager::KeyFileExists(bool title) { |
| 768 | const std::string hactool_keys_dir = FileUtil::GetHactoolConfigurationPath(); | 796 | const std::string hactool_keys_dir = Common::FS::GetHactoolConfigurationPath(); |
| 769 | const std::string yuzu_keys_dir = FileUtil::GetUserPath(FileUtil::UserPath::KeysDir); | 797 | const std::string yuzu_keys_dir = Common::FS::GetUserPath(Common::FS::UserPath::KeysDir); |
| 770 | if (title) { | 798 | if (title) { |
| 771 | return FileUtil::Exists(hactool_keys_dir + DIR_SEP + "title.keys") || | 799 | return Common::FS::Exists(hactool_keys_dir + DIR_SEP + "title.keys") || |
| 772 | FileUtil::Exists(yuzu_keys_dir + DIR_SEP + "title.keys"); | 800 | Common::FS::Exists(yuzu_keys_dir + DIR_SEP + "title.keys"); |
| 773 | } | 801 | } |
| 774 | 802 | ||
| 775 | if (Settings::values.use_dev_keys) { | 803 | if (Settings::values.use_dev_keys) { |
| 776 | return FileUtil::Exists(hactool_keys_dir + DIR_SEP + "dev.keys") || | 804 | return Common::FS::Exists(hactool_keys_dir + DIR_SEP + "dev.keys") || |
| 777 | FileUtil::Exists(yuzu_keys_dir + DIR_SEP + "dev.keys"); | 805 | Common::FS::Exists(yuzu_keys_dir + DIR_SEP + "dev.keys"); |
| 778 | } | 806 | } |
| 779 | 807 | ||
| 780 | return FileUtil::Exists(hactool_keys_dir + DIR_SEP + "prod.keys") || | 808 | return Common::FS::Exists(hactool_keys_dir + DIR_SEP + "prod.keys") || |
| 781 | FileUtil::Exists(yuzu_keys_dir + DIR_SEP + "prod.keys"); | 809 | Common::FS::Exists(yuzu_keys_dir + DIR_SEP + "prod.keys"); |
| 782 | } | 810 | } |
| 783 | 811 | ||
| 784 | void KeyManager::DeriveSDSeedLazy() { | 812 | void KeyManager::DeriveSDSeedLazy() { |
| 785 | if (HasKey(S128KeyType::SDSeed)) | 813 | if (HasKey(S128KeyType::SDSeed)) { |
| 786 | return; | 814 | return; |
| 815 | } | ||
| 787 | 816 | ||
| 788 | const auto res = DeriveSDSeed(); | 817 | const auto res = DeriveSDSeed(); |
| 789 | if (res) | 818 | if (res) { |
| 790 | SetKey(S128KeyType::SDSeed, *res); | 819 | SetKey(S128KeyType::SDSeed, *res); |
| 820 | } | ||
| 791 | } | 821 | } |
| 792 | 822 | ||
| 793 | static Key128 CalculateCMAC(const u8* source, size_t size, const Key128& key) { | 823 | static Key128 CalculateCMAC(const u8* source, size_t size, const Key128& key) { |
| @@ -799,11 +829,13 @@ static Key128 CalculateCMAC(const u8* source, size_t size, const Key128& key) { | |||
| 799 | } | 829 | } |
| 800 | 830 | ||
| 801 | void KeyManager::DeriveBase() { | 831 | void KeyManager::DeriveBase() { |
| 802 | if (!BaseDeriveNecessary()) | 832 | if (!BaseDeriveNecessary()) { |
| 803 | return; | 833 | return; |
| 834 | } | ||
| 804 | 835 | ||
| 805 | if (!HasKey(S128KeyType::SecureBoot) || !HasKey(S128KeyType::TSEC)) | 836 | if (!HasKey(S128KeyType::SecureBoot) || !HasKey(S128KeyType::TSEC)) { |
| 806 | return; | 837 | return; |
| 838 | } | ||
| 807 | 839 | ||
| 808 | const auto has_bis = [this](u64 id) { | 840 | const auto has_bis = [this](u64 id) { |
| 809 | return HasKey(S128KeyType::BIS, id, static_cast<u64>(BISKeyType::Crypto)) && | 841 | return HasKey(S128KeyType::BIS, id, static_cast<u64>(BISKeyType::Crypto)) && |
| @@ -820,10 +852,11 @@ void KeyManager::DeriveBase() { | |||
| 820 | static_cast<u64>(BISKeyType::Tweak)); | 852 | static_cast<u64>(BISKeyType::Tweak)); |
| 821 | }; | 853 | }; |
| 822 | 854 | ||
| 823 | if (has_bis(2) && !has_bis(3)) | 855 | if (has_bis(2) && !has_bis(3)) { |
| 824 | copy_bis(2, 3); | 856 | copy_bis(2, 3); |
| 825 | else if (has_bis(3) && !has_bis(2)) | 857 | } else if (has_bis(3) && !has_bis(2)) { |
| 826 | copy_bis(3, 2); | 858 | copy_bis(3, 2); |
| 859 | } | ||
| 827 | 860 | ||
| 828 | std::bitset<32> revisions(0xFFFFFFFF); | 861 | std::bitset<32> revisions(0xFFFFFFFF); |
| 829 | for (size_t i = 0; i < revisions.size(); ++i) { | 862 | for (size_t i = 0; i < revisions.size(); ++i) { |
| @@ -833,15 +866,17 @@ void KeyManager::DeriveBase() { | |||
| 833 | } | 866 | } |
| 834 | } | 867 | } |
| 835 | 868 | ||
| 836 | if (!revisions.any()) | 869 | if (!revisions.any()) { |
| 837 | return; | 870 | return; |
| 871 | } | ||
| 838 | 872 | ||
| 839 | const auto sbk = GetKey(S128KeyType::SecureBoot); | 873 | const auto sbk = GetKey(S128KeyType::SecureBoot); |
| 840 | const auto tsec = GetKey(S128KeyType::TSEC); | 874 | const auto tsec = GetKey(S128KeyType::TSEC); |
| 841 | 875 | ||
| 842 | for (size_t i = 0; i < revisions.size(); ++i) { | 876 | for (size_t i = 0; i < revisions.size(); ++i) { |
| 843 | if (!revisions[i]) | 877 | if (!revisions[i]) { |
| 844 | continue; | 878 | continue; |
| 879 | } | ||
| 845 | 880 | ||
| 846 | // Derive keyblob key | 881 | // Derive keyblob key |
| 847 | const auto key = DeriveKeyblobKey( | 882 | const auto key = DeriveKeyblobKey( |
| @@ -850,16 +885,18 @@ void KeyManager::DeriveBase() { | |||
| 850 | SetKey(S128KeyType::Keyblob, key, i); | 885 | SetKey(S128KeyType::Keyblob, key, i); |
| 851 | 886 | ||
| 852 | // Derive keyblob MAC key | 887 | // Derive keyblob MAC key |
| 853 | if (!HasKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyblobMAC))) | 888 | if (!HasKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyblobMAC))) { |
| 854 | continue; | 889 | continue; |
| 890 | } | ||
| 855 | 891 | ||
| 856 | const auto mac_key = DeriveKeyblobMACKey( | 892 | const auto mac_key = DeriveKeyblobMACKey( |
| 857 | key, GetKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyblobMAC))); | 893 | key, GetKey(S128KeyType::Source, static_cast<u64>(SourceKeyType::KeyblobMAC))); |
| 858 | SetKey(S128KeyType::KeyblobMAC, mac_key, i); | 894 | SetKey(S128KeyType::KeyblobMAC, mac_key, i); |
| 859 | 895 | ||
| 860 | Key128 cmac = CalculateCMAC(encrypted_keyblobs[i].data() + 0x10, 0xA0, mac_key); | 896 | Key128 cmac = CalculateCMAC(encrypted_keyblobs[i].data() + 0x10, 0xA0, mac_key); |
| 861 | if (std::memcmp(cmac.data(), encrypted_keyblobs[i].data(), cmac.size()) != 0) | 897 | if (std::memcmp(cmac.data(), encrypted_keyblobs[i].data(), cmac.size()) != 0) { |
| 862 | continue; | 898 | continue; |
| 899 | } | ||
| 863 | 900 | ||
| 864 | // Decrypt keyblob | 901 | // Decrypt keyblob |
| 865 | if (keyblobs[i] == std::array<u8, 0x90>{}) { | 902 | if (keyblobs[i] == std::array<u8, 0x90>{}) { |
| @@ -883,16 +920,19 @@ void KeyManager::DeriveBase() { | |||
| 883 | 920 | ||
| 884 | revisions.set(); | 921 | revisions.set(); |
| 885 | for (size_t i = 0; i < revisions.size(); ++i) { | 922 | for (size_t i = 0; i < revisions.size(); ++i) { |
| 886 | if (!HasKey(S128KeyType::Master, i)) | 923 | if (!HasKey(S128KeyType::Master, i)) { |
| 887 | revisions.reset(i); | 924 | revisions.reset(i); |
| 925 | } | ||
| 888 | } | 926 | } |
| 889 | 927 | ||
| 890 | if (!revisions.any()) | 928 | if (!revisions.any()) { |
| 891 | return; | 929 | return; |
| 930 | } | ||
| 892 | 931 | ||
| 893 | for (size_t i = 0; i < revisions.size(); ++i) { | 932 | for (size_t i = 0; i < revisions.size(); ++i) { |
| 894 | if (!revisions[i]) | 933 | if (!revisions[i]) { |
| 895 | continue; | 934 | continue; |
| 935 | } | ||
| 896 | 936 | ||
| 897 | // Derive general purpose keys | 937 | // Derive general purpose keys |
| 898 | DeriveGeneralPurposeKeys(i); | 938 | DeriveGeneralPurposeKeys(i); |
| @@ -922,16 +962,19 @@ void KeyManager::DeriveETicket(PartitionDataManager& data) { | |||
| 922 | const auto es = Core::System::GetInstance().GetContentProvider().GetEntry( | 962 | const auto es = Core::System::GetInstance().GetContentProvider().GetEntry( |
| 923 | 0x0100000000000033, FileSys::ContentRecordType::Program); | 963 | 0x0100000000000033, FileSys::ContentRecordType::Program); |
| 924 | 964 | ||
| 925 | if (es == nullptr) | 965 | if (es == nullptr) { |
| 926 | return; | 966 | return; |
| 967 | } | ||
| 927 | 968 | ||
| 928 | const auto exefs = es->GetExeFS(); | 969 | const auto exefs = es->GetExeFS(); |
| 929 | if (exefs == nullptr) | 970 | if (exefs == nullptr) { |
| 930 | return; | 971 | return; |
| 972 | } | ||
| 931 | 973 | ||
| 932 | const auto main = exefs->GetFile("main"); | 974 | const auto main = exefs->GetFile("main"); |
| 933 | if (main == nullptr) | 975 | if (main == nullptr) { |
| 934 | return; | 976 | return; |
| 977 | } | ||
| 935 | 978 | ||
| 936 | const auto bytes = main->ReadAllBytes(); | 979 | const auto bytes = main->ReadAllBytes(); |
| 937 | 980 | ||
| @@ -941,16 +984,19 @@ void KeyManager::DeriveETicket(PartitionDataManager& data) { | |||
| 941 | const auto seed3 = data.GetRSAKekSeed3(); | 984 | const auto seed3 = data.GetRSAKekSeed3(); |
| 942 | const auto mask0 = data.GetRSAKekMask0(); | 985 | const auto mask0 = data.GetRSAKekMask0(); |
| 943 | 986 | ||
| 944 | if (eticket_kek != Key128{}) | 987 | if (eticket_kek != Key128{}) { |
| 945 | SetKey(S128KeyType::Source, eticket_kek, static_cast<size_t>(SourceKeyType::ETicketKek)); | 988 | SetKey(S128KeyType::Source, eticket_kek, static_cast<size_t>(SourceKeyType::ETicketKek)); |
| 989 | } | ||
| 946 | if (eticket_kekek != Key128{}) { | 990 | if (eticket_kekek != Key128{}) { |
| 947 | SetKey(S128KeyType::Source, eticket_kekek, | 991 | SetKey(S128KeyType::Source, eticket_kekek, |
| 948 | static_cast<size_t>(SourceKeyType::ETicketKekek)); | 992 | static_cast<size_t>(SourceKeyType::ETicketKekek)); |
| 949 | } | 993 | } |
| 950 | if (seed3 != Key128{}) | 994 | if (seed3 != Key128{}) { |
| 951 | SetKey(S128KeyType::RSAKek, seed3, static_cast<size_t>(RSAKekType::Seed3)); | 995 | SetKey(S128KeyType::RSAKek, seed3, static_cast<size_t>(RSAKekType::Seed3)); |
| 952 | if (mask0 != Key128{}) | 996 | } |
| 997 | if (mask0 != Key128{}) { | ||
| 953 | SetKey(S128KeyType::RSAKek, mask0, static_cast<size_t>(RSAKekType::Mask0)); | 998 | SetKey(S128KeyType::RSAKek, mask0, static_cast<size_t>(RSAKekType::Mask0)); |
| 999 | } | ||
| 954 | if (eticket_kek == Key128{} || eticket_kekek == Key128{} || seed3 == Key128{} || | 1000 | if (eticket_kek == Key128{} || eticket_kekek == Key128{} || seed3 == Key128{} || |
| 955 | mask0 == Key128{}) { | 1001 | mask0 == Key128{}) { |
| 956 | return; | 1002 | return; |
| @@ -976,8 +1022,9 @@ void KeyManager::DeriveETicket(PartitionDataManager& data) { | |||
| 976 | AESCipher<Key128> es_kek(temp_kekek, Mode::ECB); | 1022 | AESCipher<Key128> es_kek(temp_kekek, Mode::ECB); |
| 977 | es_kek.Transcode(eticket_kek.data(), eticket_kek.size(), eticket_final.data(), Op::Decrypt); | 1023 | es_kek.Transcode(eticket_kek.data(), eticket_kek.size(), eticket_final.data(), Op::Decrypt); |
| 978 | 1024 | ||
| 979 | if (eticket_final == Key128{}) | 1025 | if (eticket_final == Key128{}) { |
| 980 | return; | 1026 | return; |
| 1027 | } | ||
| 981 | 1028 | ||
| 982 | SetKey(S128KeyType::ETicketRSAKek, eticket_final); | 1029 | SetKey(S128KeyType::ETicketRSAKek, eticket_final); |
| 983 | 1030 | ||
| @@ -992,18 +1039,20 @@ void KeyManager::DeriveETicket(PartitionDataManager& data) { | |||
| 992 | void KeyManager::PopulateTickets() { | 1039 | void KeyManager::PopulateTickets() { |
| 993 | const auto rsa_key = GetETicketRSAKey(); | 1040 | const auto rsa_key = GetETicketRSAKey(); |
| 994 | 1041 | ||
| 995 | if (rsa_key == RSAKeyPair<2048>{}) | 1042 | if (rsa_key == RSAKeyPair<2048>{}) { |
| 996 | return; | 1043 | return; |
| 1044 | } | ||
| 997 | 1045 | ||
| 998 | if (!common_tickets.empty() && !personal_tickets.empty()) | 1046 | if (!common_tickets.empty() && !personal_tickets.empty()) { |
| 999 | return; | 1047 | return; |
| 1048 | } | ||
| 1000 | 1049 | ||
| 1001 | const FileUtil::IOFile save1(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 1050 | const Common::FS::IOFile save1(Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + |
| 1002 | "/system/save/80000000000000e1", | 1051 | "/system/save/80000000000000e1", |
| 1003 | "rb+"); | 1052 | "rb+"); |
| 1004 | const FileUtil::IOFile save2(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 1053 | const Common::FS::IOFile save2(Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + |
| 1005 | "/system/save/80000000000000e2", | 1054 | "/system/save/80000000000000e2", |
| 1006 | "rb+"); | 1055 | "rb+"); |
| 1007 | 1056 | ||
| 1008 | const auto blob2 = GetTicketblob(save2); | 1057 | const auto blob2 = GetTicketblob(save2); |
| 1009 | auto res = GetTicketblob(save1); | 1058 | auto res = GetTicketblob(save1); |
| @@ -1013,8 +1062,10 @@ void KeyManager::PopulateTickets() { | |||
| 1013 | for (std::size_t i = 0; i < res.size(); ++i) { | 1062 | for (std::size_t i = 0; i < res.size(); ++i) { |
| 1014 | const auto common = i < idx; | 1063 | const auto common = i < idx; |
| 1015 | const auto pair = ParseTicket(res[i], rsa_key); | 1064 | const auto pair = ParseTicket(res[i], rsa_key); |
| 1016 | if (!pair) | 1065 | if (!pair) { |
| 1017 | continue; | 1066 | continue; |
| 1067 | } | ||
| 1068 | |||
| 1018 | const auto& [rid, key] = *pair; | 1069 | const auto& [rid, key] = *pair; |
| 1019 | u128 rights_id; | 1070 | u128 rights_id; |
| 1020 | std::memcpy(rights_id.data(), rid.data(), rid.size()); | 1071 | std::memcpy(rights_id.data(), rid.data(), rid.size()); |
| @@ -1043,27 +1094,33 @@ void KeyManager::SynthesizeTickets() { | |||
| 1043 | } | 1094 | } |
| 1044 | 1095 | ||
| 1045 | void KeyManager::SetKeyWrapped(S128KeyType id, Key128 key, u64 field1, u64 field2) { | 1096 | void KeyManager::SetKeyWrapped(S128KeyType id, Key128 key, u64 field1, u64 field2) { |
| 1046 | if (key == Key128{}) | 1097 | if (key == Key128{}) { |
| 1047 | return; | 1098 | return; |
| 1099 | } | ||
| 1048 | SetKey(id, key, field1, field2); | 1100 | SetKey(id, key, field1, field2); |
| 1049 | } | 1101 | } |
| 1050 | 1102 | ||
| 1051 | void KeyManager::SetKeyWrapped(S256KeyType id, Key256 key, u64 field1, u64 field2) { | 1103 | void KeyManager::SetKeyWrapped(S256KeyType id, Key256 key, u64 field1, u64 field2) { |
| 1052 | if (key == Key256{}) | 1104 | if (key == Key256{}) { |
| 1053 | return; | 1105 | return; |
| 1106 | } | ||
| 1107 | |||
| 1054 | SetKey(id, key, field1, field2); | 1108 | SetKey(id, key, field1, field2); |
| 1055 | } | 1109 | } |
| 1056 | 1110 | ||
| 1057 | void KeyManager::PopulateFromPartitionData(PartitionDataManager& data) { | 1111 | void KeyManager::PopulateFromPartitionData(PartitionDataManager& data) { |
| 1058 | if (!BaseDeriveNecessary()) | 1112 | if (!BaseDeriveNecessary()) { |
| 1059 | return; | 1113 | return; |
| 1114 | } | ||
| 1060 | 1115 | ||
| 1061 | if (!data.HasBoot0()) | 1116 | if (!data.HasBoot0()) { |
| 1062 | return; | 1117 | return; |
| 1118 | } | ||
| 1063 | 1119 | ||
| 1064 | for (size_t i = 0; i < encrypted_keyblobs.size(); ++i) { | 1120 | for (size_t i = 0; i < encrypted_keyblobs.size(); ++i) { |
| 1065 | if (encrypted_keyblobs[i] != std::array<u8, 0xB0>{}) | 1121 | if (encrypted_keyblobs[i] != std::array<u8, 0xB0>{}) { |
| 1066 | continue; | 1122 | continue; |
| 1123 | } | ||
| 1067 | encrypted_keyblobs[i] = data.GetEncryptedKeyblob(i); | 1124 | encrypted_keyblobs[i] = data.GetEncryptedKeyblob(i); |
| 1068 | WriteKeyToFile<0xB0>(KeyCategory::Console, fmt::format("encrypted_keyblob_{:02X}", i), | 1125 | WriteKeyToFile<0xB0>(KeyCategory::Console, fmt::format("encrypted_keyblob_{:02X}", i), |
| 1069 | encrypted_keyblobs[i]); | 1126 | encrypted_keyblobs[i]); |
| @@ -1085,8 +1142,9 @@ void KeyManager::PopulateFromPartitionData(PartitionDataManager& data) { | |||
| 1085 | static_cast<u64>(SourceKeyType::Keyblob), i); | 1142 | static_cast<u64>(SourceKeyType::Keyblob), i); |
| 1086 | } | 1143 | } |
| 1087 | 1144 | ||
| 1088 | if (data.HasFuses()) | 1145 | if (data.HasFuses()) { |
| 1089 | SetKeyWrapped(S128KeyType::SecureBoot, data.GetSecureBootKey()); | 1146 | SetKeyWrapped(S128KeyType::SecureBoot, data.GetSecureBootKey()); |
| 1147 | } | ||
| 1090 | 1148 | ||
| 1091 | DeriveBase(); | 1149 | DeriveBase(); |
| 1092 | 1150 | ||
| @@ -1100,8 +1158,9 @@ void KeyManager::PopulateFromPartitionData(PartitionDataManager& data) { | |||
| 1100 | 1158 | ||
| 1101 | const auto masters = data.GetTZMasterKeys(latest_master); | 1159 | const auto masters = data.GetTZMasterKeys(latest_master); |
| 1102 | for (size_t i = 0; i < masters.size(); ++i) { | 1160 | for (size_t i = 0; i < masters.size(); ++i) { |
| 1103 | if (masters[i] != Key128{} && !HasKey(S128KeyType::Master, i)) | 1161 | if (masters[i] != Key128{} && !HasKey(S128KeyType::Master, i)) { |
| 1104 | SetKey(S128KeyType::Master, masters[i], i); | 1162 | SetKey(S128KeyType::Master, masters[i], i); |
| 1163 | } | ||
| 1105 | } | 1164 | } |
| 1106 | 1165 | ||
| 1107 | DeriveBase(); | 1166 | DeriveBase(); |
| @@ -1111,8 +1170,9 @@ void KeyManager::PopulateFromPartitionData(PartitionDataManager& data) { | |||
| 1111 | 1170 | ||
| 1112 | std::array<Key128, 0x20> package2_keys{}; | 1171 | std::array<Key128, 0x20> package2_keys{}; |
| 1113 | for (size_t i = 0; i < package2_keys.size(); ++i) { | 1172 | for (size_t i = 0; i < package2_keys.size(); ++i) { |
| 1114 | if (HasKey(S128KeyType::Package2, i)) | 1173 | if (HasKey(S128KeyType::Package2, i)) { |
| 1115 | package2_keys[i] = GetKey(S128KeyType::Package2, i); | 1174 | package2_keys[i] = GetKey(S128KeyType::Package2, i); |
| 1175 | } | ||
| 1116 | } | 1176 | } |
| 1117 | data.DecryptPackage2(package2_keys, Package2Type::NormalMain); | 1177 | data.DecryptPackage2(package2_keys, Package2Type::NormalMain); |
| 1118 | 1178 | ||
| @@ -1150,12 +1210,15 @@ const std::map<u128, Ticket>& KeyManager::GetPersonalizedTickets() const { | |||
| 1150 | 1210 | ||
| 1151 | bool KeyManager::AddTicketCommon(Ticket raw) { | 1211 | bool KeyManager::AddTicketCommon(Ticket raw) { |
| 1152 | const auto rsa_key = GetETicketRSAKey(); | 1212 | const auto rsa_key = GetETicketRSAKey(); |
| 1153 | if (rsa_key == RSAKeyPair<2048>{}) | 1213 | if (rsa_key == RSAKeyPair<2048>{}) { |
| 1154 | return false; | 1214 | return false; |
| 1215 | } | ||
| 1155 | 1216 | ||
| 1156 | const auto pair = ParseTicket(raw, rsa_key); | 1217 | const auto pair = ParseTicket(raw, rsa_key); |
| 1157 | if (!pair) | 1218 | if (!pair) { |
| 1158 | return false; | 1219 | return false; |
| 1220 | } | ||
| 1221 | |||
| 1159 | const auto& [rid, key] = *pair; | 1222 | const auto& [rid, key] = *pair; |
| 1160 | u128 rights_id; | 1223 | u128 rights_id; |
| 1161 | std::memcpy(rights_id.data(), rid.data(), rid.size()); | 1224 | std::memcpy(rights_id.data(), rid.data(), rid.size()); |
| @@ -1166,12 +1229,15 @@ bool KeyManager::AddTicketCommon(Ticket raw) { | |||
| 1166 | 1229 | ||
| 1167 | bool KeyManager::AddTicketPersonalized(Ticket raw) { | 1230 | bool KeyManager::AddTicketPersonalized(Ticket raw) { |
| 1168 | const auto rsa_key = GetETicketRSAKey(); | 1231 | const auto rsa_key = GetETicketRSAKey(); |
| 1169 | if (rsa_key == RSAKeyPair<2048>{}) | 1232 | if (rsa_key == RSAKeyPair<2048>{}) { |
| 1170 | return false; | 1233 | return false; |
| 1234 | } | ||
| 1171 | 1235 | ||
| 1172 | const auto pair = ParseTicket(raw, rsa_key); | 1236 | const auto pair = ParseTicket(raw, rsa_key); |
| 1173 | if (!pair) | 1237 | if (!pair) { |
| 1174 | return false; | 1238 | return false; |
| 1239 | } | ||
| 1240 | |||
| 1175 | const auto& [rid, key] = *pair; | 1241 | const auto& [rid, key] = *pair; |
| 1176 | u128 rights_id; | 1242 | u128 rights_id; |
| 1177 | std::memcpy(rights_id.data(), rid.data(), rid.size()); | 1243 | std::memcpy(rights_id.data(), rid.data(), rid.size()); |
diff --git a/src/core/crypto/key_manager.h b/src/core/crypto/key_manager.h index 9269a73f2..bdca3770a 100644 --- a/src/core/crypto/key_manager.h +++ b/src/core/crypto/key_manager.h | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include "core/crypto/partition_data_manager.h" | 17 | #include "core/crypto/partition_data_manager.h" |
| 18 | #include "core/file_sys/vfs_types.h" | 18 | #include "core/file_sys/vfs_types.h" |
| 19 | 19 | ||
| 20 | namespace FileUtil { | 20 | namespace Common::FS { |
| 21 | class IOFile; | 21 | class IOFile; |
| 22 | } | 22 | } |
| 23 | 23 | ||
| @@ -308,7 +308,7 @@ std::array<u8, 0x90> DecryptKeyblob(const std::array<u8, 0xB0>& encrypted_keyblo | |||
| 308 | std::optional<Key128> DeriveSDSeed(); | 308 | std::optional<Key128> DeriveSDSeed(); |
| 309 | Loader::ResultStatus DeriveSDKeys(std::array<Key256, 2>& sd_keys, KeyManager& keys); | 309 | Loader::ResultStatus DeriveSDKeys(std::array<Key256, 2>& sd_keys, KeyManager& keys); |
| 310 | 310 | ||
| 311 | std::vector<Ticket> GetTicketblob(const FileUtil::IOFile& ticket_save); | 311 | std::vector<Ticket> GetTicketblob(const Common::FS::IOFile& ticket_save); |
| 312 | 312 | ||
| 313 | // Returns a pair of {rights_id, titlekey}. Fails if the ticket has no certificate authority | 313 | // Returns a pair of {rights_id, titlekey}. Fails if the ticket has no certificate authority |
| 314 | // (offset 0x140-0x144 is zero) | 314 | // (offset 0x140-0x144 is zero) |
diff --git a/src/core/file_sys/bis_factory.cpp b/src/core/file_sys/bis_factory.cpp index 285277ef8..9ffda2e14 100644 --- a/src/core/file_sys/bis_factory.cpp +++ b/src/core/file_sys/bis_factory.cpp | |||
| @@ -86,7 +86,7 @@ VirtualFile BISFactory::OpenPartitionStorage(BisPartitionId id) const { | |||
| 86 | auto& keys = Core::Crypto::KeyManager::Instance(); | 86 | auto& keys = Core::Crypto::KeyManager::Instance(); |
| 87 | Core::Crypto::PartitionDataManager pdm{ | 87 | Core::Crypto::PartitionDataManager pdm{ |
| 88 | Core::System::GetInstance().GetFilesystem()->OpenDirectory( | 88 | Core::System::GetInstance().GetFilesystem()->OpenDirectory( |
| 89 | FileUtil::GetUserPath(FileUtil::UserPath::SysDataDir), Mode::Read)}; | 89 | Common::FS::GetUserPath(Common::FS::UserPath::SysDataDir), Mode::Read)}; |
| 90 | keys.PopulateFromPartitionData(pdm); | 90 | keys.PopulateFromPartitionData(pdm); |
| 91 | 91 | ||
| 92 | switch (id) { | 92 | switch (id) { |
diff --git a/src/core/file_sys/registered_cache.cpp b/src/core/file_sys/registered_cache.cpp index f831487dd..e42b677f7 100644 --- a/src/core/file_sys/registered_cache.cpp +++ b/src/core/file_sys/registered_cache.cpp | |||
| @@ -728,7 +728,7 @@ InstallResult RegisteredCache::RawInstallNCA(const NCA& nca, const VfsCopyFuncti | |||
| 728 | LOG_WARNING(Loader, "Overwriting existing NCA..."); | 728 | LOG_WARNING(Loader, "Overwriting existing NCA..."); |
| 729 | VirtualDir c_dir; | 729 | VirtualDir c_dir; |
| 730 | { c_dir = dir->GetFileRelative(path)->GetContainingDirectory(); } | 730 | { c_dir = dir->GetFileRelative(path)->GetContainingDirectory(); } |
| 731 | c_dir->DeleteFile(FileUtil::GetFilename(path)); | 731 | c_dir->DeleteFile(Common::FS::GetFilename(path)); |
| 732 | } | 732 | } |
| 733 | 733 | ||
| 734 | auto out = dir->CreateFileRelative(path); | 734 | auto out = dir->CreateFileRelative(path); |
diff --git a/src/core/file_sys/vfs.cpp b/src/core/file_sys/vfs.cpp index e33327ef0..a4c3f67c4 100644 --- a/src/core/file_sys/vfs.cpp +++ b/src/core/file_sys/vfs.cpp | |||
| @@ -30,7 +30,7 @@ bool VfsFilesystem::IsWritable() const { | |||
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | VfsEntryType VfsFilesystem::GetEntryType(std::string_view path_) const { | 32 | VfsEntryType VfsFilesystem::GetEntryType(std::string_view path_) const { |
| 33 | const auto path = FileUtil::SanitizePath(path_); | 33 | const auto path = Common::FS::SanitizePath(path_); |
| 34 | if (root->GetFileRelative(path) != nullptr) | 34 | if (root->GetFileRelative(path) != nullptr) |
| 35 | return VfsEntryType::File; | 35 | return VfsEntryType::File; |
| 36 | if (root->GetDirectoryRelative(path) != nullptr) | 36 | if (root->GetDirectoryRelative(path) != nullptr) |
| @@ -40,22 +40,22 @@ VfsEntryType VfsFilesystem::GetEntryType(std::string_view path_) const { | |||
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | VirtualFile VfsFilesystem::OpenFile(std::string_view path_, Mode perms) { | 42 | VirtualFile VfsFilesystem::OpenFile(std::string_view path_, Mode perms) { |
| 43 | const auto path = FileUtil::SanitizePath(path_); | 43 | const auto path = Common::FS::SanitizePath(path_); |
| 44 | return root->GetFileRelative(path); | 44 | return root->GetFileRelative(path); |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | VirtualFile VfsFilesystem::CreateFile(std::string_view path_, Mode perms) { | 47 | VirtualFile VfsFilesystem::CreateFile(std::string_view path_, Mode perms) { |
| 48 | const auto path = FileUtil::SanitizePath(path_); | 48 | const auto path = Common::FS::SanitizePath(path_); |
| 49 | return root->CreateFileRelative(path); | 49 | return root->CreateFileRelative(path); |
| 50 | } | 50 | } |
| 51 | 51 | ||
| 52 | VirtualFile VfsFilesystem::CopyFile(std::string_view old_path_, std::string_view new_path_) { | 52 | VirtualFile VfsFilesystem::CopyFile(std::string_view old_path_, std::string_view new_path_) { |
| 53 | const auto old_path = FileUtil::SanitizePath(old_path_); | 53 | const auto old_path = Common::FS::SanitizePath(old_path_); |
| 54 | const auto new_path = FileUtil::SanitizePath(new_path_); | 54 | const auto new_path = Common::FS::SanitizePath(new_path_); |
| 55 | 55 | ||
| 56 | // VfsDirectory impls are only required to implement copy across the current directory. | 56 | // VfsDirectory impls are only required to implement copy across the current directory. |
| 57 | if (FileUtil::GetParentPath(old_path) == FileUtil::GetParentPath(new_path)) { | 57 | if (Common::FS::GetParentPath(old_path) == Common::FS::GetParentPath(new_path)) { |
| 58 | if (!root->Copy(FileUtil::GetFilename(old_path), FileUtil::GetFilename(new_path))) | 58 | if (!root->Copy(Common::FS::GetFilename(old_path), Common::FS::GetFilename(new_path))) |
| 59 | return nullptr; | 59 | return nullptr; |
| 60 | return OpenFile(new_path, Mode::ReadWrite); | 60 | return OpenFile(new_path, Mode::ReadWrite); |
| 61 | } | 61 | } |
| @@ -76,8 +76,8 @@ VirtualFile VfsFilesystem::CopyFile(std::string_view old_path_, std::string_view | |||
| 76 | } | 76 | } |
| 77 | 77 | ||
| 78 | VirtualFile VfsFilesystem::MoveFile(std::string_view old_path, std::string_view new_path) { | 78 | VirtualFile VfsFilesystem::MoveFile(std::string_view old_path, std::string_view new_path) { |
| 79 | const auto sanitized_old_path = FileUtil::SanitizePath(old_path); | 79 | const auto sanitized_old_path = Common::FS::SanitizePath(old_path); |
| 80 | const auto sanitized_new_path = FileUtil::SanitizePath(new_path); | 80 | const auto sanitized_new_path = Common::FS::SanitizePath(new_path); |
| 81 | 81 | ||
| 82 | // Again, non-default impls are highly encouraged to provide a more optimized version of this. | 82 | // Again, non-default impls are highly encouraged to provide a more optimized version of this. |
| 83 | auto out = CopyFile(sanitized_old_path, sanitized_new_path); | 83 | auto out = CopyFile(sanitized_old_path, sanitized_new_path); |
| @@ -89,26 +89,26 @@ VirtualFile VfsFilesystem::MoveFile(std::string_view old_path, std::string_view | |||
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | bool VfsFilesystem::DeleteFile(std::string_view path_) { | 91 | bool VfsFilesystem::DeleteFile(std::string_view path_) { |
| 92 | const auto path = FileUtil::SanitizePath(path_); | 92 | const auto path = Common::FS::SanitizePath(path_); |
| 93 | auto parent = OpenDirectory(FileUtil::GetParentPath(path), Mode::Write); | 93 | auto parent = OpenDirectory(Common::FS::GetParentPath(path), Mode::Write); |
| 94 | if (parent == nullptr) | 94 | if (parent == nullptr) |
| 95 | return false; | 95 | return false; |
| 96 | return parent->DeleteFile(FileUtil::GetFilename(path)); | 96 | return parent->DeleteFile(Common::FS::GetFilename(path)); |
| 97 | } | 97 | } |
| 98 | 98 | ||
| 99 | VirtualDir VfsFilesystem::OpenDirectory(std::string_view path_, Mode perms) { | 99 | VirtualDir VfsFilesystem::OpenDirectory(std::string_view path_, Mode perms) { |
| 100 | const auto path = FileUtil::SanitizePath(path_); | 100 | const auto path = Common::FS::SanitizePath(path_); |
| 101 | return root->GetDirectoryRelative(path); | 101 | return root->GetDirectoryRelative(path); |
| 102 | } | 102 | } |
| 103 | 103 | ||
| 104 | VirtualDir VfsFilesystem::CreateDirectory(std::string_view path_, Mode perms) { | 104 | VirtualDir VfsFilesystem::CreateDirectory(std::string_view path_, Mode perms) { |
| 105 | const auto path = FileUtil::SanitizePath(path_); | 105 | const auto path = Common::FS::SanitizePath(path_); |
| 106 | return root->CreateDirectoryRelative(path); | 106 | return root->CreateDirectoryRelative(path); |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | VirtualDir VfsFilesystem::CopyDirectory(std::string_view old_path_, std::string_view new_path_) { | 109 | VirtualDir VfsFilesystem::CopyDirectory(std::string_view old_path_, std::string_view new_path_) { |
| 110 | const auto old_path = FileUtil::SanitizePath(old_path_); | 110 | const auto old_path = Common::FS::SanitizePath(old_path_); |
| 111 | const auto new_path = FileUtil::SanitizePath(new_path_); | 111 | const auto new_path = Common::FS::SanitizePath(new_path_); |
| 112 | 112 | ||
| 113 | // Non-default impls are highly encouraged to provide a more optimized version of this. | 113 | // Non-default impls are highly encouraged to provide a more optimized version of this. |
| 114 | auto old_dir = OpenDirectory(old_path, Mode::Read); | 114 | auto old_dir = OpenDirectory(old_path, Mode::Read); |
| @@ -139,8 +139,8 @@ VirtualDir VfsFilesystem::CopyDirectory(std::string_view old_path_, std::string_ | |||
| 139 | } | 139 | } |
| 140 | 140 | ||
| 141 | VirtualDir VfsFilesystem::MoveDirectory(std::string_view old_path, std::string_view new_path) { | 141 | VirtualDir VfsFilesystem::MoveDirectory(std::string_view old_path, std::string_view new_path) { |
| 142 | const auto sanitized_old_path = FileUtil::SanitizePath(old_path); | 142 | const auto sanitized_old_path = Common::FS::SanitizePath(old_path); |
| 143 | const auto sanitized_new_path = FileUtil::SanitizePath(new_path); | 143 | const auto sanitized_new_path = Common::FS::SanitizePath(new_path); |
| 144 | 144 | ||
| 145 | // Non-default impls are highly encouraged to provide a more optimized version of this. | 145 | // Non-default impls are highly encouraged to provide a more optimized version of this. |
| 146 | auto out = CopyDirectory(sanitized_old_path, sanitized_new_path); | 146 | auto out = CopyDirectory(sanitized_old_path, sanitized_new_path); |
| @@ -152,17 +152,17 @@ VirtualDir VfsFilesystem::MoveDirectory(std::string_view old_path, std::string_v | |||
| 152 | } | 152 | } |
| 153 | 153 | ||
| 154 | bool VfsFilesystem::DeleteDirectory(std::string_view path_) { | 154 | bool VfsFilesystem::DeleteDirectory(std::string_view path_) { |
| 155 | const auto path = FileUtil::SanitizePath(path_); | 155 | const auto path = Common::FS::SanitizePath(path_); |
| 156 | auto parent = OpenDirectory(FileUtil::GetParentPath(path), Mode::Write); | 156 | auto parent = OpenDirectory(Common::FS::GetParentPath(path), Mode::Write); |
| 157 | if (parent == nullptr) | 157 | if (parent == nullptr) |
| 158 | return false; | 158 | return false; |
| 159 | return parent->DeleteSubdirectoryRecursive(FileUtil::GetFilename(path)); | 159 | return parent->DeleteSubdirectoryRecursive(Common::FS::GetFilename(path)); |
| 160 | } | 160 | } |
| 161 | 161 | ||
| 162 | VfsFile::~VfsFile() = default; | 162 | VfsFile::~VfsFile() = default; |
| 163 | 163 | ||
| 164 | std::string VfsFile::GetExtension() const { | 164 | std::string VfsFile::GetExtension() const { |
| 165 | return std::string(FileUtil::GetExtensionFromFilename(GetName())); | 165 | return std::string(Common::FS::GetExtensionFromFilename(GetName())); |
| 166 | } | 166 | } |
| 167 | 167 | ||
| 168 | VfsDirectory::~VfsDirectory() = default; | 168 | VfsDirectory::~VfsDirectory() = default; |
| @@ -203,7 +203,7 @@ std::string VfsFile::GetFullPath() const { | |||
| 203 | } | 203 | } |
| 204 | 204 | ||
| 205 | std::shared_ptr<VfsFile> VfsDirectory::GetFileRelative(std::string_view path) const { | 205 | std::shared_ptr<VfsFile> VfsDirectory::GetFileRelative(std::string_view path) const { |
| 206 | auto vec = FileUtil::SplitPathComponents(path); | 206 | auto vec = Common::FS::SplitPathComponents(path); |
| 207 | vec.erase(std::remove_if(vec.begin(), vec.end(), [](const auto& str) { return str.empty(); }), | 207 | vec.erase(std::remove_if(vec.begin(), vec.end(), [](const auto& str) { return str.empty(); }), |
| 208 | vec.end()); | 208 | vec.end()); |
| 209 | if (vec.empty()) { | 209 | if (vec.empty()) { |
| @@ -239,7 +239,7 @@ std::shared_ptr<VfsFile> VfsDirectory::GetFileAbsolute(std::string_view path) co | |||
| 239 | } | 239 | } |
| 240 | 240 | ||
| 241 | std::shared_ptr<VfsDirectory> VfsDirectory::GetDirectoryRelative(std::string_view path) const { | 241 | std::shared_ptr<VfsDirectory> VfsDirectory::GetDirectoryRelative(std::string_view path) const { |
| 242 | auto vec = FileUtil::SplitPathComponents(path); | 242 | auto vec = Common::FS::SplitPathComponents(path); |
| 243 | vec.erase(std::remove_if(vec.begin(), vec.end(), [](const auto& str) { return str.empty(); }), | 243 | vec.erase(std::remove_if(vec.begin(), vec.end(), [](const auto& str) { return str.empty(); }), |
| 244 | vec.end()); | 244 | vec.end()); |
| 245 | if (vec.empty()) { | 245 | if (vec.empty()) { |
| @@ -301,7 +301,7 @@ std::size_t VfsDirectory::GetSize() const { | |||
| 301 | } | 301 | } |
| 302 | 302 | ||
| 303 | std::shared_ptr<VfsFile> VfsDirectory::CreateFileRelative(std::string_view path) { | 303 | std::shared_ptr<VfsFile> VfsDirectory::CreateFileRelative(std::string_view path) { |
| 304 | auto vec = FileUtil::SplitPathComponents(path); | 304 | auto vec = Common::FS::SplitPathComponents(path); |
| 305 | vec.erase(std::remove_if(vec.begin(), vec.end(), [](const auto& str) { return str.empty(); }), | 305 | vec.erase(std::remove_if(vec.begin(), vec.end(), [](const auto& str) { return str.empty(); }), |
| 306 | vec.end()); | 306 | vec.end()); |
| 307 | if (vec.empty()) { | 307 | if (vec.empty()) { |
| @@ -320,7 +320,7 @@ std::shared_ptr<VfsFile> VfsDirectory::CreateFileRelative(std::string_view path) | |||
| 320 | } | 320 | } |
| 321 | } | 321 | } |
| 322 | 322 | ||
| 323 | return dir->CreateFileRelative(FileUtil::GetPathWithoutTop(path)); | 323 | return dir->CreateFileRelative(Common::FS::GetPathWithoutTop(path)); |
| 324 | } | 324 | } |
| 325 | 325 | ||
| 326 | std::shared_ptr<VfsFile> VfsDirectory::CreateFileAbsolute(std::string_view path) { | 326 | std::shared_ptr<VfsFile> VfsDirectory::CreateFileAbsolute(std::string_view path) { |
| @@ -332,7 +332,7 @@ std::shared_ptr<VfsFile> VfsDirectory::CreateFileAbsolute(std::string_view path) | |||
| 332 | } | 332 | } |
| 333 | 333 | ||
| 334 | std::shared_ptr<VfsDirectory> VfsDirectory::CreateDirectoryRelative(std::string_view path) { | 334 | std::shared_ptr<VfsDirectory> VfsDirectory::CreateDirectoryRelative(std::string_view path) { |
| 335 | auto vec = FileUtil::SplitPathComponents(path); | 335 | auto vec = Common::FS::SplitPathComponents(path); |
| 336 | vec.erase(std::remove_if(vec.begin(), vec.end(), [](const auto& str) { return str.empty(); }), | 336 | vec.erase(std::remove_if(vec.begin(), vec.end(), [](const auto& str) { return str.empty(); }), |
| 337 | vec.end()); | 337 | vec.end()); |
| 338 | if (vec.empty()) { | 338 | if (vec.empty()) { |
| @@ -351,7 +351,7 @@ std::shared_ptr<VfsDirectory> VfsDirectory::CreateDirectoryRelative(std::string_ | |||
| 351 | } | 351 | } |
| 352 | } | 352 | } |
| 353 | 353 | ||
| 354 | return dir->CreateDirectoryRelative(FileUtil::GetPathWithoutTop(path)); | 354 | return dir->CreateDirectoryRelative(Common::FS::GetPathWithoutTop(path)); |
| 355 | } | 355 | } |
| 356 | 356 | ||
| 357 | std::shared_ptr<VfsDirectory> VfsDirectory::CreateDirectoryAbsolute(std::string_view path) { | 357 | std::shared_ptr<VfsDirectory> VfsDirectory::CreateDirectoryAbsolute(std::string_view path) { |
diff --git a/src/core/file_sys/vfs_libzip.cpp b/src/core/file_sys/vfs_libzip.cpp index d69952940..429d7bc8b 100644 --- a/src/core/file_sys/vfs_libzip.cpp +++ b/src/core/file_sys/vfs_libzip.cpp | |||
| @@ -49,7 +49,7 @@ VirtualDir ExtractZIP(VirtualFile file) { | |||
| 49 | if (zip_fread(file2.get(), buf.data(), buf.size()) != s64(buf.size())) | 49 | if (zip_fread(file2.get(), buf.data(), buf.size()) != s64(buf.size())) |
| 50 | return nullptr; | 50 | return nullptr; |
| 51 | 51 | ||
| 52 | const auto parts = FileUtil::SplitPathComponents(stat.name); | 52 | const auto parts = Common::FS::SplitPathComponents(stat.name); |
| 53 | const auto new_file = std::make_shared<VectorVfsFile>(buf, parts.back()); | 53 | const auto new_file = std::make_shared<VectorVfsFile>(buf, parts.back()); |
| 54 | 54 | ||
| 55 | std::shared_ptr<VectorVfsDirectory> dtrv = out; | 55 | std::shared_ptr<VectorVfsDirectory> dtrv = out; |
diff --git a/src/core/file_sys/vfs_real.cpp b/src/core/file_sys/vfs_real.cpp index 0db0091f6..1dbf632c1 100644 --- a/src/core/file_sys/vfs_real.cpp +++ b/src/core/file_sys/vfs_real.cpp | |||
| @@ -14,6 +14,8 @@ | |||
| 14 | 14 | ||
| 15 | namespace FileSys { | 15 | namespace FileSys { |
| 16 | 16 | ||
| 17 | namespace FS = Common::FS; | ||
| 18 | |||
| 17 | static std::string ModeFlagsToString(Mode mode) { | 19 | static std::string ModeFlagsToString(Mode mode) { |
| 18 | std::string mode_str; | 20 | std::string mode_str; |
| 19 | 21 | ||
| @@ -57,17 +59,19 @@ bool RealVfsFilesystem::IsWritable() const { | |||
| 57 | } | 59 | } |
| 58 | 60 | ||
| 59 | VfsEntryType RealVfsFilesystem::GetEntryType(std::string_view path_) const { | 61 | VfsEntryType RealVfsFilesystem::GetEntryType(std::string_view path_) const { |
| 60 | const auto path = FileUtil::SanitizePath(path_, FileUtil::DirectorySeparator::PlatformDefault); | 62 | const auto path = FS::SanitizePath(path_, FS::DirectorySeparator::PlatformDefault); |
| 61 | if (!FileUtil::Exists(path)) | 63 | if (!FS::Exists(path)) { |
| 62 | return VfsEntryType::None; | 64 | return VfsEntryType::None; |
| 63 | if (FileUtil::IsDirectory(path)) | 65 | } |
| 66 | if (FS::IsDirectory(path)) { | ||
| 64 | return VfsEntryType::Directory; | 67 | return VfsEntryType::Directory; |
| 68 | } | ||
| 65 | 69 | ||
| 66 | return VfsEntryType::File; | 70 | return VfsEntryType::File; |
| 67 | } | 71 | } |
| 68 | 72 | ||
| 69 | VirtualFile RealVfsFilesystem::OpenFile(std::string_view path_, Mode perms) { | 73 | VirtualFile RealVfsFilesystem::OpenFile(std::string_view path_, Mode perms) { |
| 70 | const auto path = FileUtil::SanitizePath(path_, FileUtil::DirectorySeparator::PlatformDefault); | 74 | const auto path = FS::SanitizePath(path_, FS::DirectorySeparator::PlatformDefault); |
| 71 | if (cache.find(path) != cache.end()) { | 75 | if (cache.find(path) != cache.end()) { |
| 72 | auto weak = cache[path]; | 76 | auto weak = cache[path]; |
| 73 | if (!weak.expired()) { | 77 | if (!weak.expired()) { |
| @@ -75,11 +79,11 @@ VirtualFile RealVfsFilesystem::OpenFile(std::string_view path_, Mode perms) { | |||
| 75 | } | 79 | } |
| 76 | } | 80 | } |
| 77 | 81 | ||
| 78 | if (!FileUtil::Exists(path) && True(perms & Mode::WriteAppend)) { | 82 | if (!FS::Exists(path) && True(perms & Mode::WriteAppend)) { |
| 79 | FileUtil::CreateEmptyFile(path); | 83 | FS::CreateEmptyFile(path); |
| 80 | } | 84 | } |
| 81 | 85 | ||
| 82 | auto backing = std::make_shared<FileUtil::IOFile>(path, ModeFlagsToString(perms).c_str()); | 86 | auto backing = std::make_shared<FS::IOFile>(path, ModeFlagsToString(perms).c_str()); |
| 83 | cache[path] = backing; | 87 | cache[path] = backing; |
| 84 | 88 | ||
| 85 | // Cannot use make_shared as RealVfsFile constructor is private | 89 | // Cannot use make_shared as RealVfsFile constructor is private |
| @@ -87,33 +91,31 @@ VirtualFile RealVfsFilesystem::OpenFile(std::string_view path_, Mode perms) { | |||
| 87 | } | 91 | } |
| 88 | 92 | ||
| 89 | VirtualFile RealVfsFilesystem::CreateFile(std::string_view path_, Mode perms) { | 93 | VirtualFile RealVfsFilesystem::CreateFile(std::string_view path_, Mode perms) { |
| 90 | const auto path = FileUtil::SanitizePath(path_, FileUtil::DirectorySeparator::PlatformDefault); | 94 | const auto path = FS::SanitizePath(path_, FS::DirectorySeparator::PlatformDefault); |
| 91 | const auto path_fwd = FileUtil::SanitizePath(path, FileUtil::DirectorySeparator::ForwardSlash); | 95 | const auto path_fwd = FS::SanitizePath(path, FS::DirectorySeparator::ForwardSlash); |
| 92 | if (!FileUtil::Exists(path)) { | 96 | if (!FS::Exists(path)) { |
| 93 | FileUtil::CreateFullPath(path_fwd); | 97 | FS::CreateFullPath(path_fwd); |
| 94 | if (!FileUtil::CreateEmptyFile(path)) | 98 | if (!FS::CreateEmptyFile(path)) { |
| 95 | return nullptr; | 99 | return nullptr; |
| 100 | } | ||
| 96 | } | 101 | } |
| 97 | return OpenFile(path, perms); | 102 | return OpenFile(path, perms); |
| 98 | } | 103 | } |
| 99 | 104 | ||
| 100 | VirtualFile RealVfsFilesystem::CopyFile(std::string_view old_path_, std::string_view new_path_) { | 105 | VirtualFile RealVfsFilesystem::CopyFile(std::string_view old_path_, std::string_view new_path_) { |
| 101 | const auto old_path = | 106 | const auto old_path = FS::SanitizePath(old_path_, FS::DirectorySeparator::PlatformDefault); |
| 102 | FileUtil::SanitizePath(old_path_, FileUtil::DirectorySeparator::PlatformDefault); | 107 | const auto new_path = FS::SanitizePath(new_path_, FS::DirectorySeparator::PlatformDefault); |
| 103 | const auto new_path = | ||
| 104 | FileUtil::SanitizePath(new_path_, FileUtil::DirectorySeparator::PlatformDefault); | ||
| 105 | 108 | ||
| 106 | if (!FileUtil::Exists(old_path) || FileUtil::Exists(new_path) || | 109 | if (!FS::Exists(old_path) || FS::Exists(new_path) || FS::IsDirectory(old_path) || |
| 107 | FileUtil::IsDirectory(old_path) || !FileUtil::Copy(old_path, new_path)) | 110 | !FS::Copy(old_path, new_path)) { |
| 108 | return nullptr; | 111 | return nullptr; |
| 112 | } | ||
| 109 | return OpenFile(new_path, Mode::ReadWrite); | 113 | return OpenFile(new_path, Mode::ReadWrite); |
| 110 | } | 114 | } |
| 111 | 115 | ||
| 112 | VirtualFile RealVfsFilesystem::MoveFile(std::string_view old_path_, std::string_view new_path_) { | 116 | VirtualFile RealVfsFilesystem::MoveFile(std::string_view old_path_, std::string_view new_path_) { |
| 113 | const auto old_path = | 117 | const auto old_path = FS::SanitizePath(old_path_, FS::DirectorySeparator::PlatformDefault); |
| 114 | FileUtil::SanitizePath(old_path_, FileUtil::DirectorySeparator::PlatformDefault); | 118 | const auto new_path = FS::SanitizePath(new_path_, FS::DirectorySeparator::PlatformDefault); |
| 115 | const auto new_path = | ||
| 116 | FileUtil::SanitizePath(new_path_, FileUtil::DirectorySeparator::PlatformDefault); | ||
| 117 | 119 | ||
| 118 | if (cache.find(old_path) != cache.end()) { | 120 | if (cache.find(old_path) != cache.end()) { |
| 119 | auto file = cache[old_path].lock(); | 121 | auto file = cache[old_path].lock(); |
| @@ -122,8 +124,8 @@ VirtualFile RealVfsFilesystem::MoveFile(std::string_view old_path_, std::string_ | |||
| 122 | file->Close(); | 124 | file->Close(); |
| 123 | } | 125 | } |
| 124 | 126 | ||
| 125 | if (!FileUtil::Exists(old_path) || FileUtil::Exists(new_path) || | 127 | if (!FS::Exists(old_path) || FS::Exists(new_path) || FS::IsDirectory(old_path) || |
| 126 | FileUtil::IsDirectory(old_path) || !FileUtil::Rename(old_path, new_path)) { | 128 | !FS::Rename(old_path, new_path)) { |
| 127 | return nullptr; | 129 | return nullptr; |
| 128 | } | 130 | } |
| 129 | 131 | ||
| @@ -139,28 +141,30 @@ VirtualFile RealVfsFilesystem::MoveFile(std::string_view old_path_, std::string_ | |||
| 139 | } | 141 | } |
| 140 | 142 | ||
| 141 | bool RealVfsFilesystem::DeleteFile(std::string_view path_) { | 143 | bool RealVfsFilesystem::DeleteFile(std::string_view path_) { |
| 142 | const auto path = FileUtil::SanitizePath(path_, FileUtil::DirectorySeparator::PlatformDefault); | 144 | const auto path = FS::SanitizePath(path_, FS::DirectorySeparator::PlatformDefault); |
| 143 | if (cache.find(path) != cache.end()) { | 145 | if (cache.find(path) != cache.end()) { |
| 144 | if (!cache[path].expired()) | 146 | if (!cache[path].expired()) { |
| 145 | cache[path].lock()->Close(); | 147 | cache[path].lock()->Close(); |
| 148 | } | ||
| 146 | cache.erase(path); | 149 | cache.erase(path); |
| 147 | } | 150 | } |
| 148 | return FileUtil::Delete(path); | 151 | return FS::Delete(path); |
| 149 | } | 152 | } |
| 150 | 153 | ||
| 151 | VirtualDir RealVfsFilesystem::OpenDirectory(std::string_view path_, Mode perms) { | 154 | VirtualDir RealVfsFilesystem::OpenDirectory(std::string_view path_, Mode perms) { |
| 152 | const auto path = FileUtil::SanitizePath(path_, FileUtil::DirectorySeparator::PlatformDefault); | 155 | const auto path = FS::SanitizePath(path_, FS::DirectorySeparator::PlatformDefault); |
| 153 | // Cannot use make_shared as RealVfsDirectory constructor is private | 156 | // Cannot use make_shared as RealVfsDirectory constructor is private |
| 154 | return std::shared_ptr<RealVfsDirectory>(new RealVfsDirectory(*this, path, perms)); | 157 | return std::shared_ptr<RealVfsDirectory>(new RealVfsDirectory(*this, path, perms)); |
| 155 | } | 158 | } |
| 156 | 159 | ||
| 157 | VirtualDir RealVfsFilesystem::CreateDirectory(std::string_view path_, Mode perms) { | 160 | VirtualDir RealVfsFilesystem::CreateDirectory(std::string_view path_, Mode perms) { |
| 158 | const auto path = FileUtil::SanitizePath(path_, FileUtil::DirectorySeparator::PlatformDefault); | 161 | const auto path = FS::SanitizePath(path_, FS::DirectorySeparator::PlatformDefault); |
| 159 | const auto path_fwd = FileUtil::SanitizePath(path, FileUtil::DirectorySeparator::ForwardSlash); | 162 | const auto path_fwd = FS::SanitizePath(path, FS::DirectorySeparator::ForwardSlash); |
| 160 | if (!FileUtil::Exists(path)) { | 163 | if (!FS::Exists(path)) { |
| 161 | FileUtil::CreateFullPath(path_fwd); | 164 | FS::CreateFullPath(path_fwd); |
| 162 | if (!FileUtil::CreateDir(path)) | 165 | if (!FS::CreateDir(path)) { |
| 163 | return nullptr; | 166 | return nullptr; |
| 167 | } | ||
| 164 | } | 168 | } |
| 165 | // Cannot use make_shared as RealVfsDirectory constructor is private | 169 | // Cannot use make_shared as RealVfsDirectory constructor is private |
| 166 | return std::shared_ptr<RealVfsDirectory>(new RealVfsDirectory(*this, path, perms)); | 170 | return std::shared_ptr<RealVfsDirectory>(new RealVfsDirectory(*this, path, perms)); |
| @@ -168,35 +172,33 @@ VirtualDir RealVfsFilesystem::CreateDirectory(std::string_view path_, Mode perms | |||
| 168 | 172 | ||
| 169 | VirtualDir RealVfsFilesystem::CopyDirectory(std::string_view old_path_, | 173 | VirtualDir RealVfsFilesystem::CopyDirectory(std::string_view old_path_, |
| 170 | std::string_view new_path_) { | 174 | std::string_view new_path_) { |
| 171 | const auto old_path = | 175 | const auto old_path = FS::SanitizePath(old_path_, FS::DirectorySeparator::PlatformDefault); |
| 172 | FileUtil::SanitizePath(old_path_, FileUtil::DirectorySeparator::PlatformDefault); | 176 | const auto new_path = FS::SanitizePath(new_path_, FS::DirectorySeparator::PlatformDefault); |
| 173 | const auto new_path = | 177 | if (!FS::Exists(old_path) || FS::Exists(new_path) || !FS::IsDirectory(old_path)) { |
| 174 | FileUtil::SanitizePath(new_path_, FileUtil::DirectorySeparator::PlatformDefault); | ||
| 175 | if (!FileUtil::Exists(old_path) || FileUtil::Exists(new_path) || | ||
| 176 | !FileUtil::IsDirectory(old_path)) | ||
| 177 | return nullptr; | 178 | return nullptr; |
| 178 | FileUtil::CopyDir(old_path, new_path); | 179 | } |
| 180 | FS::CopyDir(old_path, new_path); | ||
| 179 | return OpenDirectory(new_path, Mode::ReadWrite); | 181 | return OpenDirectory(new_path, Mode::ReadWrite); |
| 180 | } | 182 | } |
| 181 | 183 | ||
| 182 | VirtualDir RealVfsFilesystem::MoveDirectory(std::string_view old_path_, | 184 | VirtualDir RealVfsFilesystem::MoveDirectory(std::string_view old_path_, |
| 183 | std::string_view new_path_) { | 185 | std::string_view new_path_) { |
| 184 | const auto old_path = | 186 | const auto old_path = FS::SanitizePath(old_path_, FS::DirectorySeparator::PlatformDefault); |
| 185 | FileUtil::SanitizePath(old_path_, FileUtil::DirectorySeparator::PlatformDefault); | 187 | const auto new_path = FS::SanitizePath(new_path_, FS::DirectorySeparator::PlatformDefault); |
| 186 | const auto new_path = | 188 | |
| 187 | FileUtil::SanitizePath(new_path_, FileUtil::DirectorySeparator::PlatformDefault); | 189 | if (!FS::Exists(old_path) || FS::Exists(new_path) || FS::IsDirectory(old_path) || |
| 188 | if (!FileUtil::Exists(old_path) || FileUtil::Exists(new_path) || | 190 | !FS::Rename(old_path, new_path)) { |
| 189 | FileUtil::IsDirectory(old_path) || !FileUtil::Rename(old_path, new_path)) | ||
| 190 | return nullptr; | 191 | return nullptr; |
| 192 | } | ||
| 191 | 193 | ||
| 192 | for (auto& kv : cache) { | 194 | for (auto& kv : cache) { |
| 193 | // Path in cache starts with old_path | 195 | // Path in cache starts with old_path |
| 194 | if (kv.first.rfind(old_path, 0) == 0) { | 196 | if (kv.first.rfind(old_path, 0) == 0) { |
| 195 | const auto file_old_path = | 197 | const auto file_old_path = |
| 196 | FileUtil::SanitizePath(kv.first, FileUtil::DirectorySeparator::PlatformDefault); | 198 | FS::SanitizePath(kv.first, FS::DirectorySeparator::PlatformDefault); |
| 197 | const auto file_new_path = | 199 | const auto file_new_path = |
| 198 | FileUtil::SanitizePath(new_path + DIR_SEP + kv.first.substr(old_path.size()), | 200 | FS::SanitizePath(new_path + DIR_SEP + kv.first.substr(old_path.size()), |
| 199 | FileUtil::DirectorySeparator::PlatformDefault); | 201 | FS::DirectorySeparator::PlatformDefault); |
| 200 | auto cached = cache[file_old_path]; | 202 | auto cached = cache[file_old_path]; |
| 201 | if (!cached.expired()) { | 203 | if (!cached.expired()) { |
| 202 | auto file = cached.lock(); | 204 | auto file = cached.lock(); |
| @@ -211,24 +213,24 @@ VirtualDir RealVfsFilesystem::MoveDirectory(std::string_view old_path_, | |||
| 211 | } | 213 | } |
| 212 | 214 | ||
| 213 | bool RealVfsFilesystem::DeleteDirectory(std::string_view path_) { | 215 | bool RealVfsFilesystem::DeleteDirectory(std::string_view path_) { |
| 214 | const auto path = FileUtil::SanitizePath(path_, FileUtil::DirectorySeparator::PlatformDefault); | 216 | const auto path = FS::SanitizePath(path_, FS::DirectorySeparator::PlatformDefault); |
| 215 | for (auto& kv : cache) { | 217 | for (auto& kv : cache) { |
| 216 | // Path in cache starts with old_path | 218 | // Path in cache starts with old_path |
| 217 | if (kv.first.rfind(path, 0) == 0) { | 219 | if (kv.first.rfind(path, 0) == 0) { |
| 218 | if (!cache[kv.first].expired()) | 220 | if (!cache[kv.first].expired()) { |
| 219 | cache[kv.first].lock()->Close(); | 221 | cache[kv.first].lock()->Close(); |
| 222 | } | ||
| 220 | cache.erase(kv.first); | 223 | cache.erase(kv.first); |
| 221 | } | 224 | } |
| 222 | } | 225 | } |
| 223 | return FileUtil::DeleteDirRecursively(path); | 226 | return FS::DeleteDirRecursively(path); |
| 224 | } | 227 | } |
| 225 | 228 | ||
| 226 | RealVfsFile::RealVfsFile(RealVfsFilesystem& base_, std::shared_ptr<FileUtil::IOFile> backing_, | 229 | RealVfsFile::RealVfsFile(RealVfsFilesystem& base_, std::shared_ptr<FS::IOFile> backing_, |
| 227 | const std::string& path_, Mode perms_) | 230 | const std::string& path_, Mode perms_) |
| 228 | : base(base_), backing(std::move(backing_)), path(path_), | 231 | : base(base_), backing(std::move(backing_)), path(path_), parent_path(FS::GetParentPath(path_)), |
| 229 | parent_path(FileUtil::GetParentPath(path_)), | 232 | path_components(FS::SplitPathComponents(path_)), |
| 230 | path_components(FileUtil::SplitPathComponents(path_)), | 233 | parent_components(FS::SliceVector(path_components, 0, path_components.size() - 1)), |
| 231 | parent_components(FileUtil::SliceVector(path_components, 0, path_components.size() - 1)), | ||
| 232 | perms(perms_) {} | 234 | perms(perms_) {} |
| 233 | 235 | ||
| 234 | RealVfsFile::~RealVfsFile() = default; | 236 | RealVfsFile::~RealVfsFile() = default; |
| @@ -258,14 +260,16 @@ bool RealVfsFile::IsReadable() const { | |||
| 258 | } | 260 | } |
| 259 | 261 | ||
| 260 | std::size_t RealVfsFile::Read(u8* data, std::size_t length, std::size_t offset) const { | 262 | std::size_t RealVfsFile::Read(u8* data, std::size_t length, std::size_t offset) const { |
| 261 | if (!backing->Seek(offset, SEEK_SET)) | 263 | if (!backing->Seek(offset, SEEK_SET)) { |
| 262 | return 0; | 264 | return 0; |
| 265 | } | ||
| 263 | return backing->ReadBytes(data, length); | 266 | return backing->ReadBytes(data, length); |
| 264 | } | 267 | } |
| 265 | 268 | ||
| 266 | std::size_t RealVfsFile::Write(const u8* data, std::size_t length, std::size_t offset) { | 269 | std::size_t RealVfsFile::Write(const u8* data, std::size_t length, std::size_t offset) { |
| 267 | if (!backing->Seek(offset, SEEK_SET)) | 270 | if (!backing->Seek(offset, SEEK_SET)) { |
| 268 | return 0; | 271 | return 0; |
| 272 | } | ||
| 269 | return backing->WriteBytes(data, length); | 273 | return backing->WriteBytes(data, length); |
| 270 | } | 274 | } |
| 271 | 275 | ||
| @@ -282,16 +286,18 @@ bool RealVfsFile::Close() { | |||
| 282 | 286 | ||
| 283 | template <> | 287 | template <> |
| 284 | std::vector<VirtualFile> RealVfsDirectory::IterateEntries<RealVfsFile, VfsFile>() const { | 288 | std::vector<VirtualFile> RealVfsDirectory::IterateEntries<RealVfsFile, VfsFile>() const { |
| 285 | if (perms == Mode::Append) | 289 | if (perms == Mode::Append) { |
| 286 | return {}; | 290 | return {}; |
| 291 | } | ||
| 287 | 292 | ||
| 288 | std::vector<VirtualFile> out; | 293 | std::vector<VirtualFile> out; |
| 289 | FileUtil::ForeachDirectoryEntry( | 294 | FS::ForeachDirectoryEntry( |
| 290 | nullptr, path, | 295 | nullptr, path, |
| 291 | [&out, this](u64* entries_out, const std::string& directory, const std::string& filename) { | 296 | [&out, this](u64* entries_out, const std::string& directory, const std::string& filename) { |
| 292 | const std::string full_path = directory + DIR_SEP + filename; | 297 | const std::string full_path = directory + DIR_SEP + filename; |
| 293 | if (!FileUtil::IsDirectory(full_path)) | 298 | if (!FS::IsDirectory(full_path)) { |
| 294 | out.emplace_back(base.OpenFile(full_path, perms)); | 299 | out.emplace_back(base.OpenFile(full_path, perms)); |
| 300 | } | ||
| 295 | return true; | 301 | return true; |
| 296 | }); | 302 | }); |
| 297 | 303 | ||
| @@ -300,16 +306,18 @@ std::vector<VirtualFile> RealVfsDirectory::IterateEntries<RealVfsFile, VfsFile>( | |||
| 300 | 306 | ||
| 301 | template <> | 307 | template <> |
| 302 | std::vector<VirtualDir> RealVfsDirectory::IterateEntries<RealVfsDirectory, VfsDirectory>() const { | 308 | std::vector<VirtualDir> RealVfsDirectory::IterateEntries<RealVfsDirectory, VfsDirectory>() const { |
| 303 | if (perms == Mode::Append) | 309 | if (perms == Mode::Append) { |
| 304 | return {}; | 310 | return {}; |
| 311 | } | ||
| 305 | 312 | ||
| 306 | std::vector<VirtualDir> out; | 313 | std::vector<VirtualDir> out; |
| 307 | FileUtil::ForeachDirectoryEntry( | 314 | FS::ForeachDirectoryEntry( |
| 308 | nullptr, path, | 315 | nullptr, path, |
| 309 | [&out, this](u64* entries_out, const std::string& directory, const std::string& filename) { | 316 | [&out, this](u64* entries_out, const std::string& directory, const std::string& filename) { |
| 310 | const std::string full_path = directory + DIR_SEP + filename; | 317 | const std::string full_path = directory + DIR_SEP + filename; |
| 311 | if (FileUtil::IsDirectory(full_path)) | 318 | if (FS::IsDirectory(full_path)) { |
| 312 | out.emplace_back(base.OpenDirectory(full_path, perms)); | 319 | out.emplace_back(base.OpenDirectory(full_path, perms)); |
| 320 | } | ||
| 313 | return true; | 321 | return true; |
| 314 | }); | 322 | }); |
| 315 | 323 | ||
| @@ -317,29 +325,30 @@ std::vector<VirtualDir> RealVfsDirectory::IterateEntries<RealVfsDirectory, VfsDi | |||
| 317 | } | 325 | } |
| 318 | 326 | ||
| 319 | RealVfsDirectory::RealVfsDirectory(RealVfsFilesystem& base_, const std::string& path_, Mode perms_) | 327 | RealVfsDirectory::RealVfsDirectory(RealVfsFilesystem& base_, const std::string& path_, Mode perms_) |
| 320 | : base(base_), path(FileUtil::RemoveTrailingSlash(path_)), | 328 | : base(base_), path(FS::RemoveTrailingSlash(path_)), parent_path(FS::GetParentPath(path)), |
| 321 | parent_path(FileUtil::GetParentPath(path)), | 329 | path_components(FS::SplitPathComponents(path)), |
| 322 | path_components(FileUtil::SplitPathComponents(path)), | 330 | parent_components(FS::SliceVector(path_components, 0, path_components.size() - 1)), |
| 323 | parent_components(FileUtil::SliceVector(path_components, 0, path_components.size() - 1)), | ||
| 324 | perms(perms_) { | 331 | perms(perms_) { |
| 325 | if (!FileUtil::Exists(path) && True(perms & Mode::WriteAppend)) { | 332 | if (!FS::Exists(path) && True(perms & Mode::WriteAppend)) { |
| 326 | FileUtil::CreateDir(path); | 333 | FS::CreateDir(path); |
| 327 | } | 334 | } |
| 328 | } | 335 | } |
| 329 | 336 | ||
| 330 | RealVfsDirectory::~RealVfsDirectory() = default; | 337 | RealVfsDirectory::~RealVfsDirectory() = default; |
| 331 | 338 | ||
| 332 | std::shared_ptr<VfsFile> RealVfsDirectory::GetFileRelative(std::string_view path) const { | 339 | std::shared_ptr<VfsFile> RealVfsDirectory::GetFileRelative(std::string_view path) const { |
| 333 | const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(path)); | 340 | const auto full_path = FS::SanitizePath(this->path + DIR_SEP + std::string(path)); |
| 334 | if (!FileUtil::Exists(full_path) || FileUtil::IsDirectory(full_path)) | 341 | if (!FS::Exists(full_path) || FS::IsDirectory(full_path)) { |
| 335 | return nullptr; | 342 | return nullptr; |
| 343 | } | ||
| 336 | return base.OpenFile(full_path, perms); | 344 | return base.OpenFile(full_path, perms); |
| 337 | } | 345 | } |
| 338 | 346 | ||
| 339 | std::shared_ptr<VfsDirectory> RealVfsDirectory::GetDirectoryRelative(std::string_view path) const { | 347 | std::shared_ptr<VfsDirectory> RealVfsDirectory::GetDirectoryRelative(std::string_view path) const { |
| 340 | const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(path)); | 348 | const auto full_path = FS::SanitizePath(this->path + DIR_SEP + std::string(path)); |
| 341 | if (!FileUtil::Exists(full_path) || !FileUtil::IsDirectory(full_path)) | 349 | if (!FS::Exists(full_path) || !FS::IsDirectory(full_path)) { |
| 342 | return nullptr; | 350 | return nullptr; |
| 351 | } | ||
| 343 | return base.OpenDirectory(full_path, perms); | 352 | return base.OpenDirectory(full_path, perms); |
| 344 | } | 353 | } |
| 345 | 354 | ||
| @@ -352,17 +361,17 @@ std::shared_ptr<VfsDirectory> RealVfsDirectory::GetSubdirectory(std::string_view | |||
| 352 | } | 361 | } |
| 353 | 362 | ||
| 354 | std::shared_ptr<VfsFile> RealVfsDirectory::CreateFileRelative(std::string_view path) { | 363 | std::shared_ptr<VfsFile> RealVfsDirectory::CreateFileRelative(std::string_view path) { |
| 355 | const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(path)); | 364 | const auto full_path = FS::SanitizePath(this->path + DIR_SEP + std::string(path)); |
| 356 | return base.CreateFile(full_path, perms); | 365 | return base.CreateFile(full_path, perms); |
| 357 | } | 366 | } |
| 358 | 367 | ||
| 359 | std::shared_ptr<VfsDirectory> RealVfsDirectory::CreateDirectoryRelative(std::string_view path) { | 368 | std::shared_ptr<VfsDirectory> RealVfsDirectory::CreateDirectoryRelative(std::string_view path) { |
| 360 | const auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(path)); | 369 | const auto full_path = FS::SanitizePath(this->path + DIR_SEP + std::string(path)); |
| 361 | return base.CreateDirectory(full_path, perms); | 370 | return base.CreateDirectory(full_path, perms); |
| 362 | } | 371 | } |
| 363 | 372 | ||
| 364 | bool RealVfsDirectory::DeleteSubdirectoryRecursive(std::string_view name) { | 373 | bool RealVfsDirectory::DeleteSubdirectoryRecursive(std::string_view name) { |
| 365 | auto full_path = FileUtil::SanitizePath(this->path + DIR_SEP + std::string(name)); | 374 | const auto full_path = FS::SanitizePath(this->path + DIR_SEP + std::string(name)); |
| 366 | return base.DeleteDirectory(full_path); | 375 | return base.DeleteDirectory(full_path); |
| 367 | } | 376 | } |
| 368 | 377 | ||
| @@ -387,8 +396,9 @@ std::string RealVfsDirectory::GetName() const { | |||
| 387 | } | 396 | } |
| 388 | 397 | ||
| 389 | std::shared_ptr<VfsDirectory> RealVfsDirectory::GetParentDirectory() const { | 398 | std::shared_ptr<VfsDirectory> RealVfsDirectory::GetParentDirectory() const { |
| 390 | if (path_components.size() <= 1) | 399 | if (path_components.size() <= 1) { |
| 391 | return nullptr; | 400 | return nullptr; |
| 401 | } | ||
| 392 | 402 | ||
| 393 | return base.OpenDirectory(parent_path, perms); | 403 | return base.OpenDirectory(parent_path, perms); |
| 394 | } | 404 | } |
| @@ -425,16 +435,17 @@ std::string RealVfsDirectory::GetFullPath() const { | |||
| 425 | } | 435 | } |
| 426 | 436 | ||
| 427 | std::map<std::string, VfsEntryType, std::less<>> RealVfsDirectory::GetEntries() const { | 437 | std::map<std::string, VfsEntryType, std::less<>> RealVfsDirectory::GetEntries() const { |
| 428 | if (perms == Mode::Append) | 438 | if (perms == Mode::Append) { |
| 429 | return {}; | 439 | return {}; |
| 440 | } | ||
| 430 | 441 | ||
| 431 | std::map<std::string, VfsEntryType, std::less<>> out; | 442 | std::map<std::string, VfsEntryType, std::less<>> out; |
| 432 | FileUtil::ForeachDirectoryEntry( | 443 | FS::ForeachDirectoryEntry( |
| 433 | nullptr, path, | 444 | nullptr, path, |
| 434 | [&out](u64* entries_out, const std::string& directory, const std::string& filename) { | 445 | [&out](u64* entries_out, const std::string& directory, const std::string& filename) { |
| 435 | const std::string full_path = directory + DIR_SEP + filename; | 446 | const std::string full_path = directory + DIR_SEP + filename; |
| 436 | out.emplace(filename, FileUtil::IsDirectory(full_path) ? VfsEntryType::Directory | 447 | out.emplace(filename, |
| 437 | : VfsEntryType::File); | 448 | FS::IsDirectory(full_path) ? VfsEntryType::Directory : VfsEntryType::File); |
| 438 | return true; | 449 | return true; |
| 439 | }); | 450 | }); |
| 440 | 451 | ||
diff --git a/src/core/file_sys/vfs_real.h b/src/core/file_sys/vfs_real.h index a0a857a31..0b537b22c 100644 --- a/src/core/file_sys/vfs_real.h +++ b/src/core/file_sys/vfs_real.h | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | #include "core/file_sys/mode.h" | 9 | #include "core/file_sys/mode.h" |
| 10 | #include "core/file_sys/vfs.h" | 10 | #include "core/file_sys/vfs.h" |
| 11 | 11 | ||
| 12 | namespace FileUtil { | 12 | namespace Common::FS { |
| 13 | class IOFile; | 13 | class IOFile; |
| 14 | } | 14 | } |
| 15 | 15 | ||
| @@ -36,7 +36,7 @@ public: | |||
| 36 | bool DeleteDirectory(std::string_view path) override; | 36 | bool DeleteDirectory(std::string_view path) override; |
| 37 | 37 | ||
| 38 | private: | 38 | private: |
| 39 | boost::container::flat_map<std::string, std::weak_ptr<FileUtil::IOFile>> cache; | 39 | boost::container::flat_map<std::string, std::weak_ptr<Common::FS::IOFile>> cache; |
| 40 | }; | 40 | }; |
| 41 | 41 | ||
| 42 | // An implmentation of VfsFile that represents a file on the user's computer. | 42 | // An implmentation of VfsFile that represents a file on the user's computer. |
| @@ -58,13 +58,13 @@ public: | |||
| 58 | bool Rename(std::string_view name) override; | 58 | bool Rename(std::string_view name) override; |
| 59 | 59 | ||
| 60 | private: | 60 | private: |
| 61 | RealVfsFile(RealVfsFilesystem& base, std::shared_ptr<FileUtil::IOFile> backing, | 61 | RealVfsFile(RealVfsFilesystem& base, std::shared_ptr<Common::FS::IOFile> backing, |
| 62 | const std::string& path, Mode perms = Mode::Read); | 62 | const std::string& path, Mode perms = Mode::Read); |
| 63 | 63 | ||
| 64 | bool Close(); | 64 | bool Close(); |
| 65 | 65 | ||
| 66 | RealVfsFilesystem& base; | 66 | RealVfsFilesystem& base; |
| 67 | std::shared_ptr<FileUtil::IOFile> backing; | 67 | std::shared_ptr<Common::FS::IOFile> backing; |
| 68 | std::string path; | 68 | std::string path; |
| 69 | std::string parent_path; | 69 | std::string parent_path; |
| 70 | std::vector<std::string> path_components; | 70 | std::vector<std::string> path_components; |
diff --git a/src/core/file_sys/xts_archive.cpp b/src/core/file_sys/xts_archive.cpp index 81413c684..ccf5966d0 100644 --- a/src/core/file_sys/xts_archive.cpp +++ b/src/core/file_sys/xts_archive.cpp | |||
| @@ -44,7 +44,7 @@ static bool CalculateHMAC256(Destination* out, const SourceKey* key, std::size_t | |||
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | NAX::NAX(VirtualFile file_) : header(std::make_unique<NAXHeader>()), file(std::move(file_)) { | 46 | NAX::NAX(VirtualFile file_) : header(std::make_unique<NAXHeader>()), file(std::move(file_)) { |
| 47 | std::string path = FileUtil::SanitizePath(file->GetFullPath()); | 47 | std::string path = Common::FS::SanitizePath(file->GetFullPath()); |
| 48 | static const std::regex nax_path_regex("/registered/(000000[0-9A-F]{2})/([0-9A-F]{32})\\.nca", | 48 | static const std::regex nax_path_regex("/registered/(000000[0-9A-F]{2})/([0-9A-F]{32})\\.nca", |
| 49 | std::regex_constants::ECMAScript | | 49 | std::regex_constants::ECMAScript | |
| 50 | std::regex_constants::icase); | 50 | std::regex_constants::icase); |
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index 63e4aeca0..eb54cb123 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp | |||
| @@ -35,7 +35,7 @@ constexpr ResultCode ERR_INVALID_BUFFER_SIZE{ErrorModule::Account, 30}; | |||
| 35 | constexpr ResultCode ERR_FAILED_SAVE_DATA{ErrorModule::Account, 100}; | 35 | constexpr ResultCode ERR_FAILED_SAVE_DATA{ErrorModule::Account, 100}; |
| 36 | 36 | ||
| 37 | static std::string GetImagePath(Common::UUID uuid) { | 37 | static std::string GetImagePath(Common::UUID uuid) { |
| 38 | return FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 38 | return Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + |
| 39 | "/system/save/8000000000000010/su/avators/" + uuid.FormatSwitch() + ".jpg"; | 39 | "/system/save/8000000000000010/su/avators/" + uuid.FormatSwitch() + ".jpg"; |
| 40 | } | 40 | } |
| 41 | 41 | ||
| @@ -318,7 +318,7 @@ protected: | |||
| 318 | IPC::ResponseBuilder rb{ctx, 3}; | 318 | IPC::ResponseBuilder rb{ctx, 3}; |
| 319 | rb.Push(RESULT_SUCCESS); | 319 | rb.Push(RESULT_SUCCESS); |
| 320 | 320 | ||
| 321 | const FileUtil::IOFile image(GetImagePath(user_id), "rb"); | 321 | const Common::FS::IOFile image(GetImagePath(user_id), "rb"); |
| 322 | if (!image.IsOpen()) { | 322 | if (!image.IsOpen()) { |
| 323 | LOG_WARNING(Service_ACC, | 323 | LOG_WARNING(Service_ACC, |
| 324 | "Failed to load user provided image! Falling back to built-in backup..."); | 324 | "Failed to load user provided image! Falling back to built-in backup..."); |
| @@ -340,7 +340,7 @@ protected: | |||
| 340 | IPC::ResponseBuilder rb{ctx, 3}; | 340 | IPC::ResponseBuilder rb{ctx, 3}; |
| 341 | rb.Push(RESULT_SUCCESS); | 341 | rb.Push(RESULT_SUCCESS); |
| 342 | 342 | ||
| 343 | const FileUtil::IOFile image(GetImagePath(user_id), "rb"); | 343 | const Common::FS::IOFile image(GetImagePath(user_id), "rb"); |
| 344 | 344 | ||
| 345 | if (!image.IsOpen()) { | 345 | if (!image.IsOpen()) { |
| 346 | LOG_WARNING(Service_ACC, | 346 | LOG_WARNING(Service_ACC, |
| @@ -405,7 +405,7 @@ protected: | |||
| 405 | ProfileData data; | 405 | ProfileData data; |
| 406 | std::memcpy(&data, user_data.data(), sizeof(ProfileData)); | 406 | std::memcpy(&data, user_data.data(), sizeof(ProfileData)); |
| 407 | 407 | ||
| 408 | FileUtil::IOFile image(GetImagePath(user_id), "wb"); | 408 | Common::FS::IOFile image(GetImagePath(user_id), "wb"); |
| 409 | 409 | ||
| 410 | if (!image.IsOpen() || !image.Resize(image_data.size()) || | 410 | if (!image.IsOpen() || !image.Resize(image_data.size()) || |
| 411 | image.WriteBytes(image_data.data(), image_data.size()) != image_data.size() || | 411 | image.WriteBytes(image_data.data(), image_data.size()) != image_data.size() || |
diff --git a/src/core/hle/service/acc/profile_manager.cpp b/src/core/hle/service/acc/profile_manager.cpp index a98d57b5c..9b829e957 100644 --- a/src/core/hle/service/acc/profile_manager.cpp +++ b/src/core/hle/service/acc/profile_manager.cpp | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | 13 | ||
| 14 | namespace Service::Account { | 14 | namespace Service::Account { |
| 15 | 15 | ||
| 16 | namespace FS = Common::FS; | ||
| 16 | using Common::UUID; | 17 | using Common::UUID; |
| 17 | 18 | ||
| 18 | struct UserRaw { | 19 | struct UserRaw { |
| @@ -318,9 +319,8 @@ bool ProfileManager::SetProfileBaseAndData(Common::UUID uuid, const ProfileBase& | |||
| 318 | } | 319 | } |
| 319 | 320 | ||
| 320 | void ProfileManager::ParseUserSaveFile() { | 321 | void ProfileManager::ParseUserSaveFile() { |
| 321 | FileUtil::IOFile save(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 322 | const FS::IOFile save( |
| 322 | ACC_SAVE_AVATORS_BASE_PATH + "profiles.dat", | 323 | FS::GetUserPath(FS::UserPath::NANDDir) + ACC_SAVE_AVATORS_BASE_PATH + "profiles.dat", "rb"); |
| 323 | "rb"); | ||
| 324 | 324 | ||
| 325 | if (!save.IsOpen()) { | 325 | if (!save.IsOpen()) { |
| 326 | LOG_WARNING(Service_ACC, "Failed to load profile data from save data... Generating new " | 326 | LOG_WARNING(Service_ACC, "Failed to load profile data from save data... Generating new " |
| @@ -366,22 +366,22 @@ void ProfileManager::WriteUserSaveFile() { | |||
| 366 | }; | 366 | }; |
| 367 | } | 367 | } |
| 368 | 368 | ||
| 369 | const auto raw_path = | 369 | const auto raw_path = FS::GetUserPath(FS::UserPath::NANDDir) + "/system/save/8000000000000010"; |
| 370 | FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + "/system/save/8000000000000010"; | 370 | if (FS::Exists(raw_path) && !FS::IsDirectory(raw_path)) { |
| 371 | if (FileUtil::Exists(raw_path) && !FileUtil::IsDirectory(raw_path)) | 371 | FS::Delete(raw_path); |
| 372 | FileUtil::Delete(raw_path); | 372 | } |
| 373 | 373 | ||
| 374 | const auto path = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 374 | const auto path = |
| 375 | ACC_SAVE_AVATORS_BASE_PATH + "profiles.dat"; | 375 | FS::GetUserPath(FS::UserPath::NANDDir) + ACC_SAVE_AVATORS_BASE_PATH + "profiles.dat"; |
| 376 | 376 | ||
| 377 | if (!FileUtil::CreateFullPath(path)) { | 377 | if (!FS::CreateFullPath(path)) { |
| 378 | LOG_WARNING(Service_ACC, "Failed to create full path of profiles.dat. Create the directory " | 378 | LOG_WARNING(Service_ACC, "Failed to create full path of profiles.dat. Create the directory " |
| 379 | "nand/system/save/8000000000000010/su/avators to mitigate this " | 379 | "nand/system/save/8000000000000010/su/avators to mitigate this " |
| 380 | "issue."); | 380 | "issue."); |
| 381 | return; | 381 | return; |
| 382 | } | 382 | } |
| 383 | 383 | ||
| 384 | FileUtil::IOFile save(path, "wb"); | 384 | FS::IOFile save(path, "wb"); |
| 385 | 385 | ||
| 386 | if (!save.IsOpen()) { | 386 | if (!save.IsOpen()) { |
| 387 | LOG_WARNING(Service_ACC, "Failed to write save data to file... No changes to user data " | 387 | LOG_WARNING(Service_ACC, "Failed to write save data to file... No changes to user data " |
diff --git a/src/core/hle/service/am/applets/web_browser.cpp b/src/core/hle/service/am/applets/web_browser.cpp index 4157fbf39..efe595c4f 100644 --- a/src/core/hle/service/am/applets/web_browser.cpp +++ b/src/core/hle/service/am/applets/web_browser.cpp | |||
| @@ -293,8 +293,8 @@ void WebBrowser::Finalize() { | |||
| 293 | broker.PushNormalDataFromApplet(std::make_shared<IStorage>(std::move(data))); | 293 | broker.PushNormalDataFromApplet(std::make_shared<IStorage>(std::move(data))); |
| 294 | broker.SignalStateChanged(); | 294 | broker.SignalStateChanged(); |
| 295 | 295 | ||
| 296 | if (!temporary_dir.empty() && FileUtil::IsDirectory(temporary_dir)) { | 296 | if (!temporary_dir.empty() && Common::FS::IsDirectory(temporary_dir)) { |
| 297 | FileUtil::DeleteDirRecursively(temporary_dir); | 297 | Common::FS::DeleteDirRecursively(temporary_dir); |
| 298 | } | 298 | } |
| 299 | } | 299 | } |
| 300 | 300 | ||
| @@ -452,10 +452,10 @@ void WebBrowser::InitializeOffline() { | |||
| 452 | }; | 452 | }; |
| 453 | 453 | ||
| 454 | temporary_dir = | 454 | temporary_dir = |
| 455 | FileUtil::SanitizePath(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + "web_applet_" + | 455 | Common::FS::SanitizePath(Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + |
| 456 | WEB_SOURCE_NAMES[static_cast<u32>(source) - 1], | 456 | "web_applet_" + WEB_SOURCE_NAMES[static_cast<u32>(source) - 1], |
| 457 | FileUtil::DirectorySeparator::PlatformDefault); | 457 | Common::FS::DirectorySeparator::PlatformDefault); |
| 458 | FileUtil::DeleteDirRecursively(temporary_dir); | 458 | Common::FS::DeleteDirRecursively(temporary_dir); |
| 459 | 459 | ||
| 460 | u64 title_id = 0; // 0 corresponds to current process | 460 | u64 title_id = 0; // 0 corresponds to current process |
| 461 | ASSERT(args[WebArgTLVType::ApplicationID].size() >= 0x8); | 461 | ASSERT(args[WebArgTLVType::ApplicationID].size() >= 0x8); |
| @@ -492,8 +492,8 @@ void WebBrowser::InitializeOffline() { | |||
| 492 | } | 492 | } |
| 493 | 493 | ||
| 494 | filename = | 494 | filename = |
| 495 | FileUtil::SanitizePath(temporary_dir + path_additional_directory + DIR_SEP + filename, | 495 | Common::FS::SanitizePath(temporary_dir + path_additional_directory + DIR_SEP + filename, |
| 496 | FileUtil::DirectorySeparator::PlatformDefault); | 496 | Common::FS::DirectorySeparator::PlatformDefault); |
| 497 | } | 497 | } |
| 498 | 498 | ||
| 499 | void WebBrowser::ExecuteShop() { | 499 | void WebBrowser::ExecuteShop() { |
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp index 51c2ba964..ca021a99f 100644 --- a/src/core/hle/service/bcat/backend/boxcat.cpp +++ b/src/core/hle/service/bcat/backend/boxcat.cpp | |||
| @@ -89,12 +89,12 @@ constexpr u32 TIMEOUT_SECONDS = 30; | |||
| 89 | 89 | ||
| 90 | std::string GetBINFilePath(u64 title_id) { | 90 | std::string GetBINFilePath(u64 title_id) { |
| 91 | return fmt::format("{}bcat/{:016X}/launchparam.bin", | 91 | return fmt::format("{}bcat/{:016X}/launchparam.bin", |
| 92 | FileUtil::GetUserPath(FileUtil::UserPath::CacheDir), title_id); | 92 | Common::FS::GetUserPath(Common::FS::UserPath::CacheDir), title_id); |
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | std::string GetZIPFilePath(u64 title_id) { | 95 | std::string GetZIPFilePath(u64 title_id) { |
| 96 | return fmt::format("{}bcat/{:016X}/data.zip", | 96 | return fmt::format("{}bcat/{:016X}/data.zip", |
| 97 | FileUtil::GetUserPath(FileUtil::UserPath::CacheDir), title_id); | 97 | Common::FS::GetUserPath(Common::FS::UserPath::CacheDir), title_id); |
| 98 | } | 98 | } |
| 99 | 99 | ||
| 100 | // If the error is something the user should know about (build ID mismatch, bad client version), | 100 | // If the error is something the user should know about (build ID mismatch, bad client version), |
| @@ -205,8 +205,8 @@ private: | |||
| 205 | {std::string("Game-Build-Id"), fmt::format("{:016X}", build_id)}, | 205 | {std::string("Game-Build-Id"), fmt::format("{:016X}", build_id)}, |
| 206 | }; | 206 | }; |
| 207 | 207 | ||
| 208 | if (FileUtil::Exists(path)) { | 208 | if (Common::FS::Exists(path)) { |
| 209 | FileUtil::IOFile file{path, "rb"}; | 209 | Common::FS::IOFile file{path, "rb"}; |
| 210 | if (file.IsOpen()) { | 210 | if (file.IsOpen()) { |
| 211 | std::vector<u8> bytes(file.GetSize()); | 211 | std::vector<u8> bytes(file.GetSize()); |
| 212 | file.ReadBytes(bytes.data(), bytes.size()); | 212 | file.ReadBytes(bytes.data(), bytes.size()); |
| @@ -236,8 +236,8 @@ private: | |||
| 236 | return DownloadResult::InvalidContentType; | 236 | return DownloadResult::InvalidContentType; |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | FileUtil::CreateFullPath(path); | 239 | Common::FS::CreateFullPath(path); |
| 240 | FileUtil::IOFile file{path, "wb"}; | 240 | Common::FS::IOFile file{path, "wb"}; |
| 241 | if (!file.IsOpen()) | 241 | if (!file.IsOpen()) |
| 242 | return DownloadResult::GeneralFSError; | 242 | return DownloadResult::GeneralFSError; |
| 243 | if (!file.Resize(response->body.size())) | 243 | if (!file.Resize(response->body.size())) |
| @@ -290,7 +290,7 @@ void SynchronizeInternal(AM::Applets::AppletManager& applet_manager, DirectoryGe | |||
| 290 | LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res); | 290 | LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res); |
| 291 | 291 | ||
| 292 | if (res == DownloadResult::NoMatchBuildId || res == DownloadResult::NoMatchTitleId) { | 292 | if (res == DownloadResult::NoMatchBuildId || res == DownloadResult::NoMatchTitleId) { |
| 293 | FileUtil::Delete(zip_path); | 293 | Common::FS::Delete(zip_path); |
| 294 | } | 294 | } |
| 295 | 295 | ||
| 296 | HandleDownloadDisplayResult(applet_manager, res); | 296 | HandleDownloadDisplayResult(applet_manager, res); |
| @@ -300,7 +300,7 @@ void SynchronizeInternal(AM::Applets::AppletManager& applet_manager, DirectoryGe | |||
| 300 | 300 | ||
| 301 | progress.StartProcessingDataList(); | 301 | progress.StartProcessingDataList(); |
| 302 | 302 | ||
| 303 | FileUtil::IOFile zip{zip_path, "rb"}; | 303 | Common::FS::IOFile zip{zip_path, "rb"}; |
| 304 | const auto size = zip.GetSize(); | 304 | const auto size = zip.GetSize(); |
| 305 | std::vector<u8> bytes(size); | 305 | std::vector<u8> bytes(size); |
| 306 | if (!zip.IsOpen() || size == 0 || zip.ReadBytes(bytes.data(), bytes.size()) != bytes.size()) { | 306 | if (!zip.IsOpen() || size == 0 || zip.ReadBytes(bytes.data(), bytes.size()) != bytes.size()) { |
| @@ -420,7 +420,7 @@ std::optional<std::vector<u8>> Boxcat::GetLaunchParameter(TitleIDVersion title) | |||
| 420 | LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res); | 420 | LOG_ERROR(Service_BCAT, "Boxcat synchronization failed with error '{}'!", res); |
| 421 | 421 | ||
| 422 | if (res == DownloadResult::NoMatchBuildId || res == DownloadResult::NoMatchTitleId) { | 422 | if (res == DownloadResult::NoMatchBuildId || res == DownloadResult::NoMatchTitleId) { |
| 423 | FileUtil::Delete(path); | 423 | Common::FS::Delete(path); |
| 424 | } | 424 | } |
| 425 | 425 | ||
| 426 | HandleDownloadDisplayResult(applet_manager, res); | 426 | HandleDownloadDisplayResult(applet_manager, res); |
| @@ -428,7 +428,7 @@ std::optional<std::vector<u8>> Boxcat::GetLaunchParameter(TitleIDVersion title) | |||
| 428 | } | 428 | } |
| 429 | } | 429 | } |
| 430 | 430 | ||
| 431 | FileUtil::IOFile bin{path, "rb"}; | 431 | Common::FS::IOFile bin{path, "rb"}; |
| 432 | const auto size = bin.GetSize(); | 432 | const auto size = bin.GetSize(); |
| 433 | std::vector<u8> bytes(size); | 433 | std::vector<u8> bytes(size); |
| 434 | if (!bin.IsOpen() || size == 0 || bin.ReadBytes(bytes.data(), bytes.size()) != bytes.size()) { | 434 | if (!bin.IsOpen() || size == 0 || bin.ReadBytes(bytes.data(), bytes.size()) != bytes.size()) { |
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp index 4490f8e4c..2cee1193c 100644 --- a/src/core/hle/service/filesystem/filesystem.cpp +++ b/src/core/hle/service/filesystem/filesystem.cpp | |||
| @@ -36,7 +36,7 @@ constexpr u64 SUFFICIENT_SAVE_DATA_SIZE = 0xF0000000; | |||
| 36 | 36 | ||
| 37 | static FileSys::VirtualDir GetDirectoryRelativeWrapped(FileSys::VirtualDir base, | 37 | static FileSys::VirtualDir GetDirectoryRelativeWrapped(FileSys::VirtualDir base, |
| 38 | std::string_view dir_name_) { | 38 | std::string_view dir_name_) { |
| 39 | std::string dir_name(FileUtil::SanitizePath(dir_name_)); | 39 | std::string dir_name(Common::FS::SanitizePath(dir_name_)); |
| 40 | if (dir_name.empty() || dir_name == "." || dir_name == "/" || dir_name == "\\") | 40 | if (dir_name.empty() || dir_name == "." || dir_name == "/" || dir_name == "\\") |
| 41 | return base; | 41 | return base; |
| 42 | 42 | ||
| @@ -53,13 +53,13 @@ std::string VfsDirectoryServiceWrapper::GetName() const { | |||
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | ResultCode VfsDirectoryServiceWrapper::CreateFile(const std::string& path_, u64 size) const { | 55 | ResultCode VfsDirectoryServiceWrapper::CreateFile(const std::string& path_, u64 size) const { |
| 56 | std::string path(FileUtil::SanitizePath(path_)); | 56 | std::string path(Common::FS::SanitizePath(path_)); |
| 57 | auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(path)); | 57 | auto dir = GetDirectoryRelativeWrapped(backing, Common::FS::GetParentPath(path)); |
| 58 | // dir can be nullptr if path contains subdirectories, create those prior to creating the file. | 58 | // dir can be nullptr if path contains subdirectories, create those prior to creating the file. |
| 59 | if (dir == nullptr) { | 59 | if (dir == nullptr) { |
| 60 | dir = backing->CreateSubdirectory(FileUtil::GetParentPath(path)); | 60 | dir = backing->CreateSubdirectory(Common::FS::GetParentPath(path)); |
| 61 | } | 61 | } |
| 62 | auto file = dir->CreateFile(FileUtil::GetFilename(path)); | 62 | auto file = dir->CreateFile(Common::FS::GetFilename(path)); |
| 63 | if (file == nullptr) { | 63 | if (file == nullptr) { |
| 64 | // TODO(DarkLordZach): Find a better error code for this | 64 | // TODO(DarkLordZach): Find a better error code for this |
| 65 | return RESULT_UNKNOWN; | 65 | return RESULT_UNKNOWN; |
| @@ -72,17 +72,17 @@ ResultCode VfsDirectoryServiceWrapper::CreateFile(const std::string& path_, u64 | |||
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | ResultCode VfsDirectoryServiceWrapper::DeleteFile(const std::string& path_) const { | 74 | ResultCode VfsDirectoryServiceWrapper::DeleteFile(const std::string& path_) const { |
| 75 | std::string path(FileUtil::SanitizePath(path_)); | 75 | std::string path(Common::FS::SanitizePath(path_)); |
| 76 | if (path.empty()) { | 76 | if (path.empty()) { |
| 77 | // TODO(DarkLordZach): Why do games call this and what should it do? Works as is but... | 77 | // TODO(DarkLordZach): Why do games call this and what should it do? Works as is but... |
| 78 | return RESULT_SUCCESS; | 78 | return RESULT_SUCCESS; |
| 79 | } | 79 | } |
| 80 | 80 | ||
| 81 | auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(path)); | 81 | auto dir = GetDirectoryRelativeWrapped(backing, Common::FS::GetParentPath(path)); |
| 82 | if (dir->GetFile(FileUtil::GetFilename(path)) == nullptr) { | 82 | if (dir->GetFile(Common::FS::GetFilename(path)) == nullptr) { |
| 83 | return FileSys::ERROR_PATH_NOT_FOUND; | 83 | return FileSys::ERROR_PATH_NOT_FOUND; |
| 84 | } | 84 | } |
| 85 | if (!dir->DeleteFile(FileUtil::GetFilename(path))) { | 85 | if (!dir->DeleteFile(Common::FS::GetFilename(path))) { |
| 86 | // TODO(DarkLordZach): Find a better error code for this | 86 | // TODO(DarkLordZach): Find a better error code for this |
| 87 | return RESULT_UNKNOWN; | 87 | return RESULT_UNKNOWN; |
| 88 | } | 88 | } |
| @@ -91,11 +91,11 @@ ResultCode VfsDirectoryServiceWrapper::DeleteFile(const std::string& path_) cons | |||
| 91 | } | 91 | } |
| 92 | 92 | ||
| 93 | ResultCode VfsDirectoryServiceWrapper::CreateDirectory(const std::string& path_) const { | 93 | ResultCode VfsDirectoryServiceWrapper::CreateDirectory(const std::string& path_) const { |
| 94 | std::string path(FileUtil::SanitizePath(path_)); | 94 | std::string path(Common::FS::SanitizePath(path_)); |
| 95 | auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(path)); | 95 | auto dir = GetDirectoryRelativeWrapped(backing, Common::FS::GetParentPath(path)); |
| 96 | if (dir == nullptr && FileUtil::GetFilename(FileUtil::GetParentPath(path)).empty()) | 96 | if (dir == nullptr && Common::FS::GetFilename(Common::FS::GetParentPath(path)).empty()) |
| 97 | dir = backing; | 97 | dir = backing; |
| 98 | auto new_dir = dir->CreateSubdirectory(FileUtil::GetFilename(path)); | 98 | auto new_dir = dir->CreateSubdirectory(Common::FS::GetFilename(path)); |
| 99 | if (new_dir == nullptr) { | 99 | if (new_dir == nullptr) { |
| 100 | // TODO(DarkLordZach): Find a better error code for this | 100 | // TODO(DarkLordZach): Find a better error code for this |
| 101 | return RESULT_UNKNOWN; | 101 | return RESULT_UNKNOWN; |
| @@ -104,9 +104,9 @@ ResultCode VfsDirectoryServiceWrapper::CreateDirectory(const std::string& path_) | |||
| 104 | } | 104 | } |
| 105 | 105 | ||
| 106 | ResultCode VfsDirectoryServiceWrapper::DeleteDirectory(const std::string& path_) const { | 106 | ResultCode VfsDirectoryServiceWrapper::DeleteDirectory(const std::string& path_) const { |
| 107 | std::string path(FileUtil::SanitizePath(path_)); | 107 | std::string path(Common::FS::SanitizePath(path_)); |
| 108 | auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(path)); | 108 | auto dir = GetDirectoryRelativeWrapped(backing, Common::FS::GetParentPath(path)); |
| 109 | if (!dir->DeleteSubdirectory(FileUtil::GetFilename(path))) { | 109 | if (!dir->DeleteSubdirectory(Common::FS::GetFilename(path))) { |
| 110 | // TODO(DarkLordZach): Find a better error code for this | 110 | // TODO(DarkLordZach): Find a better error code for this |
| 111 | return RESULT_UNKNOWN; | 111 | return RESULT_UNKNOWN; |
| 112 | } | 112 | } |
| @@ -114,9 +114,9 @@ ResultCode VfsDirectoryServiceWrapper::DeleteDirectory(const std::string& path_) | |||
| 114 | } | 114 | } |
| 115 | 115 | ||
| 116 | ResultCode VfsDirectoryServiceWrapper::DeleteDirectoryRecursively(const std::string& path_) const { | 116 | ResultCode VfsDirectoryServiceWrapper::DeleteDirectoryRecursively(const std::string& path_) const { |
| 117 | std::string path(FileUtil::SanitizePath(path_)); | 117 | std::string path(Common::FS::SanitizePath(path_)); |
| 118 | auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(path)); | 118 | auto dir = GetDirectoryRelativeWrapped(backing, Common::FS::GetParentPath(path)); |
| 119 | if (!dir->DeleteSubdirectoryRecursive(FileUtil::GetFilename(path))) { | 119 | if (!dir->DeleteSubdirectoryRecursive(Common::FS::GetFilename(path))) { |
| 120 | // TODO(DarkLordZach): Find a better error code for this | 120 | // TODO(DarkLordZach): Find a better error code for this |
| 121 | return RESULT_UNKNOWN; | 121 | return RESULT_UNKNOWN; |
| 122 | } | 122 | } |
| @@ -124,10 +124,10 @@ ResultCode VfsDirectoryServiceWrapper::DeleteDirectoryRecursively(const std::str | |||
| 124 | } | 124 | } |
| 125 | 125 | ||
| 126 | ResultCode VfsDirectoryServiceWrapper::CleanDirectoryRecursively(const std::string& path) const { | 126 | ResultCode VfsDirectoryServiceWrapper::CleanDirectoryRecursively(const std::string& path) const { |
| 127 | const std::string sanitized_path(FileUtil::SanitizePath(path)); | 127 | const std::string sanitized_path(Common::FS::SanitizePath(path)); |
| 128 | auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(sanitized_path)); | 128 | auto dir = GetDirectoryRelativeWrapped(backing, Common::FS::GetParentPath(sanitized_path)); |
| 129 | 129 | ||
| 130 | if (!dir->CleanSubdirectoryRecursive(FileUtil::GetFilename(sanitized_path))) { | 130 | if (!dir->CleanSubdirectoryRecursive(Common::FS::GetFilename(sanitized_path))) { |
| 131 | // TODO(DarkLordZach): Find a better error code for this | 131 | // TODO(DarkLordZach): Find a better error code for this |
| 132 | return RESULT_UNKNOWN; | 132 | return RESULT_UNKNOWN; |
| 133 | } | 133 | } |
| @@ -137,14 +137,14 @@ ResultCode VfsDirectoryServiceWrapper::CleanDirectoryRecursively(const std::stri | |||
| 137 | 137 | ||
| 138 | ResultCode VfsDirectoryServiceWrapper::RenameFile(const std::string& src_path_, | 138 | ResultCode VfsDirectoryServiceWrapper::RenameFile(const std::string& src_path_, |
| 139 | const std::string& dest_path_) const { | 139 | const std::string& dest_path_) const { |
| 140 | std::string src_path(FileUtil::SanitizePath(src_path_)); | 140 | std::string src_path(Common::FS::SanitizePath(src_path_)); |
| 141 | std::string dest_path(FileUtil::SanitizePath(dest_path_)); | 141 | std::string dest_path(Common::FS::SanitizePath(dest_path_)); |
| 142 | auto src = backing->GetFileRelative(src_path); | 142 | auto src = backing->GetFileRelative(src_path); |
| 143 | if (FileUtil::GetParentPath(src_path) == FileUtil::GetParentPath(dest_path)) { | 143 | if (Common::FS::GetParentPath(src_path) == Common::FS::GetParentPath(dest_path)) { |
| 144 | // Use more-optimized vfs implementation rename. | 144 | // Use more-optimized vfs implementation rename. |
| 145 | if (src == nullptr) | 145 | if (src == nullptr) |
| 146 | return FileSys::ERROR_PATH_NOT_FOUND; | 146 | return FileSys::ERROR_PATH_NOT_FOUND; |
| 147 | if (!src->Rename(FileUtil::GetFilename(dest_path))) { | 147 | if (!src->Rename(Common::FS::GetFilename(dest_path))) { |
| 148 | // TODO(DarkLordZach): Find a better error code for this | 148 | // TODO(DarkLordZach): Find a better error code for this |
| 149 | return RESULT_UNKNOWN; | 149 | return RESULT_UNKNOWN; |
| 150 | } | 150 | } |
| @@ -162,7 +162,7 @@ ResultCode VfsDirectoryServiceWrapper::RenameFile(const std::string& src_path_, | |||
| 162 | ASSERT_MSG(dest->WriteBytes(src->ReadAllBytes()) == src->GetSize(), | 162 | ASSERT_MSG(dest->WriteBytes(src->ReadAllBytes()) == src->GetSize(), |
| 163 | "Could not write all of the bytes but everything else has succeded."); | 163 | "Could not write all of the bytes but everything else has succeded."); |
| 164 | 164 | ||
| 165 | if (!src->GetContainingDirectory()->DeleteFile(FileUtil::GetFilename(src_path))) { | 165 | if (!src->GetContainingDirectory()->DeleteFile(Common::FS::GetFilename(src_path))) { |
| 166 | // TODO(DarkLordZach): Find a better error code for this | 166 | // TODO(DarkLordZach): Find a better error code for this |
| 167 | return RESULT_UNKNOWN; | 167 | return RESULT_UNKNOWN; |
| 168 | } | 168 | } |
| @@ -172,14 +172,14 @@ ResultCode VfsDirectoryServiceWrapper::RenameFile(const std::string& src_path_, | |||
| 172 | 172 | ||
| 173 | ResultCode VfsDirectoryServiceWrapper::RenameDirectory(const std::string& src_path_, | 173 | ResultCode VfsDirectoryServiceWrapper::RenameDirectory(const std::string& src_path_, |
| 174 | const std::string& dest_path_) const { | 174 | const std::string& dest_path_) const { |
| 175 | std::string src_path(FileUtil::SanitizePath(src_path_)); | 175 | std::string src_path(Common::FS::SanitizePath(src_path_)); |
| 176 | std::string dest_path(FileUtil::SanitizePath(dest_path_)); | 176 | std::string dest_path(Common::FS::SanitizePath(dest_path_)); |
| 177 | auto src = GetDirectoryRelativeWrapped(backing, src_path); | 177 | auto src = GetDirectoryRelativeWrapped(backing, src_path); |
| 178 | if (FileUtil::GetParentPath(src_path) == FileUtil::GetParentPath(dest_path)) { | 178 | if (Common::FS::GetParentPath(src_path) == Common::FS::GetParentPath(dest_path)) { |
| 179 | // Use more-optimized vfs implementation rename. | 179 | // Use more-optimized vfs implementation rename. |
| 180 | if (src == nullptr) | 180 | if (src == nullptr) |
| 181 | return FileSys::ERROR_PATH_NOT_FOUND; | 181 | return FileSys::ERROR_PATH_NOT_FOUND; |
| 182 | if (!src->Rename(FileUtil::GetFilename(dest_path))) { | 182 | if (!src->Rename(Common::FS::GetFilename(dest_path))) { |
| 183 | // TODO(DarkLordZach): Find a better error code for this | 183 | // TODO(DarkLordZach): Find a better error code for this |
| 184 | return RESULT_UNKNOWN; | 184 | return RESULT_UNKNOWN; |
| 185 | } | 185 | } |
| @@ -198,7 +198,7 @@ ResultCode VfsDirectoryServiceWrapper::RenameDirectory(const std::string& src_pa | |||
| 198 | 198 | ||
| 199 | ResultVal<FileSys::VirtualFile> VfsDirectoryServiceWrapper::OpenFile(const std::string& path_, | 199 | ResultVal<FileSys::VirtualFile> VfsDirectoryServiceWrapper::OpenFile(const std::string& path_, |
| 200 | FileSys::Mode mode) const { | 200 | FileSys::Mode mode) const { |
| 201 | const std::string path(FileUtil::SanitizePath(path_)); | 201 | const std::string path(Common::FS::SanitizePath(path_)); |
| 202 | std::string_view npath = path; | 202 | std::string_view npath = path; |
| 203 | while (!npath.empty() && (npath[0] == '/' || npath[0] == '\\')) { | 203 | while (!npath.empty() && (npath[0] == '/' || npath[0] == '\\')) { |
| 204 | npath.remove_prefix(1); | 204 | npath.remove_prefix(1); |
| @@ -218,7 +218,7 @@ ResultVal<FileSys::VirtualFile> VfsDirectoryServiceWrapper::OpenFile(const std:: | |||
| 218 | } | 218 | } |
| 219 | 219 | ||
| 220 | ResultVal<FileSys::VirtualDir> VfsDirectoryServiceWrapper::OpenDirectory(const std::string& path_) { | 220 | ResultVal<FileSys::VirtualDir> VfsDirectoryServiceWrapper::OpenDirectory(const std::string& path_) { |
| 221 | std::string path(FileUtil::SanitizePath(path_)); | 221 | std::string path(Common::FS::SanitizePath(path_)); |
| 222 | auto dir = GetDirectoryRelativeWrapped(backing, path); | 222 | auto dir = GetDirectoryRelativeWrapped(backing, path); |
| 223 | if (dir == nullptr) { | 223 | if (dir == nullptr) { |
| 224 | // TODO(DarkLordZach): Find a better error code for this | 224 | // TODO(DarkLordZach): Find a better error code for this |
| @@ -229,11 +229,11 @@ ResultVal<FileSys::VirtualDir> VfsDirectoryServiceWrapper::OpenDirectory(const s | |||
| 229 | 229 | ||
| 230 | ResultVal<FileSys::EntryType> VfsDirectoryServiceWrapper::GetEntryType( | 230 | ResultVal<FileSys::EntryType> VfsDirectoryServiceWrapper::GetEntryType( |
| 231 | const std::string& path_) const { | 231 | const std::string& path_) const { |
| 232 | std::string path(FileUtil::SanitizePath(path_)); | 232 | std::string path(Common::FS::SanitizePath(path_)); |
| 233 | auto dir = GetDirectoryRelativeWrapped(backing, FileUtil::GetParentPath(path)); | 233 | auto dir = GetDirectoryRelativeWrapped(backing, Common::FS::GetParentPath(path)); |
| 234 | if (dir == nullptr) | 234 | if (dir == nullptr) |
| 235 | return FileSys::ERROR_PATH_NOT_FOUND; | 235 | return FileSys::ERROR_PATH_NOT_FOUND; |
| 236 | auto filename = FileUtil::GetFilename(path); | 236 | auto filename = Common::FS::GetFilename(path); |
| 237 | // TODO(Subv): Some games use the '/' path, find out what this means. | 237 | // TODO(Subv): Some games use the '/' path, find out what this means. |
| 238 | if (filename.empty()) | 238 | if (filename.empty()) |
| 239 | return MakeResult(FileSys::EntryType::Directory); | 239 | return MakeResult(FileSys::EntryType::Directory); |
| @@ -695,13 +695,13 @@ void FileSystemController::CreateFactories(FileSys::VfsFilesystem& vfs, bool ove | |||
| 695 | sdmc_factory = nullptr; | 695 | sdmc_factory = nullptr; |
| 696 | } | 696 | } |
| 697 | 697 | ||
| 698 | auto nand_directory = vfs.OpenDirectory(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir), | 698 | auto nand_directory = vfs.OpenDirectory(Common::FS::GetUserPath(Common::FS::UserPath::NANDDir), |
| 699 | FileSys::Mode::ReadWrite); | 699 | FileSys::Mode::ReadWrite); |
| 700 | auto sd_directory = vfs.OpenDirectory(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir), | 700 | auto sd_directory = vfs.OpenDirectory(Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir), |
| 701 | FileSys::Mode::ReadWrite); | 701 | FileSys::Mode::ReadWrite); |
| 702 | auto load_directory = vfs.OpenDirectory(FileUtil::GetUserPath(FileUtil::UserPath::LoadDir), | 702 | auto load_directory = vfs.OpenDirectory(Common::FS::GetUserPath(Common::FS::UserPath::LoadDir), |
| 703 | FileSys::Mode::ReadWrite); | 703 | FileSys::Mode::ReadWrite); |
| 704 | auto dump_directory = vfs.OpenDirectory(FileUtil::GetUserPath(FileUtil::UserPath::DumpDir), | 704 | auto dump_directory = vfs.OpenDirectory(Common::FS::GetUserPath(Common::FS::UserPath::DumpDir), |
| 705 | FileSys::Mode::ReadWrite); | 705 | FileSys::Mode::ReadWrite); |
| 706 | 706 | ||
| 707 | if (bis_factory == nullptr) { | 707 | if (bis_factory == nullptr) { |
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index 7c48e55e1..9bc3a8840 100644 --- a/src/core/loader/loader.cpp +++ b/src/core/loader/loader.cpp | |||
| @@ -67,7 +67,7 @@ FileType GuessFromFilename(const std::string& name) { | |||
| 67 | return FileType::NCA; | 67 | return FileType::NCA; |
| 68 | 68 | ||
| 69 | const std::string extension = | 69 | const std::string extension = |
| 70 | Common::ToLower(std::string(FileUtil::GetExtensionFromFilename(name))); | 70 | Common::ToLower(std::string(Common::FS::GetExtensionFromFilename(name))); |
| 71 | 71 | ||
| 72 | if (extension == "elf") | 72 | if (extension == "elf") |
| 73 | return FileType::ELF; | 73 | return FileType::ELF; |
diff --git a/src/core/perf_stats.cpp b/src/core/perf_stats.cpp index b899ac884..b93396a80 100644 --- a/src/core/perf_stats.cpp +++ b/src/core/perf_stats.cpp | |||
| @@ -38,11 +38,11 @@ PerfStats::~PerfStats() { | |||
| 38 | std::ostringstream stream; | 38 | std::ostringstream stream; |
| 39 | std::copy(perf_history.begin() + IgnoreFrames, perf_history.begin() + current_index, | 39 | std::copy(perf_history.begin() + IgnoreFrames, perf_history.begin() + current_index, |
| 40 | std::ostream_iterator<double>(stream, "\n")); | 40 | std::ostream_iterator<double>(stream, "\n")); |
| 41 | const std::string& path = FileUtil::GetUserPath(FileUtil::UserPath::LogDir); | 41 | const std::string& path = Common::FS::GetUserPath(Common::FS::UserPath::LogDir); |
| 42 | // %F Date format expanded is "%Y-%m-%d" | 42 | // %F Date format expanded is "%Y-%m-%d" |
| 43 | const std::string filename = | 43 | const std::string filename = |
| 44 | fmt::format("{}/{:%F-%H-%M}_{:016X}.csv", path, *std::localtime(&t), title_id); | 44 | fmt::format("{}/{:%F-%H-%M}_{:016X}.csv", path, *std::localtime(&t), title_id); |
| 45 | FileUtil::IOFile file(filename, "w"); | 45 | Common::FS::IOFile file(filename, "w"); |
| 46 | file.WriteString(stream.str()); | 46 | file.WriteString(stream.str()); |
| 47 | } | 47 | } |
| 48 | 48 | ||
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp index 76cfa5a17..0becdf642 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp | |||
| @@ -28,8 +28,9 @@ | |||
| 28 | namespace { | 28 | namespace { |
| 29 | 29 | ||
| 30 | std::string GetPath(std::string_view type, u64 title_id, std::string_view timestamp) { | 30 | std::string GetPath(std::string_view type, u64 title_id, std::string_view timestamp) { |
| 31 | return fmt::format("{}{}/{:016X}_{}.json", FileUtil::GetUserPath(FileUtil::UserPath::LogDir), | 31 | return fmt::format("{}{}/{:016X}_{}.json", |
| 32 | type, title_id, timestamp); | 32 | Common::FS::GetUserPath(Common::FS::UserPath::LogDir), type, title_id, |
| 33 | timestamp); | ||
| 33 | } | 34 | } |
| 34 | 35 | ||
| 35 | std::string GetTimestamp() { | 36 | std::string GetTimestamp() { |
| @@ -40,13 +41,13 @@ std::string GetTimestamp() { | |||
| 40 | using namespace nlohmann; | 41 | using namespace nlohmann; |
| 41 | 42 | ||
| 42 | void SaveToFile(json json, const std::string& filename) { | 43 | void SaveToFile(json json, const std::string& filename) { |
| 43 | if (!FileUtil::CreateFullPath(filename)) { | 44 | if (!Common::FS::CreateFullPath(filename)) { |
| 44 | LOG_ERROR(Core, "Failed to create path for '{}' to save report!", filename); | 45 | LOG_ERROR(Core, "Failed to create path for '{}' to save report!", filename); |
| 45 | return; | 46 | return; |
| 46 | } | 47 | } |
| 47 | 48 | ||
| 48 | std::ofstream file( | 49 | std::ofstream file( |
| 49 | FileUtil::SanitizePath(filename, FileUtil::DirectorySeparator::PlatformDefault)); | 50 | Common::FS::SanitizePath(filename, Common::FS::DirectorySeparator::PlatformDefault)); |
| 50 | file << std::setw(4) << json << std::endl; | 51 | file << std::setw(4) << json << std::endl; |
| 51 | } | 52 | } |
| 52 | 53 | ||
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 416b2d866..d328fb8b7 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp | |||
| @@ -121,8 +121,8 @@ void LogSettings() { | |||
| 121 | log_setting("Audio_EnableAudioStretching", values.enable_audio_stretching.GetValue()); | 121 | log_setting("Audio_EnableAudioStretching", values.enable_audio_stretching.GetValue()); |
| 122 | log_setting("Audio_OutputDevice", values.audio_device_id); | 122 | log_setting("Audio_OutputDevice", values.audio_device_id); |
| 123 | log_setting("DataStorage_UseVirtualSd", values.use_virtual_sd); | 123 | log_setting("DataStorage_UseVirtualSd", values.use_virtual_sd); |
| 124 | log_setting("DataStorage_NandDir", FileUtil::GetUserPath(FileUtil::UserPath::NANDDir)); | 124 | log_setting("DataStorage_NandDir", Common::FS::GetUserPath(Common::FS::UserPath::NANDDir)); |
| 125 | log_setting("DataStorage_SdmcDir", FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)); | 125 | log_setting("DataStorage_SdmcDir", Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir)); |
| 126 | log_setting("Debugging_UseGdbstub", values.use_gdbstub); | 126 | log_setting("Debugging_UseGdbstub", values.use_gdbstub); |
| 127 | log_setting("Debugging_GdbstubPort", values.gdbstub_port); | 127 | log_setting("Debugging_GdbstubPort", values.gdbstub_port); |
| 128 | log_setting("Debugging_ProgramArgs", values.program_args); | 128 | log_setting("Debugging_ProgramArgs", values.program_args); |
diff --git a/src/core/telemetry_session.cpp b/src/core/telemetry_session.cpp index 5a30c75da..7dae48bc6 100644 --- a/src/core/telemetry_session.cpp +++ b/src/core/telemetry_session.cpp | |||
| @@ -70,12 +70,12 @@ static const char* TranslateGPUAccuracyLevel(Settings::GPUAccuracy backend) { | |||
| 70 | 70 | ||
| 71 | u64 GetTelemetryId() { | 71 | u64 GetTelemetryId() { |
| 72 | u64 telemetry_id{}; | 72 | u64 telemetry_id{}; |
| 73 | const std::string filename{FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + | 73 | const std::string filename{Common::FS::GetUserPath(Common::FS::UserPath::ConfigDir) + |
| 74 | "telemetry_id"}; | 74 | "telemetry_id"}; |
| 75 | 75 | ||
| 76 | bool generate_new_id = !FileUtil::Exists(filename); | 76 | bool generate_new_id = !Common::FS::Exists(filename); |
| 77 | if (!generate_new_id) { | 77 | if (!generate_new_id) { |
| 78 | FileUtil::IOFile file(filename, "rb"); | 78 | Common::FS::IOFile file(filename, "rb"); |
| 79 | if (!file.IsOpen()) { | 79 | if (!file.IsOpen()) { |
| 80 | LOG_ERROR(Core, "failed to open telemetry_id: {}", filename); | 80 | LOG_ERROR(Core, "failed to open telemetry_id: {}", filename); |
| 81 | return {}; | 81 | return {}; |
| @@ -88,7 +88,7 @@ u64 GetTelemetryId() { | |||
| 88 | } | 88 | } |
| 89 | 89 | ||
| 90 | if (generate_new_id) { | 90 | if (generate_new_id) { |
| 91 | FileUtil::IOFile file(filename, "wb"); | 91 | Common::FS::IOFile file(filename, "wb"); |
| 92 | if (!file.IsOpen()) { | 92 | if (!file.IsOpen()) { |
| 93 | LOG_ERROR(Core, "failed to open telemetry_id: {}", filename); | 93 | LOG_ERROR(Core, "failed to open telemetry_id: {}", filename); |
| 94 | return {}; | 94 | return {}; |
| @@ -102,10 +102,10 @@ u64 GetTelemetryId() { | |||
| 102 | 102 | ||
| 103 | u64 RegenerateTelemetryId() { | 103 | u64 RegenerateTelemetryId() { |
| 104 | const u64 new_telemetry_id{GenerateTelemetryId()}; | 104 | const u64 new_telemetry_id{GenerateTelemetryId()}; |
| 105 | const std::string filename{FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + | 105 | const std::string filename{Common::FS::GetUserPath(Common::FS::UserPath::ConfigDir) + |
| 106 | "telemetry_id"}; | 106 | "telemetry_id"}; |
| 107 | 107 | ||
| 108 | FileUtil::IOFile file(filename, "wb"); | 108 | Common::FS::IOFile file(filename, "wb"); |
| 109 | if (!file.IsOpen()) { | 109 | if (!file.IsOpen()) { |
| 110 | LOG_ERROR(Core, "failed to open telemetry_id: {}", filename); | 110 | LOG_ERROR(Core, "failed to open telemetry_id: {}", filename); |
| 111 | return {}; | 111 | return {}; |
diff --git a/src/video_core/renderer_opengl/gl_shader_disk_cache.cpp b/src/video_core/renderer_opengl/gl_shader_disk_cache.cpp index 2dcc2b0eb..52fbab3c1 100644 --- a/src/video_core/renderer_opengl/gl_shader_disk_cache.cpp +++ b/src/video_core/renderer_opengl/gl_shader_disk_cache.cpp | |||
| @@ -73,7 +73,7 @@ ShaderDiskCacheEntry::ShaderDiskCacheEntry() = default; | |||
| 73 | 73 | ||
| 74 | ShaderDiskCacheEntry::~ShaderDiskCacheEntry() = default; | 74 | ShaderDiskCacheEntry::~ShaderDiskCacheEntry() = default; |
| 75 | 75 | ||
| 76 | bool ShaderDiskCacheEntry::Load(FileUtil::IOFile& file) { | 76 | bool ShaderDiskCacheEntry::Load(Common::FS::IOFile& file) { |
| 77 | if (file.ReadBytes(&type, sizeof(u32)) != sizeof(u32)) { | 77 | if (file.ReadBytes(&type, sizeof(u32)) != sizeof(u32)) { |
| 78 | return false; | 78 | return false; |
| 79 | } | 79 | } |
| @@ -144,7 +144,7 @@ bool ShaderDiskCacheEntry::Load(FileUtil::IOFile& file) { | |||
| 144 | return true; | 144 | return true; |
| 145 | } | 145 | } |
| 146 | 146 | ||
| 147 | bool ShaderDiskCacheEntry::Save(FileUtil::IOFile& file) const { | 147 | bool ShaderDiskCacheEntry::Save(Common::FS::IOFile& file) const { |
| 148 | if (file.WriteObject(static_cast<u32>(type)) != 1 || | 148 | if (file.WriteObject(static_cast<u32>(type)) != 1 || |
| 149 | file.WriteObject(static_cast<u32>(code.size())) != 1 || | 149 | file.WriteObject(static_cast<u32>(code.size())) != 1 || |
| 150 | file.WriteObject(static_cast<u32>(code_b.size())) != 1) { | 150 | file.WriteObject(static_cast<u32>(code_b.size())) != 1) { |
| @@ -217,7 +217,7 @@ std::optional<std::vector<ShaderDiskCacheEntry>> ShaderDiskCacheOpenGL::LoadTran | |||
| 217 | return {}; | 217 | return {}; |
| 218 | } | 218 | } |
| 219 | 219 | ||
| 220 | FileUtil::IOFile file(GetTransferablePath(), "rb"); | 220 | Common::FS::IOFile file(GetTransferablePath(), "rb"); |
| 221 | if (!file.IsOpen()) { | 221 | if (!file.IsOpen()) { |
| 222 | LOG_INFO(Render_OpenGL, "No transferable shader cache found"); | 222 | LOG_INFO(Render_OpenGL, "No transferable shader cache found"); |
| 223 | is_usable = true; | 223 | is_usable = true; |
| @@ -262,7 +262,7 @@ std::vector<ShaderDiskCachePrecompiled> ShaderDiskCacheOpenGL::LoadPrecompiled() | |||
| 262 | return {}; | 262 | return {}; |
| 263 | } | 263 | } |
| 264 | 264 | ||
| 265 | FileUtil::IOFile file(GetPrecompiledPath(), "rb"); | 265 | Common::FS::IOFile file(GetPrecompiledPath(), "rb"); |
| 266 | if (!file.IsOpen()) { | 266 | if (!file.IsOpen()) { |
| 267 | LOG_INFO(Render_OpenGL, "No precompiled shader cache found"); | 267 | LOG_INFO(Render_OpenGL, "No precompiled shader cache found"); |
| 268 | return {}; | 268 | return {}; |
| @@ -279,7 +279,7 @@ std::vector<ShaderDiskCachePrecompiled> ShaderDiskCacheOpenGL::LoadPrecompiled() | |||
| 279 | } | 279 | } |
| 280 | 280 | ||
| 281 | std::optional<std::vector<ShaderDiskCachePrecompiled>> ShaderDiskCacheOpenGL::LoadPrecompiledFile( | 281 | std::optional<std::vector<ShaderDiskCachePrecompiled>> ShaderDiskCacheOpenGL::LoadPrecompiledFile( |
| 282 | FileUtil::IOFile& file) { | 282 | Common::FS::IOFile& file) { |
| 283 | // Read compressed file from disk and decompress to virtual precompiled cache file | 283 | // Read compressed file from disk and decompress to virtual precompiled cache file |
| 284 | std::vector<u8> compressed(file.GetSize()); | 284 | std::vector<u8> compressed(file.GetSize()); |
| 285 | file.ReadBytes(compressed.data(), compressed.size()); | 285 | file.ReadBytes(compressed.data(), compressed.size()); |
| @@ -317,7 +317,7 @@ std::optional<std::vector<ShaderDiskCachePrecompiled>> ShaderDiskCacheOpenGL::Lo | |||
| 317 | } | 317 | } |
| 318 | 318 | ||
| 319 | void ShaderDiskCacheOpenGL::InvalidateTransferable() { | 319 | void ShaderDiskCacheOpenGL::InvalidateTransferable() { |
| 320 | if (!FileUtil::Delete(GetTransferablePath())) { | 320 | if (!Common::FS::Delete(GetTransferablePath())) { |
| 321 | LOG_ERROR(Render_OpenGL, "Failed to invalidate transferable file={}", | 321 | LOG_ERROR(Render_OpenGL, "Failed to invalidate transferable file={}", |
| 322 | GetTransferablePath()); | 322 | GetTransferablePath()); |
| 323 | } | 323 | } |
| @@ -328,7 +328,7 @@ void ShaderDiskCacheOpenGL::InvalidatePrecompiled() { | |||
| 328 | // Clear virtaul precompiled cache file | 328 | // Clear virtaul precompiled cache file |
| 329 | precompiled_cache_virtual_file.Resize(0); | 329 | precompiled_cache_virtual_file.Resize(0); |
| 330 | 330 | ||
| 331 | if (!FileUtil::Delete(GetPrecompiledPath())) { | 331 | if (!Common::FS::Delete(GetPrecompiledPath())) { |
| 332 | LOG_ERROR(Render_OpenGL, "Failed to invalidate precompiled file={}", GetPrecompiledPath()); | 332 | LOG_ERROR(Render_OpenGL, "Failed to invalidate precompiled file={}", GetPrecompiledPath()); |
| 333 | } | 333 | } |
| 334 | } | 334 | } |
| @@ -344,7 +344,7 @@ void ShaderDiskCacheOpenGL::SaveEntry(const ShaderDiskCacheEntry& entry) { | |||
| 344 | return; | 344 | return; |
| 345 | } | 345 | } |
| 346 | 346 | ||
| 347 | FileUtil::IOFile file = AppendTransferableFile(); | 347 | Common::FS::IOFile file = AppendTransferableFile(); |
| 348 | if (!file.IsOpen()) { | 348 | if (!file.IsOpen()) { |
| 349 | return; | 349 | return; |
| 350 | } | 350 | } |
| @@ -386,15 +386,15 @@ void ShaderDiskCacheOpenGL::SavePrecompiled(u64 unique_identifier, GLuint progra | |||
| 386 | } | 386 | } |
| 387 | } | 387 | } |
| 388 | 388 | ||
| 389 | FileUtil::IOFile ShaderDiskCacheOpenGL::AppendTransferableFile() const { | 389 | Common::FS::IOFile ShaderDiskCacheOpenGL::AppendTransferableFile() const { |
| 390 | if (!EnsureDirectories()) { | 390 | if (!EnsureDirectories()) { |
| 391 | return {}; | 391 | return {}; |
| 392 | } | 392 | } |
| 393 | 393 | ||
| 394 | const auto transferable_path{GetTransferablePath()}; | 394 | const auto transferable_path{GetTransferablePath()}; |
| 395 | const bool existed = FileUtil::Exists(transferable_path); | 395 | const bool existed = Common::FS::Exists(transferable_path); |
| 396 | 396 | ||
| 397 | FileUtil::IOFile file(transferable_path, "ab"); | 397 | Common::FS::IOFile file(transferable_path, "ab"); |
| 398 | if (!file.IsOpen()) { | 398 | if (!file.IsOpen()) { |
| 399 | LOG_ERROR(Render_OpenGL, "Failed to open transferable cache in path={}", transferable_path); | 399 | LOG_ERROR(Render_OpenGL, "Failed to open transferable cache in path={}", transferable_path); |
| 400 | return {}; | 400 | return {}; |
| @@ -426,7 +426,7 @@ void ShaderDiskCacheOpenGL::SaveVirtualPrecompiledFile() { | |||
| 426 | Common::Compression::CompressDataZSTDDefault(uncompressed.data(), uncompressed.size()); | 426 | Common::Compression::CompressDataZSTDDefault(uncompressed.data(), uncompressed.size()); |
| 427 | 427 | ||
| 428 | const auto precompiled_path{GetPrecompiledPath()}; | 428 | const auto precompiled_path{GetPrecompiledPath()}; |
| 429 | FileUtil::IOFile file(precompiled_path, "wb"); | 429 | Common::FS::IOFile file(precompiled_path, "wb"); |
| 430 | 430 | ||
| 431 | if (!file.IsOpen()) { | 431 | if (!file.IsOpen()) { |
| 432 | LOG_ERROR(Render_OpenGL, "Failed to open precompiled cache in path={}", precompiled_path); | 432 | LOG_ERROR(Render_OpenGL, "Failed to open precompiled cache in path={}", precompiled_path); |
| @@ -440,24 +440,24 @@ void ShaderDiskCacheOpenGL::SaveVirtualPrecompiledFile() { | |||
| 440 | 440 | ||
| 441 | bool ShaderDiskCacheOpenGL::EnsureDirectories() const { | 441 | bool ShaderDiskCacheOpenGL::EnsureDirectories() const { |
| 442 | const auto CreateDir = [](const std::string& dir) { | 442 | const auto CreateDir = [](const std::string& dir) { |
| 443 | if (!FileUtil::CreateDir(dir)) { | 443 | if (!Common::FS::CreateDir(dir)) { |
| 444 | LOG_ERROR(Render_OpenGL, "Failed to create directory={}", dir); | 444 | LOG_ERROR(Render_OpenGL, "Failed to create directory={}", dir); |
| 445 | return false; | 445 | return false; |
| 446 | } | 446 | } |
| 447 | return true; | 447 | return true; |
| 448 | }; | 448 | }; |
| 449 | 449 | ||
| 450 | return CreateDir(FileUtil::GetUserPath(FileUtil::UserPath::ShaderDir)) && | 450 | return CreateDir(Common::FS::GetUserPath(Common::FS::UserPath::ShaderDir)) && |
| 451 | CreateDir(GetBaseDir()) && CreateDir(GetTransferableDir()) && | 451 | CreateDir(GetBaseDir()) && CreateDir(GetTransferableDir()) && |
| 452 | CreateDir(GetPrecompiledDir()); | 452 | CreateDir(GetPrecompiledDir()); |
| 453 | } | 453 | } |
| 454 | 454 | ||
| 455 | std::string ShaderDiskCacheOpenGL::GetTransferablePath() const { | 455 | std::string ShaderDiskCacheOpenGL::GetTransferablePath() const { |
| 456 | return FileUtil::SanitizePath(GetTransferableDir() + DIR_SEP_CHR + GetTitleID() + ".bin"); | 456 | return Common::FS::SanitizePath(GetTransferableDir() + DIR_SEP_CHR + GetTitleID() + ".bin"); |
| 457 | } | 457 | } |
| 458 | 458 | ||
| 459 | std::string ShaderDiskCacheOpenGL::GetPrecompiledPath() const { | 459 | std::string ShaderDiskCacheOpenGL::GetPrecompiledPath() const { |
| 460 | return FileUtil::SanitizePath(GetPrecompiledDir() + DIR_SEP_CHR + GetTitleID() + ".bin"); | 460 | return Common::FS::SanitizePath(GetPrecompiledDir() + DIR_SEP_CHR + GetTitleID() + ".bin"); |
| 461 | } | 461 | } |
| 462 | 462 | ||
| 463 | std::string ShaderDiskCacheOpenGL::GetTransferableDir() const { | 463 | std::string ShaderDiskCacheOpenGL::GetTransferableDir() const { |
| @@ -469,7 +469,7 @@ std::string ShaderDiskCacheOpenGL::GetPrecompiledDir() const { | |||
| 469 | } | 469 | } |
| 470 | 470 | ||
| 471 | std::string ShaderDiskCacheOpenGL::GetBaseDir() const { | 471 | std::string ShaderDiskCacheOpenGL::GetBaseDir() const { |
| 472 | return FileUtil::GetUserPath(FileUtil::UserPath::ShaderDir) + DIR_SEP "opengl"; | 472 | return Common::FS::GetUserPath(Common::FS::UserPath::ShaderDir) + DIR_SEP "opengl"; |
| 473 | } | 473 | } |
| 474 | 474 | ||
| 475 | std::string ShaderDiskCacheOpenGL::GetTitleID() const { | 475 | std::string ShaderDiskCacheOpenGL::GetTitleID() const { |
diff --git a/src/video_core/renderer_opengl/gl_shader_disk_cache.h b/src/video_core/renderer_opengl/gl_shader_disk_cache.h index a79cef0e9..db2bb73bc 100644 --- a/src/video_core/renderer_opengl/gl_shader_disk_cache.h +++ b/src/video_core/renderer_opengl/gl_shader_disk_cache.h | |||
| @@ -25,7 +25,7 @@ namespace Core { | |||
| 25 | class System; | 25 | class System; |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | namespace FileUtil { | 28 | namespace Common::FS { |
| 29 | class IOFile; | 29 | class IOFile; |
| 30 | } | 30 | } |
| 31 | 31 | ||
| @@ -38,9 +38,9 @@ struct ShaderDiskCacheEntry { | |||
| 38 | ShaderDiskCacheEntry(); | 38 | ShaderDiskCacheEntry(); |
| 39 | ~ShaderDiskCacheEntry(); | 39 | ~ShaderDiskCacheEntry(); |
| 40 | 40 | ||
| 41 | bool Load(FileUtil::IOFile& file); | 41 | bool Load(Common::FS::IOFile& file); |
| 42 | 42 | ||
| 43 | bool Save(FileUtil::IOFile& file) const; | 43 | bool Save(Common::FS::IOFile& file) const; |
| 44 | 44 | ||
| 45 | bool HasProgramA() const { | 45 | bool HasProgramA() const { |
| 46 | return !code.empty() && !code_b.empty(); | 46 | return !code.empty() && !code_b.empty(); |
| @@ -97,10 +97,10 @@ public: | |||
| 97 | private: | 97 | private: |
| 98 | /// Loads the transferable cache. Returns empty on failure. | 98 | /// Loads the transferable cache. Returns empty on failure. |
| 99 | std::optional<std::vector<ShaderDiskCachePrecompiled>> LoadPrecompiledFile( | 99 | std::optional<std::vector<ShaderDiskCachePrecompiled>> LoadPrecompiledFile( |
| 100 | FileUtil::IOFile& file); | 100 | Common::FS::IOFile& file); |
| 101 | 101 | ||
| 102 | /// Opens current game's transferable file and write it's header if it doesn't exist | 102 | /// Opens current game's transferable file and write it's header if it doesn't exist |
| 103 | FileUtil::IOFile AppendTransferableFile() const; | 103 | Common::FS::IOFile AppendTransferableFile() const; |
| 104 | 104 | ||
| 105 | /// Save precompiled header to precompiled_cache_in_memory | 105 | /// Save precompiled header to precompiled_cache_in_memory |
| 106 | void SavePrecompiledHeaderToVirtualPrecompiledCache(); | 106 | void SavePrecompiledHeaderToVirtualPrecompiledCache(); |
diff --git a/src/video_core/renderer_vulkan/nsight_aftermath_tracker.cpp b/src/video_core/renderer_vulkan/nsight_aftermath_tracker.cpp index 435c8c1b8..5b01020ec 100644 --- a/src/video_core/renderer_vulkan/nsight_aftermath_tracker.cpp +++ b/src/video_core/renderer_vulkan/nsight_aftermath_tracker.cpp | |||
| @@ -65,10 +65,10 @@ bool NsightAftermathTracker::Initialize() { | |||
| 65 | return false; | 65 | return false; |
| 66 | } | 66 | } |
| 67 | 67 | ||
| 68 | dump_dir = FileUtil::GetUserPath(FileUtil::UserPath::LogDir) + "gpucrash"; | 68 | dump_dir = Common::FS::GetUserPath(Common::FS::UserPath::LogDir) + "gpucrash"; |
| 69 | 69 | ||
| 70 | (void)FileUtil::DeleteDirRecursively(dump_dir); | 70 | (void)Common::FS::DeleteDirRecursively(dump_dir); |
| 71 | if (!FileUtil::CreateDir(dump_dir)) { | 71 | if (!Common::FS::CreateDir(dump_dir)) { |
| 72 | LOG_ERROR(Render_Vulkan, "Failed to create Nsight Aftermath dump directory"); | 72 | LOG_ERROR(Render_Vulkan, "Failed to create Nsight Aftermath dump directory"); |
| 73 | return false; | 73 | return false; |
| 74 | } | 74 | } |
| @@ -106,7 +106,7 @@ void NsightAftermathTracker::SaveShader(const std::vector<u32>& spirv) const { | |||
| 106 | return; | 106 | return; |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | FileUtil::IOFile file(fmt::format("{}/source_{:016x}.spv", dump_dir, hash.hash), "wb"); | 109 | Common::FS::IOFile file(fmt::format("{}/source_{:016x}.spv", dump_dir, hash.hash), "wb"); |
| 110 | if (!file.IsOpen()) { | 110 | if (!file.IsOpen()) { |
| 111 | LOG_ERROR(Render_Vulkan, "Failed to dump SPIR-V module with hash={:016x}", hash.hash); | 111 | LOG_ERROR(Render_Vulkan, "Failed to dump SPIR-V module with hash={:016x}", hash.hash); |
| 112 | return; | 112 | return; |
| @@ -156,12 +156,12 @@ void NsightAftermathTracker::OnGpuCrashDumpCallback(const void* gpu_crash_dump, | |||
| 156 | }(); | 156 | }(); |
| 157 | 157 | ||
| 158 | std::string_view dump_view(static_cast<const char*>(gpu_crash_dump), gpu_crash_dump_size); | 158 | std::string_view dump_view(static_cast<const char*>(gpu_crash_dump), gpu_crash_dump_size); |
| 159 | if (FileUtil::WriteStringToFile(false, base_name, dump_view) != gpu_crash_dump_size) { | 159 | if (Common::FS::WriteStringToFile(false, base_name, dump_view) != gpu_crash_dump_size) { |
| 160 | LOG_ERROR(Render_Vulkan, "Failed to write dump file"); | 160 | LOG_ERROR(Render_Vulkan, "Failed to write dump file"); |
| 161 | return; | 161 | return; |
| 162 | } | 162 | } |
| 163 | const std::string_view json_view(json.data(), json.size()); | 163 | const std::string_view json_view(json.data(), json.size()); |
| 164 | if (FileUtil::WriteStringToFile(true, base_name + ".json", json_view) != json.size()) { | 164 | if (Common::FS::WriteStringToFile(true, base_name + ".json", json_view) != json.size()) { |
| 165 | LOG_ERROR(Render_Vulkan, "Failed to write JSON"); | 165 | LOG_ERROR(Render_Vulkan, "Failed to write JSON"); |
| 166 | return; | 166 | return; |
| 167 | } | 167 | } |
| @@ -180,7 +180,7 @@ void NsightAftermathTracker::OnShaderDebugInfoCallback(const void* shader_debug_ | |||
| 180 | 180 | ||
| 181 | const std::string path = | 181 | const std::string path = |
| 182 | fmt::format("{}/shader_{:016x}{:016x}.nvdbg", dump_dir, identifier.id[0], identifier.id[1]); | 182 | fmt::format("{}/shader_{:016x}{:016x}.nvdbg", dump_dir, identifier.id[0], identifier.id[1]); |
| 183 | FileUtil::IOFile file(path, "wb"); | 183 | Common::FS::IOFile file(path, "wb"); |
| 184 | if (!file.IsOpen()) { | 184 | if (!file.IsOpen()) { |
| 185 | LOG_ERROR(Render_Vulkan, "Failed to create file {}", path); | 185 | LOG_ERROR(Render_Vulkan, "Failed to create file {}", path); |
| 186 | return; | 186 | return; |
diff --git a/src/video_core/renderer_vulkan/renderer_vulkan.cpp b/src/video_core/renderer_vulkan/renderer_vulkan.cpp index 2258479f5..0c62c8061 100644 --- a/src/video_core/renderer_vulkan/renderer_vulkan.cpp +++ b/src/video_core/renderer_vulkan/renderer_vulkan.cpp | |||
| @@ -78,7 +78,7 @@ Common::DynamicLibrary OpenVulkanLibrary() { | |||
| 78 | if (!libvulkan_env || !library.Open(libvulkan_env)) { | 78 | if (!libvulkan_env || !library.Open(libvulkan_env)) { |
| 79 | // Use the libvulkan.dylib from the application bundle. | 79 | // Use the libvulkan.dylib from the application bundle. |
| 80 | const std::string filename = | 80 | const std::string filename = |
| 81 | FileUtil::GetBundleDirectory() + "/Contents/Frameworks/libvulkan.dylib"; | 81 | Common::FS::GetBundleDirectory() + "/Contents/Frameworks/libvulkan.dylib"; |
| 82 | library.Open(filename.c_str()); | 82 | library.Open(filename.c_str()); |
| 83 | } | 83 | } |
| 84 | #else | 84 | #else |
diff --git a/src/yuzu/applets/profile_select.cpp b/src/yuzu/applets/profile_select.cpp index 4bc8ee726..dca8835ed 100644 --- a/src/yuzu/applets/profile_select.cpp +++ b/src/yuzu/applets/profile_select.cpp | |||
| @@ -26,7 +26,7 @@ QString FormatUserEntryText(const QString& username, Common::UUID uuid) { | |||
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | QString GetImagePath(Common::UUID uuid) { | 28 | QString GetImagePath(Common::UUID uuid) { |
| 29 | const auto path = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 29 | const auto path = Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + |
| 30 | "/system/save/8000000000000010/su/avators/" + uuid.FormatSwitch() + ".jpg"; | 30 | "/system/save/8000000000000010/su/avators/" + uuid.FormatSwitch() + ".jpg"; |
| 31 | return QString::fromStdString(path); | 31 | return QString::fromStdString(path); |
| 32 | } | 32 | } |
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index cb71b8d11..a372190cc 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp | |||
| @@ -13,10 +13,12 @@ | |||
| 13 | #include "input_common/udp/client.h" | 13 | #include "input_common/udp/client.h" |
| 14 | #include "yuzu/configuration/config.h" | 14 | #include "yuzu/configuration/config.h" |
| 15 | 15 | ||
| 16 | namespace FS = Common::FS; | ||
| 17 | |||
| 16 | Config::Config(const std::string& config_file, bool is_global) { | 18 | Config::Config(const std::string& config_file, bool is_global) { |
| 17 | // TODO: Don't hardcode the path; let the frontend decide where to put the config files. | 19 | // TODO: Don't hardcode the path; let the frontend decide where to put the config files. |
| 18 | qt_config_loc = FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + config_file; | 20 | qt_config_loc = FS::GetUserPath(FS::UserPath::ConfigDir) + config_file; |
| 19 | FileUtil::CreateFullPath(qt_config_loc); | 21 | FS::CreateFullPath(qt_config_loc); |
| 20 | qt_config = | 22 | qt_config = |
| 21 | std::make_unique<QSettings>(QString::fromStdString(qt_config_loc), QSettings::IniFormat); | 23 | std::make_unique<QSettings>(QString::fromStdString(qt_config_loc), QSettings::IniFormat); |
| 22 | global = is_global; | 24 | global = is_global; |
| @@ -464,41 +466,36 @@ void Config::ReadDataStorageValues() { | |||
| 464 | qt_config->beginGroup(QStringLiteral("Data Storage")); | 466 | qt_config->beginGroup(QStringLiteral("Data Storage")); |
| 465 | 467 | ||
| 466 | Settings::values.use_virtual_sd = ReadSetting(QStringLiteral("use_virtual_sd"), true).toBool(); | 468 | Settings::values.use_virtual_sd = ReadSetting(QStringLiteral("use_virtual_sd"), true).toBool(); |
| 467 | FileUtil::GetUserPath( | 469 | FS::GetUserPath(FS::UserPath::NANDDir, |
| 468 | FileUtil::UserPath::NANDDir, | 470 | qt_config |
| 469 | qt_config | 471 | ->value(QStringLiteral("nand_directory"), |
| 470 | ->value(QStringLiteral("nand_directory"), | 472 | QString::fromStdString(FS::GetUserPath(FS::UserPath::NANDDir))) |
| 471 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir))) | 473 | .toString() |
| 472 | .toString() | 474 | .toStdString()); |
| 473 | .toStdString()); | 475 | FS::GetUserPath(FS::UserPath::SDMCDir, |
| 474 | FileUtil::GetUserPath( | 476 | qt_config |
| 475 | FileUtil::UserPath::SDMCDir, | 477 | ->value(QStringLiteral("sdmc_directory"), |
| 476 | qt_config | 478 | QString::fromStdString(FS::GetUserPath(FS::UserPath::SDMCDir))) |
| 477 | ->value(QStringLiteral("sdmc_directory"), | 479 | .toString() |
| 478 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir))) | 480 | .toStdString()); |
| 479 | .toString() | 481 | FS::GetUserPath(FS::UserPath::LoadDir, |
| 480 | .toStdString()); | 482 | qt_config |
| 481 | FileUtil::GetUserPath( | 483 | ->value(QStringLiteral("load_directory"), |
| 482 | FileUtil::UserPath::LoadDir, | 484 | QString::fromStdString(FS::GetUserPath(FS::UserPath::LoadDir))) |
| 483 | qt_config | 485 | .toString() |
| 484 | ->value(QStringLiteral("load_directory"), | 486 | .toStdString()); |
| 485 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::LoadDir))) | 487 | FS::GetUserPath(FS::UserPath::DumpDir, |
| 486 | .toString() | 488 | qt_config |
| 487 | .toStdString()); | 489 | ->value(QStringLiteral("dump_directory"), |
| 488 | FileUtil::GetUserPath( | 490 | QString::fromStdString(FS::GetUserPath(FS::UserPath::DumpDir))) |
| 489 | FileUtil::UserPath::DumpDir, | 491 | .toString() |
| 490 | qt_config | 492 | .toStdString()); |
| 491 | ->value(QStringLiteral("dump_directory"), | 493 | FS::GetUserPath(FS::UserPath::CacheDir, |
| 492 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::DumpDir))) | 494 | qt_config |
| 493 | .toString() | 495 | ->value(QStringLiteral("cache_directory"), |
| 494 | .toStdString()); | 496 | QString::fromStdString(FS::GetUserPath(FS::UserPath::CacheDir))) |
| 495 | FileUtil::GetUserPath( | 497 | .toString() |
| 496 | FileUtil::UserPath::CacheDir, | 498 | .toStdString()); |
| 497 | qt_config | ||
| 498 | ->value(QStringLiteral("cache_directory"), | ||
| 499 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir))) | ||
| 500 | .toString() | ||
| 501 | .toStdString()); | ||
| 502 | Settings::values.gamecard_inserted = | 499 | Settings::values.gamecard_inserted = |
| 503 | ReadSetting(QStringLiteral("gamecard_inserted"), false).toBool(); | 500 | ReadSetting(QStringLiteral("gamecard_inserted"), false).toBool(); |
| 504 | Settings::values.gamecard_current_game = | 501 | Settings::values.gamecard_current_game = |
| @@ -677,11 +674,11 @@ void Config::ReadScreenshotValues() { | |||
| 677 | 674 | ||
| 678 | UISettings::values.enable_screenshot_save_as = | 675 | UISettings::values.enable_screenshot_save_as = |
| 679 | ReadSetting(QStringLiteral("enable_screenshot_save_as"), true).toBool(); | 676 | ReadSetting(QStringLiteral("enable_screenshot_save_as"), true).toBool(); |
| 680 | FileUtil::GetUserPath( | 677 | FS::GetUserPath( |
| 681 | FileUtil::UserPath::ScreenshotsDir, | 678 | FS::UserPath::ScreenshotsDir, |
| 682 | qt_config | 679 | qt_config |
| 683 | ->value(QStringLiteral("screenshot_path"), QString::fromStdString(FileUtil::GetUserPath( | 680 | ->value(QStringLiteral("screenshot_path"), |
| 684 | FileUtil::UserPath::ScreenshotsDir))) | 681 | QString::fromStdString(FS::GetUserPath(FS::UserPath::ScreenshotsDir))) |
| 685 | .toString() | 682 | .toString() |
| 686 | .toStdString()); | 683 | .toStdString()); |
| 687 | 684 | ||
| @@ -1016,20 +1013,20 @@ void Config::SaveDataStorageValues() { | |||
| 1016 | 1013 | ||
| 1017 | WriteSetting(QStringLiteral("use_virtual_sd"), Settings::values.use_virtual_sd, true); | 1014 | WriteSetting(QStringLiteral("use_virtual_sd"), Settings::values.use_virtual_sd, true); |
| 1018 | WriteSetting(QStringLiteral("nand_directory"), | 1015 | WriteSetting(QStringLiteral("nand_directory"), |
| 1019 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir)), | 1016 | QString::fromStdString(FS::GetUserPath(FS::UserPath::NANDDir)), |
| 1020 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir))); | 1017 | QString::fromStdString(FS::GetUserPath(FS::UserPath::NANDDir))); |
| 1021 | WriteSetting(QStringLiteral("sdmc_directory"), | 1018 | WriteSetting(QStringLiteral("sdmc_directory"), |
| 1022 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)), | 1019 | QString::fromStdString(FS::GetUserPath(FS::UserPath::SDMCDir)), |
| 1023 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir))); | 1020 | QString::fromStdString(FS::GetUserPath(FS::UserPath::SDMCDir))); |
| 1024 | WriteSetting(QStringLiteral("load_directory"), | 1021 | WriteSetting(QStringLiteral("load_directory"), |
| 1025 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::LoadDir)), | 1022 | QString::fromStdString(FS::GetUserPath(FS::UserPath::LoadDir)), |
| 1026 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::LoadDir))); | 1023 | QString::fromStdString(FS::GetUserPath(FS::UserPath::LoadDir))); |
| 1027 | WriteSetting(QStringLiteral("dump_directory"), | 1024 | WriteSetting(QStringLiteral("dump_directory"), |
| 1028 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::DumpDir)), | 1025 | QString::fromStdString(FS::GetUserPath(FS::UserPath::DumpDir)), |
| 1029 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::DumpDir))); | 1026 | QString::fromStdString(FS::GetUserPath(FS::UserPath::DumpDir))); |
| 1030 | WriteSetting(QStringLiteral("cache_directory"), | 1027 | WriteSetting(QStringLiteral("cache_directory"), |
| 1031 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir)), | 1028 | QString::fromStdString(FS::GetUserPath(FS::UserPath::CacheDir)), |
| 1032 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir))); | 1029 | QString::fromStdString(FS::GetUserPath(FS::UserPath::CacheDir))); |
| 1033 | WriteSetting(QStringLiteral("gamecard_inserted"), Settings::values.gamecard_inserted, false); | 1030 | WriteSetting(QStringLiteral("gamecard_inserted"), Settings::values.gamecard_inserted, false); |
| 1034 | WriteSetting(QStringLiteral("gamecard_current_game"), Settings::values.gamecard_current_game, | 1031 | WriteSetting(QStringLiteral("gamecard_current_game"), Settings::values.gamecard_current_game, |
| 1035 | false); | 1032 | false); |
| @@ -1180,7 +1177,7 @@ void Config::SaveScreenshotValues() { | |||
| 1180 | WriteSetting(QStringLiteral("enable_screenshot_save_as"), | 1177 | WriteSetting(QStringLiteral("enable_screenshot_save_as"), |
| 1181 | UISettings::values.enable_screenshot_save_as); | 1178 | UISettings::values.enable_screenshot_save_as); |
| 1182 | WriteSetting(QStringLiteral("screenshot_path"), | 1179 | WriteSetting(QStringLiteral("screenshot_path"), |
| 1183 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::ScreenshotsDir))); | 1180 | QString::fromStdString(FS::GetUserPath(FS::UserPath::ScreenshotsDir))); |
| 1184 | 1181 | ||
| 1185 | qt_config->endGroup(); | 1182 | qt_config->endGroup(); |
| 1186 | } | 1183 | } |
diff --git a/src/yuzu/configuration/configure_debug.cpp b/src/yuzu/configuration/configure_debug.cpp index d0e71dd60..2bfe2c306 100644 --- a/src/yuzu/configuration/configure_debug.cpp +++ b/src/yuzu/configuration/configure_debug.cpp | |||
| @@ -19,7 +19,8 @@ ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::Co | |||
| 19 | SetConfiguration(); | 19 | SetConfiguration(); |
| 20 | 20 | ||
| 21 | connect(ui->open_log_button, &QPushButton::clicked, []() { | 21 | connect(ui->open_log_button, &QPushButton::clicked, []() { |
| 22 | QString path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::LogDir)); | 22 | const auto path = |
| 23 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::LogDir)); | ||
| 23 | QDesktopServices::openUrl(QUrl::fromLocalFile(path)); | 24 | QDesktopServices::openUrl(QUrl::fromLocalFile(path)); |
| 24 | }); | 25 | }); |
| 25 | } | 26 | } |
diff --git a/src/yuzu/configuration/configure_filesystem.cpp b/src/yuzu/configuration/configure_filesystem.cpp index a089f5733..7ab4a80f7 100644 --- a/src/yuzu/configuration/configure_filesystem.cpp +++ b/src/yuzu/configuration/configure_filesystem.cpp | |||
| @@ -42,16 +42,16 @@ ConfigureFilesystem::~ConfigureFilesystem() = default; | |||
| 42 | 42 | ||
| 43 | void ConfigureFilesystem::setConfiguration() { | 43 | void ConfigureFilesystem::setConfiguration() { |
| 44 | ui->nand_directory_edit->setText( | 44 | ui->nand_directory_edit->setText( |
| 45 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir))); | 45 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::NANDDir))); |
| 46 | ui->sdmc_directory_edit->setText( | 46 | ui->sdmc_directory_edit->setText( |
| 47 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir))); | 47 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir))); |
| 48 | ui->gamecard_path_edit->setText(QString::fromStdString(Settings::values.gamecard_path)); | 48 | ui->gamecard_path_edit->setText(QString::fromStdString(Settings::values.gamecard_path)); |
| 49 | ui->dump_path_edit->setText( | 49 | ui->dump_path_edit->setText( |
| 50 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::DumpDir))); | 50 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::DumpDir))); |
| 51 | ui->load_path_edit->setText( | 51 | ui->load_path_edit->setText( |
| 52 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::LoadDir))); | 52 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::LoadDir))); |
| 53 | ui->cache_directory_edit->setText( | 53 | ui->cache_directory_edit->setText( |
| 54 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir))); | 54 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::CacheDir))); |
| 55 | 55 | ||
| 56 | ui->gamecard_inserted->setChecked(Settings::values.gamecard_inserted); | 56 | ui->gamecard_inserted->setChecked(Settings::values.gamecard_inserted); |
| 57 | ui->gamecard_current_game->setChecked(Settings::values.gamecard_current_game); | 57 | ui->gamecard_current_game->setChecked(Settings::values.gamecard_current_game); |
| @@ -64,14 +64,16 @@ void ConfigureFilesystem::setConfiguration() { | |||
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | void ConfigureFilesystem::applyConfiguration() { | 66 | void ConfigureFilesystem::applyConfiguration() { |
| 67 | FileUtil::GetUserPath(FileUtil::UserPath::NANDDir, | 67 | Common::FS::GetUserPath(Common::FS::UserPath::NANDDir, |
| 68 | ui->nand_directory_edit->text().toStdString()); | 68 | ui->nand_directory_edit->text().toStdString()); |
| 69 | FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir, | 69 | Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir, |
| 70 | ui->sdmc_directory_edit->text().toStdString()); | 70 | ui->sdmc_directory_edit->text().toStdString()); |
| 71 | FileUtil::GetUserPath(FileUtil::UserPath::DumpDir, ui->dump_path_edit->text().toStdString()); | 71 | Common::FS::GetUserPath(Common::FS::UserPath::DumpDir, |
| 72 | FileUtil::GetUserPath(FileUtil::UserPath::LoadDir, ui->load_path_edit->text().toStdString()); | 72 | ui->dump_path_edit->text().toStdString()); |
| 73 | FileUtil::GetUserPath(FileUtil::UserPath::CacheDir, | 73 | Common::FS::GetUserPath(Common::FS::UserPath::LoadDir, |
| 74 | ui->cache_directory_edit->text().toStdString()); | 74 | ui->load_path_edit->text().toStdString()); |
| 75 | Common::FS::GetUserPath(Common::FS::UserPath::CacheDir, | ||
| 76 | ui->cache_directory_edit->text().toStdString()); | ||
| 75 | Settings::values.gamecard_path = ui->gamecard_path_edit->text().toStdString(); | 77 | Settings::values.gamecard_path = ui->gamecard_path_edit->text().toStdString(); |
| 76 | 78 | ||
| 77 | Settings::values.gamecard_inserted = ui->gamecard_inserted->isChecked(); | 79 | Settings::values.gamecard_inserted = ui->gamecard_inserted->isChecked(); |
| @@ -121,12 +123,13 @@ void ConfigureFilesystem::SetDirectory(DirectoryTarget target, QLineEdit* edit) | |||
| 121 | } | 123 | } |
| 122 | 124 | ||
| 123 | void ConfigureFilesystem::ResetMetadata() { | 125 | void ConfigureFilesystem::ResetMetadata() { |
| 124 | if (!FileUtil::Exists(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + DIR_SEP + | 126 | if (!Common::FS::Exists(Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + DIR_SEP + |
| 125 | "game_list")) { | 127 | "game_list")) { |
| 126 | QMessageBox::information(this, tr("Reset Metadata Cache"), | 128 | QMessageBox::information(this, tr("Reset Metadata Cache"), |
| 127 | tr("The metadata cache is already empty.")); | 129 | tr("The metadata cache is already empty.")); |
| 128 | } else if (FileUtil::DeleteDirRecursively(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + | 130 | } else if (Common::FS::DeleteDirRecursively( |
| 129 | DIR_SEP + "game_list")) { | 131 | Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + DIR_SEP + |
| 132 | "game_list")) { | ||
| 130 | QMessageBox::information(this, tr("Reset Metadata Cache"), | 133 | QMessageBox::information(this, tr("Reset Metadata Cache"), |
| 131 | tr("The operation completed successfully.")); | 134 | tr("The operation completed successfully.")); |
| 132 | UISettings::values.is_game_list_reload_pending.exchange(true); | 135 | UISettings::values.is_game_list_reload_pending.exchange(true); |
diff --git a/src/yuzu/configuration/configure_per_game_addons.cpp b/src/yuzu/configuration/configure_per_game_addons.cpp index 478d5d3a1..793fd8975 100644 --- a/src/yuzu/configuration/configure_per_game_addons.cpp +++ b/src/yuzu/configuration/configure_per_game_addons.cpp | |||
| @@ -79,8 +79,8 @@ void ConfigurePerGameAddons::ApplyConfiguration() { | |||
| 79 | std::sort(disabled_addons.begin(), disabled_addons.end()); | 79 | std::sort(disabled_addons.begin(), disabled_addons.end()); |
| 80 | std::sort(current.begin(), current.end()); | 80 | std::sort(current.begin(), current.end()); |
| 81 | if (disabled_addons != current) { | 81 | if (disabled_addons != current) { |
| 82 | FileUtil::Delete(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + DIR_SEP + | 82 | Common::FS::Delete(Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + DIR_SEP + |
| 83 | "game_list" + DIR_SEP + fmt::format("{:016X}.pv.txt", title_id)); | 83 | "game_list" + DIR_SEP + fmt::format("{:016X}.pv.txt", title_id)); |
| 84 | } | 84 | } |
| 85 | 85 | ||
| 86 | Settings::values.disabled_addons[title_id] = disabled_addons; | 86 | Settings::values.disabled_addons[title_id] = disabled_addons; |
diff --git a/src/yuzu/configuration/configure_profile_manager.cpp b/src/yuzu/configuration/configure_profile_manager.cpp index f53423440..6334c4c50 100644 --- a/src/yuzu/configuration/configure_profile_manager.cpp +++ b/src/yuzu/configuration/configure_profile_manager.cpp | |||
| @@ -34,7 +34,7 @@ constexpr std::array<u8, 107> backup_jpeg{ | |||
| 34 | }; | 34 | }; |
| 35 | 35 | ||
| 36 | QString GetImagePath(Common::UUID uuid) { | 36 | QString GetImagePath(Common::UUID uuid) { |
| 37 | const auto path = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 37 | const auto path = Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + |
| 38 | "/system/save/8000000000000010/su/avators/" + uuid.FormatSwitch() + ".jpg"; | 38 | "/system/save/8000000000000010/su/avators/" + uuid.FormatSwitch() + ".jpg"; |
| 39 | return QString::fromStdString(path); | 39 | return QString::fromStdString(path); |
| 40 | } | 40 | } |
| @@ -282,7 +282,7 @@ void ConfigureProfileManager::SetUserImage() { | |||
| 282 | } | 282 | } |
| 283 | 283 | ||
| 284 | const auto raw_path = QString::fromStdString( | 284 | const auto raw_path = QString::fromStdString( |
| 285 | FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + "/system/save/8000000000000010"); | 285 | Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + "/system/save/8000000000000010"); |
| 286 | const QFileInfo raw_info{raw_path}; | 286 | const QFileInfo raw_info{raw_path}; |
| 287 | if (raw_info.exists() && !raw_info.isDir() && !QFile::remove(raw_path)) { | 287 | if (raw_info.exists() && !raw_info.isDir() && !QFile::remove(raw_path)) { |
| 288 | QMessageBox::warning(this, tr("Error deleting file"), | 288 | QMessageBox::warning(this, tr("Error deleting file"), |
diff --git a/src/yuzu/configuration/configure_ui.cpp b/src/yuzu/configuration/configure_ui.cpp index 2c20b68d0..dbe3f78c8 100644 --- a/src/yuzu/configuration/configure_ui.cpp +++ b/src/yuzu/configuration/configure_ui.cpp | |||
| @@ -61,9 +61,9 @@ ConfigureUi::ConfigureUi(QWidget* parent) : QWidget(parent), ui(new Ui::Configur | |||
| 61 | // Set screenshot path to user specification. | 61 | // Set screenshot path to user specification. |
| 62 | connect(ui->screenshot_path_button, &QToolButton::pressed, this, [this] { | 62 | connect(ui->screenshot_path_button, &QToolButton::pressed, this, [this] { |
| 63 | const QString& filename = | 63 | const QString& filename = |
| 64 | QFileDialog::getExistingDirectory( | 64 | QFileDialog::getExistingDirectory(this, tr("Select Screenshots Path..."), |
| 65 | this, tr("Select Screenshots Path..."), | 65 | QString::fromStdString(Common::FS::GetUserPath( |
| 66 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::ScreenshotsDir))) + | 66 | Common::FS::UserPath::ScreenshotsDir))) + |
| 67 | QDir::separator(); | 67 | QDir::separator(); |
| 68 | if (!filename.isEmpty()) { | 68 | if (!filename.isEmpty()) { |
| 69 | ui->screenshot_path_edit->setText(filename); | 69 | ui->screenshot_path_edit->setText(filename); |
| @@ -82,8 +82,8 @@ void ConfigureUi::ApplyConfiguration() { | |||
| 82 | UISettings::values.row_2_text_id = ui->row_2_text_combobox->currentData().toUInt(); | 82 | UISettings::values.row_2_text_id = ui->row_2_text_combobox->currentData().toUInt(); |
| 83 | 83 | ||
| 84 | UISettings::values.enable_screenshot_save_as = ui->enable_screenshot_save_as->isChecked(); | 84 | UISettings::values.enable_screenshot_save_as = ui->enable_screenshot_save_as->isChecked(); |
| 85 | FileUtil::GetUserPath(FileUtil::UserPath::ScreenshotsDir, | 85 | Common::FS::GetUserPath(Common::FS::UserPath::ScreenshotsDir, |
| 86 | ui->screenshot_path_edit->text().toStdString()); | 86 | ui->screenshot_path_edit->text().toStdString()); |
| 87 | Settings::Apply(); | 87 | Settings::Apply(); |
| 88 | } | 88 | } |
| 89 | 89 | ||
| @@ -101,7 +101,7 @@ void ConfigureUi::SetConfiguration() { | |||
| 101 | 101 | ||
| 102 | ui->enable_screenshot_save_as->setChecked(UISettings::values.enable_screenshot_save_as); | 102 | ui->enable_screenshot_save_as->setChecked(UISettings::values.enable_screenshot_save_as); |
| 103 | ui->screenshot_path_edit->setText( | 103 | ui->screenshot_path_edit->setText( |
| 104 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::ScreenshotsDir))); | 104 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::ScreenshotsDir))); |
| 105 | } | 105 | } |
| 106 | 106 | ||
| 107 | void ConfigureUi::changeEvent(QEvent* event) { | 107 | void ConfigureUi::changeEvent(QEvent* event) { |
diff --git a/src/yuzu/game_list_worker.cpp b/src/yuzu/game_list_worker.cpp index 643ca6491..de343be7f 100644 --- a/src/yuzu/game_list_worker.cpp +++ b/src/yuzu/game_list_worker.cpp | |||
| @@ -39,12 +39,12 @@ QString GetGameListCachedObject(const std::string& filename, const std::string& | |||
| 39 | return generator(); | 39 | return generator(); |
| 40 | } | 40 | } |
| 41 | 41 | ||
| 42 | const auto path = FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + DIR_SEP + "game_list" + | 42 | const auto path = Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + DIR_SEP + |
| 43 | DIR_SEP + filename + '.' + ext; | 43 | "game_list" + DIR_SEP + filename + '.' + ext; |
| 44 | 44 | ||
| 45 | FileUtil::CreateFullPath(path); | 45 | Common::FS::CreateFullPath(path); |
| 46 | 46 | ||
| 47 | if (!FileUtil::Exists(path)) { | 47 | if (!Common::FS::Exists(path)) { |
| 48 | const auto str = generator(); | 48 | const auto str = generator(); |
| 49 | 49 | ||
| 50 | QFile file{QString::fromStdString(path)}; | 50 | QFile file{QString::fromStdString(path)}; |
| @@ -70,14 +70,14 @@ std::pair<std::vector<u8>, std::string> GetGameListCachedObject( | |||
| 70 | return generator(); | 70 | return generator(); |
| 71 | } | 71 | } |
| 72 | 72 | ||
| 73 | const auto path1 = FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + DIR_SEP + "game_list" + | 73 | const auto path1 = Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + DIR_SEP + |
| 74 | DIR_SEP + filename + ".jpeg"; | 74 | "game_list" + DIR_SEP + filename + ".jpeg"; |
| 75 | const auto path2 = FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + DIR_SEP + "game_list" + | 75 | const auto path2 = Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + DIR_SEP + |
| 76 | DIR_SEP + filename + ".appname.txt"; | 76 | "game_list" + DIR_SEP + filename + ".appname.txt"; |
| 77 | 77 | ||
| 78 | FileUtil::CreateFullPath(path1); | 78 | Common::FS::CreateFullPath(path1); |
| 79 | 79 | ||
| 80 | if (!FileUtil::Exists(path1) || !FileUtil::Exists(path2)) { | 80 | if (!Common::FS::Exists(path1) || !Common::FS::Exists(path2)) { |
| 81 | const auto [icon, nacp] = generator(); | 81 | const auto [icon, nacp] = generator(); |
| 82 | 82 | ||
| 83 | QFile file1{QString::fromStdString(path1)}; | 83 | QFile file1{QString::fromStdString(path1)}; |
| @@ -208,7 +208,7 @@ QList<QStandardItem*> MakeGameListEntry(const std::string& path, const std::stri | |||
| 208 | file_type_string, program_id), | 208 | file_type_string, program_id), |
| 209 | new GameListItemCompat(compatibility), | 209 | new GameListItemCompat(compatibility), |
| 210 | new GameListItem(file_type_string), | 210 | new GameListItem(file_type_string), |
| 211 | new GameListItemSize(FileUtil::GetSize(path)), | 211 | new GameListItemSize(Common::FS::GetSize(path)), |
| 212 | }; | 212 | }; |
| 213 | 213 | ||
| 214 | if (UISettings::values.show_add_ons) { | 214 | if (UISettings::values.show_add_ons) { |
| @@ -289,7 +289,7 @@ void GameListWorker::ScanFileSystem(ScanTarget target, const std::string& dir_pa | |||
| 289 | } | 289 | } |
| 290 | 290 | ||
| 291 | const std::string physical_name = directory + DIR_SEP + virtual_name; | 291 | const std::string physical_name = directory + DIR_SEP + virtual_name; |
| 292 | const bool is_dir = FileUtil::IsDirectory(physical_name); | 292 | const bool is_dir = Common::FS::IsDirectory(physical_name); |
| 293 | if (!is_dir && | 293 | if (!is_dir && |
| 294 | (HasSupportedFileExtension(physical_name) || IsExtractedNCAMain(physical_name))) { | 294 | (HasSupportedFileExtension(physical_name) || IsExtractedNCAMain(physical_name))) { |
| 295 | const auto file = vfs->OpenFile(physical_name, FileSys::Mode::Read); | 295 | const auto file = vfs->OpenFile(physical_name, FileSys::Mode::Read); |
| @@ -345,7 +345,7 @@ void GameListWorker::ScanFileSystem(ScanTarget target, const std::string& dir_pa | |||
| 345 | return true; | 345 | return true; |
| 346 | }; | 346 | }; |
| 347 | 347 | ||
| 348 | FileUtil::ForeachDirectoryEntry(nullptr, dir_path, callback); | 348 | Common::FS::ForeachDirectoryEntry(nullptr, dir_path, callback); |
| 349 | } | 349 | } |
| 350 | 350 | ||
| 351 | void GameListWorker::run() { | 351 | void GameListWorker::run() { |
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 592993c36..871dd2d5a 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -177,8 +177,8 @@ static void InitializeLogging() { | |||
| 177 | log_filter.ParseFilterString(Settings::values.log_filter); | 177 | log_filter.ParseFilterString(Settings::values.log_filter); |
| 178 | Log::SetGlobalFilter(log_filter); | 178 | Log::SetGlobalFilter(log_filter); |
| 179 | 179 | ||
| 180 | const std::string& log_dir = FileUtil::GetUserPath(FileUtil::UserPath::LogDir); | 180 | const std::string& log_dir = Common::FS::GetUserPath(Common::FS::UserPath::LogDir); |
| 181 | FileUtil::CreateFullPath(log_dir); | 181 | Common::FS::CreateFullPath(log_dir); |
| 182 | Log::AddBackend(std::make_unique<Log::FileBackend>(log_dir + LOG_FILE)); | 182 | Log::AddBackend(std::make_unique<Log::FileBackend>(log_dir + LOG_FILE)); |
| 183 | #ifdef _WIN32 | 183 | #ifdef _WIN32 |
| 184 | Log::AddBackend(std::make_unique<Log::DebuggerBackend>()); | 184 | Log::AddBackend(std::make_unique<Log::DebuggerBackend>()); |
| @@ -1121,7 +1121,7 @@ void GMainWindow::BootGame(const QString& filename) { | |||
| 1121 | title_name = metadata.first->GetApplicationName(); | 1121 | title_name = metadata.first->GetApplicationName(); |
| 1122 | } | 1122 | } |
| 1123 | if (res != Loader::ResultStatus::Success || title_name.empty()) { | 1123 | if (res != Loader::ResultStatus::Success || title_name.empty()) { |
| 1124 | title_name = FileUtil::GetFilename(filename.toStdString()); | 1124 | title_name = Common::FS::GetFilename(filename.toStdString()); |
| 1125 | } | 1125 | } |
| 1126 | LOG_INFO(Frontend, "Booting game: {:016X} | {} | {}", title_id, title_name, title_version); | 1126 | LOG_INFO(Frontend, "Booting game: {:016X} | {} | {}", title_id, title_name, title_version); |
| 1127 | UpdateWindowTitle(title_name, title_version); | 1127 | UpdateWindowTitle(title_name, title_version); |
| @@ -1259,7 +1259,7 @@ void GMainWindow::OnGameListOpenFolder(GameListOpenTarget target, const std::str | |||
| 1259 | switch (target) { | 1259 | switch (target) { |
| 1260 | case GameListOpenTarget::SaveData: { | 1260 | case GameListOpenTarget::SaveData: { |
| 1261 | open_target = tr("Save Data"); | 1261 | open_target = tr("Save Data"); |
| 1262 | const std::string nand_dir = FileUtil::GetUserPath(FileUtil::UserPath::NANDDir); | 1262 | const std::string nand_dir = Common::FS::GetUserPath(Common::FS::UserPath::NANDDir); |
| 1263 | 1263 | ||
| 1264 | if (has_user_save) { | 1264 | if (has_user_save) { |
| 1265 | // User save data | 1265 | // User save data |
| @@ -1294,16 +1294,16 @@ void GMainWindow::OnGameListOpenFolder(GameListOpenTarget target, const std::str | |||
| 1294 | FileSys::SaveDataType::SaveData, program_id, {}, 0); | 1294 | FileSys::SaveDataType::SaveData, program_id, {}, 0); |
| 1295 | } | 1295 | } |
| 1296 | 1296 | ||
| 1297 | if (!FileUtil::Exists(path)) { | 1297 | if (!Common::FS::Exists(path)) { |
| 1298 | FileUtil::CreateFullPath(path); | 1298 | Common::FS::CreateFullPath(path); |
| 1299 | FileUtil::CreateDir(path); | 1299 | Common::FS::CreateDir(path); |
| 1300 | } | 1300 | } |
| 1301 | 1301 | ||
| 1302 | break; | 1302 | break; |
| 1303 | } | 1303 | } |
| 1304 | case GameListOpenTarget::ModData: { | 1304 | case GameListOpenTarget::ModData: { |
| 1305 | open_target = tr("Mod Data"); | 1305 | open_target = tr("Mod Data"); |
| 1306 | const auto load_dir = FileUtil::GetUserPath(FileUtil::UserPath::LoadDir); | 1306 | const auto load_dir = Common::FS::GetUserPath(Common::FS::UserPath::LoadDir); |
| 1307 | path = fmt::format("{}{:016X}", load_dir, program_id); | 1307 | path = fmt::format("{}{:016X}", load_dir, program_id); |
| 1308 | break; | 1308 | break; |
| 1309 | } | 1309 | } |
| @@ -1325,7 +1325,7 @@ void GMainWindow::OnGameListOpenFolder(GameListOpenTarget target, const std::str | |||
| 1325 | 1325 | ||
| 1326 | void GMainWindow::OnTransferableShaderCacheOpenFile(u64 program_id) { | 1326 | void GMainWindow::OnTransferableShaderCacheOpenFile(u64 program_id) { |
| 1327 | const QString shader_dir = | 1327 | const QString shader_dir = |
| 1328 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::ShaderDir)); | 1328 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::ShaderDir)); |
| 1329 | const QString transferable_shader_cache_folder_path = | 1329 | const QString transferable_shader_cache_folder_path = |
| 1330 | shader_dir + QStringLiteral("opengl") + QDir::separator() + QStringLiteral("transferable"); | 1330 | shader_dir + QStringLiteral("opengl") + QDir::separator() + QStringLiteral("transferable"); |
| 1331 | const QString transferable_shader_cache_file_path = | 1331 | const QString transferable_shader_cache_file_path = |
| @@ -1428,8 +1428,8 @@ void GMainWindow::OnGameListRemoveInstalledEntry(u64 program_id, InstalledEntryT | |||
| 1428 | RemoveAddOnContent(program_id, entry_type); | 1428 | RemoveAddOnContent(program_id, entry_type); |
| 1429 | break; | 1429 | break; |
| 1430 | } | 1430 | } |
| 1431 | FileUtil::DeleteDirRecursively(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + DIR_SEP + | 1431 | Common::FS::DeleteDirRecursively(Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + |
| 1432 | "game_list"); | 1432 | DIR_SEP + "game_list"); |
| 1433 | game_list->PopulateAsync(UISettings::values.game_dirs); | 1433 | game_list->PopulateAsync(UISettings::values.game_dirs); |
| 1434 | } | 1434 | } |
| 1435 | 1435 | ||
| @@ -1519,7 +1519,7 @@ void GMainWindow::OnGameListRemoveFile(u64 program_id, GameListRemoveTarget targ | |||
| 1519 | 1519 | ||
| 1520 | void GMainWindow::RemoveTransferableShaderCache(u64 program_id) { | 1520 | void GMainWindow::RemoveTransferableShaderCache(u64 program_id) { |
| 1521 | const QString shader_dir = | 1521 | const QString shader_dir = |
| 1522 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::ShaderDir)); | 1522 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::ShaderDir)); |
| 1523 | const QString transferable_shader_cache_folder_path = | 1523 | const QString transferable_shader_cache_folder_path = |
| 1524 | shader_dir + QStringLiteral("opengl") + QDir::separator() + QStringLiteral("transferable"); | 1524 | shader_dir + QStringLiteral("opengl") + QDir::separator() + QStringLiteral("transferable"); |
| 1525 | const QString transferable_shader_cache_file_path = | 1525 | const QString transferable_shader_cache_file_path = |
| @@ -1543,7 +1543,7 @@ void GMainWindow::RemoveTransferableShaderCache(u64 program_id) { | |||
| 1543 | 1543 | ||
| 1544 | void GMainWindow::RemoveCustomConfiguration(u64 program_id) { | 1544 | void GMainWindow::RemoveCustomConfiguration(u64 program_id) { |
| 1545 | const QString config_dir = | 1545 | const QString config_dir = |
| 1546 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir)); | 1546 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::ConfigDir)); |
| 1547 | const QString custom_config_file_path = | 1547 | const QString custom_config_file_path = |
| 1548 | config_dir + QString::fromStdString(fmt::format("{:016X}.ini", program_id)); | 1548 | config_dir + QString::fromStdString(fmt::format("{:016X}.ini", program_id)); |
| 1549 | 1549 | ||
| @@ -1590,7 +1590,7 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa | |||
| 1590 | } | 1590 | } |
| 1591 | 1591 | ||
| 1592 | const auto path = fmt::format( | 1592 | const auto path = fmt::format( |
| 1593 | "{}{:016X}/romfs", FileUtil::GetUserPath(FileUtil::UserPath::DumpDir), *romfs_title_id); | 1593 | "{}{:016X}/romfs", Common::FS::GetUserPath(Common::FS::UserPath::DumpDir), *romfs_title_id); |
| 1594 | 1594 | ||
| 1595 | FileSys::VirtualFile romfs; | 1595 | FileSys::VirtualFile romfs; |
| 1596 | 1596 | ||
| @@ -1670,13 +1670,13 @@ void GMainWindow::OnGameListNavigateToGamedbEntry(u64 program_id, | |||
| 1670 | void GMainWindow::OnGameListOpenDirectory(const QString& directory) { | 1670 | void GMainWindow::OnGameListOpenDirectory(const QString& directory) { |
| 1671 | QString path; | 1671 | QString path; |
| 1672 | if (directory == QStringLiteral("SDMC")) { | 1672 | if (directory == QStringLiteral("SDMC")) { |
| 1673 | path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir) + | 1673 | path = QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir) + |
| 1674 | "Nintendo/Contents/registered"); | 1674 | "Nintendo/Contents/registered"); |
| 1675 | } else if (directory == QStringLiteral("UserNAND")) { | 1675 | } else if (directory == QStringLiteral("UserNAND")) { |
| 1676 | path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 1676 | path = QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + |
| 1677 | "user/Contents/registered"); | 1677 | "user/Contents/registered"); |
| 1678 | } else if (directory == QStringLiteral("SysNAND")) { | 1678 | } else if (directory == QStringLiteral("SysNAND")) { |
| 1679 | path = QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::NANDDir) + | 1679 | path = QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::NANDDir) + |
| 1680 | "system/Contents/registered"); | 1680 | "system/Contents/registered"); |
| 1681 | } else { | 1681 | } else { |
| 1682 | path = directory; | 1682 | path = directory; |
| @@ -1690,8 +1690,10 @@ void GMainWindow::OnGameListOpenDirectory(const QString& directory) { | |||
| 1690 | 1690 | ||
| 1691 | void GMainWindow::OnGameListAddDirectory() { | 1691 | void GMainWindow::OnGameListAddDirectory() { |
| 1692 | const QString dir_path = QFileDialog::getExistingDirectory(this, tr("Select Directory")); | 1692 | const QString dir_path = QFileDialog::getExistingDirectory(this, tr("Select Directory")); |
| 1693 | if (dir_path.isEmpty()) | 1693 | if (dir_path.isEmpty()) { |
| 1694 | return; | 1694 | return; |
| 1695 | } | ||
| 1696 | |||
| 1695 | UISettings::GameDir game_dir{dir_path, false, true}; | 1697 | UISettings::GameDir game_dir{dir_path, false, true}; |
| 1696 | if (!UISettings::values.game_dirs.contains(game_dir)) { | 1698 | if (!UISettings::values.game_dirs.contains(game_dir)) { |
| 1697 | UISettings::values.game_dirs.append(game_dir); | 1699 | UISettings::values.game_dirs.append(game_dir); |
| @@ -1882,8 +1884,8 @@ void GMainWindow::OnMenuInstallToNAND() { | |||
| 1882 | : tr("%n file(s) failed to install\n", "", failed_files.size())); | 1884 | : tr("%n file(s) failed to install\n", "", failed_files.size())); |
| 1883 | 1885 | ||
| 1884 | QMessageBox::information(this, tr("Install Results"), install_results); | 1886 | QMessageBox::information(this, tr("Install Results"), install_results); |
| 1885 | FileUtil::DeleteDirRecursively(FileUtil::GetUserPath(FileUtil::UserPath::CacheDir) + DIR_SEP + | 1887 | Common::FS::DeleteDirRecursively(Common::FS::GetUserPath(Common::FS::UserPath::CacheDir) + |
| 1886 | "game_list"); | 1888 | DIR_SEP + "game_list"); |
| 1887 | game_list->PopulateAsync(UISettings::values.game_dirs); | 1889 | game_list->PopulateAsync(UISettings::values.game_dirs); |
| 1888 | ui.action_Install_File_NAND->setEnabled(true); | 1890 | ui.action_Install_File_NAND->setEnabled(true); |
| 1889 | } | 1891 | } |
| @@ -2302,7 +2304,7 @@ void GMainWindow::LoadAmiibo(const QString& filename) { | |||
| 2302 | 2304 | ||
| 2303 | void GMainWindow::OnOpenYuzuFolder() { | 2305 | void GMainWindow::OnOpenYuzuFolder() { |
| 2304 | QDesktopServices::openUrl(QUrl::fromLocalFile( | 2306 | QDesktopServices::openUrl(QUrl::fromLocalFile( |
| 2305 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::UserDir)))); | 2307 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::UserDir)))); |
| 2306 | } | 2308 | } |
| 2307 | 2309 | ||
| 2308 | void GMainWindow::OnAbout() { | 2310 | void GMainWindow::OnAbout() { |
| @@ -2324,7 +2326,7 @@ void GMainWindow::OnCaptureScreenshot() { | |||
| 2324 | 2326 | ||
| 2325 | const u64 title_id = Core::System::GetInstance().CurrentProcess()->GetTitleID(); | 2327 | const u64 title_id = Core::System::GetInstance().CurrentProcess()->GetTitleID(); |
| 2326 | const auto screenshot_path = | 2328 | const auto screenshot_path = |
| 2327 | QString::fromStdString(FileUtil::GetUserPath(FileUtil::UserPath::ScreenshotsDir)); | 2329 | QString::fromStdString(Common::FS::GetUserPath(Common::FS::UserPath::ScreenshotsDir)); |
| 2328 | const auto date = | 2330 | const auto date = |
| 2329 | QDateTime::currentDateTime().toString(QStringLiteral("yyyy-MM-dd_hh-mm-ss-zzz")); | 2331 | QDateTime::currentDateTime().toString(QStringLiteral("yyyy-MM-dd_hh-mm-ss-zzz")); |
| 2330 | QString filename = QStringLiteral("%1%2_%3.png") | 2332 | QString filename = QStringLiteral("%1%2_%3.png") |
| @@ -2527,18 +2529,18 @@ void GMainWindow::OnReinitializeKeys(ReinitializeKeyBehavior behavior) { | |||
| 2527 | if (res == QMessageBox::Cancel) | 2529 | if (res == QMessageBox::Cancel) |
| 2528 | return; | 2530 | return; |
| 2529 | 2531 | ||
| 2530 | FileUtil::Delete(FileUtil::GetUserPath(FileUtil::UserPath::KeysDir) + | 2532 | Common::FS::Delete(Common::FS::GetUserPath(Common::FS::UserPath::KeysDir) + |
| 2531 | "prod.keys_autogenerated"); | 2533 | "prod.keys_autogenerated"); |
| 2532 | FileUtil::Delete(FileUtil::GetUserPath(FileUtil::UserPath::KeysDir) + | 2534 | Common::FS::Delete(Common::FS::GetUserPath(Common::FS::UserPath::KeysDir) + |
| 2533 | "console.keys_autogenerated"); | 2535 | "console.keys_autogenerated"); |
| 2534 | FileUtil::Delete(FileUtil::GetUserPath(FileUtil::UserPath::KeysDir) + | 2536 | Common::FS::Delete(Common::FS::GetUserPath(Common::FS::UserPath::KeysDir) + |
| 2535 | "title.keys_autogenerated"); | 2537 | "title.keys_autogenerated"); |
| 2536 | } | 2538 | } |
| 2537 | 2539 | ||
| 2538 | Core::Crypto::KeyManager& keys = Core::Crypto::KeyManager::Instance(); | 2540 | Core::Crypto::KeyManager& keys = Core::Crypto::KeyManager::Instance(); |
| 2539 | if (keys.BaseDeriveNecessary()) { | 2541 | if (keys.BaseDeriveNecessary()) { |
| 2540 | Core::Crypto::PartitionDataManager pdm{vfs->OpenDirectory( | 2542 | Core::Crypto::PartitionDataManager pdm{vfs->OpenDirectory( |
| 2541 | FileUtil::GetUserPath(FileUtil::UserPath::SysDataDir), FileSys::Mode::Read)}; | 2543 | Common::FS::GetUserPath(Common::FS::UserPath::SysDataDir), FileSys::Mode::Read)}; |
| 2542 | 2544 | ||
| 2543 | const auto function = [this, &keys, &pdm] { | 2545 | const auto function = [this, &keys, &pdm] { |
| 2544 | keys.PopulateFromPartitionData(pdm); | 2546 | keys.PopulateFromPartitionData(pdm); |
| @@ -2870,7 +2872,7 @@ int main(int argc, char* argv[]) { | |||
| 2870 | // If you start a bundle (binary) on OSX without the Terminal, the working directory is "/". | 2872 | // If you start a bundle (binary) on OSX without the Terminal, the working directory is "/". |
| 2871 | // But since we require the working directory to be the executable path for the location of | 2873 | // But since we require the working directory to be the executable path for the location of |
| 2872 | // the user folder in the Qt Frontend, we need to cd into that working directory | 2874 | // the user folder in the Qt Frontend, we need to cd into that working directory |
| 2873 | const std::string bin_path = FileUtil::GetBundleDirectory() + DIR_SEP + ".."; | 2875 | const std::string bin_path = Common::FS::GetBundleDirectory() + DIR_SEP + ".."; |
| 2874 | chdir(bin_path.c_str()); | 2876 | chdir(bin_path.c_str()); |
| 2875 | #endif | 2877 | #endif |
| 2876 | 2878 | ||
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index c2a2982fb..8a63fd191 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -16,9 +16,11 @@ | |||
| 16 | #include "yuzu_cmd/config.h" | 16 | #include "yuzu_cmd/config.h" |
| 17 | #include "yuzu_cmd/default_ini.h" | 17 | #include "yuzu_cmd/default_ini.h" |
| 18 | 18 | ||
| 19 | namespace FS = Common::FS; | ||
| 20 | |||
| 19 | Config::Config() { | 21 | Config::Config() { |
| 20 | // TODO: Don't hardcode the path; let the frontend decide where to put the config files. | 22 | // TODO: Don't hardcode the path; let the frontend decide where to put the config files. |
| 21 | sdl2_config_loc = FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + "sdl2-config.ini"; | 23 | sdl2_config_loc = FS::GetUserPath(FS::UserPath::ConfigDir) + "sdl2-config.ini"; |
| 22 | sdl2_config = std::make_unique<INIReader>(sdl2_config_loc); | 24 | sdl2_config = std::make_unique<INIReader>(sdl2_config_loc); |
| 23 | 25 | ||
| 24 | Reload(); | 26 | Reload(); |
| @@ -31,8 +33,8 @@ bool Config::LoadINI(const std::string& default_contents, bool retry) { | |||
| 31 | if (sdl2_config->ParseError() < 0) { | 33 | if (sdl2_config->ParseError() < 0) { |
| 32 | if (retry) { | 34 | if (retry) { |
| 33 | LOG_WARNING(Config, "Failed to load {}. Creating file from defaults...", location); | 35 | LOG_WARNING(Config, "Failed to load {}. Creating file from defaults...", location); |
| 34 | FileUtil::CreateFullPath(location); | 36 | FS::CreateFullPath(location); |
| 35 | FileUtil::WriteStringToFile(true, location, default_contents); | 37 | FS::WriteStringToFile(true, location, default_contents); |
| 36 | sdl2_config = std::make_unique<INIReader>(location); // Reopen file | 38 | sdl2_config = std::make_unique<INIReader>(location); // Reopen file |
| 37 | 39 | ||
| 38 | return LoadINI(default_contents, false); | 40 | return LoadINI(default_contents, false); |
| @@ -315,21 +317,21 @@ void Config::ReadValues() { | |||
| 315 | // Data Storage | 317 | // Data Storage |
| 316 | Settings::values.use_virtual_sd = | 318 | Settings::values.use_virtual_sd = |
| 317 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); | 319 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); |
| 318 | FileUtil::GetUserPath(FileUtil::UserPath::NANDDir, | 320 | FS::GetUserPath( |
| 319 | sdl2_config->Get("Data Storage", "nand_directory", | 321 | FS::UserPath::NANDDir, |
| 320 | FileUtil::GetUserPath(FileUtil::UserPath::NANDDir))); | 322 | sdl2_config->Get("Data Storage", "nand_directory", FS::GetUserPath(FS::UserPath::NANDDir))); |
| 321 | FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir, | 323 | FS::GetUserPath( |
| 322 | sdl2_config->Get("Data Storage", "sdmc_directory", | 324 | FS::UserPath::SDMCDir, |
| 323 | FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir))); | 325 | sdl2_config->Get("Data Storage", "sdmc_directory", FS::GetUserPath(FS::UserPath::SDMCDir))); |
| 324 | FileUtil::GetUserPath(FileUtil::UserPath::LoadDir, | 326 | FS::GetUserPath( |
| 325 | sdl2_config->Get("Data Storage", "load_directory", | 327 | FS::UserPath::LoadDir, |
| 326 | FileUtil::GetUserPath(FileUtil::UserPath::LoadDir))); | 328 | sdl2_config->Get("Data Storage", "load_directory", FS::GetUserPath(FS::UserPath::LoadDir))); |
| 327 | FileUtil::GetUserPath(FileUtil::UserPath::DumpDir, | 329 | FS::GetUserPath( |
| 328 | sdl2_config->Get("Data Storage", "dump_directory", | 330 | FS::UserPath::DumpDir, |
| 329 | FileUtil::GetUserPath(FileUtil::UserPath::DumpDir))); | 331 | sdl2_config->Get("Data Storage", "dump_directory", FS::GetUserPath(FS::UserPath::DumpDir))); |
| 330 | FileUtil::GetUserPath(FileUtil::UserPath::CacheDir, | 332 | FS::GetUserPath(FS::UserPath::CacheDir, |
| 331 | sdl2_config->Get("Data Storage", "cache_directory", | 333 | sdl2_config->Get("Data Storage", "cache_directory", |
| 332 | FileUtil::GetUserPath(FileUtil::UserPath::CacheDir))); | 334 | FS::GetUserPath(FS::UserPath::CacheDir))); |
| 333 | Settings::values.gamecard_inserted = | 335 | Settings::values.gamecard_inserted = |
| 334 | sdl2_config->GetBoolean("Data Storage", "gamecard_inserted", false); | 336 | sdl2_config->GetBoolean("Data Storage", "gamecard_inserted", false); |
| 335 | Settings::values.gamecard_current_game = | 337 | Settings::values.gamecard_current_game = |
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 512b060a7..3f2f61ca0 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp | |||
| @@ -82,8 +82,8 @@ static void InitializeLogging() { | |||
| 82 | 82 | ||
| 83 | Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>()); | 83 | Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>()); |
| 84 | 84 | ||
| 85 | const std::string& log_dir = FileUtil::GetUserPath(FileUtil::UserPath::LogDir); | 85 | const std::string& log_dir = Common::FS::GetUserPath(Common::FS::UserPath::LogDir); |
| 86 | FileUtil::CreateFullPath(log_dir); | 86 | Common::FS::CreateFullPath(log_dir); |
| 87 | Log::AddBackend(std::make_unique<Log::FileBackend>(log_dir + LOG_FILE)); | 87 | Log::AddBackend(std::make_unique<Log::FileBackend>(log_dir + LOG_FILE)); |
| 88 | #ifdef _WIN32 | 88 | #ifdef _WIN32 |
| 89 | Log::AddBackend(std::make_unique<Log::DebuggerBackend>()); | 89 | Log::AddBackend(std::make_unique<Log::DebuggerBackend>()); |
diff --git a/src/yuzu_tester/config.cpp b/src/yuzu_tester/config.cpp index acb22885e..74022af23 100644 --- a/src/yuzu_tester/config.cpp +++ b/src/yuzu_tester/config.cpp | |||
| @@ -15,10 +15,11 @@ | |||
| 15 | #include "yuzu_tester/config.h" | 15 | #include "yuzu_tester/config.h" |
| 16 | #include "yuzu_tester/default_ini.h" | 16 | #include "yuzu_tester/default_ini.h" |
| 17 | 17 | ||
| 18 | namespace FS = Common::FS; | ||
| 19 | |||
| 18 | Config::Config() { | 20 | Config::Config() { |
| 19 | // TODO: Don't hardcode the path; let the frontend decide where to put the config files. | 21 | // TODO: Don't hardcode the path; let the frontend decide where to put the config files. |
| 20 | sdl2_config_loc = | 22 | sdl2_config_loc = FS::GetUserPath(FS::UserPath::ConfigDir) + "sdl2-tester-config.ini"; |
| 21 | FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + "sdl2-tester-config.ini"; | ||
| 22 | sdl2_config = std::make_unique<INIReader>(sdl2_config_loc); | 23 | sdl2_config = std::make_unique<INIReader>(sdl2_config_loc); |
| 23 | 24 | ||
| 24 | Reload(); | 25 | Reload(); |
| @@ -31,8 +32,8 @@ bool Config::LoadINI(const std::string& default_contents, bool retry) { | |||
| 31 | if (sdl2_config->ParseError() < 0) { | 32 | if (sdl2_config->ParseError() < 0) { |
| 32 | if (retry) { | 33 | if (retry) { |
| 33 | LOG_WARNING(Config, "Failed to load {}. Creating file from defaults...", location); | 34 | LOG_WARNING(Config, "Failed to load {}. Creating file from defaults...", location); |
| 34 | FileUtil::CreateFullPath(location); | 35 | FS::CreateFullPath(location); |
| 35 | FileUtil::WriteStringToFile(true, default_contents, location); | 36 | FS::WriteStringToFile(true, default_contents, location); |
| 36 | sdl2_config = std::make_unique<INIReader>(location); // Reopen file | 37 | sdl2_config = std::make_unique<INIReader>(location); // Reopen file |
| 37 | 38 | ||
| 38 | return LoadINI(default_contents, false); | 39 | return LoadINI(default_contents, false); |
| @@ -87,12 +88,12 @@ void Config::ReadValues() { | |||
| 87 | // Data Storage | 88 | // Data Storage |
| 88 | Settings::values.use_virtual_sd = | 89 | Settings::values.use_virtual_sd = |
| 89 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); | 90 | sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true); |
| 90 | FileUtil::GetUserPath(FileUtil::UserPath::NANDDir, | 91 | FS::GetUserPath(Common::FS::UserPath::NANDDir, |
| 91 | sdl2_config->Get("Data Storage", "nand_directory", | 92 | sdl2_config->Get("Data Storage", "nand_directory", |
| 92 | FileUtil::GetUserPath(FileUtil::UserPath::NANDDir))); | 93 | Common::FS::GetUserPath(Common::FS::UserPath::NANDDir))); |
| 93 | FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir, | 94 | FS::GetUserPath(Common::FS::UserPath::SDMCDir, |
| 94 | sdl2_config->Get("Data Storage", "sdmc_directory", | 95 | sdl2_config->Get("Data Storage", "sdmc_directory", |
| 95 | FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir))); | 96 | Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir))); |
| 96 | 97 | ||
| 97 | // System | 98 | // System |
| 98 | Settings::values.current_user = std::clamp<int>( | 99 | Settings::values.current_user = std::clamp<int>( |
diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp index 083667baf..7c5ac5681 100644 --- a/src/yuzu_tester/yuzu.cpp +++ b/src/yuzu_tester/yuzu.cpp | |||
| @@ -79,8 +79,8 @@ static void InitializeLogging(bool console) { | |||
| 79 | if (console) | 79 | if (console) |
| 80 | Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>()); | 80 | Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>()); |
| 81 | 81 | ||
| 82 | const std::string& log_dir = FileUtil::GetUserPath(FileUtil::UserPath::LogDir); | 82 | const std::string& log_dir = Common::FS::GetUserPath(Common::FS::UserPath::LogDir); |
| 83 | FileUtil::CreateFullPath(log_dir); | 83 | Common::FS::CreateFullPath(log_dir); |
| 84 | Log::AddBackend(std::make_unique<Log::FileBackend>(log_dir + LOG_FILE)); | 84 | Log::AddBackend(std::make_unique<Log::FileBackend>(log_dir + LOG_FILE)); |
| 85 | #ifdef _WIN32 | 85 | #ifdef _WIN32 |
| 86 | Log::AddBackend(std::make_unique<Log::DebuggerBackend>()); | 86 | Log::AddBackend(std::make_unique<Log::DebuggerBackend>()); |