quorum/rpc/api.go

512 lines
14 KiB
Go
Raw Normal View History

2014-10-21 04:24:48 -07:00
package rpc
import (
2015-03-05 19:37:45 -08:00
"encoding/json"
2014-10-21 04:24:48 -07:00
"math/big"
"path"
"sync"
2014-10-21 04:24:48 -07:00
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethdb"
2014-10-31 06:30:08 -07:00
"github.com/ethereum/go-ethereum/xeth"
2014-10-21 04:24:48 -07:00
)
type EthereumApi struct {
2015-02-26 02:14:54 -08:00
eth *xeth.XEth
xethMu sync.RWMutex
2015-03-20 06:12:07 -07:00
db common.Database
// Miner agent
agent *Agent
}
func NewEthereumApi(eth *xeth.XEth, dataDir string) *EthereumApi {
2015-03-19 20:34:35 -07:00
// What about when dataDir is empty?
db, _ := ethdb.NewLDBDatabase(path.Join(dataDir, "dapps"))
api := &EthereumApi{
eth: eth,
db: db,
agent: NewAgent(),
}
eth.Backend().Miner().Register(api.agent)
return api
}
2015-03-19 20:20:54 -07:00
func (self *EthereumApi) xeth() *xeth.XEth {
self.xethMu.RLock()
defer self.xethMu.RUnlock()
2015-03-10 10:52:45 -07:00
2015-03-19 20:20:54 -07:00
return self.eth
2015-03-10 10:52:45 -07:00
}
2015-03-20 06:56:55 -07:00
func (self *EthereumApi) xethAtStateNum(num int64) *xeth.XEth {
return self.xeth().AtStateNum(num)
2015-03-10 10:52:45 -07:00
}
func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error {
2015-02-24 10:05:03 -08:00
// Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC
2015-03-19 08:59:54 -07:00
rpclogger.Debugf("%s %s", req.Method, req.Params)
switch req.Method {
case "web3_sha3":
2015-03-05 19:37:45 -08:00
args := new(Sha3Args)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
*reply = common.ToHex(crypto.Sha3(common.FromHex(args.Data)))
2015-03-12 17:20:46 -07:00
case "web3_clientVersion":
*reply = p.xeth().Backend().Version()
case "net_version":
return NewNotImplementedError(req.Method)
case "net_listening":
2015-03-05 19:37:45 -08:00
*reply = p.xeth().IsListening()
case "net_peerCount":
2015-03-20 05:37:56 -07:00
v := p.xeth().PeerCount()
*reply = common.ToHex(big.NewInt(int64(v)).Bytes())
case "eth_coinbase":
// TODO handling of empty coinbase due to lack of accounts
res := p.xeth().Coinbase()
if res == "0x" || res == "0x0" {
*reply = nil
} else {
*reply = res
}
case "eth_mining":
2015-03-05 19:37:45 -08:00
*reply = p.xeth().IsMining()
case "eth_gasPrice":
2015-03-20 05:37:56 -07:00
v := p.xeth().DefaultGas()
*reply = common.ToHex(v.Bytes())
case "eth_accounts":
2015-03-05 19:37:45 -08:00
*reply = p.xeth().Accounts()
case "eth_blockNumber":
2015-03-20 05:37:56 -07:00
v := p.xeth().Backend().ChainManager().CurrentBlock().Number()
*reply = common.ToHex(v.Bytes())
case "eth_getBalance":
2015-03-05 19:37:45 -08:00
args := new(GetBalanceArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:00:41 -07:00
if err := args.requirements(); err != nil {
return err
}
2015-03-20 06:56:55 -07:00
v := p.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address).Balance()
2015-03-20 05:37:56 -07:00
*reply = common.ToHex(v.Bytes())
case "eth_getStorage", "eth_storageAt":
2015-03-05 19:37:45 -08:00
args := new(GetStorageArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:02:31 -07:00
if err := args.requirements(); err != nil {
return err
}
2015-03-20 06:56:55 -07:00
*reply = p.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address).Storage()
case "eth_getStorageAt":
2015-03-05 19:37:45 -08:00
args := new(GetStorageAtArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 05:45:07 -07:00
if err := args.requirements(); err != nil {
return err
}
2015-03-20 06:56:55 -07:00
state := p.xethAtStateNum(args.BlockNumber).State().SafeGet(args.Address)
2015-03-20 05:45:07 -07:00
value := state.StorageString(args.Key)
*reply = common.Bytes2Hex(value.Bytes())
case "eth_getTransactionCount":
2015-03-05 19:37:45 -08:00
args := new(GetTxCountArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:03:27 -07:00
err := args.requirements()
if err != nil {
return err
}
2015-03-20 06:56:55 -07:00
*reply = p.xethAtStateNum(args.BlockNumber).TxCountAt(args.Address)
case "eth_getBlockTransactionCountByHash":
2015-03-10 10:52:45 -07:00
args := new(GetBlockByHashArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 05:37:56 -07:00
block := NewBlockRes(p.xeth().EthBlockByHash(args.BlockHash))
*reply = common.ToHex(big.NewInt(int64(len(block.Transactions))).Bytes())
case "eth_getBlockTransactionCountByNumber":
2015-03-10 10:52:45 -07:00
args := new(GetBlockByNumberArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-20 05:37:56 -07:00
block := NewBlockRes(p.xeth().EthBlockByNumber(args.BlockNumber))
*reply = common.ToHex(big.NewInt(int64(len(block.Transactions))).Bytes())
case "eth_getUncleCountByBlockHash":
2015-03-10 10:52:45 -07:00
args := new(GetBlockByHashArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:29:46 -07:00
block := p.xeth().EthBlockByHash(args.BlockHash)
br := NewBlockRes(block)
*reply = common.ToHex(big.NewInt(int64(len(br.Uncles))).Bytes())
case "eth_getUncleCountByBlockNumber":
2015-03-10 10:52:45 -07:00
args := new(GetBlockByNumberArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:28:25 -07:00
block := p.xeth().EthBlockByNumber(args.BlockNumber)
br := NewBlockRes(block)
*reply = common.ToHex(big.NewInt(int64(len(br.Uncles))).Bytes())
case "eth_getData", "eth_getCode":
2015-03-05 19:37:45 -08:00
args := new(GetDataArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:04:02 -07:00
if err := args.requirements(); err != nil {
return err
}
2015-03-20 06:56:55 -07:00
*reply = p.xethAtStateNum(args.BlockNumber).CodeAt(args.Address)
2015-03-10 12:28:20 -07:00
case "eth_sendTransaction", "eth_transact":
2015-03-05 19:37:45 -08:00
args := new(NewTxArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
2015-01-29 03:01:51 -08:00
return err
}
2015-03-19 23:15:34 -07:00
if err := args.requirements(); err != nil {
return err
}
v, err := p.xeth().Transact(args.From, args.To, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
if err != nil {
return err
}
*reply = v
case "eth_call":
2015-03-05 19:37:45 -08:00
args := new(NewTxArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 22:58:53 -07:00
2015-03-20 06:56:55 -07:00
v, err := p.xethAtStateNum(args.BlockNumber).Call(args.From, args.To, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data)
2015-03-19 22:58:53 -07:00
if err != nil {
return err
}
2015-03-20 05:37:56 -07:00
*reply = v
case "eth_flush":
return NewNotImplementedError(req.Method)
2015-03-05 09:07:05 -08:00
case "eth_getBlockByHash":
2015-03-05 19:37:45 -08:00
args := new(GetBlockByHashArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-10 10:52:45 -07:00
2015-03-19 22:53:24 -07:00
block := p.xeth().EthBlockByHash(args.BlockHash)
br := NewBlockRes(block)
br.fullTx = args.IncludeTxs
*reply = br
2015-03-05 19:37:45 -08:00
case "eth_getBlockByNumber":
args := new(GetBlockByNumberArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-10 10:52:45 -07:00
2015-03-19 22:57:23 -07:00
block := p.xeth().EthBlockByNumber(args.BlockNumber)
br := NewBlockRes(block)
br.fullTx = args.IncludeTxs
*reply = br
case "eth_getTransactionByHash":
// HashIndexArgs used, but only the "Hash" part we need.
args := new(HashIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
}
2015-03-19 17:26:09 -07:00
tx := p.xeth().EthTransactionByHash(args.Hash)
2015-03-19 17:12:12 -07:00
if tx != nil {
*reply = NewTransactionRes(tx)
}
case "eth_getTransactionByBlockHashAndIndex":
2015-03-10 20:25:07 -07:00
args := new(HashIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 22:53:24 -07:00
block := p.xeth().EthBlockByHash(args.Hash)
br := NewBlockRes(block)
br.fullTx = true
if args.Index > int64(len(br.Transactions)) || args.Index < 0 {
return NewValidationError("Index", "does not exist")
2015-03-10 20:25:07 -07:00
}
2015-03-19 22:53:24 -07:00
*reply = br.Transactions[args.Index]
case "eth_getTransactionByBlockNumberAndIndex":
2015-03-10 20:25:07 -07:00
args := new(BlockNumIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 22:57:23 -07:00
block := p.xeth().EthBlockByNumber(args.BlockNumber)
v := NewBlockRes(block)
v.fullTx = true
2015-03-11 08:25:15 -07:00
if args.Index > int64(len(v.Transactions)) || args.Index < 0 {
return NewValidationError("Index", "does not exist")
2015-03-10 20:25:07 -07:00
}
2015-03-11 08:25:15 -07:00
*reply = v.Transactions[args.Index]
case "eth_getUncleByBlockHashAndIndex":
2015-03-11 08:27:32 -07:00
args := new(HashIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 22:53:24 -07:00
br := NewBlockRes(p.xeth().EthBlockByHash(args.Hash))
if args.Index > int64(len(br.Uncles)) || args.Index < 0 {
return NewValidationError("Index", "does not exist")
2015-03-11 08:27:32 -07:00
}
2015-03-20 08:02:01 -07:00
uhash := br.Uncles[args.Index].Hex()
2015-03-19 22:53:24 -07:00
uncle := NewBlockRes(p.xeth().EthBlockByHash(uhash))
2015-03-11 08:27:32 -07:00
*reply = uncle
case "eth_getUncleByBlockNumberAndIndex":
2015-03-11 08:27:32 -07:00
args := new(BlockNumIndexArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 22:57:23 -07:00
block := p.xeth().EthBlockByNumber(args.BlockNumber)
v := NewBlockRes(block)
v.fullTx = true
2015-03-11 08:27:32 -07:00
if args.Index > int64(len(v.Uncles)) || args.Index < 0 {
return NewValidationError("Index", "does not exist")
2015-03-11 08:27:32 -07:00
}
2015-03-20 08:02:01 -07:00
uhash := v.Uncles[args.Index].Hex()
2015-03-19 22:53:24 -07:00
uncle := NewBlockRes(p.xeth().EthBlockByHash(uhash))
2015-03-11 08:27:32 -07:00
*reply = uncle
case "eth_getCompilers":
2015-03-19 17:04:40 -07:00
c := []string{""}
*reply = c
2015-03-12 17:20:46 -07:00
case "eth_compileSolidity", "eth_compileLLL", "eth_compileSerpent":
return NewNotImplementedError(req.Method)
case "eth_newFilter":
args := new(BlockFilterArgs)
2015-03-05 19:37:45 -08:00
if err := json.Unmarshal(req.Params, &args); err != nil {
2015-02-05 11:55:03 -08:00
return err
}
2015-03-19 20:03:53 -07:00
opts := toFilterOptions(args)
id := p.xeth().RegisterFilter(opts)
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
2015-03-05 09:07:05 -08:00
case "eth_newBlockFilter":
2015-03-05 19:37:45 -08:00
args := new(FilterStringArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-05 09:07:05 -08:00
return err
}
2015-03-19 20:06:32 -07:00
if err := args.requirements(); err != nil {
return err
}
id := p.xeth().NewFilterString(args.Word)
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
2015-02-19 04:21:37 -08:00
case "eth_uninstallFilter":
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
2015-02-19 04:21:37 -08:00
return err
}
2015-03-19 20:05:23 -07:00
*reply = p.xeth().UninstallFilter(args.Id)
case "eth_getFilterChanges":
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 20:07:25 -07:00
*reply = NewLogsRes(p.xeth().FilterChanged(args.Id))
case "eth_getFilterLogs":
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 20:08:26 -07:00
*reply = NewLogsRes(p.xeth().Logs(args.Id))
case "eth_getLogs":
args := new(BlockFilterArgs)
2015-03-05 19:37:45 -08:00
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 20:10:23 -07:00
opts := toFilterOptions(args)
*reply = NewLogsRes(p.xeth().AllLogs(opts))
case "eth_getWork":
p.xeth().SetMining(true)
2015-03-23 00:45:09 -07:00
*reply = p.agent.GetWork()
case "eth_submitWork":
args := new(SubmitWorkArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
*reply = p.agent.SetResult(args.Nonce, args.Digest, args.Header)
2015-03-13 07:56:41 -07:00
case "db_putString":
2015-03-05 19:37:45 -08:00
args := new(DbArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:05:48 -07:00
if err := args.requirements(); err != nil {
return err
}
p.db.Put([]byte(args.Database+args.Key), []byte(args.Value))
*reply = true
2015-03-13 07:56:41 -07:00
case "db_getString":
2015-03-05 19:37:45 -08:00
args := new(DbArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:09:54 -07:00
2015-03-19 17:06:35 -07:00
if err := args.requirements(); err != nil {
return err
}
res, _ := p.db.Get([]byte(args.Database + args.Key))
*reply = string(res)
2015-03-13 07:56:41 -07:00
case "db_putHex", "db_getHex":
return NewNotImplementedError(req.Method)
case "shh_post":
2015-03-05 19:37:45 -08:00
args := new(WhisperMessageArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:40:50 -07:00
err := p.xeth().Whisper().Post(args.Payload, args.To, args.From, args.Topics, args.Priority, args.Ttl)
if err != nil {
return err
}
*reply = true
case "shh_newIdentity":
2015-03-19 17:09:54 -07:00
*reply = p.xeth().Whisper().NewIdentity()
// case "shh_removeIdentity":
// args := new(WhisperIdentityArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
// return err
// }
2015-03-19 17:10:05 -07:00
// *reply = p.xeth().Whisper().RemoveIdentity(args.Identity)
case "shh_hasIdentity":
2015-03-05 19:37:45 -08:00
args := new(WhisperIdentityArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:00:18 -07:00
*reply = p.xeth().Whisper().HasIdentity(args.Identity)
2015-03-12 17:20:46 -07:00
case "shh_newGroup", "shh_addToGroup":
return NewNotImplementedError(req.Method)
case "shh_newFilter":
2015-03-05 19:37:45 -08:00
args := new(WhisperFilterArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 20:11:52 -07:00
opts := new(xeth.Options)
opts.From = args.From
opts.To = args.To
opts.Topics = args.Topics
id := p.xeth().NewWhisperFilter(opts)
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
case "shh_uninstallFilter":
2015-03-11 13:49:21 -07:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 20:13:52 -07:00
*reply = p.xeth().UninstallWhisperFilter(args.Id)
2015-03-05 09:07:05 -08:00
case "shh_getFilterChanges":
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 20:14:55 -07:00
*reply = p.xeth().MessagesChanged(args.Id)
case "shh_getMessages":
2015-03-05 19:37:45 -08:00
args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil {
return err
}
2015-03-19 17:26:09 -07:00
*reply = p.xeth().Whisper().Messages(args.Id)
2015-03-05 19:48:03 -08:00
// case "eth_register":
2015-03-20 06:12:07 -07:00
// // Placeholder for actual type
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-05 19:48:03 -08:00
// return err
// }
2015-03-20 06:12:07 -07:00
// *reply = p.xeth().Register(args.Hash)
2015-03-05 19:48:03 -08:00
// case "eth_unregister":
2015-03-20 06:12:07 -07:00
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-05 19:48:03 -08:00
// return err
// }
2015-03-20 06:12:07 -07:00
// *reply = p.xeth().Unregister(args.Hash)
2015-03-05 19:48:03 -08:00
// case "eth_watchTx":
2015-03-20 06:12:07 -07:00
// args := new(HashIndexArgs)
// if err := json.Unmarshal(req.Params, &args); err != nil {
2015-03-05 19:48:03 -08:00
// return err
// }
2015-03-20 06:12:07 -07:00
// *reply = p.xeth().PullWatchTx(args.Hash)
default:
return NewNotImplementedError(req.Method)
}
rpclogger.DebugDetailf("Reply: %T %s", reply, reply)
2015-01-13 07:27:36 -08:00
return nil
}
2015-02-26 02:14:54 -08:00
func toFilterOptions(options *BlockFilterArgs) *core.FilterOptions {
2015-03-05 19:48:03 -08:00
var opts core.FilterOptions
// Convert optional address slice/string to byte slice
if str, ok := options.Address.(string); ok {
2015-03-18 05:00:01 -07:00
opts.Address = []common.Address{common.HexToAddress(str)}
2015-03-05 19:48:03 -08:00
} else if slice, ok := options.Address.([]interface{}); ok {
2015-03-18 05:00:01 -07:00
bslice := make([]common.Address, len(slice))
2015-03-05 19:48:03 -08:00
for i, addr := range slice {
if saddr, ok := addr.(string); ok {
2015-03-18 05:00:01 -07:00
bslice[i] = common.HexToAddress(saddr)
2015-03-05 19:48:03 -08:00
}
}
opts.Address = bslice
}
opts.Earliest = options.Earliest
opts.Latest = options.Latest
2015-03-09 10:19:35 -07:00
2015-03-18 05:00:01 -07:00
topics := make([][]common.Hash, len(options.Topics))
2015-03-09 10:19:35 -07:00
for i, topicDat := range options.Topics {
if slice, ok := topicDat.([]interface{}); ok {
2015-03-18 05:00:01 -07:00
topics[i] = make([]common.Hash, len(slice))
2015-03-09 10:19:35 -07:00
for j, topic := range slice {
2015-03-18 05:00:01 -07:00
topics[i][j] = common.HexToHash(topic.(string))
2015-03-09 10:19:35 -07:00
}
} else if str, ok := topicDat.(string); ok {
2015-03-18 05:00:01 -07:00
topics[i] = []common.Hash{common.HexToHash(str)}
2015-03-09 10:19:35 -07:00
}
2015-03-05 19:48:03 -08:00
}
2015-03-09 10:19:35 -07:00
opts.Topics = topics
2015-03-05 19:48:03 -08:00
2015-03-19 19:58:07 -07:00
return &opts
2015-03-05 19:48:03 -08:00
}
2015-03-20 09:42:09 -07:00
/*
Work() chan<- *types.Block
SetWorkCh(chan<- Work)
Stop()
Start()
Rate() uint64
*/