diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/core.cpp | 2 | ||||
| -rw-r--r-- | src/core/crypto/key_manager.cpp | 286 | ||||
| -rw-r--r-- | src/core/crypto/key_manager.h | 4 | ||||
| -rw-r--r-- | src/core/file_sys/bis_factory.cpp | 2 | ||||
| -rw-r--r-- | src/core/file_sys/registered_cache.cpp | 2 | ||||
| -rw-r--r-- | src/core/file_sys/vfs.cpp | 56 | ||||
| -rw-r--r-- | src/core/file_sys/vfs_libzip.cpp | 2 | ||||
| -rw-r--r-- | src/core/file_sys/vfs_real.cpp | 177 | ||||
| -rw-r--r-- | src/core/file_sys/vfs_real.h | 8 | ||||
| -rw-r--r-- | src/core/file_sys/xts_archive.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/acc/acc.cpp | 8 | ||||
| -rw-r--r-- | src/core/hle/service/acc/profile_manager.cpp | 22 | ||||
| -rw-r--r-- | src/core/hle/service/am/applets/web_browser.cpp | 16 | ||||
| -rw-r--r-- | src/core/hle/service/bcat/backend/boxcat.cpp | 20 | ||||
| -rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 80 | ||||
| -rw-r--r-- | src/core/loader/loader.cpp | 2 | ||||
| -rw-r--r-- | src/core/perf_stats.cpp | 4 | ||||
| -rw-r--r-- | src/core/reporter.cpp | 9 | ||||
| -rw-r--r-- | src/core/settings.cpp | 4 | ||||
| -rw-r--r-- | src/core/telemetry_session.cpp | 12 |
20 files changed, 398 insertions, 320 deletions
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 {}; |