github.com/jimmyx0x/go-ethereum@v1.10.28/cmd/evm/internal/t8ntool/transition.go (about) 1 // Copyright 2020 The go-ethereum Authors 2 // This file is part of go-ethereum. 3 // 4 // go-ethereum is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU 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 // go-ethereum 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 General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. 16 17 package t8ntool 18 19 import ( 20 "crypto/ecdsa" 21 "encoding/json" 22 "errors" 23 "fmt" 24 "math/big" 25 "os" 26 "path" 27 "strings" 28 29 "github.com/ethereum/go-ethereum/common" 30 "github.com/ethereum/go-ethereum/common/hexutil" 31 "github.com/ethereum/go-ethereum/consensus/misc" 32 "github.com/ethereum/go-ethereum/core" 33 "github.com/ethereum/go-ethereum/core/state" 34 "github.com/ethereum/go-ethereum/core/types" 35 "github.com/ethereum/go-ethereum/core/vm" 36 "github.com/ethereum/go-ethereum/crypto" 37 "github.com/ethereum/go-ethereum/eth/tracers/logger" 38 "github.com/ethereum/go-ethereum/log" 39 "github.com/ethereum/go-ethereum/params" 40 "github.com/ethereum/go-ethereum/rlp" 41 "github.com/ethereum/go-ethereum/tests" 42 "github.com/urfave/cli/v2" 43 ) 44 45 const ( 46 ErrorEVM = 2 47 ErrorConfig = 3 48 ErrorMissingBlockhash = 4 49 50 ErrorJson = 10 51 ErrorIO = 11 52 ErrorRlp = 12 53 54 stdinSelector = "stdin" 55 ) 56 57 type NumberedError struct { 58 errorCode int 59 err error 60 } 61 62 func NewError(errorCode int, err error) *NumberedError { 63 return &NumberedError{errorCode, err} 64 } 65 66 func (n *NumberedError) Error() string { 67 return fmt.Sprintf("ERROR(%d): %v", n.errorCode, n.err.Error()) 68 } 69 70 func (n *NumberedError) ExitCode() int { 71 return n.errorCode 72 } 73 74 // compile-time conformance test 75 var ( 76 _ cli.ExitCoder = (*NumberedError)(nil) 77 ) 78 79 type input struct { 80 Alloc core.GenesisAlloc `json:"alloc,omitempty"` 81 Env *stEnv `json:"env,omitempty"` 82 Txs []*txWithKey `json:"txs,omitempty"` 83 TxRlp string `json:"txsRlp,omitempty"` 84 } 85 86 func Transition(ctx *cli.Context) error { 87 // Configure the go-ethereum logger 88 glogger := log.NewGlogHandler(log.StreamHandler(os.Stderr, log.TerminalFormat(false))) 89 glogger.Verbosity(log.Lvl(ctx.Int(VerbosityFlag.Name))) 90 log.Root().SetHandler(glogger) 91 92 var ( 93 err error 94 tracer vm.EVMLogger 95 ) 96 var getTracer func(txIndex int, txHash common.Hash) (vm.EVMLogger, error) 97 98 baseDir, err := createBasedir(ctx) 99 if err != nil { 100 return NewError(ErrorIO, fmt.Errorf("failed creating output basedir: %v", err)) 101 } 102 if ctx.Bool(TraceFlag.Name) { 103 if ctx.IsSet(TraceDisableMemoryFlag.Name) && ctx.IsSet(TraceEnableMemoryFlag.Name) { 104 return NewError(ErrorConfig, fmt.Errorf("can't use both flags --%s and --%s", TraceDisableMemoryFlag.Name, TraceEnableMemoryFlag.Name)) 105 } 106 if ctx.IsSet(TraceDisableReturnDataFlag.Name) && ctx.IsSet(TraceEnableReturnDataFlag.Name) { 107 return NewError(ErrorConfig, fmt.Errorf("can't use both flags --%s and --%s", TraceDisableReturnDataFlag.Name, TraceEnableReturnDataFlag.Name)) 108 } 109 if ctx.IsSet(TraceDisableMemoryFlag.Name) { 110 log.Warn(fmt.Sprintf("--%s has been deprecated in favour of --%s", TraceDisableMemoryFlag.Name, TraceEnableMemoryFlag.Name)) 111 } 112 if ctx.IsSet(TraceDisableReturnDataFlag.Name) { 113 log.Warn(fmt.Sprintf("--%s has been deprecated in favour of --%s", TraceDisableReturnDataFlag.Name, TraceEnableReturnDataFlag.Name)) 114 } 115 // Configure the EVM logger 116 logConfig := &logger.Config{ 117 DisableStack: ctx.Bool(TraceDisableStackFlag.Name), 118 EnableMemory: !ctx.Bool(TraceDisableMemoryFlag.Name) || ctx.Bool(TraceEnableMemoryFlag.Name), 119 EnableReturnData: !ctx.Bool(TraceDisableReturnDataFlag.Name) || ctx.Bool(TraceEnableReturnDataFlag.Name), 120 Debug: true, 121 } 122 var prevFile *os.File 123 // This one closes the last file 124 defer func() { 125 if prevFile != nil { 126 prevFile.Close() 127 } 128 }() 129 getTracer = func(txIndex int, txHash common.Hash) (vm.EVMLogger, error) { 130 if prevFile != nil { 131 prevFile.Close() 132 } 133 traceFile, err := os.Create(path.Join(baseDir, fmt.Sprintf("trace-%d-%v.jsonl", txIndex, txHash.String()))) 134 if err != nil { 135 return nil, NewError(ErrorIO, fmt.Errorf("failed creating trace-file: %v", err)) 136 } 137 prevFile = traceFile 138 return logger.NewJSONLogger(logConfig, traceFile), nil 139 } 140 } else { 141 getTracer = func(txIndex int, txHash common.Hash) (tracer vm.EVMLogger, err error) { 142 return nil, nil 143 } 144 } 145 // We need to load three things: alloc, env and transactions. May be either in 146 // stdin input or in files. 147 // Check if anything needs to be read from stdin 148 var ( 149 prestate Prestate 150 txs types.Transactions // txs to apply 151 allocStr = ctx.String(InputAllocFlag.Name) 152 153 envStr = ctx.String(InputEnvFlag.Name) 154 txStr = ctx.String(InputTxsFlag.Name) 155 inputData = &input{} 156 ) 157 // Figure out the prestate alloc 158 if allocStr == stdinSelector || envStr == stdinSelector || txStr == stdinSelector { 159 decoder := json.NewDecoder(os.Stdin) 160 if err := decoder.Decode(inputData); err != nil { 161 return NewError(ErrorJson, fmt.Errorf("failed unmarshaling stdin: %v", err)) 162 } 163 } 164 if allocStr != stdinSelector { 165 if err := readFile(allocStr, "alloc", &inputData.Alloc); err != nil { 166 return err 167 } 168 } 169 prestate.Pre = inputData.Alloc 170 171 // Set the block environment 172 if envStr != stdinSelector { 173 var env stEnv 174 if err := readFile(envStr, "env", &env); err != nil { 175 return err 176 } 177 inputData.Env = &env 178 } 179 prestate.Env = *inputData.Env 180 181 vmConfig := vm.Config{ 182 Tracer: tracer, 183 Debug: (tracer != nil), 184 } 185 // Construct the chainconfig 186 var chainConfig *params.ChainConfig 187 if cConf, extraEips, err := tests.GetChainConfig(ctx.String(ForknameFlag.Name)); err != nil { 188 return NewError(ErrorConfig, fmt.Errorf("failed constructing chain configuration: %v", err)) 189 } else { 190 chainConfig = cConf 191 vmConfig.ExtraEips = extraEips 192 } 193 // Set the chain id 194 chainConfig.ChainID = big.NewInt(ctx.Int64(ChainIDFlag.Name)) 195 196 var txsWithKeys []*txWithKey 197 if txStr != stdinSelector { 198 inFile, err := os.Open(txStr) 199 if err != nil { 200 return NewError(ErrorIO, fmt.Errorf("failed reading txs file: %v", err)) 201 } 202 defer inFile.Close() 203 decoder := json.NewDecoder(inFile) 204 if strings.HasSuffix(txStr, ".rlp") { 205 var body hexutil.Bytes 206 if err := decoder.Decode(&body); err != nil { 207 return err 208 } 209 var txs types.Transactions 210 if err := rlp.DecodeBytes(body, &txs); err != nil { 211 return err 212 } 213 for _, tx := range txs { 214 txsWithKeys = append(txsWithKeys, &txWithKey{ 215 key: nil, 216 tx: tx, 217 }) 218 } 219 } else { 220 if err := decoder.Decode(&txsWithKeys); err != nil { 221 return NewError(ErrorJson, fmt.Errorf("failed unmarshaling txs-file: %v", err)) 222 } 223 } 224 } else { 225 if len(inputData.TxRlp) > 0 { 226 // Decode the body of already signed transactions 227 body := common.FromHex(inputData.TxRlp) 228 var txs types.Transactions 229 if err := rlp.DecodeBytes(body, &txs); err != nil { 230 return err 231 } 232 for _, tx := range txs { 233 txsWithKeys = append(txsWithKeys, &txWithKey{ 234 key: nil, 235 tx: tx, 236 }) 237 } 238 } else { 239 // JSON encoded transactions 240 txsWithKeys = inputData.Txs 241 } 242 } 243 // We may have to sign the transactions. 244 signer := types.MakeSigner(chainConfig, big.NewInt(int64(prestate.Env.Number))) 245 246 if txs, err = signUnsignedTransactions(txsWithKeys, signer); err != nil { 247 return NewError(ErrorJson, fmt.Errorf("failed signing transactions: %v", err)) 248 } 249 // Sanity check, to not `panic` in state_transition 250 if chainConfig.IsLondon(big.NewInt(int64(prestate.Env.Number))) { 251 if prestate.Env.BaseFee != nil { 252 // Already set, base fee has precedent over parent base fee. 253 } else if prestate.Env.ParentBaseFee != nil { 254 parent := &types.Header{ 255 Number: new(big.Int).SetUint64(prestate.Env.Number), 256 BaseFee: prestate.Env.ParentBaseFee, 257 GasUsed: prestate.Env.ParentGasUsed, 258 GasLimit: prestate.Env.ParentGasLimit, 259 } 260 prestate.Env.BaseFee = misc.CalcBaseFee(chainConfig, parent) 261 } else { 262 return NewError(ErrorConfig, errors.New("EIP-1559 config but missing 'currentBaseFee' in env section")) 263 } 264 } 265 isMerged := chainConfig.TerminalTotalDifficulty != nil && chainConfig.TerminalTotalDifficulty.BitLen() == 0 266 env := prestate.Env 267 if isMerged { 268 // post-merge: 269 // - random must be supplied 270 // - difficulty must be zero 271 switch { 272 case env.Random == nil: 273 return NewError(ErrorConfig, errors.New("post-merge requires currentRandom to be defined in env")) 274 case env.Difficulty != nil && env.Difficulty.BitLen() != 0: 275 return NewError(ErrorConfig, errors.New("post-merge difficulty must be zero (or omitted) in env")) 276 } 277 prestate.Env.Difficulty = nil 278 } else if env.Difficulty == nil { 279 // pre-merge: 280 // If difficulty was not provided by caller, we need to calculate it. 281 switch { 282 case env.ParentDifficulty == nil: 283 return NewError(ErrorConfig, errors.New("currentDifficulty was not provided, and cannot be calculated due to missing parentDifficulty")) 284 case env.Number == 0: 285 return NewError(ErrorConfig, errors.New("currentDifficulty needs to be provided for block number 0")) 286 case env.Timestamp <= env.ParentTimestamp: 287 return NewError(ErrorConfig, fmt.Errorf("currentDifficulty cannot be calculated -- currentTime (%d) needs to be after parent time (%d)", 288 env.Timestamp, env.ParentTimestamp)) 289 } 290 prestate.Env.Difficulty = calcDifficulty(chainConfig, env.Number, env.Timestamp, 291 env.ParentTimestamp, env.ParentDifficulty, env.ParentUncleHash) 292 } 293 // Run the test and aggregate the result 294 s, result, err := prestate.Apply(vmConfig, chainConfig, txs, ctx.Int64(RewardFlag.Name), getTracer) 295 if err != nil { 296 return err 297 } 298 body, _ := rlp.EncodeToBytes(txs) 299 // Dump the excution result 300 collector := make(Alloc) 301 s.DumpToCollector(collector, nil) 302 return dispatchOutput(ctx, baseDir, result, collector, body) 303 } 304 305 // txWithKey is a helper-struct, to allow us to use the types.Transaction along with 306 // a `secretKey`-field, for input 307 type txWithKey struct { 308 key *ecdsa.PrivateKey 309 tx *types.Transaction 310 protected bool 311 } 312 313 func (t *txWithKey) UnmarshalJSON(input []byte) error { 314 // Read the metadata, if present 315 type txMetadata struct { 316 Key *common.Hash `json:"secretKey"` 317 Protected *bool `json:"protected"` 318 } 319 var data txMetadata 320 if err := json.Unmarshal(input, &data); err != nil { 321 return err 322 } 323 if data.Key != nil { 324 k := data.Key.Hex()[2:] 325 if ecdsaKey, err := crypto.HexToECDSA(k); err != nil { 326 return err 327 } else { 328 t.key = ecdsaKey 329 } 330 } 331 if data.Protected != nil { 332 t.protected = *data.Protected 333 } else { 334 t.protected = true 335 } 336 // Now, read the transaction itself 337 var tx types.Transaction 338 if err := json.Unmarshal(input, &tx); err != nil { 339 return err 340 } 341 t.tx = &tx 342 return nil 343 } 344 345 // signUnsignedTransactions converts the input txs to canonical transactions. 346 // 347 // The transactions can have two forms, either 348 // 1. unsigned or 349 // 2. signed 350 // 351 // For (1), r, s, v, need so be zero, and the `secretKey` needs to be set. 352 // If so, we sign it here and now, with the given `secretKey` 353 // If the condition above is not met, then it's considered a signed transaction. 354 // 355 // To manage this, we read the transactions twice, first trying to read the secretKeys, 356 // and secondly to read them with the standard tx json format 357 func signUnsignedTransactions(txs []*txWithKey, signer types.Signer) (types.Transactions, error) { 358 var signedTxs []*types.Transaction 359 for i, txWithKey := range txs { 360 tx := txWithKey.tx 361 key := txWithKey.key 362 v, r, s := tx.RawSignatureValues() 363 if key != nil && v.BitLen()+r.BitLen()+s.BitLen() == 0 { 364 // This transaction needs to be signed 365 var ( 366 signed *types.Transaction 367 err error 368 ) 369 if txWithKey.protected { 370 signed, err = types.SignTx(tx, signer, key) 371 } else { 372 signed, err = types.SignTx(tx, types.FrontierSigner{}, key) 373 } 374 if err != nil { 375 return nil, NewError(ErrorJson, fmt.Errorf("tx %d: failed to sign tx: %v", i, err)) 376 } 377 signedTxs = append(signedTxs, signed) 378 } else { 379 // Already signed 380 signedTxs = append(signedTxs, tx) 381 } 382 } 383 return signedTxs, nil 384 } 385 386 type Alloc map[common.Address]core.GenesisAccount 387 388 func (g Alloc) OnRoot(common.Hash) {} 389 390 func (g Alloc) OnAccount(addr common.Address, dumpAccount state.DumpAccount) { 391 balance, _ := new(big.Int).SetString(dumpAccount.Balance, 10) 392 var storage map[common.Hash]common.Hash 393 if dumpAccount.Storage != nil { 394 storage = make(map[common.Hash]common.Hash) 395 for k, v := range dumpAccount.Storage { 396 storage[k] = common.HexToHash(v) 397 } 398 } 399 genesisAccount := core.GenesisAccount{ 400 Code: dumpAccount.Code, 401 Storage: storage, 402 Balance: balance, 403 Nonce: dumpAccount.Nonce, 404 } 405 g[addr] = genesisAccount 406 } 407 408 // saveFile marshals the object to the given file 409 func saveFile(baseDir, filename string, data interface{}) error { 410 b, err := json.MarshalIndent(data, "", " ") 411 if err != nil { 412 return NewError(ErrorJson, fmt.Errorf("failed marshalling output: %v", err)) 413 } 414 location := path.Join(baseDir, filename) 415 if err = os.WriteFile(location, b, 0644); err != nil { 416 return NewError(ErrorIO, fmt.Errorf("failed writing output: %v", err)) 417 } 418 log.Info("Wrote file", "file", location) 419 return nil 420 } 421 422 // dispatchOutput writes the output data to either stderr or stdout, or to the specified 423 // files 424 func dispatchOutput(ctx *cli.Context, baseDir string, result *ExecutionResult, alloc Alloc, body hexutil.Bytes) error { 425 stdOutObject := make(map[string]interface{}) 426 stdErrObject := make(map[string]interface{}) 427 dispatch := func(baseDir, fName, name string, obj interface{}) error { 428 switch fName { 429 case "stdout": 430 stdOutObject[name] = obj 431 case "stderr": 432 stdErrObject[name] = obj 433 case "": 434 // don't save 435 default: // save to file 436 if err := saveFile(baseDir, fName, obj); err != nil { 437 return err 438 } 439 } 440 return nil 441 } 442 if err := dispatch(baseDir, ctx.String(OutputAllocFlag.Name), "alloc", alloc); err != nil { 443 return err 444 } 445 if err := dispatch(baseDir, ctx.String(OutputResultFlag.Name), "result", result); err != nil { 446 return err 447 } 448 if err := dispatch(baseDir, ctx.String(OutputBodyFlag.Name), "body", body); err != nil { 449 return err 450 } 451 if len(stdOutObject) > 0 { 452 b, err := json.MarshalIndent(stdOutObject, "", " ") 453 if err != nil { 454 return NewError(ErrorJson, fmt.Errorf("failed marshalling output: %v", err)) 455 } 456 os.Stdout.Write(b) 457 os.Stdout.WriteString("\n") 458 } 459 if len(stdErrObject) > 0 { 460 b, err := json.MarshalIndent(stdErrObject, "", " ") 461 if err != nil { 462 return NewError(ErrorJson, fmt.Errorf("failed marshalling output: %v", err)) 463 } 464 os.Stderr.Write(b) 465 os.Stderr.WriteString("\n") 466 } 467 return nil 468 }