2014-01-01 17:16:15 +01:00
|
|
|
// Copyright (c) 2013-2014 Conformal Systems LLC.
|
2013-12-31 20:15:44 +01:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"code.google.com/p/go.net/websocket"
|
|
|
|
"container/list"
|
2014-01-22 21:10:04 +01:00
|
|
|
"crypto/sha256"
|
|
|
|
"crypto/subtle"
|
|
|
|
"encoding/base64"
|
2014-01-08 17:40:27 +01:00
|
|
|
"encoding/hex"
|
2013-12-31 20:15:44 +01:00
|
|
|
"encoding/json"
|
2014-01-22 21:10:04 +01:00
|
|
|
"errors"
|
2013-12-31 20:15:44 +01:00
|
|
|
"fmt"
|
|
|
|
"github.com/conformal/btcdb"
|
|
|
|
"github.com/conformal/btcjson"
|
|
|
|
"github.com/conformal/btcscript"
|
|
|
|
"github.com/conformal/btcutil"
|
|
|
|
"github.com/conformal/btcwire"
|
|
|
|
"github.com/conformal/btcws"
|
|
|
|
"sync"
|
2014-01-18 07:03:31 +01:00
|
|
|
"time"
|
2013-12-31 20:15:44 +01:00
|
|
|
)
|
|
|
|
|
2014-01-18 07:03:31 +01:00
|
|
|
var timeZeroVal time.Time
|
|
|
|
|
2014-01-22 21:10:04 +01:00
|
|
|
var ErrBadAuth = errors.New("invalid credentials")
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
type ntfnChan chan btcjson.Cmd
|
2014-01-08 17:40:27 +01:00
|
|
|
|
2014-01-14 21:59:31 +01:00
|
|
|
type handlerChans struct {
|
|
|
|
n ntfnChan // channel to send notifications
|
|
|
|
disconnected <-chan struct{} // closed when a client has disconnected.
|
|
|
|
}
|
|
|
|
|
|
|
|
type wsCommandHandler func(*rpcServer, btcjson.Cmd, handlerChans) (interface{}, *btcjson.Error)
|
2013-12-31 21:48:50 +01:00
|
|
|
|
|
|
|
// wsHandlers maps RPC command strings to appropriate websocket handler
|
|
|
|
// functions.
|
|
|
|
var wsHandlers = map[string]wsCommandHandler{
|
2014-01-21 00:07:17 +01:00
|
|
|
"getcurrentnet": handleGetCurrentNet,
|
|
|
|
"getbestblock": handleGetBestBlock,
|
|
|
|
"notifyblocks": handleNotifyBlocks,
|
|
|
|
"notifynewtxs": handleNotifyNewTXs,
|
|
|
|
"notifyspent": handleNotifySpent,
|
|
|
|
"rescan": handleRescan,
|
|
|
|
"sendrawtransaction": handleWalletSendRawTransaction,
|
2013-12-31 21:48:50 +01:00
|
|
|
}
|
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
// wsContext holds the items the RPC server needs to handle websocket
|
|
|
|
// connections for wallets.
|
|
|
|
type wsContext struct {
|
|
|
|
sync.RWMutex
|
|
|
|
|
2014-01-08 17:40:27 +01:00
|
|
|
// connections holds a map of requests for each wallet using the
|
|
|
|
// wallet channel as the key.
|
2014-01-14 19:15:22 +01:00
|
|
|
connections map[ntfnChan]*requestContexts
|
2013-12-31 20:15:44 +01:00
|
|
|
|
|
|
|
// Map of address hash to list of notificationCtx. This is the global
|
|
|
|
// list we actually use for notifications, we also keep a list in the
|
|
|
|
// requestContexts to make removal from this list on connection close
|
|
|
|
// less horrendously expensive.
|
|
|
|
txNotifications map[string]*list.List
|
|
|
|
|
|
|
|
// Map of outpoint to list of notificationCtx.
|
|
|
|
spentNotifications map[btcwire.OutPoint]*list.List
|
|
|
|
|
|
|
|
// Map of shas to list of notificationCtx.
|
|
|
|
minedTxNotifications map[btcwire.ShaHash]*list.List
|
|
|
|
}
|
|
|
|
|
2014-01-17 22:00:46 +01:00
|
|
|
// AddBlockUpdateRequest adds the request context to mark a wallet as
|
|
|
|
// having requested updates for connected and disconnected blocks.
|
|
|
|
func (r *wsContext) AddBlockUpdateRequest(n ntfnChan) {
|
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
|
|
|
|
rc := r.connections[n]
|
|
|
|
rc.blockUpdates = true
|
|
|
|
}
|
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
// AddTxRequest adds the request context for new transaction notifications.
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) AddTxRequest(n ntfnChan, addr string) {
|
2013-12-31 20:15:44 +01:00
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
|
2014-01-08 03:30:01 +01:00
|
|
|
clist, ok := r.txNotifications[addr]
|
2013-12-31 20:15:44 +01:00
|
|
|
if !ok {
|
|
|
|
clist = list.New()
|
2014-01-08 03:30:01 +01:00
|
|
|
r.txNotifications[addr] = clist
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
clist.PushBack(n)
|
2013-12-31 20:15:44 +01:00
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
rc := r.connections[n]
|
2014-01-08 17:40:27 +01:00
|
|
|
rc.txRequests[addr] = struct{}{}
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) removeGlobalTxRequest(n ntfnChan, addr string) {
|
2014-01-08 03:30:01 +01:00
|
|
|
clist := r.txNotifications[addr]
|
2013-12-31 20:15:44 +01:00
|
|
|
var enext *list.Element
|
|
|
|
for e := clist.Front(); e != nil; e = enext {
|
|
|
|
enext = e.Next()
|
2014-01-14 19:15:22 +01:00
|
|
|
c := e.Value.(ntfnChan)
|
|
|
|
if c == n {
|
2013-12-31 20:15:44 +01:00
|
|
|
clist.Remove(e)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if clist.Len() == 0 {
|
2014-01-08 03:30:01 +01:00
|
|
|
delete(r.txNotifications, addr)
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddSpentRequest adds a request context for notifications of a spent
|
|
|
|
// Outpoint.
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) AddSpentRequest(n ntfnChan, op *btcwire.OutPoint) {
|
2013-12-31 20:15:44 +01:00
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
|
|
|
|
clist, ok := r.spentNotifications[*op]
|
|
|
|
if !ok {
|
|
|
|
clist = list.New()
|
|
|
|
r.spentNotifications[*op] = clist
|
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
clist.PushBack(n)
|
2014-01-08 17:40:27 +01:00
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
rc := r.connections[n]
|
2014-01-08 17:40:27 +01:00
|
|
|
rc.spentRequests[*op] = struct{}{}
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) removeGlobalSpentRequest(n ntfnChan, op *btcwire.OutPoint) {
|
2013-12-31 20:15:44 +01:00
|
|
|
clist := r.spentNotifications[*op]
|
|
|
|
var enext *list.Element
|
|
|
|
for e := clist.Front(); e != nil; e = enext {
|
|
|
|
enext = e.Next()
|
2014-01-14 19:15:22 +01:00
|
|
|
c := e.Value.(ntfnChan)
|
|
|
|
if c == n {
|
2013-12-31 20:15:44 +01:00
|
|
|
clist.Remove(e)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if clist.Len() == 0 {
|
|
|
|
delete(r.spentNotifications, *op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveSpentRequest removes a request context for notifications of a
|
|
|
|
// spent Outpoint.
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) RemoveSpentRequest(n ntfnChan, op *btcwire.OutPoint) {
|
2013-12-31 20:15:44 +01:00
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
r.removeGlobalSpentRequest(n, op)
|
|
|
|
rc := r.connections[n]
|
2013-12-31 20:15:44 +01:00
|
|
|
delete(rc.spentRequests, *op)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddMinedTxRequest adds request contexts for notifications of a
|
|
|
|
// mined transaction.
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) AddMinedTxRequest(n ntfnChan, txID *btcwire.ShaHash) {
|
2013-12-31 20:15:44 +01:00
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
|
|
|
|
clist, ok := r.minedTxNotifications[*txID]
|
|
|
|
if !ok {
|
|
|
|
clist = list.New()
|
|
|
|
r.minedTxNotifications[*txID] = clist
|
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
clist.PushBack(n)
|
2014-01-08 17:40:27 +01:00
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
rc := r.connections[n]
|
2014-01-08 17:40:27 +01:00
|
|
|
rc.minedTxRequests[*txID] = struct{}{}
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) removeGlobalMinedTxRequest(n ntfnChan, txID *btcwire.ShaHash) {
|
2013-12-31 20:15:44 +01:00
|
|
|
clist := r.minedTxNotifications[*txID]
|
|
|
|
var enext *list.Element
|
|
|
|
for e := clist.Front(); e != nil; e = enext {
|
|
|
|
enext = e.Next()
|
2014-01-14 19:15:22 +01:00
|
|
|
c := e.Value.(ntfnChan)
|
|
|
|
if c == n {
|
2013-12-31 20:15:44 +01:00
|
|
|
clist.Remove(e)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if clist.Len() == 0 {
|
|
|
|
delete(r.minedTxNotifications, *txID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveMinedTxRequest removes request contexts for notifications of a
|
|
|
|
// mined transaction.
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) RemoveMinedTxRequest(n ntfnChan, txID *btcwire.ShaHash) {
|
2013-12-31 20:15:44 +01:00
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
r.removeMinedTxRequest(n, txID)
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// removeMinedTxRequest removes request contexts for notifications of a
|
|
|
|
// mined transaction without grabbing any locks.
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) removeMinedTxRequest(n ntfnChan, txID *btcwire.ShaHash) {
|
|
|
|
r.removeGlobalMinedTxRequest(n, txID)
|
|
|
|
rc := r.connections[n]
|
2013-12-31 20:15:44 +01:00
|
|
|
delete(rc.minedTxRequests, *txID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CloseListeners removes all request contexts for notifications sent
|
|
|
|
// to a wallet notification channel and closes the channel to stop all
|
|
|
|
// goroutines currently serving that wallet.
|
2014-01-14 19:15:22 +01:00
|
|
|
func (r *wsContext) CloseListeners(n ntfnChan) {
|
2013-12-31 20:15:44 +01:00
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
delete(r.connections, n)
|
|
|
|
close(n)
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-17 20:04:57 +01:00
|
|
|
// newWebsocketContext returns a new websocket context that is used
|
|
|
|
// for handling websocket requests and notifications.
|
|
|
|
func newWebsocketContext() *wsContext {
|
|
|
|
return &wsContext{
|
2014-01-17 22:45:23 +01:00
|
|
|
connections: make(map[ntfnChan]*requestContexts),
|
|
|
|
txNotifications: make(map[string]*list.List),
|
|
|
|
spentNotifications: make(map[btcwire.OutPoint]*list.List),
|
|
|
|
minedTxNotifications: make(map[btcwire.ShaHash]*list.List),
|
2014-01-17 20:04:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
// requestContexts holds all requests for a single wallet connection.
|
|
|
|
type requestContexts struct {
|
2014-01-22 21:10:04 +01:00
|
|
|
// disconnecting indicates the websocket is in the process of
|
|
|
|
// disconnecting. This is used to prevent trying to handle any more
|
|
|
|
// commands in the interim.
|
|
|
|
disconnecting bool
|
|
|
|
|
|
|
|
// authenticated specifies whether a client has been authenticated
|
|
|
|
// and therefore is allowed to communicated over the websocket.
|
|
|
|
authenticated bool
|
|
|
|
|
2014-01-17 22:00:46 +01:00
|
|
|
// blockUpdates specifies whether a client has requested notifications
|
|
|
|
// for whenever blocks are connected or disconnected from the main
|
|
|
|
// chain.
|
|
|
|
blockUpdates bool
|
|
|
|
|
2014-01-08 17:40:27 +01:00
|
|
|
// txRequests is a set of addresses a wallet has requested transactions
|
|
|
|
// updates for. It is maintained here so all requests can be removed
|
|
|
|
// when a wallet disconnects.
|
|
|
|
txRequests map[string]struct{}
|
|
|
|
|
|
|
|
// spentRequests is a set of unspent Outpoints a wallet has requested
|
|
|
|
// notifications for when they are spent by a processed transaction.
|
|
|
|
spentRequests map[btcwire.OutPoint]struct{}
|
2013-12-31 20:15:44 +01:00
|
|
|
|
|
|
|
// minedTxRequests holds a set of transaction IDs (tx hashes) of
|
|
|
|
// transactions created by a wallet. A wallet may request
|
|
|
|
// notifications of when a tx it created is mined into a block and
|
|
|
|
// removed from the mempool. Once a tx has been mined into a
|
|
|
|
// block, wallet may remove the raw transaction from its unmined tx
|
|
|
|
// pool.
|
2014-01-08 17:40:27 +01:00
|
|
|
minedTxRequests map[btcwire.ShaHash]struct{}
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// respondToAnyCmd checks that a parsed command is a standard or
|
|
|
|
// extension JSON-RPC command and runs the proper handler to reply to
|
|
|
|
// the command. Any and all responses are sent to the wallet from
|
|
|
|
// this function.
|
2014-01-14 21:59:31 +01:00
|
|
|
func respondToAnyCmd(cmd btcjson.Cmd, s *rpcServer, c handlerChans) *btcjson.Reply {
|
2013-12-31 21:39:17 +01:00
|
|
|
// Lookup the websocket extension for the command and if it doesn't
|
|
|
|
// exist fallback to handling the command as a standard command.
|
2013-12-31 20:15:44 +01:00
|
|
|
wsHandler, ok := wsHandlers[cmd.Method()]
|
|
|
|
if !ok {
|
2014-01-14 19:15:22 +01:00
|
|
|
// No websocket-specific handler so handle like a legacy
|
|
|
|
// RPC connection.
|
|
|
|
response := standardCmdReply(cmd, s)
|
|
|
|
return &response
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
2014-01-14 21:59:31 +01:00
|
|
|
result, jsonErr := wsHandler(s, cmd, c)
|
2014-01-14 19:15:22 +01:00
|
|
|
id := cmd.Id()
|
|
|
|
response := btcjson.Reply{
|
|
|
|
Id: &id,
|
|
|
|
Result: result,
|
|
|
|
Error: jsonErr,
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
return &response
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// handleGetCurrentNet implements the getcurrentnet command extension
|
|
|
|
// for websocket connections.
|
2014-01-14 21:59:31 +01:00
|
|
|
func handleGetCurrentNet(s *rpcServer, icmd btcjson.Cmd, c handlerChans) (interface{}, *btcjson.Error) {
|
2013-12-31 20:15:44 +01:00
|
|
|
if cfg.TestNet3 {
|
2014-01-14 19:15:22 +01:00
|
|
|
return btcwire.TestNet3, nil
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
return btcwire.MainNet, nil
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// handleGetBestBlock implements the getbestblock command extension
|
|
|
|
// for websocket connections.
|
2014-01-14 21:59:31 +01:00
|
|
|
func handleGetBestBlock(s *rpcServer, icmd btcjson.Cmd, c handlerChans) (interface{}, *btcjson.Error) {
|
2013-12-31 20:15:44 +01:00
|
|
|
// All other "get block" commands give either the height, the
|
|
|
|
// hash, or both but require the block SHA. This gets both for
|
|
|
|
// the best block.
|
|
|
|
sha, height, err := s.server.db.NewestSha()
|
|
|
|
if err != nil {
|
2014-01-14 19:15:22 +01:00
|
|
|
return nil, &btcjson.ErrBestBlockHash
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
// TODO(jrick): need a btcws type for the result.
|
|
|
|
result := map[string]interface{}{
|
2013-12-31 20:15:44 +01:00
|
|
|
"hash": sha.String(),
|
|
|
|
"height": height,
|
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
return result, nil
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-17 22:00:46 +01:00
|
|
|
// handleNotifyBlocks implements the notifyblocks command extension for
|
|
|
|
// websocket connections.
|
|
|
|
func handleNotifyBlocks(s *rpcServer, icmd btcjson.Cmd, c handlerChans) (interface{}, *btcjson.Error) {
|
|
|
|
s.ws.AddBlockUpdateRequest(c.n)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2013-12-31 21:39:17 +01:00
|
|
|
// handleNotifyNewTXs implements the notifynewtxs command extension for
|
|
|
|
// websocket connections.
|
2014-01-14 21:59:31 +01:00
|
|
|
func handleNotifyNewTXs(s *rpcServer, icmd btcjson.Cmd, c handlerChans) (interface{}, *btcjson.Error) {
|
2014-01-14 19:15:22 +01:00
|
|
|
cmd, ok := icmd.(*btcws.NotifyNewTXsCmd)
|
2013-12-31 21:39:17 +01:00
|
|
|
if !ok {
|
2014-01-14 19:15:22 +01:00
|
|
|
return nil, &btcjson.ErrInternal
|
2013-12-31 21:39:17 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
for _, addrStr := range cmd.Addresses {
|
|
|
|
addr, err := btcutil.DecodeAddr(addrStr)
|
2013-12-31 21:39:17 +01:00
|
|
|
if err != nil {
|
2014-01-14 19:15:22 +01:00
|
|
|
e := btcjson.Error{
|
|
|
|
Code: btcjson.ErrInvalidAddressOrKey.Code,
|
|
|
|
Message: fmt.Sprintf("Invalid address or key: %v", addrStr),
|
|
|
|
}
|
|
|
|
return nil, &e
|
2013-12-31 21:39:17 +01:00
|
|
|
}
|
2014-01-03 19:22:28 +01:00
|
|
|
|
|
|
|
// TODO(jrick) Notifing for non-P2PKH addresses is currently
|
|
|
|
// unsuported.
|
|
|
|
if _, ok := addr.(*btcutil.AddressPubKeyHash); !ok {
|
2014-01-14 19:15:22 +01:00
|
|
|
e := btcjson.Error{
|
|
|
|
Code: btcjson.ErrInvalidAddressOrKey.Code,
|
|
|
|
Message: fmt.Sprintf("Invalid address or key: %v", addr.EncodeAddress()),
|
|
|
|
}
|
|
|
|
return nil, &e
|
2014-01-03 19:22:28 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 21:59:31 +01:00
|
|
|
s.ws.AddTxRequest(c.n, addr.EncodeAddress())
|
2013-12-31 21:39:17 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
return nil, nil
|
2013-12-31 21:39:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// handleNotifySpent implements the notifyspent command extension for
|
|
|
|
// websocket connections.
|
2014-01-14 21:59:31 +01:00
|
|
|
func handleNotifySpent(s *rpcServer, icmd btcjson.Cmd, c handlerChans) (interface{}, *btcjson.Error) {
|
2014-01-14 19:15:22 +01:00
|
|
|
cmd, ok := icmd.(*btcws.NotifySpentCmd)
|
2013-12-31 21:39:17 +01:00
|
|
|
if !ok {
|
2014-01-14 19:15:22 +01:00
|
|
|
return nil, &btcjson.ErrInternal
|
2013-12-31 21:39:17 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 21:59:31 +01:00
|
|
|
s.ws.AddSpentRequest(c.n, cmd.OutPoint)
|
2013-12-31 21:39:17 +01:00
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
return nil, nil
|
2013-12-31 21:39:17 +01:00
|
|
|
}
|
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
// handleRescan implements the rescan command extension for websocket
|
|
|
|
// connections.
|
2014-01-14 21:59:31 +01:00
|
|
|
func handleRescan(s *rpcServer, icmd btcjson.Cmd, c handlerChans) (interface{}, *btcjson.Error) {
|
2014-01-14 19:15:22 +01:00
|
|
|
cmd, ok := icmd.(*btcws.RescanCmd)
|
2013-12-31 20:15:44 +01:00
|
|
|
if !ok {
|
2014-01-14 19:15:22 +01:00
|
|
|
return nil, &btcjson.ErrInternal
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
if len(cmd.Addresses) == 1 {
|
2014-01-14 22:41:22 +01:00
|
|
|
rpcsLog.Info("Beginning rescan for 1 address")
|
2013-12-31 20:15:44 +01:00
|
|
|
} else {
|
2014-01-14 22:41:22 +01:00
|
|
|
rpcsLog.Infof("Beginning rescan for %v addresses",
|
2014-01-14 19:15:22 +01:00
|
|
|
len(cmd.Addresses))
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
minblock := int64(cmd.BeginBlock)
|
|
|
|
maxblock := int64(cmd.EndBlock)
|
2013-12-31 20:15:44 +01:00
|
|
|
|
|
|
|
// FetchHeightRange may not return a complete list of block shas for
|
|
|
|
// the given range, so fetch range as many times as necessary.
|
|
|
|
for {
|
2014-01-14 19:15:22 +01:00
|
|
|
blkshalist, err := s.server.db.FetchHeightRange(minblock, maxblock)
|
2013-12-31 20:15:44 +01:00
|
|
|
if err != nil {
|
2014-01-14 19:15:22 +01:00
|
|
|
rpcsLog.Errorf("Error looking up block range: %v", err)
|
|
|
|
return nil, &btcjson.ErrDatabase
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
if len(blkshalist) == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range blkshalist {
|
|
|
|
blk, err := s.server.db.FetchBlockBySha(&blkshalist[i])
|
|
|
|
if err != nil {
|
2014-01-14 19:15:22 +01:00
|
|
|
rpcsLog.Errorf("Error looking up block sha: %v", err)
|
|
|
|
return nil, &btcjson.ErrDatabase
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 21:59:31 +01:00
|
|
|
// A select statement is used to stop rescans if the
|
|
|
|
// client requesting the rescan has disconnected.
|
|
|
|
select {
|
|
|
|
case <-c.disconnected:
|
2014-01-15 04:53:07 +01:00
|
|
|
rpcsLog.Debugf("Stopping rescan at height %v for disconnected client",
|
2014-01-14 21:59:31 +01:00
|
|
|
blk.Height())
|
|
|
|
return nil, nil
|
|
|
|
|
|
|
|
default:
|
|
|
|
rescanBlock(s, cmd, c, blk)
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if maxblock-minblock > int64(len(blkshalist)) {
|
|
|
|
minblock += int64(len(blkshalist))
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rpcsLog.Info("Finished rescan")
|
2014-01-14 19:15:22 +01:00
|
|
|
return nil, nil
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 21:59:31 +01:00
|
|
|
// rescanBlock rescans all transactions in a single block. This is a
|
|
|
|
// helper function for handleRescan.
|
|
|
|
func rescanBlock(s *rpcServer, cmd *btcws.RescanCmd, c handlerChans, blk *btcutil.Block) {
|
|
|
|
for _, tx := range blk.Transactions() {
|
|
|
|
var txReply *btcdb.TxListReply
|
|
|
|
txouts:
|
|
|
|
for txOutIdx, txout := range tx.MsgTx().TxOut {
|
|
|
|
_, addrs, _, err := btcscript.ExtractPkScriptAddrs(
|
|
|
|
txout.PkScript, s.server.btcnet)
|
|
|
|
if err != nil {
|
|
|
|
continue txouts
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, addr := range addrs {
|
|
|
|
encodedAddr := addr.EncodeAddress()
|
|
|
|
if _, ok := cmd.Addresses[encodedAddr]; !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// TODO(jrick): This lookup is expensive and can be avoided
|
|
|
|
// if the wallet is sent the previous outpoints for all inputs
|
|
|
|
// of the tx, so any can removed from the utxo set (since
|
|
|
|
// they are, as of this tx, now spent).
|
|
|
|
if txReply == nil {
|
|
|
|
txReplyList, err := s.server.db.FetchTxBySha(tx.Sha())
|
|
|
|
if err != nil {
|
2014-01-14 22:41:22 +01:00
|
|
|
rpcsLog.Errorf("Tx Sha %v not found by db", tx.Sha())
|
2014-01-14 21:59:31 +01:00
|
|
|
continue txouts
|
|
|
|
}
|
|
|
|
for i := range txReplyList {
|
|
|
|
if txReplyList[i].Height == blk.Height() {
|
|
|
|
txReply = txReplyList[i]
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sha never errors.
|
|
|
|
blksha, _ := blk.Sha()
|
|
|
|
|
|
|
|
ntfn := &btcws.ProcessedTxNtfn{
|
|
|
|
Receiver: encodedAddr,
|
|
|
|
Amount: txout.Value,
|
|
|
|
TxID: tx.Sha().String(),
|
|
|
|
TxOutIndex: uint32(txOutIdx),
|
|
|
|
PkScript: hex.EncodeToString(txout.PkScript),
|
|
|
|
BlockHash: blksha.String(),
|
|
|
|
BlockHeight: int32(blk.Height()),
|
|
|
|
BlockIndex: tx.Index(),
|
|
|
|
BlockTime: blk.MsgBlock().Header.Timestamp.Unix(),
|
|
|
|
Spent: txReply.TxSpent[txOutIdx],
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-c.disconnected:
|
|
|
|
return
|
|
|
|
|
|
|
|
default:
|
|
|
|
c.n <- ntfn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-31 21:39:17 +01:00
|
|
|
// handleWalletSendRawTransaction implements the websocket extended version of
|
|
|
|
// the sendrawtransaction command.
|
2014-01-14 21:59:31 +01:00
|
|
|
func handleWalletSendRawTransaction(s *rpcServer, icmd btcjson.Cmd, c handlerChans) (interface{}, *btcjson.Error) {
|
2014-01-14 19:15:22 +01:00
|
|
|
result, err := handleSendRawTransaction(s, icmd)
|
|
|
|
// TODO: the standard handlers really should be changed to
|
|
|
|
// return btcjson.Errors which get used directly in the
|
|
|
|
// response. Wouldn't need this crap here then.
|
2013-12-31 21:39:17 +01:00
|
|
|
if err != nil {
|
2014-01-21 00:07:17 +01:00
|
|
|
if jsonErr, ok := err.(*btcjson.Error); ok {
|
|
|
|
return result, jsonErr
|
|
|
|
}
|
|
|
|
jsonErr := &btcjson.Error{
|
|
|
|
Code: btcjson.ErrMisc.Code,
|
|
|
|
Message: err.Error(),
|
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
return result, jsonErr
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2013-12-31 21:39:17 +01:00
|
|
|
// The result is already guaranteed to be a valid hash string if no
|
|
|
|
// error was returned above, so it's safe to ignore the error here.
|
|
|
|
txSha, _ := btcwire.NewShaHashFromStr(result.(string))
|
2013-12-31 20:15:44 +01:00
|
|
|
|
2013-12-31 21:39:17 +01:00
|
|
|
// Request to be notified when the transaction is mined.
|
2014-01-14 21:59:31 +01:00
|
|
|
s.ws.AddMinedTxRequest(c.n, txSha)
|
2014-01-14 19:15:22 +01:00
|
|
|
return result, nil
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-22 21:10:04 +01:00
|
|
|
// websocketAuthenticate checks the authenticate command for valid credentials.
|
|
|
|
// An error is returned if the credentials are invalid or if the connection is
|
|
|
|
// already authenticated.
|
|
|
|
//
|
|
|
|
// This function MUST be called with the websocket lock held.
|
|
|
|
func websocketAuthenticate(icmd btcjson.Cmd, rc *requestContexts, authSha []byte) error {
|
|
|
|
cmd, ok := icmd.(*btcws.AuthenticateCmd)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("%s", btcjson.ErrInternal.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Already authenticated?
|
|
|
|
if rc.authenticated {
|
|
|
|
rpcsLog.Warnf("Already authenticated")
|
|
|
|
return ErrBadAuth
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check credentials.
|
|
|
|
login := cmd.Username + ":" + cmd.Passphrase
|
|
|
|
auth := "Basic " + base64.StdEncoding.EncodeToString([]byte(login))
|
|
|
|
calcualtedAuthSha := sha256.Sum256([]byte(auth))
|
|
|
|
cmp := subtle.ConstantTimeCompare(calcualtedAuthSha[:], authSha)
|
|
|
|
if cmp != 1 {
|
|
|
|
rpcsLog.Warnf("Auth failure.")
|
|
|
|
return ErrBadAuth
|
|
|
|
}
|
|
|
|
|
|
|
|
rc.authenticated = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
// AddWalletListener adds a channel to listen for new messages from a
|
|
|
|
// wallet.
|
2014-01-22 21:10:04 +01:00
|
|
|
func (s *rpcServer) AddWalletListener(n ntfnChan, rc *requestContexts) {
|
2013-12-31 20:15:44 +01:00
|
|
|
s.ws.Lock()
|
2014-01-14 19:15:22 +01:00
|
|
|
s.ws.connections[n] = rc
|
2013-12-31 20:15:44 +01:00
|
|
|
s.ws.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveWalletListener removes a wallet listener channel.
|
2014-01-14 19:15:22 +01:00
|
|
|
func (s *rpcServer) RemoveWalletListener(n ntfnChan) {
|
2013-12-31 20:15:44 +01:00
|
|
|
s.ws.Lock()
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
rc := s.ws.connections[n]
|
2013-12-31 20:15:44 +01:00
|
|
|
for k := range rc.txRequests {
|
2014-01-14 19:15:22 +01:00
|
|
|
s.ws.removeGlobalTxRequest(n, k)
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
for k := range rc.spentRequests {
|
2014-01-14 19:15:22 +01:00
|
|
|
s.ws.removeGlobalSpentRequest(n, &k)
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
for k := range rc.minedTxRequests {
|
2014-01-14 19:15:22 +01:00
|
|
|
s.ws.removeGlobalMinedTxRequest(n, &k)
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
delete(s.ws.connections, n)
|
2013-12-31 20:15:44 +01:00
|
|
|
s.ws.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// walletReqsNotifications is the handler function for websocket
|
|
|
|
// connections from a btcwallet instance. It reads messages from wallet and
|
|
|
|
// sends back replies, as well as notififying wallets of chain updates.
|
2014-01-22 21:10:04 +01:00
|
|
|
func (s *rpcServer) walletReqsNotifications(ws *websocket.Conn, authenticated bool) {
|
2014-01-18 07:03:31 +01:00
|
|
|
// Clear the read deadline that was set before the websocket hijacked
|
|
|
|
// the connection.
|
|
|
|
ws.SetReadDeadline(timeZeroVal)
|
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
// Add wallet notification channel so this handler receives btcd chain
|
|
|
|
// notifications.
|
2014-01-14 19:15:22 +01:00
|
|
|
n := make(ntfnChan)
|
2014-01-22 21:10:04 +01:00
|
|
|
rc := &requestContexts{
|
|
|
|
authenticated: authenticated,
|
|
|
|
txRequests: make(map[string]struct{}),
|
|
|
|
spentRequests: make(map[btcwire.OutPoint]struct{}),
|
|
|
|
minedTxRequests: make(map[btcwire.ShaHash]struct{}),
|
|
|
|
}
|
|
|
|
s.AddWalletListener(n, rc)
|
2014-01-14 19:15:22 +01:00
|
|
|
defer s.RemoveWalletListener(n)
|
|
|
|
|
|
|
|
// Channel for responses.
|
|
|
|
r := make(chan *btcjson.Reply)
|
2013-12-31 20:15:44 +01:00
|
|
|
|
2014-01-14 21:59:31 +01:00
|
|
|
// Channels for websocket handlers.
|
|
|
|
disconnected := make(chan struct{})
|
|
|
|
hc := handlerChans{
|
|
|
|
n: n,
|
|
|
|
disconnected: disconnected,
|
|
|
|
}
|
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
// msgs is a channel for all messages received over the websocket.
|
2014-01-17 21:48:02 +01:00
|
|
|
msgs := make(chan string)
|
2013-12-31 20:15:44 +01:00
|
|
|
|
|
|
|
// Receive messages from websocket and send across reqs until the
|
|
|
|
// connection is lost.
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-s.quit:
|
|
|
|
return
|
2014-01-14 19:15:22 +01:00
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
default:
|
2014-01-17 21:48:02 +01:00
|
|
|
var m string
|
2013-12-31 20:15:44 +01:00
|
|
|
if err := websocket.Message.Receive(ws, &m); err != nil {
|
2014-01-15 03:45:42 +01:00
|
|
|
// Only close disconnected if not closed yet.
|
|
|
|
select {
|
|
|
|
case <-disconnected:
|
|
|
|
// nothing
|
|
|
|
|
|
|
|
default:
|
|
|
|
close(disconnected)
|
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
msgs <- m
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
2014-01-14 21:59:31 +01:00
|
|
|
case <-s.quit:
|
|
|
|
// Server closed. Closing disconnected signals handlers to stop
|
|
|
|
// and flushes all channels handlers may write to.
|
2014-01-15 04:53:07 +01:00
|
|
|
select {
|
|
|
|
case <-disconnected:
|
|
|
|
// nothing
|
|
|
|
|
|
|
|
default:
|
|
|
|
close(disconnected)
|
|
|
|
}
|
2014-01-14 21:59:31 +01:00
|
|
|
|
|
|
|
case <-disconnected:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-msgs:
|
|
|
|
case <-r:
|
|
|
|
case <-n:
|
|
|
|
default:
|
|
|
|
return
|
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
2014-01-14 21:59:31 +01:00
|
|
|
|
|
|
|
case m := <-msgs:
|
2014-01-22 21:10:04 +01:00
|
|
|
// This function internally spawns a new goroutine to
|
|
|
|
// the handle request after validating authentication.
|
|
|
|
// Responses and notifications are read by channels in
|
|
|
|
// this for-select loop.
|
|
|
|
if !rc.disconnecting {
|
|
|
|
err := s.websocketJSONHandler(r, hc, m)
|
|
|
|
if err == ErrBadAuth {
|
|
|
|
rc.disconnecting = true
|
|
|
|
close(disconnected)
|
|
|
|
ws.Close()
|
|
|
|
}
|
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
|
|
|
|
case response := <-r:
|
|
|
|
// Marshal and send response.
|
|
|
|
mresp, err := json.Marshal(response)
|
|
|
|
if err != nil {
|
|
|
|
rpcsLog.Errorf("Error unmarshaling response: %v", err)
|
|
|
|
continue
|
|
|
|
}
|
2014-01-17 21:48:02 +01:00
|
|
|
if err := websocket.Message.Send(ws, string(mresp)); err != nil {
|
2014-01-15 03:45:42 +01:00
|
|
|
// Only close disconnected if not closed yet.
|
|
|
|
select {
|
|
|
|
case <-disconnected:
|
|
|
|
// nothing
|
|
|
|
|
|
|
|
default:
|
|
|
|
close(disconnected)
|
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
return
|
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
|
|
|
|
case ntfn := <-n:
|
|
|
|
// Marshal and send notification.
|
|
|
|
mntfn, err := ntfn.MarshalJSON()
|
|
|
|
if err != nil {
|
|
|
|
rpcsLog.Errorf("Error unmarshaling notification: %v", err)
|
|
|
|
continue
|
|
|
|
}
|
2014-01-17 21:48:02 +01:00
|
|
|
if err := websocket.Message.Send(ws, string(mntfn)); err != nil {
|
2014-01-15 03:45:42 +01:00
|
|
|
// Only close disconnected if not closed yet.
|
|
|
|
select {
|
|
|
|
case <-disconnected:
|
|
|
|
// nothing
|
|
|
|
|
|
|
|
default:
|
|
|
|
close(disconnected)
|
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
return
|
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// websocketJSONHandler parses and handles a marshalled json message,
|
|
|
|
// sending the marshalled reply to a wallet notification channel.
|
2014-01-22 21:10:04 +01:00
|
|
|
func (s *rpcServer) websocketJSONHandler(r chan *btcjson.Reply, c handlerChans, msg string) error {
|
2014-01-14 21:59:31 +01:00
|
|
|
var resp *btcjson.Reply
|
|
|
|
|
2014-01-17 21:48:02 +01:00
|
|
|
cmd, jsonErr := parseCmd([]byte(msg))
|
2013-12-31 20:15:44 +01:00
|
|
|
if jsonErr != nil {
|
2014-01-14 21:59:31 +01:00
|
|
|
resp = &btcjson.Reply{}
|
2013-12-31 20:15:44 +01:00
|
|
|
if cmd != nil {
|
|
|
|
// Unmarshaling at least a valid JSON-RPC message succeeded.
|
2014-01-14 19:15:22 +01:00
|
|
|
// Use the provided id for errors. Requests with no IDs
|
|
|
|
// should be ignored.
|
2013-12-31 20:15:44 +01:00
|
|
|
id := cmd.Id()
|
2014-01-14 19:15:22 +01:00
|
|
|
if id == nil {
|
2014-01-22 21:10:04 +01:00
|
|
|
return nil
|
2014-01-14 19:15:22 +01:00
|
|
|
}
|
|
|
|
resp.Id = &id
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
2014-01-14 19:15:22 +01:00
|
|
|
resp.Error = jsonErr
|
2014-01-14 21:59:31 +01:00
|
|
|
} else {
|
2014-01-22 21:10:04 +01:00
|
|
|
// The first command must be the "authenticate" command if the
|
|
|
|
// connection is not already authenticated.
|
|
|
|
s.ws.Lock()
|
|
|
|
rc := s.ws.connections[c.n]
|
2014-01-23 03:21:05 +01:00
|
|
|
if _, ok := cmd.(*btcws.AuthenticateCmd); ok {
|
2014-01-22 21:10:04 +01:00
|
|
|
// Validate the provided credentials.
|
|
|
|
err := websocketAuthenticate(cmd, rc, s.authsha[:])
|
|
|
|
if err != nil {
|
|
|
|
s.ws.Unlock()
|
|
|
|
return err
|
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
|
2014-01-22 21:10:04 +01:00
|
|
|
// Generate an empty response to send for the successful
|
|
|
|
// authentication.
|
|
|
|
id := cmd.Id()
|
|
|
|
resp = &btcjson.Reply{
|
|
|
|
Id: &id,
|
|
|
|
Result: nil,
|
|
|
|
Error: nil,
|
|
|
|
}
|
|
|
|
} else if !rc.authenticated {
|
|
|
|
rpcsLog.Warnf("Unauthenticated websocket message " +
|
|
|
|
"received")
|
|
|
|
s.ws.Unlock()
|
|
|
|
return ErrBadAuth
|
|
|
|
}
|
2014-01-14 21:59:31 +01:00
|
|
|
|
2014-01-22 21:10:04 +01:00
|
|
|
s.ws.Unlock()
|
2014-01-14 21:59:31 +01:00
|
|
|
}
|
2014-01-22 21:10:04 +01:00
|
|
|
|
|
|
|
// Find and run handler in new goroutine.
|
|
|
|
go func() {
|
|
|
|
if resp == nil {
|
|
|
|
resp = respondToAnyCmd(cmd, s, c)
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
case <-c.disconnected:
|
|
|
|
return
|
|
|
|
|
|
|
|
default:
|
|
|
|
r <- resp
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return nil
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyBlockConnected creates and marshalls a JSON message to notify
|
|
|
|
// of a new block connected to the main chain. The notification is sent
|
|
|
|
// to each connected wallet.
|
|
|
|
func (s *rpcServer) NotifyBlockConnected(block *btcutil.Block) {
|
|
|
|
hash, err := block.Sha()
|
|
|
|
if err != nil {
|
2014-01-14 22:41:22 +01:00
|
|
|
rpcsLog.Error("Bad block; connected block notification dropped")
|
2013-12-31 20:15:44 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: remove int32 type conversion.
|
2014-01-14 19:15:22 +01:00
|
|
|
ntfn := btcws.NewBlockConnectedNtfn(hash.String(), int32(block.Height()))
|
2014-01-17 22:00:46 +01:00
|
|
|
for ntfnChan, rc := range s.ws.connections {
|
|
|
|
if rc.blockUpdates {
|
|
|
|
ntfnChan <- ntfn
|
|
|
|
}
|
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
|
|
|
|
// Inform any interested parties about txs mined in this block.
|
|
|
|
s.ws.Lock()
|
|
|
|
for _, tx := range block.Transactions() {
|
|
|
|
if clist, ok := s.ws.minedTxNotifications[*tx.Sha()]; ok {
|
|
|
|
var enext *list.Element
|
|
|
|
for e := clist.Front(); e != nil; e = enext {
|
|
|
|
enext = e.Next()
|
2014-01-14 19:15:22 +01:00
|
|
|
n := e.Value.(ntfnChan)
|
2013-12-31 20:15:44 +01:00
|
|
|
// TODO: remove int32 type conversion after
|
|
|
|
// the int64 -> int32 switch is made.
|
|
|
|
ntfn := btcws.NewTxMinedNtfn(tx.Sha().String(),
|
|
|
|
hash.String(), int32(block.Height()),
|
|
|
|
block.MsgBlock().Header.Timestamp.Unix(),
|
|
|
|
tx.Index())
|
2014-01-14 19:15:22 +01:00
|
|
|
n <- ntfn
|
|
|
|
s.ws.removeMinedTxRequest(n, tx.Sha())
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s.ws.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyBlockDisconnected creates and marshals a JSON message to notify
|
|
|
|
// of a new block disconnected from the main chain. The notification is sent
|
|
|
|
// to each connected wallet.
|
|
|
|
func (s *rpcServer) NotifyBlockDisconnected(block *btcutil.Block) {
|
|
|
|
hash, err := block.Sha()
|
|
|
|
if err != nil {
|
2014-01-14 22:41:22 +01:00
|
|
|
rpcsLog.Error("Bad block; connected block notification dropped")
|
2013-12-31 20:15:44 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: remove int32 type conversion.
|
|
|
|
ntfn := btcws.NewBlockDisconnectedNtfn(hash.String(),
|
|
|
|
int32(block.Height()))
|
2014-01-17 22:00:46 +01:00
|
|
|
for ntfnChan, rc := range s.ws.connections {
|
|
|
|
if rc.blockUpdates {
|
|
|
|
ntfnChan <- ntfn
|
|
|
|
}
|
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyBlockTXs creates and marshals a JSON message to notify wallets
|
|
|
|
// of new transactions (with both spent and unspent outputs) for a watched
|
|
|
|
// address.
|
|
|
|
func (s *rpcServer) NotifyBlockTXs(db btcdb.Db, block *btcutil.Block) {
|
|
|
|
for _, tx := range block.Transactions() {
|
|
|
|
s.newBlockNotifyCheckTxIn(tx)
|
|
|
|
s.NotifyForTxOuts(tx, block)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
func notifySpentData(n ntfnChan, txhash *btcwire.ShaHash, index uint32,
|
2013-12-31 20:15:44 +01:00
|
|
|
spender *btcutil.Tx) {
|
2014-01-08 17:40:27 +01:00
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
// Ignore Serialize's error, as writing to a bytes.buffer
|
|
|
|
// cannot fail.
|
|
|
|
spender.MsgTx().Serialize(&buf)
|
|
|
|
txStr := hex.EncodeToString(buf.Bytes())
|
|
|
|
|
|
|
|
ntfn := btcws.NewTxSpentNtfn(txhash.String(), int(index), txStr)
|
2014-01-14 19:15:22 +01:00
|
|
|
n <- ntfn
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// newBlockNotifyCheckTxIn is a helper function to iterate through
|
|
|
|
// each transaction input of a new block and perform any checks and
|
|
|
|
// notify listening frontends when necessary.
|
|
|
|
func (s *rpcServer) newBlockNotifyCheckTxIn(tx *btcutil.Tx) {
|
|
|
|
for _, txin := range tx.MsgTx().TxIn {
|
|
|
|
if clist, ok := s.ws.spentNotifications[txin.PreviousOutpoint]; ok {
|
|
|
|
var enext *list.Element
|
|
|
|
for e := clist.Front(); e != nil; e = enext {
|
|
|
|
enext = e.Next()
|
2014-01-14 19:15:22 +01:00
|
|
|
n := e.Value.(ntfnChan)
|
|
|
|
notifySpentData(n, &txin.PreviousOutpoint.Hash,
|
2014-01-08 17:40:27 +01:00
|
|
|
txin.PreviousOutpoint.Index, tx)
|
2014-01-14 19:15:22 +01:00
|
|
|
s.ws.RemoveSpentRequest(n, &txin.PreviousOutpoint)
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NotifyForTxOuts iterates through all outputs of a tx, performing any
|
|
|
|
// necessary notifications for wallets. If a non-nil block is passed,
|
|
|
|
// additional block information is passed with the notifications.
|
|
|
|
func (s *rpcServer) NotifyForTxOuts(tx *btcutil.Tx, block *btcutil.Block) {
|
2014-01-17 20:11:49 +01:00
|
|
|
// Nothing to do if nobody is listening for transaction notifications.
|
|
|
|
if len(s.ws.txNotifications) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-12-31 20:15:44 +01:00
|
|
|
for i, txout := range tx.MsgTx().TxOut {
|
2014-01-08 03:30:01 +01:00
|
|
|
_, addrs, _, err := btcscript.ExtractPkScriptAddrs(
|
|
|
|
txout.PkScript, s.server.btcnet)
|
|
|
|
if err != nil {
|
2013-12-31 20:15:44 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-01-08 03:30:01 +01:00
|
|
|
for _, addr := range addrs {
|
|
|
|
// Only support pay-to-pubkey-hash right now.
|
|
|
|
if _, ok := addr.(*btcutil.AddressPubKeyHash); !ok {
|
|
|
|
continue
|
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
|
2014-01-08 03:30:01 +01:00
|
|
|
encodedAddr := addr.EncodeAddress()
|
|
|
|
if idlist, ok := s.ws.txNotifications[encodedAddr]; ok {
|
|
|
|
for e := idlist.Front(); e != nil; e = e.Next() {
|
2014-01-14 19:15:22 +01:00
|
|
|
n := e.Value.(ntfnChan)
|
2014-01-08 17:40:27 +01:00
|
|
|
|
|
|
|
ntfn := &btcws.ProcessedTxNtfn{
|
2014-01-08 03:30:01 +01:00
|
|
|
Receiver: encodedAddr,
|
|
|
|
TxID: tx.Sha().String(),
|
|
|
|
TxOutIndex: uint32(i),
|
|
|
|
Amount: txout.Value,
|
2014-01-08 17:40:27 +01:00
|
|
|
PkScript: hex.EncodeToString(txout.PkScript),
|
|
|
|
// TODO(jrick): hardcoding unspent is WRONG and needs
|
|
|
|
// to be either calculated from other block txs, or dropped.
|
|
|
|
Spent: false,
|
2014-01-08 03:30:01 +01:00
|
|
|
}
|
2013-12-31 20:15:44 +01:00
|
|
|
|
2014-01-08 03:30:01 +01:00
|
|
|
if block != nil {
|
|
|
|
blkhash, err := block.Sha()
|
|
|
|
if err != nil {
|
2014-01-14 22:41:22 +01:00
|
|
|
rpcsLog.Error("Error getting block sha; dropping Tx notification")
|
2014-01-08 03:30:01 +01:00
|
|
|
break
|
|
|
|
}
|
2014-01-08 17:40:27 +01:00
|
|
|
ntfn.BlockHeight = int32(block.Height())
|
|
|
|
ntfn.BlockHash = blkhash.String()
|
|
|
|
ntfn.BlockIndex = tx.Index()
|
|
|
|
ntfn.BlockTime = block.MsgBlock().Header.Timestamp.Unix()
|
2014-01-08 03:30:01 +01:00
|
|
|
} else {
|
2014-01-08 17:40:27 +01:00
|
|
|
ntfn.BlockHeight = -1
|
|
|
|
ntfn.BlockIndex = -1
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 19:15:22 +01:00
|
|
|
n <- ntfn
|
2013-12-31 20:15:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|