{"id":"GHSA-rxhx-9fj6-6h2m","aliases":["RUSTSEC-2022-0010"],"url":"https://o3.security/vulnerability/GHSA-rxhx-9fj6-6h2m","summary":"enum_map macro can cause UB when `Enum` trait is incorrectly implemented","details":"Affected versions of this crate did not properly check the length of an enum when using `enum_map!` macro, trusting user-provided length.\n\nWhen the `LENGTH` in the `Enum` trait does not match the array length in the `EnumArray` trait, this can result in the initialization of the enum map with uninitialized types, which in turn can allow an attacker to execute arbitrary code.\n\nThis problem can only occur with a manual implementation of the Enum trait, it will never occur for enums that use `#[derive(Enum)]`.\n\nExample code that triggers this vulnerability looks like this:\n\n```rust\nenum E {\n    A,\n    B,\n    C,\n}\n\nimpl Enum for E {\n    const LENGTH: usize = 2;\n\n    fn from_usize(value: usize) -> E {\n        match value {\n            0 => E::A,\n            1 => E::B,\n            2 => E::C,\n            _ => unimplemented!(),\n        }\n    }\n\n    fn into_usize(self) -> usize {\n        self as usize\n    }\n}\n\nimpl<V> EnumArray<V> for E {\n    type Array = [V; 3];\n}\n\nlet _map: EnumMap<E, String> = enum_map! { _ => \"Hello, world!\".into() };\n```\n\nThe flaw was corrected in commit [b824e23](https://github.com/xfix/enum-map/commit/b824e232f2fb47837740070096ac253df8e80dfc) by putting `LENGTH` property on sealed trait for macro to read.\n","published":"2022-06-16T23:53:32Z","modified":"2023-11-08T04:22:58.719670Z","cvss":null,"epss":null,"cisaKev":null,"exploitsKnown":0,"affectedPackages":[{"ecosystem":"crates.io","name":"enum-map","fixedVersion":"2.0.2"}],"fix":{"url":"https://github.com/xfix/enum-map/commit/b824e232f2fb47837740070096ac253df8e80dfc","label":"xfix/enum-map@b824e23"},"references":[{"type":"WEB","url":"https://github.com/xfix/enum-map/commit/b824e232f2fb47837740070096ac253df8e80dfc"},{"type":"WEB","url":"https://github.com/rustsec/advisory-db/blob/main/crates/enum-map/RUSTSEC-2022-0010.md"},{"type":"PACKAGE","url":"https://github.com/xfix/enum-map"},{"type":"WEB","url":"https://github.com/xfix/enum-map/blob/master/CHANGELOG.md#version-202"},{"type":"WEB","url":"https://gitlab.com/KonradBorowski/enum-map/-/blob/master/CHANGELOG.md#version-202"},{"type":"WEB","url":"https://rustsec.org/advisories/RUSTSEC-2022-0010.html"}],"provenance":{"sources":["OSV.dev","FIRST.org (EPSS)"],"lastVerified":"2023-11-08T04:22:58.719670Z"}}