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,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2014-07-31 15:01:11 +00:00
|
|
|
// Package osutil implements utilities for native OS support.
|
2014-05-25 18:49:08 +00:00
|
|
|
package osutil
|
|
|
|
|
|
|
|
import (
|
2014-08-25 16:14:49 +00:00
|
|
|
"path/filepath"
|
2014-10-06 07:25:45 +00:00
|
|
|
"strings"
|
2015-04-22 22:54:31 +00:00
|
|
|
|
2022-07-28 17:36:39 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/build"
|
2017-08-19 14:36:56 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2015-08-06 09:29:25 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/sync"
|
2014-05-25 18:49:08 +00:00
|
|
|
)
|
|
|
|
|
2014-09-22 13:48:46 +00:00
|
|
|
// Try to keep this entire operation atomic-like. We shouldn't be doing this
|
|
|
|
// often enough that there is any contention on this lock.
|
2015-04-28 20:32:10 +00:00
|
|
|
var renameLock = sync.NewMutex()
|
2014-09-22 13:48:46 +00:00
|
|
|
|
2019-04-28 22:30:16 +00:00
|
|
|
// RenameOrCopy renames a file, leaving source file intact in case of failure.
|
2014-12-19 23:12:12 +00:00
|
|
|
// Tries hard to succeed on various systems by temporarily tweaking directory
|
|
|
|
// permissions and removing the destination file when necessary.
|
2020-06-18 06:15:47 +00:00
|
|
|
func RenameOrCopy(method fs.CopyRangeMethod, src, dst fs.Filesystem, from, to string) error {
|
2014-09-22 13:48:46 +00:00
|
|
|
renameLock.Lock()
|
|
|
|
defer renameLock.Unlock()
|
|
|
|
|
2019-04-28 22:30:16 +00:00
|
|
|
return withPreparedTarget(dst, from, to, func() error {
|
|
|
|
// Optimisation 1
|
|
|
|
if src.Type() == dst.Type() && src.URI() == dst.URI() {
|
|
|
|
return src.Rename(from, to)
|
|
|
|
}
|
2014-08-25 16:14:49 +00:00
|
|
|
|
2019-04-28 22:30:16 +00:00
|
|
|
// "Optimisation" 2
|
|
|
|
// Try to find a common prefix between the two filesystems, use that as the base for the new one
|
|
|
|
// and try a rename.
|
|
|
|
if src.Type() == dst.Type() {
|
|
|
|
commonPrefix := fs.CommonPrefix(src.URI(), dst.URI())
|
|
|
|
if len(commonPrefix) > 0 {
|
|
|
|
commonFs := fs.NewFilesystem(src.Type(), commonPrefix)
|
|
|
|
err := commonFs.Rename(
|
|
|
|
filepath.Join(strings.TrimPrefix(src.URI(), commonPrefix), from),
|
|
|
|
filepath.Join(strings.TrimPrefix(dst.URI(), commonPrefix), to),
|
|
|
|
)
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Everything is sad, do a copy and delete.
|
|
|
|
if _, err := dst.Stat(to); !fs.IsNotExist(err) {
|
|
|
|
err := dst.Remove(to)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-18 06:15:47 +00:00
|
|
|
err := copyFileContents(method, src, dst, from, to)
|
2019-04-28 22:30:16 +00:00
|
|
|
if err != nil {
|
|
|
|
_ = dst.Remove(to)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return withPreparedTarget(src, from, from, func() error {
|
|
|
|
return src.Remove(from)
|
|
|
|
})
|
|
|
|
})
|
2014-12-19 23:12:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy copies the file content from source to destination.
|
|
|
|
// Tries hard to succeed on various systems by temporarily tweaking directory
|
|
|
|
// permissions and removing the destination file when necessary.
|
2020-06-18 06:15:47 +00:00
|
|
|
func Copy(method fs.CopyRangeMethod, src, dst fs.Filesystem, from, to string) (err error) {
|
2019-04-28 22:30:16 +00:00
|
|
|
return withPreparedTarget(dst, from, to, func() error {
|
2020-06-18 06:15:47 +00:00
|
|
|
return copyFileContents(method, src, dst, from, to)
|
2014-12-19 23:12:12 +00:00
|
|
|
})
|
2014-05-25 18:49:08 +00:00
|
|
|
}
|
2014-09-27 23:54:25 +00:00
|
|
|
|
2014-12-19 23:12:12 +00:00
|
|
|
// Tries hard to succeed on various systems by temporarily tweaking directory
|
|
|
|
// permissions and removing the destination file when necessary.
|
2017-08-19 14:36:56 +00:00
|
|
|
func withPreparedTarget(filesystem fs.Filesystem, from, to string, f func() error) error {
|
2014-12-19 23:12:12 +00:00
|
|
|
// Make sure the destination directory is writeable
|
|
|
|
toDir := filepath.Dir(to)
|
2017-08-19 14:36:56 +00:00
|
|
|
if info, err := filesystem.Stat(toDir); err == nil && info.IsDir() && info.Mode()&0200 == 0 {
|
2019-02-02 11:16:27 +00:00
|
|
|
filesystem.Chmod(toDir, 0755)
|
|
|
|
defer filesystem.Chmod(toDir, info.Mode())
|
2014-12-19 23:12:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// On Windows, make sure the destination file is writeable (or we can't delete it)
|
2022-07-28 17:36:39 +00:00
|
|
|
if build.IsWindows {
|
2019-02-02 11:16:27 +00:00
|
|
|
filesystem.Chmod(to, 0666)
|
2015-05-01 11:06:11 +00:00
|
|
|
if !strings.EqualFold(from, to) {
|
2017-08-19 14:36:56 +00:00
|
|
|
err := filesystem.Remove(to)
|
|
|
|
if err != nil && !fs.IsNotExist(err) {
|
2015-05-01 11:06:11 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-12-19 23:12:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return f()
|
|
|
|
}
|
|
|
|
|
|
|
|
// copyFileContents copies the contents of the file named src to the file named
|
|
|
|
// by dst. The file will be created if it does not already exist. If the
|
2017-11-04 07:20:11 +00:00
|
|
|
// destination file exists, all its contents will be replaced by the contents
|
2014-12-19 23:12:12 +00:00
|
|
|
// of the source file.
|
2020-06-18 06:15:47 +00:00
|
|
|
func copyFileContents(method fs.CopyRangeMethod, srcFs, dstFs fs.Filesystem, src, dst string) (err error) {
|
2019-04-28 22:30:16 +00:00
|
|
|
in, err := srcFs.Open(src)
|
2014-12-19 23:12:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer in.Close()
|
2019-04-28 22:30:16 +00:00
|
|
|
out, err := dstFs.Create(dst)
|
2014-12-19 23:12:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
cerr := out.Close()
|
|
|
|
if err == nil {
|
|
|
|
err = cerr
|
|
|
|
}
|
|
|
|
}()
|
2020-06-18 06:15:47 +00:00
|
|
|
inFi, err := in.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err = fs.CopyRange(method, in, out, 0, 0, inFi.Size())
|
2014-12-19 23:12:12 +00:00
|
|
|
return
|
|
|
|
}
|
2015-05-05 19:19:59 +00:00
|
|
|
|
2018-02-25 08:27:54 +00:00
|
|
|
func IsDeleted(ffs fs.Filesystem, name string) bool {
|
2020-07-28 09:13:15 +00:00
|
|
|
if _, err := ffs.Lstat(name); err != nil {
|
|
|
|
if fs.IsNotExist(err) || fs.IsErrCaseConflict(err) {
|
|
|
|
return true
|
|
|
|
}
|
2018-02-25 08:27:54 +00:00
|
|
|
}
|
|
|
|
switch TraversesSymlink(ffs, filepath.Dir(name)).(type) {
|
|
|
|
case *NotADirectoryError, *TraversesSymlinkError:
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|