Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
30402430
Commit
30402430
authored
Aug 15, 2017
by
Martin Holst Swende
Committed by
Felix Lange
Aug 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd/evm: add --receiver, support code from stdin (#14873)
parent
9facf642
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
27 deletions
+39
-27
main.go
cmd/evm/main.go
+6
-1
runner.go
cmd/evm/runner.go
+33
-26
No files found.
cmd/evm/main.go
View file @
30402430
...
@@ -53,7 +53,7 @@ var (
...
@@ -53,7 +53,7 @@ var (
}
}
CodeFileFlag
=
cli
.
StringFlag
{
CodeFileFlag
=
cli
.
StringFlag
{
Name
:
"codefile"
,
Name
:
"codefile"
,
Usage
:
"
file containing EVM code
"
,
Usage
:
"
File containing EVM code. If '-' is specified, code is read from stdin
"
,
}
}
GasFlag
=
cli
.
Uint64Flag
{
GasFlag
=
cli
.
Uint64Flag
{
Name
:
"gas"
,
Name
:
"gas"
,
...
@@ -102,6 +102,10 @@ var (
...
@@ -102,6 +102,10 @@ var (
Name
:
"sender"
,
Name
:
"sender"
,
Usage
:
"The transaction origin"
,
Usage
:
"The transaction origin"
,
}
}
ReceiverFlag
=
cli
.
StringFlag
{
Name
:
"receiver"
,
Usage
:
"The transaction receiver (execution context)"
,
}
DisableMemoryFlag
=
cli
.
BoolFlag
{
DisableMemoryFlag
=
cli
.
BoolFlag
{
Name
:
"nomemory"
,
Name
:
"nomemory"
,
Usage
:
"disable memory output"
,
Usage
:
"disable memory output"
,
...
@@ -131,6 +135,7 @@ func init() {
...
@@ -131,6 +135,7 @@ func init() {
GenesisFlag
,
GenesisFlag
,
MachineFlag
,
MachineFlag
,
SenderFlag
,
SenderFlag
,
ReceiverFlag
,
DisableMemoryFlag
,
DisableMemoryFlag
,
DisableStackFlag
,
DisableStackFlag
,
}
}
...
...
cmd/evm/runner.go
View file @
30402430
...
@@ -84,6 +84,7 @@ func runCmd(ctx *cli.Context) error {
...
@@ -84,6 +84,7 @@ func runCmd(ctx *cli.Context) error {
statedb
*
state
.
StateDB
statedb
*
state
.
StateDB
chainConfig
*
params
.
ChainConfig
chainConfig
*
params
.
ChainConfig
sender
=
common
.
StringToAddress
(
"sender"
)
sender
=
common
.
StringToAddress
(
"sender"
)
receiver
=
common
.
StringToAddress
(
"receiver"
)
)
)
if
ctx
.
GlobalBool
(
MachineFlag
.
Name
)
{
if
ctx
.
GlobalBool
(
MachineFlag
.
Name
)
{
tracer
=
NewJSONLogger
(
logconfig
,
os
.
Stdout
)
tracer
=
NewJSONLogger
(
logconfig
,
os
.
Stdout
)
...
@@ -104,46 +105,52 @@ func runCmd(ctx *cli.Context) error {
...
@@ -104,46 +105,52 @@ func runCmd(ctx *cli.Context) error {
if
ctx
.
GlobalString
(
SenderFlag
.
Name
)
!=
""
{
if
ctx
.
GlobalString
(
SenderFlag
.
Name
)
!=
""
{
sender
=
common
.
HexToAddress
(
ctx
.
GlobalString
(
SenderFlag
.
Name
))
sender
=
common
.
HexToAddress
(
ctx
.
GlobalString
(
SenderFlag
.
Name
))
}
}
statedb
.
CreateAccount
(
sender
)
statedb
.
CreateAccount
(
sender
)
if
ctx
.
GlobalString
(
ReceiverFlag
.
Name
)
!=
""
{
receiver
=
common
.
HexToAddress
(
ctx
.
GlobalString
(
ReceiverFlag
.
Name
))
}
var
(
var
(
code
[]
byte
code
[]
byte
ret
[]
byte
ret
[]
byte
err
error
err
error
)
)
if
fn
:=
ctx
.
Args
()
.
First
();
len
(
fn
)
>
0
{
// The '--code' or '--codefile' flag overrides code in state
src
,
err
:=
ioutil
.
ReadFile
(
fn
)
if
err
!=
nil
{
return
err
}
bin
,
err
:=
compiler
.
Compile
(
fn
,
src
,
false
)
if
err
!=
nil
{
return
err
}
code
=
common
.
Hex2Bytes
(
bin
)
}
else
if
ctx
.
GlobalString
(
CodeFlag
.
Name
)
!=
""
{
code
=
common
.
Hex2Bytes
(
ctx
.
GlobalString
(
CodeFlag
.
Name
))
}
else
{
var
hexcode
[]
byte
if
ctx
.
GlobalString
(
CodeFileFlag
.
Name
)
!=
""
{
if
ctx
.
GlobalString
(
CodeFileFlag
.
Name
)
!=
""
{
var
hexcode
[]
byte
var
err
error
var
err
error
hexcode
,
err
=
ioutil
.
ReadFile
(
ctx
.
GlobalString
(
CodeFileFlag
.
Name
))
// If - is specified, it means that code comes from stdin
if
err
!=
nil
{
if
ctx
.
GlobalString
(
CodeFileFlag
.
Name
)
==
"-"
{
fmt
.
Printf
(
"Could not load code from file: %v
\n
"
,
err
)
//Try reading from stdin
if
hexcode
,
err
=
ioutil
.
ReadAll
(
os
.
Stdin
);
err
!=
nil
{
fmt
.
Printf
(
"Could not load code from stdin: %v
\n
"
,
err
)
os
.
Exit
(
1
)
os
.
Exit
(
1
)
}
}
}
else
{
}
else
{
var
err
error
// Codefile with hex assembly
hexcode
,
err
=
ioutil
.
ReadAll
(
os
.
Stdin
)
if
hexcode
,
err
=
ioutil
.
ReadFile
(
ctx
.
GlobalString
(
CodeFileFlag
.
Name
));
err
!=
nil
{
if
err
!=
nil
{
fmt
.
Printf
(
"Could not load code from file: %v
\n
"
,
err
)
fmt
.
Printf
(
"Could not load code from stdin: %v
\n
"
,
err
)
os
.
Exit
(
1
)
os
.
Exit
(
1
)
}
}
}
}
code
=
common
.
Hex2Bytes
(
string
(
bytes
.
TrimRight
(
hexcode
,
"
\n
"
)))
code
=
common
.
Hex2Bytes
(
string
(
bytes
.
TrimRight
(
hexcode
,
"
\n
"
)))
}
else
if
ctx
.
GlobalString
(
CodeFlag
.
Name
)
!=
""
{
code
=
common
.
Hex2Bytes
(
ctx
.
GlobalString
(
CodeFlag
.
Name
))
}
else
if
fn
:=
ctx
.
Args
()
.
First
();
len
(
fn
)
>
0
{
// EASM-file to compile
src
,
err
:=
ioutil
.
ReadFile
(
fn
)
if
err
!=
nil
{
return
err
}
bin
,
err
:=
compiler
.
Compile
(
fn
,
src
,
false
)
if
err
!=
nil
{
return
err
}
}
code
=
common
.
Hex2Bytes
(
bin
)
}
initialGas
:=
ctx
.
GlobalUint64
(
GasFlag
.
Name
)
initialGas
:=
ctx
.
GlobalUint64
(
GasFlag
.
Name
)
runtimeConfig
:=
runtime
.
Config
{
runtimeConfig
:=
runtime
.
Config
{
Origin
:
sender
,
Origin
:
sender
,
...
@@ -180,9 +187,9 @@ func runCmd(ctx *cli.Context) error {
...
@@ -180,9 +187,9 @@ func runCmd(ctx *cli.Context) error {
input
:=
append
(
code
,
common
.
Hex2Bytes
(
ctx
.
GlobalString
(
InputFlag
.
Name
))
...
)
input
:=
append
(
code
,
common
.
Hex2Bytes
(
ctx
.
GlobalString
(
InputFlag
.
Name
))
...
)
ret
,
_
,
leftOverGas
,
err
=
runtime
.
Create
(
input
,
&
runtimeConfig
)
ret
,
_
,
leftOverGas
,
err
=
runtime
.
Create
(
input
,
&
runtimeConfig
)
}
else
{
}
else
{
receiver
:=
common
.
StringToAddress
(
"receiver"
)
if
len
(
code
)
>
0
{
statedb
.
SetCode
(
receiver
,
code
)
statedb
.
SetCode
(
receiver
,
code
)
}
ret
,
leftOverGas
,
err
=
runtime
.
Call
(
receiver
,
common
.
Hex2Bytes
(
ctx
.
GlobalString
(
InputFlag
.
Name
)),
&
runtimeConfig
)
ret
,
leftOverGas
,
err
=
runtime
.
Call
(
receiver
,
common
.
Hex2Bytes
(
ctx
.
GlobalString
(
InputFlag
.
Name
)),
&
runtimeConfig
)
}
}
execTime
:=
time
.
Since
(
tstart
)
execTime
:=
time
.
Since
(
tstart
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment