2014-12-04 11:28:02 +02:00
|
|
|
package core
|
2014-02-15 00:56:09 +02:00
|
|
|
|
|
|
|
import (
|
2015-01-31 18:22:17 +02:00
|
|
|
"errors"
|
2014-02-15 00:56:09 +02:00
|
|
|
"fmt"
|
2015-04-08 21:47:32 +03:00
|
|
|
"math/big"
|
2015-04-21 23:01:04 +03:00
|
|
|
"sort"
|
2015-02-19 23:33:22 +02:00
|
|
|
"sync"
|
2015-04-21 23:01:04 +03:00
|
|
|
"time"
|
2014-07-30 01:31:15 +03:00
|
|
|
|
2015-03-16 12:27:38 +02:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-04-08 21:47:32 +03:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2015-03-17 12:59:26 +02:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2014-12-18 14:12:54 +02:00
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2014-10-31 13:56:05 +02:00
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
2015-04-08 21:47:32 +03:00
|
|
|
"github.com/ethereum/go-ethereum/logger/glog"
|
2015-04-08 01:31:23 +03:00
|
|
|
"gopkg.in/fatih/set.v0"
|
2014-02-15 00:56:09 +02:00
|
|
|
)
|
|
|
|
|
2015-01-31 18:22:17 +02:00
|
|
|
var (
|
2015-04-08 21:47:32 +03:00
|
|
|
ErrInvalidSender = errors.New("Invalid sender")
|
2015-04-21 23:01:04 +03:00
|
|
|
ErrNonce = errors.New("Nonce too low")
|
2015-04-08 21:47:32 +03:00
|
|
|
ErrNonExistentAccount = errors.New("Account does not exist")
|
|
|
|
ErrInsufficientFunds = errors.New("Insufficient funds")
|
|
|
|
ErrIntrinsicGas = errors.New("Intrinsic gas too low")
|
2015-01-31 18:22:17 +02:00
|
|
|
)
|
2014-06-23 14:54:10 +03:00
|
|
|
|
2014-10-29 04:50:20 +02:00
|
|
|
const txPoolQueueSize = 50
|
2014-02-15 00:56:09 +02:00
|
|
|
|
2014-11-18 17:58:22 +02:00
|
|
|
type TxPoolHook chan *types.Transaction
|
2015-03-17 12:59:26 +02:00
|
|
|
type TxMsg struct{ Tx *types.Transaction }
|
2014-02-25 12:22:27 +02:00
|
|
|
|
2015-04-21 12:27:12 +03:00
|
|
|
type stateFn func() *state.StateDB
|
|
|
|
|
2014-02-25 12:22:27 +02:00
|
|
|
const (
|
2014-06-10 16:02:41 +03:00
|
|
|
minGasPrice = 1000000
|
2014-02-25 12:22:27 +02:00
|
|
|
)
|
|
|
|
|
2014-02-23 02:57:04 +02:00
|
|
|
type TxProcessor interface {
|
2014-11-18 17:58:22 +02:00
|
|
|
ProcessTransaction(tx *types.Transaction)
|
2014-02-23 02:57:04 +02:00
|
|
|
}
|
|
|
|
|
2014-02-15 00:56:09 +02: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 13:09:38 +02:00
|
|
|
// independently read without needing access to the actual pool.
|
2014-02-15 00:56:09 +02:00
|
|
|
type TxPool struct {
|
2015-02-19 23:33:22 +02:00
|
|
|
mu sync.RWMutex
|
2014-02-15 00:56:09 +02:00
|
|
|
// Queueing channel for reading and writing incoming
|
|
|
|
// transactions to
|
2014-11-18 17:58:22 +02:00
|
|
|
queueChan chan *types.Transaction
|
2014-02-15 00:56:09 +02:00
|
|
|
// Quiting channel
|
|
|
|
quit chan bool
|
2015-04-08 21:47:32 +03:00
|
|
|
// The state function which will allow us to do some pre checkes
|
2015-04-21 12:27:12 +03:00
|
|
|
currentState stateFn
|
2014-02-15 00:56:09 +02:00
|
|
|
// The actual pool
|
2015-04-08 01:31:23 +03:00
|
|
|
txs map[common.Hash]*types.Transaction
|
|
|
|
invalidHashes *set.Set
|
2014-02-15 00:56:09 +02:00
|
|
|
|
2015-04-21 23:01:04 +03:00
|
|
|
queue map[common.Address]types.Transactions
|
|
|
|
|
2014-02-25 12:22:27 +02:00
|
|
|
subscribers []chan TxMsg
|
2014-12-18 14:12:54 +02:00
|
|
|
|
2015-01-02 13:26:55 +02:00
|
|
|
eventMux *event.TypeMux
|
2014-02-15 00:56:09 +02:00
|
|
|
}
|
|
|
|
|
2015-04-21 12:27:12 +03:00
|
|
|
func NewTxPool(eventMux *event.TypeMux, currentStateFn stateFn) *TxPool {
|
2015-04-21 23:01:04 +03:00
|
|
|
txPool := &TxPool{
|
2015-04-08 01:31:23 +03:00
|
|
|
txs: make(map[common.Hash]*types.Transaction),
|
2015-04-21 23:01:04 +03:00
|
|
|
queue: make(map[common.Address]types.Transactions),
|
2015-04-08 01:31:23 +03:00
|
|
|
queueChan: make(chan *types.Transaction, txPoolQueueSize),
|
|
|
|
quit: make(chan bool),
|
|
|
|
eventMux: eventMux,
|
|
|
|
invalidHashes: set.New(),
|
2015-04-08 21:47:32 +03:00
|
|
|
currentState: currentStateFn,
|
2014-02-15 00:56:09 +02:00
|
|
|
}
|
2015-04-21 23:01:04 +03:00
|
|
|
return txPool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) Start() {
|
|
|
|
ticker := time.NewTicker(300 * time.Millisecond)
|
|
|
|
done:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ticker.C:
|
|
|
|
pool.checkQueue()
|
|
|
|
case <-pool.quit:
|
|
|
|
break done
|
|
|
|
}
|
|
|
|
}
|
2014-02-15 00:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 17:58:22 +02:00
|
|
|
func (pool *TxPool) ValidateTransaction(tx *types.Transaction) error {
|
2015-03-17 12:59:26 +02:00
|
|
|
// Validate sender
|
2015-04-08 21:47:32 +03:00
|
|
|
var (
|
|
|
|
from common.Address
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
if from, err = tx.From(); err != nil {
|
2015-03-18 14:38:47 +02:00
|
|
|
return ErrInvalidSender
|
2014-12-02 01:14:34 +02:00
|
|
|
}
|
2015-04-08 21:47:32 +03:00
|
|
|
|
2015-01-31 18:22:17 +02:00
|
|
|
// Validate curve param
|
2014-12-03 15:05:19 +02:00
|
|
|
v, _, _ := tx.Curve()
|
|
|
|
if v > 28 || v < 27 {
|
2015-01-02 13:24:36 +02:00
|
|
|
return fmt.Errorf("tx.v != (28 || 27) => %v", v)
|
2014-06-12 11:07:27 +03:00
|
|
|
}
|
2015-01-31 18:22:17 +02:00
|
|
|
|
2015-04-08 21:47:32 +03:00
|
|
|
if !pool.currentState().HasAccount(from) {
|
|
|
|
return ErrNonExistentAccount
|
2014-06-10 16:02:41 +03:00
|
|
|
}
|
2015-04-08 21:47:32 +03: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() {
|
2015-04-21 23:01:04 +03:00
|
|
|
return ErrNonce
|
2015-04-08 21:47:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2014-02-15 00:56:09 +02:00
|
|
|
}
|
|
|
|
|
2015-02-19 23:33:22 +02:00
|
|
|
func (self *TxPool) add(tx *types.Transaction) error {
|
2015-03-17 13:16:21 +02:00
|
|
|
hash := tx.Hash()
|
2015-04-08 01:31:23 +03:00
|
|
|
|
2015-04-08 21:47:32 +03:00
|
|
|
/* XXX I'm unsure about this. This is extremely dangerous and may result
|
|
|
|
in total black listing of certain transactions
|
2015-04-08 01:31:23 +03:00
|
|
|
if self.invalidHashes.Has(hash) {
|
|
|
|
return fmt.Errorf("Invalid transaction (%x)", hash[:4])
|
|
|
|
}
|
2015-04-08 21:47:32 +03:00
|
|
|
*/
|
2015-03-17 13:16:21 +02:00
|
|
|
if self.txs[hash] != nil {
|
2015-04-08 01:31:23 +03:00
|
|
|
return fmt.Errorf("Known transaction (%x)", hash[:4])
|
2015-01-07 02:21:45 +02:00
|
|
|
}
|
2014-12-01 21:18:09 +02:00
|
|
|
err := self.ValidateTransaction(tx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-04-22 00:20:27 +03:00
|
|
|
self.queueTx(tx)
|
2014-12-01 21:18:09 +02:00
|
|
|
|
2015-03-17 12:59:26 +02:00
|
|
|
var toname string
|
2015-03-17 13:16:21 +02:00
|
|
|
if to := tx.To(); to != nil {
|
2015-03-17 12:59:26 +02:00
|
|
|
toname = common.Bytes2Hex(to[:4])
|
2015-01-02 23:19:58 +02:00
|
|
|
} else {
|
2015-03-17 12:59:26 +02:00
|
|
|
toname = "[NEW_CONTRACT]"
|
2015-01-26 20:57:23 +02:00
|
|
|
}
|
2015-03-17 12:59:26 +02:00
|
|
|
// we can ignore the error here because From is
|
|
|
|
// verified in ValidateTransaction.
|
|
|
|
f, _ := tx.From()
|
|
|
|
from := common.Bytes2Hex(f[:4])
|
2015-04-08 21:47:32 +03:00
|
|
|
|
|
|
|
if glog.V(logger.Debug) {
|
|
|
|
glog.Infof("(t) %x => %s (%v) %x\n", from, toname, tx.Value, tx.Hash())
|
|
|
|
}
|
2014-12-01 21:18:09 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-12-05 00:54:07 +02:00
|
|
|
func (self *TxPool) Size() int {
|
2015-01-05 18:10:42 +02:00
|
|
|
return len(self.txs)
|
2014-12-05 00:54:07 +02:00
|
|
|
}
|
|
|
|
|
2015-02-19 23:33:22 +02:00
|
|
|
func (self *TxPool) Add(tx *types.Transaction) error {
|
|
|
|
self.mu.Lock()
|
|
|
|
defer self.mu.Unlock()
|
2015-04-08 01:31:23 +03:00
|
|
|
|
2015-02-19 23:33:22 +02:00
|
|
|
return self.add(tx)
|
|
|
|
}
|
2015-03-17 12:59:26 +02:00
|
|
|
|
2014-12-14 20:15:48 +02:00
|
|
|
func (self *TxPool) AddTransactions(txs []*types.Transaction) {
|
2015-02-19 23:33:22 +02:00
|
|
|
self.mu.Lock()
|
|
|
|
defer self.mu.Unlock()
|
|
|
|
|
2014-12-14 20:15:48 +02:00
|
|
|
for _, tx := range txs {
|
2015-02-19 23:33:22 +02:00
|
|
|
if err := self.add(tx); err != nil {
|
2015-04-08 21:47:32 +03:00
|
|
|
glog.V(logger.Debug).Infoln(err)
|
2014-12-14 20:15:48 +02:00
|
|
|
} else {
|
2015-03-17 13:16:21 +02:00
|
|
|
h := tx.Hash()
|
2015-04-08 21:47:32 +03:00
|
|
|
glog.V(logger.Debug).Infof("tx %x\n", h[:4])
|
2014-12-14 20:15:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-05 18:10:42 +02:00
|
|
|
func (self *TxPool) GetTransactions() (txs types.Transactions) {
|
2015-02-19 23:33:22 +02:00
|
|
|
self.mu.RLock()
|
|
|
|
defer self.mu.RUnlock()
|
|
|
|
|
2015-01-05 18:10:42 +02:00
|
|
|
txs = make(types.Transactions, self.Size())
|
2014-02-15 00:56:09 +02:00
|
|
|
i := 0
|
2015-01-05 18:10:42 +02:00
|
|
|
for _, tx := range self.txs {
|
|
|
|
txs[i] = tx
|
2014-02-15 00:56:09 +02:00
|
|
|
i++
|
2015-01-05 18:10:42 +02:00
|
|
|
}
|
2015-01-02 13:09:38 +02:00
|
|
|
|
2015-01-05 18:10:42 +02:00
|
|
|
return
|
2014-03-28 12:20:07 +02:00
|
|
|
}
|
|
|
|
|
2015-04-21 23:01:04 +03:00
|
|
|
func (self *TxPool) RemoveTransactions(txs types.Transactions) {
|
2015-02-19 23:33:22 +02:00
|
|
|
self.mu.Lock()
|
|
|
|
defer self.mu.Unlock()
|
2015-04-21 23:01:04 +03:00
|
|
|
|
2014-10-27 17:52:58 +02:00
|
|
|
for _, tx := range txs {
|
2015-03-17 12:59:26 +02:00
|
|
|
delete(self.txs, tx.Hash())
|
2014-10-27 17:52:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-19 23:33:22 +02:00
|
|
|
func (pool *TxPool) Flush() {
|
2015-03-17 12:59:26 +02:00
|
|
|
pool.txs = make(map[common.Hash]*types.Transaction)
|
2014-02-15 00:56:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) Stop() {
|
|
|
|
pool.Flush()
|
2015-04-21 23:01:04 +03:00
|
|
|
close(pool.quit)
|
2014-03-17 11:33:03 +02:00
|
|
|
|
2015-04-08 21:47:32 +03:00
|
|
|
glog.V(logger.Info).Infoln("TX Pool stopped")
|
2014-02-15 00:56:09 +02:00
|
|
|
}
|
2015-04-21 23:01:04 +03:00
|
|
|
|
2015-04-22 00:20:27 +03:00
|
|
|
func (self *TxPool) queueTx(tx *types.Transaction) {
|
|
|
|
from, _ := tx.From()
|
|
|
|
self.queue[from] = append(self.queue[from], tx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) addTx(tx *types.Transaction) {
|
|
|
|
if _, ok := pool.txs[tx.Hash()]; !ok {
|
|
|
|
pool.txs[tx.Hash()] = tx
|
|
|
|
// Notify the subscribers
|
|
|
|
pool.eventMux.Post(TxPreEvent{tx})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-21 23:01:04 +03:00
|
|
|
// check queue will attempt to insert
|
|
|
|
func (pool *TxPool) checkQueue() {
|
|
|
|
pool.mu.Lock()
|
|
|
|
defer pool.mu.Unlock()
|
|
|
|
|
|
|
|
for address, txs := range pool.queue {
|
|
|
|
sort.Sort(types.TxByNonce{txs})
|
|
|
|
|
|
|
|
var (
|
|
|
|
nonce = pool.currentState().GetNonce(address)
|
|
|
|
start int
|
|
|
|
)
|
|
|
|
// Clean up the transactions first and determine the start of the nonces
|
|
|
|
for _, tx := range txs {
|
|
|
|
if tx.Nonce() >= nonce {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
start++
|
|
|
|
}
|
|
|
|
pool.queue[address] = txs[start:]
|
|
|
|
|
|
|
|
// expected nonce
|
|
|
|
enonce := nonce
|
|
|
|
for _, tx := range pool.queue[address] {
|
|
|
|
// If the expected nonce does not match up with the next one
|
|
|
|
// (i.e. a nonce gap), we stop the loop
|
|
|
|
if enonce != tx.Nonce() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
enonce++
|
|
|
|
|
2015-04-22 00:20:27 +03:00
|
|
|
pool.addTx(tx)
|
2015-04-21 23:01:04 +03:00
|
|
|
}
|
|
|
|
//pool.queue[address] = txs[i:]
|
|
|
|
// delete the entire queue entry if it's empty. There's no need to keep it
|
|
|
|
if len(pool.queue[address]) == 0 {
|
|
|
|
delete(pool.queue, address)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|