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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
// Copyright 2016 Google LLC. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cache
import (
"bytes"
"flag"
"fmt"
"sync"
"github.com/google/trillian/storage/storagepb"
"github.com/google/trillian/storage/tree"
"github.com/transparency-dev/merkle"
"github.com/transparency-dev/merkle/compact"
"google.golang.org/protobuf/proto"
"k8s.io/klog/v2"
)
// TODO(al): move this up the stack
var populateConcurrency = flag.Int("populate_subtree_concurrency", 256, "Max number of concurrent workers concurrently populating subtrees")
// TODO(pavelkalinnikov): Rename subtrees to tiles.
// GetSubtreesFunc describes a function which can return a number of Subtrees from storage.
type GetSubtreesFunc func(ids [][]byte) ([]*storagepb.SubtreeProto, error)
// SubtreeCache provides a caching access to Subtree storage. Currently there are assumptions
// in the code that all subtrees are multiple of 8 in depth and that log subtrees are always
// of depth 8. It is not possible to just change the constants above and have things still
// work. This is because of issues like byte packing of node IDs.
//
// SubtreeCache is not thread-safe: GetNodes, SetNodes and Flush methods must
// be called sequentially.
type SubtreeCache struct {
hasher merkle.LogHasher
// subtrees contains the Subtree data read from storage, and is updated by
// calls to SetNodes.
subtrees map[string]*storagepb.SubtreeProto
// dirtyPrefixes keeps track of all Subtrees which need to be written back
// to storage.
dirtyPrefixes map[string]bool
// populateConcurrency sets the amount of concurrency when repopulating subtrees.
populateConcurrency int
}
// NewLogSubtreeCache creates and returns a SubtreeCache appropriate for use with a log
// tree. The caller must supply a suitable LogHasher.
func NewLogSubtreeCache(hasher merkle.LogHasher) *SubtreeCache {
if *populateConcurrency <= 0 {
panic(fmt.Errorf("populate_subtree_concurrency must be set to >= 1"))
}
return &SubtreeCache{
hasher: hasher,
subtrees: make(map[string]*storagepb.SubtreeProto),
dirtyPrefixes: make(map[string]bool),
populateConcurrency: *populateConcurrency,
}
}
// preload calculates the set of subtrees required to know the hashes of the
// passed in node IDs, uses getSubtrees to retrieve them, and finally populates
// the cache structures with the data. Returns the list of tile IDs not found.
func (s *SubtreeCache) preload(ids []compact.NodeID, getSubtrees GetSubtreesFunc) ([]string, error) {
// Figure out the set of subtrees we need.
want := make(map[string]bool)
for _, id := range ids {
subID := string(getTileID(id))
if _, ok := s.subtrees[subID]; !ok {
want[subID] = true
}
}
// Don't make a read request for zero subtrees.
if len(want) == 0 {
return nil, nil
}
list := make([][]byte, 0, len(want))
for id := range want {
list = append(list, []byte(id))
}
subtrees, err := getSubtrees(list)
if err != nil {
return nil, err
}
if got, max := len(subtrees), len(want); got > max {
return nil, fmt.Errorf("too many subtrees: %d, want <= %d", got, max)
}
ch := make(chan *storagepb.SubtreeProto, len(subtrees))
workTokens := make(chan bool, s.populateConcurrency)
for i := 0; i < s.populateConcurrency; i++ {
workTokens <- true
}
wg := &sync.WaitGroup{}
for _, t := range subtrees {
t := t
wg.Add(1)
go func() {
defer wg.Done()
// wait for a token before starting work
<-workTokens
// return it when done
defer func() { workTokens <- true }()
if err := PopulateLogTile(t, s.hasher); err != nil {
// TODO(mhutchinson): This error should be propagated.
klog.Errorf("PopulateLogTile(): %v", err)
}
ch <- t // Note: This never blocks because len(ch) == len(subtrees).
}()
}
go func() {
wg.Wait()
close(ch)
close(workTokens)
}()
for t := range ch {
if err := s.cacheSubtree(t); err != nil {
return nil, err
}
delete(want, string(t.Prefix))
}
notFound := make([]string, 0, len(want))
for id := range want {
notFound = append(notFound, id)
}
return notFound, nil
}
func (s *SubtreeCache) cacheSubtree(t *storagepb.SubtreeProto) error {
if subtree, ok := s.subtrees[string(t.Prefix)]; ok {
if !proto.Equal(t, subtree) {
return fmt.Errorf("at %x: subtree mismatch", t.Prefix)
}
return nil
}
s.subtrees[string(t.Prefix)] = t
return nil
}
// GetNodes returns the requested nodes, calling the getSubtrees function if
// they are not already cached.
func (s *SubtreeCache) GetNodes(ids []compact.NodeID, getSubtrees GetSubtreesFunc) ([]tree.Node, error) {
if notFound, err := s.preload(ids, getSubtrees); err != nil {
return nil, err
} else if r := len(notFound); r != 0 {
return nil, fmt.Errorf("preload did not get all tiles: %d not found", r)
}
ret := make([]tree.Node, 0, len(ids))
for _, id := range ids {
if h, err := s.getNodeHash(id); err != nil {
return nil, fmt.Errorf("getNodeHash(%+v): %v", id, err)
} else if h != nil {
ret = append(ret, tree.Node{ID: id, Hash: h})
}
}
return ret, nil
}
// getNodeHash returns a single node hash from the cache.
func (s *SubtreeCache) getNodeHash(id compact.NodeID) ([]byte, error) {
subID, sx := splitID(id)
c := s.subtrees[string(subID)]
if c == nil {
return nil, fmt.Errorf("tile %x not found", subID)
}
// Look up the hash in the appropriate map.
// The leaf hashes are stored in a separate map to the internal nodes so that
// we can easily dump (and later reconstruct) the internal nodes. As log subtrees
// have a fixed depth if the suffix has the same number of significant bits as the
// subtree depth then this is a leaf. For example if the subtree is depth 8 its leaves
// have 8 significant suffix bits.
if int32(sx.Bits()) == c.Depth {
return c.Leaves[sx.String()], nil
}
return c.InternalNodes[sx.String()], nil
}
// SetNodes sets hashes for the given nodes in the cache.
func (s *SubtreeCache) SetNodes(nodes []tree.Node, getSubtrees GetSubtreesFunc) error {
ids := make([]compact.NodeID, len(nodes))
for i, n := range nodes {
ids[i] = n.ID
}
notFound, err := s.preload(ids, getSubtrees)
if err != nil {
return err
}
for _, id := range notFound {
s.subtrees[id] = newEmptyTile([]byte(id))
}
for _, n := range nodes {
subID, sx := splitID(n.ID)
c := s.subtrees[string(subID)]
if c == nil {
return fmt.Errorf("tile %x not found", subID)
}
// Store the hash to the containing tile, and mark it as dirty if the hash
// differs from the previously stored one.
sfxKey := sx.String()
if int32(sx.Bits()) == c.Depth { // This is a leaf node.
if !bytes.Equal(c.Leaves[sfxKey], n.Hash) {
c.Leaves[sfxKey] = n.Hash
s.dirtyPrefixes[string(subID)] = true
}
} else { // This is an internal node.
if !bytes.Equal(c.InternalNodes[sfxKey], n.Hash) {
c.InternalNodes[sfxKey] = n.Hash
s.dirtyPrefixes[string(subID)] = true
}
}
}
return nil
}
// UpdatedTiles returns all updated tiles that need to be written to storage.
func (s *SubtreeCache) UpdatedTiles() ([]*storagepb.SubtreeProto, error) {
var toWrite []*storagepb.SubtreeProto
for k, v := range s.subtrees {
if !s.dirtyPrefixes[k] {
continue
}
if !bytes.Equal([]byte(k), v.Prefix) {
return nil, fmt.Errorf("inconsistent cache: prefix key is %v, but cached object claims %v", k, v.Prefix)
}
if len(v.Leaves) > 0 {
if err := prepareLogTile(v); err != nil {
return nil, err
}
toWrite = append(toWrite, v)
}
}
return toWrite, nil
}
|