| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483 |
- // 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 http://mozilla.org/MPL/2.0/.
- package scanner
- import (
- "errors"
- "os"
- "path/filepath"
- "runtime"
- "strings"
- "sync/atomic"
- "time"
- "unicode/utf8"
- "github.com/syncthing/protocol"
- "github.com/syncthing/syncthing/lib/db"
- "github.com/syncthing/syncthing/lib/events"
- "github.com/syncthing/syncthing/lib/osutil"
- "github.com/syncthing/syncthing/lib/symlinks"
- "golang.org/x/text/unicode/norm"
- )
- var maskModePerm os.FileMode
- func init() {
- if runtime.GOOS == "windows" {
- // There is no user/group/others in Windows' read-only
- // attribute, and all "w" bits are set in os.FileInfo
- // if the file is not read-only. Do not send these
- // group/others-writable bits to other devices in order to
- // avoid unexpected world-writable files on other platforms.
- maskModePerm = os.ModePerm & 0755
- } else {
- maskModePerm = os.ModePerm
- }
- }
- type Walker struct {
- // Folder for which the walker has been created
- Folder string
- // Dir is the base directory for the walk
- Dir string
- // Limit walking to these paths within Dir, or no limit if Sub is empty
- Subs []string
- // BlockSize controls the size of the block used when hashing.
- BlockSize int
- // If Matcher is not nil, it is used to identify files to ignore which were specified by the user.
- Matcher IgnoreMatcher
- // If TempNamer is not nil, it is used to ignore temporary files when walking.
- TempNamer TempNamer
- // Number of hours to keep temporary files for
- TempLifetime time.Duration
- // If CurrentFiler is not nil, it is queried for the current file before rescanning.
- CurrentFiler CurrentFiler
- // If MtimeRepo is not nil, it is used to provide mtimes on systems that don't support setting arbirtary mtimes.
- MtimeRepo *db.VirtualMtimeRepo
- // If IgnorePerms is true, changes to permission bits will not be
- // detected. Scanned files will get zero permission bits and the
- // NoPermissionBits flag set.
- IgnorePerms bool
- // When AutoNormalize is set, file names that are in UTF8 but incorrect
- // normalization form will be corrected.
- AutoNormalize bool
- // Number of routines to use for hashing
- Hashers int
- // Our vector clock id
- ShortID uint64
- // Optional progress tick interval which defines how often FolderScanProgress
- // events are emitted. Negative number means disabled.
- ProgressTickIntervalS int
- }
- type TempNamer interface {
- // Temporary returns a temporary name for the filed referred to by filepath.
- TempName(path string) string
- // IsTemporary returns true if path refers to the name of temporary file.
- IsTemporary(path string) bool
- }
- type CurrentFiler interface {
- // CurrentFile returns the file as seen at last scan.
- CurrentFile(name string) (protocol.FileInfo, bool)
- }
- type IgnoreMatcher interface {
- // Match returns true if the file should be ignored.
- Match(filename string) bool
- }
- // Walk returns the list of files found in the local folder by scanning the
- // file system. Files are blockwise hashed.
- func (w *Walker) Walk() (chan protocol.FileInfo, error) {
- if debug {
- l.Debugln("Walk", w.Dir, w.Subs, w.BlockSize, w.Matcher)
- }
- err := checkDir(w.Dir)
- if err != nil {
- return nil, err
- }
- toHashChan := make(chan protocol.FileInfo)
- finishedChan := make(chan protocol.FileInfo)
- // A routine which walks the filesystem tree, and sends files which have
- // been modified to the counter routine.
- go func() {
- hashFiles := w.walkAndHashFiles(toHashChan, finishedChan)
- if len(w.Subs) == 0 {
- filepath.Walk(w.Dir, hashFiles)
- } else {
- for _, sub := range w.Subs {
- filepath.Walk(filepath.Join(w.Dir, sub), hashFiles)
- }
- }
- close(toHashChan)
- }()
- // We're not required to emit scan progress events, just kick off hashers,
- // and feed inputs directly from the walker.
- if w.ProgressTickIntervalS < 0 {
- newParallelHasher(w.Dir, w.BlockSize, w.Hashers, finishedChan, toHashChan, nil, nil)
- return finishedChan, nil
- }
- // Defaults to every 2 seconds.
- if w.ProgressTickIntervalS == 0 {
- w.ProgressTickIntervalS = 2
- }
- ticker := time.NewTicker(time.Duration(w.ProgressTickIntervalS) * time.Second)
- // We need to emit progress events, hence we create a routine which buffers
- // the list of files to be hashed, counts the total number of
- // bytes to hash, and once no more files need to be hashed (chan gets closed),
- // start a routine which periodically emits FolderScanProgress events,
- // until a stop signal is sent by the parallel hasher.
- // Parallel hasher is stopped by this routine when we close the channel over
- // which it receives the files we ask it to hash.
- go func() {
- var filesToHash []protocol.FileInfo
- var total, progress int64
- for file := range toHashChan {
- filesToHash = append(filesToHash, file)
- total += int64(file.CachedSize)
- }
- realToHashChan := make(chan protocol.FileInfo)
- done := make(chan struct{})
- newParallelHasher(w.Dir, w.BlockSize, w.Hashers, finishedChan, realToHashChan, &progress, done)
- // A routine which actually emits the FolderScanProgress events
- // every w.ProgressTicker ticks, until the hasher routines terminate.
- go func() {
- for {
- select {
- case <-done:
- if debug {
- l.Debugln("Walk progress done", w.Dir, w.Subs, w.BlockSize, w.Matcher)
- }
- ticker.Stop()
- return
- case <-ticker.C:
- current := atomic.LoadInt64(&progress)
- if debug {
- l.Debugf("Walk %s %s current progress %d/%d (%d%%)", w.Dir, w.Subs, current, total, current*100/total)
- }
- events.Default.Log(events.FolderScanProgress, map[string]interface{}{
- "folder": w.Folder,
- "current": current,
- "total": total,
- })
- }
- }
- }()
- for _, file := range filesToHash {
- if debug {
- l.Debugln("real to hash:", file.Name)
- }
- realToHashChan <- file
- }
- close(realToHashChan)
- }()
- return finishedChan, nil
- }
- func (w *Walker) walkAndHashFiles(fchan, dchan chan protocol.FileInfo) filepath.WalkFunc {
- now := time.Now()
- return func(p string, info os.FileInfo, err error) error {
- // Return value used when we are returning early and don't want to
- // process the item. For directories, this means do-not-descend.
- var skip error // nil
- // info nil when error is not nil
- if info != nil && info.IsDir() {
- skip = filepath.SkipDir
- }
- if err != nil {
- if debug {
- l.Debugln("error:", p, info, err)
- }
- return skip
- }
- rn, err := filepath.Rel(w.Dir, p)
- if err != nil {
- if debug {
- l.Debugln("rel error:", p, err)
- }
- return skip
- }
- if rn == "." {
- return nil
- }
- mtime := info.ModTime()
- if w.MtimeRepo != nil {
- mtime = w.MtimeRepo.GetMtime(rn, mtime)
- }
- if w.TempNamer != nil && w.TempNamer.IsTemporary(rn) {
- // A temporary file
- if debug {
- l.Debugln("temporary:", rn)
- }
- if info.Mode().IsRegular() && mtime.Add(w.TempLifetime).Before(now) {
- os.Remove(p)
- if debug {
- l.Debugln("removing temporary:", rn, mtime)
- }
- }
- return nil
- }
- if sn := filepath.Base(rn); sn == ".stignore" || sn == ".stfolder" ||
- strings.HasPrefix(rn, ".stversions") || (w.Matcher != nil && w.Matcher.Match(rn)) {
- // An ignored file
- if debug {
- l.Debugln("ignored:", rn)
- }
- return skip
- }
- if !utf8.ValidString(rn) {
- l.Warnf("File name %q is not in UTF8 encoding; skipping.", rn)
- return skip
- }
- var normalizedRn string
- if runtime.GOOS == "darwin" {
- // Mac OS X file names should always be NFD normalized.
- normalizedRn = norm.NFD.String(rn)
- } else {
- // Every other OS in the known universe uses NFC or just plain
- // doesn't bother to define an encoding. In our case *we* do care,
- // so we enforce NFC regardless.
- normalizedRn = norm.NFC.String(rn)
- }
- if rn != normalizedRn {
- // The file name was not normalized.
- if !w.AutoNormalize {
- // We're not authorized to do anything about it, so complain and skip.
- l.Warnf("File name %q is not in the correct UTF8 normalization form; skipping.", rn)
- return skip
- }
- // We will attempt to normalize it.
- normalizedPath := filepath.Join(w.Dir, normalizedRn)
- if _, err := osutil.Lstat(normalizedPath); os.IsNotExist(err) {
- // Nothing exists with the normalized filename. Good.
- if err = os.Rename(p, normalizedPath); err != nil {
- l.Infof(`Error normalizing UTF8 encoding of file "%s": %v`, rn, err)
- return skip
- }
- l.Infof(`Normalized UTF8 encoding of file name "%s".`, rn)
- } else {
- // There is something already in the way at the normalized
- // file name.
- l.Infof(`File "%s" has UTF8 encoding conflict with another file; ignoring.`, rn)
- return skip
- }
- rn = normalizedRn
- }
- var cf protocol.FileInfo
- var ok bool
- // Index wise symlinks are always files, regardless of what the target
- // is, because symlinks carry their target path as their content.
- if info.Mode()&os.ModeSymlink == os.ModeSymlink {
- // If the target is a directory, do NOT descend down there. This
- // will cause files to get tracked, and removing the symlink will
- // as a result remove files in their real location.
- if !symlinks.Supported {
- return skip
- }
- // We always rehash symlinks as they have no modtime or
- // permissions. We check if they point to the old target by
- // checking that their existing blocks match with the blocks in
- // the index.
- target, flags, err := symlinks.Read(p)
- flags = flags & protocol.SymlinkTypeMask
- if err != nil {
- if debug {
- l.Debugln("readlink error:", p, err)
- }
- return skip
- }
- blocks, err := Blocks(strings.NewReader(target), w.BlockSize, 0, nil)
- if err != nil {
- if debug {
- l.Debugln("hash link error:", p, err)
- }
- return skip
- }
- if w.CurrentFiler != nil {
- // A symlink is "unchanged", if
- // - it exists
- // - it wasn't deleted (because it isn't now)
- // - it was a symlink
- // - it wasn't invalid
- // - the symlink type (file/dir) was the same
- // - the block list (i.e. hash of target) was the same
- cf, ok = w.CurrentFiler.CurrentFile(rn)
- if ok && !cf.IsDeleted() && cf.IsSymlink() && !cf.IsInvalid() && SymlinkTypeEqual(flags, cf.Flags) && BlocksEqual(cf.Blocks, blocks) {
- return skip
- }
- }
- f := protocol.FileInfo{
- Name: rn,
- Version: cf.Version.Update(w.ShortID),
- Flags: protocol.FlagSymlink | flags | protocol.FlagNoPermBits | 0666,
- Modified: 0,
- Blocks: blocks,
- }
- if debug {
- l.Debugln("symlink changedb:", p, f)
- }
- dchan <- f
- return skip
- }
- if info.Mode().IsDir() {
- if w.CurrentFiler != nil {
- // A directory is "unchanged", if it
- // - exists
- // - has the same permissions as previously, unless we are ignoring permissions
- // - was not marked deleted (since it apparently exists now)
- // - was a directory previously (not a file or something else)
- // - was not a symlink (since it's a directory now)
- // - was not invalid (since it looks valid now)
- cf, ok = w.CurrentFiler.CurrentFile(rn)
- permUnchanged := w.IgnorePerms || !cf.HasPermissionBits() || PermsEqual(cf.Flags, uint32(info.Mode()))
- if ok && permUnchanged && !cf.IsDeleted() && cf.IsDirectory() && !cf.IsSymlink() && !cf.IsInvalid() {
- return nil
- }
- }
- flags := uint32(protocol.FlagDirectory)
- if w.IgnorePerms {
- flags |= protocol.FlagNoPermBits | 0777
- } else {
- flags |= uint32(info.Mode() & maskModePerm)
- }
- f := protocol.FileInfo{
- Name: rn,
- Version: cf.Version.Update(w.ShortID),
- Flags: flags,
- Modified: mtime.Unix(),
- }
- if debug {
- l.Debugln("dir:", p, f)
- }
- dchan <- f
- return nil
- }
- if info.Mode().IsRegular() {
- curMode := uint32(info.Mode())
- if runtime.GOOS == "windows" && osutil.IsWindowsExecutable(rn) {
- curMode |= 0111
- }
- if w.CurrentFiler != nil {
- // A file is "unchanged", if it
- // - exists
- // - has the same permissions as previously, unless we are ignoring permissions
- // - was not marked deleted (since it apparently exists now)
- // - had the same modification time as it has now
- // - was not a directory previously (since it's a file now)
- // - was not a symlink (since it's a file now)
- // - was not invalid (since it looks valid now)
- // - has the same size as previously
- cf, ok = w.CurrentFiler.CurrentFile(rn)
- permUnchanged := w.IgnorePerms || !cf.HasPermissionBits() || PermsEqual(cf.Flags, curMode)
- if ok && permUnchanged && !cf.IsDeleted() && cf.Modified == mtime.Unix() && !cf.IsDirectory() &&
- !cf.IsSymlink() && !cf.IsInvalid() && cf.Size() == info.Size() {
- return nil
- }
- if debug {
- l.Debugln("rescan:", cf, mtime.Unix(), info.Mode()&os.ModePerm)
- }
- }
- var flags = curMode & uint32(maskModePerm)
- if w.IgnorePerms {
- flags = protocol.FlagNoPermBits | 0666
- }
- f := protocol.FileInfo{
- Name: rn,
- Version: cf.Version.Update(w.ShortID),
- Flags: flags,
- Modified: mtime.Unix(),
- CachedSize: info.Size(),
- }
- if debug {
- l.Debugln("to hash:", p, f)
- }
- fchan <- f
- }
- return nil
- }
- }
- func checkDir(dir string) error {
- if info, err := osutil.Lstat(dir); err != nil {
- return err
- } else if !info.IsDir() {
- return errors.New(dir + ": not a directory")
- } else if debug {
- l.Debugln("checkDir", dir, info)
- }
- return nil
- }
- func PermsEqual(a, b uint32) bool {
- switch runtime.GOOS {
- case "windows":
- // There is only writeable and read only, represented for user, group
- // and other equally. We only compare against user.
- return a&0600 == b&0600
- default:
- // All bits count
- return a&0777 == b&0777
- }
- }
- func SymlinkTypeEqual(disk, index uint32) bool {
- // If the target is missing, Unix never knows what type of symlink it is
- // and Windows always knows even if there is no target. Which means that
- // without this special check a Unix node would be fighting with a Windows
- // node about whether or not the target is known. Basically, if you don't
- // know and someone else knows, just accept it. The fact that you don't
- // know means you are on Unix, and on Unix you don't really care what the
- // target type is. The moment you do know, and if something doesn't match,
- // that will propagate through the cluster.
- if disk&protocol.FlagSymlinkMissingTarget != 0 && index&protocol.FlagSymlinkMissingTarget == 0 {
- return true
- }
- return disk&protocol.SymlinkTypeMask == index&protocol.SymlinkTypeMask
- }
|