transaction_pool.go 12.0 KB
Newer Older
O
obscuren 已提交
1
package core
O
obscuren 已提交
2 3

import (
4
	"errors"
O
obscuren 已提交
5
	"fmt"
O
obscuren 已提交
6
	"math/big"
7
	"sort"
8
	"sync"
9

O
obscuren 已提交
10
	"github.com/ethereum/go-ethereum/common"
O
obscuren 已提交
11
	"github.com/ethereum/go-ethereum/core/state"
12
	"github.com/ethereum/go-ethereum/core/types"
O
obscuren 已提交
13
	"github.com/ethereum/go-ethereum/event"
O
obscuren 已提交
14
	"github.com/ethereum/go-ethereum/logger"
O
obscuren 已提交
15
	"github.com/ethereum/go-ethereum/logger/glog"
O
obscuren 已提交
16 17
)

18
var (
19
	// Transaction Pool Errors
O
obscuren 已提交
20
	ErrInvalidSender      = errors.New("Invalid sender")
21
	ErrNonce              = errors.New("Nonce too low")
22
	ErrCheap              = errors.New("Gas price too low for acceptance")
23
	ErrBalance            = errors.New("Insufficient balance")
24
	ErrNonExistentAccount = errors.New("Account does not exist or account balance too low")
25
	ErrInsufficientFunds  = errors.New("Insufficient funds for gas * price + value")
O
obscuren 已提交
26
	ErrIntrinsicGas       = errors.New("Intrinsic gas too low")
27
	ErrGasLimit           = errors.New("Exceeds block gas limit")
28
	ErrNegativeValue      = errors.New("Negative value")
29
)
Z
zelig 已提交
30

31
const (
32
	maxQueued = 64 // max limit of queued txs per address
33 34
)

35 36
type stateFn func() *state.StateDB

37 38 39 40 41 42 43
// TxPool contains all currently known transactions. Transactions
// enter the pool when they are received from the network or submitted
// locally. They exit the pool when they are included in the blockchain.
//
// The pool separates processable transactions (which can be applied to the
// current state) and future transactions. Transactions move between those
// two states over time as they are received and processed.
O
obscuren 已提交
44
type TxPool struct {
45 46
	quit         chan bool // Quiting channel
	currentState stateFn   // The state function which will allow us to do some pre checkes
47
	pendingState *state.ManagedState
48
	gasLimit     func() *big.Int // The current gas limit function callback
49
	minGasPrice  *big.Int
50
	eventMux     *event.TypeMux
51
	events       event.Subscription
O
obscuren 已提交
52

O
obscuren 已提交
53 54 55
	mu      sync.RWMutex
	pending map[common.Hash]*types.Transaction // processable transactions
	queue   map[common.Address]map[common.Hash]*types.Transaction
O
obscuren 已提交
56 57
}

58
func NewTxPool(eventMux *event.TypeMux, currentStateFn stateFn, gasLimitFn func() *big.Int) *TxPool {
59
	pool := &TxPool{
O
obscuren 已提交
60
		pending:      make(map[common.Hash]*types.Transaction),
61 62 63 64 65
		queue:        make(map[common.Address]map[common.Hash]*types.Transaction),
		quit:         make(chan bool),
		eventMux:     eventMux,
		currentState: currentStateFn,
		gasLimit:     gasLimitFn,
66
		minGasPrice:  new(big.Int),
67
		pendingState: state.ManageState(currentStateFn()),
68
		events:       eventMux.Subscribe(ChainHeadEvent{}, GasPriceChanged{}),
O
obscuren 已提交
69
	}
70 71 72
	go pool.eventLoop()

	return pool
73 74
}

75
func (pool *TxPool) eventLoop() {
O
obscuren 已提交
76 77 78
	// Track chain events. When a chain events occurs (new chain canon block)
	// we need to know the new state. The new state will help us determine
	// the nonces in the managed state
79
	for ev := range pool.events.Chan() {
80 81
		pool.mu.Lock()

82
		switch ev := ev.(type) {
83
		case ChainHeadEvent:
84 85 86 87
			pool.resetState()
		case GasPriceChanged:
			pool.minGasPrice = ev.Price
		}
O
obscuren 已提交
88

89
		pool.mu.Unlock()
90
	}
O
obscuren 已提交
91 92
}

