github.com/cryptotooltop/go-ethereum@v0.0.0-20231103184714-151d1922f3e5/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 "io/ioutil" 25 "math/big" 26 "os" 27 "path" 28 "strings" 29 30 "gopkg.in/urfave/cli.v1" 31 32 "github.com/scroll-tech/go-ethereum/common" 33 "github.com/scroll-tech/go-ethereum/common/hexutil" 34 "github.com/scroll-tech/go-ethereum/core" 35 "github.com/scroll-tech/go-ethereum/core/state" 36 "github.com/scroll-tech/go-ethereum/core/types" 37 "github.com/scroll-tech/go-ethereum/core/vm" 38 "github.com/scroll-tech/go-ethereum/crypto" 39 "github.com/scroll-tech/go-ethereum/log" 40 "github.com/scroll-tech/go-ethereum/params" 41 "github.com/scroll-tech/go-ethereum/rlp" 42 "github.com/scroll-tech/go-ethereum/tests" 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 := &vm.LogConfig{ 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 vm.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 && chainConfig.Scroll.BaseFeeEnabled() { 252 return NewError(ErrorConfig, errors.New("EIP-1559 config but missing 'currentBaseFee' in env section")) 253 } 254 } 255 if env := prestate.Env; env.Difficulty == nil { 256 // If difficulty was not provided by caller, we need to calculate it. 257 switch { 258 case env.ParentDifficulty == nil: 259 return NewError(ErrorConfig, errors.New("currentDifficulty was not provided, and cannot be calculated due to missing parentDifficulty")) 260 case env.Number == 0: 261 return NewError(ErrorConfig, errors.New("currentDifficulty needs to be provided for block number 0")) 262 case env.Timestamp <= env.ParentTimestamp: 263 return NewError(ErrorConfig, fmt.Errorf("currentDifficulty cannot be calculated -- currentTime (%d) needs to be after parent time (%d)", 264 env.Timestamp, env.ParentTimestamp)) 265 } 266 prestate.Env.Difficulty = calcDifficulty(chainConfig, env.Number, env.Timestamp, 267 env.ParentTimestamp, env.ParentDifficulty, env.ParentUncleHash) 268 } 269 // Run the test and aggregate the result 270 s, result, err := prestate.Apply(vmConfig, chainConfig, txs, ctx.Int64(RewardFlag.Name), getTracer) 271 if err != nil { 272 return err 273 } 274 body, _ := rlp.EncodeToBytes(txs) 275 // Dump the excution result 276 collector := make(Alloc) 277 s.DumpToCollector(collector, nil) 278 return dispatchOutput(ctx, baseDir, result, collector, body) 279 } 280 281 // txWithKey is a helper-struct, to allow us to use the types.Transaction along with 282 // a `secretKey`-field, for input 283 type txWithKey struct { 284 key *ecdsa.PrivateKey 285 tx *types.Transaction 286 protected bool 287 } 288 289 func (t *txWithKey) UnmarshalJSON(input []byte) error { 290 // Read the metadata, if present 291 type txMetadata struct { 292 Key *common.Hash `json:"secretKey"` 293 Protected *bool `json:"protected"` 294 } 295 var data txMetadata 296 if err := json.Unmarshal(input, &data); err != nil { 297 return err 298 } 299 if data.Key != nil { 300 k := data.Key.Hex()[2:] 301 if ecdsaKey, err := crypto.HexToECDSA(k); err != nil { 302 return err 303 } else { 304 t.key = ecdsaKey 305 } 306 } 307 if data.Protected != nil { 308 t.protected = *data.Protected 309 } else { 310 t.protected = true 311 } 312 // Now, read the transaction itself 313 var tx types.Transaction 314 if err := json.Unmarshal(input, &tx); err != nil { 315 return err 316 } 317 t.tx = &tx 318 return nil 319 } 320 321 // signUnsignedTransactions converts the input txs to canonical transactions. 322 // 323 // The transactions can have two forms, either 324 // 1. unsigned or 325 // 2. signed 326 // For (1), r, s, v, need so be zero, and the `secretKey` needs to be set. 327 // If so, we sign it here and now, with the given `secretKey` 328 // If the condition above is not met, then it's considered a signed transaction. 329 // 330 // To manage this, we read the transactions twice, first trying to read the secretKeys, 331 // and secondly to read them with the standard tx json format 332 func signUnsignedTransactions(txs []*txWithKey, signer types.Signer) (types.Transactions, error) { 333 var signedTxs []*types.Transaction 334 for i, txWithKey := range txs { 335 tx := txWithKey.tx 336 key := txWithKey.key 337 v, r, s := tx.RawSignatureValues() 338 if key != nil && v.BitLen()+r.BitLen()+s.BitLen() == 0 { 339 // This transaction needs to be signed 340 var ( 341 signed *types.Transaction 342 err error 343 ) 344 if txWithKey.protected { 345 signed, err = types.SignTx(tx, signer, key) 346 } else { 347 signed, err = types.SignTx(tx, types.FrontierSigner{}, key) 348 } 349 if err != nil { 350 return nil, NewError(ErrorJson, fmt.Errorf("tx %d: failed to sign tx: %v", i, err)) 351 } 352 signedTxs = append(signedTxs, signed) 353 } else { 354 // Already signed 355 signedTxs = append(signedTxs, tx) 356 } 357 } 358 return signedTxs, nil 359 } 360 361 type Alloc map[common.Address]core.GenesisAccount 362 363 func (g Alloc) OnRoot(common.Hash) {} 364 365 func (g Alloc) OnAccount(addr common.Address, dumpAccount state.DumpAccount) { 366 balance, _ := new(big.Int).SetString(dumpAccount.Balance, 10) 367 var storage map[common.Hash]common.Hash 368 if dumpAccount.Storage != nil { 369 storage = make(map[common.Hash]common.Hash) 370 for k, v := range dumpAccount.Storage { 371 storage[k] = common.HexToHash(v) 372 } 373 } 374 genesisAccount := core.GenesisAccount{ 375 Code: dumpAccount.Code, 376 Storage: storage, 377 Balance: balance, 378 Nonce: dumpAccount.Nonce, 379 } 380 g[addr] = genesisAccount 381 } 382 383 // saveFile marshalls the object to the given file 384 func saveFile(baseDir, filename string, data interface{}) error { 385 b, err := json.MarshalIndent(data, "", " ") 386 if err != nil { 387 return NewError(ErrorJson, fmt.Errorf("failed marshalling output: %v", err)) 388 } 389 location := path.Join(baseDir, filename) 390 if err = ioutil.WriteFile(location, b, 0644); err != nil { 391 return NewError(ErrorIO, fmt.Errorf("failed writing output: %v", err)) 392 } 393 log.Info("Wrote file", "file", location) 394 return nil 395 } 396 397 // dispatchOutput writes the output data to either stderr or stdout, or to the specified 398 // files 399 func dispatchOutput(ctx *cli.Context, baseDir string, result *ExecutionResult, alloc Alloc, body hexutil.Bytes) error { 400 stdOutObject := make(map[string]interface{}) 401 stdErrObject := make(map[string]interface{}) 402 dispatch := func(baseDir, fName, name string, obj interface{}) error { 403 switch fName { 404 case "stdout": 405 stdOutObject[name] = obj 406 case "stderr": 407 stdErrObject[name] = obj 408 case "": 409 // don't save 410 default: // save to file 411 if err := saveFile(baseDir, fName, obj); err != nil { 412 return err 413 } 414 } 415 return nil 416 } 417 if err := dispatch(baseDir, ctx.String(OutputAllocFlag.Name), "alloc", alloc); err != nil { 418 return err 419 } 420 if err := dispatch(baseDir, ctx.String(OutputResultFlag.Name), "result", result); err != nil { 421 return err 422 } 423 if err := dispatch(baseDir, ctx.String(OutputBodyFlag.Name), "body", body); err != nil { 424 return err 425 } 426 if len(stdOutObject) > 0 { 427 b, err := json.MarshalIndent(stdOutObject, "", " ") 428 if err != nil { 429 return NewError(ErrorJson, fmt.Errorf("failed marshalling output: %v", err)) 430 } 431 os.Stdout.Write(b) 432 os.Stdout.WriteString("\n") 433 } 434 if len(stdErrObject) > 0 { 435 b, err := json.MarshalIndent(stdErrObject, "", " ") 436 if err != nil { 437 return NewError(ErrorJson, fmt.Errorf("failed marshalling output: %v", err)) 438 } 439 os.Stderr.Write(b) 440 os.Stderr.WriteString("\n") 441 } 442 return nil 443 }