runtime.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. // Copyright 2015 The go-ethereum Authors
  2. // This file is part of the go-ethereum library.
  3. //
  4. // The go-ethereum library is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // The go-ethereum library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // 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/>.
  16. package runtime
  17. import (
  18. "math/big"
  19. "time"
  20. "github.com/ethereum/go-ethereum/common"
  21. "github.com/ethereum/go-ethereum/core/state"
  22. "github.com/ethereum/go-ethereum/core/vm"
  23. "github.com/ethereum/go-ethereum/crypto"
  24. "github.com/ethereum/go-ethereum/ethdb"
  25. )
  26. // The default, always homestead, rule set for the vm env
  27. type ruleSet struct{}
  28. func (ruleSet) IsHomestead(*big.Int) bool { return true }
  29. // Config is a basic type specifying certain configuration flags for running
  30. // the EVM.
  31. type Config struct {
  32. RuleSet vm.RuleSet
  33. Difficulty *big.Int
  34. Origin common.Address
  35. Coinbase common.Address
  36. BlockNumber *big.Int
  37. Time *big.Int
  38. GasLimit *big.Int
  39. GasPrice *big.Int
  40. Value *big.Int
  41. DisableJit bool // "disable" so it's enabled by default
  42. Debug bool
  43. State *state.StateDB
  44. GetHashFn func(n uint64) common.Hash
  45. }
  46. // sets defaults on the config
  47. func setDefaults(cfg *Config) {
  48. if cfg.RuleSet == nil {
  49. cfg.RuleSet = ruleSet{}
  50. }
  51. if cfg.Difficulty == nil {
  52. cfg.Difficulty = new(big.Int)
  53. }
  54. if cfg.Time == nil {
  55. cfg.Time = big.NewInt(time.Now().Unix())
  56. }
  57. if cfg.GasLimit == nil {
  58. cfg.GasLimit = new(big.Int).Set(common.MaxBig)
  59. }
  60. if cfg.GasPrice == nil {
  61. cfg.GasPrice = new(big.Int)
  62. }
  63. if cfg.Value == nil {
  64. cfg.Value = new(big.Int)
  65. }
  66. if cfg.BlockNumber == nil {
  67. cfg.BlockNumber = new(big.Int)
  68. }
  69. if cfg.GetHashFn == nil {
  70. cfg.GetHashFn = func(n uint64) common.Hash {
  71. return common.BytesToHash(crypto.Keccak256([]byte(new(big.Int).SetUint64(n).String())))
  72. }
  73. }
  74. }
  75. // Execute executes the code using the input as call data during the execution.
  76. // It returns the EVM's return value, the new state and an error if it failed.
  77. //
  78. // Executes sets up a in memory, temporarily, environment for the execution of
  79. // the given code. It enabled the JIT by default and make sure that it's restored
  80. // to it's original state afterwards.
  81. func Execute(code, input []byte, cfg *Config) ([]byte, *state.StateDB, error) {
  82. if cfg == nil {
  83. cfg = new(Config)
  84. }
  85. setDefaults(cfg)
  86. if cfg.State == nil {
  87. db, _ := ethdb.NewMemDatabase()
  88. cfg.State, _ = state.New(common.Hash{}, db)
  89. }
  90. var (
  91. vmenv = NewEnv(cfg, cfg.State)
  92. sender = cfg.State.CreateAccount(cfg.Origin)
  93. receiver = cfg.State.CreateAccount(common.StringToAddress("contract"))
  94. )
  95. // set the receiver's (the executing contract) code for execution.
  96. receiver.SetCode(crypto.Keccak256Hash(code), code)
  97. // Call the code with the given configuration.
  98. ret, err := vmenv.Call(
  99. sender,
  100. receiver.Address(),
  101. input,
  102. cfg.GasLimit,
  103. cfg.GasPrice,
  104. cfg.Value,
  105. )
  106. return ret, cfg.State, err
  107. }
  108. // Call executes the code given by the contract's address. It will return the
  109. // EVM's return value or an error if it failed.
  110. //
  111. // Call, unlike Execute, requires a config and also requires the State field to
  112. // be set.
  113. func Call(address common.Address, input []byte, cfg *Config) ([]byte, error) {
  114. setDefaults(cfg)
  115. vmenv := NewEnv(cfg, cfg.State)
  116. sender := cfg.State.GetOrNewStateObject(cfg.Origin)
  117. // Call the code with the given configuration.
  118. ret, err := vmenv.Call(
  119. sender,
  120. address,
  121. input,
  122. cfg.GasLimit,
  123. cfg.GasPrice,
  124. cfg.Value,
  125. )
  126. return ret, err
  127. }