Ecosyste.ms: Advisories
An open API service providing security vulnerability metadata for many open source software ecosystems.
Security Advisories: GSA_kwCzR0hTQS02NDl4LWh4ZngtNTdqMs4AA73H
Vitess vulnerable to infinite memory consumption and vtgate crash
Summary
When executing the following simple query, the vtgate
will go into an endless loop that also keeps consuming memory and eventually will OOM.
Details
When running the following query, the evalengine
will try evaluate it and runs forever.
select _utf16 0xFF
The source of the bug lies in the collation logic that we have. The bug applies to all utf16
, utf32
and ucs2
encodings. In general, the bug is there for any encoding where the minimal byte length for a single character is more than 1 byte.
The decoding functions for these collations all implement logic like the following to enforce the minimal character length:
The problem is that all the callers of DecodeRune
expect progress by returning the number of bytes consumed. This means that if there's only 1 byte left in an input, it will here return still 0
and the caller(s) don't consume the character.
One example of such a caller is the following:
The logic here moves forward the pointer in the input []byte
but if DecodeRune
returns 0
in case of error, it will keep running forever. The OOM happens since it keeps adding the ?
as the invalid character to the destination buffer infinitely, growing forever until it runs out of memory.
The fix here would be to always return forward progress also on invalid strings.
There's also a separate bug here that even if progress is guaranteed, select _utf16 0xFF
will return the wrong result currently. MySQL will pad here the input when the _utf16
introducer is used with leading 0x00
bytes and then decode to UTF-16, resulting in the output of ÿ
here.
PoC
select _utf16 0xFF
Impact
Denial of service attack by triggering unbounded memory usage.
Permalink: https://github.com/advisories/GHSA-649x-hxfx-57j2JSON: https://advisories.ecosyste.ms/api/v1/advisories/GSA_kwCzR0hTQS02NDl4LWh4ZngtNTdqMs4AA73H
Source: GitHub Advisory Database
Origin: Unspecified
Severity: Moderate
Classification: General
Published: 7 months ago
Updated: 6 months ago
CVSS Score: 4.9
CVSS vector: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H
Identifiers: GHSA-649x-hxfx-57j2, CVE-2024-32886
References:
- https://github.com/vitessio/vitess/security/advisories/GHSA-649x-hxfx-57j2
- https://github.com/vitessio/vitess/commit/2fd5ba1dbf6e9b32fdfdaf869d130066b1b5c0df
- https://github.com/vitessio/vitess/commit/9df4b66550e46b5d7079e21ed0e1b0f49f92b055
- https://github.com/vitessio/vitess/commit/c46dc5b6a4329a10589ca928392218d96031ac8d
- https://github.com/vitessio/vitess/commit/d438adf7e34a6cf00fe441db80842ec669a99202
- https://github.com/vitessio/vitess/blob/8f6cfaaa643a08dc111395a75a2d250ee746cfa8/go/mysql/collations/charset/convert.go#L73-L79
- https://github.com/vitessio/vitess/blob/8f6cfaaa643a08dc111395a75a2d250ee746cfa8/go/mysql/collations/charset/unicode/utf16.go#L69-L71
- https://nvd.nist.gov/vuln/detail/CVE-2024-32886
- https://github.com/advisories/GHSA-649x-hxfx-57j2
Blast Radius: 11.6
Affected Packages
go:vitess.io/vitess
Dependent packages: 203Dependent repositories: 235
Downloads:
Affected Version Ranges: >= 0.19.0, < 0.19.4, >= 0.18.0, < 0.18.5, < 0.17.7
Fixed in: 0.19.4, 0.18.5, 0.17.7
All affected versions: 0.7.0, 0.8.0, 0.9.0, 0.9.1, 0.9.2, 0.10.0, 0.10.1, 0.10.2, 0.10.3, 0.10.4, 0.10.5, 0.11.0, 0.11.1, 0.11.2, 0.11.3, 0.11.4, 0.12.0, 0.12.1, 0.12.2, 0.12.3, 0.12.4, 0.12.5, 0.12.6, 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.14.0, 0.14.1, 0.14.2, 0.14.4, 0.14.5, 0.15.0, 0.15.1, 0.15.2, 0.15.3, 0.15.4, 0.15.5, 0.16.0, 0.16.1, 0.16.2, 0.16.3, 0.16.4, 0.16.5, 0.16.6, 0.16.7, 0.17.0, 0.17.1, 0.17.2, 0.17.3, 0.17.4, 0.17.5, 0.17.6, 0.18.0, 0.18.1, 0.18.2, 0.18.3, 0.18.4, 0.19.0, 0.19.1, 0.19.2, 0.19.3
All unaffected versions: 0.17.7, 0.18.5, 0.18.6, 0.18.7, 0.18.8, 0.19.4, 0.19.5, 0.19.6, 0.19.7, 0.20.0, 0.20.1, 0.20.2, 0.20.3, 0.21.0, 2.0.0, 2.1.0, 2.1.1
go:github.com/vitessio/vitess
Dependent packages: 30Dependent repositories: 24
Downloads:
Affected Version Ranges: < 17.0.7, >= 18.0.0, < 18.0.5, >= 19.0.0, < 19.0.4
Fixed in: 17.0.7, 18.0.5, 19.0.4
All affected versions: 0.7.0, 0.8.0, 0.9.0, 0.9.1, 0.9.2, 0.10.0, 0.10.1, 0.10.2, 0.10.3, 0.10.4, 0.10.5, 0.11.0, 0.11.1, 0.11.2, 0.11.3, 0.11.4, 0.12.0, 0.12.1, 0.12.2, 0.12.3, 0.12.4, 0.12.5, 0.12.6, 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.14.0, 0.14.1, 0.14.2, 0.14.4, 0.14.5, 0.15.0, 0.15.1, 0.15.2, 0.15.3, 0.15.4, 0.15.5, 0.16.0, 0.16.1, 0.16.2, 0.16.3, 0.16.4, 0.16.5, 0.16.6, 0.16.7, 0.17.0, 0.17.1, 0.17.2, 0.17.3, 0.17.4, 0.17.5, 0.17.6, 0.17.7, 0.18.0, 0.18.1, 0.18.2, 0.18.3, 0.18.4, 0.18.5, 0.18.6, 0.18.7, 0.18.8, 0.19.0, 0.19.1, 0.19.2, 0.19.3, 0.19.4, 0.19.5, 0.19.6, 0.19.7, 0.20.0, 0.20.1, 0.20.2, 0.20.3, 0.21.0, 2.0.0, 2.1.0, 2.1.1
All unaffected versions: