summaryrefslogtreecommitdiff
path: root/Tests
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2022-09-12 18:25:20 +0200
committerAndrew Kaster <andrewdkaster@gmail.com>2022-10-09 10:37:20 -0600
commitff8f3814cc6530f1befac54a9b72c021ada8ddb1 (patch)
tree0b6aaa8e7ad0b405e62f31f552d551393039fa11 /Tests
parent3aeb57ed095d6174f1561a82afa8164923e2849d (diff)
downloadserenity-ff8f3814cc6530f1befac54a9b72c021ada8ddb1.zip
AK+Tests: Avoid creating invalid code points from malformed UTF-8
Instead of doing anything reasonable, Utf8CodePointIterator returned invalid code points, for example U+123456. However, many callers of this iterator assume that a code point is always at most 0x10FFFF. In fact, this is one of two reasons for the following OSS Fuzz issue: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=49184 This is probably a very old bug. In the particular case of URLParser, AK::is_url_code_point got confused: return /* ... */ || code_point >= 0xA0; If code_point is a "code point" beyond 0x10FFFF, this violates the condition given in the preceding comment, but satisfies the given condition, which eventually causes URLParser to crash. This commit fixes *only* the erroneous UTF-8 decoding, and does not fully resolve OSS-Fuzz#49184.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/AK/TestUtf8.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/Tests/AK/TestUtf8.cpp b/Tests/AK/TestUtf8.cpp
index c8d8b5511f..f21a6c8359 100644
--- a/Tests/AK/TestUtf8.cpp
+++ b/Tests/AK/TestUtf8.cpp
@@ -191,6 +191,33 @@ TEST_CASE(decode_invalid_ut8)
}
VERIFY(i == expected_size);
}
+
+ // Test case 5 : Oversized four-byte sequence (e.g. U+123456)
+ {
+ // Want to encode: (000)1 0010 0011 0100 0101 0110
+ // Into mask: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
+ // Shifted: 100 100011 010001 010110
+ // Result: 11110100 10100011 10010001 10010110
+ char raw_data[] = { 'a', (char)0xF4, (char)0xA3, (char)0x91, (char)0x96, 'b' };
+ Utf8View view { StringView { raw_data, 6 } };
+ // This definition seems to suggest that we should instead output multiple replacement characters:
+ // https://encoding.spec.whatwg.org/#ref-for-concept-stream-prepend②
+ // This is supported by the plaintext description and example collection, which annoyingly does not give an example of how to deal with this:
+ // https://www.unicode.org/versions/Unicode14.0.0/ch03.pdf , section "U+FFFD Substitution of Maximal Subparts"
+ // However, that would go against how we deal with several other kinds of errors, so we stick to emitting only one U+FFFD.
+ u32 expected_characters[] = { 'a', 0xFFFD, 'b' };
+ String expected_underlying_bytes[] = { "a", "\xF4\xA3\x91\x96", "b" };
+ size_t expected_size = sizeof(expected_characters) / sizeof(expected_characters[0]);
+ size_t i = 0;
+ for (auto it = view.begin(); it != view.end(); ++it) {
+ u32 code_point = *it;
+ VERIFY(i < expected_size);
+ EXPECT_EQ(code_point, expected_characters[i]);
+ EXPECT_EQ(it.underlying_code_point_bytes(), expected_underlying_bytes[i].bytes());
+ i++;
+ }
+ VERIFY(i == expected_size);
+ }
}
TEST_CASE(trim)