2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-10-07 13:05:04 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-10-07 13:05:04 +00:00
|
|
|
|
2015-01-12 13:50:30 +00:00
|
|
|
package db
|
2014-10-07 13:05:04 +00:00
|
|
|
|
|
|
|
import (
|
2020-03-18 16:34:46 +00:00
|
|
|
"bytes"
|
2020-07-11 07:22:15 +00:00
|
|
|
"context"
|
2020-08-19 11:13:44 +00:00
|
|
|
"fmt"
|
2014-10-07 13:05:04 +00:00
|
|
|
"testing"
|
2018-03-10 10:42:01 +00:00
|
|
|
|
2019-11-29 08:11:52 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/db/backend"
|
2020-12-21 11:59:22 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/events"
|
2018-03-10 10:42:01 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2014-10-07 13:05:04 +00:00
|
|
|
)
|
|
|
|
|
2019-11-29 08:11:52 +00:00
|
|
|
func genBlocks(n int) []protocol.BlockInfo {
|
|
|
|
b := make([]protocol.BlockInfo, n)
|
|
|
|
for i := range b {
|
|
|
|
h := make([]byte, 32)
|
|
|
|
for j := range h {
|
|
|
|
h[j] = byte(i + j)
|
|
|
|
}
|
2020-10-02 06:07:05 +00:00
|
|
|
b[i].Size = i
|
2019-11-29 08:11:52 +00:00
|
|
|
b[i].Hash = h
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2018-06-24 07:50:18 +00:00
|
|
|
func TestIgnoredFiles(t *testing.T) {
|
2018-05-16 06:44:08 +00:00
|
|
|
ldb, err := openJSONS("testdata/v0.14.48-ignoredfiles.db.jsons")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevel(t, ldb)
|
2020-02-11 13:31:43 +00:00
|
|
|
defer db.Close()
|
2019-11-29 08:11:52 +00:00
|
|
|
if err := UpdateSchema(db); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-10-10 09:34:24 +00:00
|
|
|
|
2022-01-31 09:12:52 +00:00
|
|
|
fs := newFileSet(t, "test", db)
|
2018-05-16 06:44:08 +00:00
|
|
|
|
|
|
|
// The contents of the database are like this:
|
|
|
|
//
|
2022-01-31 09:12:52 +00:00
|
|
|
// fs := newFileSet(t, "test", db)
|
2018-05-16 06:44:08 +00:00
|
|
|
// fs.Update(protocol.LocalDeviceID, []protocol.FileInfo{
|
|
|
|
// { // invalid (ignored) file
|
|
|
|
// Name: "foo",
|
|
|
|
// Type: protocol.FileInfoTypeFile,
|
|
|
|
// Invalid: true,
|
|
|
|
// Version: protocol.Vector{Counters: []protocol.Counter{{ID: 1, Value: 1000}}},
|
|
|
|
// },
|
|
|
|
// { // regular file
|
|
|
|
// Name: "bar",
|
|
|
|
// Type: protocol.FileInfoTypeFile,
|
|
|
|
// Version: protocol.Vector{Counters: []protocol.Counter{{ID: 1, Value: 1001}}},
|
|
|
|
// },
|
|
|
|
// })
|
|
|
|
// fs.Update(protocol.DeviceID{42}, []protocol.FileInfo{
|
|
|
|
// { // invalid file
|
|
|
|
// Name: "baz",
|
|
|
|
// Type: protocol.FileInfoTypeFile,
|
|
|
|
// Invalid: true,
|
|
|
|
// Version: protocol.Vector{Counters: []protocol.Counter{{ID: 42, Value: 1000}}},
|
|
|
|
// },
|
|
|
|
// { // regular file
|
|
|
|
// Name: "quux",
|
|
|
|
// Type: protocol.FileInfoTypeFile,
|
|
|
|
// Version: protocol.Vector{Counters: []protocol.Counter{{ID: 42, Value: 1002}}},
|
|
|
|
// },
|
|
|
|
// })
|
|
|
|
|
2018-06-24 07:50:18 +00:00
|
|
|
// Local files should have the "ignored" bit in addition to just being
|
|
|
|
// generally invalid if we want to look at the simulation of that bit.
|
|
|
|
|
2021-03-07 12:43:22 +00:00
|
|
|
snap := snapshot(t, fs)
|
2020-01-21 17:23:08 +00:00
|
|
|
defer snap.Release()
|
|
|
|
fi, ok := snap.Get(protocol.LocalDeviceID, "foo")
|
2018-05-16 06:44:08 +00:00
|
|
|
if !ok {
|
|
|
|
t.Fatal("foo should exist")
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if !fi.IsInvalid() {
|
2018-05-16 06:44:08 +00:00
|
|
|
t.Error("foo should be invalid")
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if !fi.IsIgnored() {
|
|
|
|
t.Error("foo should be ignored")
|
|
|
|
}
|
2018-05-16 06:44:08 +00:00
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
fi, ok = snap.Get(protocol.LocalDeviceID, "bar")
|
2018-05-16 06:44:08 +00:00
|
|
|
if !ok {
|
|
|
|
t.Fatal("bar should exist")
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if fi.IsInvalid() {
|
2018-05-16 06:44:08 +00:00
|
|
|
t.Error("bar should not be invalid")
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if fi.IsIgnored() {
|
|
|
|
t.Error("bar should not be ignored")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remote files have the invalid bit as usual, and the IsInvalid() method
|
|
|
|
// should pick this up too.
|
2018-05-16 06:44:08 +00:00
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
fi, ok = snap.Get(protocol.DeviceID{42}, "baz")
|
2018-05-16 06:44:08 +00:00
|
|
|
if !ok {
|
|
|
|
t.Fatal("baz should exist")
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if !fi.IsInvalid() {
|
|
|
|
t.Error("baz should be invalid")
|
|
|
|
}
|
|
|
|
if !fi.IsInvalid() {
|
2018-05-16 06:44:08 +00:00
|
|
|
t.Error("baz should be invalid")
|
|
|
|
}
|
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
fi, ok = snap.Get(protocol.DeviceID{42}, "quux")
|
2018-05-16 06:44:08 +00:00
|
|
|
if !ok {
|
|
|
|
t.Fatal("quux should exist")
|
|
|
|
}
|
2018-06-24 07:50:18 +00:00
|
|
|
if fi.IsInvalid() {
|
|
|
|
t.Error("quux should not be invalid")
|
|
|
|
}
|
|
|
|
if fi.IsInvalid() {
|
2018-05-16 06:44:08 +00:00
|
|
|
t.Error("quux should not be invalid")
|
|
|
|
}
|
|
|
|
}
|
2018-06-02 13:08:32 +00:00
|
|
|
|
|
|
|
const myID = 1
|
|
|
|
|
|
|
|
var (
|
|
|
|
remoteDevice0, remoteDevice1 protocol.DeviceID
|
|
|
|
update0to3Folder = "UpdateSchema0to3"
|
|
|
|
invalid = "invalid"
|
|
|
|
slashPrefixed = "/notgood"
|
2022-03-14 21:48:10 +00:00
|
|
|
haveUpdate0to3 map[protocol.DeviceID][]protocol.FileInfo
|
2018-06-02 13:08:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
remoteDevice0, _ = protocol.DeviceIDFromString("AIR6LPZ-7K4PTTV-UXQSMUU-CPQ5YWH-OEDFIIQ-JUG777G-2YQXXR5-YD6AWQR")
|
|
|
|
remoteDevice1, _ = protocol.DeviceIDFromString("I6KAH76-66SLLLB-5PFXSOA-UFJCDZC-YAOMLEK-CP2GB32-BV5RQST-3PSROAU")
|
2022-03-14 21:48:10 +00:00
|
|
|
haveUpdate0to3 = map[protocol.DeviceID][]protocol.FileInfo{
|
2018-06-02 13:08:32 +00:00
|
|
|
protocol.LocalDeviceID: {
|
|
|
|
protocol.FileInfo{Name: "a", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1000}}}, Blocks: genBlocks(1)},
|
|
|
|
protocol.FileInfo{Name: slashPrefixed, Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1000}}}, Blocks: genBlocks(1)},
|
|
|
|
},
|
|
|
|
remoteDevice0: {
|
|
|
|
protocol.FileInfo{Name: "b", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1001}}}, Blocks: genBlocks(2)},
|
2018-06-24 07:50:18 +00:00
|
|
|
protocol.FileInfo{Name: "c", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1002}}}, Blocks: genBlocks(5), RawInvalid: true},
|
2018-06-02 13:08:32 +00:00
|
|
|
protocol.FileInfo{Name: "d", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1003}}}, Blocks: genBlocks(7)},
|
|
|
|
},
|
|
|
|
remoteDevice1: {
|
|
|
|
protocol.FileInfo{Name: "c", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1002}}}, Blocks: genBlocks(7)},
|
2018-06-24 07:50:18 +00:00
|
|
|
protocol.FileInfo{Name: "d", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1003}}}, Blocks: genBlocks(5), RawInvalid: true},
|
|
|
|
protocol.FileInfo{Name: invalid, Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1004}}}, Blocks: genBlocks(5), RawInvalid: true},
|
2018-06-02 13:08:32 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUpdate0to3(t *testing.T) {
|
|
|
|
ldb, err := openJSONS("testdata/v0.14.45-update0to3.db.jsons")
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-10-10 09:34:24 +00:00
|
|
|
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevel(t, ldb)
|
2020-02-11 13:31:43 +00:00
|
|
|
defer db.Close()
|
2018-10-10 09:34:24 +00:00
|
|
|
updater := schemaUpdater{db}
|
2018-06-02 13:08:32 +00:00
|
|
|
|
|
|
|
folder := []byte(update0to3Folder)
|
|
|
|
|
lib/db: Deduplicate block lists in database (fixes #5898) (#6283)
* lib/db: Deduplicate block lists in database (fixes #5898)
This moves the block list in the database out from being just a field on
the FileInfo to being an object of its own. When putting a FileInfo we
marshal the block list separately and store it keyed by the sha256 of
the marshalled block list. When getting, if we are not doing a
"truncated" get, we do an extra read and unmarshal for the block list.
Old block lists are cleared out by a periodic GC sweep. The alternative
would be to use refcounting, but:
- There is a larger risk of getting that wrong and either dropping a
block list in error or keeping them around forever.
- It's tricky with our current database, as we don't have dirty reads.
This means that if we update two FileInfos with identical block lists in
the same transaction we can't just do read/modify/write for the ref
counters as we wouldn't see our own first update. See above about
tracking this and risks about getting it wrong.
GC uses a bloom filter for keys to avoid heavy RAM usage. GC can't run
concurrently with FileInfo updates so there is a new lock around those
operation at the lowlevel.
The end result is a much more compact database, especially for setups
with many peers where files get duplicated many times.
This is per-key-class stats for a large database I'm currently working
with, under the current schema:
```
0x00: 9138161 items, 870876 KB keys + 7397482 KB data, 95 B + 809 B avg, 1637651 B max
0x01: 185656 items, 10388 KB keys + 1790909 KB data, 55 B + 9646 B avg, 924525 B max
0x02: 916890 items, 84795 KB keys + 3667 KB data, 92 B + 4 B avg, 192 B max
0x03: 384 items, 27 KB keys + 5 KB data, 72 B + 15 B avg, 87 B max
0x04: 1109 items, 17 KB keys + 17 KB data, 15 B + 15 B avg, 69 B max
0x06: 383 items, 3 KB keys + 0 KB data, 9 B + 2 B avg, 18 B max
0x07: 510 items, 4 KB keys + 12 KB data, 9 B + 24 B avg, 41 B max
0x08: 1349 items, 12 KB keys + 10 KB data, 9 B + 8 B avg, 17 B max
0x09: 194 items, 0 KB keys + 123 KB data, 5 B + 634 B avg, 11484 B max
0x0a: 3 items, 0 KB keys + 0 KB data, 14 B + 7 B avg, 30 B max
0x0b: 181836 items, 2363 KB keys + 10694 KB data, 13 B + 58 B avg, 173 B max
Total 10426475 items, 968490 KB keys + 9202925 KB data.
```
Note 7.4 GB of data in class 00, total size 9.2 GB. After running the
migration we get this instead:
```
0x00: 9138161 items, 870876 KB keys + 2611392 KB data, 95 B + 285 B avg, 4788 B max
0x01: 185656 items, 10388 KB keys + 1790909 KB data, 55 B + 9646 B avg, 924525 B max
0x02: 916890 items, 84795 KB keys + 3667 KB data, 92 B + 4 B avg, 192 B max
0x03: 384 items, 27 KB keys + 5 KB data, 72 B + 15 B avg, 87 B max
0x04: 1109 items, 17 KB keys + 17 KB data, 15 B + 15 B avg, 69 B max
0x06: 383 items, 3 KB keys + 0 KB data, 9 B + 2 B avg, 18 B max
0x07: 510 items, 4 KB keys + 12 KB data, 9 B + 24 B avg, 41 B max
0x09: 194 items, 0 KB keys + 123 KB data, 5 B + 634 B avg, 11484 B max
0x0a: 3 items, 0 KB keys + 0 KB data, 14 B + 17 B avg, 51 B max
0x0b: 181836 items, 2363 KB keys + 10694 KB data, 13 B + 58 B avg, 173 B max
0x0d: 44282 items, 1461 KB keys + 61081 KB data, 33 B + 1379 B avg, 1637399 B max
Total 10469408 items, 969939 KB keys + 4477905 KB data.
```
Class 00 is now down to 2.6 GB, with just 61 MB added in class 0d.
There will be some additional reads in some cases which theoretically
hurts performance, but this will be more than compensated for by smaller
writes and better compaction.
On my own home setup which just has three devices and a handful of
folders the difference is smaller in absolute numbers of course, but
still less than half the old size:
```
0x00: 297122 items, 20894 KB keys + 306860 KB data, 70 B + 1032 B avg, 103237 B max
0x01: 115299 items, 7738 KB keys + 17542 KB data, 67 B + 152 B avg, 419 B max
0x02: 1430537 items, 121223 KB keys + 5722 KB data, 84 B + 4 B avg, 253 B max
...
Total 1947412 items, 151268 KB keys + 337485 KB data.
```
to:
```
0x00: 297122 items, 20894 KB keys + 37038 KB data, 70 B + 124 B avg, 520 B max
0x01: 115299 items, 7738 KB keys + 17542 KB data, 67 B + 152 B avg, 419 B max
0x02: 1430537 items, 121223 KB keys + 5722 KB data, 84 B + 4 B avg, 253 B max
...
0x0d: 18041 items, 595 KB keys + 71964 KB data, 33 B + 3988 B avg, 101109 B max
Total 1965447 items, 151863 KB keys + 139628 KB data.
```
* wip
* wip
* wip
* wip
2020-01-24 07:35:44 +00:00
|
|
|
if err := updater.updateSchema0to1(0); err != nil {
|
2019-11-29 08:11:52 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-06-02 13:08:32 +00:00
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
trans, err := db.newReadOnlyTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-02-11 13:31:43 +00:00
|
|
|
defer trans.Release()
|
2020-01-21 17:23:08 +00:00
|
|
|
if _, ok, err := trans.getFile(folder, protocol.LocalDeviceID[:], []byte(slashPrefixed)); err != nil {
|
2019-11-29 08:11:52 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
} else if ok {
|
2018-06-02 13:08:32 +00:00
|
|
|
t.Error("File prefixed by '/' was not removed during transition to schema 1")
|
|
|
|
}
|
|
|
|
|
2020-05-30 07:50:23 +00:00
|
|
|
var key []byte
|
|
|
|
|
|
|
|
key, err = db.keyer.GenerateGlobalVersionKey(nil, folder, []byte(invalid))
|
2019-11-29 08:11:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if _, err := db.Get(key); err != nil {
|
2018-06-02 13:08:32 +00:00
|
|
|
t.Error("Invalid file wasn't added to global list")
|
|
|
|
}
|
|
|
|
|
lib/db: Deduplicate block lists in database (fixes #5898) (#6283)
* lib/db: Deduplicate block lists in database (fixes #5898)
This moves the block list in the database out from being just a field on
the FileInfo to being an object of its own. When putting a FileInfo we
marshal the block list separately and store it keyed by the sha256 of
the marshalled block list. When getting, if we are not doing a
"truncated" get, we do an extra read and unmarshal for the block list.
Old block lists are cleared out by a periodic GC sweep. The alternative
would be to use refcounting, but:
- There is a larger risk of getting that wrong and either dropping a
block list in error or keeping them around forever.
- It's tricky with our current database, as we don't have dirty reads.
This means that if we update two FileInfos with identical block lists in
the same transaction we can't just do read/modify/write for the ref
counters as we wouldn't see our own first update. See above about
tracking this and risks about getting it wrong.
GC uses a bloom filter for keys to avoid heavy RAM usage. GC can't run
concurrently with FileInfo updates so there is a new lock around those
operation at the lowlevel.
The end result is a much more compact database, especially for setups
with many peers where files get duplicated many times.
This is per-key-class stats for a large database I'm currently working
with, under the current schema:
```
0x00: 9138161 items, 870876 KB keys + 7397482 KB data, 95 B + 809 B avg, 1637651 B max
0x01: 185656 items, 10388 KB keys + 1790909 KB data, 55 B + 9646 B avg, 924525 B max
0x02: 916890 items, 84795 KB keys + 3667 KB data, 92 B + 4 B avg, 192 B max
0x03: 384 items, 27 KB keys + 5 KB data, 72 B + 15 B avg, 87 B max
0x04: 1109 items, 17 KB keys + 17 KB data, 15 B + 15 B avg, 69 B max
0x06: 383 items, 3 KB keys + 0 KB data, 9 B + 2 B avg, 18 B max
0x07: 510 items, 4 KB keys + 12 KB data, 9 B + 24 B avg, 41 B max
0x08: 1349 items, 12 KB keys + 10 KB data, 9 B + 8 B avg, 17 B max
0x09: 194 items, 0 KB keys + 123 KB data, 5 B + 634 B avg, 11484 B max
0x0a: 3 items, 0 KB keys + 0 KB data, 14 B + 7 B avg, 30 B max
0x0b: 181836 items, 2363 KB keys + 10694 KB data, 13 B + 58 B avg, 173 B max
Total 10426475 items, 968490 KB keys + 9202925 KB data.
```
Note 7.4 GB of data in class 00, total size 9.2 GB. After running the
migration we get this instead:
```
0x00: 9138161 items, 870876 KB keys + 2611392 KB data, 95 B + 285 B avg, 4788 B max
0x01: 185656 items, 10388 KB keys + 1790909 KB data, 55 B + 9646 B avg, 924525 B max
0x02: 916890 items, 84795 KB keys + 3667 KB data, 92 B + 4 B avg, 192 B max
0x03: 384 items, 27 KB keys + 5 KB data, 72 B + 15 B avg, 87 B max
0x04: 1109 items, 17 KB keys + 17 KB data, 15 B + 15 B avg, 69 B max
0x06: 383 items, 3 KB keys + 0 KB data, 9 B + 2 B avg, 18 B max
0x07: 510 items, 4 KB keys + 12 KB data, 9 B + 24 B avg, 41 B max
0x09: 194 items, 0 KB keys + 123 KB data, 5 B + 634 B avg, 11484 B max
0x0a: 3 items, 0 KB keys + 0 KB data, 14 B + 17 B avg, 51 B max
0x0b: 181836 items, 2363 KB keys + 10694 KB data, 13 B + 58 B avg, 173 B max
0x0d: 44282 items, 1461 KB keys + 61081 KB data, 33 B + 1379 B avg, 1637399 B max
Total 10469408 items, 969939 KB keys + 4477905 KB data.
```
Class 00 is now down to 2.6 GB, with just 61 MB added in class 0d.
There will be some additional reads in some cases which theoretically
hurts performance, but this will be more than compensated for by smaller
writes and better compaction.
On my own home setup which just has three devices and a handful of
folders the difference is smaller in absolute numbers of course, but
still less than half the old size:
```
0x00: 297122 items, 20894 KB keys + 306860 KB data, 70 B + 1032 B avg, 103237 B max
0x01: 115299 items, 7738 KB keys + 17542 KB data, 67 B + 152 B avg, 419 B max
0x02: 1430537 items, 121223 KB keys + 5722 KB data, 84 B + 4 B avg, 253 B max
...
Total 1947412 items, 151268 KB keys + 337485 KB data.
```
to:
```
0x00: 297122 items, 20894 KB keys + 37038 KB data, 70 B + 124 B avg, 520 B max
0x01: 115299 items, 7738 KB keys + 17542 KB data, 67 B + 152 B avg, 419 B max
0x02: 1430537 items, 121223 KB keys + 5722 KB data, 84 B + 4 B avg, 253 B max
...
0x0d: 18041 items, 595 KB keys + 71964 KB data, 33 B + 3988 B avg, 101109 B max
Total 1965447 items, 151863 KB keys + 139628 KB data.
```
* wip
* wip
* wip
* wip
2020-01-24 07:35:44 +00:00
|
|
|
if err := updater.updateSchema1to2(1); err != nil {
|
2019-11-29 08:11:52 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-06-02 13:08:32 +00:00
|
|
|
|
|
|
|
found := false
|
2020-01-21 17:23:08 +00:00
|
|
|
trans, err = db.newReadOnlyTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-02-11 13:31:43 +00:00
|
|
|
defer trans.Release()
|
2020-05-30 07:50:23 +00:00
|
|
|
_ = trans.withHaveSequence(folder, 0, func(fi protocol.FileIntf) bool {
|
2018-06-02 13:08:32 +00:00
|
|
|
f := fi.(protocol.FileInfo)
|
|
|
|
l.Infoln(f)
|
|
|
|
if found {
|
|
|
|
t.Error("Unexpected additional file via sequence", f.FileName())
|
|
|
|
return true
|
|
|
|
}
|
2019-07-23 19:48:53 +00:00
|
|
|
if e := haveUpdate0to3[protocol.LocalDeviceID][0]; f.IsEquivalentOptional(e, 0, true, true, 0) {
|
2018-06-02 13:08:32 +00:00
|
|
|
found = true
|
|
|
|
} else {
|
|
|
|
t.Errorf("Wrong file via sequence, got %v, expected %v", f, e)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
if !found {
|
|
|
|
t.Error("Local file wasn't added to sequence bucket", err)
|
|
|
|
}
|
|
|
|
|
lib/db: Deduplicate block lists in database (fixes #5898) (#6283)
* lib/db: Deduplicate block lists in database (fixes #5898)
This moves the block list in the database out from being just a field on
the FileInfo to being an object of its own. When putting a FileInfo we
marshal the block list separately and store it keyed by the sha256 of
the marshalled block list. When getting, if we are not doing a
"truncated" get, we do an extra read and unmarshal for the block list.
Old block lists are cleared out by a periodic GC sweep. The alternative
would be to use refcounting, but:
- There is a larger risk of getting that wrong and either dropping a
block list in error or keeping them around forever.
- It's tricky with our current database, as we don't have dirty reads.
This means that if we update two FileInfos with identical block lists in
the same transaction we can't just do read/modify/write for the ref
counters as we wouldn't see our own first update. See above about
tracking this and risks about getting it wrong.
GC uses a bloom filter for keys to avoid heavy RAM usage. GC can't run
concurrently with FileInfo updates so there is a new lock around those
operation at the lowlevel.
The end result is a much more compact database, especially for setups
with many peers where files get duplicated many times.
This is per-key-class stats for a large database I'm currently working
with, under the current schema:
```
0x00: 9138161 items, 870876 KB keys + 7397482 KB data, 95 B + 809 B avg, 1637651 B max
0x01: 185656 items, 10388 KB keys + 1790909 KB data, 55 B + 9646 B avg, 924525 B max
0x02: 916890 items, 84795 KB keys + 3667 KB data, 92 B + 4 B avg, 192 B max
0x03: 384 items, 27 KB keys + 5 KB data, 72 B + 15 B avg, 87 B max
0x04: 1109 items, 17 KB keys + 17 KB data, 15 B + 15 B avg, 69 B max
0x06: 383 items, 3 KB keys + 0 KB data, 9 B + 2 B avg, 18 B max
0x07: 510 items, 4 KB keys + 12 KB data, 9 B + 24 B avg, 41 B max
0x08: 1349 items, 12 KB keys + 10 KB data, 9 B + 8 B avg, 17 B max
0x09: 194 items, 0 KB keys + 123 KB data, 5 B + 634 B avg, 11484 B max
0x0a: 3 items, 0 KB keys + 0 KB data, 14 B + 7 B avg, 30 B max
0x0b: 181836 items, 2363 KB keys + 10694 KB data, 13 B + 58 B avg, 173 B max
Total 10426475 items, 968490 KB keys + 9202925 KB data.
```
Note 7.4 GB of data in class 00, total size 9.2 GB. After running the
migration we get this instead:
```
0x00: 9138161 items, 870876 KB keys + 2611392 KB data, 95 B + 285 B avg, 4788 B max
0x01: 185656 items, 10388 KB keys + 1790909 KB data, 55 B + 9646 B avg, 924525 B max
0x02: 916890 items, 84795 KB keys + 3667 KB data, 92 B + 4 B avg, 192 B max
0x03: 384 items, 27 KB keys + 5 KB data, 72 B + 15 B avg, 87 B max
0x04: 1109 items, 17 KB keys + 17 KB data, 15 B + 15 B avg, 69 B max
0x06: 383 items, 3 KB keys + 0 KB data, 9 B + 2 B avg, 18 B max
0x07: 510 items, 4 KB keys + 12 KB data, 9 B + 24 B avg, 41 B max
0x09: 194 items, 0 KB keys + 123 KB data, 5 B + 634 B avg, 11484 B max
0x0a: 3 items, 0 KB keys + 0 KB data, 14 B + 17 B avg, 51 B max
0x0b: 181836 items, 2363 KB keys + 10694 KB data, 13 B + 58 B avg, 173 B max
0x0d: 44282 items, 1461 KB keys + 61081 KB data, 33 B + 1379 B avg, 1637399 B max
Total 10469408 items, 969939 KB keys + 4477905 KB data.
```
Class 00 is now down to 2.6 GB, with just 61 MB added in class 0d.
There will be some additional reads in some cases which theoretically
hurts performance, but this will be more than compensated for by smaller
writes and better compaction.
On my own home setup which just has three devices and a handful of
folders the difference is smaller in absolute numbers of course, but
still less than half the old size:
```
0x00: 297122 items, 20894 KB keys + 306860 KB data, 70 B + 1032 B avg, 103237 B max
0x01: 115299 items, 7738 KB keys + 17542 KB data, 67 B + 152 B avg, 419 B max
0x02: 1430537 items, 121223 KB keys + 5722 KB data, 84 B + 4 B avg, 253 B max
...
Total 1947412 items, 151268 KB keys + 337485 KB data.
```
to:
```
0x00: 297122 items, 20894 KB keys + 37038 KB data, 70 B + 124 B avg, 520 B max
0x01: 115299 items, 7738 KB keys + 17542 KB data, 67 B + 152 B avg, 419 B max
0x02: 1430537 items, 121223 KB keys + 5722 KB data, 84 B + 4 B avg, 253 B max
...
0x0d: 18041 items, 595 KB keys + 71964 KB data, 33 B + 3988 B avg, 101109 B max
Total 1965447 items, 151863 KB keys + 139628 KB data.
```
* wip
* wip
* wip
* wip
2020-01-24 07:35:44 +00:00
|
|
|
if err := updater.updateSchema2to3(2); err != nil {
|
2019-11-29 08:11:52 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-06-02 13:08:32 +00:00
|
|
|
|
|
|
|
need := map[string]protocol.FileInfo{
|
|
|
|
haveUpdate0to3[remoteDevice0][0].Name: haveUpdate0to3[remoteDevice0][0],
|
|
|
|
haveUpdate0to3[remoteDevice1][0].Name: haveUpdate0to3[remoteDevice1][0],
|
|
|
|
haveUpdate0to3[remoteDevice0][2].Name: haveUpdate0to3[remoteDevice0][2],
|
|
|
|
}
|
2020-05-30 07:50:23 +00:00
|
|
|
|
2020-01-21 17:23:08 +00:00
|
|
|
trans, err = db.newReadOnlyTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-02-11 13:31:43 +00:00
|
|
|
defer trans.Release()
|
2020-05-30 07:50:23 +00:00
|
|
|
|
|
|
|
key, err = trans.keyer.GenerateNeedFileKey(nil, folder, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
dbi, err := trans.NewPrefixIterator(key)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer dbi.Release()
|
|
|
|
|
|
|
|
for dbi.Next() {
|
|
|
|
name := trans.keyer.NameFromGlobalVersionKey(dbi.Key())
|
|
|
|
key, err = trans.keyer.GenerateGlobalVersionKey(key, folder, name)
|
|
|
|
bs, err := trans.Get(key)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
var vl VersionListDeprecated
|
|
|
|
if err := vl.Unmarshal(bs); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
key, err = trans.keyer.GenerateDeviceFileKey(key, folder, vl.Versions[0].Device, name)
|
2021-03-17 20:41:07 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-05-30 07:50:23 +00:00
|
|
|
fi, ok, err := trans.getFileTrunc(key, false)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !ok {
|
2020-06-07 08:31:12 +00:00
|
|
|
device := "<invalid>"
|
|
|
|
if dev, err := protocol.DeviceIDFromBytes(vl.Versions[0].Device); err != nil {
|
|
|
|
device = dev.String()
|
|
|
|
}
|
|
|
|
t.Fatal("surprise missing global file", string(name), device)
|
2020-05-30 07:50:23 +00:00
|
|
|
}
|
2018-06-02 13:08:32 +00:00
|
|
|
e, ok := need[fi.FileName()]
|
|
|
|
if !ok {
|
|
|
|
t.Error("Got unexpected needed file:", fi.FileName())
|
|
|
|
}
|
|
|
|
f := fi.(protocol.FileInfo)
|
|
|
|
delete(need, f.Name)
|
2019-07-23 19:48:53 +00:00
|
|
|
if !f.IsEquivalentOptional(e, 0, true, true, 0) {
|
2018-06-02 13:08:32 +00:00
|
|
|
t.Errorf("Wrong needed file, got %v, expected %v", f, e)
|
|
|
|
}
|
2020-05-30 07:50:23 +00:00
|
|
|
}
|
|
|
|
if dbi.Error() != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2018-06-02 13:08:32 +00:00
|
|
|
for n := range need {
|
|
|
|
t.Errorf(`Missing needed file "%v"`, n)
|
|
|
|
}
|
|
|
|
}
|
2018-06-26 09:40:34 +00:00
|
|
|
|
2020-03-18 16:34:46 +00:00
|
|
|
// TestRepairSequence checks that a few hand-crafted messed-up sequence entries get fixed.
|
|
|
|
func TestRepairSequence(t *testing.T) {
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevelMemory(t)
|
2020-03-18 16:34:46 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
folderStr := "test"
|
|
|
|
folder := []byte(folderStr)
|
|
|
|
id := protocol.LocalDeviceID
|
|
|
|
short := protocol.LocalDeviceID.Short()
|
|
|
|
|
|
|
|
files := []protocol.FileInfo{
|
2020-03-20 11:07:14 +00:00
|
|
|
{Name: "fine", Blocks: genBlocks(1)},
|
|
|
|
{Name: "duplicate", Blocks: genBlocks(2)},
|
|
|
|
{Name: "missing", Blocks: genBlocks(3)},
|
|
|
|
{Name: "overwriting", Blocks: genBlocks(4)},
|
|
|
|
{Name: "inconsistent", Blocks: genBlocks(5)},
|
2020-08-18 07:20:12 +00:00
|
|
|
{Name: "inconsistentNotIndirected", Blocks: genBlocks(2)},
|
2020-03-18 16:34:46 +00:00
|
|
|
}
|
|
|
|
for i, f := range files {
|
|
|
|
files[i].Version = f.Version.Update(short)
|
|
|
|
}
|
|
|
|
|
|
|
|
trans, err := db.newReadWriteTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer trans.close()
|
|
|
|
|
|
|
|
addFile := func(f protocol.FileInfo, seq int64) {
|
|
|
|
dk, err := trans.keyer.GenerateDeviceFileKey(nil, folder, id[:], []byte(f.Name))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-08-18 07:20:12 +00:00
|
|
|
if err := trans.putFile(dk, f); err != nil {
|
2020-03-18 16:34:46 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
sk, err := trans.keyer.GenerateSequenceKey(nil, folder, seq)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := trans.Put(sk, dk); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Plain normal entry
|
|
|
|
var seq int64 = 1
|
|
|
|
files[0].Sequence = 1
|
|
|
|
addFile(files[0], seq)
|
|
|
|
|
|
|
|
// Second entry once updated with original sequence still in place
|
|
|
|
f := files[1]
|
|
|
|
f.Sequence = int64(len(files) + 1)
|
|
|
|
addFile(f, f.Sequence)
|
|
|
|
// Original sequence entry
|
|
|
|
seq++
|
|
|
|
sk, err := trans.keyer.GenerateSequenceKey(nil, folder, seq)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
dk, err := trans.keyer.GenerateDeviceFileKey(nil, folder, id[:], []byte(f.Name))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := trans.Put(sk, dk); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// File later overwritten thus missing sequence entry
|
|
|
|
seq++
|
|
|
|
files[2].Sequence = seq
|
|
|
|
addFile(files[2], seq)
|
|
|
|
|
|
|
|
// File overwriting previous sequence entry (no seq bump)
|
|
|
|
seq++
|
|
|
|
files[3].Sequence = seq
|
|
|
|
addFile(files[3], seq)
|
|
|
|
|
2020-08-18 07:20:12 +00:00
|
|
|
// Inconistent files
|
2020-03-18 16:34:46 +00:00
|
|
|
seq++
|
|
|
|
files[4].Sequence = 101
|
|
|
|
addFile(files[4], seq)
|
2020-08-18 07:20:12 +00:00
|
|
|
seq++
|
|
|
|
files[5].Sequence = 102
|
|
|
|
addFile(files[5], seq)
|
2020-03-18 16:34:46 +00:00
|
|
|
|
|
|
|
// And a sequence entry pointing at nothing because why not
|
|
|
|
sk, err = trans.keyer.GenerateSequenceKey(nil, folder, 100001)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
dk, err = trans.keyer.GenerateDeviceFileKey(nil, folder, id[:], []byte("nonexisting"))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := trans.Put(sk, dk); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := trans.Commit(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loading the metadata for the first time means a "re"calculation happens,
|
|
|
|
// along which the sequences get repaired too.
|
|
|
|
db.gcMut.RLock()
|
2020-12-21 11:59:22 +00:00
|
|
|
_, err = db.loadMetadataTracker(folderStr)
|
2020-03-18 16:34:46 +00:00
|
|
|
db.gcMut.RUnlock()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the db
|
|
|
|
ro, err := db.newReadOnlyTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer ro.close()
|
|
|
|
|
|
|
|
it, err := ro.NewPrefixIterator([]byte{KeyTypeDevice})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer it.Release()
|
|
|
|
for it.Next() {
|
|
|
|
fi, err := ro.unmarshalTrunc(it.Value(), true)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if sk, err = ro.keyer.GenerateSequenceKey(sk, folder, fi.SequenceNo()); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
dk, err := ro.Get(sk)
|
|
|
|
if backend.IsNotFound(err) {
|
|
|
|
t.Error("Missing sequence entry for", fi.FileName())
|
|
|
|
} else if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !bytes.Equal(it.Key(), dk) {
|
|
|
|
t.Errorf("Wrong key for %v, expected %s, got %s", f.FileName(), it.Key(), dk)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := it.Error(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
it.Release()
|
|
|
|
|
|
|
|
it, err = ro.NewPrefixIterator([]byte{KeyTypeSequence})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer it.Release()
|
|
|
|
for it.Next() {
|
2020-03-20 11:07:14 +00:00
|
|
|
intf, ok, err := ro.getFileTrunc(it.Value(), false)
|
2020-03-18 16:34:46 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-03-20 11:07:14 +00:00
|
|
|
fi := intf.(protocol.FileInfo)
|
2020-03-18 16:34:46 +00:00
|
|
|
seq := ro.keyer.SequenceFromSequenceKey(it.Key())
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("Sequence entry %v points at nothing", seq)
|
|
|
|
} else if fi.SequenceNo() != seq {
|
|
|
|
t.Errorf("Inconsistent sequence entry for %v: %v != %v", fi.FileName(), fi.SequenceNo(), seq)
|
|
|
|
}
|
2020-03-20 11:07:14 +00:00
|
|
|
if len(fi.Blocks) == 0 {
|
|
|
|
t.Error("Missing blocks in", fi.FileName())
|
|
|
|
}
|
2020-03-18 16:34:46 +00:00
|
|
|
}
|
|
|
|
if err := it.Error(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
it.Release()
|
|
|
|
}
|
|
|
|
|
2018-06-26 09:40:34 +00:00
|
|
|
func TestDowngrade(t *testing.T) {
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevelMemory(t)
|
2020-02-11 13:31:43 +00:00
|
|
|
defer db.Close()
|
2019-11-29 08:11:52 +00:00
|
|
|
// sets the min version etc
|
|
|
|
if err := UpdateSchema(db); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-06-26 09:40:34 +00:00
|
|
|
|
2018-10-10 09:34:24 +00:00
|
|
|
// Bump the database version to something newer than we actually support
|
|
|
|
miscDB := NewMiscDataNamespace(db)
|
2019-11-29 08:11:52 +00:00
|
|
|
if err := miscDB.PutInt64("dbVersion", dbVersion+1); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-06-26 09:40:34 +00:00
|
|
|
l.Infoln(dbVersion)
|
|
|
|
|
2018-10-10 09:34:24 +00:00
|
|
|
// Pretend we just opened the DB and attempt to update it again
|
|
|
|
err := UpdateSchema(db)
|
|
|
|
|
2020-06-16 07:27:34 +00:00
|
|
|
if err, ok := err.(*databaseDowngradeError); !ok {
|
2018-06-26 09:40:34 +00:00
|
|
|
t.Fatal("Expected error due to database downgrade, got", err)
|
|
|
|
} else if err.minSyncthingVersion != dbMinSyncthingVersion {
|
|
|
|
t.Fatalf("Error has %v as min Syncthing version, expected %v", err.minSyncthingVersion, dbMinSyncthingVersion)
|
|
|
|
}
|
|
|
|
}
|
2020-03-19 13:30:20 +00:00
|
|
|
|
|
|
|
func TestCheckGlobals(t *testing.T) {
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevelMemory(t)
|
2020-03-19 13:30:20 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
2022-01-31 09:12:52 +00:00
|
|
|
fs := newFileSet(t, "test", db)
|
2020-03-19 13:30:20 +00:00
|
|
|
|
|
|
|
// Add any file
|
|
|
|
name := "foo"
|
|
|
|
fs.Update(protocol.LocalDeviceID, []protocol.FileInfo{
|
|
|
|
{
|
|
|
|
Name: name,
|
|
|
|
Type: protocol.FileInfoTypeFile,
|
|
|
|
Version: protocol.Vector{Counters: []protocol.Counter{{ID: 1, Value: 1001}}},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
// Remove just the file entry
|
|
|
|
if err := db.dropPrefix([]byte{KeyTypeDevice}); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean up global entry of the now missing file
|
2021-04-05 08:24:16 +00:00
|
|
|
if repaired, err := db.checkGlobals(fs.folder); err != nil {
|
2020-03-19 13:30:20 +00:00
|
|
|
t.Fatal(err)
|
2021-02-04 13:42:46 +00:00
|
|
|
} else if repaired != 1 {
|
|
|
|
t.Error("Expected 1 repaired global item, got", repaired)
|
2020-03-19 13:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the global entry is gone
|
|
|
|
gk, err := db.keyer.GenerateGlobalVersionKey(nil, []byte(fs.folder), []byte(name))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = db.Get(gk)
|
|
|
|
if !backend.IsNotFound(err) {
|
|
|
|
t.Error("Expected key missing error, got", err)
|
|
|
|
}
|
|
|
|
}
|
2020-05-11 13:07:06 +00:00
|
|
|
|
|
|
|
func TestUpdateTo10(t *testing.T) {
|
|
|
|
ldb, err := openJSONS("./testdata/v1.4.0-updateTo10.json")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevel(t, ldb)
|
2020-05-11 13:07:06 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
UpdateSchema(db)
|
|
|
|
|
|
|
|
folder := "test"
|
|
|
|
|
2020-12-21 11:59:22 +00:00
|
|
|
meta, err := db.getMetaAndCheck(folder)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-05-11 13:07:06 +00:00
|
|
|
|
|
|
|
empty := Counts{}
|
|
|
|
|
|
|
|
c := meta.Counts(protocol.LocalDeviceID, needFlag)
|
|
|
|
if c.Files != 1 {
|
|
|
|
t.Error("Expected 1 needed file locally, got", c.Files)
|
|
|
|
}
|
|
|
|
c.Files = 0
|
|
|
|
if c.Deleted != 1 {
|
|
|
|
t.Error("Expected 1 needed deletion locally, got", c.Deleted)
|
|
|
|
}
|
|
|
|
c.Deleted = 0
|
|
|
|
if !c.Equal(empty) {
|
|
|
|
t.Error("Expected all counts to be zero, got", c)
|
|
|
|
}
|
|
|
|
c = meta.Counts(remoteDevice0, needFlag)
|
|
|
|
if !c.Equal(empty) {
|
|
|
|
t.Error("Expected all counts to be zero, got", c)
|
|
|
|
}
|
|
|
|
|
|
|
|
trans, err := db.newReadOnlyTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer trans.Release()
|
|
|
|
// a
|
|
|
|
vl, err := trans.getGlobalVersions(nil, []byte(folder), []byte("a"))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-05-30 07:50:23 +00:00
|
|
|
for _, v := range vl.RawVersions {
|
2020-05-11 13:07:06 +00:00
|
|
|
if !v.Deleted {
|
|
|
|
t.Error("Unexpected undeleted global version for a")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// b
|
|
|
|
vl, err = trans.getGlobalVersions(nil, []byte(folder), []byte("b"))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-05-30 07:50:23 +00:00
|
|
|
if !vl.RawVersions[0].Deleted {
|
2020-05-11 13:07:06 +00:00
|
|
|
t.Error("vl.Versions[0] not deleted for b")
|
|
|
|
}
|
2020-05-30 07:50:23 +00:00
|
|
|
if vl.RawVersions[1].Deleted {
|
2020-05-11 13:07:06 +00:00
|
|
|
t.Error("vl.Versions[1] deleted for b")
|
|
|
|
}
|
|
|
|
// c
|
|
|
|
vl, err = trans.getGlobalVersions(nil, []byte(folder), []byte("c"))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-05-30 07:50:23 +00:00
|
|
|
if vl.RawVersions[0].Deleted {
|
2020-05-11 13:07:06 +00:00
|
|
|
t.Error("vl.Versions[0] deleted for c")
|
|
|
|
}
|
2020-05-30 07:50:23 +00:00
|
|
|
if !vl.RawVersions[1].Deleted {
|
2020-05-11 13:07:06 +00:00
|
|
|
t.Error("vl.Versions[1] not deleted for c")
|
|
|
|
}
|
|
|
|
}
|
2020-05-16 12:34:53 +00:00
|
|
|
|
|
|
|
func TestDropDuplicates(t *testing.T) {
|
|
|
|
names := []string{
|
|
|
|
"foo",
|
|
|
|
"bar",
|
|
|
|
"dcxvoijnds",
|
|
|
|
"3d/dsfase/4/ss2",
|
|
|
|
}
|
|
|
|
tcs := []struct{ in, out []int }{
|
|
|
|
{[]int{0}, []int{0}},
|
|
|
|
{[]int{0, 1}, []int{0, 1}},
|
|
|
|
{[]int{0, 1, 0, 1}, []int{0, 1}},
|
|
|
|
{[]int{0, 1, 1, 1, 1}, []int{0, 1}},
|
|
|
|
{[]int{0, 0, 0, 1}, []int{0, 1}},
|
|
|
|
{[]int{0, 1, 2, 3}, []int{0, 1, 2, 3}},
|
|
|
|
{[]int{3, 2, 1, 0, 0, 1, 2, 3}, []int{0, 1, 2, 3}},
|
|
|
|
{[]int{0, 1, 1, 3, 0, 1, 0, 1, 2, 3}, []int{0, 1, 2, 3}},
|
|
|
|
}
|
|
|
|
|
|
|
|
for tci, tc := range tcs {
|
|
|
|
inp := make([]protocol.FileInfo, len(tc.in))
|
|
|
|
expSeq := make(map[string]int)
|
|
|
|
for i, j := range tc.in {
|
|
|
|
inp[i] = protocol.FileInfo{Name: names[j], Sequence: int64(i)}
|
|
|
|
expSeq[names[j]] = i
|
|
|
|
}
|
|
|
|
outp := normalizeFilenamesAndDropDuplicates(inp)
|
|
|
|
if len(outp) != len(tc.out) {
|
|
|
|
t.Errorf("tc %v: Expected %v entries, got %v", tci, len(tc.out), len(outp))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for i, f := range outp {
|
|
|
|
if exp := names[tc.out[i]]; exp != f.Name {
|
|
|
|
t.Errorf("tc %v: Got file %v at pos %v, expected %v", tci, f.Name, i, exp)
|
|
|
|
}
|
|
|
|
if exp := int64(expSeq[outp[i].Name]); exp != f.Sequence {
|
|
|
|
t.Errorf("tc %v: Got sequence %v at pos %v, expected %v", tci, f.Sequence, i, exp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-11 07:22:15 +00:00
|
|
|
|
|
|
|
func TestGCIndirect(t *testing.T) {
|
|
|
|
// Verify that the gcIndirect run actually removes block lists.
|
|
|
|
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevelMemory(t)
|
2020-07-11 07:22:15 +00:00
|
|
|
defer db.Close()
|
2020-12-21 11:59:22 +00:00
|
|
|
meta := newMetadataTracker(db.keyer, events.NoopLogger)
|
2020-07-11 07:22:15 +00:00
|
|
|
|
|
|
|
// Add three files with different block lists
|
|
|
|
|
|
|
|
files := []protocol.FileInfo{
|
|
|
|
{Name: "a", Blocks: genBlocks(100)},
|
|
|
|
{Name: "b", Blocks: genBlocks(200)},
|
|
|
|
{Name: "c", Blocks: genBlocks(300)},
|
|
|
|
}
|
|
|
|
|
|
|
|
db.updateLocalFiles([]byte("folder"), files, meta)
|
|
|
|
|
|
|
|
// Run a GC pass
|
|
|
|
|
|
|
|
db.gcIndirect(context.Background())
|
|
|
|
|
|
|
|
// Verify that we have three different block lists
|
|
|
|
|
|
|
|
n, err := numBlockLists(db)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if n != len(files) {
|
|
|
|
t.Fatal("expected each file to have a block list")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change the block lists for each file
|
|
|
|
|
|
|
|
for i := range files {
|
|
|
|
files[i].Version = files[i].Version.Update(42)
|
|
|
|
files[i].Blocks = genBlocks(len(files[i].Blocks) + 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
db.updateLocalFiles([]byte("folder"), files, meta)
|
|
|
|
|
|
|
|
// Verify that we now have *six* different block lists
|
|
|
|
|
|
|
|
n, err = numBlockLists(db)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if n != 2*len(files) {
|
|
|
|
t.Fatal("expected both old and new block lists to exist")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run a GC pass
|
|
|
|
|
|
|
|
db.gcIndirect(context.Background())
|
|
|
|
|
|
|
|
// Verify that we now have just the three we need, again
|
|
|
|
|
|
|
|
n, err = numBlockLists(db)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if n != len(files) {
|
|
|
|
t.Fatal("expected GC to collect all but the needed ones")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Double check the correctness by loading the block lists and comparing with what we stored
|
|
|
|
|
|
|
|
tr, err := db.newReadOnlyTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal()
|
|
|
|
}
|
|
|
|
defer tr.Release()
|
|
|
|
for _, f := range files {
|
|
|
|
fi, ok, err := tr.getFile([]byte("folder"), protocol.LocalDeviceID[:], []byte(f.Name))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
t.Fatal("mysteriously missing")
|
|
|
|
}
|
|
|
|
if len(fi.Blocks) != len(f.Blocks) {
|
|
|
|
t.Fatal("block list mismatch")
|
|
|
|
}
|
|
|
|
for i := range fi.Blocks {
|
|
|
|
if !bytes.Equal(fi.Blocks[i].Hash, f.Blocks[i].Hash) {
|
|
|
|
t.Fatal("hash mismatch")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-18 07:20:12 +00:00
|
|
|
func TestUpdateTo14(t *testing.T) {
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevelMemory(t)
|
2020-08-18 07:20:12 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
folderStr := "default"
|
|
|
|
folder := []byte(folderStr)
|
|
|
|
name := []byte("foo")
|
|
|
|
file := protocol.FileInfo{Name: string(name), Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1000}}}, Blocks: genBlocks(blocksIndirectionCutoff - 1)}
|
|
|
|
file.BlocksHash = protocol.BlocksHash(file.Blocks)
|
|
|
|
fileWOBlocks := file
|
|
|
|
fileWOBlocks.Blocks = nil
|
2020-12-21 11:59:22 +00:00
|
|
|
meta, err := db.loadMetadataTracker(folderStr)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-08-18 07:20:12 +00:00
|
|
|
|
|
|
|
// Initally add the correct file the usual way, all good here.
|
|
|
|
if err := db.updateLocalFiles(folder, []protocol.FileInfo{file}, meta); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Simulate the previous bug, where .putFile could write a file info without
|
|
|
|
// blocks, even though the file has them (and thus a non-nil BlocksHash).
|
|
|
|
trans, err := db.newReadWriteTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer trans.close()
|
|
|
|
key, err := db.keyer.GenerateDeviceFileKey(nil, folder, protocol.LocalDeviceID[:], name)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
fiBs := mustMarshal(&fileWOBlocks)
|
|
|
|
if err := trans.Put(key, fiBs); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := trans.Commit(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
trans.close()
|
|
|
|
|
|
|
|
// Run migration, pretending were still on schema 13.
|
|
|
|
if err := (&schemaUpdater{db}).updateSchemaTo14(13); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// checks
|
|
|
|
ro, err := db.newReadOnlyTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer ro.close()
|
|
|
|
if f, ok, err := ro.getFileByKey(key); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if !ok {
|
|
|
|
t.Error("file missing")
|
|
|
|
} else if !f.MustRescan() {
|
|
|
|
t.Error("file not marked as MustRescan")
|
|
|
|
}
|
|
|
|
|
|
|
|
if vl, err := ro.getGlobalVersions(nil, folder, name); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if fv, ok := vl.GetGlobal(); !ok {
|
|
|
|
t.Error("missing global")
|
|
|
|
} else if !fv.IsInvalid() {
|
|
|
|
t.Error("global not marked as invalid")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-19 11:13:44 +00:00
|
|
|
func TestFlushRecursion(t *testing.T) {
|
|
|
|
// Verify that a commit hook can write to the transaction without
|
|
|
|
// causing another flush and thus recursion.
|
|
|
|
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevelMemory(t)
|
2020-08-19 11:13:44 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
// A commit hook that writes a small piece of data to the transaction.
|
|
|
|
hookFired := 0
|
|
|
|
hook := func(tx backend.WriteTransaction) error {
|
|
|
|
err := tx.Put([]byte(fmt.Sprintf("hook-key-%d", hookFired)), []byte(fmt.Sprintf("hook-value-%d", hookFired)))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
hookFired++
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// A transaction.
|
|
|
|
tx, err := db.NewWriteTransaction(hook)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer tx.Release()
|
|
|
|
|
|
|
|
// Write stuff until the transaction flushes, thus firing the hook.
|
|
|
|
i := 0
|
|
|
|
for hookFired == 0 {
|
|
|
|
err := tx.Put([]byte(fmt.Sprintf("key-%d", i)), []byte(fmt.Sprintf("value-%d", i)))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
// The hook should have fired precisely once.
|
|
|
|
if hookFired != 1 {
|
|
|
|
t.Error("expect one hook fire, not", hookFired)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 12:01:46 +00:00
|
|
|
func TestCheckLocalNeed(t *testing.T) {
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevelMemory(t)
|
2020-09-04 12:01:46 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
folderStr := "test"
|
2022-01-31 09:12:52 +00:00
|
|
|
fs := newFileSet(t, folderStr, db)
|
2020-09-04 12:01:46 +00:00
|
|
|
|
|
|
|
// Add files such that we are in sync for a and b, and need c and d.
|
|
|
|
files := []protocol.FileInfo{
|
|
|
|
{Name: "a", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1}}}},
|
|
|
|
{Name: "b", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1}}}},
|
|
|
|
{Name: "c", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1}}}},
|
|
|
|
{Name: "d", Version: protocol.Vector{Counters: []protocol.Counter{{ID: myID, Value: 1}}}},
|
|
|
|
}
|
|
|
|
fs.Update(protocol.LocalDeviceID, files)
|
|
|
|
files[2].Version = files[2].Version.Update(remoteDevice0.Short())
|
|
|
|
files[3].Version = files[2].Version.Update(remoteDevice0.Short())
|
|
|
|
fs.Update(remoteDevice0, files)
|
|
|
|
|
|
|
|
checkNeed := func() {
|
2021-03-07 12:43:22 +00:00
|
|
|
snap := snapshot(t, fs)
|
2020-09-04 12:01:46 +00:00
|
|
|
defer snap.Release()
|
|
|
|
c := snap.NeedSize(protocol.LocalDeviceID)
|
|
|
|
if c.Files != 2 {
|
|
|
|
t.Errorf("Expected 2 needed files locally, got %v in meta", c.Files)
|
|
|
|
}
|
|
|
|
needed := make([]protocol.FileInfo, 0, 2)
|
|
|
|
snap.WithNeed(protocol.LocalDeviceID, func(fi protocol.FileIntf) bool {
|
|
|
|
needed = append(needed, fi.(protocol.FileInfo))
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
if l := len(needed); l != 2 {
|
|
|
|
t.Errorf("Expected 2 needed files locally, got %v in db", l)
|
|
|
|
} else if needed[0].Name != "c" || needed[1].Name != "d" {
|
|
|
|
t.Errorf("Expected files c and d to be needed, got %v and %v", needed[0].Name, needed[1].Name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
checkNeed()
|
|
|
|
|
|
|
|
trans, err := db.newReadWriteTransaction()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer trans.close()
|
|
|
|
|
|
|
|
// Add "b" to needed and remove "d"
|
|
|
|
folder := []byte(folderStr)
|
|
|
|
key, err := trans.keyer.GenerateNeedFileKey(nil, folder, []byte(files[1].Name))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err = trans.Put(key, nil); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
key, err = trans.keyer.GenerateNeedFileKey(nil, folder, []byte(files[3].Name))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err = trans.Delete(key); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := trans.Commit(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if repaired, err := db.checkLocalNeed(folder); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if repaired != 2 {
|
|
|
|
t.Error("Expected 2 repaired local need items, got", repaired)
|
|
|
|
}
|
|
|
|
|
|
|
|
checkNeed()
|
|
|
|
}
|
|
|
|
|
2020-09-07 18:19:03 +00:00
|
|
|
func TestDuplicateNeedCount(t *testing.T) {
|
2020-12-21 11:59:22 +00:00
|
|
|
db := newLowlevelMemory(t)
|
2020-09-07 18:19:03 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
folder := "test"
|
|
|
|
|
2022-01-31 09:12:52 +00:00
|
|
|
fs := newFileSet(t, folder, db)
|
2020-09-07 18:19:03 +00:00
|
|
|
files := []protocol.FileInfo{{Name: "foo", Version: protocol.Vector{}.Update(myID), Sequence: 1}}
|
|
|
|
fs.Update(protocol.LocalDeviceID, files)
|
|
|
|
files[0].Version = files[0].Version.Update(remoteDevice0.Short())
|
|
|
|
fs.Update(remoteDevice0, files)
|
|
|
|
|
2020-09-10 08:54:41 +00:00
|
|
|
db.checkRepair()
|
2020-09-07 18:19:03 +00:00
|
|
|
|
2022-01-31 09:12:52 +00:00
|
|
|
fs = newFileSet(t, folder, db)
|
2020-09-07 18:19:03 +00:00
|
|
|
found := false
|
|
|
|
for _, c := range fs.meta.counts.Counts {
|
|
|
|
if bytes.Equal(protocol.LocalDeviceID[:], c.DeviceID) && c.LocalFlags == needFlag {
|
|
|
|
if found {
|
|
|
|
t.Fatal("second need count for local device encountered")
|
|
|
|
}
|
|
|
|
found = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Fatal("no need count for local device encountered")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-08 07:38:41 +00:00
|
|
|
func TestNeedAfterDropGlobal(t *testing.T) {
|
|
|
|
db := newLowlevelMemory(t)
|
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
folder := "test"
|
|
|
|
|
2022-01-31 09:12:52 +00:00
|
|
|
fs := newFileSet(t, folder, db)
|
2021-02-08 07:38:41 +00:00
|
|
|
|
|
|
|
// Initial:
|
|
|
|
// Three devices and a file "test": local has Version 1, remoteDevice0
|
|
|
|
// Version 2 and remoteDevice2 doesn't have it.
|
|
|
|
// All of them have "bar", just so the db knows about remoteDevice2.
|
|
|
|
files := []protocol.FileInfo{
|
|
|
|
{Name: "foo", Version: protocol.Vector{}.Update(myID), Sequence: 1},
|
|
|
|
{Name: "bar", Version: protocol.Vector{}.Update(myID), Sequence: 2},
|
|
|
|
}
|
|
|
|
fs.Update(protocol.LocalDeviceID, files)
|
|
|
|
files[0].Version = files[0].Version.Update(myID)
|
|
|
|
fs.Update(remoteDevice0, files)
|
|
|
|
fs.Update(remoteDevice1, files[1:])
|
|
|
|
|
|
|
|
// remoteDevice1 needs one file: test
|
2021-03-07 12:43:22 +00:00
|
|
|
snap := snapshot(t, fs)
|
2021-02-08 07:38:41 +00:00
|
|
|
c := snap.NeedSize(remoteDevice1)
|
|
|
|
if c.Files != 1 {
|
|
|
|
t.Errorf("Expected 1 needed files initially, got %v", c.Files)
|
|
|
|
}
|
|
|
|
snap.Release()
|
|
|
|
|
|
|
|
// Drop remoteDevice0, i.e. remove all their files from db.
|
|
|
|
// That changes the global file, which is now what local has.
|
|
|
|
fs.Drop(remoteDevice0)
|
|
|
|
|
|
|
|
// remoteDevice1 still needs test.
|
2021-03-07 12:43:22 +00:00
|
|
|
snap = snapshot(t, fs)
|
2021-02-08 07:38:41 +00:00
|
|
|
c = snap.NeedSize(remoteDevice1)
|
|
|
|
if c.Files != 1 {
|
|
|
|
t.Errorf("Expected still 1 needed files, got %v", c.Files)
|
|
|
|
}
|
|
|
|
snap.Release()
|
|
|
|
}
|
|
|
|
|
2020-07-11 07:22:15 +00:00
|
|
|
func numBlockLists(db *Lowlevel) (int, error) {
|
|
|
|
it, err := db.Backend.NewPrefixIterator([]byte{KeyTypeBlockList})
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
defer it.Release()
|
|
|
|
n := 0
|
|
|
|
for it.Next() {
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
if err := it.Error(); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return n, nil
|
|
|
|
}
|