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 (
}
CodeFileFlag
=
cli
.
StringFlag
{
Name
:
"codefile"
,
Usage
:
"
file containing EVM code
"
,
Usage
:
"
File containing EVM code. If '-' is specified, code is read from stdin
"
,
}
GasFlag
=
cli
.
Uint64Flag
{
Name
:
"gas"
,
...
...
@@ -102,6 +102,10 @@ var (
Name
:
"sender"
,
Usage
:
"The transaction origin"
,
}
ReceiverFlag
=
cli
.
StringFlag
{
Name
:
"receiver"
,
Usage
:
"The transaction receiver (execution context)"
,
}
DisableMemoryFlag
=
cli
.
BoolFlag
{
Name
:
"nomemory"
,
Usage
:
"disable memory output"
,
...
...
@@ -131,6 +135,7 @@ func init() {
GenesisFlag
,
MachineFlag
,
SenderFlag
,
ReceiverFlag
,
DisableMemoryFlag
,
DisableStackFlag
,
}
...
...
cmd/evm/runner.go
View file @
30402430
...
...
@@ -84,6 +84,7 @@ func runCmd(ctx *cli.Context) error {
statedb
*
state
.
StateDB
chainConfig
*
params
.
ChainConfig
sender
=
common
.
StringToAddress
(
"sender"
)
receiver
=
common
.
StringToAddress
(
"receiver"
)
)
if
ctx
.
GlobalBool
(
MachineFlag
.
Name
)
{
tracer
=
NewJSONLogger
(
logconfig
,
os
.
Stdout
)
...
...
@@ -104,46 +105,52 @@ func runCmd(ctx *cli.Context) error {
if
ctx
.
GlobalString
(
SenderFlag
.
Name
)
!=
""
{
sender
=
common
.
HexToAddress
(
ctx
.
GlobalString
(
SenderFlag
.
Name
))
}
statedb
.
CreateAccount
(
sender
)
if
ctx
.
GlobalString
(
ReceiverFlag
.
Name
)
!=
""
{
receiver
=
common
.
HexToAddress
(
ctx
.
GlobalString
(
ReceiverFlag
.
Name
))
}
var
(
code
[]
byte
ret
[]
byte
err
error
)
if
fn
:=
ctx
.
Args
()
.
First
();
len
(
fn
)
>
0
{
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
// The '--code' or '--codefile' flag overrides code in state
if
ctx
.
GlobalString
(
CodeFileFlag
.
Name
)
!=
""
{
var
hexcode
[]
byte
var
err
error
hexcode
,
err
=
ioutil
.
ReadFile
(
ctx
.
GlobalString
(
CodeFileFlag
.
Name
))
if
err
!=
nil
{
fmt
.
Printf
(
"Could not load code from file: %v
\n
"
,
err
)
// If - is specified, it means that code comes from stdin
if
ctx
.
GlobalString
(
CodeFileFlag
.
Name
)
==
"-"
{
//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
)
}
}
else
{
var
err
error
hexcode
,
err
=
ioutil
.
ReadAll
(
os
.
Stdin
)
if
err
!=
nil
{
fmt
.
Printf
(
"Could not load code from stdin: %v
\n
"
,
err
)
// Codefile with hex assembly
if
hexcode
,
err
=
ioutil
.
ReadFile
(
ctx
.
GlobalString
(
CodeFileFlag
.
Name
));
err
!=
nil
{
fmt
.
Printf
(
"Could not load code from file: %v
\n
"
,
err
)
os
.
Exit
(
1
)
}
}
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
)
runtimeConfig
:=
runtime
.
Config
{
Origin
:
sender
,
...
...
@@ -180,9 +187,9 @@ func runCmd(ctx *cli.Context) error {
input
:=
append
(
code
,
common
.
Hex2Bytes
(
ctx
.
GlobalString
(
InputFlag
.
Name
))
...
)
ret
,
_
,
leftOverGas
,
err
=
runtime
.
Create
(
input
,
&
runtimeConfig
)
}
else
{
receiver
:=
common
.
StringToAddress
(
"receiver"
)
if
len
(
code
)
>
0
{
statedb
.
SetCode
(
receiver
,
code
)
}
ret
,
leftOverGas
,
err
=
runtime
.
Call
(
receiver
,
common
.
Hex2Bytes
(
ctx
.
GlobalString
(
InputFlag
.
Name
)),
&
runtimeConfig
)
}
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