execution.go 3.8 KB
Newer Older
F
Felix Lange 已提交
1
// Copyright 2014 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
F
Felix Lange 已提交
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
F
Felix Lange 已提交
5 6 7 8
// 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.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
F
Felix Lange 已提交
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
F
Felix Lange 已提交
12 13 14
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
F
Felix Lange 已提交
16

O
obscuren 已提交
17
package core
O
obscuren 已提交
18 19 20 21

import (
	"math/big"

O
obscuren 已提交
22
	"github.com/ethereum/go-ethereum/common"
O
obscuren 已提交
23
	"github.com/ethereum/go-ethereum/core/vm"
O
obscuren 已提交
24
	"github.com/ethereum/go-ethereum/crypto"
25
	"github.com/ethereum/go-ethereum/params"
O
obscuren 已提交
26 27
)

28 29 30 31
// 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
O
obscuren 已提交
32 33
}

34 35 36 37 38
// 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
O
obscuren 已提交
39 40
}

41 42 43
// 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)
44 45 46 47
	// 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 {
48
		return nil, address, err
49
	}
50
	return ret, address, err
O
obscuren 已提交
51 52
}

53 54 55
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)

56 57
	// Depth check execution. Fail if we're trying to execute above the
	// limit.
58
	if env.Depth() > int(params.CallCreateDepth.Int64()) {
59
		caller.ReturnGas(gas, gasPrice)
O
obscuren 已提交
60

61
		return nil, common.Address{}, vm.DepthError
O
obscuren 已提交
62 63
	}

64 65
	if !env.CanTransfer(caller.Address(), value) {
		caller.ReturnGas(gas, gasPrice)
66

67
		return nil, common.Address{}, ValueTransferErr("insufficient funds to transfer value. Req %v, has %v", value, env.Db().GetBalance(caller.Address()))
68 69
	}

O
obscuren 已提交
70
	var createAccount bool
71
	if address == nil {
O
obscuren 已提交
72
		// Generate a new address
73 74
		nonce := env.Db().GetNonce(caller.Address())
		env.Db().SetNonce(caller.Address(), nonce+1)
O
obscuren 已提交
75

76
		addr = crypto.CreateAddress(caller.Address(), nonce)
O
obscuren 已提交
77

78
		address = &addr
O
obscuren 已提交
79
		createAccount = true
O
obscuren 已提交
80
	}
81
	snapshot := env.MakeSnapshot()
O
obscuren 已提交
82

O
obscuren 已提交
83
	var (
84 85
		from = env.Db().GetAccount(caller.Address())
		to   vm.Account
O
obscuren 已提交
86 87
	)
	if createAccount {
88
		to = env.Db().CreateAccount(*address)
O
obscuren 已提交
89
	} else {
90 91 92 93 94
		if !env.Db().Exist(*address) {
			to = env.Db().CreateAccount(*address)
		} else {
			to = env.Db().GetAccount(*address)
		}
O
obscuren 已提交
95
	}
96
	env.Transfer(from, to, value)
O
obscuren 已提交
97

98 99
	contract := vm.NewContract(caller, to, value, gas, gasPrice)
	contract.SetCallCode(codeAddr, code)
O
obscuren 已提交
100

101
	ret, err = evm.Run(contract, input)
102
	if err != nil {
103
		env.SetSnapshot(snapshot) //env.Db().Set(snapshot)
104
	}
O
obscuren 已提交
105

106 107 108 109
	return ret, addr, err
}

// generic transfer method
110
func Transfer(from, to vm.Account, amount *big.Int) {
111 112
	from.SubBalance(amount)
	to.AddBalance(amount)
O
obscuren 已提交
113
}