mirror of
https://github.com/minio/minio.git
synced 2025-07-25 00:10:10 -04:00
windows: Support all REPARSE_POINT attrib files properly. (#4203)
This change adopts the upstream fix in this regard at https://go-review.googlesource.com/#/c/41834/ for Minio's purposes. Go's current os.Stat() lacks support for lot of strange windows files such as - share symlinks on SMB2 - symlinks on docker nanoserver - de-duplicated files on NTFS de-duplicated volume. This PR attempts to incorporate the change mentioned here https://blogs.msdn.microsoft.com/oldnewthing/20100212-00/?p=14963/ The article suggests to use Windows I/O manager to dereference the symbolic link. Fixes #4122
This commit is contained in:
parent
44d53c9c67
commit
f0b5c0ec7c
@ -45,7 +45,7 @@ func TestServerConfigMigrateV1(t *testing.T) {
|
|||||||
t.Fatal("Unexpected error: ", err)
|
t.Fatal("Unexpected error: ", err)
|
||||||
}
|
}
|
||||||
// Check if config v1 is removed from filesystem
|
// Check if config v1 is removed from filesystem
|
||||||
if _, err := os.Stat(configPath); err == nil || !os.IsNotExist(err) {
|
if _, err := osStat(configPath); err == nil || !os.IsNotExist(err) {
|
||||||
t.Fatal("Config V1 file is not purged")
|
t.Fatal("Config V1 file is not purged")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ func fsStatDir(statDir string) (os.FileInfo, error) {
|
|||||||
return nil, traceError(err)
|
return nil, traceError(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fi, err := os.Stat(preparePath(statDir))
|
fi, err := osStat(preparePath(statDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return nil, traceError(errVolumeNotFound)
|
return nil, traceError(errVolumeNotFound)
|
||||||
@ -160,7 +160,7 @@ func fsStatFile(statFile string) (os.FileInfo, error) {
|
|||||||
return nil, traceError(err)
|
return nil, traceError(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fi, err := os.Stat(preparePath(statFile))
|
fi, err := osStat(preparePath(statFile))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return nil, traceError(errFileNotFound)
|
return nil, traceError(errFileNotFound)
|
||||||
@ -206,7 +206,7 @@ func fsOpenFile(readPath string, offset int64) (io.ReadCloser, int64, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Stat to get the size of the file at path.
|
// Stat to get the size of the file at path.
|
||||||
st, err := fr.Stat()
|
st, err := osStat(preparePath(readPath))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, 0, traceError(err)
|
return nil, 0, traceError(err)
|
||||||
}
|
}
|
||||||
@ -344,7 +344,7 @@ func fsDeleteFile(basePath, deletePath string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Verify if the path exists.
|
// Verify if the path exists.
|
||||||
pathSt, err := os.Stat(preparePath(deletePath))
|
pathSt, err := osStat(preparePath(deletePath))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return traceError(errFileNotFound)
|
return traceError(errFileNotFound)
|
||||||
|
@ -442,11 +442,11 @@ func TestFSRemoveMeta(t *testing.T) {
|
|||||||
t.Fatalf("Unable to remove file, %s", err)
|
t.Fatalf("Unable to remove file, %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := os.Stat(filePath); !os.IsNotExist(err) {
|
if _, err := osStat(preparePath(filePath)); !os.IsNotExist(err) {
|
||||||
t.Fatalf("`%s` file found though it should have been deleted.", filePath)
|
t.Fatalf("`%s` file found though it should have been deleted.", filePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := os.Stat(path.Dir(filePath)); !os.IsNotExist(err) {
|
if _, err := osStat(preparePath(path.Dir(filePath))); !os.IsNotExist(err) {
|
||||||
t.Fatalf("`%s` parent directory found though it should have been deleted.", filePath)
|
t.Fatalf("`%s` parent directory found though it should have been deleted.", filePath)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -85,7 +85,7 @@ func newFSObjectLayer(fsPath string) (ObjectLayer, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
fi, err := os.Stat(preparePath(fsPath))
|
fi, err := osStat(preparePath(fsPath))
|
||||||
if err == nil {
|
if err == nil {
|
||||||
if !fi.IsDir() {
|
if !fi.IsDir() {
|
||||||
return nil, syscall.ENOTDIR
|
return nil, syscall.ENOTDIR
|
||||||
@ -224,7 +224,7 @@ func (fs fsObjects) GetBucketInfo(bucket string) (BucketInfo, error) {
|
|||||||
return BucketInfo{}, toObjectErr(err, bucket)
|
return BucketInfo{}, toObjectErr(err, bucket)
|
||||||
}
|
}
|
||||||
|
|
||||||
// As os.Stat() doesn't carry other than ModTime(), use ModTime() as CreatedTime.
|
// As osStat() doesn't carry other than ModTime(), use ModTime() as CreatedTime.
|
||||||
createdTime := st.ModTime()
|
createdTime := st.ModTime()
|
||||||
return BucketInfo{
|
return BucketInfo{
|
||||||
Name: bucket,
|
Name: bucket,
|
||||||
@ -263,7 +263,7 @@ func (fs fsObjects) ListBuckets() ([]BucketInfo, error) {
|
|||||||
|
|
||||||
bucketInfos = append(bucketInfos, BucketInfo{
|
bucketInfos = append(bucketInfos, BucketInfo{
|
||||||
Name: fi.Name(),
|
Name: fi.Name(),
|
||||||
// As os.Stat() doesnt carry CreatedTime, use ModTime() as CreatedTime.
|
// As osStat() doesnt carry CreatedTime, use ModTime() as CreatedTime.
|
||||||
Created: fi.ModTime(),
|
Created: fi.ModTime(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -75,12 +75,12 @@ func parseDirents(dirPath string, buf []byte) (entries []string, err error) {
|
|||||||
case syscall.DT_REG:
|
case syscall.DT_REG:
|
||||||
entries = append(entries, name)
|
entries = append(entries, name)
|
||||||
case syscall.DT_LNK, syscall.DT_UNKNOWN:
|
case syscall.DT_LNK, syscall.DT_UNKNOWN:
|
||||||
// If its symbolic link, follow the link using os.Stat()
|
// If its symbolic link, follow the link using osStat()
|
||||||
|
|
||||||
// On Linux XFS does not implement d_type for on disk
|
// On Linux XFS does not implement d_type for on disk
|
||||||
// format << v5. Fall back to Stat().
|
// format << v5. Fall back to OsStat().
|
||||||
var fi os.FileInfo
|
var fi os.FileInfo
|
||||||
fi, err = os.Stat(path.Join(dirPath, name))
|
fi, err = osStat(path.Join(dirPath, name))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// If file does not exist, we continue and skip it.
|
// If file does not exist, we continue and skip it.
|
||||||
// Could happen if it was deleted in the middle while
|
// Could happen if it was deleted in the middle while
|
||||||
|
@ -55,7 +55,7 @@ func readDir(dirPath string) (entries []string, err error) {
|
|||||||
// Stat symbolic link and follow to get the final value.
|
// Stat symbolic link and follow to get the final value.
|
||||||
if fi.Mode()&os.ModeSymlink == os.ModeSymlink {
|
if fi.Mode()&os.ModeSymlink == os.ModeSymlink {
|
||||||
var st os.FileInfo
|
var st os.FileInfo
|
||||||
st, err = os.Stat(preparePath(path.Join(dirPath, fi.Name())))
|
st, err = osStat(preparePath(path.Join(dirPath, fi.Name())))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errorIf(err, "Unable to stat path %s", path.Join(dirPath, fi.Name()))
|
errorIf(err, "Unable to stat path %s", path.Join(dirPath, fi.Name()))
|
||||||
continue
|
continue
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// +build linux darwin dragonfly freebsd netbsd openbsd solaris
|
// +build !windows
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Minio Cloud Storage, (C) 2016, 2017 Minio, Inc.
|
* Minio Cloud Storage, (C) 2016, 2017 Minio, Inc.
|
||||||
@ -20,6 +20,12 @@ package cmd
|
|||||||
|
|
||||||
import "os"
|
import "os"
|
||||||
|
|
||||||
|
// osStat returns a FileInfo structure describing the named file.
|
||||||
|
// If there is an error, it will be of type *PathError.
|
||||||
|
func osStat(name string) (os.FileInfo, error) {
|
||||||
|
return os.Stat(name)
|
||||||
|
}
|
||||||
|
|
||||||
// isValidVolname verifies a volname name in accordance with object
|
// isValidVolname verifies a volname name in accordance with object
|
||||||
// layer requirements.
|
// layer requirements.
|
||||||
func isValidVolname(volname string) bool {
|
func isValidVolname(volname string) bool {
|
||||||
|
@ -20,7 +20,6 @@ package cmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
|
||||||
"path"
|
"path"
|
||||||
"syscall"
|
"syscall"
|
||||||
"testing"
|
"testing"
|
||||||
@ -62,7 +61,7 @@ func TestIsValidUmaskVol(t *testing.T) {
|
|||||||
defer removeAll(tmpPath)
|
defer removeAll(tmpPath)
|
||||||
|
|
||||||
// Stat to get permissions bits.
|
// Stat to get permissions bits.
|
||||||
st, err := os.Stat(path.Join(tmpPath, testCase.volName))
|
st, err := osStat(path.Join(tmpPath, testCase.volName))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("Stat failed with %s expected to pass.", err)
|
t.Fatalf("Stat failed with %s expected to pass.", err)
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// +build windows
|
// +build windows
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Minio Cloud Storage, (C) 2016 Minio, Inc.
|
* Minio Cloud Storage, (C) 2017 Minio, Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -24,8 +24,15 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
|
os2 "github.com/minio/minio/pkg/x/os"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Wrapper around safe stat implementation to avoid windows bugs.
|
||||||
|
func osStat(name string) (os.FileInfo, error) {
|
||||||
|
return os2.Stat(name)
|
||||||
|
}
|
||||||
|
|
||||||
// isValidVolname verifies a volname name in accordance with object
|
// isValidVolname verifies a volname name in accordance with object
|
||||||
// layer requirements.
|
// layer requirements.
|
||||||
func isValidVolname(volname string) bool {
|
func isValidVolname(volname string) bool {
|
||||||
@ -44,7 +51,7 @@ func isValidVolname(volname string) bool {
|
|||||||
func mkdirAll(path string, perm os.FileMode) error {
|
func mkdirAll(path string, perm os.FileMode) error {
|
||||||
path = preparePath(path)
|
path = preparePath(path)
|
||||||
// Fast path: if we can tell whether path is a directory or file, stop with success or error.
|
// Fast path: if we can tell whether path is a directory or file, stop with success or error.
|
||||||
dir, err := os.Stat(path)
|
dir, err := osStat(path)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
if dir.IsDir() {
|
if dir.IsDir() {
|
||||||
return nil
|
return nil
|
||||||
|
36
cmd/posix.go
36
cmd/posix.go
@ -116,7 +116,7 @@ func newPosix(path string) (StorageAPI, error) {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
fi, err := os.Stat(preparePath(diskPath))
|
fi, err := osStat(preparePath(diskPath))
|
||||||
if err == nil {
|
if err == nil {
|
||||||
if !fi.IsDir() {
|
if !fi.IsDir() {
|
||||||
return nil, syscall.ENOTDIR
|
return nil, syscall.ENOTDIR
|
||||||
@ -230,7 +230,7 @@ func (s *posix) getVolDir(volume string) (string, error) {
|
|||||||
// checkDiskFound - validates if disk is available,
|
// checkDiskFound - validates if disk is available,
|
||||||
// returns errDiskNotFound if not found.
|
// returns errDiskNotFound if not found.
|
||||||
func (s *posix) checkDiskFound() (err error) {
|
func (s *posix) checkDiskFound() (err error) {
|
||||||
_, err = os.Stat(preparePath(s.diskPath))
|
_, err = osStat(preparePath(s.diskPath))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return errDiskNotFound
|
return errDiskNotFound
|
||||||
@ -321,7 +321,7 @@ func listVols(dirPath string) ([]VolInfo, error) {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
var fi os.FileInfo
|
var fi os.FileInfo
|
||||||
fi, err = os.Stat(preparePath(pathJoin(dirPath, entry)))
|
fi, err = osStat(preparePath(pathJoin(dirPath, entry)))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// If the file does not exist, skip the entry.
|
// If the file does not exist, skip the entry.
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
@ -331,7 +331,7 @@ func listVols(dirPath string) ([]VolInfo, error) {
|
|||||||
}
|
}
|
||||||
volsInfo = append(volsInfo, VolInfo{
|
volsInfo = append(volsInfo, VolInfo{
|
||||||
Name: fi.Name(),
|
Name: fi.Name(),
|
||||||
// As os.Stat() doesn't carry other than ModTime(), use
|
// As osStat() doesn't carry other than ModTime(), use
|
||||||
// ModTime() as CreatedTime.
|
// ModTime() as CreatedTime.
|
||||||
Created: fi.ModTime(),
|
Created: fi.ModTime(),
|
||||||
})
|
})
|
||||||
@ -362,14 +362,14 @@ func (s *posix) StatVol(volume string) (volInfo VolInfo, err error) {
|
|||||||
}
|
}
|
||||||
// Stat a volume entry.
|
// Stat a volume entry.
|
||||||
var st os.FileInfo
|
var st os.FileInfo
|
||||||
st, err = os.Stat(preparePath(volumeDir))
|
st, err = osStat(preparePath(volumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return VolInfo{}, errVolumeNotFound
|
return VolInfo{}, errVolumeNotFound
|
||||||
}
|
}
|
||||||
return VolInfo{}, err
|
return VolInfo{}, err
|
||||||
}
|
}
|
||||||
// As os.Stat() doesn't carry other than ModTime(), use ModTime()
|
// As osStat() doesn't carry other than ModTime(), use ModTime()
|
||||||
// as CreatedTime.
|
// as CreatedTime.
|
||||||
createdTime := st.ModTime()
|
createdTime := st.ModTime()
|
||||||
return VolInfo{
|
return VolInfo{
|
||||||
@ -434,7 +434,7 @@ func (s *posix) ListDir(volume, dirPath string) (entries []string, err error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
// Stat a volume entry.
|
// Stat a volume entry.
|
||||||
_, err = os.Stat(preparePath(volumeDir))
|
_, err = osStat(preparePath(volumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return nil, errVolumeNotFound
|
return nil, errVolumeNotFound
|
||||||
@ -470,7 +470,7 @@ func (s *posix) ReadAll(volume, path string) (buf []byte, err error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
// Stat a volume entry.
|
// Stat a volume entry.
|
||||||
_, err = os.Stat(preparePath(volumeDir))
|
_, err = osStat(preparePath(volumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return nil, errVolumeNotFound
|
return nil, errVolumeNotFound
|
||||||
@ -536,7 +536,7 @@ func (s *posix) ReadFile(volume string, path string, offset int64, buf []byte) (
|
|||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
// Stat a volume entry.
|
// Stat a volume entry.
|
||||||
_, err = os.Stat(preparePath(volumeDir))
|
_, err = osStat(preparePath(volumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return 0, errVolumeNotFound
|
return 0, errVolumeNotFound
|
||||||
@ -609,7 +609,7 @@ func (s *posix) createFile(volume, path string) (f *os.File, err error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
// Stat a volume entry.
|
// Stat a volume entry.
|
||||||
_, err = os.Stat(preparePath(volumeDir))
|
_, err = osStat(preparePath(volumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return nil, errVolumeNotFound
|
return nil, errVolumeNotFound
|
||||||
@ -624,7 +624,7 @@ func (s *posix) createFile(volume, path string) (f *os.File, err error) {
|
|||||||
|
|
||||||
// Verify if the file already exists and is not of regular type.
|
// Verify if the file already exists and is not of regular type.
|
||||||
var st os.FileInfo
|
var st os.FileInfo
|
||||||
if st, err = os.Stat(preparePath(filePath)); err == nil {
|
if st, err = osStat(preparePath(filePath)); err == nil {
|
||||||
if !st.Mode().IsRegular() {
|
if !st.Mode().IsRegular() {
|
||||||
return nil, errIsNotRegular
|
return nil, errIsNotRegular
|
||||||
}
|
}
|
||||||
@ -760,7 +760,7 @@ func (s *posix) StatFile(volume, path string) (file FileInfo, err error) {
|
|||||||
return FileInfo{}, err
|
return FileInfo{}, err
|
||||||
}
|
}
|
||||||
// Stat a volume entry.
|
// Stat a volume entry.
|
||||||
_, err = os.Stat(preparePath(volumeDir))
|
_, err = osStat(preparePath(volumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return FileInfo{}, errVolumeNotFound
|
return FileInfo{}, errVolumeNotFound
|
||||||
@ -772,7 +772,7 @@ func (s *posix) StatFile(volume, path string) (file FileInfo, err error) {
|
|||||||
if err = checkPathLength(preparePath(filePath)); err != nil {
|
if err = checkPathLength(preparePath(filePath)); err != nil {
|
||||||
return FileInfo{}, err
|
return FileInfo{}, err
|
||||||
}
|
}
|
||||||
st, err := os.Stat(preparePath(filePath))
|
st, err := osStat(preparePath(filePath))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// File is really not found.
|
// File is really not found.
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
@ -806,7 +806,7 @@ func deleteFile(basePath, deletePath string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
// Verify if the path exists.
|
// Verify if the path exists.
|
||||||
pathSt, err := os.Stat(preparePath(deletePath))
|
pathSt, err := osStat(preparePath(deletePath))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return errFileNotFound
|
return errFileNotFound
|
||||||
@ -856,7 +856,7 @@ func (s *posix) DeleteFile(volume, path string) (err error) {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
// Stat a volume entry.
|
// Stat a volume entry.
|
||||||
_, err = os.Stat(preparePath(volumeDir))
|
_, err = osStat(preparePath(volumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return errVolumeNotFound
|
return errVolumeNotFound
|
||||||
@ -900,14 +900,14 @@ func (s *posix) RenameFile(srcVolume, srcPath, dstVolume, dstPath string) (err e
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
// Stat a volume entry.
|
// Stat a volume entry.
|
||||||
_, err = os.Stat(preparePath(srcVolumeDir))
|
_, err = osStat(preparePath(srcVolumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return errVolumeNotFound
|
return errVolumeNotFound
|
||||||
}
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
_, err = os.Stat(preparePath(dstVolumeDir))
|
_, err = osStat(preparePath(dstVolumeDir))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
return errVolumeNotFound
|
return errVolumeNotFound
|
||||||
@ -930,7 +930,7 @@ func (s *posix) RenameFile(srcVolume, srcPath, dstVolume, dstPath string) (err e
|
|||||||
}
|
}
|
||||||
if srcIsDir {
|
if srcIsDir {
|
||||||
// If source is a directory we expect the destination to be non-existent always.
|
// If source is a directory we expect the destination to be non-existent always.
|
||||||
_, err = os.Stat(preparePath(dstFilePath))
|
_, err = osStat(preparePath(dstFilePath))
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return errFileAccessDenied
|
return errFileAccessDenied
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@ func getCurrentReleaseTime(minioVersion, minioBinaryPath string) (releaseTime ti
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Looks like version is minio non-standard, we use minio binary's ModTime as release time.
|
// Looks like version is minio non-standard, we use minio binary's ModTime as release time.
|
||||||
fi, err := os.Stat(minioBinaryPath)
|
fi, err := osStat(minioBinaryPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = fmt.Errorf("Unable to get ModTime of %s. %s", minioBinaryPath, err)
|
err = fmt.Errorf("Unable to get ModTime of %s. %s", minioBinaryPath, err)
|
||||||
} else {
|
} else {
|
||||||
|
@ -59,7 +59,7 @@ func TestGetCurrentReleaseTime(t *testing.T) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
fi, err = os.Stat(goBinAbsPath)
|
fi, err = osStat(goBinAbsPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
@ -87,7 +87,7 @@ func TestGetCurrentReleaseTime(t *testing.T) {
|
|||||||
}
|
}
|
||||||
errorMessage4 := "Unable to get ModTime of /tmp/non-existent-file. stat /tmp/non-existent-file: no such file or directory"
|
errorMessage4 := "Unable to get ModTime of /tmp/non-existent-file. stat /tmp/non-existent-file: no such file or directory"
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
errorMessage4 = "Unable to get ModTime of C:\\tmp\\non-existent-file. GetFileAttributesEx C:\\tmp\\non-existent-file: The system cannot find the path specified."
|
errorMessage4 = "Unable to get ModTime of C:\\tmp\\non-existent-file. CreateFile C:\\tmp\\non-existent-file: The system cannot find the path specified."
|
||||||
}
|
}
|
||||||
|
|
||||||
testCases := []struct {
|
testCases := []struct {
|
||||||
|
@ -25,7 +25,6 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -182,7 +181,7 @@ func dumpRequest(r *http.Request) string {
|
|||||||
|
|
||||||
// isFile - returns whether given path is a file or not.
|
// isFile - returns whether given path is a file or not.
|
||||||
func isFile(path string) bool {
|
func isFile(path string) bool {
|
||||||
if fi, err := os.Stat(path); err == nil {
|
if fi, err := osStat(path); err == nil {
|
||||||
return fi.Mode().IsRegular()
|
return fi.Mode().IsRegular()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,9 +19,10 @@
|
|||||||
package disk
|
package disk
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"syscall"
|
"syscall"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
|
os2 "github.com/minio/minio/pkg/x/os"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -43,7 +44,7 @@ var (
|
|||||||
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa364937(v=vs.85).aspx
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa364937(v=vs.85).aspx
|
||||||
func GetInfo(path string) (info Info, err error) {
|
func GetInfo(path string) (info Info, err error) {
|
||||||
// Stat to know if the path exists.
|
// Stat to know if the path exists.
|
||||||
if _, err = os.Stat(path); err != nil {
|
if _, err = os2.Stat(path); err != nil {
|
||||||
return Info{}, err
|
return Info{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,6 +24,8 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"syscall"
|
"syscall"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
|
os2 "github.com/minio/minio/pkg/x/os"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -51,7 +53,7 @@ func LockedOpenFile(path string, flag int, perm os.FileMode) (*LockedFile, error
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
st, err := os.Stat(path)
|
st, err := os2.Stat(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
f.Close()
|
f.Close()
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -140,7 +142,8 @@ func lockFile(fd syscall.Handle, flags uint32) error {
|
|||||||
|
|
||||||
func lockFileEx(h syscall.Handle, flags, locklow, lockhigh uint32, ol *syscall.Overlapped) (err error) {
|
func lockFileEx(h syscall.Handle, flags, locklow, lockhigh uint32, ol *syscall.Overlapped) (err error) {
|
||||||
var reserved = uint32(0)
|
var reserved = uint32(0)
|
||||||
r1, _, e1 := syscall.Syscall6(procLockFileEx.Addr(), 6, uintptr(h), uintptr(flags), uintptr(reserved), uintptr(locklow), uintptr(lockhigh), uintptr(unsafe.Pointer(ol)))
|
r1, _, e1 := syscall.Syscall6(procLockFileEx.Addr(), 6, uintptr(h), uintptr(flags),
|
||||||
|
uintptr(reserved), uintptr(locklow), uintptr(lockhigh), uintptr(unsafe.Pointer(ol)))
|
||||||
if r1 == 0 {
|
if r1 == 0 {
|
||||||
if e1 != 0 {
|
if e1 != 0 {
|
||||||
err = error(e1)
|
err = error(e1)
|
||||||
|
@ -22,11 +22,11 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
os2 "github.com/minio/minio/pkg/x/os"
|
||||||
yaml "gopkg.in/yaml.v2"
|
yaml "gopkg.in/yaml.v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -122,7 +122,7 @@ func saveFileConfig(filename string, v interface{}) error {
|
|||||||
// decoder format according to the filename extension. If no
|
// decoder format according to the filename extension. If no
|
||||||
// extension is provided, json will be selected by default.
|
// extension is provided, json will be selected by default.
|
||||||
func loadFileConfig(filename string, v interface{}) error {
|
func loadFileConfig(filename string, v interface{}) error {
|
||||||
if _, err := os.Stat(filename); err != nil {
|
if _, err := os2.Stat(filename); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
fileData, err := ioutil.ReadFile(filename)
|
fileData, err := ioutil.ReadFile(filename)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Minio Client (C) 2015 Minio, Inc.
|
* Minio Client (C) 2015, 2016, 2017 Minio, Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -22,6 +22,7 @@ import (
|
|||||||
"path"
|
"path"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
os2 "github.com/minio/minio/pkg/x/os"
|
||||||
. "gopkg.in/check.v1"
|
. "gopkg.in/check.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -47,7 +48,7 @@ func (s *MySuite) TearDownSuite(c *C) {
|
|||||||
func (s *MySuite) TestSafeAbort(c *C) {
|
func (s *MySuite) TestSafeAbort(c *C) {
|
||||||
f, err := CreateFile(path.Join(s.root, "testfile-abort"))
|
f, err := CreateFile(path.Join(s.root, "testfile-abort"))
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
_, err = os.Stat(path.Join(s.root, "testfile-abort"))
|
_, err = os2.Stat(path.Join(s.root, "testfile-abort"))
|
||||||
c.Assert(err, Not(IsNil))
|
c.Assert(err, Not(IsNil))
|
||||||
err = f.Abort()
|
err = f.Abort()
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
@ -58,11 +59,11 @@ func (s *MySuite) TestSafeAbort(c *C) {
|
|||||||
func (s *MySuite) TestSafeClose(c *C) {
|
func (s *MySuite) TestSafeClose(c *C) {
|
||||||
f, err := CreateFile(path.Join(s.root, "testfile-close"))
|
f, err := CreateFile(path.Join(s.root, "testfile-close"))
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
_, err = os.Stat(path.Join(s.root, "testfile-close"))
|
_, err = os2.Stat(path.Join(s.root, "testfile-close"))
|
||||||
c.Assert(err, Not(IsNil))
|
c.Assert(err, Not(IsNil))
|
||||||
err = f.Close()
|
err = f.Close()
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
_, err = os.Stat(path.Join(s.root, "testfile-close"))
|
_, err = os2.Stat(path.Join(s.root, "testfile-close"))
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
err = os.Remove(path.Join(s.root, "testfile-close"))
|
err = os.Remove(path.Join(s.root, "testfile-close"))
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
@ -73,7 +74,7 @@ func (s *MySuite) TestSafeClose(c *C) {
|
|||||||
func (s *MySuite) TestSafe(c *C) {
|
func (s *MySuite) TestSafe(c *C) {
|
||||||
f, err := CreateFile(path.Join(s.root, "testfile-safe"))
|
f, err := CreateFile(path.Join(s.root, "testfile-safe"))
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
_, err = os.Stat(path.Join(s.root, "testfile-safe"))
|
_, err = os2.Stat(path.Join(s.root, "testfile-safe"))
|
||||||
c.Assert(err, Not(IsNil))
|
c.Assert(err, Not(IsNil))
|
||||||
err = f.Close()
|
err = f.Close()
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
@ -81,7 +82,7 @@ func (s *MySuite) TestSafe(c *C) {
|
|||||||
c.Assert(err.Error(), Equals, "write on closed file")
|
c.Assert(err.Error(), Equals, "write on closed file")
|
||||||
err = f.Close()
|
err = f.Close()
|
||||||
c.Assert(err.Error(), Equals, "close on closed file")
|
c.Assert(err.Error(), Equals, "close on closed file")
|
||||||
_, err = os.Stat(path.Join(s.root, "testfile-safe"))
|
_, err = os2.Stat(path.Join(s.root, "testfile-safe"))
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
err = os.Remove(path.Join(s.root, "testfile-safe"))
|
err = os.Remove(path.Join(s.root, "testfile-safe"))
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
@ -90,11 +91,11 @@ func (s *MySuite) TestSafe(c *C) {
|
|||||||
func (s *MySuite) TestSafeAbortWrite(c *C) {
|
func (s *MySuite) TestSafeAbortWrite(c *C) {
|
||||||
f, err := CreateFile(path.Join(s.root, "purgefile-abort"))
|
f, err := CreateFile(path.Join(s.root, "purgefile-abort"))
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
_, err = os.Stat(path.Join(s.root, "purgefile-abort"))
|
_, err = os2.Stat(path.Join(s.root, "purgefile-abort"))
|
||||||
c.Assert(err, Not(IsNil))
|
c.Assert(err, Not(IsNil))
|
||||||
err = f.Abort()
|
err = f.Abort()
|
||||||
c.Assert(err, IsNil)
|
c.Assert(err, IsNil)
|
||||||
_, err = os.Stat(path.Join(s.root, "purgefile-abort"))
|
_, err = os2.Stat(path.Join(s.root, "purgefile-abort"))
|
||||||
c.Assert(err, Not(IsNil))
|
c.Assert(err, Not(IsNil))
|
||||||
err = f.Abort()
|
err = f.Abort()
|
||||||
c.Assert(err.Error(), Equals, "abort on aborted file")
|
c.Assert(err.Error(), Equals, "abort on aborted file")
|
||||||
|
28
pkg/x/os/stat_others.go
Normal file
28
pkg/x/os/stat_others.go
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
// +build !windows
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Minio Cloud Storage, (C) 2017 Minio, Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package os
|
||||||
|
|
||||||
|
import os1 "os"
|
||||||
|
|
||||||
|
// Stat returns a FileInfo structure describing the
|
||||||
|
// named file. If there is an error, it will be of type
|
||||||
|
// *PathError.
|
||||||
|
func Stat(name string) (os1.FileInfo, error) {
|
||||||
|
return os1.Stat(name)
|
||||||
|
}
|
188
pkg/x/os/stat_windows.go
Normal file
188
pkg/x/os/stat_windows.go
Normal file
@ -0,0 +1,188 @@
|
|||||||
|
// +build windows
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Minio Cloud Storage, (C) 2017 Minio, Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// FIXME: Once we have a go version released with the
|
||||||
|
// following fix https://go-review.googlesource.com/#/c/41834/.
|
||||||
|
// We should actively purge this block.
|
||||||
|
|
||||||
|
// Copyright 2009 The Go Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
// Package os implements extended safe functions
|
||||||
|
// for stdlib "os".
|
||||||
|
package os
|
||||||
|
|
||||||
|
import (
|
||||||
|
os1 "os"
|
||||||
|
"path/filepath"
|
||||||
|
"syscall"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
const errSharingViolation syscall.Errno = 32
|
||||||
|
|
||||||
|
// Stat returns a FileInfo structure describing the
|
||||||
|
// named file. If there is an error, it will be of type
|
||||||
|
// *PathError.
|
||||||
|
func Stat(name string) (os1.FileInfo, error) {
|
||||||
|
if len(name) == 0 {
|
||||||
|
return nil, &os1.PathError{
|
||||||
|
Op: "Stat",
|
||||||
|
Path: name,
|
||||||
|
Err: syscall.Errno(syscall.ERROR_PATH_NOT_FOUND),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if name == os1.DevNull {
|
||||||
|
return &devNullStat, nil
|
||||||
|
}
|
||||||
|
namep, err := syscall.UTF16PtrFromString(name)
|
||||||
|
if err != nil {
|
||||||
|
return nil, &os1.PathError{Op: "Stat", Path: name, Err: err}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use Windows I/O manager to dereference the symbolic link, as per
|
||||||
|
// https://blogs.msdn.microsoft.com/oldnewthing/20100212-00/?p=14963/
|
||||||
|
h, err := syscall.CreateFile(namep, 0, 0, nil,
|
||||||
|
syscall.OPEN_EXISTING, syscall.FILE_FLAG_BACKUP_SEMANTICS, 0)
|
||||||
|
if err != nil {
|
||||||
|
if err == errSharingViolation {
|
||||||
|
// try FindFirstFile now that CreateFile failed
|
||||||
|
return statWithFindFirstFile(name, namep)
|
||||||
|
}
|
||||||
|
return nil, &os1.PathError{Op: "CreateFile", Path: name, Err: err}
|
||||||
|
}
|
||||||
|
defer syscall.CloseHandle(h)
|
||||||
|
|
||||||
|
var d syscall.ByHandleFileInformation
|
||||||
|
if err = syscall.GetFileInformationByHandle(h, &d); err != nil {
|
||||||
|
return nil, &os1.PathError{
|
||||||
|
Op: "GetFileInformationByHandle",
|
||||||
|
Path: name,
|
||||||
|
Err: err,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return &fileStat{
|
||||||
|
name: filepath.Base(name),
|
||||||
|
sys: syscall.Win32FileAttributeData{
|
||||||
|
FileAttributes: d.FileAttributes,
|
||||||
|
CreationTime: d.CreationTime,
|
||||||
|
LastAccessTime: d.LastAccessTime,
|
||||||
|
LastWriteTime: d.LastWriteTime,
|
||||||
|
FileSizeHigh: d.FileSizeHigh,
|
||||||
|
FileSizeLow: d.FileSizeLow,
|
||||||
|
},
|
||||||
|
vol: d.VolumeSerialNumber,
|
||||||
|
idxhi: d.FileIndexHigh,
|
||||||
|
idxlo: d.FileIndexLow,
|
||||||
|
// fileStat.path is used by os1.SameFile to decide, if it needs
|
||||||
|
// to fetch vol, idxhi and idxlo. But these are already set,
|
||||||
|
// so set fileStat.path to "" to prevent os1.SameFile doing it again.
|
||||||
|
// Also do not set fileStat.filetype, because it is only used for
|
||||||
|
// console and stdin/stdout. But you cannot call os1.Stat for these.
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// statWithFindFirstFile is used by Stat to handle special case of stating
|
||||||
|
// c:\pagefile.sys. We might discovered other files need similar treatment.
|
||||||
|
func statWithFindFirstFile(name string, namep *uint16) (os1.FileInfo, error) {
|
||||||
|
var fd syscall.Win32finddata
|
||||||
|
h, err := syscall.FindFirstFile(namep, &fd)
|
||||||
|
if err != nil {
|
||||||
|
return nil, &os1.PathError{Op: "FindFirstFile", Path: name, Err: err}
|
||||||
|
}
|
||||||
|
syscall.FindClose(h)
|
||||||
|
|
||||||
|
fullpath := name
|
||||||
|
if !filepath.IsAbs(fullpath) {
|
||||||
|
fullpath, err = syscall.FullPath(fullpath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, &os1.PathError{Op: "FullPath", Path: name, Err: err}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return &fileStat{
|
||||||
|
name: filepath.Base(name),
|
||||||
|
path: fullpath,
|
||||||
|
sys: syscall.Win32FileAttributeData{
|
||||||
|
FileAttributes: fd.FileAttributes,
|
||||||
|
CreationTime: fd.CreationTime,
|
||||||
|
LastAccessTime: fd.LastAccessTime,
|
||||||
|
LastWriteTime: fd.LastWriteTime,
|
||||||
|
FileSizeHigh: fd.FileSizeHigh,
|
||||||
|
FileSizeLow: fd.FileSizeLow,
|
||||||
|
},
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// A fileStat is the implementation of os1.FileInfo returned by stat.
|
||||||
|
type fileStat struct {
|
||||||
|
name string
|
||||||
|
sys syscall.Win32FileAttributeData
|
||||||
|
filetype uint32 // what syscall.GetFileType returns
|
||||||
|
|
||||||
|
path string
|
||||||
|
vol uint32
|
||||||
|
idxhi uint32
|
||||||
|
idxlo uint32
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fs *fileStat) Name() string { return fs.name }
|
||||||
|
func (fs *fileStat) IsDir() bool { return fs.Mode().IsDir() }
|
||||||
|
|
||||||
|
func (fs *fileStat) Size() int64 {
|
||||||
|
return int64(fs.sys.FileSizeHigh)<<32 + int64(fs.sys.FileSizeLow)
|
||||||
|
}
|
||||||
|
|
||||||
|
// devNullStat is fileStat structure describing DevNull file ("NUL").
|
||||||
|
var devNullStat = fileStat{
|
||||||
|
name: os1.DevNull,
|
||||||
|
vol: 0,
|
||||||
|
idxhi: 0,
|
||||||
|
idxlo: 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fs *fileStat) Mode() (m os1.FileMode) {
|
||||||
|
if fs == &devNullStat {
|
||||||
|
return os1.ModeDevice | os1.ModeCharDevice | 0666
|
||||||
|
}
|
||||||
|
if fs.sys.FileAttributes&syscall.FILE_ATTRIBUTE_READONLY != 0 {
|
||||||
|
m |= 0444
|
||||||
|
} else {
|
||||||
|
m |= 0666
|
||||||
|
}
|
||||||
|
if fs.sys.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0 {
|
||||||
|
return m | os1.ModeSymlink
|
||||||
|
}
|
||||||
|
if fs.sys.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0 {
|
||||||
|
m |= os1.ModeDir | 0111
|
||||||
|
}
|
||||||
|
switch fs.filetype {
|
||||||
|
case syscall.FILE_TYPE_PIPE:
|
||||||
|
m |= os1.ModeNamedPipe
|
||||||
|
case syscall.FILE_TYPE_CHAR:
|
||||||
|
m |= os1.ModeCharDevice
|
||||||
|
}
|
||||||
|
return m
|
||||||
|
}
|
||||||
|
|
||||||
|
func (fs *fileStat) ModTime() time.Time {
|
||||||
|
return time.Unix(0, fs.sys.LastWriteTime.Nanoseconds())
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sys returns syscall.Win32FileAttributeData for file fs.
|
||||||
|
func (fs *fileStat) Sys() interface{} { return &fs.sys }
|
209
pkg/x/os/stat_windows_test.go
Normal file
209
pkg/x/os/stat_windows_test.go
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
// +build windows
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Minio Cloud Storage, (C) 2017 Minio, Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package os
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
os1 "os"
|
||||||
|
"path/filepath"
|
||||||
|
"syscall"
|
||||||
|
"testing"
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
modnetapi32 = syscall.NewLazyDLL("netapi32.dll")
|
||||||
|
|
||||||
|
procNetShareAdd = modnetapi32.NewProc("NetShareAdd")
|
||||||
|
procNetShareDel = modnetapi32.NewProc("NetShareDel")
|
||||||
|
)
|
||||||
|
|
||||||
|
func netShareAdd(serverName *uint16, level uint32, buf *byte, parmErr *uint16) (neterr error) {
|
||||||
|
r0, _, _ := syscall.Syscall6(procNetShareAdd.Addr(), 4, uintptr(unsafe.Pointer(serverName)), uintptr(level), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(parmErr)), 0, 0)
|
||||||
|
if r0 != 0 {
|
||||||
|
neterr = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func netShareDel(serverName *uint16, netName *uint16, reserved uint32) (neterr error) {
|
||||||
|
r0, _, _ := syscall.Syscall(procNetShareDel.Addr(), 3, uintptr(unsafe.Pointer(serverName)), uintptr(unsafe.Pointer(netName)), uintptr(reserved))
|
||||||
|
if r0 != 0 {
|
||||||
|
neterr = syscall.Errno(r0)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
type shareInfo2 struct {
|
||||||
|
Netname *uint16
|
||||||
|
Type uint32
|
||||||
|
Remark *uint16
|
||||||
|
Permissions uint32
|
||||||
|
MaxUses uint32
|
||||||
|
CurrentUses uint32
|
||||||
|
Path *uint16
|
||||||
|
Passwd *uint16
|
||||||
|
}
|
||||||
|
|
||||||
|
func sameFile(fi1, fi2 os1.FileInfo) bool {
|
||||||
|
fii1, ok1 := fi1.(*fileStat)
|
||||||
|
fii2, ok2 := fi2.(*fileStat)
|
||||||
|
if !ok1 || !ok2 {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return fii1.vol == fii2.vol && fii1.idxhi == fii2.idxhi && fii1.idxlo == fii2.idxlo
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestNetworkSymbolicLink(t *testing.T) {
|
||||||
|
dir, err := ioutil.TempDir("", "TestNetworkSymbolicLink")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os1.RemoveAll(dir)
|
||||||
|
|
||||||
|
oldwd, err := os1.Getwd()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
err = os1.Chdir(dir)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os1.Chdir(oldwd)
|
||||||
|
|
||||||
|
shareName := "GoSymbolicLinkTestShare" // hope no conflicts.
|
||||||
|
sharePath := filepath.Join(dir, shareName)
|
||||||
|
testDir := "TestDir"
|
||||||
|
|
||||||
|
err = os1.MkdirAll(filepath.Join(sharePath, testDir), 0777)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
wShareName, err := syscall.UTF16PtrFromString(shareName)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
wSharePath, err := syscall.UTF16PtrFromString(sharePath)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
p := shareInfo2{
|
||||||
|
Netname: wShareName,
|
||||||
|
Type: 0x00, // STYPE_DISKTREE
|
||||||
|
Remark: nil,
|
||||||
|
Permissions: 0,
|
||||||
|
MaxUses: 1,
|
||||||
|
CurrentUses: 0,
|
||||||
|
Path: wSharePath,
|
||||||
|
Passwd: nil,
|
||||||
|
}
|
||||||
|
|
||||||
|
err = netShareAdd(nil, 2, (*byte)(unsafe.Pointer(&p)), nil)
|
||||||
|
if err != nil {
|
||||||
|
if err == syscall.ERROR_ACCESS_DENIED {
|
||||||
|
t.Skip("you don't have enough privileges to add network share")
|
||||||
|
}
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
err := netShareDel(nil, wShareName, 0)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
UNCPath := `\\localhost\` + shareName + `\`
|
||||||
|
|
||||||
|
fi1, err := Stat(sharePath)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
fi2, err := Stat(UNCPath)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if !sameFile(fi1, fi2) {
|
||||||
|
t.Fatalf("%q and %q should be the same directory, but not", sharePath, UNCPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
target := filepath.Join(UNCPath, testDir)
|
||||||
|
link := "link"
|
||||||
|
|
||||||
|
err = os1.Symlink(target, link)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os1.Remove(link)
|
||||||
|
|
||||||
|
got, err := os1.Readlink(link)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if got != target {
|
||||||
|
t.Errorf(`os1.Readlink("%s"): got %v, want %v`, link, got, target)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestShareNotExistError(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("slow test that uses network; skipping")
|
||||||
|
}
|
||||||
|
_, err := Stat(`\\no_such_server\no_such_share\no_such_file`)
|
||||||
|
if err == nil {
|
||||||
|
t.Fatal("Stat succeeded, but expected to fail")
|
||||||
|
}
|
||||||
|
if !os1.IsNotExist(err) {
|
||||||
|
t.Fatalf("os1.Stat failed with %q, but os1.IsNotExist(err) is false", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestStatPagefile(t *testing.T) {
|
||||||
|
_, err := Stat(`c:\pagefile.sys`)
|
||||||
|
if err == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if os1.IsNotExist(err) {
|
||||||
|
t.Skip(`skipping because c:\pagefile.sys is not found`)
|
||||||
|
}
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestStatSymlinkLoop(t *testing.T) {
|
||||||
|
err := os1.Symlink("x", "y")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os1.Remove("y")
|
||||||
|
|
||||||
|
err = os1.Symlink("y", "x")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os1.Remove("x")
|
||||||
|
|
||||||
|
_, err = Stat("x")
|
||||||
|
if err != nil {
|
||||||
|
if _, ok := err.(*os1.PathError); !ok {
|
||||||
|
t.Errorf("expected *PathError, got %T: %v\n", err, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user