forked from cerc-io/plugeth
core/vm: check opcode stack before readonly enforcement
This commit is contained in:
parent
41b7745529
commit
a91e682234
@ -169,22 +169,19 @@ func (in *Interpreter) Run(snapshot int, contract *Contract, input []byte) (ret
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// get the operation from the jump table matching the opcode
|
// Get the operation from the jump table matching the opcode and validate the
|
||||||
|
// stack and make sure there enough stack items available to perform the operation
|
||||||
operation := in.cfg.JumpTable[op]
|
operation := in.cfg.JumpTable[op]
|
||||||
if err := in.enforceRestrictions(op, operation, stack); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
// if the op is invalid abort the process and return an error
|
|
||||||
if !operation.valid {
|
if !operation.valid {
|
||||||
return nil, fmt.Errorf("invalid opcode 0x%x", int(op))
|
return nil, fmt.Errorf("invalid opcode 0x%x", int(op))
|
||||||
}
|
}
|
||||||
|
|
||||||
// validate the stack and make sure there enough stack items available
|
|
||||||
// to perform the operation
|
|
||||||
if err := operation.validateStack(stack); err != nil {
|
if err := operation.validateStack(stack); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
// If the operation is valid, enforce and write restrictions
|
||||||
|
if err := in.enforceRestrictions(op, operation, stack); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
var memorySize uint64
|
var memorySize uint64
|
||||||
// calculate the new memory size and expand the memory to fit
|
// calculate the new memory size and expand the memory to fit
|
||||||
|
Loading…
Reference in New Issue
Block a user