GHSA-4chv-4c6w-w254

Suggest an improvement
Source
https://github.com/advisories/GHSA-4chv-4c6w-w254
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/02/GHSA-4chv-4c6w-w254/GHSA-4chv-4c6w-w254.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-4chv-4c6w-w254
Aliases
  • CVE-2026-26267
Published
2026-02-17T21:29:05Z
Modified
2026-02-17T21:56:19.575236Z
Severity
  • 7.5 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N CVSS Calculator
Summary
The rs-soroban-sdk #[contractimpl] macro calls inherent function instead of trait function when names collide
Details

Impact

The #[contractimpl] macro contains a bug in how it wires up function calls.

In Rust, you can define functions on a type in two ways: - Directly on the type as an inherent function:

impl MyContract {
    fn value() { ... }
}
  
- Through a trait
impl Trait for MyContract {
    fn value() { ... }
}
  

These are two separate functions that happen to share the same name. Rust has rules for which one gets called. When you write MyContract::value(), Rust always picks the one defined directly on the type, not the trait version.

The bug is that #[contractimpl] generates code that uses MyContract::value() style calls even when it's processing the trait version. This means if an inherent function is also defined with the same name, the inherent function gets called instead of the trait function.

This means the Wasm-exported entry point silently calls the wrong function when two conditions are met simultaneously: 1. A impl Trait for MyContract block is defined with one or more functions, with #[contractimpl] applied. 2. A impl MyContract block is defined with one or more identically named functions, without #[contractimpl] applied.

If the trait version contains important security checks, such as verifying the caller is authorized, that the inherent version does not, those checks are bypassed. Anyone interacting with the contract through its public interface will call the wrong function.

For example:

#[contract]
pub struct Contract;

impl Contract {
    /// Inherent function — returns 1.
    /// Bug: The macro-generated WASM export is wired up to call this function.
    pub fn value() -> u32 {
        1
    }
}

pub trait Trait {
    fn value(env: Env) -> u32;
}

#[contractimpl]
impl Trait for MyContract {
    /// Trait implementation — returns 2.
    /// Fix: The macro-generated WASM export should call this function.
    fn value() -> u32 {
        2
    }
}

Patches

The problem is patched in soroban-sdk-macros version 25.1.1. The fix changes the generated call from <Type>::func() to &lt;Type as Trait>::func() when processing trait implementations, ensuring Rust resolves to the trait associated function regardless of whether an inherent function with the same name exists.

Users should upgrade to soroban-sdk-macros >= 25.1.1 and recompile their contracts.

Workarounds

If upgrading is not immediately possible, contract developers can avoid the issue by ensuring that no inherent associated function on the contract type shares a name with any function in the trait implementation. Renaming or removing the conflicting inherent function eliminates the ambiguity and causes the macro-generated code to correctly resolve to the trait function.

Database specific
{
    "github_reviewed_at": "2026-02-17T21:29:05Z",
    "severity": "HIGH",
    "cwe_ids": [
        "CWE-670"
    ],
    "github_reviewed": true,
    "nvd_published_at": null
}
References

Affected packages

crates.io / soroban-sdk-macros

Package

Name
soroban-sdk-macros
View open source insights on deps.dev
Purl
pkg:cargo/soroban-sdk-macros

Affected ranges

Type
SEMVER
Events
Introduced
25.0.0
Fixed
25.1.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/02/GHSA-4chv-4c6w-w254/GHSA-4chv-4c6w-w254.json"
last_known_affected_version_range
"<= 25.1.0"

crates.io / soroban-sdk-macros

Package

Name
soroban-sdk-macros
View open source insights on deps.dev
Purl
pkg:cargo/soroban-sdk-macros

Affected ranges

Type
SEMVER
Events
Introduced
23.0.0
Fixed
23.5.2

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/02/GHSA-4chv-4c6w-w254/GHSA-4chv-4c6w-w254.json"
last_known_affected_version_range
"<= 23.5.1"

crates.io / soroban-sdk-macros

Package

Name
soroban-sdk-macros
View open source insights on deps.dev
Purl
pkg:cargo/soroban-sdk-macros

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
22.0.10

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/02/GHSA-4chv-4c6w-w254/GHSA-4chv-4c6w-w254.json"
last_known_affected_version_range
"<= 22.0.9"