93
func (pool *TxPool) resetState() {
94
	pool.pendingState = state.ManageState(pool.currentState())
95 96 97 98 99 100 101 102 103 104 105 106 107

	// validate the pool of pending transactions, this will remove
	// any transactions that have been included in the block or
	// have been invalidated because of another transaction (e.g.
	// higher gas price)
	pool.validatePool()

	// Loop over the pending transactions and base the nonce of the new
	// pending transaction set.
	for _, tx := range pool.pending {
		if addr, err := tx.From(); err == nil {
			// Set the nonce. Transaction nonce can never be lower
			// than the state nonce; validatePool took care of that.
108 109 110
			if pool.pendingState.GetNonce(addr) < tx.Nonce() {
				pool.pendingState.SetNonce(addr, tx.Nonce())
			}
111 112 113 114 115 116 117 118
		}
	}

	// Check the queue and move transactions over to the pending if possible
	// or remove those that have become invalid
	pool.checkQueue()
}

119 120 121 122 123 124 125 126 127 128
func (pool *TxPool) Stop() {
	close(pool.quit)
	pool.events.Unsubscribe()
	glog.V(logger.Info).Infoln("TX Pool stopped")
}

func (pool *TxPool) State() *state.ManagedState {
	pool.mu.RLock()
	defer pool.mu.RUnlock()

129
	return pool.pendingState
130 131
}

132 133 134 135 136 137 138 139 140 141 142
func (pool *TxPool) Stats() (pending int, queued int) {
	pool.mu.RLock()
	defer pool.mu.RUnlock()

	pending = len(pool.pending)
	for _, txs := range pool.queue {
		queued += len(txs)
	}
	return
}

143 144 145
// validateTx checks whether a transaction is valid according
// to the consensus rules.
func (pool *TxPool) validateTx(tx *types.Transaction) error {
146
	// Validate sender
O
obscuren 已提交
147 148 149 150 151
	var (
		from common.Address
		err  error
	)

152 153 154 155 156
	// Drop transactions under our own minimal accepted gas price
	if pool.minGasPrice.Cmp(tx.GasPrice()) > 0 {
		return ErrCheap
	}

O
obscuren 已提交
157 158
	// Validate the transaction sender and it's sig. Throw
	// if the from fields is invalid.
O
obscuren 已提交
159
	if from, err = tx.From(); err != nil {
F
Felix Lange 已提交
160
		return ErrInvalidSender
O
obscuren 已提交
161
	}
O
obscuren 已提交
162

163
	// Make sure the account exist. Non existent accounts
O
obscuren 已提交
164
	// haven't got funds and well therefor never pass.
O
obscuren 已提交
165 166
	if !pool.currentState().HasAccount(from) {
		return ErrNonExistentAccount
167
	}
O
obscuren 已提交
168

169 170 171 172 173
	// Last but not least check for nonce errors
	if pool.currentState().GetNonce(from) > tx.Nonce() {
		return ErrNonce
	}

O
obscuren 已提交
174 175
	// Check the transaction doesn't exceed the current
	// block limit gas.
176
	if pool.gasLimit().Cmp(tx.Gas()) < 0 {
177 178 179
		return ErrGasLimit
	}

O
obscuren 已提交
180 181 182
	// Transactions can't be negative. This may never happen
	// using RLP decoded transactions but may occur if you create
	// a transaction using the RPC for example.
183
	if tx.Value().Cmp(common.Big0) < 0 {
184 185 186
		return ErrNegativeValue
	}

O
obscuren 已提交
187 188
	// Transactor should have enough funds to cover the costs
	// cost == V + GP * GL
189
	if pool.currentState().GetBalance(from).Cmp(tx.Cost()) < 0 {
O
obscuren 已提交
190 191 192
		return ErrInsufficientFunds
	}

O
obscuren 已提交
193
	// Should supply enough intrinsic gas
F
Felix Lange 已提交
194
	if tx.Gas().Cmp(IntrinsicGas(tx.Data())) < 0 {
O
obscuren 已提交
195 196 197 198
		return ErrIntrinsicGas
	}

	return nil
O
obscuren 已提交
199 200
}

