CVE-2022-31104

Wasmtime is a standalone runtime for WebAssembly. In affected versions wasmtime's implementation of the SIMD proposal for WebAssembly on x86_64 contained two distinct bugs in the instruction lowerings implemented in Cranelift. The aarch64 implementation of the simd proposal is not affected. The bugs were presented in the `i8x16.swizzle` and `select` WebAssembly instructions. The `select` instruction is only affected when the inputs are of `v128` type. The correspondingly affected Cranelift instructions were `swizzle` and `select`. The `swizzle` instruction lowering in Cranelift erroneously overwrote the mask input register which could corrupt a constant value, for example. This means that future uses of the same constant may see a different value than the constant itself. The `select` instruction lowering in Cranelift wasn't correctly implemented for vector types that are 128-bits wide. When the condition was 0 the wrong instruction was used to move the correct input to the output of the instruction meaning that only the low 32 bits were moved and the upper 96 bits of the result were left as whatever the register previously contained (instead of the input being moved from). The `select` instruction worked correctly if the condition was nonzero, however. This bug in Wasmtime's implementation of these instructions on x86_64 represents an incorrect implementation of the specified semantics of these instructions according to the WebAssembly specification. The impact of this is benign for hosts running WebAssembly but represents possible vulnerabilities within the execution of a guest program. For example a WebAssembly program could take unintended branches or materialize incorrect values internally which runs the risk of exposing the program itself to other related vulnerabilities which can occur from miscompilations. We have released Wasmtime 0.38.1 and cranelift-codegen (and other associated cranelift crates) 0.85.1 which contain the corrected implementations of these two instructions in Cranelift. If upgrading is not an option for you at this time, you can avoid the vulnerability by disabling the Wasm simd proposal. Additionally the bug is only present on x86_64 hosts. Other aarch64 hosts are not affected. Note that s390x hosts don't yet implement the simd proposal and are not affected.
Configurations

Configuration 1 (hide)

OR cpe:2.3:a:bytecodealliance:cranelift-codegen:*:*:*:*:*:rust:*:*
cpe:2.3:a:bytecodealliance:wasmtime:*:*:*:*:*:rust:*:*

History

08 Jul 2022, 18:29

Type Values Removed Values Added
First Time Bytecodealliance
Bytecodealliance cranelift-codegen
Bytecodealliance wasmtime
CPE cpe:2.3:a:bytecodealliance:wasmtime:*:*:*:*:*:rust:*:*
cpe:2.3:a:bytecodealliance:cranelift-codegen:*:*:*:*:*:rust:*:*
CVSS v2 : unknown
v3 : unknown
v2 : 6.8
v3 : 5.6
References (CONFIRM) https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-jqwc-c49r-4w2x - (CONFIRM) https://github.com/bytecodealliance/wasmtime/security/advisories/GHSA-jqwc-c49r-4w2x - Mitigation, Third Party Advisory
References (MISC) https://webassembly.github.io/spec/ - (MISC) https://webassembly.github.io/spec/ - Third Party Advisory
References (MISC) https://github.com/webassembly/simd - (MISC) https://github.com/webassembly/simd - Third Party Advisory
References (MISC) https://github.com/bytecodealliance/wasmtime/pull/4317 - (MISC) https://github.com/bytecodealliance/wasmtime/pull/4317 - Issue Tracking, Patch, Third Party Advisory
References (MISC) https://docs.rs/wasmtime/latest/wasmtime/struct.Config.html#method.wasm_simd - (MISC) https://docs.rs/wasmtime/latest/wasmtime/struct.Config.html#method.wasm_simd - Third Party Advisory
References (MISC) https://github.com/bytecodealliance/wasmtime/pull/4318 - (MISC) https://github.com/bytecodealliance/wasmtime/pull/4318 - Issue Tracking, Patch, Third Party Advisory

28 Jun 2022, 00:15

Type Values Removed Values Added
New CVE

Information

Published : 2022-06-28 00:15

Updated : 2023-12-10 14:22


NVD link : CVE-2022-31104

Mitre link : CVE-2022-31104

CVE.ORG link : CVE-2022-31104


JSON object : View

Products Affected

bytecodealliance

  • wasmtime
  • cranelift-codegen
CWE
CWE-682

Incorrect Calculation