| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // 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,
- // You can obtain one at https://mozilla.org/MPL/2.0/.
- // Package db provides a set type to track local/remote files with newness
- // checks. We must do a certain amount of normalization in here. We will get
- // fed paths with either native or wire-format separators and encodings
- // depending on who calls us. We transform paths to wire-format (NFC and
- // slashes) on the way to the database, and transform to native format
- // (varying separator and encoding) on the way back out.
- package db
- import (
- "os"
- "sort"
- "time"
- "github.com/syncthing/syncthing/lib/fs"
- "github.com/syncthing/syncthing/lib/osutil"
- "github.com/syncthing/syncthing/lib/protocol"
- "github.com/syncthing/syncthing/lib/sync"
- "github.com/syndtr/goleveldb/leveldb/util"
- )
- type FileSet struct {
- folder string
- fs fs.Filesystem
- db *instance
- blockmap *BlockMap
- meta *metadataTracker
- updateMutex sync.Mutex // protects database updates and the corresponding metadata changes
- }
- // FileIntf is the set of methods implemented by both protocol.FileInfo and
- // FileInfoTruncated.
- type FileIntf interface {
- FileSize() int64
- FileName() string
- FileLocalFlags() uint32
- IsDeleted() bool
- IsInvalid() bool
- IsIgnored() bool
- IsUnsupported() bool
- MustRescan() bool
- IsReceiveOnlyChanged() bool
- IsDirectory() bool
- IsSymlink() bool
- ShouldConflict() bool
- HasPermissionBits() bool
- SequenceNo() int64
- BlockSize() int
- FileVersion() protocol.Vector
- }
- // The Iterator is called with either a protocol.FileInfo or a
- // FileInfoTruncated (depending on the method) and returns true to
- // continue iteration, false to stop.
- type Iterator func(f FileIntf) bool
- var databaseRecheckInterval = 30 * 24 * time.Hour
- func init() {
- if dur, err := time.ParseDuration(os.Getenv("STRECHECKDBEVERY")); err == nil {
- databaseRecheckInterval = dur
- }
- }
- func NewFileSet(folder string, fs fs.Filesystem, ll *Lowlevel) *FileSet {
- db := newInstance(ll)
- var s = FileSet{
- folder: folder,
- fs: fs,
- db: db,
- blockmap: NewBlockMap(ll, folder),
- meta: newMetadataTracker(),
- updateMutex: sync.NewMutex(),
- }
- if err := s.meta.fromDB(db, []byte(folder)); err != nil {
- l.Infof("No stored folder metadata for %q: recalculating", folder)
- s.recalcCounts()
- } else if age := time.Since(s.meta.Created()); age > databaseRecheckInterval {
- l.Infof("Stored folder metadata for %q is %v old; recalculating", folder, age)
- s.recalcCounts()
- }
- return &s
- }
- func (s *FileSet) recalcCounts() {
- s.meta = newMetadataTracker()
- s.db.checkGlobals([]byte(s.folder), s.meta)
- var deviceID protocol.DeviceID
- s.db.withAllFolderTruncated([]byte(s.folder), func(device []byte, f FileInfoTruncated) bool {
- copy(deviceID[:], device)
- s.meta.addFile(deviceID, f)
- return true
- })
- s.meta.SetCreated()
- s.meta.toDB(s.db, []byte(s.folder))
- }
- func (s *FileSet) Drop(device protocol.DeviceID) {
- l.Debugf("%s Drop(%v)", s.folder, device)
- s.updateMutex.Lock()
- defer s.updateMutex.Unlock()
- s.db.dropDeviceFolder(device[:], []byte(s.folder), s.meta)
- if device == protocol.LocalDeviceID {
- s.blockmap.Drop()
- s.meta.resetCounts(device)
- // We deliberately do not reset the sequence number here. Dropping
- // all files for the local device ID only happens in testing - which
- // expects the sequence to be retained, like an old Replace() of all
- // files would do. However, if we ever did it "in production" we
- // would anyway want to retain the sequence for delta indexes to be
- // happy.
- } else {
- // Here, on the other hand, we want to make sure that any file
- // announced from the remote is newer than our current sequence
- // number.
- s.meta.resetAll(device)
- }
- s.meta.toDB(s.db, []byte(s.folder))
- }
- func (s *FileSet) Update(device protocol.DeviceID, fs []protocol.FileInfo) {
- l.Debugf("%s Update(%v, [%d])", s.folder, device, len(fs))
- // do not modify fs in place, it is still used in outer scope
- fs = append([]protocol.FileInfo(nil), fs...)
- normalizeFilenames(fs)
- s.updateMutex.Lock()
- defer s.updateMutex.Unlock()
- defer s.meta.toDB(s.db, []byte(s.folder))
- if device != protocol.LocalDeviceID {
- // Easy case, just update the files and we're done.
- s.db.updateFiles([]byte(s.folder), device[:], fs, s.meta)
- return
- }
- // For the local device we have a bunch of metadata to track however...
- discards := make([]protocol.FileInfo, 0, len(fs))
- updates := make([]protocol.FileInfo, 0, len(fs))
- // db.UpdateFiles will sort unchanged files out -> save one db lookup
- // filter slice according to https://github.com/golang/go/wiki/SliceTricks#filtering-without-allocating
- oldFs := fs
- fs = fs[:0]
- folder := []byte(s.folder)
- for _, nf := range oldFs {
- ef, ok := s.db.getFileDirty(folder, device[:], []byte(osutil.NormalizedFilename(nf.Name)))
- if ok && unchanged(nf, ef) {
- continue
- }
- nf.Sequence = s.meta.nextSeq(protocol.LocalDeviceID)
- fs = append(fs, nf)
- if ok {
- discards = append(discards, ef)
- }
- updates = append(updates, nf)
- }
- // The ordering here is important. We first remove stuff that point to
- // files we are going to update, then update them, then add new index
- // pointers etc. In addition, we do the discards in reverse order so
- // that a reader traversing the sequence index will get a consistent
- // view up until the point they meet the writer.
- sort.Slice(discards, func(a, b int) bool {
- // n.b. "b < a" instead of the usual "a < b"
- return discards[b].Sequence < discards[a].Sequence
- })
- s.blockmap.Discard(discards)
- s.db.removeSequences(folder, discards)
- s.db.updateFiles([]byte(s.folder), device[:], fs, s.meta)
- s.db.addSequences(folder, updates)
- s.blockmap.Update(updates)
- }
- func (s *FileSet) WithNeed(device protocol.DeviceID, fn Iterator) {
- l.Debugf("%s WithNeed(%v)", s.folder, device)
- s.db.withNeed([]byte(s.folder), device[:], false, nativeFileIterator(fn))
- }
- func (s *FileSet) WithNeedTruncated(device protocol.DeviceID, fn Iterator) {
- l.Debugf("%s WithNeedTruncated(%v)", s.folder, device)
- s.db.withNeed([]byte(s.folder), device[:], true, nativeFileIterator(fn))
- }
- func (s *FileSet) WithHave(device protocol.DeviceID, fn Iterator) {
- l.Debugf("%s WithHave(%v)", s.folder, device)
- s.db.withHave([]byte(s.folder), device[:], nil, false, nativeFileIterator(fn))
- }
- func (s *FileSet) WithHaveTruncated(device protocol.DeviceID, fn Iterator) {
- l.Debugf("%s WithHaveTruncated(%v)", s.folder, device)
- s.db.withHave([]byte(s.folder), device[:], nil, true, nativeFileIterator(fn))
- }
- func (s *FileSet) WithHaveSequence(startSeq int64, fn Iterator) {
- l.Debugf("%s WithHaveSequence(%v)", s.folder, startSeq)
- s.db.withHaveSequence([]byte(s.folder), startSeq, nativeFileIterator(fn))
- }
- // Except for an item with a path equal to prefix, only children of prefix are iterated.
- // E.g. for prefix "dir", "dir/file" is iterated, but "dir.file" is not.
- func (s *FileSet) WithPrefixedHaveTruncated(device protocol.DeviceID, prefix string, fn Iterator) {
- l.Debugf(`%s WithPrefixedHaveTruncated(%v, "%v")`, s.folder, device, prefix)
- s.db.withHave([]byte(s.folder), device[:], []byte(osutil.NormalizedFilename(prefix)), true, nativeFileIterator(fn))
- }
- func (s *FileSet) WithGlobal(fn Iterator) {
- l.Debugf("%s WithGlobal()", s.folder)
- s.db.withGlobal([]byte(s.folder), nil, false, nativeFileIterator(fn))
- }
- func (s *FileSet) WithGlobalTruncated(fn Iterator) {
- l.Debugf("%s WithGlobalTruncated()", s.folder)
- s.db.withGlobal([]byte(s.folder), nil, true, nativeFileIterator(fn))
- }
- // Except for an item with a path equal to prefix, only children of prefix are iterated.
- // E.g. for prefix "dir", "dir/file" is iterated, but "dir.file" is not.
- func (s *FileSet) WithPrefixedGlobalTruncated(prefix string, fn Iterator) {
- l.Debugf(`%s WithPrefixedGlobalTruncated("%v")`, s.folder, prefix)
- s.db.withGlobal([]byte(s.folder), []byte(osutil.NormalizedFilename(prefix)), true, nativeFileIterator(fn))
- }
- func (s *FileSet) Get(device protocol.DeviceID, file string) (protocol.FileInfo, bool) {
- f, ok := s.db.getFileDirty([]byte(s.folder), device[:], []byte(osutil.NormalizedFilename(file)))
- f.Name = osutil.NativeFilename(f.Name)
- return f, ok
- }
- func (s *FileSet) GetGlobal(file string) (protocol.FileInfo, bool) {
- fi, ok := s.db.getGlobalDirty([]byte(s.folder), []byte(osutil.NormalizedFilename(file)), false)
- if !ok {
- return protocol.FileInfo{}, false
- }
- f := fi.(protocol.FileInfo)
- f.Name = osutil.NativeFilename(f.Name)
- return f, true
- }
- func (s *FileSet) GetGlobalTruncated(file string) (FileInfoTruncated, bool) {
- fi, ok := s.db.getGlobalDirty([]byte(s.folder), []byte(osutil.NormalizedFilename(file)), true)
- if !ok {
- return FileInfoTruncated{}, false
- }
- f := fi.(FileInfoTruncated)
- f.Name = osutil.NativeFilename(f.Name)
- return f, true
- }
- func (s *FileSet) Availability(file string) []protocol.DeviceID {
- return s.db.availability([]byte(s.folder), []byte(osutil.NormalizedFilename(file)))
- }
- func (s *FileSet) Sequence(device protocol.DeviceID) int64 {
- return s.meta.Sequence(device)
- }
- func (s *FileSet) LocalSize() Counts {
- local := s.meta.Counts(protocol.LocalDeviceID, 0)
- recvOnlyChanged := s.meta.Counts(protocol.LocalDeviceID, protocol.FlagLocalReceiveOnly)
- return local.Add(recvOnlyChanged)
- }
- func (s *FileSet) ReceiveOnlyChangedSize() Counts {
- return s.meta.Counts(protocol.LocalDeviceID, protocol.FlagLocalReceiveOnly)
- }
- func (s *FileSet) GlobalSize() Counts {
- global := s.meta.Counts(protocol.GlobalDeviceID, 0)
- recvOnlyChanged := s.meta.Counts(protocol.GlobalDeviceID, protocol.FlagLocalReceiveOnly)
- return global.Add(recvOnlyChanged)
- }
- func (s *FileSet) IndexID(device protocol.DeviceID) protocol.IndexID {
- id := s.db.getIndexID(device[:], []byte(s.folder))
- if id == 0 && device == protocol.LocalDeviceID {
- // No index ID set yet. We create one now.
- id = protocol.NewIndexID()
- s.db.setIndexID(device[:], []byte(s.folder), id)
- }
- return id
- }
- func (s *FileSet) SetIndexID(device protocol.DeviceID, id protocol.IndexID) {
- if device == protocol.LocalDeviceID {
- panic("do not explicitly set index ID for local device")
- }
- s.db.setIndexID(device[:], []byte(s.folder), id)
- }
- func (s *FileSet) MtimeFS() *fs.MtimeFS {
- prefix := s.db.keyer.GenerateMtimesKey(nil, []byte(s.folder))
- kv := NewNamespacedKV(s.db.Lowlevel, string(prefix))
- return fs.NewMtimeFS(s.fs, kv)
- }
- func (s *FileSet) ListDevices() []protocol.DeviceID {
- return s.meta.devices()
- }
- // DropFolder clears out all information related to the given folder from the
- // database.
- func DropFolder(ll *Lowlevel, folder string) {
- db := newInstance(ll)
- db.dropFolder([]byte(folder))
- db.dropMtimes([]byte(folder))
- db.dropFolderMeta([]byte(folder))
- bm := NewBlockMap(ll, folder)
- bm.Drop()
- // Also clean out the folder ID mapping.
- db.folderIdx.Delete([]byte(folder))
- }
- // DropDeltaIndexIDs removes all delta index IDs from the database.
- // This will cause a full index transmission on the next connection.
- func DropDeltaIndexIDs(db *Lowlevel) {
- dbi := db.NewIterator(util.BytesPrefix([]byte{KeyTypeIndexID}), nil)
- defer dbi.Release()
- for dbi.Next() {
- db.Delete(dbi.Key(), nil)
- }
- }
- func normalizeFilenames(fs []protocol.FileInfo) {
- for i := range fs {
- fs[i].Name = osutil.NormalizedFilename(fs[i].Name)
- }
- }
- func nativeFileIterator(fn Iterator) Iterator {
- return func(fi FileIntf) bool {
- switch f := fi.(type) {
- case protocol.FileInfo:
- f.Name = osutil.NativeFilename(f.Name)
- return fn(f)
- case FileInfoTruncated:
- f.Name = osutil.NativeFilename(f.Name)
- return fn(f)
- default:
- panic("unknown interface type")
- }
- }
- }
|