201
// validate and queue transactions.
202
func (self *TxPool) add(tx *types.Transaction) error {
203
	hash := tx.Hash()
204

O
obscuren 已提交
205
	if self.pending[hash] != nil {
206
		return fmt.Errorf("Known transaction (%x)", hash[:4])
207
	}
208
	err := self.validateTx(tx)
209 210 211
	if err != nil {
		return err
	}
212
	self.queueTx(hash, tx)
O
obscuren 已提交
213 214

	if glog.V(logger.Debug) {
215 216 217 218 219 220 221 222 223 224 225
		var toname string
		if to := tx.To(); to != nil {
			toname = common.Bytes2Hex(to[:4])
		} else {
			toname = "[NEW_CONTRACT]"
		}
		// we can ignore the error here because From is
		// verified in ValidateTransaction.
		f, _ := tx.From()
		from := common.Bytes2Hex(f[:4])
		glog.Infof("(t) %x => %s (%v) %x\n", from, toname, tx.Value, hash)
O
obscuren 已提交
226
	}
227 228 229 230

	return nil
}

231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
// queueTx will queue an unknown transaction
func (self *TxPool) queueTx(hash common.Hash, tx *types.Transaction) {
	from, _ := tx.From() // already validated
	if self.queue[from] == nil {
		self.queue[from] = make(map[common.Hash]*types.Transaction)
	}
	self.queue[from][hash] = tx
}

// addTx will add a transaction to the pending (processable queue) list of transactions
func (pool *TxPool) addTx(hash common.Hash, addr common.Address, tx *types.Transaction) {
	if _, ok := pool.pending[hash]; !ok {
		pool.pending[hash] = tx

		// Increment the nonce on the pending state. This can only happen if
		// the nonce is +1 to the previous one.
247
		pool.pendingState.SetNonce(addr, tx.Nonce()+1)
248 249 250 251 252 253 254
		// Notify the subscribers. This event is posted in a goroutine
		// because it's possible that somewhere during the post "Remove transaction"
		// gets called which will then wait for the global tx pool lock and deadlock.
		go pool.eventMux.Post(TxPreEvent{tx})
	}
}

255
// Add queues a single transaction in the pool if it is valid.
256
func (self *TxPool) Add(tx *types.Transaction) (err error) {
257 258
	self.mu.Lock()
	defer self.mu.Unlock()
259

260 261 262 263 264 265 266
	err = self.add(tx)
	if err == nil {
		// check and validate the queueue
		self.checkQueue()
	}

	return
267
}
268

269
// AddTransactions attempts to queue all valid transactions in txs.
Z
zelig 已提交
270
func (self *TxPool) AddTransactions(txs []*types.Transaction) {
271 272 273
	self.mu.Lock()
	defer self.mu.Unlock()

Z
zelig 已提交
274
	for _, tx := range txs {
275
		if err := self.add(tx); err != nil {
276
			glog.V(logger.Debug).Infoln("tx error:", err)
Z
zelig 已提交
277
		} else {
278
			h := tx.Hash()
O
obscuren 已提交
279
			glog.V(logger.Debug).Infof("tx %x\n", h[:4])
Z
zelig 已提交
280 281
		}
	}
282 283 284

	// check and validate the queueue
	self.checkQueue()
Z
zelig 已提交
285 286
}

287 288
// GetTransaction returns a transaction if it is contained in the pool
// and nil otherwise.
289 290
func (tp *TxPool) GetTransaction(hash common.Hash) *types.Transaction {
	// check the txs first
O
obscuren 已提交
291
	if tx, ok := tp.pending[hash]; ok {
292 293 294 295
		return tx
	}
	// check queue
	for _, txs := range tp.queue {
296 297
		if tx, ok := txs[hash]; ok {
			return tx
298 299 300 301 302
		}
	}
	return nil
}

303
// GetTransactions returns all currently processable transactions.
304
// The returned slice may be modified by the caller.
O
Merge  
obscuren 已提交
305
func (self *TxPool) GetTransactions() (txs types.Transactions) {
306 307 308 309 310 311 312
	self.mu.Lock()
	defer self.mu.Unlock()

	// check queue first
	self.checkQueue()
	// invalidate any txs
	self.validatePool()
313

O
obscuren 已提交
314
	txs = make(types.Transactions, len(self.pending))
O
obscuren 已提交
315
	i := 0
O
obscuren 已提交
316
	for _, tx := range self.pending {
O
Merge  
obscuren 已提交
317
		txs[i] = tx
O
obscuren 已提交
318
		i++
O
Merge  
obscuren 已提交
319
	}
320
	return txs
321 322
}

