2017-01-12 21:25:31 +01:00
|
|
|
// Copyright (c) 2016-2017 The btcsuite developers
|
|
|
|
// Copyright (c) 2016-2017 The Lightning Network Developers
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package gcs
|
|
|
|
|
|
|
|
import (
|
2017-02-22 03:08:08 +01:00
|
|
|
"encoding/binary"
|
2017-01-12 21:25:31 +01:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2017-08-24 23:18:27 +02:00
|
|
|
"math"
|
2017-01-12 21:25:31 +01:00
|
|
|
"sort"
|
|
|
|
|
|
|
|
"github.com/aead/siphash"
|
|
|
|
"github.com/kkdai/bstream"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Inspired by https://github.com/rasky/gcs
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrNTooBig signifies that the filter can't handle N items.
|
|
|
|
ErrNTooBig = fmt.Errorf("N is too big to fit in uint32")
|
|
|
|
|
|
|
|
// ErrPTooBig signifies that the filter can't handle `1/2**P`
|
|
|
|
// collision probability.
|
|
|
|
ErrPTooBig = fmt.Errorf("P is too big to fit in uint32")
|
|
|
|
|
|
|
|
// ErrNoData signifies that an empty slice was passed.
|
|
|
|
ErrNoData = fmt.Errorf("No data provided")
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2017-04-28 05:34:50 +02:00
|
|
|
// KeySize is the size of the byte array required for key material for
|
2017-01-12 21:25:31 +01:00
|
|
|
// the SipHash keyed hash function.
|
|
|
|
KeySize = 16
|
|
|
|
)
|
|
|
|
|
2017-04-28 05:34:50 +02:00
|
|
|
// Filter describes an immutable filter that can be built from a set of data
|
|
|
|
// elements, serialized, deserialized, and queried in a thread-safe manner. The
|
|
|
|
// serialized form is compressed as a Golomb Coded Set (GCS), but does not
|
|
|
|
// include N or P to allow the user to encode the metadata separately if
|
|
|
|
// necessary. The hash function used is SipHash, a keyed function; the key used
|
|
|
|
// in building the filter is required in order to match filter values and is
|
|
|
|
// not included in the serialized form.
|
2017-01-17 23:10:29 +01:00
|
|
|
type Filter struct {
|
2017-01-12 21:25:31 +01:00
|
|
|
n uint32
|
|
|
|
p uint8
|
|
|
|
modulusP uint64
|
|
|
|
modulusNP uint64
|
|
|
|
filterData []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// BuildGCSFilter builds a new GCS filter with the collision probability of
|
|
|
|
// `1/(2**P)`, key `key`, and including every `[]byte` in `data` as a member of
|
|
|
|
// the set.
|
2017-04-28 05:34:50 +02:00
|
|
|
func BuildGCSFilter(P uint8, key [KeySize]byte, data [][]byte) (*Filter, error) {
|
2017-01-12 21:25:31 +01:00
|
|
|
// Some initial parameter checks: make sure we have data from which to
|
|
|
|
// build the filter, and make sure our parameters will fit the hash
|
|
|
|
// function we're using.
|
|
|
|
if len(data) == 0 {
|
|
|
|
return nil, ErrNoData
|
|
|
|
}
|
2017-08-24 23:18:27 +02:00
|
|
|
if len(data) > math.MaxInt32 {
|
2017-01-12 21:25:31 +01:00
|
|
|
return nil, ErrNTooBig
|
|
|
|
}
|
|
|
|
if P > 32 {
|
|
|
|
return nil, ErrPTooBig
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the filter object and insert metadata.
|
2017-01-17 23:10:29 +01:00
|
|
|
f := Filter{
|
2017-01-12 21:25:31 +01:00
|
|
|
n: uint32(len(data)),
|
|
|
|
p: P,
|
|
|
|
}
|
|
|
|
f.modulusP = uint64(1 << f.p)
|
|
|
|
f.modulusNP = uint64(f.n) * f.modulusP
|
|
|
|
|
|
|
|
// Build the filter.
|
2017-04-28 05:36:12 +02:00
|
|
|
values := make(uint64Slice, 0, len(data))
|
2017-01-12 21:25:31 +01:00
|
|
|
b := bstream.NewBStreamWriter(0)
|
|
|
|
|
|
|
|
// Insert the hash (modulo N*P) of each data element into a slice and
|
|
|
|
// sort the slice.
|
|
|
|
for _, d := range data {
|
|
|
|
v := siphash.Sum64(d, &key) % f.modulusNP
|
|
|
|
values = append(values, v)
|
|
|
|
}
|
|
|
|
sort.Sort(values)
|
|
|
|
|
|
|
|
// Write the sorted list of values into the filter bitstream,
|
|
|
|
// compressing it using Golomb coding.
|
|
|
|
var value, lastValue, remainder uint64
|
|
|
|
for _, v := range values {
|
|
|
|
// Calculate the difference between this value and the last,
|
|
|
|
// modulo P.
|
2017-06-09 03:26:27 +02:00
|
|
|
remainder = (v - lastValue) & (f.modulusP - 1)
|
2017-04-28 05:34:50 +02:00
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
// Calculate the difference between this value and the last,
|
|
|
|
// divided by P.
|
2017-06-09 03:26:27 +02:00
|
|
|
value = (v - lastValue - remainder) >> f.p
|
2017-01-12 21:25:31 +01:00
|
|
|
lastValue = v
|
2017-04-28 05:34:50 +02:00
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
// Write the P multiple into the bitstream in unary; the
|
|
|
|
// average should be around 1 (2 bits - 0b10).
|
|
|
|
for value > 0 {
|
|
|
|
b.WriteBit(true)
|
|
|
|
value--
|
|
|
|
}
|
|
|
|
b.WriteBit(false)
|
2017-04-28 05:34:50 +02:00
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
// Write the remainder as a big-endian integer with enough bits
|
|
|
|
// to represent the appropriate collision probability.
|
|
|
|
b.WriteBits(remainder, int(f.p))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the bitstream into the filter object and return the object.
|
|
|
|
f.filterData = b.Bytes()
|
2017-04-28 05:34:50 +02:00
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
return &f, nil
|
|
|
|
}
|
|
|
|
|
2017-04-28 05:34:50 +02:00
|
|
|
// FromBytes deserializes a GCS filter from a known N, P, and serialized filter
|
|
|
|
// as returned by Bytes().
|
2017-01-17 23:10:29 +01:00
|
|
|
func FromBytes(N uint32, P uint8, d []byte) (*Filter, error) {
|
2017-01-12 21:25:31 +01:00
|
|
|
|
|
|
|
// Basic sanity check.
|
|
|
|
if P > 32 {
|
|
|
|
return nil, ErrPTooBig
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the filter object and insert metadata.
|
2017-01-17 23:10:29 +01:00
|
|
|
f := &Filter{
|
2017-01-12 21:25:31 +01:00
|
|
|
n: N,
|
|
|
|
p: P,
|
|
|
|
}
|
|
|
|
f.modulusP = uint64(1 << f.p)
|
|
|
|
f.modulusNP = uint64(f.n) * f.modulusP
|
|
|
|
|
|
|
|
// Copy the filter.
|
|
|
|
f.filterData = make([]byte, len(d))
|
|
|
|
copy(f.filterData, d)
|
2017-04-28 05:34:50 +02:00
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
return f, nil
|
|
|
|
}
|
|
|
|
|
2017-02-22 03:08:08 +01:00
|
|
|
// FromNBytes deserializes a GCS filter from a known P, and serialized N and
|
|
|
|
// filter as returned by NBytes().
|
|
|
|
func FromNBytes(P uint8, d []byte) (*Filter, error) {
|
|
|
|
return FromBytes(binary.BigEndian.Uint32(d[:4]), P, d[4:])
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromPBytes deserializes a GCS filter from a known N, and serialized P and
|
|
|
|
// filter as returned by NBytes().
|
|
|
|
func FromPBytes(N uint32, d []byte) (*Filter, error) {
|
|
|
|
return FromBytes(N, d[0], d[1:])
|
|
|
|
}
|
|
|
|
|
|
|
|
// FromNPBytes deserializes a GCS filter from a serialized N, P, and filter as
|
|
|
|
// returned by NPBytes().
|
|
|
|
func FromNPBytes(d []byte) (*Filter, error) {
|
|
|
|
return FromBytes(binary.BigEndian.Uint32(d[:4]), d[4], d[5:])
|
|
|
|
}
|
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
// Bytes returns the serialized format of the GCS filter, which does not
|
|
|
|
// include N or P (returned by separate methods) or the key used by SipHash.
|
2017-01-17 23:10:29 +01:00
|
|
|
func (f *Filter) Bytes() []byte {
|
2017-01-12 21:25:31 +01:00
|
|
|
filterData := make([]byte, len(f.filterData))
|
|
|
|
copy(filterData, f.filterData)
|
|
|
|
return filterData
|
|
|
|
}
|
|
|
|
|
2017-02-22 03:08:08 +01:00
|
|
|
// NBytes returns the serialized format of the GCS filter with N, which does
|
|
|
|
// not include P (returned by a separate method) or the key used by SipHash.
|
|
|
|
func (f *Filter) NBytes() []byte {
|
|
|
|
filterData := make([]byte, len(f.filterData)+4)
|
|
|
|
binary.BigEndian.PutUint32(filterData[:4], f.n)
|
|
|
|
copy(filterData[4:], f.filterData)
|
|
|
|
return filterData
|
|
|
|
}
|
|
|
|
|
|
|
|
// PBytes returns the serialized format of the GCS filter with P, which does
|
|
|
|
// not include N (returned by a separate method) or the key used by SipHash.
|
|
|
|
func (f *Filter) PBytes() []byte {
|
|
|
|
filterData := make([]byte, len(f.filterData)+1)
|
|
|
|
filterData[0] = f.p
|
|
|
|
copy(filterData[1:], f.filterData)
|
|
|
|
return filterData
|
|
|
|
}
|
|
|
|
|
|
|
|
// NPBytes returns the serialized format of the GCS filter with N and P, which
|
|
|
|
// does not include the key used by SipHash.
|
|
|
|
func (f *Filter) NPBytes() []byte {
|
|
|
|
filterData := make([]byte, len(f.filterData)+5)
|
|
|
|
binary.BigEndian.PutUint32(filterData[:4], f.n)
|
|
|
|
filterData[4] = f.p
|
|
|
|
copy(filterData[5:], f.filterData)
|
|
|
|
return filterData
|
|
|
|
}
|
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
// P returns the filter's collision probability as a negative power of 2 (that
|
|
|
|
// is, a collision probability of `1/2**20` is represented as 20).
|
2017-01-17 23:10:29 +01:00
|
|
|
func (f *Filter) P() uint8 {
|
2017-01-12 21:25:31 +01:00
|
|
|
return f.p
|
|
|
|
}
|
|
|
|
|
|
|
|
// N returns the size of the data set used to build the filter.
|
2017-01-17 23:10:29 +01:00
|
|
|
func (f *Filter) N() uint32 {
|
2017-01-12 21:25:31 +01:00
|
|
|
return f.n
|
|
|
|
}
|
|
|
|
|
2017-04-28 05:34:50 +02:00
|
|
|
// Match checks whether a []byte value is likely (within collision probability)
|
|
|
|
// to be a member of the set represented by the filter.
|
2017-01-17 23:10:29 +01:00
|
|
|
func (f *Filter) Match(key [KeySize]byte, data []byte) (bool, error) {
|
2017-01-12 21:25:31 +01:00
|
|
|
|
|
|
|
// Create a filter bitstream.
|
|
|
|
filterData := f.Bytes()
|
|
|
|
b := bstream.NewBStreamReader(filterData)
|
|
|
|
|
|
|
|
// Hash our search term with the same parameters as the filter.
|
|
|
|
term := siphash.Sum64(data, &key) % f.modulusNP
|
|
|
|
|
|
|
|
// Go through the search filter and look for the desired value.
|
|
|
|
var lastValue uint64
|
|
|
|
for lastValue < term {
|
2017-04-28 05:34:50 +02:00
|
|
|
|
|
|
|
// Read the difference between previous and new value from
|
|
|
|
// bitstream.
|
2017-01-12 21:25:31 +01:00
|
|
|
value, err := f.readFullUint64(b)
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
return false, err
|
|
|
|
}
|
2017-04-28 05:34:50 +02:00
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
// Add the previous value to it.
|
|
|
|
value += lastValue
|
|
|
|
if value == term {
|
|
|
|
return true, nil
|
|
|
|
}
|
2017-04-28 05:34:50 +02:00
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
lastValue = value
|
|
|
|
}
|
2017-04-28 05:34:50 +02:00
|
|
|
|
2017-01-12 21:25:31 +01:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2017-04-28 05:34:50 +02:00
|
|
|
// MatchAny returns checks whether any []byte value is likely (within collision
|
|
|
|
// probability) to be a member of the set represented by the filter faster than
|
|
|
|
// calling Match() for each value individually.
|
2017-01-17 23:10:29 +01:00
|
|
|
func (f *Filter) MatchAny(key [KeySize]byte, data [][]byte) (bool, error) {
|
2017-01-12 21:25:31 +01:00
|
|
|
|
|
|
|
// Basic sanity check.
|
|
|
|
if len(data) == 0 {
|
|
|
|
return false, ErrNoData
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a filter bitstream.
|
|
|
|
filterData := f.Bytes()
|
|
|
|
b := bstream.NewBStreamReader(filterData)
|
|
|
|
|
|
|
|
// Create an uncompressed filter of the search values.
|
2017-04-28 05:36:12 +02:00
|
|
|
values := make(uint64Slice, 0, len(data))
|
2017-01-12 21:25:31 +01:00
|
|
|
for _, d := range data {
|
|
|
|
v := siphash.Sum64(d, &key) % f.modulusNP
|
|
|
|
values = append(values, v)
|
|
|
|
}
|
|
|
|
sort.Sort(values)
|
|
|
|
|
|
|
|
// Zip down the filters, comparing values until we either run out of
|
2017-04-28 05:34:50 +02:00
|
|
|
// values to compare in one of the filters or we reach a matching
|
|
|
|
// value.
|
2017-01-12 21:25:31 +01:00
|
|
|
var lastValue1, lastValue2 uint64
|
|
|
|
lastValue2 = values[0]
|
|
|
|
i := 1
|
|
|
|
for lastValue1 != lastValue2 {
|
|
|
|
// Check which filter to advance to make sure we're comparing
|
|
|
|
// the right values.
|
|
|
|
switch {
|
|
|
|
case lastValue1 > lastValue2:
|
|
|
|
// Advance filter created from search terms or return
|
|
|
|
// false if we're at the end because nothing matched.
|
|
|
|
if i < len(values) {
|
|
|
|
lastValue2 = values[i]
|
|
|
|
i++
|
|
|
|
} else {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
case lastValue2 > lastValue1:
|
|
|
|
// Advance filter we're searching or return false if
|
|
|
|
// we're at the end because nothing matched.
|
|
|
|
value, err := f.readFullUint64(b)
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
lastValue1 += value
|
|
|
|
}
|
|
|
|
}
|
2017-04-28 05:34:50 +02:00
|
|
|
|
|
|
|
// If we've made it this far, an element matched between filters so we
|
|
|
|
// return true.
|
2017-01-12 21:25:31 +01:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2017-04-28 05:34:50 +02:00
|
|
|
// readFullUint64 reads a value represented by the sum of a unary multiple of
|
|
|
|
// the filter's P modulus (`2**P`) and a big-endian P-bit remainder.
|
2017-01-17 23:10:29 +01:00
|
|
|
func (f *Filter) readFullUint64(b *bstream.BStream) (uint64, error) {
|
2017-01-12 21:25:31 +01:00
|
|
|
var v uint64
|
|
|
|
|
|
|
|
// Count the 1s until we reach a 0.
|
|
|
|
c, err := b.ReadBit()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2017-01-17 23:10:29 +01:00
|
|
|
for c {
|
2017-01-12 21:25:31 +01:00
|
|
|
v++
|
|
|
|
c, err = b.ReadBit()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read P bits.
|
|
|
|
remainder, err := b.ReadBits(int(f.p))
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the multiple and the remainder.
|
|
|
|
v = v*f.modulusP + remainder
|
|
|
|
return v, nil
|
|
|
|
}
|