2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +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,
|
|
|
|
// You can obtain one at http://mozilla.org/MPL/2.0/.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2014-03-08 22:02:01 +00:00
|
|
|
package scanner
|
|
|
|
|
|
|
|
import (
|
2014-05-04 16:20:25 +00:00
|
|
|
"errors"
|
2014-03-08 22:02:01 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2014-05-19 21:42:08 +00:00
|
|
|
"runtime"
|
2014-10-23 20:47:07 +00:00
|
|
|
"strings"
|
2014-12-09 23:58:58 +00:00
|
|
|
"time"
|
2015-03-18 22:54:50 +00:00
|
|
|
"unicode/utf8"
|
2014-08-16 16:33:01 +00:00
|
|
|
|
2015-01-13 12:22:56 +00:00
|
|
|
"github.com/syncthing/protocol"
|
2014-09-22 19:42:11 +00:00
|
|
|
"github.com/syncthing/syncthing/internal/ignore"
|
2015-04-14 10:31:25 +00:00
|
|
|
"github.com/syncthing/syncthing/internal/osutil"
|
2014-11-09 04:26:52 +00:00
|
|
|
"github.com/syncthing/syncthing/internal/symlinks"
|
2014-11-29 23:17:00 +00:00
|
|
|
"golang.org/x/text/unicode/norm"
|
2014-03-08 22:02:01 +00:00
|
|
|
)
|
|
|
|
|
2015-03-15 13:14:44 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-08 22:02:01 +00:00
|
|
|
type Walker struct {
|
|
|
|
// Dir is the base directory for the walk
|
|
|
|
Dir string
|
2015-03-27 08:51:18 +00:00
|
|
|
// Limit walking to these paths within Dir, or no limit if Sub is empty
|
|
|
|
Subs []string
|
2014-03-08 22:02:01 +00:00
|
|
|
// BlockSize controls the size of the block used when hashing.
|
|
|
|
BlockSize int
|
2014-10-14 20:30:00 +00:00
|
|
|
// If Matcher is not nil, it is used to identify files to ignore which were specified by the user.
|
|
|
|
Matcher *ignore.Matcher
|
2015-04-28 15:34:55 +00:00
|
|
|
// If TempNamer is not nil, it is used to ignore temporary files when walking.
|
2014-03-08 22:02:01 +00:00
|
|
|
TempNamer TempNamer
|
2014-12-09 23:58:58 +00:00
|
|
|
// Number of hours to keep temporary files for
|
|
|
|
TempLifetime time.Duration
|
2014-03-16 07:14:55 +00:00
|
|
|
// If CurrentFiler is not nil, it is queried for the current file before rescanning.
|
|
|
|
CurrentFiler CurrentFiler
|
2014-05-23 12:31:16 +00:00
|
|
|
// If IgnorePerms is true, changes to permission bits will not be
|
2014-05-23 11:10:26 +00:00
|
|
|
// detected. Scanned files will get zero permission bits and the
|
|
|
|
// NoPermissionBits flag set.
|
2014-05-23 12:31:16 +00:00
|
|
|
IgnorePerms bool
|
2015-03-18 22:54:50 +00:00
|
|
|
// When AutoNormalize is set, file names that are in UTF8 but incorrect
|
|
|
|
// normalization form will be corrected.
|
|
|
|
AutoNormalize bool
|
2014-12-24 23:12:12 +00:00
|
|
|
// Number of routines to use for hashing
|
|
|
|
Hashers int
|
2015-03-25 21:37:35 +00:00
|
|
|
// Our vector clock id
|
|
|
|
ShortID uint64
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type TempNamer interface {
|
2014-03-28 13:36:57 +00:00
|
|
|
// Temporary returns a temporary name for the filed referred to by filepath.
|
2014-03-08 22:02:01 +00:00
|
|
|
TempName(path string) string
|
|
|
|
// IsTemporary returns true if path refers to the name of temporary file.
|
|
|
|
IsTemporary(path string) bool
|
|
|
|
}
|
|
|
|
|
2014-03-16 07:14:55 +00:00
|
|
|
type CurrentFiler interface {
|
|
|
|
// CurrentFile returns the file as seen at last scan.
|
2015-01-06 21:12:45 +00:00
|
|
|
CurrentFile(name string) (protocol.FileInfo, bool)
|
2014-03-16 07:14:55 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
// Walk returns the list of files found in the local folder by scanning the
|
2014-03-08 22:02:01 +00:00
|
|
|
// file system. Files are blockwise hashed.
|
2014-08-26 08:11:25 +00:00
|
|
|
func (w *Walker) Walk() (chan protocol.FileInfo, error) {
|
2014-03-08 22:02:01 +00:00
|
|
|
if debug {
|
2015-03-27 08:51:18 +00:00
|
|
|
l.Debugln("Walk", w.Dir, w.Subs, w.BlockSize, w.Matcher)
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
2014-05-04 16:20:25 +00:00
|
|
|
|
2014-07-30 18:10:46 +00:00
|
|
|
err := checkDir(w.Dir)
|
2014-05-04 16:20:25 +00:00
|
|
|
if err != nil {
|
2014-08-26 08:11:25 +00:00
|
|
|
return nil, err
|
2014-05-04 16:20:25 +00:00
|
|
|
}
|
|
|
|
|
2014-07-30 18:10:46 +00:00
|
|
|
files := make(chan protocol.FileInfo)
|
|
|
|
hashedFiles := make(chan protocol.FileInfo)
|
2015-04-29 18:46:32 +00:00
|
|
|
newParallelHasher(w.Dir, w.BlockSize, w.Hashers, hashedFiles, files)
|
2014-03-08 22:02:01 +00:00
|
|
|
|
2014-07-15 12:27:46 +00:00
|
|
|
go func() {
|
2014-09-04 20:29:53 +00:00
|
|
|
hashFiles := w.walkAndHashFiles(files)
|
2015-03-27 08:51:18 +00:00
|
|
|
if len(w.Subs) == 0 {
|
|
|
|
filepath.Walk(w.Dir, hashFiles)
|
|
|
|
} else {
|
|
|
|
for _, sub := range w.Subs {
|
|
|
|
filepath.Walk(filepath.Join(w.Dir, sub), hashFiles)
|
|
|
|
}
|
|
|
|
}
|
2014-07-15 12:27:46 +00:00
|
|
|
close(files)
|
|
|
|
}()
|
2014-03-08 22:02:01 +00:00
|
|
|
|
2014-08-26 08:11:25 +00:00
|
|
|
return hashedFiles, nil
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2014-09-04 20:29:53 +00:00
|
|
|
func (w *Walker) walkAndHashFiles(fchan chan protocol.FileInfo) filepath.WalkFunc {
|
2014-12-09 23:58:58 +00:00
|
|
|
now := time.Now()
|
2014-03-08 22:02:01 +00:00
|
|
|
return func(p string, info os.FileInfo, err error) error {
|
2015-03-19 06:44:43 +00:00
|
|
|
// 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
|
2015-03-22 14:06:29 +00:00
|
|
|
// info nil when error is not nil
|
|
|
|
if info != nil && info.IsDir() {
|
2015-03-19 06:44:43 +00:00
|
|
|
skip = filepath.SkipDir
|
|
|
|
}
|
|
|
|
|
2014-03-08 22:02:01 +00:00
|
|
|
if err != nil {
|
|
|
|
if debug {
|
2014-05-15 00:08:56 +00:00
|
|
|
l.Debugln("error:", p, info, err)
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2014-03-08 22:18:50 +00:00
|
|
|
rn, err := filepath.Rel(w.Dir, p)
|
2014-03-08 22:02:01 +00:00
|
|
|
if err != nil {
|
2014-03-08 22:18:50 +00:00
|
|
|
if debug {
|
2014-05-15 00:08:56 +00:00
|
|
|
l.Debugln("rel error:", p, err)
|
2014-03-08 22:18:50 +00:00
|
|
|
}
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2014-04-01 21:18:32 +00:00
|
|
|
if rn == "." {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-03-08 22:18:50 +00:00
|
|
|
if w.TempNamer != nil && w.TempNamer.IsTemporary(rn) {
|
2014-04-01 21:18:32 +00:00
|
|
|
// A temporary file
|
2014-03-08 22:02:01 +00:00
|
|
|
if debug {
|
2014-05-15 00:08:56 +00:00
|
|
|
l.Debugln("temporary:", rn)
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
2014-12-09 23:58:58 +00:00
|
|
|
if info.Mode().IsRegular() && info.ModTime().Add(w.TempLifetime).Before(now) {
|
|
|
|
os.Remove(p)
|
|
|
|
if debug {
|
|
|
|
l.Debugln("removing temporary:", rn, info.ModTime())
|
|
|
|
}
|
|
|
|
}
|
2014-03-08 22:02:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-23 20:47:07 +00:00
|
|
|
if sn := filepath.Base(rn); sn == ".stignore" || sn == ".stfolder" ||
|
2015-04-27 19:49:10 +00:00
|
|
|
strings.HasPrefix(rn, ".stversions") || w.Matcher.Match(rn) {
|
2014-04-01 21:18:32 +00:00
|
|
|
// An ignored file
|
2014-03-08 22:02:01 +00:00
|
|
|
if debug {
|
2014-05-15 00:08:56 +00:00
|
|
|
l.Debugln("ignored:", rn)
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 22:54:50 +00:00
|
|
|
if !utf8.ValidString(rn) {
|
|
|
|
l.Warnf("File name %q is not in UTF8 encoding; skipping.", rn)
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-06-11 15:51:31 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 22:54:50 +00:00
|
|
|
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)
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2015-03-18 22:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// We will attempt to normalize it.
|
|
|
|
normalizedPath := filepath.Join(w.Dir, normalizedRn)
|
2015-04-14 10:31:25 +00:00
|
|
|
if _, err := osutil.Lstat(normalizedPath); os.IsNotExist(err) {
|
2015-03-18 22:54:50 +00:00
|
|
|
// 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)
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2015-03-18 22:54:50 +00:00
|
|
|
}
|
|
|
|
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)
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2015-03-18 22:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rn = normalizedRn
|
|
|
|
}
|
|
|
|
|
2015-03-25 21:37:35 +00:00
|
|
|
var cf protocol.FileInfo
|
|
|
|
var ok bool
|
|
|
|
|
2014-11-09 04:26:52 +00:00
|
|
|
// Index wise symlinks are always files, regardless of what the target
|
|
|
|
// is, because symlinks carry their target path as their content.
|
2014-12-21 08:26:54 +00:00
|
|
|
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
|
2015-03-19 06:44:43 +00:00
|
|
|
// as a result remove files in their real location.
|
2014-12-21 08:26:54 +00:00
|
|
|
if !symlinks.Supported {
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-11-09 04:26:52 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 08:26:54 +00:00
|
|
|
// 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.
|
|
|
|
|
2014-11-09 04:26:52 +00:00
|
|
|
target, flags, err := symlinks.Read(p)
|
|
|
|
flags = flags & protocol.SymlinkTypeMask
|
|
|
|
if err != nil {
|
|
|
|
if debug {
|
|
|
|
l.Debugln("readlink error:", p, err)
|
|
|
|
}
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-11-09 04:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blocks, err := Blocks(strings.NewReader(target), w.BlockSize, 0)
|
|
|
|
if err != nil {
|
|
|
|
if debug {
|
|
|
|
l.Debugln("hash link error:", p, err)
|
|
|
|
}
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-11-09 04:26:52 +00:00
|
|
|
}
|
|
|
|
|
2014-12-21 08:26:54 +00:00
|
|
|
if w.CurrentFiler != nil {
|
|
|
|
// A symlink is "unchanged", if
|
2015-01-06 21:12:45 +00:00
|
|
|
// - it exists
|
2014-12-21 08:26:54 +00:00
|
|
|
// - 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
|
2015-03-25 21:37:35 +00:00
|
|
|
cf, ok = w.CurrentFiler.CurrentFile(rn)
|
2015-01-06 21:12:45 +00:00
|
|
|
if ok && !cf.IsDeleted() && cf.IsSymlink() && !cf.IsInvalid() && SymlinkTypeEqual(flags, cf.Flags) && BlocksEqual(cf.Blocks, blocks) {
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-12-21 08:26:54 +00:00
|
|
|
}
|
2014-11-09 04:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
f := protocol.FileInfo{
|
|
|
|
Name: rn,
|
2015-03-25 21:37:35 +00:00
|
|
|
Version: cf.Version.Update(w.ShortID),
|
2014-11-09 04:26:52 +00:00
|
|
|
Flags: protocol.FlagSymlink | flags | protocol.FlagNoPermBits | 0666,
|
|
|
|
Modified: 0,
|
|
|
|
Blocks: blocks,
|
|
|
|
}
|
|
|
|
|
|
|
|
if debug {
|
|
|
|
l.Debugln("symlink to hash:", p, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
fchan <- f
|
|
|
|
|
2015-03-19 06:44:43 +00:00
|
|
|
return skip
|
2014-11-09 04:26:52 +00:00
|
|
|
}
|
|
|
|
|
2014-04-01 21:18:32 +00:00
|
|
|
if info.Mode().IsDir() {
|
|
|
|
if w.CurrentFiler != nil {
|
2014-12-21 08:26:54 +00:00
|
|
|
// A directory is "unchanged", if it
|
2015-01-06 21:12:45 +00:00
|
|
|
// - exists
|
2014-12-21 08:26:54 +00:00
|
|
|
// - 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)
|
2015-03-25 21:37:35 +00:00
|
|
|
cf, ok = w.CurrentFiler.CurrentFile(rn)
|
2014-11-04 23:22:15 +00:00
|
|
|
permUnchanged := w.IgnorePerms || !cf.HasPermissionBits() || PermsEqual(cf.Flags, uint32(info.Mode()))
|
2015-01-06 21:12:45 +00:00
|
|
|
if ok && permUnchanged && !cf.IsDeleted() && cf.IsDirectory() && !cf.IsSymlink() && !cf.IsInvalid() {
|
2014-07-14 21:58:37 +00:00
|
|
|
return nil
|
2014-04-01 21:18:32 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-14 21:58:37 +00:00
|
|
|
|
2014-12-08 15:36:15 +00:00
|
|
|
flags := uint32(protocol.FlagDirectory)
|
2014-07-14 21:58:37 +00:00
|
|
|
if w.IgnorePerms {
|
|
|
|
flags |= protocol.FlagNoPermBits | 0777
|
|
|
|
} else {
|
2015-03-15 13:14:44 +00:00
|
|
|
flags |= uint32(info.Mode() & maskModePerm)
|
2014-07-14 21:58:37 +00:00
|
|
|
}
|
|
|
|
f := protocol.FileInfo{
|
|
|
|
Name: rn,
|
2015-03-25 21:37:35 +00:00
|
|
|
Version: cf.Version.Update(w.ShortID),
|
2014-07-14 21:58:37 +00:00
|
|
|
Flags: flags,
|
|
|
|
Modified: info.ModTime().Unix(),
|
|
|
|
}
|
|
|
|
if debug {
|
2014-10-16 07:32:23 +00:00
|
|
|
l.Debugln("dir:", p, f)
|
2014-07-14 21:58:37 +00:00
|
|
|
}
|
2014-07-15 12:27:46 +00:00
|
|
|
fchan <- f
|
2014-07-14 21:58:37 +00:00
|
|
|
return nil
|
2014-04-01 21:18:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if info.Mode().IsRegular() {
|
2014-03-16 07:14:55 +00:00
|
|
|
if w.CurrentFiler != nil {
|
2014-12-21 08:26:54 +00:00
|
|
|
// A file is "unchanged", if it
|
2015-01-06 21:12:45 +00:00
|
|
|
// - exists
|
2014-12-21 08:26:54 +00:00
|
|
|
// - 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)
|
2014-12-29 13:15:08 +00:00
|
|
|
// - has the same size as previously
|
2015-03-25 21:37:35 +00:00
|
|
|
cf, ok = w.CurrentFiler.CurrentFile(rn)
|
2014-11-04 23:22:15 +00:00
|
|
|
permUnchanged := w.IgnorePerms || !cf.HasPermissionBits() || PermsEqual(cf.Flags, uint32(info.Mode()))
|
2015-01-06 21:12:45 +00:00
|
|
|
if ok && permUnchanged && !cf.IsDeleted() && cf.Modified == info.ModTime().Unix() && !cf.IsDirectory() &&
|
2014-12-29 13:15:08 +00:00
|
|
|
!cf.IsSymlink() && !cf.IsInvalid() && cf.Size() == info.Size() {
|
2014-03-16 07:14:55 +00:00
|
|
|
return nil
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 21:42:08 +00:00
|
|
|
if debug {
|
|
|
|
l.Debugln("rescan:", cf, info.ModTime().Unix(), info.Mode()&os.ModePerm)
|
|
|
|
}
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
2015-03-15 13:14:44 +00:00
|
|
|
var flags = uint32(info.Mode() & maskModePerm)
|
2014-05-23 12:31:16 +00:00
|
|
|
if w.IgnorePerms {
|
2014-05-24 06:53:54 +00:00
|
|
|
flags = protocol.FlagNoPermBits | 0666
|
2014-05-23 11:10:26 +00:00
|
|
|
}
|
2014-07-30 18:10:46 +00:00
|
|
|
|
2014-10-16 07:32:23 +00:00
|
|
|
f := protocol.FileInfo{
|
2014-03-08 22:18:50 +00:00
|
|
|
Name: rn,
|
2015-03-25 21:37:35 +00:00
|
|
|
Version: cf.Version.Update(w.ShortID),
|
2014-05-23 11:10:26 +00:00
|
|
|
Flags: flags,
|
2014-03-16 07:14:55 +00:00
|
|
|
Modified: info.ModTime().Unix(),
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
2014-10-16 07:32:23 +00:00
|
|
|
if debug {
|
|
|
|
l.Debugln("to hash:", p, f)
|
|
|
|
}
|
|
|
|
fchan <- f
|
2014-03-08 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-04 16:20:25 +00:00
|
|
|
func checkDir(dir string) error {
|
2015-04-14 10:31:25 +00:00
|
|
|
if info, err := osutil.Lstat(dir); err != nil {
|
2014-05-04 16:20:25 +00:00
|
|
|
return err
|
|
|
|
} else if !info.IsDir() {
|
|
|
|
return errors.New(dir + ": not a directory")
|
2014-05-28 04:55:30 +00:00
|
|
|
} else if debug {
|
|
|
|
l.Debugln("checkDir", dir, info)
|
2014-05-04 16:20:25 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-05-19 21:42:08 +00:00
|
|
|
|
2014-05-23 10:55:24 +00:00
|
|
|
func PermsEqual(a, b uint32) bool {
|
2014-05-19 21:42:08 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2014-11-09 04:26:52 +00:00
|
|
|
|
|
|
|
func SymlinkTypeEqual(disk, index uint32) bool {
|
2015-04-28 20:32:10 +00:00
|
|
|
// 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,
|
2015-04-28 15:34:55 +00:00
|
|
|
// that will propagate through the cluster.
|
2014-11-09 04:26:52 +00:00
|
|
|
if disk&protocol.FlagSymlinkMissingTarget != 0 && index&protocol.FlagSymlinkMissingTarget == 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return disk&protocol.SymlinkTypeMask == index&protocol.SymlinkTypeMask
|
|
|
|
|
|
|
|
}
|