323
// GetQueuedTransactions returns all non-processable transactions.
324 325 326 327
func (self *TxPool) GetQueuedTransactions() types.Transactions {
	self.mu.RLock()
	defer self.mu.RUnlock()

328 329 330 331 332
	var ret types.Transactions
	for _, txs := range self.queue {
		for _, tx := range txs {
			ret = append(ret, tx)
		}
333
	}
334 335
	sort.Sort(types.TxByNonce{ret})
	return ret
336 337
}

338
// RemoveTransactions removes all given transactions from the pool.
339
func (self *TxPool) RemoveTransactions(txs types.Transactions) {
340 341
	self.mu.Lock()
	defer self.mu.Unlock()
342
	for _, tx := range txs {
O
obscuren 已提交
343
		self.removeTx(tx.Hash())
344 345 346
	}
}

347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
func (pool *TxPool) removeTx(hash common.Hash) {
	// delete from pending pool
	delete(pool.pending, hash)
	// delete from queue
	for address, txs := range pool.queue {
		if _, ok := txs[hash]; ok {
			if len(txs) == 1 {
				// if only one tx, remove entire address entry.
				delete(pool.queue, address)
			} else {
				delete(txs, hash)
			}
			break
		}
	}
}

364
// checkQueue moves transactions that have become processable to main pool.
365
func (pool *TxPool) checkQueue() {
366
	state := pool.pendingState
367

368
	var addq txQueue
369
	for address, txs := range pool.queue {
370 371 372 373
		// guessed nonce is the nonce currently kept by the tx pool (pending state)
		guessedNonce := state.GetNonce(address)
		// true nonce is the nonce known by the last state
		trueNonce := pool.currentState().GetNonce(address)
374 375
		addq := addq[:0]
		for hash, tx := range txs {
376
			if tx.Nonce() < trueNonce {
377 378 379 380 381
				// Drop queued transactions whose nonce is lower than
				// the account nonce because they have been processed.
				delete(txs, hash)
			} else {
				// Collect the remaining transactions for the next pass.
382
				addq = append(addq, txQueueEntry{hash, address, tx})
383 384
			}
		}
385 386 387
		// Find the next consecutive nonce range starting at the
		// current account nonce.
		sort.Sort(addq)
388 389 390 391 392 393
		for i, e := range addq {
			// start deleting the transactions from the queue if they exceed the limit
			if i > maxQueued {
				delete(pool.queue[address], e.hash)
				continue
			}
394

395
			if e.Nonce() > guessedNonce {
396 397 398 399 400 401 402 403
				if len(addq)-i > maxQueued {
					if glog.V(logger.Debug) {
						glog.Infof("Queued tx limit exceeded for %s. Tx %s removed\n", common.PP(address[:]), common.PP(e.hash[:]))
					}
					for j := i + maxQueued; j < len(addq); j++ {
						delete(txs, addq[j].hash)
					}
				}
404 405
				break
			}
406
			delete(txs, e.hash)
407
			pool.addTx(e.hash, address, e.Transaction)
408
		}
409 410
		// Delete the entire queue entry if it became empty.
		if len(txs) == 0 {
411 412 413 414
			delete(pool.queue, address)
		}
	}
}
415

416
// validatePool removes invalid and processed transactions from the main pool.
417
func (pool *TxPool) validatePool() {
418
	state := pool.currentState()
O
obscuren 已提交
419
	for hash, tx := range pool.pending {
420 421 422
		from, _ := tx.From() // err already checked
		// perform light nonce validation
		if state.GetNonce(from) > tx.Nonce() {
O
obscuren 已提交
423
			if glog.V(logger.Core) {
424
				glog.Infof("removed tx (%x) from pool: low tx nonce\n", hash[:4])
425
			}
O
obscuren 已提交
426
			delete(pool.pending, hash)
427 428 429
		}
	}
}
430 431 432 433 434

type txQueue []txQueueEntry

type txQueueEntry struct {
	hash common.Hash
435
	addr common.Address
436 437 438 439 440
	*types.Transaction
}

func (q txQueue) Len() int           { return len(q) }
func (q txQueue) Swap(i, j int)      { q[i], q[j] = q[j], q[i] }
441
func (q txQueue) Less(i, j int) bool { return q[i].Nonce() < q[j].Nonce() }