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
132df860
Commit
132df860
authored
Aug 07, 2015
by
Jeffrey Wilcke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
miner, rpc: added length check for extra data
parent
785b3e7a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
miner.go
miner/miner.go
+8
-1
miner.go
rpc/api/miner.go
+2
-6
No files found.
miner/miner.go
View file @
132df860
...
...
@@ -18,6 +18,7 @@
package
miner
import
(
"fmt"
"math/big"
"sync/atomic"
...
...
@@ -29,6 +30,7 @@ import (
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/pow"
)
...
...
@@ -143,8 +145,13 @@ func (self *Miner) HashRate() int64 {
return
self
.
pow
.
GetHashrate
()
}
func
(
self
*
Miner
)
SetExtra
(
extra
[]
byte
)
{
func
(
self
*
Miner
)
SetExtra
(
extra
[]
byte
)
error
{
if
uint64
(
len
(
extra
))
>
params
.
MaximumExtraDataSize
.
Uint64
()
{
return
fmt
.
Errorf
(
"Extra exceeds max length. %d > %v"
,
len
(
extra
),
params
.
MaximumExtraDataSize
)
}
self
.
worker
.
extra
=
extra
return
nil
}
func
(
self
*
Miner
)
PendingState
()
*
state
.
StateDB
{
...
...
rpc/api/miner.go
View file @
132df860
...
...
@@ -17,12 +17,9 @@
package
api
import
(
"fmt"
"github.com/ethereum/ethash"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/rpc/codec"
"github.com/ethereum/go-ethereum/rpc/shared"
)
...
...
@@ -126,11 +123,10 @@ func (self *minerApi) SetExtra(req *shared.Request) (interface{}, error) {
return
nil
,
err
}
if
uint64
(
len
(
args
.
Data
))
>
params
.
MaximumExtraDataSize
.
Uint64
()
*
2
{
return
false
,
fmt
.
Errorf
(
"extra datasize can be no longer than %v bytes"
,
params
.
MaximumExtraDataSize
)
if
err
:=
self
.
ethereum
.
Miner
()
.
SetExtra
([]
byte
(
args
.
Data
));
err
!=
nil
{
return
false
,
err
}
self
.
ethereum
.
Miner
()
.
SetExtra
([]
byte
(
args
.
Data
))
return
true
,
nil
}
...
...
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