runtime.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. // Copyright 2014 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/crypto"
  23. "github.com/ethereum/go-ethereum/ethdb"
  24. )
  25. // Config is a basic type specifying certain configuration flags for running
  26. // the EVM.
  27. type Config struct {
  28. Difficulty *big.Int
  29. Origin common.Address
  30. Coinbase common.Address
  31. BlockNumber *big.Int
  32. Time *big.Int
  33. GasLimit *big.Int
  34. GasPrice *big.Int
  35. Value *big.Int
  36. DisableJit bool // "disable" so it's enabled by default
  37. Debug bool
  38. State *state.StateDB
  39. GetHashFn func(n uint64) common.Hash
  40. }
  41. // sets defaults on the config
  42. func setDefaults(cfg *Config) {
  43. if cfg.Difficulty == nil {
  44. cfg.Difficulty = new(big.Int)
  45. }
  46. if cfg.Time == nil {
  47. cfg.Time = big.NewInt(time.Now().Unix())
  48. }
  49. if cfg.GasLimit == nil {
  50. cfg.GasLimit = new(big.Int).Set(common.MaxBig)
  51. }
  52. if cfg.GasPrice == nil {
  53. cfg.GasPrice = new(big.Int)
  54. }
  55. if cfg.Value == nil {
  56. cfg.Value = new(big.Int)
  57. }
  58. if cfg.BlockNumber == nil {
  59. cfg.BlockNumber = new(big.Int)
  60. }
  61. if cfg.GetHashFn == nil {
  62. cfg.GetHashFn = func(n uint64) common.Hash {
  63. return common.BytesToHash(crypto.Keccak256([]byte(new(big.Int).SetUint64(n).String())))
  64. }
  65. }
  66. }
  67. // Execute executes the code using the input as call data during the execution.
  68. // It returns the EVM's return value, the new state and an error if it failed.
  69. //
  70. // Executes sets up a in memory, temporarily, environment for the execution of
  71. // the given code. It enabled the JIT by default and make sure that it's restored
  72. // to it's original state afterwards.
  73. func Execute(code, input []byte, cfg *Config) ([]byte, *state.StateDB, error) {
  74. if cfg == nil {
  75. cfg = new(Config)
  76. }
  77. setDefaults(cfg)
  78. if cfg.State == nil {
  79. db, _ := ethdb.NewMemDatabase()
  80. cfg.State, _ = state.New(common.Hash{}, db)
  81. }
  82. var (
  83. vmenv = NewEnv(cfg, cfg.State)
  84. sender = cfg.State.CreateAccount(cfg.Origin)
  85. receiver = cfg.State.CreateAccount(common.StringToAddress("contract"))
  86. )
  87. // set the receiver's (the executing contract) code for execution.
  88. receiver.SetCode(code)
  89. // Call the code with the given configuration.
  90. ret, err := vmenv.Call(
  91. sender,
  92. receiver.Address(),
  93. input,
  94. cfg.GasLimit,
  95. cfg.GasPrice,
  96. cfg.Value,
  97. )
  98. return ret, cfg.State, err
  99. }
  100. // Call executes the code given by the contract's address. It will return the
  101. // EVM's return value or an error if it failed.
  102. //
  103. // Call, unlike Execute, requires a config and also requires the State field to
  104. // be set.
  105. func Call(address common.Address, input []byte, cfg *Config) ([]byte, error) {
  106. setDefaults(cfg)
  107. vmenv := NewEnv(cfg, cfg.State)
  108. sender := cfg.State.GetOrNewStateObject(cfg.Origin)
  109. // Call the code with the given configuration.
  110. ret, err := vmenv.Call(
  111. sender,
  112. address,
  113. input,
  114. cfg.GasLimit,
  115. cfg.GasPrice,
  116. cfg.Value,
  117. )
  118. return ret, err
  119. }