2014-12-04 09:28:02 +00:00
|
|
|
package core
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
import (
|
2015-01-31 16:22:17 +00:00
|
|
|
"errors"
|
2014-02-14 22:56:09 +00:00
|
|
|
"fmt"
|
2015-04-08 18:47:32 +00:00
|
|
|
"math/big"
|
2015-02-19 21:33:22 +00:00
|
|
|
"sync"
|
2014-07-29 22:31:15 +00:00
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-04-08 18:47:32 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2015-03-17 10:59:26 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2014-12-18 12:12:54 +00:00
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2014-10-31 11:56:05 +00:00
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
2015-04-08 18:47:32 +00:00
|
|
|
"github.com/ethereum/go-ethereum/logger/glog"
|
2015-04-07 22:31:23 +00:00
|
|
|
"gopkg.in/fatih/set.v0"
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
2015-01-31 16:22:17 +00:00
|
|
|
var (
|
2015-04-08 18:47:32 +00:00
|
|
|
ErrInvalidSender = errors.New("Invalid sender")
|
|
|
|
ErrImpossibleNonce = errors.New("Impossible nonce")
|
|
|
|
ErrNonExistentAccount = errors.New("Account does not exist")
|
|
|
|
ErrInsufficientFunds = errors.New("Insufficient funds")
|
|
|
|
ErrIntrinsicGas = errors.New("Intrinsic gas too low")
|
2015-01-31 16:22:17 +00:00
|
|
|
)
|
2014-06-23 11:54:10 +00:00
|
|
|
|
2014-10-29 02:50:20 +00:00
|
|
|
const txPoolQueueSize = 50
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-11-18 15:58:22 +00:00
|
|
|
type TxPoolHook chan *types.Transaction
|
2015-03-17 10:59:26 +00:00
|
|
|
type TxMsg struct{ Tx *types.Transaction }
|
2014-02-25 10:22:27 +00:00
|
|
|
|
|
|
|
const (
|
2014-06-10 13:02:41 +00:00
|
|
|
minGasPrice = 1000000
|
2014-02-25 10:22:27 +00:00
|
|
|
)
|
|
|
|
|
2014-02-23 00:57:04 +00:00
|
|
|
type TxProcessor interface {
|
2014-11-18 15:58:22 +00:00
|
|
|
ProcessTransaction(tx *types.Transaction)
|
2014-02-23 00:57:04 +00:00
|
|
|
}
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
// The tx pool a thread safe transaction pool handler. In order to
|
|
|
|
// guarantee a non blocking pool we use a queue channel which can be
|
2015-01-02 11:09:38 +00:00
|
|
|
// independently read without needing access to the actual pool.
|
2014-02-14 22:56:09 +00:00
|
|
|
type TxPool struct {
|
2015-02-19 21:33:22 +00:00
|
|
|
mu sync.RWMutex
|
2014-02-14 22:56:09 +00:00
|
|
|
// Queueing channel for reading and writing incoming
|
|
|
|
// transactions to
|
2014-11-18 15:58:22 +00:00
|
|
|
queueChan chan *types.Transaction
|
2014-02-14 22:56:09 +00:00
|
|
|
// Quiting channel
|
|
|
|
quit chan bool
|
2015-04-08 18:47:32 +00:00
|
|
|
// The state function which will allow us to do some pre checkes
|
|
|
|
currentState func() *state.StateDB
|
2014-02-14 22:56:09 +00:00
|
|
|
// The actual pool
|
2015-04-07 22:31:23 +00:00
|
|
|
txs map[common.Hash]*types.Transaction
|
|
|
|
invalidHashes *set.Set
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-02-25 10:22:27 +00:00
|
|
|
subscribers []chan TxMsg
|
2014-12-18 12:12:54 +00:00
|
|
|
|
2015-01-02 11:26:55 +00:00
|
|
|
eventMux *event.TypeMux
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 18:47:32 +00:00
|
|
|
func NewTxPool(eventMux *event.TypeMux, currentStateFn func() *state.StateDB) *TxPool {
|
2014-02-14 22:56:09 +00:00
|
|
|
return &TxPool{
|
2015-04-07 22:31:23 +00:00
|
|
|
txs: make(map[common.Hash]*types.Transaction),
|
|
|
|
queueChan: make(chan *types.Transaction, txPoolQueueSize),
|
|
|
|
quit: make(chan bool),
|
|
|
|
eventMux: eventMux,
|
|
|
|
invalidHashes: set.New(),
|
2015-04-08 18:47:32 +00:00
|
|
|
currentState: currentStateFn,
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 15:58:22 +00:00
|
|
|
func (pool *TxPool) ValidateTransaction(tx *types.Transaction) error {
|
2015-03-17 10:59:26 +00:00
|
|
|
// Validate sender
|
2015-04-08 18:47:32 +00:00
|
|
|
var (
|
|
|
|
from common.Address
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
if from, err = tx.From(); err != nil {
|
2015-03-18 12:38:47 +00:00
|
|
|
return ErrInvalidSender
|
2014-12-01 23:14:34 +00:00
|
|
|
}
|
2015-04-08 18:47:32 +00:00
|
|
|
|
2015-01-31 16:22:17 +00:00
|
|
|
// Validate curve param
|
2014-12-03 13:05:19 +00:00
|
|
|
v, _, _ := tx.Curve()
|
|
|
|
if v > 28 || v < 27 {
|
2015-01-02 11:24:36 +00:00
|
|
|
return fmt.Errorf("tx.v != (28 || 27) => %v", v)
|
2014-06-12 08:07:27 +00:00
|
|
|
}
|
2015-01-31 16:22:17 +00:00
|
|
|
|
2015-04-08 18:47:32 +00:00
|
|
|
if !pool.currentState().HasAccount(from) {
|
|
|
|
return ErrNonExistentAccount
|
2014-06-10 13:02:41 +00:00
|
|
|
}
|
2015-04-08 18:47:32 +00:00
|
|
|
|
|
|
|
if pool.currentState().GetBalance(from).Cmp(new(big.Int).Mul(tx.Price, tx.GasLimit)) < 0 {
|
|
|
|
return ErrInsufficientFunds
|
|
|
|
}
|
|
|
|
|
|
|
|
if tx.GasLimit.Cmp(IntrinsicGas(tx)) < 0 {
|
|
|
|
return ErrIntrinsicGas
|
|
|
|
}
|
|
|
|
|
|
|
|
if pool.currentState().GetNonce(from) > tx.Nonce() {
|
|
|
|
return ErrImpossibleNonce
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2015-01-05 16:10:42 +00:00
|
|
|
func (self *TxPool) addTx(tx *types.Transaction) {
|
2015-04-08 11:07:21 +00:00
|
|
|
self.txs[tx.Hash()] = tx
|
2015-01-05 16:10:42 +00:00
|
|
|
}
|
2014-12-01 19:18:09 +00:00
|
|
|
|
2015-02-19 21:33:22 +00:00
|
|
|
func (self *TxPool) add(tx *types.Transaction) error {
|
2015-03-17 11:16:21 +00:00
|
|
|
hash := tx.Hash()
|
2015-04-07 22:31:23 +00:00
|
|
|
|
2015-04-08 18:47:32 +00:00
|
|
|
/* XXX I'm unsure about this. This is extremely dangerous and may result
|
|
|
|
in total black listing of certain transactions
|
2015-04-07 22:31:23 +00:00
|
|
|
if self.invalidHashes.Has(hash) {
|
|
|
|
return fmt.Errorf("Invalid transaction (%x)", hash[:4])
|
|
|
|
}
|
2015-04-08 18:47:32 +00:00
|
|
|
*/
|
2015-03-17 11:16:21 +00:00
|
|
|
if self.txs[hash] != nil {
|
2015-04-07 22:31:23 +00:00
|
|
|
return fmt.Errorf("Known transaction (%x)", hash[:4])
|
2015-01-07 00:21:45 +00:00
|
|
|
}
|
2014-12-01 19:18:09 +00:00
|
|
|
err := self.ValidateTransaction(tx)
|
|
|
|
if err != nil {
|
2015-04-08 16:08:21 +00:00
|
|
|
self.invalidHashes.Add(tx.Hash())
|
2014-12-01 19:18:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-04-08 11:07:21 +00:00
|
|
|
self.addTx(tx)
|
2014-12-01 19:18:09 +00:00
|
|
|
|
2015-03-17 10:59:26 +00:00
|
|
|
var toname string
|
2015-03-17 11:16:21 +00:00
|
|
|
if to := tx.To(); to != nil {
|
2015-03-17 10:59:26 +00:00
|
|
|
toname = common.Bytes2Hex(to[:4])
|
2015-01-02 21:19:58 +00:00
|
|
|
} else {
|
2015-03-17 10:59:26 +00:00
|
|
|
toname = "[NEW_CONTRACT]"
|
2015-01-26 18:57:23 +00:00
|
|
|
}
|
2015-03-17 10:59:26 +00:00
|
|
|
// we can ignore the error here because From is
|
|
|
|
// verified in ValidateTransaction.
|
|
|
|
f, _ := tx.From()
|
|
|
|
from := common.Bytes2Hex(f[:4])
|
2015-04-08 18:47:32 +00:00
|
|
|
|
|
|
|
if glog.V(logger.Debug) {
|
|
|
|
glog.Infof("(t) %x => %s (%v) %x\n", from, toname, tx.Value, tx.Hash())
|
|
|
|
}
|
2014-12-01 19:18:09 +00:00
|
|
|
|
|
|
|
// Notify the subscribers
|
2014-12-18 12:12:54 +00:00
|
|
|
go self.eventMux.Post(TxPreEvent{tx})
|
2014-12-01 19:18:09 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-12-04 22:54:07 +00:00
|
|
|
func (self *TxPool) Size() int {
|
2015-01-05 16:10:42 +00:00
|
|
|
return len(self.txs)
|
2014-12-04 22:54:07 +00:00
|
|
|
}
|
|
|
|
|
2015-02-19 21:33:22 +00:00
|
|
|
func (self *TxPool) Add(tx *types.Transaction) error {
|
|
|
|
self.mu.Lock()
|
|
|
|
defer self.mu.Unlock()
|
2015-04-07 22:31:23 +00:00
|
|
|
|
2015-02-19 21:33:22 +00:00
|
|
|
return self.add(tx)
|
|
|
|
}
|
2015-03-17 10:59:26 +00:00
|
|
|
|
2014-12-14 18:15:48 +00:00
|
|
|
func (self *TxPool) AddTransactions(txs []*types.Transaction) {
|
2015-02-19 21:33:22 +00:00
|
|
|
self.mu.Lock()
|
|
|
|
defer self.mu.Unlock()
|
|
|
|
|
2014-12-14 18:15:48 +00:00
|
|
|
for _, tx := range txs {
|
2015-02-19 21:33:22 +00:00
|
|
|
if err := self.add(tx); err != nil {
|
2015-04-08 18:47:32 +00:00
|
|
|
glog.V(logger.Debug).Infoln(err)
|
2014-12-14 18:15:48 +00:00
|
|
|
} else {
|
2015-03-17 11:16:21 +00:00
|
|
|
h := tx.Hash()
|
2015-04-08 18:47:32 +00:00
|
|
|
glog.V(logger.Debug).Infof("tx %x\n", h[:4])
|
2014-12-14 18:15:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-05 16:10:42 +00:00
|
|
|
func (self *TxPool) GetTransactions() (txs types.Transactions) {
|
2015-02-19 21:33:22 +00:00
|
|
|
self.mu.RLock()
|
|
|
|
defer self.mu.RUnlock()
|
|
|
|
|
2015-01-05 16:10:42 +00:00
|
|
|
txs = make(types.Transactions, self.Size())
|
2014-02-14 22:56:09 +00:00
|
|
|
i := 0
|
2015-01-05 16:10:42 +00:00
|
|
|
for _, tx := range self.txs {
|
|
|
|
txs[i] = tx
|
2014-02-14 22:56:09 +00:00
|
|
|
i++
|
2015-01-05 16:10:42 +00:00
|
|
|
}
|
2015-01-02 11:09:38 +00:00
|
|
|
|
2015-01-05 16:10:42 +00:00
|
|
|
return
|
2014-03-28 10:20:07 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 15:58:22 +00:00
|
|
|
func (self *TxPool) RemoveSet(txs types.Transactions) {
|
2015-02-19 21:33:22 +00:00
|
|
|
self.mu.Lock()
|
|
|
|
defer self.mu.Unlock()
|
2014-10-27 15:52:58 +00:00
|
|
|
for _, tx := range txs {
|
2015-03-17 10:59:26 +00:00
|
|
|
delete(self.txs, tx.Hash())
|
2014-10-27 15:52:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 22:31:23 +00:00
|
|
|
func (self *TxPool) InvalidateSet(hashes *set.Set) {
|
|
|
|
self.mu.Lock()
|
|
|
|
defer self.mu.Unlock()
|
|
|
|
|
|
|
|
hashes.Each(func(v interface{}) bool {
|
|
|
|
delete(self.txs, v.(common.Hash))
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
self.invalidHashes.Merge(hashes)
|
|
|
|
}
|
|
|
|
|
2015-02-19 21:33:22 +00:00
|
|
|
func (pool *TxPool) Flush() {
|
2015-03-17 10:59:26 +00:00
|
|
|
pool.txs = make(map[common.Hash]*types.Transaction)
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) Start() {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) Stop() {
|
|
|
|
pool.Flush()
|
2014-03-17 09:33:03 +00:00
|
|
|
|
2015-04-08 18:47:32 +00:00
|
|
|
glog.V(logger.Info).Infoln("TX Pool stopped")
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|