|
| 1 | +// Copyright 2023 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 main |
| 18 | + |
| 19 | +import ( |
| 20 | + "bufio" |
| 21 | + "encoding/hex" |
| 22 | + "encoding/json" |
| 23 | + "fmt" |
| 24 | + "io/fs" |
| 25 | + "os" |
| 26 | + "path/filepath" |
| 27 | + "strings" |
| 28 | + |
| 29 | + "github.com/ethereum/go-ethereum/core/vm" |
| 30 | + "github.com/ethereum/go-ethereum/log" |
| 31 | + "github.com/urfave/cli/v2" |
| 32 | +) |
| 33 | + |
| 34 | +func init() { |
| 35 | + jt = vm.NewPragueEOFInstructionSetForTesting() |
| 36 | +} |
| 37 | + |
| 38 | +var ( |
| 39 | + jt vm.JumpTable |
| 40 | + initcode = "INITCODE" |
| 41 | +) |
| 42 | + |
| 43 | +func eofParseAction(ctx *cli.Context) error { |
| 44 | + // If `--test` is set, parse and validate the reference test at the provided path. |
| 45 | + if ctx.IsSet(refTestFlag.Name) { |
| 46 | + var ( |
| 47 | + file = ctx.String(refTestFlag.Name) |
| 48 | + executedTests int |
| 49 | + passedTests int |
| 50 | + ) |
| 51 | + err := filepath.Walk(file, func(path string, info fs.FileInfo, err error) error { |
| 52 | + if err != nil { |
| 53 | + return err |
| 54 | + } |
| 55 | + if info.IsDir() { |
| 56 | + return nil |
| 57 | + } |
| 58 | + log.Debug("Executing test", "name", info.Name()) |
| 59 | + passed, tot, err := executeTest(path) |
| 60 | + passedTests += passed |
| 61 | + executedTests += tot |
| 62 | + return err |
| 63 | + }) |
| 64 | + if err != nil { |
| 65 | + return err |
| 66 | + } |
| 67 | + log.Info("Executed tests", "passed", passedTests, "total executed", executedTests) |
| 68 | + return nil |
| 69 | + } |
| 70 | + // If `--hex` is set, parse and validate the hex string argument. |
| 71 | + if ctx.IsSet(hexFlag.Name) { |
| 72 | + if _, err := parseAndValidate(ctx.String(hexFlag.Name), false); err != nil { |
| 73 | + return fmt.Errorf("err: %w", err) |
| 74 | + } |
| 75 | + fmt.Println("OK") |
| 76 | + return nil |
| 77 | + } |
| 78 | + // If neither are passed in, read input from stdin. |
| 79 | + scanner := bufio.NewScanner(os.Stdin) |
| 80 | + scanner.Buffer(make([]byte, 1024*1024), 10*1024*1024) |
| 81 | + for scanner.Scan() { |
| 82 | + l := strings.TrimSpace(scanner.Text()) |
| 83 | + if strings.HasPrefix(l, "#") || l == "" { |
| 84 | + continue |
| 85 | + } |
| 86 | + if _, err := parseAndValidate(l, false); err != nil { |
| 87 | + fmt.Printf("err: %v\n", err) |
| 88 | + } else { |
| 89 | + fmt.Println("OK") |
| 90 | + } |
| 91 | + } |
| 92 | + if err := scanner.Err(); err != nil { |
| 93 | + fmt.Println(err.Error()) |
| 94 | + } |
| 95 | + return nil |
| 96 | +} |
| 97 | + |
| 98 | +type refTests struct { |
| 99 | + Vectors map[string]eOFTest `json:"vectors"` |
| 100 | +} |
| 101 | + |
| 102 | +type eOFTest struct { |
| 103 | + Code string `json:"code"` |
| 104 | + Results map[string]etResult `json:"results"` |
| 105 | + ContainerKind string `json:"containerKind"` |
| 106 | +} |
| 107 | + |
| 108 | +type etResult struct { |
| 109 | + Result bool `json:"result"` |
| 110 | + Exception string `json:"exception,omitempty"` |
| 111 | +} |
| 112 | + |
| 113 | +func executeTest(path string) (int, int, error) { |
| 114 | + src, err := os.ReadFile(path) |
| 115 | + if err != nil { |
| 116 | + return 0, 0, err |
| 117 | + } |
| 118 | + var testsByName map[string]refTests |
| 119 | + if err := json.Unmarshal(src, &testsByName); err != nil { |
| 120 | + return 0, 0, err |
| 121 | + } |
| 122 | + passed, total := 0, 0 |
| 123 | + for testsName, tests := range testsByName { |
| 124 | + for name, tt := range tests.Vectors { |
| 125 | + for fork, r := range tt.Results { |
| 126 | + total++ |
| 127 | + _, err := parseAndValidate(tt.Code, tt.ContainerKind == initcode) |
| 128 | + if r.Result && err != nil { |
| 129 | + log.Error("Test failure, expected validation success", "name", testsName, "idx", name, "fork", fork, "err", err) |
| 130 | + continue |
| 131 | + } |
| 132 | + if !r.Result && err == nil { |
| 133 | + log.Error("Test failure, expected validation error", "name", testsName, "idx", name, "fork", fork, "have err", r.Exception, "err", err) |
| 134 | + continue |
| 135 | + } |
| 136 | + passed++ |
| 137 | + } |
| 138 | + } |
| 139 | + } |
| 140 | + return passed, total, nil |
| 141 | +} |
| 142 | + |
| 143 | +func parseAndValidate(s string, isInitCode bool) (*vm.Container, error) { |
| 144 | + if len(s) >= 2 && strings.HasPrefix(s, "0x") { |
| 145 | + s = s[2:] |
| 146 | + } |
| 147 | + b, err := hex.DecodeString(s) |
| 148 | + if err != nil { |
| 149 | + return nil, fmt.Errorf("unable to decode data: %w", err) |
| 150 | + } |
| 151 | + return parse(b, isInitCode) |
| 152 | +} |
| 153 | + |
| 154 | +func parse(b []byte, isInitCode bool) (*vm.Container, error) { |
| 155 | + var c vm.Container |
| 156 | + if err := c.UnmarshalBinary(b, isInitCode); err != nil { |
| 157 | + return nil, err |
| 158 | + } |
| 159 | + if err := c.ValidateCode(&jt, isInitCode); err != nil { |
| 160 | + return nil, err |
| 161 | + } |
| 162 | + return &c, nil |
| 163 | +} |
| 164 | + |
| 165 | +func eofDumpAction(ctx *cli.Context) error { |
| 166 | + // If `--hex` is set, parse and validate the hex string argument. |
| 167 | + if ctx.IsSet(hexFlag.Name) { |
| 168 | + return eofDump(ctx.String(hexFlag.Name)) |
| 169 | + } |
| 170 | + // Otherwise read from stdin |
| 171 | + scanner := bufio.NewScanner(os.Stdin) |
| 172 | + scanner.Buffer(make([]byte, 1024*1024), 10*1024*1024) |
| 173 | + for scanner.Scan() { |
| 174 | + l := strings.TrimSpace(scanner.Text()) |
| 175 | + if strings.HasPrefix(l, "#") || l == "" { |
| 176 | + continue |
| 177 | + } |
| 178 | + if err := eofDump(l); err != nil { |
| 179 | + return err |
| 180 | + } |
| 181 | + fmt.Println("") |
| 182 | + } |
| 183 | + return scanner.Err() |
| 184 | +} |
| 185 | + |
| 186 | +func eofDump(hexdata string) error { |
| 187 | + if len(hexdata) >= 2 && strings.HasPrefix(hexdata, "0x") { |
| 188 | + hexdata = hexdata[2:] |
| 189 | + } |
| 190 | + b, err := hex.DecodeString(hexdata) |
| 191 | + if err != nil { |
| 192 | + return fmt.Errorf("unable to decode data: %w", err) |
| 193 | + } |
| 194 | + var c vm.Container |
| 195 | + if err := c.UnmarshalBinary(b, false); err != nil { |
| 196 | + return err |
| 197 | + } |
| 198 | + fmt.Println(c.String()) |
| 199 | + return nil |
| 200 | +} |
0 commit comments