2017-03-01 12:34:50 +00:00
|
|
|
// Copyright 2017 The go-ethereum Authors
|
2015-07-07 00:54:22 +00:00
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-01-29 13:46:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-03-01 12:34:50 +00:00
|
|
|
"errors"
|
2015-01-29 13:46:59 +00:00
|
|
|
"fmt"
|
2022-05-16 09:59:35 +00:00
|
|
|
"os"
|
2017-04-04 22:16:29 +00:00
|
|
|
"strings"
|
2015-01-29 13:46:59 +00:00
|
|
|
|
2017-02-27 11:21:19 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/asm"
|
2022-06-27 16:22:36 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2015-01-29 13:46:59 +00:00
|
|
|
)
|
|
|
|
|
2022-06-27 16:22:36 +00:00
|
|
|
var disasmCommand = &cli.Command{
|
2017-03-01 12:34:50 +00:00
|
|
|
Action: disasmCmd,
|
|
|
|
Name: "disasm",
|
2023-11-21 07:56:23 +00:00
|
|
|
Usage: "Disassembles evm binary",
|
2017-03-01 12:34:50 +00:00
|
|
|
ArgsUsage: "<file>",
|
|
|
|
}
|
|
|
|
|
|
|
|
func disasmCmd(ctx *cli.Context) error {
|
2020-01-27 09:05:21 +00:00
|
|
|
var in string
|
|
|
|
switch {
|
|
|
|
case len(ctx.Args().First()) > 0:
|
|
|
|
fn := ctx.Args().First()
|
2022-05-16 09:59:35 +00:00
|
|
|
input, err := os.ReadFile(fn)
|
2020-01-27 09:05:21 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
in = string(input)
|
2022-06-27 16:22:36 +00:00
|
|
|
case ctx.IsSet(InputFlag.Name):
|
|
|
|
in = ctx.String(InputFlag.Name)
|
2020-01-27 09:05:21 +00:00
|
|
|
default:
|
2021-09-13 16:59:52 +00:00
|
|
|
return errors.New("missing filename or --input value")
|
2017-03-01 12:34:50 +00:00
|
|
|
}
|
|
|
|
|
2020-01-27 09:05:21 +00:00
|
|
|
code := strings.TrimSpace(in)
|
2018-08-01 16:09:08 +00:00
|
|
|
fmt.Printf("%v\n", code)
|
2017-08-07 11:34:21 +00:00
|
|
|
return asm.PrintDisassembled(code)
|
2015-01-29 13:46:59 +00:00
|
|
|
}
|