2019-05-22 21:16:55 +00:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2021-02-10 12:37:14 +00:00
|
|
|
"io/ioutil"
|
2019-05-22 21:16:55 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2019-08-12 11:44:24 +00:00
|
|
|
"regexp"
|
2020-06-04 10:13:00 +00:00
|
|
|
"sync"
|
2019-08-12 11:44:24 +00:00
|
|
|
"sync/atomic"
|
2019-05-22 21:16:55 +00:00
|
|
|
|
2020-06-04 10:13:00 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
2019-05-22 21:16:55 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/filestream"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
|
|
|
)
|
|
|
|
|
2021-02-26 22:37:07 +00:00
|
|
|
var tmpFileNum uint64
|
|
|
|
|
2019-06-11 20:13:04 +00:00
|
|
|
// MustSyncPath syncs contents of the given path.
|
|
|
|
func MustSyncPath(path string) {
|
2021-02-26 22:37:07 +00:00
|
|
|
mustSyncPath(path)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
2019-08-12 11:44:24 +00:00
|
|
|
// WriteFileAtomically atomically writes data to the given file path.
|
2019-05-22 21:16:55 +00:00
|
|
|
//
|
2019-10-29 08:41:43 +00:00
|
|
|
// WriteFileAtomically returns only after the file is fully written and synced
|
2019-05-22 21:16:55 +00:00
|
|
|
// to the underlying storage.
|
2019-08-12 11:44:24 +00:00
|
|
|
func WriteFileAtomically(path string, data []byte) error {
|
|
|
|
// Check for the existing file. It is expected that
|
|
|
|
// the WriteFileAtomically function cannot be called concurrently
|
|
|
|
// with the same `path`.
|
2019-05-22 21:16:55 +00:00
|
|
|
if IsPathExist(path) {
|
|
|
|
return fmt.Errorf("cannot create file %q, since it already exists", path)
|
|
|
|
}
|
2019-08-12 11:44:24 +00:00
|
|
|
|
|
|
|
n := atomic.AddUint64(&tmpFileNum, 1)
|
|
|
|
tmpPath := fmt.Sprintf("%s.tmp.%d", path, n)
|
|
|
|
f, err := filestream.Create(tmpPath, false)
|
2019-05-22 21:16:55 +00:00
|
|
|
if err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot create file %q: %w", tmpPath, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
if _, err := f.Write(data); err != nil {
|
|
|
|
f.MustClose()
|
2019-08-12 11:44:24 +00:00
|
|
|
MustRemoveAll(tmpPath)
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot write %d bytes to file %q: %w", len(data), tmpPath, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sync and close the file.
|
|
|
|
f.MustClose()
|
|
|
|
|
2019-08-12 11:44:24 +00:00
|
|
|
// Atomically move the file from tmpPath to path.
|
|
|
|
if err := os.Rename(tmpPath, path); err != nil {
|
|
|
|
// do not call MustRemoveAll(tmpPath) here, so the user could inspect
|
|
|
|
// the file contents during investigating the issue.
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot move %q to %q: %w", tmpPath, path, err)
|
2019-08-12 11:44:24 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
// Sync the containing directory, so the file is guaranteed to appear in the directory.
|
|
|
|
// See https://www.quora.com/When-should-you-fsync-the-containing-directory-in-addition-to-the-file-itself
|
|
|
|
absPath, err := filepath.Abs(path)
|
|
|
|
if err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot obtain absolute path to %q: %w", path, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
2019-06-11 19:54:07 +00:00
|
|
|
parentDirPath := filepath.Dir(absPath)
|
2019-06-11 20:13:04 +00:00
|
|
|
MustSyncPath(parentDirPath)
|
2019-05-22 21:16:55 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-12 11:44:24 +00:00
|
|
|
// IsTemporaryFileName returns true if fn matches temporary file name pattern
|
|
|
|
// from WriteFileAtomically.
|
|
|
|
func IsTemporaryFileName(fn string) bool {
|
|
|
|
return tmpFileNameRe.MatchString(fn)
|
|
|
|
}
|
|
|
|
|
|
|
|
// tmpFileNameRe is regexp for temporary file name - see WriteFileAtomically for details.
|
|
|
|
var tmpFileNameRe = regexp.MustCompile(`\.tmp\.\d+$`)
|
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
// MkdirAllIfNotExist creates the given path dir if it isn't exist.
|
|
|
|
func MkdirAllIfNotExist(path string) error {
|
|
|
|
if IsPathExist(path) {
|
|
|
|
return nil
|
|
|
|
}
|
2019-06-11 20:03:14 +00:00
|
|
|
return mkdirSync(path)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MkdirAllFailIfExist creates the given path dir if it isn't exist.
|
|
|
|
//
|
|
|
|
// Returns error if path already exists.
|
|
|
|
func MkdirAllFailIfExist(path string) error {
|
|
|
|
if IsPathExist(path) {
|
|
|
|
return fmt.Errorf("the %q already exists", path)
|
|
|
|
}
|
2019-06-11 20:03:14 +00:00
|
|
|
return mkdirSync(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func mkdirSync(path string) error {
|
|
|
|
if err := os.MkdirAll(path, 0755); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Sync the parent directory, so the created directory becomes visible
|
|
|
|
// in the fs after power loss.
|
|
|
|
parentDirPath := filepath.Dir(path)
|
2019-06-11 20:13:04 +00:00
|
|
|
MustSyncPath(parentDirPath)
|
2019-06-11 20:03:14 +00:00
|
|
|
return nil
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
2019-12-02 19:34:35 +00:00
|
|
|
// RemoveDirContents removes all the contents of the given dir if it exists.
|
2019-05-22 21:16:55 +00:00
|
|
|
//
|
|
|
|
// It doesn't remove the dir itself, so the dir may be mounted
|
|
|
|
// to a separate partition.
|
|
|
|
func RemoveDirContents(dir string) {
|
|
|
|
if !IsPathExist(dir) {
|
|
|
|
// The path doesn't exist, so nothing to remove.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
d, err := os.Open(dir)
|
|
|
|
if err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot open dir %q: %s", dir, err)
|
|
|
|
}
|
|
|
|
defer MustClose(d)
|
|
|
|
names, err := d.Readdirnames(-1)
|
|
|
|
if err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot read contents of the dir %q: %s", dir, err)
|
|
|
|
}
|
|
|
|
for _, name := range names {
|
|
|
|
if name == "." || name == ".." || name == "lost+found" {
|
|
|
|
// Skip special dirs.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fullPath := dir + "/" + name
|
2019-06-11 22:53:43 +00:00
|
|
|
MustRemoveAll(fullPath)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
2019-06-11 20:13:04 +00:00
|
|
|
MustSyncPath(dir)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MustClose must close the given file f.
|
|
|
|
func MustClose(f *os.File) {
|
|
|
|
fname := f.Name()
|
|
|
|
if err := f.Close(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot close %q: %s", fname, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-04 16:09:40 +00:00
|
|
|
// MustFileSize returns file size for the given path.
|
|
|
|
func MustFileSize(path string) uint64 {
|
|
|
|
fi, err := os.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot stat %q: %s", path, err)
|
|
|
|
}
|
|
|
|
if fi.IsDir() {
|
|
|
|
logger.Panicf("FATAL: %q must be a file, not a directory", path)
|
|
|
|
}
|
|
|
|
return uint64(fi.Size())
|
|
|
|
}
|
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
// IsPathExist returns whether the given path exists.
|
|
|
|
func IsPathExist(path string) bool {
|
|
|
|
if _, err := os.Stat(path); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
logger.Panicf("FATAL: cannot stat %q: %s", path, err)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-06-11 23:14:38 +00:00
|
|
|
func mustSyncParentDirIfExists(path string) {
|
|
|
|
parentDirPath := filepath.Dir(path)
|
|
|
|
if !IsPathExist(parentDirPath) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
MustSyncPath(parentDirPath)
|
|
|
|
}
|
|
|
|
|
2021-04-22 09:58:53 +00:00
|
|
|
// IsEmptyDir returns true if path points to empty directory.
|
|
|
|
func IsEmptyDir(path string) bool {
|
|
|
|
// See https://stackoverflow.com/a/30708914/274937
|
|
|
|
f, err := os.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
logger.Panicf("FATAL: unexpected error when opening directory %q: %s", path, err)
|
|
|
|
}
|
|
|
|
_, err = f.Readdirnames(1)
|
|
|
|
MustClose(f)
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
logger.Panicf("FATAL: unexpected error when reading directory %q: %s", path, err)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-06-10 22:56:37 +00:00
|
|
|
// MustRemoveAll removes path with all the contents.
|
|
|
|
//
|
2020-12-25 09:45:47 +00:00
|
|
|
// It properly fsyncs the parent directory after path removal.
|
|
|
|
//
|
2019-06-10 22:56:37 +00:00
|
|
|
// It properly handles NFS issue https://github.com/VictoriaMetrics/VictoriaMetrics/issues/61 .
|
2019-06-11 22:53:43 +00:00
|
|
|
func MustRemoveAll(path string) {
|
2021-05-21 14:55:14 +00:00
|
|
|
mustRemoveAll(path, func() {})
|
2019-12-02 19:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MustRemoveAllWithDoneCallback removes path with all the contents.
|
|
|
|
//
|
2020-12-25 09:45:47 +00:00
|
|
|
// It properly fsyncs the parent directory after path removal.
|
|
|
|
//
|
2019-12-02 19:34:35 +00:00
|
|
|
// done is called after the path is successfully removed.
|
|
|
|
//
|
|
|
|
// done may be called after the function returns for NFS path.
|
|
|
|
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/61.
|
|
|
|
func MustRemoveAllWithDoneCallback(path string, done func()) {
|
2021-05-21 14:55:14 +00:00
|
|
|
mustRemoveAll(path, done)
|
2019-09-04 09:22:18 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
// HardLinkFiles makes hard links for all the files from srcDir in dstDir.
|
|
|
|
func HardLinkFiles(srcDir, dstDir string) error {
|
2019-06-11 20:03:14 +00:00
|
|
|
if err := mkdirSync(dstDir); err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot create dstDir=%q: %w", dstDir, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
d, err := os.Open(srcDir)
|
|
|
|
if err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot open srcDir=%q: %w", srcDir, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if err := d.Close(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot close %q: %s", srcDir, err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
fis, err := d.Readdir(-1)
|
|
|
|
if err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot read files in scrDir=%q: %w", srcDir, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
for _, fi := range fis {
|
|
|
|
if IsDirOrSymlink(fi) {
|
|
|
|
// Skip directories.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fn := fi.Name()
|
|
|
|
srcPath := srcDir + "/" + fn
|
|
|
|
dstPath := dstDir + "/" + fn
|
|
|
|
if err := os.Link(srcPath, dstPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-11 20:13:04 +00:00
|
|
|
MustSyncPath(dstDir)
|
2019-05-22 21:16:55 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsDirOrSymlink returns true if fi is directory or symlink.
|
|
|
|
func IsDirOrSymlink(fi os.FileInfo) bool {
|
|
|
|
return fi.IsDir() || (fi.Mode()&os.ModeSymlink == os.ModeSymlink)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SymlinkRelative creates relative symlink for srcPath in dstPath.
|
|
|
|
func SymlinkRelative(srcPath, dstPath string) error {
|
|
|
|
baseDir := filepath.Dir(dstPath)
|
|
|
|
srcPathRel, err := filepath.Rel(baseDir, srcPath)
|
|
|
|
if err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot make relative path for srcPath=%q: %w", srcPath, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
return os.Symlink(srcPathRel, dstPath)
|
|
|
|
}
|
|
|
|
|
2021-02-10 12:37:14 +00:00
|
|
|
// CopyDirectory copies all the files in srcPath to dstPath.
|
|
|
|
func CopyDirectory(srcPath, dstPath string) error {
|
|
|
|
fis, err := ioutil.ReadDir(srcPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := MkdirAllIfNotExist(dstPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, fi := range fis {
|
|
|
|
if !fi.Mode().IsRegular() {
|
|
|
|
// Skip non-files
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
src := filepath.Join(srcPath, fi.Name())
|
|
|
|
dst := filepath.Join(dstPath, fi.Name())
|
|
|
|
if err := copyFile(src, dst); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MustSyncPath(dstPath)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func copyFile(srcPath, dstPath string) error {
|
|
|
|
src, err := os.Open(srcPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer MustClose(src)
|
|
|
|
dst, err := os.Create(dstPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer MustClose(dst)
|
|
|
|
if _, err := io.Copy(dst, src); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
MustSyncPath(dstPath)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
// ReadFullData reads len(data) bytes from r.
|
|
|
|
func ReadFullData(r io.Reader, data []byte) error {
|
|
|
|
n, err := io.ReadFull(r, data)
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
return io.EOF
|
|
|
|
}
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot read %d bytes; read only %d bytes; error: %w", len(data), n, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
if n != len(data) {
|
|
|
|
logger.Panicf("BUG: io.ReadFull read only %d bytes; must read %d bytes", n, len(data))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustWriteData writes data to w.
|
|
|
|
func MustWriteData(w io.Writer, data []byte) {
|
|
|
|
if len(data) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
n, err := w.Write(data)
|
|
|
|
if err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot write %d bytes: %s", len(data), err)
|
|
|
|
}
|
|
|
|
if n != len(data) {
|
|
|
|
logger.Panicf("BUG: writer wrote %d bytes instead of %d bytes", n, len(data))
|
|
|
|
}
|
|
|
|
}
|
2019-08-12 22:45:22 +00:00
|
|
|
|
|
|
|
// CreateFlockFile creates flock.lock file in the directory dir
|
|
|
|
// and returns the handler to the file.
|
|
|
|
func CreateFlockFile(dir string) (*os.File, error) {
|
2021-02-26 23:01:47 +00:00
|
|
|
flockFile := dir + "/flock.lock"
|
|
|
|
return createFlockFile(flockFile)
|
2019-08-12 22:45:22 +00:00
|
|
|
}
|
2019-08-27 22:04:44 +00:00
|
|
|
|
|
|
|
// MustGetFreeSpace returns free space for the given directory path.
|
|
|
|
func MustGetFreeSpace(path string) uint64 {
|
2020-06-04 10:13:00 +00:00
|
|
|
// Try obtaining cached value at first.
|
|
|
|
freeSpaceMapLock.Lock()
|
|
|
|
defer freeSpaceMapLock.Unlock()
|
|
|
|
|
|
|
|
e, ok := freeSpaceMap[path]
|
|
|
|
if ok && fasttime.UnixTimestamp()-e.updateTime < 2 {
|
|
|
|
// Fast path - the entry is fresh.
|
|
|
|
return e.freeSpace
|
|
|
|
}
|
|
|
|
|
|
|
|
// Slow path.
|
|
|
|
// Determine the amount of free space at path.
|
|
|
|
e.freeSpace = mustGetFreeSpace(path)
|
|
|
|
e.updateTime = fasttime.UnixTimestamp()
|
|
|
|
freeSpaceMap[path] = e
|
|
|
|
return e.freeSpace
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
freeSpaceMap = make(map[string]freeSpaceEntry)
|
|
|
|
freeSpaceMapLock sync.Mutex
|
|
|
|
)
|
|
|
|
|
|
|
|
type freeSpaceEntry struct {
|
|
|
|
updateTime uint64
|
|
|
|
freeSpace uint64
|
|
|
|
}
|