2018-06-04 11:09:16 +00:00
|
|
|
// Copyright 2018 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
2020-07-27 12:15:48 +00:00
|
|
|
"sync"
|
|
|
|
|
2021-09-12 07:50:17 +00:00
|
|
|
libcommon "github.com/ledgerwatch/erigon-lib/common"
|
2021-06-13 16:41:39 +00:00
|
|
|
"github.com/ledgerwatch/erigon/common/debug"
|
2021-05-20 18:25:53 +00:00
|
|
|
"github.com/ledgerwatch/erigon/core/types"
|
2018-06-04 11:09:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// txSenderCacherRequest is a request for recovering transaction senders with a
|
|
|
|
// specific signature scheme and caching it into the transactions themselves.
|
|
|
|
//
|
|
|
|
// The inc field defines the number of transactions to skip after each recovery,
|
|
|
|
// which is used to feed the same underlying input array to different threads but
|
|
|
|
// ensure they process the early transactions fast.
|
|
|
|
type txSenderCacherRequest struct {
|
|
|
|
signer types.Signer
|
2021-04-22 17:11:37 +00:00
|
|
|
txs []types.Transaction
|
2018-06-04 11:09:16 +00:00
|
|
|
inc int
|
|
|
|
}
|
|
|
|
|
2020-07-16 13:27:24 +00:00
|
|
|
// TxSenderCacher is a helper structure to concurrently ecrecover transaction
|
2018-06-04 11:09:16 +00:00
|
|
|
// senders from digital signatures on background threads.
|
2020-07-16 13:27:24 +00:00
|
|
|
type TxSenderCacher struct {
|
2018-06-04 11:09:16 +00:00
|
|
|
threads int
|
|
|
|
tasks chan *txSenderCacherRequest
|
2020-07-16 13:27:24 +00:00
|
|
|
exitCh chan struct{}
|
2020-07-27 12:15:48 +00:00
|
|
|
wg *sync.WaitGroup
|
2018-06-04 11:09:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// newTxSenderCacher creates a new transaction sender background cacher and starts
|
2018-08-13 08:40:52 +00:00
|
|
|
// as many processing goroutines as allowed by the GOMAXPROCS on construction.
|
2020-07-16 13:27:24 +00:00
|
|
|
func NewTxSenderCacher(threads int) *TxSenderCacher {
|
|
|
|
cacher := &TxSenderCacher{
|
2018-06-04 11:09:16 +00:00
|
|
|
tasks: make(chan *txSenderCacherRequest, threads),
|
|
|
|
threads: threads,
|
2020-07-16 13:27:24 +00:00
|
|
|
exitCh: make(chan struct{}),
|
2020-07-27 12:15:48 +00:00
|
|
|
wg: &sync.WaitGroup{},
|
2018-06-04 11:09:16 +00:00
|
|
|
}
|
2020-07-16 13:27:24 +00:00
|
|
|
|
2018-06-04 11:09:16 +00:00
|
|
|
for i := 0; i < threads; i++ {
|
2020-07-27 12:15:48 +00:00
|
|
|
cacher.wg.Add(1)
|
|
|
|
go func() {
|
2021-06-22 10:09:45 +00:00
|
|
|
defer debug.LogPanic()
|
2020-07-27 12:15:48 +00:00
|
|
|
defer cacher.wg.Done()
|
|
|
|
cacher.cache()
|
|
|
|
}()
|
2018-06-04 11:09:16 +00:00
|
|
|
}
|
|
|
|
return cacher
|
|
|
|
}
|
|
|
|
|
|
|
|
// cache is an infinite loop, caching transaction senders from various forms of
|
|
|
|
// data structures.
|
2020-07-16 13:27:24 +00:00
|
|
|
func (cacher *TxSenderCacher) cache() {
|
2018-06-04 11:09:16 +00:00
|
|
|
for task := range cacher.tasks {
|
2021-09-12 07:50:17 +00:00
|
|
|
if err := libcommon.Stopped(cacher.exitCh); err != nil {
|
2020-07-16 13:27:24 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-04 11:09:16 +00:00
|
|
|
for i := 0; i < len(task.txs); i += task.inc {
|
2021-04-22 17:11:37 +00:00
|
|
|
task.txs[i].Sender(task.signer)
|
2018-06-04 11:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-16 13:27:24 +00:00
|
|
|
func (cacher *TxSenderCacher) Close() {
|
2021-09-12 07:50:17 +00:00
|
|
|
libcommon.SafeClose(cacher.exitCh)
|
2020-07-16 13:27:24 +00:00
|
|
|
close(cacher.tasks)
|
2020-07-27 12:15:48 +00:00
|
|
|
cacher.wg.Wait()
|
2020-07-16 13:27:24 +00:00
|
|
|
}
|