Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong ERC20 decimals computation in SendToCosmos #355

Open
andrey-kuprianov opened this issue Oct 13, 2021 · 0 comments
Open

Wrong ERC20 decimals computation in SendToCosmos #355

andrey-kuprianov opened this issue Oct 13, 2021 · 0 comments

Comments

@andrey-kuprianov
Copy link

Surfaced from @informalsystems audit of Althea Gravity Bridge at commit 19a4cfe

severity: Medium
type: Implementation bug
difficulty: Low

Involved artifacts

Description

When sending tokens from Ethereum to Cosmos using gbt client, the function fraction_to_exponent() computes amounts of tokens to send from the ERC20 representation in the following way:

/// TODO revisit this for higher precision while
/// still representing the number to the user as a float
/// this takes a number like 0.37 eth and turns it into wei
/// or any erc20 with arbitrary decimals
pub fn fraction_to_exponent(num: f64, exponent: u8) -> Uint256 {
    let mut res = num;
    // in order to avoid floating point rounding issues we
    // multiply only by 10 each time. this reduces the rounding
    // errors enough to be ignored
    for _ in 0..exponent {
        res *= 10f64
    }
    (res as u128).into()
}

The arguments to this function are transferred from the command-line arguments, where num represents the amount of tokens as displayed to the user, which then needs to be multiplied to the 10 to the power of exponent (ERC20 decimals). The problem with this code is that it:

  • uses f64 type to represent intermediate results, which looses precision already around 15-16 decimal digits
  • uses u128 as the end result, which has only half the bitrange of u256.

As can be seen from this Rust playground, with the num equal to 1, the function saturates to u128::MAX already at the exponent of 39.

37        -> 9999999999999998358171037484709838848
38        -> 99999999999999978859343891977453174784
39        -> 340282366920938463463374607431768211455
40        -> 340282366920938463463374607431768211455
41        -> 340282366920938463463374607431768211455
u128::MAX -> 340282366920938463463374607431768211455

The fraction_to_exponent() function is used in eth_to_cosmos() as follows:

    let res = web3
        .get_erc20_decimals(erc20_address, ethereum_public_key)
        .await
        .expect("Failed to query ERC20 contract");
    let decimals: u8 = res.to_string().parse().unwrap();
    let amount = fraction_to_exponent(amount, decimals);

    let erc20_balance = web3
        .get_erc20_balance(erc20_address, ethereum_public_key)
        .await
        .expect("Failed to get balance, check ERC20 contract address");


    if erc20_balance == 0u8.into() {
        error!(
            "You have zero {} tokens, please double check your sender and erc20 addresses!",
            erc20_address
        );
        exit(1);
    } else if amount.clone() > erc20_balance {
        error!("Insufficient balance {} > {}", amount, erc20_balance);
        exit(1);
    }

As can be seen, the incorrectly computed, saturated to u128::MAX amount may pass the check, but the user won't actually have the funds to complete the requested operation. Alternatively, the user may have the funds, but the computed amount will differ from the requested one. The transfer from Ethereum to Cosmos will then proceed successfully, but the actually transferred amount may be much smaller than the requested one.

Problem Scenarios

  • a user intends to send funds from Ethereum to Cosmos using an ERC20 contract with moderately large decimals (around 30-40);
  • the operation will succeed, but the actual transferred amount will be much smaller than requested;
  • the user will not discover the error until later, when the funds transferred to Cosmos will be smaller than requested;
  • the Ethereum gas will be effectively lost without user benefit;
  • this may also cause later transaction failures on the Cosmos side due to insufficient funds.

Recommendation

Rework the function fraction_to_exponent(), such that:

  • the function maxes out at 256 bits, not at 128 bits;
  • a warning or error is issued to the user in case the function approaches or reaches the saturation.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant