2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2014-12-04 09:28:02 +00:00
|
|
|
package core
|
2014-12-03 16:06:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
|
2015-03-17 10:19:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-03-23 15:59:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
2015-03-24 10:49:30 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2015-04-02 03:17:15 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2014-12-03 16:06:54 +00:00
|
|
|
)
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// Call executes within the given contract
|
|
|
|
func Call(env vm.Environment, caller vm.ContractRef, addr common.Address, input []byte, gas, gasPrice, value *big.Int) (ret []byte, err error) {
|
|
|
|
ret, _, err = exec(env, caller, &addr, &addr, input, env.Db().GetCode(addr), gas, gasPrice, value)
|
|
|
|
return ret, err
|
2014-12-03 16:06:54 +00:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// CallCode executes the given address' code as the given contract address
|
|
|
|
func CallCode(env vm.Environment, caller vm.ContractRef, addr common.Address, input []byte, gas, gasPrice, value *big.Int) (ret []byte, err error) {
|
|
|
|
prev := caller.Address()
|
|
|
|
ret, _, err = exec(env, caller, &prev, &addr, input, env.Db().GetCode(addr), gas, gasPrice, value)
|
|
|
|
return ret, err
|
2014-12-03 16:06:54 +00:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// Create creates a new contract with the given code
|
|
|
|
func Create(env vm.Environment, caller vm.ContractRef, code []byte, gas, gasPrice, value *big.Int) (ret []byte, address common.Address, err error) {
|
|
|
|
ret, address, err = exec(env, caller, nil, nil, nil, code, gas, gasPrice, value)
|
2015-05-18 14:23:20 +00:00
|
|
|
// Here we get an error if we run into maximum stack depth,
|
|
|
|
// See: https://github.com/ethereum/yellowpaper/pull/131
|
|
|
|
// and YP definitions for CREATE instruction
|
|
|
|
if err != nil {
|
2015-08-30 08:19:10 +00:00
|
|
|
return nil, address, err
|
2015-05-18 14:23:20 +00:00
|
|
|
}
|
2015-08-30 08:19:10 +00:00
|
|
|
return ret, address, err
|
2015-03-28 19:03:25 +00:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
func exec(env vm.Environment, caller vm.ContractRef, address, codeAddr *common.Address, input, code []byte, gas, gasPrice, value *big.Int) (ret []byte, addr common.Address, err error) {
|
|
|
|
evm := vm.NewVm(env)
|
|
|
|
|
2015-08-02 00:20:41 +00:00
|
|
|
// Depth check execution. Fail if we're trying to execute above the
|
|
|
|
// limit.
|
2015-04-02 03:17:15 +00:00
|
|
|
if env.Depth() > int(params.CallCreateDepth.Int64()) {
|
2015-08-30 08:19:10 +00:00
|
|
|
caller.ReturnGas(gas, gasPrice)
|
2015-01-05 16:37:30 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
return nil, common.Address{}, vm.DepthError
|
2014-12-17 22:58:52 +00:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
if !env.CanTransfer(caller.Address(), value) {
|
|
|
|
caller.ReturnGas(gas, gasPrice)
|
2015-08-02 00:20:41 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
return nil, common.Address{}, ValueTransferErr("insufficient funds to transfer value. Req %v, has %v", value, env.Db().GetBalance(caller.Address()))
|
2015-08-02 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2015-04-01 08:53:32 +00:00
|
|
|
var createAccount bool
|
2015-08-30 08:19:10 +00:00
|
|
|
if address == nil {
|
2015-01-13 19:31:31 +00:00
|
|
|
// Generate a new address
|
2015-08-30 08:19:10 +00:00
|
|
|
nonce := env.Db().GetNonce(caller.Address())
|
|
|
|
env.Db().SetNonce(caller.Address(), nonce+1)
|
2015-04-01 08:53:32 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
addr = crypto.CreateAddress(caller.Address(), nonce)
|
2015-04-01 08:53:32 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
address = &addr
|
2015-04-01 08:53:32 +00:00
|
|
|
createAccount = true
|
2015-01-13 19:31:31 +00:00
|
|
|
}
|
2015-08-30 08:19:10 +00:00
|
|
|
snapshot := env.MakeSnapshot()
|
2015-01-13 19:31:31 +00:00
|
|
|
|
2015-04-01 08:53:32 +00:00
|
|
|
var (
|
2015-08-30 08:19:10 +00:00
|
|
|
from = env.Db().GetAccount(caller.Address())
|
|
|
|
to vm.Account
|
2015-04-01 08:53:32 +00:00
|
|
|
)
|
|
|
|
if createAccount {
|
2015-08-30 08:19:10 +00:00
|
|
|
to = env.Db().CreateAccount(*address)
|
2015-04-01 08:53:32 +00:00
|
|
|
} else {
|
2015-08-30 08:19:10 +00:00
|
|
|
if !env.Db().Exist(*address) {
|
|
|
|
to = env.Db().CreateAccount(*address)
|
|
|
|
} else {
|
|
|
|
to = env.Db().GetAccount(*address)
|
|
|
|
}
|
2015-04-01 08:53:32 +00:00
|
|
|
}
|
2015-08-30 08:19:10 +00:00
|
|
|
env.Transfer(from, to, value)
|
2014-12-09 19:27:57 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
contract := vm.NewContract(caller, to, value, gas, gasPrice)
|
|
|
|
contract.SetCallCode(codeAddr, code)
|
2015-03-13 12:44:15 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
ret, err = evm.Run(contract, input)
|
2014-12-20 01:21:13 +00:00
|
|
|
if err != nil {
|
2015-08-30 08:19:10 +00:00
|
|
|
env.SetSnapshot(snapshot) //env.Db().Set(snapshot)
|
2014-12-20 01:21:13 +00:00
|
|
|
}
|
2014-12-03 16:06:54 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
return ret, addr, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// generic transfer method
|
2015-10-06 10:35:05 +00:00
|
|
|
func Transfer(from, to vm.Account, amount *big.Int) {
|
2015-08-30 08:19:10 +00:00
|
|
|
from.SubBalance(amount)
|
|
|
|
to.AddBalance(amount)
|
2014-12-03 16:06:54 +00:00
|
|
|
}
|