-
Notifications
You must be signed in to change notification settings - Fork 342
/
Copy pathmode_put.go
579 lines (520 loc) · 16.4 KB
/
mode_put.go
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
// 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 localstore
import (
"context"
"encoding/binary"
"errors"
"fmt"
"time"
"github.com/ethersphere/bee/pkg/sharky"
"github.com/ethersphere/bee/pkg/shed"
"github.com/ethersphere/bee/pkg/storage"
"github.com/ethersphere/bee/pkg/swarm"
"github.com/syndtr/goleveldb/leveldb"
)
var (
ErrOverwrite = errors.New("index already exists - double issuance on immutable batch")
)
// Put stores Chunks to database and depending
// on the Putter mode, it updates required indexes.
// Put is required to implement storage.Store
// interface.
func (db *DB) Put(ctx context.Context, mode storage.ModePut, chs ...swarm.Chunk) (exist []bool, err error) {
db.metrics.ModePut.Inc()
defer totalTimeMetric(db.metrics.TotalTimePut, time.Now())
exist, err = db.put(ctx, mode, chs...)
if err != nil {
db.metrics.ModePutFailure.Inc()
}
return exist, err
}
type releaseLocations []sharky.Location
func (r *releaseLocations) add(loc sharky.Location) {
*r = append(*r, loc)
}
// put stores Chunks to database and updates other indexes. It acquires batchMu
// to protect two calls of this function for the same address in parallel. Item
// fields Address and Data must not be with their nil values. If chunks with the
// same address are passed in arguments, only the first chunk will be stored,
// and following ones will have exist set to true for their index in exist
// slice. This is the same behaviour as if the same chunks are passed one by one
// in multiple put method calls.
func (db *DB) put(ctx context.Context, mode storage.ModePut, chs ...swarm.Chunk) (exist []bool, retErr error) {
// this is an optimization that tries to optimize on already existing chunks
// not needing to acquire batchMu. This is in order to reduce lock contention
// when chunks are retried across the network for whatever reason.
if len(chs) == 1 && mode != storage.ModePutRequestPin && mode != storage.ModePutUploadPin {
has, err := db.retrievalDataIndex.Has(chunkToItem(chs[0]))
if err != nil {
return nil, fmt.Errorf("initial has check: %w", err)
}
if has {
return []bool{true}, nil
}
}
// protect parallel updates
db.batchMu.Lock()
defer db.batchMu.Unlock()
if db.gcRunning {
for _, ch := range chs {
db.dirtyAddresses = append(db.dirtyAddresses, ch.Address())
}
}
batch := new(leveldb.Batch)
// variables that provide information for operations
// to be done after write batch function successfully executes
var (
gcSizeChange int64 // number to add or subtract from gcSize
reserveSizeChange int64 // number to add or subtract from reserveSize
)
var triggerPushFeed bool // signal push feed subscriptions to iterate
triggerPullFeed := make(map[uint8]struct{}) // signal pull feed subscriptions to iterate
exist = make([]bool, len(chs))
// A lazy populated map of bin ids to properly set
// BinID values for new chunks based on initial value from database
// and incrementing them.
// Values from this map are stored with the batch
binIDs := make(map[uint8]uint64)
var (
// this is the list of locations that need to be released if the batch is
// successfully committed due to postageIndex collisions
releaseLocs = new(releaseLocations)
// this is the list of locations that need to be released if the batch is NOT
// successfully committed as they have already been committed to sharky
committedLocations []sharky.Location
)
putChunk := func(ch swarm.Chunk, index int, putOp func(shed.Item) (bool, int64, int64, error)) (bool, int64, int64, error) {
if containsChunk(ch.Address(), chs[:index]...) {
return true, 0, 0, nil
}
item := chunkToItem(ch)
loc, exists, err := db.putSharky(ctx, item)
if err != nil {
return false, 0, 0, err
}
if exists {
return true, 0, 0, nil
}
committedLocations = append(committedLocations, loc)
item.Location, err = loc.MarshalBinary()
if err != nil {
return false, 0, 0, err
}
return putOp(item)
}
// If for whatever reason we fail to commit the batch, we should release all
// the chunks that have been committed to sharky
defer func() {
if retErr != nil {
for _, l := range committedLocations {
err := db.sharky.Release(ctx, l)
if err != nil {
db.logger.Warningf("failed releasing sharky location on error %v", err)
}
}
}
}()
switch mode {
case storage.ModePutRequest, storage.ModePutRequestPin, storage.ModePutRequestCache:
for i, ch := range chs {
pin := mode == storage.ModePutRequestPin // force pin in this mode
cache := mode == storage.ModePutRequestCache // force cache
exists, c, r, err := putChunk(ch, i, func(item shed.Item) (bool, int64, int64, error) {
return db.putRequest(ctx, releaseLocs, batch, binIDs, item, pin, cache)
})
if err != nil {
return nil, fmt.Errorf("put request: %w", err)
}
exist[i] = exists
gcSizeChange += c
reserveSizeChange += r
}
case storage.ModePutUpload, storage.ModePutUploadPin:
for i, ch := range chs {
exists, c, _, err := putChunk(ch, i, func(item shed.Item) (bool, int64, int64, error) {
chExists, gcChange, err := db.putUpload(batch, releaseLocs, binIDs, item)
if err == nil && mode == storage.ModePutUploadPin {
c2, err := db.setPin(batch, item)
if err == nil {
gcChange += c2
}
}
return chExists, gcChange, 0, err
})
if err != nil {
return nil, fmt.Errorf("put upload: %w", err)
}
exist[i] = exists
if !exists {
// chunk is new so, trigger subscription feeds
// after the batch is successfully written
triggerPullFeed[db.po(ch.Address())] = struct{}{}
triggerPushFeed = true
}
gcSizeChange += c
}
case storage.ModePutSync:
for i, ch := range chs {
exists, c, r, err := putChunk(ch, i, func(item shed.Item) (bool, int64, int64, error) {
return db.putSync(batch, releaseLocs, binIDs, item)
})
if err != nil {
return nil, fmt.Errorf("put sync: %w", err)
}
exist[i] = exists
if !exists {
// chunk is new so, trigger pull subscription feed
// after the batch is successfully written
triggerPullFeed[db.po(ch.Address())] = struct{}{}
}
gcSizeChange += c
reserveSizeChange += r
}
default:
return nil, ErrInvalidMode
}
for po, id := range binIDs {
db.binIDs.PutInBatch(batch, uint64(po), id)
}
err := db.incGCSizeInBatch(batch, gcSizeChange)
if err != nil {
return nil, fmt.Errorf("inc gc: %w", err)
}
err = db.incReserveSizeInBatch(batch, reserveSizeChange)
if err != nil {
return nil, fmt.Errorf("inc reserve: %w", err)
}
err = db.shed.WriteBatch(batch)
if err != nil {
return nil, fmt.Errorf("write batch: %w", err)
}
for _, v := range *releaseLocs {
err = db.sharky.Release(ctx, v)
if err != nil {
db.logger.Warning("failed releasing sharky location", v)
}
}
for po := range triggerPullFeed {
db.triggerPullSubscriptions(po)
}
if triggerPushFeed {
db.triggerPushSubscriptions()
}
return exist, nil
}
// putSharky will add the item to sharky storage if it doesnt exist.
func (db *DB) putSharky(ctx context.Context, item shed.Item) (loc sharky.Location, exists bool, err error) {
exists, err = db.retrievalDataIndex.Has(item)
if err != nil {
return loc, false, err
}
if exists {
return loc, true, nil
}
l, err := db.sharky.Write(ctx, item.Data)
if err != nil {
return loc, false, err
}
return l, false, nil
}
// putRequest adds an Item to the batch by updating required indexes:
// - put to indexes: retrieve, gc
// - it does not enter the syncpool
// The batch can be written to the database.
// Provided batch and binID map are updated.
func (db *DB) putRequest(
ctx context.Context,
loc *releaseLocations,
batch *leveldb.Batch,
binIDs map[uint8]uint64,
item shed.Item,
forcePin, forceCache bool,
) (exists bool, gcSizeChange, reserveSizeChange int64, err error) {
previous, err := db.postageIndexIndex.Get(item)
if err != nil {
if !errors.Is(err, leveldb.ErrNotFound) {
return false, 0, 0, err
}
} else {
if item.Immutable {
return false, 0, 0, ErrOverwrite
}
// if a chunk is found with the same postage stamp index,
// replace it with the new one only if timestamp is later
if !later(previous, item) {
return false, 0, 0, nil
}
gcSizeChange, err = db.setRemove(batch, previous, true)
if err != nil {
return false, 0, 0, err
}
previousIdx, err := db.retrievalDataIndex.Get(previous)
if err != nil {
return false, 0, 0, fmt.Errorf("could not fetch previous item: %w", err)
}
l, err := sharky.LocationFromBinary(previousIdx.Location)
if err != nil {
return false, 0, 0, err
}
loc.add(l)
radius, err := db.postageRadiusIndex.Get(item)
if err != nil {
if !errors.Is(err, leveldb.ErrNotFound) {
return false, 0, 0, err
}
} else {
if db.po(swarm.NewAddress(item.Address)) >= radius.Radius {
reserveSizeChange--
}
}
}
item.StoreTimestamp = now()
item.BinID, err = db.incBinID(binIDs, db.po(swarm.NewAddress(item.Address)))
if err != nil {
return false, 0, 0, err
}
err = db.retrievalDataIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
err = db.postageChunksIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
err = db.postageIndexIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
item.AccessTimestamp = now()
err = db.retrievalAccessIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
gcSizeChangeNew, reserveSizeChangeNew, err := db.preserveOrCache(batch, item, forcePin, forceCache)
if err != nil {
return false, 0, 0, err
}
if !forceCache {
// if we are here it means the chunk has a valid stamp
// therefore we'd like to be able to pullsync it
err = db.pullIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
}
return false, gcSizeChange + gcSizeChangeNew, reserveSizeChange + reserveSizeChangeNew, nil
}
// putUpload adds an Item to the batch by updating required indexes:
// - put to indexes: retrieve, push, pull
// The batch can be written to the database.
// Provided batch and binID map are updated.
func (db *DB) putUpload(
batch *leveldb.Batch,
loc *releaseLocations,
binIDs map[uint8]uint64,
item shed.Item,
) (exists bool, gcSizeChange int64, err error) {
previous, err := db.postageIndexIndex.Get(item)
if err != nil {
if !errors.Is(err, leveldb.ErrNotFound) {
return false, 0, fmt.Errorf("postage index get: %w", err)
}
} else {
if item.Immutable {
return false, 0, ErrOverwrite
}
// if a chunk is found with the same postage stamp index,
// replace it with the new one only if timestamp is later
if !later(previous, item) {
return false, 0, nil
}
_, err = db.setRemove(batch, previous, true)
if err != nil {
return false, 0, fmt.Errorf("same slot remove: %w", err)
}
previousIdx, err := db.retrievalDataIndex.Get(previous)
if err != nil {
return false, 0, fmt.Errorf("could not fetch previous item: %w", err)
}
l, err := sharky.LocationFromBinary(previousIdx.Location)
if err != nil {
return false, 0, err
}
loc.add(l)
}
item.StoreTimestamp = now()
item.BinID, err = db.incBinID(binIDs, db.po(swarm.NewAddress(item.Address)))
if err != nil {
return false, 0, fmt.Errorf("inc bin id: %w", err)
}
err = db.retrievalDataIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, err
}
err = db.pullIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, err
}
err = db.pushIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, err
}
err = db.postageIndexIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, err
}
err = db.postageChunksIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, err
}
return false, 0, nil
}
// putSync adds an Item to the batch by updating required indexes:
// - put to indexes: retrieve, pull, gc
// The batch can be written to the database.
// Provided batch and binID map are updated.
func (db *DB) putSync(batch *leveldb.Batch, loc *releaseLocations, binIDs map[uint8]uint64, item shed.Item) (exists bool, gcSizeChange, reserveSizeChange int64, err error) {
previous, err := db.postageIndexIndex.Get(item)
if err != nil {
if !errors.Is(err, leveldb.ErrNotFound) {
return false, 0, 0, err
}
} else {
if item.Immutable {
return false, 0, 0, ErrOverwrite
}
// if a chunk is found with the same postage stamp index,
// replace it with the new one only if timestamp is later
if !later(previous, item) {
return false, 0, 0, nil
}
_, err = db.setRemove(batch, previous, true)
if err != nil {
return false, 0, 0, err
}
previousIdx, err := db.retrievalDataIndex.Get(previous)
if err != nil {
return false, 0, 0, fmt.Errorf("could not fetch previous item: %w", err)
}
l, err := sharky.LocationFromBinary(previousIdx.Location)
if err != nil {
return false, 0, 0, err
}
loc.add(l)
radius, err := db.postageRadiusIndex.Get(item)
if err != nil {
if !errors.Is(err, leveldb.ErrNotFound) {
return false, 0, 0, err
}
} else {
if db.po(swarm.NewAddress(item.Address)) >= radius.Radius {
reserveSizeChange--
}
}
}
item.StoreTimestamp = now()
item.BinID, err = db.incBinID(binIDs, db.po(swarm.NewAddress(item.Address)))
if err != nil {
return false, 0, 0, err
}
err = db.retrievalDataIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
err = db.pullIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
err = db.postageChunksIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
err = db.postageIndexIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
item.AccessTimestamp = now()
err = db.retrievalAccessIndex.PutInBatch(batch, item)
if err != nil {
return false, 0, 0, err
}
gcSizeChangeNew, reserveSizeChangeNew, err := db.preserveOrCache(batch, item, false, false)
if err != nil {
return false, 0, 0, err
}
return false, gcSizeChange + gcSizeChangeNew, reserveSizeChange + reserveSizeChangeNew, nil
}
// preserveOrCache is a helper function used to add chunks to either a pinned reserve or gc cache
// (the retrieval access index and the gc index)
func (db *DB) preserveOrCache(batch *leveldb.Batch, item shed.Item, forcePin, forceCache bool) (gcSizeChange, reserveSizeChange int64, err error) {
if !forceCache && (withinRadiusFn(db, item) || forcePin) {
if !forcePin {
reserveSizeChange++
}
gcSizeChange, err = db.setPin(batch, item)
return gcSizeChange, reserveSizeChange, err
}
// add new entry to gc index ONLY if it is not present in pinIndex
ok, err := db.pinIndex.Has(item)
if err != nil {
return 0, 0, err
}
if ok {
return gcSizeChange, 0, nil
}
exists, err := db.gcIndex.Has(item)
if err != nil && !errors.Is(err, leveldb.ErrNotFound) {
return 0, 0, err
}
if exists {
return 0, 0, nil
}
err = db.gcIndex.PutInBatch(batch, item)
if err != nil {
return 0, 0, err
}
gcSizeChange++
return gcSizeChange, 0, nil
}
// incBinID is a helper function for db.put* methods that increments bin id
// based on the current value in the database. This function must be called under
// a db.batchMu lock. Provided binID map is updated.
func (db *DB) incBinID(binIDs map[uint8]uint64, po uint8) (id uint64, err error) {
if _, ok := binIDs[po]; !ok {
binIDs[po], err = db.binIDs.Get(uint64(po))
if err != nil {
return 0, err
}
}
binIDs[po]++
return binIDs[po], nil
}
// containsChunk returns true if the chunk with a specific address
// is present in the provided chunk slice.
func containsChunk(addr swarm.Address, chs ...swarm.Chunk) bool {
for _, c := range chs {
if addr.Equal(c.Address()) {
return true
}
}
return false
}
func later(previous, current shed.Item) bool {
pts := binary.BigEndian.Uint64(previous.Timestamp)
cts := binary.BigEndian.Uint64(current.Timestamp)
return cts > pts
}