2014-11-16 13:13:20 -07:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 12:43:32 -07:00
|
|
|
//
|
2015-03-07 13:36:35 -07: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-08 23:52:18 -07:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-06-01 13:50:14 -07:00
|
|
|
|
2014-07-31 08:01:11 -07:00
|
|
|
// Package osutil implements utilities for native OS support.
|
2014-05-25 11:49:08 -07:00
|
|
|
package osutil
|
|
|
|
|
|
|
|
import (
|
2014-10-06 00:25:45 -07:00
|
|
|
"errors"
|
2014-12-19 16:12:12 -07:00
|
|
|
"io"
|
2014-08-25 09:14:49 -07:00
|
|
|
"path/filepath"
|
2014-05-25 11:49:08 -07:00
|
|
|
"runtime"
|
2014-10-06 00:25:45 -07:00
|
|
|
"strings"
|
2015-04-22 15:54:31 -07:00
|
|
|
|
2017-08-19 07:36:56 -07:00
|
|
|
"github.com/syncthing/syncthing/lib/fs"
|
2015-08-06 02:29:25 -07:00
|
|
|
"github.com/syncthing/syncthing/lib/sync"
|
2014-05-25 11:49:08 -07:00
|
|
|
)
|
|
|
|
|
2014-09-22 06:48:46 -07: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 13:32:10 -07:00
|
|
|
var renameLock = sync.NewMutex()
|
2014-09-22 06:48:46 -07:00
|
|
|
|
2014-12-19 16:12:12 -07:00
|
|
|
// TryRename renames a file, leaving source file intact in case of failure.
|
|
|
|
// Tries hard to succeed on various systems by temporarily tweaking directory
|
|
|
|
// permissions and removing the destination file when necessary.
|
2017-08-19 07:36:56 -07:00
|
|
|
func TryRename(filesystem fs.Filesystem, from, to string) error {
|
2014-09-22 06:48:46 -07:00
|
|
|
renameLock.Lock()
|
|
|
|
defer renameLock.Unlock()
|
|
|
|
|
2017-08-19 07:36:56 -07:00
|
|
|
return withPreparedTarget(filesystem, from, to, func() error {
|
|
|
|
return filesystem.Rename(from, to)
|
2014-12-19 16:12:12 -07:00
|
|
|
})
|
|
|
|
}
|
2014-08-25 09:14:49 -07:00
|
|
|
|
2017-11-04 00:20:11 -07:00
|
|
|
// Rename moves a temporary file to its final place.
|
2014-12-19 16:12:12 -07:00
|
|
|
// Will make sure to delete the from file if the operation fails, so use only
|
2017-11-04 00:20:11 -07:00
|
|
|
// for situations like committing a temp file to its final location.
|
2014-12-19 16:12:12 -07:00
|
|
|
// Tries hard to succeed on various systems by temporarily tweaking directory
|
|
|
|
// permissions and removing the destination file when necessary.
|
2017-08-19 07:36:56 -07:00
|
|
|
func Rename(filesystem fs.Filesystem, from, to string) error {
|
2014-08-25 09:14:49 -07:00
|
|
|
// Don't leave a dangling temp file in case of rename error
|
2015-05-01 04:06:11 -07:00
|
|
|
if !(runtime.GOOS == "windows" && strings.EqualFold(from, to)) {
|
2019-02-02 04:16:27 -07:00
|
|
|
defer filesystem.Remove(from)
|
2015-05-01 04:06:11 -07:00
|
|
|
}
|
2017-08-19 07:36:56 -07:00
|
|
|
return TryRename(filesystem, from, to)
|
2014-12-19 16:12:12 -07: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.
|
2017-08-19 07:36:56 -07:00
|
|
|
func Copy(filesystem fs.Filesystem, from, to string) (err error) {
|
|
|
|
return withPreparedTarget(filesystem, from, to, func() error {
|
|
|
|
return copyFileContents(filesystem, from, to)
|
2014-12-19 16:12:12 -07:00
|
|
|
})
|
2014-05-25 11:49:08 -07:00
|
|
|
}
|
2014-09-27 16:54:25 -07:00
|
|
|
|
|
|
|
// InWritableDir calls fn(path), while making sure that the directory
|
|
|
|
// containing `path` is writable for the duration of the call.
|
2017-08-19 07:36:56 -07:00
|
|
|
func InWritableDir(fn func(string) error, fs fs.Filesystem, path string) error {
|
2014-09-27 16:54:25 -07:00
|
|
|
dir := filepath.Dir(path)
|
2017-08-19 07:36:56 -07:00
|
|
|
info, err := fs.Stat(dir)
|
2015-03-05 14:14:00 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !info.IsDir() {
|
|
|
|
return errors.New("Not a directory: " + path)
|
|
|
|
}
|
|
|
|
if info.Mode()&0200 == 0 {
|
2014-09-27 16:54:25 -07:00
|
|
|
// A non-writeable directory (for this user; we assume that's the
|
|
|
|
// relevant part). Temporarily change the mode so we can delete the
|
|
|
|
// file or directory inside it.
|
2017-08-19 07:36:56 -07:00
|
|
|
err = fs.Chmod(dir, 0755)
|
2014-09-27 16:54:25 -07:00
|
|
|
if err == nil {
|
|
|
|
defer func() {
|
2017-08-19 07:36:56 -07:00
|
|
|
err = fs.Chmod(dir, info.Mode())
|
2014-09-27 16:54:25 -07:00
|
|
|
if err != nil {
|
|
|
|
// We managed to change the permission bits like a
|
|
|
|
// millisecond ago, so it'd be bizarre if we couldn't
|
|
|
|
// change it back.
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return fn(path)
|
|
|
|
}
|
2014-10-06 00:25:45 -07:00
|
|
|
|
2014-12-19 16:12:12 -07:00
|
|
|
// Tries hard to succeed on various systems by temporarily tweaking directory
|
|
|
|
// permissions and removing the destination file when necessary.
|
2017-08-19 07:36:56 -07:00
|
|
|
func withPreparedTarget(filesystem fs.Filesystem, from, to string, f func() error) error {
|
2014-12-19 16:12:12 -07:00
|
|
|
// Make sure the destination directory is writeable
|
|
|
|
toDir := filepath.Dir(to)
|
2017-08-19 07:36:56 -07:00
|
|
|
if info, err := filesystem.Stat(toDir); err == nil && info.IsDir() && info.Mode()&0200 == 0 {
|
2019-02-02 04:16:27 -07:00
|
|
|
filesystem.Chmod(toDir, 0755)
|
|
|
|
defer filesystem.Chmod(toDir, info.Mode())
|
2014-12-19 16:12:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// On Windows, make sure the destination file is writeable (or we can't delete it)
|
|
|
|
if runtime.GOOS == "windows" {
|
2019-02-02 04:16:27 -07:00
|
|
|
filesystem.Chmod(to, 0666)
|
2015-05-01 04:06:11 -07:00
|
|
|
if !strings.EqualFold(from, to) {
|
2017-08-19 07:36:56 -07:00
|
|
|
err := filesystem.Remove(to)
|
|
|
|
if err != nil && !fs.IsNotExist(err) {
|
2015-05-01 04:06:11 -07:00
|
|
|
return err
|
|
|
|
}
|
2014-12-19 16:12:12 -07: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 00:20:11 -07:00
|
|
|
// destination file exists, all its contents will be replaced by the contents
|
2014-12-19 16:12:12 -07:00
|
|
|
// of the source file.
|
2017-08-19 07:36:56 -07:00
|
|
|
func copyFileContents(filesystem fs.Filesystem, src, dst string) (err error) {
|
|
|
|
in, err := filesystem.Open(src)
|
2014-12-19 16:12:12 -07:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer in.Close()
|
2017-08-19 07:36:56 -07:00
|
|
|
out, err := filesystem.Create(dst)
|
2014-12-19 16:12:12 -07:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
cerr := out.Close()
|
|
|
|
if err == nil {
|
|
|
|
err = cerr
|
|
|
|
}
|
|
|
|
}()
|
2016-11-22 00:59:54 -07:00
|
|
|
_, err = io.Copy(out, in)
|
2014-12-19 16:12:12 -07:00
|
|
|
return
|
|
|
|
}
|
2015-05-05 12:19:59 -07:00
|
|
|
|
2018-02-25 01:27:54 -07:00
|
|
|
func IsDeleted(ffs fs.Filesystem, name string) bool {
|
|
|
|
if _, err := ffs.Lstat(name); fs.IsNotExist(err) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
switch TraversesSymlink(ffs, filepath.Dir(name)).(type) {
|
|
|
|
case *NotADirectoryError, *TraversesSymlinkError:
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|