| 
									
										
										
										
											2017-03-01 13:34:50 +01:00
										 |  |  | // Copyright 2017 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // GNU General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-29 14:46:59 +01:00
										 |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2017-03-01 13:34:50 +01:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2015-01-29 14:46:59 +01:00
										 |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							| 
									
										
										
										
											2017-04-05 01:16:29 +03:00
										 |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2015-01-29 14:46:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-27 12:21:19 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/asm" | 
					
						
							| 
									
										
										
										
											2017-03-01 13:34:50 +01:00
										 |  |  | 	cli "gopkg.in/urfave/cli.v1" | 
					
						
							| 
									
										
										
										
											2015-01-29 14:46:59 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-01 13:34:50 +01:00
										 |  |  | var disasmCommand = cli.Command{ | 
					
						
							|  |  |  | 	Action:    disasmCmd, | 
					
						
							|  |  |  | 	Name:      "disasm", | 
					
						
							|  |  |  | 	Usage:     "disassembles evm binary", | 
					
						
							|  |  |  | 	ArgsUsage: "<file>", | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func disasmCmd(ctx *cli.Context) error { | 
					
						
							|  |  |  | 	if len(ctx.Args().First()) == 0 { | 
					
						
							|  |  |  | 		return errors.New("filename required") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := ctx.Args().First() | 
					
						
							|  |  |  | 	in, err := ioutil.ReadFile(fn) | 
					
						
							| 
									
										
										
										
											2015-01-29 14:46:59 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-03-01 13:34:50 +01:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2015-01-29 14:46:59 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-01 13:34:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-27 12:21:19 +01:00
										 |  |  | 	code := strings.TrimSpace(string(in[:])) | 
					
						
							| 
									
										
										
										
											2018-08-01 19:09:08 +03:00
										 |  |  | 	fmt.Printf("%v\n", code) | 
					
						
							| 
									
										
										
										
											2017-08-07 14:34:21 +03:00
										 |  |  | 	return asm.PrintDisassembled(code) | 
					
						
							| 
									
										
										
										
											2015-01-29 14:46:59 +01:00
										 |  |  | } |