Alert Source Discuss
🛑 Withdrawn Standards Track: Core

EIP-1706: Disable SSTORE with gasleft lower than call stipend

Authors Alex Forshtat <alex@tabookey.com>, Yoav Weiss <yoav@tabookey.com>
Created 2019-01-15
Discussion Link https://github.com/alex-forshtat-tbk/EIPs/issues/1
Requires EIP-1283

Simple Summary

The proposal that had been accepted changes security properties of a large portion of an existing contract code base that may be infeasible to update and validate. This proposal will make the old assumptions hold even after a network upgrade.

Abstract

EIP-1283 significantly lowers the gas costs of writing to contract’s storage. This created a danger of a new kind of reentrancy attacks on existing contracts as Solidity by default grants a ‘stipend’ of 2300 gas to simple transfer calls. This danger is easily mitigated if SSTORE is not allowed in low gasleft state, without breaking the backward compatibility and the original intention of this EIP.

Motivation

An attack that is described in this article. Explicitly specifying the call stipend as an invariant will have a positive effect on Ethereum protocol security: https://www.reddit.com/r/ethereum/comments/agdqsm/security_alert_ethereum_constantinople/ee5uvjt

Specification

Add the following condition to the SSTORE opcode gas cost calculation:

  • If gasleft is less than or equal to 2300, fail the current call frame with ‘out of gas’ exception.

Rationale

In order to keep in place the implicit reentrancy protection of existing contracts, transactions should not be allowed to modify state if the remaining gas is lower then the 2300 stipend given to ‘transfer’/’send’ in Solidity. These are other proposed remediations and objections to implementing them:

  • Drop EIP-1283 and abstain from modifying SSTORE cost
    • EIP-1283 is an important update
    • It was accepted and implemented on test networks and in clients.
  • Add a new call context that permits LOG opcodes but not changes to state.
    • Adds another call type beyond existing regular/staticcall
  • Raise the cost of SSTORE to dirty slots to >=2300 gas
    • Makes net gas metering much less useful.
  • Reduce the gas stipend
    • Makes the stipend almost useless.
  • Increase the cost of writes to dirty slots back to 5000 gas, but add 4800 gas to the refund counter
    • Still doesn’t make the invariant explicit.
    • Requires callers to supply more gas, just to have it refunded
  • Add contract metadata specifying per-contract EVM version, and only apply SSTORE changes to contracts deployed with the new version.

Backwards Compatibility

Performing SSTORE has never been possible with less than 5000 gas, so it does not introduce incompatibility to the Ethereum mainnet. Gas estimation should account for this requirement.

Test Cases

Test cases for an implementation are mandatory for EIPs that are affecting consensus changes. Other EIPs can choose to include links to test cases if applicable. TODO

Implementation

TODO

Copyright and related rights waived via CC0.

Citation

Please cite this document as:

Alex Forshtat <alex@tabookey.com>, Yoav Weiss <yoav@tabookey.com>, "EIP-1706: Disable SSTORE with gasleft lower than call stipend [DRAFT]," Ethereum Improvement Proposals, no. 1706, January 2019. [Online serial]. Available: https://eips.ethereum.org/EIPS/eip-1706.