aboutsummaryrefslogtreecommitdiffstats
path: root/eth/filters/filter.go
blob: 469dfba4d1f64d3a84c90942d37881b7b1ddb101 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
// Copyright 2014 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 filters

import (
    "math"
    "time"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/core"
    "github.com/ethereum/go-ethereum/core/types"
    "github.com/ethereum/go-ethereum/core/vm"
    "github.com/ethereum/go-ethereum/ethdb"
)

type AccountChange struct {
    Address, StateAddress []byte
}

// Filtering interface
type Filter struct {
    created time.Time

    db         ethdb.Database
    begin, end int64
    addresses  []common.Address
    topics     [][]common.Hash

    BlockCallback       func(*types.Block, vm.Logs)
    TransactionCallback func(*types.Transaction)
    LogCallback         func(*vm.Log, bool)
}

// Create a new filter which uses a bloom filter on blocks to figure out whether a particular block
// is interesting or not.
func New(db ethdb.Database) *Filter {
    return &Filter{db: db}
}

// Set the earliest and latest block for filtering.
// -1 = latest block (i.e., the current block)
// hash = particular hash from-to
func (self *Filter) SetBeginBlock(begin int64) {
    self.begin = begin
}

func (self *Filter) SetEndBlock(end int64) {
    self.end = end
}

func (self *Filter) SetAddresses(addr []common.Address) {
    self.addresses = addr
}

func (self *Filter) SetTopics(topics [][]common.Hash) {
    self.topics = topics
}

// Run filters logs with the current parameters set
func (self *Filter) Find() vm.Logs {
    latestBlock := core.GetBlock(self.db, core.GetHeadBlockHash(self.db))
    var beginBlockNo uint64 = uint64(self.begin)
    if self.begin == -1 {
        beginBlockNo = latestBlock.NumberU64()
    }
    var endBlockNo uint64 = uint64(self.end)
    if self.end == -1 {
        endBlockNo = latestBlock.NumberU64()
    }

    // if no addresses are present we can't make use of fast search which
    // uses the mipmap bloom filters to check for fast inclusion and uses
    // higher range probability in order to ensure at least a false positive
    if len(self.addresses) == 0 {
        return self.getLogs(beginBlockNo, endBlockNo)
    }
    return self.mipFind(beginBlockNo, endBlockNo, 0)
}

func (self *Filter) mipFind(start, end uint64, depth int) (logs vm.Logs) {
    level := core.MIPMapLevels[depth]
    // normalise numerator so we can work in level specific batches and
    // work with the proper range checks
    for num := start / level * level; num <= end; num += level {
        // find addresses in bloom filters
        bloom := core.GetMipmapBloom(self.db, num, level)
        for _, addr := range self.addresses {
            if bloom.TestBytes(addr[:]) {
                // range check normalised values and make sure that
                // we're resolving the correct range instead of the
                // normalised values.
                start := uint64(math.Max(float64(num), float64(start)))
                end := uint64(math.Min(float64(num+level-1), float64(end)))
                if depth+1 == len(core.MIPMapLevels) {
                    logs = append(logs, self.getLogs(start, end)...)
                } else {
                    logs = append(logs, self.mipFind(start, end, depth+1)...)
                }
                // break so we don't check the same range for each
                // possible address. Checks on multiple addresses
                // are handled further down the stack.
                break
            }
        }
    }

    return logs
}

func (self *Filter) getLogs(start, end uint64) (logs vm.Logs) {
    var block *types.Block

    for i := start; i <= end; i++ {
        hash := core.GetCanonicalHash(self.db, i)
        if hash != (common.Hash{}) {
            block = core.GetBlock(self.db, hash)
        } else { // block not found
            return logs
        }

        // Use bloom filtering to see if this block is interesting given the
        // current parameters
        if self.bloomFilter(block) {
            // Get the logs of the block
            var (
                receipts   = core.GetBlockReceipts(self.db, block.Hash())
                unfiltered vm.Logs
            )
            for _, receipt := range receipts {
                unfiltered = append(unfiltered, receipt.Logs...)
            }
            logs = append(logs, self.FilterLogs(unfiltered)...)
        }
    }

    return logs
}

func includes(addresses []common.Address, a common.Address) bool {
    for _, addr := range addresses {
        if addr == a {
            return true
        }
    }

    return false
}

func (self *Filter) FilterLogs(logs vm.Logs) vm.Logs {
    var ret vm.Logs

    // Filter the logs for interesting stuff
Logs:
    for _, log := range logs {
        if len(self.addresses) > 0 && !includes(self.addresses, log.Address) {
            continue
        }

        logTopics := make([]common.Hash, len(self.topics))
        copy(logTopics, log.Topics)

        // If the to filtered topics is greater than the amount of topics in
        //  logs, skip.
        if len(self.topics) > len(log.Topics) {
            continue Logs
        }

        for i, topics := range self.topics {
            var match bool
            for _, topic := range topics {
                // common.Hash{} is a match all (wildcard)
                if (topic == common.Hash{}) || log.Topics[i] == topic {
                    match = true
                    break
                }
            }

            if !match {
                continue Logs
            }

        }

        ret = append(ret, log)
    }

    return ret
}

func (self *Filter) bloomFilter(block *types.Block) bool {
    if len(self.addresses) > 0 {
        var included bool
        for _, addr := range self.addresses {
            if types.BloomLookup(block.Bloom(), addr) {
                included = true
                break
            }
        }

        if !included {
            return false
        }
    }

    for _, sub := range self.topics {
        var included bool
        for _, topic := range sub {
            if (topic == common.Hash{}) || types.BloomLookup(block.Bloom(), topic) {
                included = true
                break
            }
        }
        if !included {
            return false
        }
    }

    return true
}