github.com/zhiqiangxu/go-ethereum@v1.9.16-0.20210824055606-be91cfdebc48/eth/api.go (about) 1 // Copyright 2015 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package eth 18 19 import ( 20 "compress/gzip" 21 "context" 22 "errors" 23 "fmt" 24 "io" 25 "math/big" 26 "os" 27 "runtime" 28 "strings" 29 "time" 30 31 "github.com/zhiqiangxu/go-ethereum/common" 32 "github.com/zhiqiangxu/go-ethereum/common/hexutil" 33 "github.com/zhiqiangxu/go-ethereum/core" 34 "github.com/zhiqiangxu/go-ethereum/core/rawdb" 35 "github.com/zhiqiangxu/go-ethereum/core/state" 36 "github.com/zhiqiangxu/go-ethereum/core/types" 37 "github.com/zhiqiangxu/go-ethereum/internal/ethapi" 38 "github.com/zhiqiangxu/go-ethereum/rlp" 39 "github.com/zhiqiangxu/go-ethereum/rpc" 40 "github.com/zhiqiangxu/go-ethereum/trie" 41 ) 42 43 // PublicEthereumAPI provides an API to access Ethereum full node-related 44 // information. 45 type PublicEthereumAPI struct { 46 e *Ethereum 47 } 48 49 // NewPublicEthereumAPI creates a new Ethereum protocol API for full nodes. 50 func NewPublicEthereumAPI(e *Ethereum) *PublicEthereumAPI { 51 return &PublicEthereumAPI{e} 52 } 53 54 // Etherbase is the address that mining rewards will be send to 55 func (api *PublicEthereumAPI) Etherbase() (common.Address, error) { 56 return api.e.Etherbase() 57 } 58 59 // Coinbase is the address that mining rewards will be send to (alias for Etherbase) 60 func (api *PublicEthereumAPI) Coinbase() (common.Address, error) { 61 return api.Etherbase() 62 } 63 64 // Hashrate returns the POW hashrate 65 func (api *PublicEthereumAPI) Hashrate() hexutil.Uint64 { 66 return hexutil.Uint64(api.e.Miner().HashRate()) 67 } 68 69 // ChainId is the EIP-155 replay-protection chain id for the current ethereum chain config. 70 func (api *PublicEthereumAPI) ChainId() hexutil.Uint64 { 71 chainID := new(big.Int) 72 if config := api.e.blockchain.Config(); config.IsEIP155(api.e.blockchain.CurrentBlock().Number()) { 73 chainID = config.ChainID 74 } 75 return (hexutil.Uint64)(chainID.Uint64()) 76 } 77 78 // PublicMinerAPI provides an API to control the miner. 79 // It offers only methods that operate on data that pose no security risk when it is publicly accessible. 80 type PublicMinerAPI struct { 81 e *Ethereum 82 } 83 84 // NewPublicMinerAPI create a new PublicMinerAPI instance. 85 func NewPublicMinerAPI(e *Ethereum) *PublicMinerAPI { 86 return &PublicMinerAPI{e} 87 } 88 89 // Mining returns an indication if this node is currently mining. 90 func (api *PublicMinerAPI) Mining() bool { 91 return api.e.IsMining() 92 } 93 94 // PrivateMinerAPI provides private RPC methods to control the miner. 95 // These methods can be abused by external users and must be considered insecure for use by untrusted users. 96 type PrivateMinerAPI struct { 97 e *Ethereum 98 } 99 100 // NewPrivateMinerAPI create a new RPC service which controls the miner of this node. 101 func NewPrivateMinerAPI(e *Ethereum) *PrivateMinerAPI { 102 return &PrivateMinerAPI{e: e} 103 } 104 105 // Start starts the miner with the given number of threads. If threads is nil, 106 // the number of workers started is equal to the number of logical CPUs that are 107 // usable by this process. If mining is already running, this method adjust the 108 // number of threads allowed to use and updates the minimum price required by the 109 // transaction pool. 110 func (api *PrivateMinerAPI) Start(threads *int) error { 111 if threads == nil { 112 return api.e.StartMining(runtime.NumCPU()) 113 } 114 return api.e.StartMining(*threads) 115 } 116 117 // Stop terminates the miner, both at the consensus engine level as well as at 118 // the block creation level. 119 func (api *PrivateMinerAPI) Stop() { 120 api.e.StopMining() 121 } 122 123 // SetExtra sets the extra data string that is included when this miner mines a block. 124 func (api *PrivateMinerAPI) SetExtra(extra string) (bool, error) { 125 if err := api.e.Miner().SetExtra([]byte(extra)); err != nil { 126 return false, err 127 } 128 return true, nil 129 } 130 131 // SetGasPrice sets the minimum accepted gas price for the miner. 132 func (api *PrivateMinerAPI) SetGasPrice(gasPrice hexutil.Big) bool { 133 api.e.lock.Lock() 134 api.e.gasPrice = (*big.Int)(&gasPrice) 135 api.e.lock.Unlock() 136 137 api.e.txPool.SetGasPrice((*big.Int)(&gasPrice)) 138 return true 139 } 140 141 // SetEtherbase sets the etherbase of the miner 142 func (api *PrivateMinerAPI) SetEtherbase(etherbase common.Address) bool { 143 api.e.SetEtherbase(etherbase) 144 return true 145 } 146 147 // SetRecommitInterval updates the interval for miner sealing work recommitting. 148 func (api *PrivateMinerAPI) SetRecommitInterval(interval int) { 149 api.e.Miner().SetRecommitInterval(time.Duration(interval) * time.Millisecond) 150 } 151 152 // GetHashrate returns the current hashrate of the miner. 153 func (api *PrivateMinerAPI) GetHashrate() uint64 { 154 return api.e.miner.HashRate() 155 } 156 157 // PrivateAdminAPI is the collection of Ethereum full node-related APIs 158 // exposed over the private admin endpoint. 159 type PrivateAdminAPI struct { 160 eth *Ethereum 161 } 162 163 // NewPrivateAdminAPI creates a new API definition for the full node private 164 // admin methods of the Ethereum service. 165 func NewPrivateAdminAPI(eth *Ethereum) *PrivateAdminAPI { 166 return &PrivateAdminAPI{eth: eth} 167 } 168 169 // ExportChain exports the current blockchain into a local file, 170 // or a range of blocks if first and last are non-nil 171 func (api *PrivateAdminAPI) ExportChain(file string, first *uint64, last *uint64) (bool, error) { 172 if first == nil && last != nil { 173 return false, errors.New("last cannot be specified without first") 174 } 175 if first != nil && last == nil { 176 head := api.eth.BlockChain().CurrentHeader().Number.Uint64() 177 last = &head 178 } 179 if _, err := os.Stat(file); err == nil { 180 // File already exists. Allowing overwrite could be a DoS vecotor, 181 // since the 'file' may point to arbitrary paths on the drive 182 return false, errors.New("location would overwrite an existing file") 183 } 184 // Make sure we can create the file to export into 185 out, err := os.OpenFile(file, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, os.ModePerm) 186 if err != nil { 187 return false, err 188 } 189 defer out.Close() 190 191 var writer io.Writer = out 192 if strings.HasSuffix(file, ".gz") { 193 writer = gzip.NewWriter(writer) 194 defer writer.(*gzip.Writer).Close() 195 } 196 197 // Export the blockchain 198 if first != nil { 199 if err := api.eth.BlockChain().ExportN(writer, *first, *last); err != nil { 200 return false, err 201 } 202 } else if err := api.eth.BlockChain().Export(writer); err != nil { 203 return false, err 204 } 205 return true, nil 206 } 207 208 func hasAllBlocks(chain *core.BlockChain, bs []*types.Block) bool { 209 for _, b := range bs { 210 if !chain.HasBlock(b.Hash(), b.NumberU64()) { 211 return false 212 } 213 } 214 215 return true 216 } 217 218 // ImportChain imports a blockchain from a local file. 219 func (api *PrivateAdminAPI) ImportChain(file string) (bool, error) { 220 // Make sure the can access the file to import 221 in, err := os.Open(file) 222 if err != nil { 223 return false, err 224 } 225 defer in.Close() 226 227 var reader io.Reader = in 228 if strings.HasSuffix(file, ".gz") { 229 if reader, err = gzip.NewReader(reader); err != nil { 230 return false, err 231 } 232 } 233 234 // Run actual the import in pre-configured batches 235 stream := rlp.NewStream(reader, 0) 236 237 blocks, index := make([]*types.Block, 0, 2500), 0 238 for batch := 0; ; batch++ { 239 // Load a batch of blocks from the input file 240 for len(blocks) < cap(blocks) { 241 block := new(types.Block) 242 if err := stream.Decode(block); err == io.EOF { 243 break 244 } else if err != nil { 245 return false, fmt.Errorf("block %d: failed to parse: %v", index, err) 246 } 247 blocks = append(blocks, block) 248 index++ 249 } 250 if len(blocks) == 0 { 251 break 252 } 253 254 if hasAllBlocks(api.eth.BlockChain(), blocks) { 255 blocks = blocks[:0] 256 continue 257 } 258 // Import the batch and reset the buffer 259 if _, err := api.eth.BlockChain().InsertChain(blocks); err != nil { 260 return false, fmt.Errorf("batch %d: failed to insert: %v", batch, err) 261 } 262 blocks = blocks[:0] 263 } 264 return true, nil 265 } 266 267 // PublicDebugAPI is the collection of Ethereum full node APIs exposed 268 // over the public debugging endpoint. 269 type PublicDebugAPI struct { 270 eth *Ethereum 271 } 272 273 // NewPublicDebugAPI creates a new API definition for the full node- 274 // related public debug methods of the Ethereum service. 275 func NewPublicDebugAPI(eth *Ethereum) *PublicDebugAPI { 276 return &PublicDebugAPI{eth: eth} 277 } 278 279 // DumpBlock retrieves the entire state of the database at a given block. 280 func (api *PublicDebugAPI) DumpBlock(blockNr rpc.BlockNumber) (state.Dump, error) { 281 if blockNr == rpc.PendingBlockNumber { 282 // If we're dumping the pending state, we need to request 283 // both the pending block as well as the pending state from 284 // the miner and operate on those 285 _, stateDb := api.eth.miner.Pending() 286 return stateDb.RawDump(false, false, true), nil 287 } 288 var block *types.Block 289 if blockNr == rpc.LatestBlockNumber { 290 block = api.eth.blockchain.CurrentBlock() 291 } else { 292 block = api.eth.blockchain.GetBlockByNumber(uint64(blockNr)) 293 } 294 if block == nil { 295 return state.Dump{}, fmt.Errorf("block #%d not found", blockNr) 296 } 297 stateDb, err := api.eth.BlockChain().StateAt(block.Root()) 298 if err != nil { 299 return state.Dump{}, err 300 } 301 return stateDb.RawDump(false, false, true), nil 302 } 303 304 // PrivateDebugAPI is the collection of Ethereum full node APIs exposed over 305 // the private debugging endpoint. 306 type PrivateDebugAPI struct { 307 eth *Ethereum 308 } 309 310 // NewPrivateDebugAPI creates a new API definition for the full node-related 311 // private debug methods of the Ethereum service. 312 func NewPrivateDebugAPI(eth *Ethereum) *PrivateDebugAPI { 313 return &PrivateDebugAPI{eth: eth} 314 } 315 316 // Preimage is a debug API function that returns the preimage for a sha3 hash, if known. 317 func (api *PrivateDebugAPI) Preimage(ctx context.Context, hash common.Hash) (hexutil.Bytes, error) { 318 if preimage := rawdb.ReadPreimage(api.eth.ChainDb(), hash); preimage != nil { 319 return preimage, nil 320 } 321 return nil, errors.New("unknown preimage") 322 } 323 324 // BadBlockArgs represents the entries in the list returned when bad blocks are queried. 325 type BadBlockArgs struct { 326 Hash common.Hash `json:"hash"` 327 Block map[string]interface{} `json:"block"` 328 RLP string `json:"rlp"` 329 } 330 331 // GetBadBlocks returns a list of the last 'bad blocks' that the client has seen on the network 332 // and returns them as a JSON list of block-hashes 333 func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]*BadBlockArgs, error) { 334 blocks := api.eth.BlockChain().BadBlocks() 335 results := make([]*BadBlockArgs, len(blocks)) 336 337 var err error 338 for i, block := range blocks { 339 results[i] = &BadBlockArgs{ 340 Hash: block.Hash(), 341 } 342 if rlpBytes, err := rlp.EncodeToBytes(block); err != nil { 343 results[i].RLP = err.Error() // Hacky, but hey, it works 344 } else { 345 results[i].RLP = fmt.Sprintf("0x%x", rlpBytes) 346 } 347 if results[i].Block, err = ethapi.RPCMarshalBlock(block, true, true); err != nil { 348 results[i].Block = map[string]interface{}{"error": err.Error()} 349 } 350 } 351 return results, nil 352 } 353 354 // AccountRangeMaxResults is the maximum number of results to be returned per call 355 const AccountRangeMaxResults = 256 356 357 // AccountRangeAt enumerates all accounts in the given block and start point in paging request 358 func (api *PublicDebugAPI) AccountRange(blockNrOrHash rpc.BlockNumberOrHash, start []byte, maxResults int, nocode, nostorage, incompletes bool) (state.IteratorDump, error) { 359 var stateDb *state.StateDB 360 var err error 361 362 if number, ok := blockNrOrHash.Number(); ok { 363 if number == rpc.PendingBlockNumber { 364 // If we're dumping the pending state, we need to request 365 // both the pending block as well as the pending state from 366 // the miner and operate on those 367 _, stateDb = api.eth.miner.Pending() 368 } else { 369 var block *types.Block 370 if number == rpc.LatestBlockNumber { 371 block = api.eth.blockchain.CurrentBlock() 372 } else { 373 block = api.eth.blockchain.GetBlockByNumber(uint64(number)) 374 } 375 if block == nil { 376 return state.IteratorDump{}, fmt.Errorf("block #%d not found", number) 377 } 378 stateDb, err = api.eth.BlockChain().StateAt(block.Root()) 379 if err != nil { 380 return state.IteratorDump{}, err 381 } 382 } 383 } else if hash, ok := blockNrOrHash.Hash(); ok { 384 block := api.eth.blockchain.GetBlockByHash(hash) 385 if block == nil { 386 return state.IteratorDump{}, fmt.Errorf("block %s not found", hash.Hex()) 387 } 388 stateDb, err = api.eth.BlockChain().StateAt(block.Root()) 389 if err != nil { 390 return state.IteratorDump{}, err 391 } 392 } 393 394 if maxResults > AccountRangeMaxResults || maxResults <= 0 { 395 maxResults = AccountRangeMaxResults 396 } 397 return stateDb.IteratorDump(nocode, nostorage, incompletes, start, maxResults), nil 398 } 399 400 // StorageRangeResult is the result of a debug_storageRangeAt API call. 401 type StorageRangeResult struct { 402 Storage storageMap `json:"storage"` 403 NextKey *common.Hash `json:"nextKey"` // nil if Storage includes the last key in the trie. 404 } 405 406 type storageMap map[common.Hash]storageEntry 407 408 type storageEntry struct { 409 Key *common.Hash `json:"key"` 410 Value common.Hash `json:"value"` 411 } 412 413 // StorageRangeAt returns the storage at the given block height and transaction index. 414 func (api *PrivateDebugAPI) StorageRangeAt(blockHash common.Hash, txIndex int, contractAddress common.Address, keyStart hexutil.Bytes, maxResult int) (StorageRangeResult, error) { 415 _, _, statedb, err := api.computeTxEnv(blockHash, txIndex, 0) 416 if err != nil { 417 return StorageRangeResult{}, err 418 } 419 st := statedb.StorageTrie(contractAddress) 420 if st == nil { 421 return StorageRangeResult{}, fmt.Errorf("account %x doesn't exist", contractAddress) 422 } 423 return storageRangeAt(st, keyStart, maxResult) 424 } 425 426 func storageRangeAt(st state.Trie, start []byte, maxResult int) (StorageRangeResult, error) { 427 it := trie.NewIterator(st.NodeIterator(start)) 428 result := StorageRangeResult{Storage: storageMap{}} 429 for i := 0; i < maxResult && it.Next(); i++ { 430 _, content, _, err := rlp.Split(it.Value) 431 if err != nil { 432 return StorageRangeResult{}, err 433 } 434 e := storageEntry{Value: common.BytesToHash(content)} 435 if preimage := st.GetKey(it.Key); preimage != nil { 436 preimage := common.BytesToHash(preimage) 437 e.Key = &preimage 438 } 439 result.Storage[common.BytesToHash(it.Key)] = e 440 } 441 // Add the 'next key' so clients can continue downloading. 442 if it.Next() { 443 next := common.BytesToHash(it.Key) 444 result.NextKey = &next 445 } 446 return result, nil 447 } 448 449 // GetModifiedAccountsByNumber returns all accounts that have changed between the 450 // two blocks specified. A change is defined as a difference in nonce, balance, 451 // code hash, or storage hash. 452 // 453 // With one parameter, returns the list of accounts modified in the specified block. 454 func (api *PrivateDebugAPI) GetModifiedAccountsByNumber(startNum uint64, endNum *uint64) ([]common.Address, error) { 455 var startBlock, endBlock *types.Block 456 457 startBlock = api.eth.blockchain.GetBlockByNumber(startNum) 458 if startBlock == nil { 459 return nil, fmt.Errorf("start block %x not found", startNum) 460 } 461 462 if endNum == nil { 463 endBlock = startBlock 464 startBlock = api.eth.blockchain.GetBlockByHash(startBlock.ParentHash()) 465 if startBlock == nil { 466 return nil, fmt.Errorf("block %x has no parent", endBlock.Number()) 467 } 468 } else { 469 endBlock = api.eth.blockchain.GetBlockByNumber(*endNum) 470 if endBlock == nil { 471 return nil, fmt.Errorf("end block %d not found", *endNum) 472 } 473 } 474 return api.getModifiedAccounts(startBlock, endBlock) 475 } 476 477 // GetModifiedAccountsByHash returns all accounts that have changed between the 478 // two blocks specified. A change is defined as a difference in nonce, balance, 479 // code hash, or storage hash. 480 // 481 // With one parameter, returns the list of accounts modified in the specified block. 482 func (api *PrivateDebugAPI) GetModifiedAccountsByHash(startHash common.Hash, endHash *common.Hash) ([]common.Address, error) { 483 var startBlock, endBlock *types.Block 484 startBlock = api.eth.blockchain.GetBlockByHash(startHash) 485 if startBlock == nil { 486 return nil, fmt.Errorf("start block %x not found", startHash) 487 } 488 489 if endHash == nil { 490 endBlock = startBlock 491 startBlock = api.eth.blockchain.GetBlockByHash(startBlock.ParentHash()) 492 if startBlock == nil { 493 return nil, fmt.Errorf("block %x has no parent", endBlock.Number()) 494 } 495 } else { 496 endBlock = api.eth.blockchain.GetBlockByHash(*endHash) 497 if endBlock == nil { 498 return nil, fmt.Errorf("end block %x not found", *endHash) 499 } 500 } 501 return api.getModifiedAccounts(startBlock, endBlock) 502 } 503 504 func (api *PrivateDebugAPI) getModifiedAccounts(startBlock, endBlock *types.Block) ([]common.Address, error) { 505 if startBlock.Number().Uint64() >= endBlock.Number().Uint64() { 506 return nil, fmt.Errorf("start block height (%d) must be less than end block height (%d)", startBlock.Number().Uint64(), endBlock.Number().Uint64()) 507 } 508 triedb := api.eth.BlockChain().StateCache().TrieDB() 509 510 oldTrie, err := trie.NewSecure(startBlock.Root(), triedb) 511 if err != nil { 512 return nil, err 513 } 514 newTrie, err := trie.NewSecure(endBlock.Root(), triedb) 515 if err != nil { 516 return nil, err 517 } 518 diff, _ := trie.NewDifferenceIterator(oldTrie.NodeIterator([]byte{}), newTrie.NodeIterator([]byte{})) 519 iter := trie.NewIterator(diff) 520 521 var dirty []common.Address 522 for iter.Next() { 523 key := newTrie.GetKey(iter.Key) 524 if key == nil { 525 return nil, fmt.Errorf("no preimage found for hash %x", iter.Key) 526 } 527 dirty = append(dirty, common.BytesToAddress(key)) 528 } 529 return dirty, nil 530 }