2017-08-18 19:52:20 +00:00
|
|
|
// Copyright 2017 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/>.
|
2017-08-29 11:13:11 +00:00
|
|
|
|
2017-08-18 19:52:20 +00:00
|
|
|
package bloombits
|
|
|
|
|
|
|
|
import (
|
2017-09-06 08:12:53 +00:00
|
|
|
"bytes"
|
2017-10-24 13:19:09 +00:00
|
|
|
"context"
|
2017-08-29 11:13:11 +00:00
|
|
|
"errors"
|
|
|
|
"math"
|
|
|
|
"sort"
|
2017-08-18 19:52:20 +00:00
|
|
|
"sync"
|
2017-08-29 11:13:11 +00:00
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
2017-08-18 19:52:20 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common/bitutil"
|
2017-08-29 11:13:11 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2017-08-18 19:52:20 +00:00
|
|
|
)
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// bloomIndexes represents the bit indexes inside the bloom filter that belong
|
|
|
|
// to some key.
|
|
|
|
type bloomIndexes [3]uint
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// calcBloomIndexes returns the bloom filter bit indexes belonging to the given key.
|
|
|
|
func calcBloomIndexes(b []byte) bloomIndexes {
|
|
|
|
b = crypto.Keccak256(b)
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
var idxs bloomIndexes
|
|
|
|
for i := 0; i < len(idxs); i++ {
|
|
|
|
idxs[i] = (uint(b[2*i])<<8)&2047 + uint(b[2*i+1])
|
|
|
|
}
|
|
|
|
return idxs
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// partialMatches with a non-nil vector represents a section in which some sub-
|
|
|
|
// matchers have already found potential matches. Subsequent sub-matchers will
|
|
|
|
// binary AND their matches with this vector. If vector is nil, it represents a
|
|
|
|
// section to be processed by the first sub-matcher.
|
|
|
|
type partialMatches struct {
|
|
|
|
section uint64
|
|
|
|
bitset []byte
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// Retrieval represents a request for retrieval task assignments for a given
|
|
|
|
// bit with the given number of fetch elements, or a response for such a request.
|
|
|
|
// It can also have the actual results set to be used as a delivery data struct.
|
2017-10-25 09:18:44 +00:00
|
|
|
//
|
2023-09-29 07:52:22 +00:00
|
|
|
// The context and error fields are used by the light client to terminate matching
|
2018-07-24 08:24:27 +00:00
|
|
|
// early if an error is encountered on some path of the pipeline.
|
2017-08-29 11:13:11 +00:00
|
|
|
type Retrieval struct {
|
|
|
|
Bit uint
|
|
|
|
Sections []uint64
|
|
|
|
Bitsets [][]byte
|
2017-10-25 09:18:44 +00:00
|
|
|
|
|
|
|
Context context.Context
|
|
|
|
Error error
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// Matcher is a pipelined system of schedulers and logic matchers which perform
|
|
|
|
// binary AND/OR operations on the bit-streams, creating a stream of potential
|
|
|
|
// blocks to inspect for data content.
|
|
|
|
type Matcher struct {
|
|
|
|
sectionSize uint64 // Size of the data batches to filter on
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-09-06 00:33:10 +00:00
|
|
|
filters [][]bloomIndexes // Filter the system is matching for
|
2017-08-29 11:13:11 +00:00
|
|
|
schedulers map[uint]*scheduler // Retrieval schedulers for loading bloom bits
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
retrievers chan chan uint // Retriever processes waiting for bit allocations
|
|
|
|
counters chan chan uint // Retriever processes waiting for task count reports
|
|
|
|
retrievals chan chan *Retrieval // Retriever processes waiting for task allocations
|
|
|
|
deliveries chan *Retrieval // Retriever processes waiting for task response deliveries
|
|
|
|
|
2023-03-28 07:05:29 +00:00
|
|
|
running atomic.Bool // Atomic flag whether a session is live or not
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// NewMatcher creates a new pipeline for retrieving bloom bit streams and doing
|
2017-09-27 10:14:52 +00:00
|
|
|
// address and topic filtering on them. Setting a filter component to `nil` is
|
|
|
|
// allowed and will result in that filter rule being skipped (OR 0x11...1).
|
2017-09-06 00:33:10 +00:00
|
|
|
func NewMatcher(sectionSize uint64, filters [][][]byte) *Matcher {
|
|
|
|
// Create the matcher instance
|
2017-08-18 19:52:20 +00:00
|
|
|
m := &Matcher{
|
|
|
|
sectionSize: sectionSize,
|
2017-08-29 11:13:11 +00:00
|
|
|
schedulers: make(map[uint]*scheduler),
|
|
|
|
retrievers: make(chan chan uint),
|
|
|
|
counters: make(chan chan uint),
|
|
|
|
retrievals: make(chan chan *Retrieval),
|
|
|
|
deliveries: make(chan *Retrieval),
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-09-06 00:33:10 +00:00
|
|
|
// Calculate the bloom bit indexes for the groups we're interested in
|
|
|
|
m.filters = nil
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-09-06 00:33:10 +00:00
|
|
|
for _, filter := range filters {
|
2017-09-27 10:14:52 +00:00
|
|
|
// Gather the bit indexes of the filter rule, special casing the nil filter
|
|
|
|
if len(filter) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
2017-09-06 00:33:10 +00:00
|
|
|
bloomBits := make([]bloomIndexes, len(filter))
|
|
|
|
for i, clause := range filter {
|
2017-09-27 10:14:52 +00:00
|
|
|
if clause == nil {
|
|
|
|
bloomBits = nil
|
|
|
|
break
|
|
|
|
}
|
2017-09-06 00:33:10 +00:00
|
|
|
bloomBits[i] = calcBloomIndexes(clause)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-09-27 10:14:52 +00:00
|
|
|
// Accumulate the filter rules if no nil rule was within
|
|
|
|
if bloomBits != nil {
|
|
|
|
m.filters = append(m.filters, bloomBits)
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
// For every bit, create a scheduler to load/download the bit vectors
|
2017-09-06 00:33:10 +00:00
|
|
|
for _, bloomIndexLists := range m.filters {
|
2017-08-18 19:52:20 +00:00
|
|
|
for _, bloomIndexList := range bloomIndexLists {
|
|
|
|
for _, bloomIndex := range bloomIndexList {
|
2017-08-29 11:13:11 +00:00
|
|
|
m.addScheduler(bloomIndex)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-06 00:33:10 +00:00
|
|
|
return m
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// addScheduler adds a bit stream retrieval scheduler for the given bit index if
|
|
|
|
// it has not existed before. If the bit is already selected for filtering, the
|
|
|
|
// existing scheduler can be used.
|
|
|
|
func (m *Matcher) addScheduler(idx uint) {
|
|
|
|
if _, ok := m.schedulers[idx]; ok {
|
|
|
|
return
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
m.schedulers[idx] = newScheduler(idx)
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// Start starts the matching process and returns a stream of bloom matches in
|
|
|
|
// a given range of blocks. If there are no more matches in the range, the result
|
|
|
|
// channel is closed.
|
2017-10-24 13:19:09 +00:00
|
|
|
func (m *Matcher) Start(ctx context.Context, begin, end uint64, results chan uint64) (*MatcherSession, error) {
|
2017-08-29 11:13:11 +00:00
|
|
|
// Make sure we're not creating concurrent sessions
|
2023-03-28 07:05:29 +00:00
|
|
|
if m.running.Swap(true) {
|
2017-08-29 11:13:11 +00:00
|
|
|
return nil, errors.New("matcher already running")
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2023-03-28 07:05:29 +00:00
|
|
|
defer m.running.Store(false)
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// Initiate a new matching round
|
|
|
|
session := &MatcherSession{
|
|
|
|
matcher: m,
|
|
|
|
quit: make(chan struct{}),
|
2017-10-24 13:19:09 +00:00
|
|
|
ctx: ctx,
|
2017-08-29 11:13:11 +00:00
|
|
|
}
|
|
|
|
for _, scheduler := range m.schedulers {
|
|
|
|
scheduler.reset()
|
|
|
|
}
|
|
|
|
sink := m.run(begin, end, cap(results), session)
|
|
|
|
|
|
|
|
// Read the output from the result sink and deliver to the user
|
|
|
|
session.pend.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer session.pend.Done()
|
|
|
|
defer close(results)
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-session.quit:
|
|
|
|
return
|
|
|
|
|
|
|
|
case res, ok := <-sink:
|
|
|
|
// New match result found
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Calculate the first and last blocks of the section
|
|
|
|
sectionStart := res.section * m.sectionSize
|
|
|
|
|
|
|
|
first := sectionStart
|
|
|
|
if begin > first {
|
|
|
|
first = begin
|
|
|
|
}
|
|
|
|
last := sectionStart + m.sectionSize - 1
|
|
|
|
if end < last {
|
|
|
|
last = end
|
|
|
|
}
|
|
|
|
// Iterate over all the blocks in the section and return the matching ones
|
|
|
|
for i := first; i <= last; i++ {
|
2017-11-15 11:54:40 +00:00
|
|
|
// Skip the entire byte if no matches are found inside (and we're processing an entire byte!)
|
2017-08-29 11:13:11 +00:00
|
|
|
next := res.bitset[(i-sectionStart)/8]
|
|
|
|
if next == 0 {
|
2017-11-15 11:54:40 +00:00
|
|
|
if i%8 == 0 {
|
|
|
|
i += 7
|
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Some bit it set, do the actual submatching
|
|
|
|
if bit := 7 - i%8; next&(1<<bit) != 0 {
|
|
|
|
select {
|
|
|
|
case <-session.quit:
|
|
|
|
return
|
|
|
|
case results <- i:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return session, nil
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// run creates a daisy-chain of sub-matchers, one for the address set and one
|
|
|
|
// for each topic set, each sub-matcher receiving a section only if the previous
|
|
|
|
// ones have all found a potential match in one of the blocks of the section,
|
2018-07-24 08:24:27 +00:00
|
|
|
// then binary AND-ing its own matches and forwarding the result to the next one.
|
2017-08-29 11:13:11 +00:00
|
|
|
//
|
|
|
|
// The method starts feeding the section indexes into the first sub-matcher on a
|
|
|
|
// new goroutine and returns a sink channel receiving the results.
|
|
|
|
func (m *Matcher) run(begin, end uint64, buffer int, session *MatcherSession) chan *partialMatches {
|
|
|
|
// Create the source channel and feed section indexes into
|
|
|
|
source := make(chan *partialMatches, buffer)
|
|
|
|
|
|
|
|
session.pend.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer session.pend.Done()
|
|
|
|
defer close(source)
|
|
|
|
|
|
|
|
for i := begin / m.sectionSize; i <= end/m.sectionSize; i++ {
|
|
|
|
select {
|
|
|
|
case <-session.quit:
|
|
|
|
return
|
2017-09-06 08:12:53 +00:00
|
|
|
case source <- &partialMatches{i, bytes.Repeat([]byte{0xff}, int(m.sectionSize/8))}:
|
2017-08-29 11:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
// Assemble the daisy-chained filtering pipeline
|
|
|
|
next := source
|
|
|
|
dist := make(chan *request, buffer)
|
|
|
|
|
2017-09-06 00:33:10 +00:00
|
|
|
for _, bloom := range m.filters {
|
2017-08-29 11:13:11 +00:00
|
|
|
next = m.subMatch(next, dist, bloom, session)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
// Start the request distribution
|
|
|
|
session.pend.Add(1)
|
|
|
|
go m.distributor(dist, session)
|
|
|
|
|
|
|
|
return next
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// subMatch creates a sub-matcher that filters for a set of addresses or topics, binary OR-s those matches, then
|
2017-08-29 11:13:11 +00:00
|
|
|
// binary AND-s the result to the daisy-chain input (source) and forwards it to the daisy-chain output.
|
2017-08-18 19:52:20 +00:00
|
|
|
// The matches of each address/topic are calculated by fetching the given sections of the three bloom bit indexes belonging to
|
|
|
|
// that address/topic, and binary AND-ing those vectors together.
|
2017-08-29 11:13:11 +00:00
|
|
|
func (m *Matcher) subMatch(source chan *partialMatches, dist chan *request, bloom []bloomIndexes, session *MatcherSession) chan *partialMatches {
|
|
|
|
// Start the concurrent schedulers for each bit required by the bloom filter
|
|
|
|
sectionSources := make([][3]chan uint64, len(bloom))
|
|
|
|
sectionSinks := make([][3]chan []byte, len(bloom))
|
|
|
|
for i, bits := range bloom {
|
|
|
|
for j, bit := range bits {
|
|
|
|
sectionSources[i][j] = make(chan uint64, cap(source))
|
|
|
|
sectionSinks[i][j] = make(chan []byte, cap(source))
|
|
|
|
|
|
|
|
m.schedulers[bit].run(sectionSources[i][j], dist, sectionSinks[i][j], session.quit, &session.pend)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
process := make(chan *partialMatches, cap(source)) // entries from source are forwarded here after fetches have been initiated
|
|
|
|
results := make(chan *partialMatches, cap(source))
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
session.pend.Add(2)
|
2017-08-18 19:52:20 +00:00
|
|
|
go func() {
|
2017-08-29 11:13:11 +00:00
|
|
|
// Tear down the goroutine and terminate all source channels
|
|
|
|
defer session.pend.Done()
|
|
|
|
defer close(process)
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
for _, bloomSources := range sectionSources {
|
|
|
|
for _, bitSource := range bloomSources {
|
|
|
|
close(bitSource)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
// Read sections from the source channel and multiplex into all bit-schedulers
|
2017-08-18 19:52:20 +00:00
|
|
|
for {
|
|
|
|
select {
|
2017-08-29 11:13:11 +00:00
|
|
|
case <-session.quit:
|
2017-08-18 19:52:20 +00:00
|
|
|
return
|
2017-08-29 11:13:11 +00:00
|
|
|
|
|
|
|
case subres, ok := <-source:
|
|
|
|
// New subresult from previous link
|
2017-08-18 19:52:20 +00:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
// Multiplex the section index to all bit-schedulers
|
|
|
|
for _, bloomSources := range sectionSources {
|
|
|
|
for _, bitSource := range bloomSources {
|
2017-08-18 19:52:20 +00:00
|
|
|
select {
|
2017-08-29 11:13:11 +00:00
|
|
|
case <-session.quit:
|
2017-08-18 19:52:20 +00:00
|
|
|
return
|
2017-08-29 11:13:11 +00:00
|
|
|
case bitSource <- subres.section:
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
// Notify the processor that this section will become available
|
2017-08-18 19:52:20 +00:00
|
|
|
select {
|
2017-08-29 11:13:11 +00:00
|
|
|
case <-session.quit:
|
2017-08-18 19:52:20 +00:00
|
|
|
return
|
2017-08-29 11:13:11 +00:00
|
|
|
case process <- subres:
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
go func() {
|
2017-08-29 11:13:11 +00:00
|
|
|
// Tear down the goroutine and terminate the final sink channel
|
|
|
|
defer session.pend.Done()
|
|
|
|
defer close(results)
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// Read the source notifications and collect the delivered results
|
2017-08-18 19:52:20 +00:00
|
|
|
for {
|
|
|
|
select {
|
2017-08-29 11:13:11 +00:00
|
|
|
case <-session.quit:
|
2017-08-18 19:52:20 +00:00
|
|
|
return
|
2017-08-29 11:13:11 +00:00
|
|
|
|
|
|
|
case subres, ok := <-process:
|
|
|
|
// Notified of a section being retrieved
|
2017-08-18 19:52:20 +00:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
// Gather all the sub-results and merge them together
|
2017-08-18 19:52:20 +00:00
|
|
|
var orVector []byte
|
2017-08-29 11:13:11 +00:00
|
|
|
for _, bloomSinks := range sectionSinks {
|
2017-08-18 19:52:20 +00:00
|
|
|
var andVector []byte
|
2017-08-29 11:13:11 +00:00
|
|
|
for _, bitSink := range bloomSinks {
|
2017-08-18 19:52:20 +00:00
|
|
|
var data []byte
|
|
|
|
select {
|
2017-08-29 11:13:11 +00:00
|
|
|
case <-session.quit:
|
2017-08-18 19:52:20 +00:00
|
|
|
return
|
2017-08-29 11:13:11 +00:00
|
|
|
case data = <-bitSink:
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
if andVector == nil {
|
|
|
|
andVector = make([]byte, int(m.sectionSize/8))
|
|
|
|
copy(andVector, data)
|
|
|
|
} else {
|
|
|
|
bitutil.ANDBytes(andVector, andVector, data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if orVector == nil {
|
|
|
|
orVector = andVector
|
|
|
|
} else {
|
|
|
|
bitutil.ORBytes(orVector, orVector, andVector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if orVector == nil {
|
|
|
|
orVector = make([]byte, int(m.sectionSize/8))
|
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
if subres.bitset != nil {
|
|
|
|
bitutil.ANDBytes(orVector, orVector, subres.bitset)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
if bitutil.TestBytes(orVector) {
|
|
|
|
select {
|
2017-08-29 11:13:11 +00:00
|
|
|
case <-session.quit:
|
2017-08-18 19:52:20 +00:00
|
|
|
return
|
2017-08-29 11:13:11 +00:00
|
|
|
case results <- &partialMatches{subres.section, orVector}:
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2017-08-29 11:13:11 +00:00
|
|
|
return results
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// distributor receives requests from the schedulers and queues them into a set
|
|
|
|
// of pending requests, which are assigned to retrievers wanting to fulfil them.
|
|
|
|
func (m *Matcher) distributor(dist chan *request, session *MatcherSession) {
|
|
|
|
defer session.pend.Done()
|
|
|
|
|
|
|
|
var (
|
|
|
|
requests = make(map[uint][]uint64) // Per-bit list of section requests, ordered by section number
|
|
|
|
unallocs = make(map[uint]struct{}) // Bits with pending requests but not allocated to any retriever
|
|
|
|
retrievers chan chan uint // Waiting retrievers (toggled to nil if unallocs is empty)
|
2020-07-29 11:49:12 +00:00
|
|
|
allocs int // Number of active allocations to handle graceful shutdown requests
|
|
|
|
shutdown = session.quit // Shutdown request channel, will gracefully wait for pending requests
|
2017-08-29 11:13:11 +00:00
|
|
|
)
|
|
|
|
|
2023-09-29 07:52:22 +00:00
|
|
|
// assign is a helper method to try to assign a pending bit an actively
|
2017-08-29 11:13:11 +00:00
|
|
|
// listening servicer, or schedule it up for later when one arrives.
|
|
|
|
assign := func(bit uint) {
|
|
|
|
select {
|
|
|
|
case fetcher := <-m.retrievers:
|
|
|
|
allocs++
|
|
|
|
fetcher <- bit
|
|
|
|
default:
|
|
|
|
// No retrievers active, start listening for new ones
|
|
|
|
retrievers = m.retrievers
|
|
|
|
unallocs[bit] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-shutdown:
|
2020-07-29 11:49:12 +00:00
|
|
|
// Shutdown requested. No more retrievers can be allocated,
|
|
|
|
// but we still need to wait until all pending requests have returned.
|
|
|
|
shutdown = nil
|
2017-08-29 11:13:11 +00:00
|
|
|
if allocs == 0 {
|
2017-08-18 19:52:20 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
case req := <-dist:
|
|
|
|
// New retrieval request arrived to be distributed to some fetcher process
|
|
|
|
queue := requests[req.bit]
|
|
|
|
index := sort.Search(len(queue), func(i int) bool { return queue[i] >= req.section })
|
|
|
|
requests[req.bit] = append(queue[:index], append([]uint64{req.section}, queue[index:]...)...)
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// If it's a new bit and we have waiting fetchers, allocate to them
|
|
|
|
if len(queue) == 0 {
|
|
|
|
assign(req.bit)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
case fetcher := <-retrievers:
|
|
|
|
// New retriever arrived, find the lowest section-ed bit to assign
|
|
|
|
bit, best := uint(0), uint64(math.MaxUint64)
|
|
|
|
for idx := range unallocs {
|
|
|
|
if requests[idx][0] < best {
|
|
|
|
bit, best = idx, requests[idx][0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Stop tracking this bit (and alloc notifications if no more work is available)
|
|
|
|
delete(unallocs, bit)
|
|
|
|
if len(unallocs) == 0 {
|
|
|
|
retrievers = nil
|
|
|
|
}
|
|
|
|
allocs++
|
|
|
|
fetcher <- bit
|
|
|
|
|
|
|
|
case fetcher := <-m.counters:
|
|
|
|
// New task count request arrives, return number of items
|
|
|
|
fetcher <- uint(len(requests[<-fetcher]))
|
|
|
|
|
|
|
|
case fetcher := <-m.retrievals:
|
|
|
|
// New fetcher waiting for tasks to retrieve, assign
|
|
|
|
task := <-fetcher
|
|
|
|
if want := len(task.Sections); want >= len(requests[task.Bit]) {
|
|
|
|
task.Sections = requests[task.Bit]
|
|
|
|
delete(requests, task.Bit)
|
|
|
|
} else {
|
|
|
|
task.Sections = append(task.Sections[:0], requests[task.Bit][:want]...)
|
|
|
|
requests[task.Bit] = append(requests[task.Bit][:0], requests[task.Bit][want:]...)
|
|
|
|
}
|
|
|
|
fetcher <- task
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// If anything was left unallocated, try to assign to someone else
|
|
|
|
if len(requests[task.Bit]) > 0 {
|
|
|
|
assign(task.Bit)
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
case result := <-m.deliveries:
|
|
|
|
// New retrieval task response from fetcher, split out missing sections and
|
|
|
|
// deliver complete ones
|
|
|
|
var (
|
|
|
|
sections = make([]uint64, 0, len(result.Sections))
|
|
|
|
bitsets = make([][]byte, 0, len(result.Bitsets))
|
|
|
|
missing = make([]uint64, 0, len(result.Sections))
|
|
|
|
)
|
|
|
|
for i, bitset := range result.Bitsets {
|
|
|
|
if len(bitset) == 0 {
|
|
|
|
missing = append(missing, result.Sections[i])
|
|
|
|
continue
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
sections = append(sections, result.Sections[i])
|
|
|
|
bitsets = append(bitsets, bitset)
|
|
|
|
}
|
|
|
|
m.schedulers[result.Bit].deliver(sections, bitsets)
|
|
|
|
allocs--
|
|
|
|
|
|
|
|
// Reschedule missing sections and allocate bit if newly available
|
|
|
|
if len(missing) > 0 {
|
|
|
|
queue := requests[result.Bit]
|
|
|
|
for _, section := range missing {
|
|
|
|
index := sort.Search(len(queue), func(i int) bool { return queue[i] >= section })
|
|
|
|
queue = append(queue[:index], append([]uint64{section}, queue[index:]...)...)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
requests[result.Bit] = queue
|
|
|
|
|
|
|
|
if len(queue) == len(missing) {
|
|
|
|
assign(result.Bit)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
}
|
2020-07-29 11:49:12 +00:00
|
|
|
|
|
|
|
// End the session when all pending deliveries have arrived.
|
|
|
|
if shutdown == nil && allocs == 0 {
|
2017-08-18 19:52:20 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:13:11 +00:00
|
|
|
// MatcherSession is returned by a started matcher to be used as a terminator
|
|
|
|
// for the actively running matching operation.
|
|
|
|
type MatcherSession struct {
|
|
|
|
matcher *Matcher
|
|
|
|
|
2017-10-25 09:18:44 +00:00
|
|
|
closer sync.Once // Sync object to ensure we only ever close once
|
|
|
|
quit chan struct{} // Quit channel to request pipeline termination
|
|
|
|
|
2021-08-24 11:32:19 +00:00
|
|
|
ctx context.Context // Context used by the light client to abort filtering
|
|
|
|
err error // Global error to track retrieval failures deep in the chain
|
|
|
|
errLock sync.Mutex
|
2017-10-25 09:18:44 +00:00
|
|
|
|
|
|
|
pend sync.WaitGroup
|
2017-08-29 11:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close stops the matching process and waits for all subprocesses to terminate
|
|
|
|
// before returning. The timeout may be used for graceful shutdown, allowing the
|
|
|
|
// currently running retrievals to complete before this time.
|
2017-10-24 13:19:09 +00:00
|
|
|
func (s *MatcherSession) Close() {
|
2017-10-25 09:18:44 +00:00
|
|
|
s.closer.Do(func() {
|
|
|
|
// Signal termination and wait for all goroutines to tear down
|
|
|
|
close(s.quit)
|
|
|
|
s.pend.Wait()
|
|
|
|
})
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2017-10-25 09:18:44 +00:00
|
|
|
// Error returns any failure encountered during the matching session.
|
2017-10-24 13:19:09 +00:00
|
|
|
func (s *MatcherSession) Error() error {
|
2021-08-24 11:32:19 +00:00
|
|
|
s.errLock.Lock()
|
|
|
|
defer s.errLock.Unlock()
|
|
|
|
|
|
|
|
return s.err
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
|
|
|
|
2020-07-29 11:49:12 +00:00
|
|
|
// allocateRetrieval assigns a bloom bit index to a client process that can either
|
2018-07-24 08:24:27 +00:00
|
|
|
// immediately request and fetch the section contents assigned to this bit or wait
|
2017-08-29 11:13:11 +00:00
|
|
|
// a little while for more sections to be requested.
|
2020-07-29 11:49:12 +00:00
|
|
|
func (s *MatcherSession) allocateRetrieval() (uint, bool) {
|
2017-08-29 11:13:11 +00:00
|
|
|
fetcher := make(chan uint)
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-s.quit:
|
2017-08-18 19:52:20 +00:00
|
|
|
return 0, false
|
2017-08-29 11:13:11 +00:00
|
|
|
case s.matcher.retrievers <- fetcher:
|
|
|
|
bit, ok := <-fetcher
|
|
|
|
return bit, ok
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
|
2020-07-29 11:49:12 +00:00
|
|
|
// pendingSections returns the number of pending section retrievals belonging to
|
2017-08-29 11:13:11 +00:00
|
|
|
// the given bloom bit index.
|
2020-07-29 11:49:12 +00:00
|
|
|
func (s *MatcherSession) pendingSections(bit uint) int {
|
2017-08-29 11:13:11 +00:00
|
|
|
fetcher := make(chan uint)
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-s.quit:
|
|
|
|
return 0
|
|
|
|
case s.matcher.counters <- fetcher:
|
|
|
|
fetcher <- bit
|
|
|
|
return int(<-fetcher)
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-29 11:49:12 +00:00
|
|
|
// allocateSections assigns all or part of an already allocated bit-task queue
|
2017-08-29 11:13:11 +00:00
|
|
|
// to the requesting process.
|
2020-07-29 11:49:12 +00:00
|
|
|
func (s *MatcherSession) allocateSections(bit uint, count int) []uint64 {
|
2017-08-29 11:13:11 +00:00
|
|
|
fetcher := make(chan *Retrieval)
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-s.quit:
|
|
|
|
return nil
|
|
|
|
case s.matcher.retrievals <- fetcher:
|
|
|
|
task := &Retrieval{
|
|
|
|
Bit: bit,
|
|
|
|
Sections: make([]uint64, count),
|
|
|
|
}
|
|
|
|
fetcher <- task
|
|
|
|
return (<-fetcher).Sections
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2020-07-29 11:49:12 +00:00
|
|
|
// deliverSections delivers a batch of section bit-vectors for a specific bloom
|
2017-08-29 11:13:11 +00:00
|
|
|
// bit index to be injected into the processing pipeline.
|
2020-07-29 11:49:12 +00:00
|
|
|
func (s *MatcherSession) deliverSections(bit uint, sections []uint64, bitsets [][]byte) {
|
|
|
|
s.matcher.deliveries <- &Retrieval{Bit: bit, Sections: sections, Bitsets: bitsets}
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|
|
|
|
|
2018-07-24 08:24:27 +00:00
|
|
|
// Multiplex polls the matcher session for retrieval tasks and multiplexes it into
|
|
|
|
// the requested retrieval queue to be serviced together with other sessions.
|
2017-08-29 11:13:11 +00:00
|
|
|
//
|
|
|
|
// This method will block for the lifetime of the session. Even after termination
|
|
|
|
// of the session, any request in-flight need to be responded to! Empty responses
|
|
|
|
// are fine though in that case.
|
|
|
|
func (s *MatcherSession) Multiplex(batch int, wait time.Duration, mux chan chan *Retrieval) {
|
|
|
|
for {
|
|
|
|
// Allocate a new bloom bit index to retrieve data for, stopping when done
|
2020-07-29 11:49:12 +00:00
|
|
|
bit, ok := s.allocateRetrieval()
|
2017-08-29 11:13:11 +00:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Bit allocated, throttle a bit if we're below our batch limit
|
2020-07-29 11:49:12 +00:00
|
|
|
if s.pendingSections(bit) < batch {
|
2017-08-29 11:13:11 +00:00
|
|
|
select {
|
|
|
|
case <-s.quit:
|
|
|
|
// Session terminating, we can't meaningfully service, abort
|
2020-07-29 11:49:12 +00:00
|
|
|
s.allocateSections(bit, 0)
|
|
|
|
s.deliverSections(bit, []uint64{}, [][]byte{})
|
2017-08-29 11:13:11 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
case <-time.After(wait):
|
2022-10-11 07:37:00 +00:00
|
|
|
// Throttling up, fetch whatever is available
|
2017-08-29 11:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Allocate as much as we can handle and request servicing
|
2020-07-29 11:49:12 +00:00
|
|
|
sections := s.allocateSections(bit, batch)
|
2017-08-29 11:13:11 +00:00
|
|
|
request := make(chan *Retrieval)
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-s.quit:
|
|
|
|
// Session terminating, we can't meaningfully service, abort
|
2020-07-29 11:49:12 +00:00
|
|
|
s.deliverSections(bit, sections, make([][]byte, len(sections)))
|
2017-08-29 11:13:11 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
case mux <- request:
|
|
|
|
// Retrieval accepted, something must arrive before we're aborting
|
2017-10-24 13:19:09 +00:00
|
|
|
request <- &Retrieval{Bit: bit, Sections: sections, Context: s.ctx}
|
2017-08-29 11:13:11 +00:00
|
|
|
|
|
|
|
result := <-request
|
2023-09-25 13:35:24 +00:00
|
|
|
|
|
|
|
// Deliver a result before s.Close() to avoid a deadlock
|
|
|
|
s.deliverSections(result.Bit, result.Sections, result.Bitsets)
|
|
|
|
|
2017-10-24 13:19:09 +00:00
|
|
|
if result.Error != nil {
|
2021-08-24 11:32:19 +00:00
|
|
|
s.errLock.Lock()
|
|
|
|
s.err = result.Error
|
|
|
|
s.errLock.Unlock()
|
2017-10-25 09:18:44 +00:00
|
|
|
s.Close()
|
2017-10-24 13:19:09 +00:00
|
|
|
}
|
2017-08-29 11:13:11 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-18 19:52:20 +00:00
|
|
|
}
|