diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-02-07 15:20:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-07 15:20:47 +0100 |
commit | 458be11f9396e85df4a49fc8e0d610004d107104 (patch) | |
tree | 54e536198009a6a3c760783b06abd9df19a25de5 /src/core/hle | |
parent | Merge pull request #5885 from MerryMage/ring_buffer-granularity (diff) | |
parent | pl_u: Fix read out of bounds (diff) | |
download | yuzu-458be11f9396e85df4a49fc8e0d610004d107104.tar yuzu-458be11f9396e85df4a49fc8e0d610004d107104.tar.gz yuzu-458be11f9396e85df4a49fc8e0d610004d107104.tar.bz2 yuzu-458be11f9396e85df4a49fc8e0d610004d107104.tar.lz yuzu-458be11f9396e85df4a49fc8e0d610004d107104.tar.xz yuzu-458be11f9396e85df4a49fc8e0d610004d107104.tar.zst yuzu-458be11f9396e85df4a49fc8e0d610004d107104.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/ns/pl_u.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/core/hle/service/ns/pl_u.cpp b/src/core/hle/service/ns/pl_u.cpp index 71c7587db..b6ac0a81a 100644 --- a/src/core/hle/service/ns/pl_u.cpp +++ b/src/core/hle/service/ns/pl_u.cpp @@ -65,13 +65,18 @@ static void DecryptSharedFont(const std::vector<u32>& input, Kernel::PhysicalMem void DecryptSharedFontToTTF(const std::vector<u32>& input, std::vector<u8>& output) { ASSERT_MSG(input[0] == EXPECTED_MAGIC, "Failed to derive key, unexpected magic number"); + if (input.size() < 2) { + LOG_ERROR(Service_NS, "Input font is empty"); + return; + } + const u32 KEY = input[0] ^ EXPECTED_RESULT; // Derive key using an inverse xor std::vector<u32> transformed_font(input.size()); // TODO(ogniK): Figure out a better way to do this std::transform(input.begin(), input.end(), transformed_font.begin(), [&KEY](u32 font_data) { return Common::swap32(font_data ^ KEY); }); - transformed_font[1] = Common::swap32(transformed_font[1]) ^ KEY; // "re-encrypt" the size - std::memcpy(output.data(), transformed_font.data() + 2, transformed_font.size() * sizeof(u32)); + std::memcpy(output.data(), transformed_font.data() + 2, + (transformed_font.size() - 2) * sizeof(u32)); } void EncryptSharedFont(const std::vector<u32>& input, std::vector<u8>& output, |