2014-02-14 22:56:09 +00:00
|
|
|
package ethchain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"container/list"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
|
|
|
"github.com/ethereum/eth-go/ethwire"
|
|
|
|
"log"
|
|
|
|
"math/big"
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
txPoolQueueSize = 50
|
|
|
|
)
|
|
|
|
|
|
|
|
type TxPoolHook chan *Transaction
|
2014-02-25 10:22:27 +00:00
|
|
|
type TxMsgTy byte
|
|
|
|
|
|
|
|
const (
|
|
|
|
TxPre = iota
|
|
|
|
TxPost
|
|
|
|
)
|
|
|
|
|
|
|
|
type TxMsg struct {
|
|
|
|
Tx *Transaction
|
|
|
|
Type TxMsgTy
|
|
|
|
}
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
func FindTx(pool *list.List, finder func(*Transaction, *list.Element) bool) *Transaction {
|
|
|
|
for e := pool.Front(); e != nil; e = e.Next() {
|
|
|
|
if tx, ok := e.Value.(*Transaction); ok {
|
|
|
|
if finder(tx, e) {
|
|
|
|
return tx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-02-23 00:57:04 +00:00
|
|
|
type TxProcessor interface {
|
|
|
|
ProcessTransaction(tx *Transaction)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
// independently read without needing access to the actual pool. If the
|
|
|
|
// pool is being drained or synced for whatever reason the transactions
|
|
|
|
// will simple queue up and handled when the mutex is freed.
|
|
|
|
type TxPool struct {
|
2014-03-05 09:42:51 +00:00
|
|
|
Ethereum EthManager
|
2014-02-14 22:56:09 +00:00
|
|
|
// The mutex for accessing the Tx pool.
|
|
|
|
mutex sync.Mutex
|
|
|
|
// Queueing channel for reading and writing incoming
|
|
|
|
// transactions to
|
|
|
|
queueChan chan *Transaction
|
|
|
|
// Quiting channel
|
|
|
|
quit chan bool
|
|
|
|
// The actual pool
|
|
|
|
pool *list.List
|
|
|
|
|
2014-02-23 00:57:04 +00:00
|
|
|
SecondaryProcessor TxProcessor
|
2014-02-25 10:22:27 +00:00
|
|
|
|
|
|
|
subscribers []chan TxMsg
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 09:42:51 +00:00
|
|
|
func NewTxPool(ethereum EthManager) *TxPool {
|
2014-02-14 22:56:09 +00:00
|
|
|
return &TxPool{
|
|
|
|
//server: s,
|
|
|
|
mutex: sync.Mutex{},
|
|
|
|
pool: list.New(),
|
|
|
|
queueChan: make(chan *Transaction, txPoolQueueSize),
|
|
|
|
quit: make(chan bool),
|
2014-03-05 09:42:51 +00:00
|
|
|
Ethereum: ethereum,
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blocking function. Don't use directly. Use QueueTransaction instead
|
|
|
|
func (pool *TxPool) addTransaction(tx *Transaction) {
|
|
|
|
pool.mutex.Lock()
|
|
|
|
pool.pool.PushBack(tx)
|
|
|
|
pool.mutex.Unlock()
|
|
|
|
|
|
|
|
// Broadcast the transaction to the rest of the peers
|
2014-03-05 09:42:51 +00:00
|
|
|
pool.Ethereum.Broadcast(ethwire.MsgTxTy, []interface{}{tx.RlpData()})
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Process transaction validates the Tx and processes funds from the
|
|
|
|
// sender to the recipient.
|
2014-04-09 13:08:10 +00:00
|
|
|
func (pool *TxPool) ProcessTransaction(tx *Transaction, block *Block, toContract bool) (err error) {
|
2014-04-30 15:43:48 +00:00
|
|
|
/*
|
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
log.Println(r)
|
|
|
|
err = fmt.Errorf("%v", r)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
*/
|
2014-02-14 22:56:09 +00:00
|
|
|
// Get the sender
|
2014-04-30 15:43:48 +00:00
|
|
|
sender := block.state.GetAccount(tx.Sender())
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-04-23 22:00:50 +00:00
|
|
|
if sender.Nonce != tx.Nonce {
|
|
|
|
return fmt.Errorf("[TXPL] Invalid account nonce, state nonce is %d transaction nonce is %d instead", sender.Nonce, tx.Nonce)
|
|
|
|
}
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
// Make sure there's enough in the sender's account. Having insufficient
|
|
|
|
// funds won't invalidate this transaction but simple ignores it.
|
|
|
|
totAmount := new(big.Int).Add(tx.Value, new(big.Int).Mul(TxFee, TxFeeRat))
|
|
|
|
if sender.Amount.Cmp(totAmount) < 0 {
|
2014-04-23 09:51:04 +00:00
|
|
|
return fmt.Errorf("[TXPL] Insufficient amount in sender's (%x) account", tx.Sender())
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the receiver
|
2014-04-30 15:43:48 +00:00
|
|
|
receiver := block.state.GetAccount(tx.Recipient)
|
2014-02-18 00:31:51 +00:00
|
|
|
sender.Nonce += 1
|
|
|
|
|
|
|
|
// Send Tx to self
|
|
|
|
if bytes.Compare(tx.Recipient, tx.Sender()) == 0 {
|
|
|
|
// Subtract the fee
|
2014-04-16 02:06:51 +00:00
|
|
|
sender.SubAmount(new(big.Int).Mul(TxFee, TxFeeRat))
|
2014-02-18 00:31:51 +00:00
|
|
|
} else {
|
|
|
|
// Subtract the amount from the senders account
|
2014-04-16 02:06:51 +00:00
|
|
|
sender.SubAmount(totAmount)
|
2014-02-18 00:31:51 +00:00
|
|
|
|
|
|
|
// Add the amount to receivers account which should conclude this transaction
|
2014-04-16 02:06:51 +00:00
|
|
|
receiver.AddAmount(tx.Value)
|
2014-02-18 00:31:51 +00:00
|
|
|
|
2014-04-16 02:06:51 +00:00
|
|
|
block.state.UpdateStateObject(receiver)
|
2014-02-18 00:31:51 +00:00
|
|
|
}
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-04-16 02:06:51 +00:00
|
|
|
block.state.UpdateStateObject(sender)
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-02-25 10:22:27 +00:00
|
|
|
log.Printf("[TXPL] Processed Tx %x\n", tx.Hash())
|
|
|
|
|
|
|
|
pool.notifySubscribers(TxPost, tx)
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) ValidateTransaction(tx *Transaction) error {
|
|
|
|
// Get the last block so we can retrieve the sender and receiver from
|
|
|
|
// the merkle trie
|
2014-03-05 09:42:51 +00:00
|
|
|
block := pool.Ethereum.BlockChain().CurrentBlock
|
2014-02-14 22:56:09 +00:00
|
|
|
// Something has gone horribly wrong if this happens
|
|
|
|
if block == nil {
|
2014-03-20 10:20:29 +00:00
|
|
|
return errors.New("[TXPL] No last block on the block chain")
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the sender
|
2014-03-05 09:42:51 +00:00
|
|
|
accountState := pool.Ethereum.StateManager().GetAddrState(tx.Sender())
|
2014-04-16 02:06:51 +00:00
|
|
|
sender := accountState.Object
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
totAmount := new(big.Int).Add(tx.Value, new(big.Int).Mul(TxFee, TxFeeRat))
|
|
|
|
// Make sure there's enough in the sender's account. Having insufficient
|
|
|
|
// funds won't invalidate this transaction but simple ignores it.
|
|
|
|
if sender.Amount.Cmp(totAmount) < 0 {
|
2014-03-20 10:20:29 +00:00
|
|
|
return fmt.Errorf("[TXPL] Insufficient amount in sender's (%x) account", tx.Sender())
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Increment the nonce making each tx valid only once to prevent replay
|
|
|
|
// attacks
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) queueHandler() {
|
|
|
|
out:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case tx := <-pool.queueChan:
|
|
|
|
hash := tx.Hash()
|
|
|
|
foundTx := FindTx(pool.pool, func(tx *Transaction, e *list.Element) bool {
|
|
|
|
return bytes.Compare(tx.Hash(), hash) == 0
|
|
|
|
})
|
|
|
|
|
|
|
|
if foundTx != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate the transaction
|
|
|
|
err := pool.ValidateTransaction(tx)
|
|
|
|
if err != nil {
|
|
|
|
if ethutil.Config.Debug {
|
|
|
|
log.Println("Validating Tx failed", err)
|
|
|
|
}
|
|
|
|
} else {
|
2014-04-30 15:13:32 +00:00
|
|
|
// Call blocking version.
|
2014-02-14 22:56:09 +00:00
|
|
|
pool.addTransaction(tx)
|
2014-03-10 10:53:02 +00:00
|
|
|
|
|
|
|
// Notify the subscribers
|
|
|
|
pool.Ethereum.Reactor().Post("newTx", tx)
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-02-25 10:22:27 +00:00
|
|
|
// Notify the subscribers
|
|
|
|
pool.notifySubscribers(TxPre, tx)
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
case <-pool.quit:
|
|
|
|
break out
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) QueueTransaction(tx *Transaction) {
|
|
|
|
pool.queueChan <- tx
|
|
|
|
}
|
|
|
|
|
2014-03-28 10:20:07 +00:00
|
|
|
func (pool *TxPool) CurrentTransactions() []*Transaction {
|
2014-02-14 22:56:09 +00:00
|
|
|
pool.mutex.Lock()
|
|
|
|
defer pool.mutex.Unlock()
|
|
|
|
|
|
|
|
txList := make([]*Transaction, pool.pool.Len())
|
|
|
|
i := 0
|
|
|
|
for e := pool.pool.Front(); e != nil; e = e.Next() {
|
|
|
|
if tx, ok := e.Value.(*Transaction); ok {
|
|
|
|
txList[i] = tx
|
|
|
|
}
|
|
|
|
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
2014-03-28 10:20:07 +00:00
|
|
|
return txList
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) Flush() []*Transaction {
|
|
|
|
txList := pool.CurrentTransactions()
|
|
|
|
|
2014-02-14 22:56:09 +00:00
|
|
|
// Recreate a new list all together
|
|
|
|
// XXX Is this the fastest way?
|
|
|
|
pool.pool = list.New()
|
|
|
|
|
|
|
|
return txList
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) Start() {
|
|
|
|
go pool.queueHandler()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) Stop() {
|
|
|
|
close(pool.quit)
|
|
|
|
|
|
|
|
pool.Flush()
|
2014-03-17 09:33:03 +00:00
|
|
|
|
|
|
|
log.Println("[TXP] Stopped")
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
2014-02-25 10:22:27 +00:00
|
|
|
|
|
|
|
func (pool *TxPool) Subscribe(channel chan TxMsg) {
|
|
|
|
pool.subscribers = append(pool.subscribers, channel)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pool *TxPool) notifySubscribers(ty TxMsgTy, tx *Transaction) {
|
|
|
|
msg := TxMsg{Type: ty, Tx: tx}
|
|
|
|
for _, subscriber := range pool.subscribers {
|
|
|
|
subscriber <- msg
|
|
|
|
}
|
|
|
|
}
|