UNPKG

@ethereumjs/evm

Version:
1,067 lines (945 loc) 37.3 kB
import { Hardfork } from '@ethereumjs/common' import { BIGINT_0, BIGINT_1, BIGINT_3, BIGINT_31, BIGINT_32, BIGINT_64, bigIntToBytes, equalsBytes, generateAddress, generateAddress2, setLengthLeft, } from '@ethereumjs/util' import { activeCostPerStateByte } from '../eip8037.ts' import { EOFErrorMessage } from '../eof/errors.ts' import { EVMError } from '../errors.ts' import { DELEGATION_7702_FLAG } from '../types.ts' import { updateSstoreGasEIP1283 } from './EIP1283.ts' import { updateSstoreGasEIP2200 } from './EIP2200.ts' import { accessAddressEIP2929, accessStorageEIP2929, addAddressToBAL, getAddressAccessCost, warmAddress, } from './EIP2929.ts' import { callFamilyGas, create7928Gas } from './EIP7928.ts' import { createAddressFromStackBigInt, divCeil, maxCallGas, setLengthLeftStorage, subMemUsage, trap, updateSstoreGas, } from './util.ts' import type { Common } from '@ethereumjs/common' import type { Address } from '@ethereumjs/util' import type { RunState } from '../interpreter.ts' const EXTCALL_TARGET_MAX = BigInt(2) ** BigInt(8 * 20) - BigInt(1) async function getCreateTargetAddressBytes( runState: RunState, initCode: Uint8Array, salt?: Uint8Array, ): Promise<Uint8Array> { const caller = runState.interpreter.getAddress() if (salt !== undefined) { return generateAddress2(caller.bytes, salt, initCode) } const account = await runState.stateManager.getAccount(caller) const nonce = account?.nonce ?? BIGINT_0 return generateAddress(caller.bytes, bigIntToBytes(nonce)) } /** * Gets the gas cost for EIP-7702 delegation lookup WITHOUT side effects. * Returns the gas cost and delegation address so callers can check gas * availability before committing to the access. */ async function eip7702GetAccessCost( runState: RunState, common: Common, address: Address, charge2929Gas: boolean, ): Promise<{ gas: bigint; delegationAddress: Uint8Array | null }> { const code = await runState.stateManager.getCode(address) if (equalsBytes(code.slice(0, 3), DELEGATION_7702_FLAG)) { const delegationAddress = code.slice(3, 24) // Just get the cost, don't warm yet const gas = getAddressAccessCost(runState, delegationAddress, common, charge2929Gas) return { gas, delegationAddress } } return { gas: BIGINT_0, delegationAddress: null } } /** * Warms the delegation address for EIP-7702 (call after verifying sufficient gas). */ function eip7702WarmAddress(runState: RunState, delegationAddress: Uint8Array): void { warmAddress(runState, delegationAddress) } /** * This file returns the dynamic parts of opcodes which have dynamic gas * These are not pure functions: some edit the size of the memory * These functions are therefore not read-only */ // The dynamic gas handler methods take a runState and a gas BN // The gas BN is necessary, since the base fee needs to be included, // to calculate the max call gas for the call opcodes correctly. export interface AsyncDynamicGasHandler { (runState: RunState, gas: bigint, common: Common): Promise<bigint> } export interface SyncDynamicGasHandler { (runState: RunState, gas: bigint, common: Common): bigint } export const dynamicGasHandlers: Map<number, AsyncDynamicGasHandler | SyncDynamicGasHandler> = new Map<number, AsyncDynamicGasHandler>([ [ /* EXP */ 0x0a, async function (runState, gas, common): Promise<bigint> { const [_base, exponent] = runState.stack.peek(2) if (exponent === BIGINT_0) { return gas } let byteLength = exponent.toString(2).length / 8 if (byteLength > Math.trunc(byteLength)) { byteLength = Math.trunc(byteLength) + 1 } if (byteLength < 1 || byteLength > 32) { trap(EVMError.errorMessages.OUT_OF_RANGE) } const expPricePerByte = common.param('expByteGas') gas += BigInt(byteLength) * expPricePerByte return gas }, ], [ /* KECCAK256 */ 0x20, async function (runState, gas, common): Promise<bigint> { const [offset, length] = runState.stack.peek(2) gas += subMemUsage(runState, offset, length, common) gas += common.param('keccak256WordGas') * divCeil(length, BIGINT_32) return gas }, ], [ /* BALANCE */ 0x31, async function (runState, gas, common): Promise<bigint> { const address = createAddressFromStackBigInt(runState.stack.peek()[0]) let charge2929Gas = true if (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) { const coldAccessGas = runState.env.accessWitness!.readAccountBasicData(address) gas += coldAccessGas charge2929Gas = coldAccessGas === BIGINT_0 } if (common.isActivatedEIP(2929)) { gas += accessAddressEIP2929(runState, address.bytes, common, charge2929Gas) } return gas }, ], [ /* CALLDATACOPY */ 0x37, async function (runState, gas, common): Promise<bigint> { const [memOffset, _dataOffset, dataLength] = runState.stack.peek(3) gas += subMemUsage(runState, memOffset, dataLength, common) if (dataLength !== BIGINT_0) { gas += common.param('copyGas') * divCeil(dataLength, BIGINT_32) } return gas }, ], [ /* CODECOPY */ 0x39, async function (runState, gas, common): Promise<bigint> { const [memOffset, _codeOffset, dataLength] = runState.stack.peek(3) gas += subMemUsage(runState, memOffset, dataLength, common) if (dataLength !== BIGINT_0) { gas += common.param('copyGas') * divCeil(dataLength, BIGINT_32) if ( (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) && runState.env.chargeCodeAccesses === true ) { const contract = runState.interpreter.getAddress() let codeEnd = _codeOffset + dataLength const codeSize = runState.interpreter.getCodeSize() if (codeEnd > codeSize) { codeEnd = codeSize } gas += runState.env.accessWitness!.readAccountCodeChunks( contract, Number(_codeOffset), Number(codeEnd), ) } } return gas }, ], [ /* EXTCODESIZE */ 0x3b, async function (runState, gas, common): Promise<bigint> { const address = createAddressFromStackBigInt(runState.stack.peek()[0]) let charge2929Gas = true if ( (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) && runState.interpreter._evm.getPrecompile(address) === undefined && !address.equals(createAddressFromStackBigInt(common.param('systemAddress'))) ) { let coldAccessGas = BIGINT_0 coldAccessGas += runState.env.accessWitness!.readAccountBasicData(address) gas += coldAccessGas // if cold access gas has been charged 2929 gas shouldn't be charged charge2929Gas = coldAccessGas === BIGINT_0 } if (common.isActivatedEIP(2929)) { gas += accessAddressEIP2929(runState, address.bytes, common, charge2929Gas) } return gas }, ], [ /* EXTCODECOPY */ 0x3c, async function (runState, gas, common): Promise<bigint> { const [addressBigInt, memOffset, _codeOffset, dataLength] = runState.stack.peek(4) const address = createAddressFromStackBigInt(addressBigInt) gas += subMemUsage(runState, memOffset, dataLength, common) let charge2929Gas = true if ( (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) && runState.interpreter._evm.getPrecompile(address) === undefined && !address.equals(createAddressFromStackBigInt(common.param('systemAddress'))) ) { let coldAccessGas = BIGINT_0 coldAccessGas += runState.env.accessWitness!.readAccountBasicData(address) gas += coldAccessGas // if cold access gas has been charged 2929 gas shouldn't be charged charge2929Gas = coldAccessGas === BIGINT_0 } if (common.isActivatedEIP(2929)) { gas += accessAddressEIP2929(runState, address.bytes, common, charge2929Gas) } if (dataLength !== BIGINT_0) { gas += common.param('copyGas') * divCeil(dataLength, BIGINT_32) if (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) { let codeEnd = _codeOffset + dataLength const codeSize = BigInt((await runState.stateManager.getCode(address)).length) if (codeEnd > codeSize) { codeEnd = codeSize } gas += runState.env.accessWitness!.readAccountCodeChunks( address, Number(_codeOffset), Number(codeEnd), ) } } return gas }, ], [ /* RETURNDATACOPY */ 0x3e, async function (runState, gas, common): Promise<bigint> { const [memOffset, returnDataOffset, dataLength] = runState.stack.peek(3) if (returnDataOffset + dataLength > runState.interpreter.getReturnDataSize()) { // For an EOF contract, the behavior is changed (see EIP 7069) // RETURNDATACOPY in that case does not throw OOG when reading out-of-bounds if (runState.env.eof === undefined) { trap(EVMError.errorMessages.OUT_OF_GAS) } } gas += subMemUsage(runState, memOffset, dataLength, common) if (dataLength !== BIGINT_0) { gas += common.param('copyGas') * divCeil(dataLength, BIGINT_32) } return gas }, ], [ /* EXTCODEHASH */ 0x3f, async function (runState, gas, common): Promise<bigint> { const address = createAddressFromStackBigInt(runState.stack.peek()[0]) let charge2929Gas = true if ( (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) && runState.interpreter._evm.getPrecompile(address) === undefined && !address.equals(createAddressFromStackBigInt(common.param('systemAddress'))) ) { let coldAccessGas = BIGINT_0 coldAccessGas += runState.env.accessWitness!.readAccountCodeHash(address) gas += coldAccessGas charge2929Gas = coldAccessGas === BIGINT_0 } if (common.isActivatedEIP(2929)) { gas += accessAddressEIP2929(runState, address.bytes, common, charge2929Gas) } return gas }, ], [ /* MLOAD */ 0x51, async function (runState, gas, common): Promise<bigint> { const pos = runState.stack.peek()[0] gas += subMemUsage(runState, pos, BIGINT_32, common) return gas }, ], [ /* MSTORE */ 0x52, async function (runState, gas, common): Promise<bigint> { const offset = runState.stack.peek()[0] gas += subMemUsage(runState, offset, BIGINT_32, common) return gas }, ], [ /* MSTORE8 */ 0x53, async function (runState, gas, common): Promise<bigint> { const offset = runState.stack.peek()[0] gas += subMemUsage(runState, offset, BIGINT_1, common) return gas }, ], [ /* SLOAD */ 0x54, async function (runState, gas, common): Promise<bigint> { const key = runState.stack.peek()[0] const keyBuf = setLengthLeft(bigIntToBytes(key), 32) let charge2929Gas = true if (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) { const address = runState.interpreter.getAddress() const coldAccessGas = runState.env.accessWitness!.readAccountStorage(address, key) gas += coldAccessGas charge2929Gas = coldAccessGas === BIGINT_0 } if (common.isActivatedEIP(2929)) { gas += accessStorageEIP2929(runState, keyBuf, false, common, charge2929Gas) } return gas }, ], [ /* SSTORE */ 0x55, async function (runState, gas, common): Promise<bigint> { if (runState.interpreter.isStatic()) { trap(EVMError.errorMessages.STATIC_STATE_CHANGE) } const [key, val] = runState.stack.peek(2) const keyBytes = setLengthLeft(bigIntToBytes(key), 32) // NOTE: this should be the shortest representation let value if (val === BIGINT_0) { value = Uint8Array.from([]) } else { value = bigIntToBytes(val) } // Read current and original storage for gas calculation. // Pass trackBAL=false because we'll track the read manually below, // but ONLY if the EIP-2200 sentry check passes (per EIP-7928). const currentStorage = setLengthLeftStorage( await runState.interpreter.storageLoad(keyBytes, false, false), ) const originalStorage = setLengthLeftStorage( await runState.interpreter.storageLoad(keyBytes, true, false), ) if (common.hardfork() === Hardfork.Constantinople) { gas += updateSstoreGasEIP1283( runState, currentStorage, originalStorage, setLengthLeftStorage(value), common, ) } else if (common.gteHardfork(Hardfork.Istanbul)) { if (!common.isActivatedEIP(6800) && !common.isActivatedEIP(7864)) { gas += updateSstoreGasEIP2200( runState, currentStorage, originalStorage, setLengthLeftStorage(value), keyBytes, common, ) } } else { gas += updateSstoreGas(runState, currentStorage, setLengthLeftStorage(value), common) } // If we reach here, the EIP-2200 sentry check passed (didn't trap). // Per EIP-7928, now track the storage read for BAL. If the SSTORE // succeeds later, the write will remove this read (see addStorageWrite). // If SSTORE fails with OOG after the sentry, the read remains in BAL. if (common.isActivatedEIP(7928)) { runState.interpreter._evm.blockLevelAccessList?.addStorageRead( runState.interpreter.getAddress().toString(), keyBytes, ) } let charge2929Gas = true if (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) { const contract = runState.interpreter.getAddress() const coldAccessGas = runState.env.accessWitness!.writeAccountStorage(contract, key) gas += coldAccessGas charge2929Gas = coldAccessGas === BIGINT_0 } if (common.isActivatedEIP(2929)) { // We have to do this after the Istanbul (EIP2200) checks. // Otherwise, we might run out of gas, due to "sentry check" of 2300 gas, // if we deduct extra gas first. gas += accessStorageEIP2929(runState, keyBytes, true, common, charge2929Gas) } return gas }, ], [ /* MCOPY */ 0x5e, async function (runState, gas, common): Promise<bigint> { const [dst, src, length] = runState.stack.peek(3) const wordsCopied = (length + BIGINT_31) / BIGINT_32 gas += BIGINT_3 * wordsCopied gas += subMemUsage(runState, src, length, common) gas += subMemUsage(runState, dst, length, common) return gas }, ], [ /* LOG */ 0xa0, async function (runState, gas, common): Promise<bigint> { if (runState.interpreter.isStatic()) { trap(EVMError.errorMessages.STATIC_STATE_CHANGE) } const [memOffset, memLength] = runState.stack.peek(2) const topicsCount = runState.opCode - 0xa0 if (topicsCount < 0 || topicsCount > 4) { trap(EVMError.errorMessages.OUT_OF_RANGE) } gas += subMemUsage(runState, memOffset, memLength, common) gas += common.param('logTopicGas') * BigInt(topicsCount) + memLength * common.param('logDataGas') return gas }, ], /* DATACOPY */ [ 0xd3, async function (runState, gas, common) { if (runState.env.eof === undefined) { // Opcode not available in legacy contracts trap(EVMError.errorMessages.INVALID_OPCODE) } const [memOffset, _dataOffset, dataLength] = runState.stack.peek(3) gas += subMemUsage(runState, memOffset, dataLength, common) if (dataLength !== BIGINT_0) { gas += common.param('copyGas') * divCeil(dataLength, BIGINT_32) } return gas }, ], /* EOFCREATE */ [ 0xec, async function (runState, gas, common): Promise<bigint> { if (runState.env.eof === undefined) { // Opcode not available in legacy contracts trap(EVMError.errorMessages.INVALID_OPCODE) } // Note: TX_CREATE_COST is in the base fee (this is 32000 and same as CREATE / CREATE2) // Note: in `gas.ts` programCounter is not yet incremented (which it is in `functions.ts`) // So have to manually add to programCounter here to get the right container index // Read container index const containerIndex = runState.env.code[runState.programCounter + 1] // Pop stack values const [_value, _salt, inputOffset, inputSize] = runState.stack.peek(4) //if (common.isActivatedEIP(2929)) { // TODO: adding or not adding this makes test // --test=tests/prague/eip7692_eof_v1/eip7620_eof_create/test_eofcreate.py::test_eofcreate_then_call[fork_CancunEIP7692-blockchain_test] // still succeed. This only warms the current address?? This is also in CREATE/CREATE2 // Can this be removed in both? /*gas += accessAddressEIP2929( runState, runState.interpreter.getAddress().bytes, common, false ) }*/ // Expand memory gas += subMemUsage(runState, inputOffset, inputSize, common) // Read container const container = runState.env.eof!.container.body.containerSections[containerIndex] // Charge for hashing cost gas += common.param('keccak256WordGas') * divCeil(BigInt(container.length), BIGINT_32) const gasLeft = runState.interpreter.getGasLeft() - gas runState.messageGasLimit = maxCallGas(gasLeft, gasLeft, runState, common) return gas }, ], /* RETURNCONTRACT */ [ 0xee, async function (runState, gas, common): Promise<bigint> { // Pop stack values const [auxDataOffset, auxDataSize] = runState.stack.peek(2) // Expand memory gas += subMemUsage(runState, auxDataOffset, auxDataSize, common) return gas }, ], [ /* CREATE */ 0xf0, async function (runState, gas, common): Promise<bigint> { if (runState.interpreter.isStatic()) { trap(EVMError.errorMessages.STATIC_STATE_CHANGE) } const [_value, offset, length] = runState.stack.peek(3) if (common.isActivatedEIP(7928)) { return create7928Gas( runState, gas, common, { offset, length, preChargeLabel: 'CREATE pre-charges' }, getCreateTargetAddressBytes, ) } if (common.isActivatedEIP(2929)) { gas += accessAddressEIP2929( runState, runState.interpreter.getAddress().bytes, common, false, ) } if (common.isActivatedEIP(3860)) { gas += ((length + BIGINT_31) / BIGINT_32) * common.param('initCodeWordGas') } gas += subMemUsage(runState, offset, length, common) if (common.isActivatedEIP(8037)) { const stateBytesPerNewAccount = common.param('stateBytesPerNewAccount') const blockGasLimit = runState.env.block.header.gasLimit const costPerStateByte = activeCostPerStateByte(common, blockGasLimit) const newAccountStateGas = stateBytesPerNewAccount * costPerStateByte if (gas > BIGINT_0) { runState.interpreter.useGas(gas, 'CREATE pre-charges') gas = BIGINT_0 } runState.interpreter.chargeStateGas(newAccountStateGas, 'CREATE pre-charge new_account') } let gasLimit = BigInt(runState.interpreter.getGasLeft()) - gas gasLimit = maxCallGas(gasLimit, gasLimit, runState, common) runState.messageGasLimit = gasLimit return gas }, ], [ /* CALL */ 0xf1, async function (runState, gas, common): Promise<bigint> { const [currentGasLimit, toAddr, value, inOffset, inLength, outOffset, outLength] = runState.stack.peek(7) if (runState.interpreter.isStatic() && value !== BIGINT_0) { trap(EVMError.errorMessages.STATIC_STATE_CHANGE) } return callFamilyGas(runState, gas, common, { currentGasLimit, toAddress: createAddressFromStackBigInt(toAddr), value, inOffset, inLength, outOffset, outLength, includeValueTransfer: true, includeNewAccountPostCheck: true, eip7702GetAccessCost, eip7702WarmAddress, }) }, ], [ /* CALLCODE */ 0xf2, async function (runState, gas, common): Promise<bigint> { const [currentGasLimit, toAddr, value, inOffset, inLength, outOffset, outLength] = runState.stack.peek(7) return callFamilyGas(runState, gas, common, { currentGasLimit, toAddress: createAddressFromStackBigInt(toAddr), value, inOffset, inLength, outOffset, outLength, includeValueTransfer: true, includeNewAccountPostCheck: false, eip7702GetAccessCost, eip7702WarmAddress, }) }, ], [ /* RETURN */ 0xf3, async function (runState, gas, common): Promise<bigint> { const [offset, length] = runState.stack.peek(2) gas += subMemUsage(runState, offset, length, common) return gas }, ], [ /* DELEGATECALL */ 0xf4, async function (runState, gas, common): Promise<bigint> { const [currentGasLimit, toAddr, inOffset, inLength, outOffset, outLength] = runState.stack.peek(6) return callFamilyGas(runState, gas, common, { currentGasLimit, toAddress: createAddressFromStackBigInt(toAddr), value: BIGINT_0, inOffset, inLength, outOffset, outLength, includeValueTransfer: false, includeNewAccountPostCheck: false, eip7702GetAccessCost, eip7702WarmAddress, }) }, ], [ /* CREATE2 */ 0xf5, async function (runState, gas, common): Promise<bigint> { if (runState.interpreter.isStatic()) { trap(EVMError.errorMessages.STATIC_STATE_CHANGE) } const [_value, offset, length, saltBigInt] = runState.stack.peek(4) const salt = setLengthLeft(bigIntToBytes(saltBigInt), 32) if (common.isActivatedEIP(7928)) { return create7928Gas( runState, gas, common, { offset, length, salt, extraPreTargetGas: common.param('keccak256WordGas') * divCeil(length, BIGINT_32), preChargeLabel: 'CREATE2 pre-charges', }, getCreateTargetAddressBytes, ) } gas += subMemUsage(runState, offset, length, common) if (common.isActivatedEIP(2929)) { gas += accessAddressEIP2929( runState, runState.interpreter.getAddress().bytes, common, false, ) } if (common.isActivatedEIP(3860)) { gas += ((length + BIGINT_31) / BIGINT_32) * common.param('initCodeWordGas') } gas += common.param('keccak256WordGas') * divCeil(length, BIGINT_32) if (common.isActivatedEIP(8037)) { const stateBytesPerNewAccount = common.param('stateBytesPerNewAccount') const blockGasLimit = runState.env.block.header.gasLimit const costPerStateByte = activeCostPerStateByte(common, blockGasLimit) const newAccountStateGas = stateBytesPerNewAccount * costPerStateByte if (gas > BIGINT_0) { runState.interpreter.useGas(gas, 'CREATE2 pre-charges') gas = BIGINT_0 } runState.interpreter.chargeStateGas(newAccountStateGas, 'CREATE2 pre-charge new_account') } let gasLimit = runState.interpreter.getGasLeft() - gas gasLimit = maxCallGas(gasLimit, gasLimit, runState, common) runState.messageGasLimit = gasLimit return gas }, ], /* EXTCALL */ [ 0xf8, async function (runState, gas, common): Promise<bigint> { if (runState.env.eof === undefined) { // Opcode not available in legacy contracts trap(EVMError.errorMessages.INVALID_OPCODE) } // Charge WARM_STORAGE_READ_COST (100) -> done in accessAddressEIP2929 // Peek stack values const [toAddr, inOffset, inLength, value] = runState.stack.peek(4) // If value is nonzero and in static mode, throw: if (runState.interpreter.isStatic() && value !== BIGINT_0) { trap(EVMError.errorMessages.STATIC_STATE_CHANGE) } // If value > 0, charge CALL_VALUE_COST if (value > BIGINT_0) { gas += common.param('callValueTransferGas') } // Check if the target address > 20 bytes if (toAddr > EXTCALL_TARGET_MAX) { trap(EOFErrorMessage.INVALID_EXTCALL_TARGET) } // Charge for memory expansion gas += subMemUsage(runState, inOffset, inLength, common) const toAddress = createAddressFromStackBigInt(toAddr) // Charge to make address warm (2600 gas) // (in case if address is already warm, this charges the 100 gas) gas += accessAddressEIP2929(runState, toAddress.bytes, common) // Charge account creation cost if value is nonzero if (value > BIGINT_0) { const account = await runState.stateManager.getAccount(toAddress) const deadAccount = account === undefined || account.isEmpty() if (deadAccount) { gas += common.param('callNewAccountGas') } } const minRetainedGas = common.param('minRetainedGas') const minCalleeGas = common.param('minCalleeGas') const currentGasAvailable = runState.interpreter.getGasLeft() - gas const reducedGas = currentGasAvailable / BIGINT_64 // Calculate the gas limit for the callee // (this is the gas available for the next call frame) let gasLimit: bigint if (reducedGas < minRetainedGas) { gasLimit = currentGasAvailable - minRetainedGas } else { gasLimit = currentGasAvailable - reducedGas } if ( runState.env.depth >= Number(common.param('stackLimit')) || runState.env.contract.balance < value || gasLimit < minCalleeGas ) { // Note: this is a hack, TODO: get around this hack and clean this up // This special case will ensure that the actual EXT*CALL is being ran, // But, the code in `function.ts` will note that `runState.messageGasLimit` is set to a negative number // This special number signals that `1` should be put on the stack (per spec) gasLimit = -BIGINT_1 } runState.messageGasLimit = gasLimit return gas }, ], /* EXTDELEGATECALL */ [ 0xf9, async function (runState, gas, common): Promise<bigint> { if (runState.env.eof === undefined) { // Opcode not available in legacy contracts trap(EVMError.errorMessages.INVALID_OPCODE) } // Charge WARM_STORAGE_READ_COST (100) -> done in accessAddressEIP2929 // Peek stack values const [toAddr, inOffset, inLength] = runState.stack.peek(3) // Check if the target address > 20 bytes if (toAddr > EXTCALL_TARGET_MAX) { trap(EOFErrorMessage.INVALID_EXTCALL_TARGET) } // Charge for memory expansion gas += subMemUsage(runState, inOffset, inLength, common) const toAddress = createAddressFromStackBigInt(toAddr) // Charge to make address warm (2600 gas) // (in case if address is already warm, this charges the 100 gas) gas += accessAddressEIP2929(runState, toAddress.bytes, common) const minRetainedGas = common.param('minRetainedGas') const minCalleeGas = common.param('minCalleeGas') const currentGasAvailable = runState.interpreter.getGasLeft() - gas const reducedGas = currentGasAvailable / BIGINT_64 // Calculate the gas limit for the callee // (this is the gas available for the next call frame) let gasLimit: bigint if (reducedGas < minRetainedGas) { gasLimit = currentGasAvailable - minRetainedGas } else { gasLimit = currentGasAvailable - reducedGas } if (runState.env.depth >= Number(common.param('stackLimit')) || gasLimit < minCalleeGas) { // Note: this is a hack, TODO: get around this hack and clean this up // This special case will ensure that the actual EXT*CALL is being ran, // But, the code in `function.ts` will note that `runState.messageGasLimit` is set to a negative number // This special number signals that `1` should be put on the stack (per spec) gasLimit = -BIGINT_1 } runState.messageGasLimit = gasLimit return gas }, ], [ /* STATICCALL */ 0xfa, async function (runState, gas, common): Promise<bigint> { const [currentGasLimit, toAddr, inOffset, inLength, outOffset, outLength] = runState.stack.peek(6) return callFamilyGas(runState, gas, common, { currentGasLimit, toAddress: createAddressFromStackBigInt(toAddr), value: BIGINT_0, inOffset, inLength, outOffset, outLength, includeValueTransfer: false, includeNewAccountPostCheck: false, eip7702GetAccessCost, eip7702WarmAddress, }) }, ], /* EXTSTATICCALL */ [ 0xfb, async function (runState, gas, common): Promise<bigint> { if (runState.env.eof === undefined) { // Opcode not available in legacy contracts trap(EVMError.errorMessages.INVALID_OPCODE) } // Charge WARM_STORAGE_READ_COST (100) -> done in accessAddressEIP2929 // Peek stack values const [toAddr, inOffset, inLength] = runState.stack.peek(3) // Check if the target address > 20 bytes if (toAddr > EXTCALL_TARGET_MAX) { trap(EOFErrorMessage.INVALID_EXTCALL_TARGET) } // Charge for memory expansion gas += subMemUsage(runState, inOffset, inLength, common) const toAddress = createAddressFromStackBigInt(toAddr) // Charge to make address warm (2600 gas) // (in case if address is already warm, this charges the 100 gas) gas += accessAddressEIP2929(runState, toAddress.bytes, common) const minRetainedGas = common.param('minRetainedGas') const minCalleeGas = common.param('minCalleeGas') const currentGasAvailable = runState.interpreter.getGasLeft() - gas const reducedGas = currentGasAvailable / BIGINT_64 // Calculate the gas limit for the callee // (this is the gas available for the next call frame) let gasLimit: bigint if (reducedGas < minRetainedGas) { gasLimit = currentGasAvailable - minRetainedGas } else { gasLimit = currentGasAvailable - reducedGas } if (runState.env.depth >= Number(common.param('stackLimit')) || gasLimit < minCalleeGas) { // Note: this is a hack, TODO: get around this hack and clean this up // This special case will ensure that the actual EXT*CALL is being ran, // But, the code in `function.ts` will note that `runState.messageGasLimit` is set to a negative number // This special number signals that `1` should be put on the stack (per spec) gasLimit = -BIGINT_1 } runState.messageGasLimit = gasLimit return gas }, ], [ /* REVERT */ 0xfd, async function (runState, gas, common): Promise<bigint> { const [offset, length] = runState.stack.peek(2) gas += subMemUsage(runState, offset, length, common) return gas }, ], [ /* SELFDESTRUCT */ 0xff, async function (runState, gas, common): Promise<bigint> { if (runState.interpreter.isStatic()) { trap(EVMError.errorMessages.STATIC_STATE_CHANGE) } const selfdestructToaddressBigInt = runState.stack.peek()[0] const selfdestructToAddress = createAddressFromStackBigInt(selfdestructToaddressBigInt) const contractAddress = runState.interpreter.getAddress() const balance = await runState.interpreter.getExternalBalance(contractAddress) // Calculate new account gas first (needed for checkpoint ordering) let newAccountGas = BIGINT_0 if (common.gteHardfork(Hardfork.SpuriousDragon)) { // EIP-161: State Trie Clearing if (balance > BIGINT_0) { // This technically checks if account is empty or non-existent const account = await runState.stateManager.getAccount(selfdestructToAddress) if (account === undefined || account.isEmpty()) { newAccountGas = common.param('callNewAccountGas') } } } else if (common.gteHardfork(Hardfork.TangerineWhistle)) { // EIP-150 (Tangerine Whistle) gas semantics const exists = (await runState.stateManager.getAccount(selfdestructToAddress)) !== undefined if (!exists) { newAccountGas = common.param('callNewAccountGas') } } let selfDestructToCharge2929Gas = true if ( (common.isActivatedEIP(6800) || common.isActivatedEIP(7864)) && runState.env.chargeCodeAccesses === true ) { gas += runState.env.accessWitness!.readAccountBasicData(contractAddress) if (balance > BIGINT_0) { gas += runState.env.accessWitness!.writeAccountBasicData(contractAddress) } let selfDestructToColdAccessGas = runState.env.accessWitness!.readAccountBasicData(selfdestructToAddress) if (balance > BIGINT_0) { selfDestructToColdAccessGas += runState.env.accessWitness!.writeAccountBasicData(selfdestructToAddress) } gas += selfDestructToColdAccessGas selfDestructToCharge2929Gas = selfDestructToColdAccessGas === BIGINT_0 } // EIP-2929/7928: Get cold access cost first (no side effects) let coldAccessCost = BIGINT_0 if (common.isActivatedEIP(2929)) { coldAccessCost = getAddressAccessCost( runState, selfdestructToAddress.bytes, common, selfDestructToCharge2929Gas, true, ) gas += coldAccessCost } // EIP-7928: Check if we have enough gas for the cold access (checkpoint 1) // If yes, add beneficiary to BAL - this is the "state access" point // The newAccountGas (checkpoint 2) is added after, so OOG there still records BAL if (common.isActivatedEIP(7928)) { // Only add to BAL if we have enough gas for the current accumulated cost // (base gas + cold access). newAccountGas is NOT included here because // per EIP-7928, if we pass the cold access check but fail at new account // creation, the beneficiary should still be in BAL. if (gas <= runState.interpreter.getGasLeft()) { addAddressToBAL(runState, selfdestructToAddress.bytes, common) } } // Now commit the address warming (EIP-2929) if (common.isActivatedEIP(2929)) { warmAddress(runState, selfdestructToAddress.bytes) } // Add new account gas (checkpoint 2) gas += newAccountGas return gas }, ], ]) // Set the range [0xa0, 0xa4] to the LOG handler const logDynamicFunc = dynamicGasHandlers.get(0xa0)! for (let i = 0xa1; i <= 0xa4; i++) { dynamicGasHandlers.set(i, logDynamicFunc) }