2017-04-15 08:53:12 +00:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
2021-12-29 21:07:17 +00:00
|
|
|
"math/rand"
|
2017-04-15 08:53:12 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2021-10-12 00:15:38 +00:00
|
|
|
"strconv"
|
2021-12-29 21:07:17 +00:00
|
|
|
"strings"
|
2021-10-12 00:15:38 +00:00
|
|
|
"time"
|
|
|
|
|
2021-12-29 21:07:17 +00:00
|
|
|
"golang.org/x/sys/windows"
|
2017-04-15 08:53:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// fixpath returns an absolute path on windows, so restic can open long file
|
|
|
|
// names.
|
|
|
|
func fixpath(name string) string {
|
|
|
|
abspath, err := filepath.Abs(name)
|
|
|
|
if err == nil {
|
|
|
|
// Check if \\?\UNC\ already exist
|
|
|
|
if strings.HasPrefix(abspath, `\\?\UNC\`) {
|
|
|
|
return abspath
|
|
|
|
}
|
|
|
|
// Check if \\?\ already exist
|
|
|
|
if strings.HasPrefix(abspath, `\\?\`) {
|
|
|
|
return abspath
|
|
|
|
}
|
|
|
|
// Check if path starts with \\
|
|
|
|
if strings.HasPrefix(abspath, `\\`) {
|
|
|
|
return strings.Replace(abspath, `\\`, `\\?\UNC\`, 1)
|
|
|
|
}
|
|
|
|
// Normal path
|
|
|
|
return `\\?\` + abspath
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
|
2021-12-29 21:07:17 +00:00
|
|
|
// TempFile creates a temporary file which is marked as delete-on-close
|
2017-05-10 17:48:22 +00:00
|
|
|
func TempFile(dir, prefix string) (f *os.File, err error) {
|
2022-12-02 18:36:43 +00:00
|
|
|
// slightly modified implementation of os.CreateTemp(dir, prefix) to allow us to add
|
2021-12-29 21:07:17 +00:00
|
|
|
// the FILE_ATTRIBUTE_TEMPORARY | FILE_FLAG_DELETE_ON_CLOSE flags.
|
|
|
|
// These provide two large benefits:
|
|
|
|
// FILE_ATTRIBUTE_TEMPORARY tells Windows to keep the file in memory only if possible
|
|
|
|
// which reduces the amount of unnecessary disk writes.
|
|
|
|
// FILE_FLAG_DELETE_ON_CLOSE instructs Windows to automatically delete the file once
|
|
|
|
// all file descriptors are closed.
|
|
|
|
|
2021-10-12 00:15:38 +00:00
|
|
|
if dir == "" {
|
|
|
|
dir = os.TempDir()
|
|
|
|
}
|
|
|
|
|
2021-12-29 21:07:17 +00:00
|
|
|
access := uint32(windows.GENERIC_READ | windows.GENERIC_WRITE)
|
|
|
|
creation := uint32(windows.CREATE_NEW)
|
|
|
|
share := uint32(0) // prevent other processes from accessing the file
|
|
|
|
flags := uint32(windows.FILE_ATTRIBUTE_TEMPORARY | windows.FILE_FLAG_DELETE_ON_CLOSE)
|
|
|
|
|
|
|
|
rnd := rand.New(rand.NewSource(time.Now().UnixNano()))
|
2021-10-12 00:15:38 +00:00
|
|
|
for i := 0; i < 10000; i++ {
|
2021-12-29 21:07:17 +00:00
|
|
|
randSuffix := strconv.Itoa(int(1e9 + rnd.Intn(1e9)%1e9))[1:]
|
|
|
|
path := filepath.Join(dir, prefix+randSuffix)
|
2021-10-12 00:15:38 +00:00
|
|
|
|
2021-12-29 21:07:17 +00:00
|
|
|
ptr, err := windows.UTF16PtrFromString(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
h, err := windows.CreateFile(ptr, access, share, nil, creation, flags, 0)
|
|
|
|
if os.IsExist(err) {
|
|
|
|
continue
|
2021-10-12 00:15:38 +00:00
|
|
|
}
|
2021-12-29 21:07:17 +00:00
|
|
|
return os.NewFile(uintptr(h), path), err
|
2021-10-12 00:15:38 +00:00
|
|
|
}
|
2021-12-29 21:07:17 +00:00
|
|
|
|
2021-10-12 00:15:38 +00:00
|
|
|
// Proper error handling is still to do
|
|
|
|
return nil, os.ErrExist
|
2017-05-10 17:48:22 +00:00
|
|
|
}
|
2017-07-18 19:47:30 +00:00
|
|
|
|
|
|
|
// Chmod changes the mode of the named file to mode.
|
|
|
|
func Chmod(name string, mode os.FileMode) error {
|
|
|
|
return os.Chmod(fixpath(name), mode)
|
|
|
|
}
|