2019-08-09 11:54:11 -04:00
|
|
|
// +build linux,!appengine darwin freebsd netbsd openbsd
|
2016-04-04 20:27:55 -04:00
|
|
|
|
2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-04-04 20:27:55 -04:00
|
|
|
|
2016-08-18 19:23:42 -04:00
|
|
|
package cmd
|
2016-04-04 20:27:55 -04:00
|
|
|
|
|
|
|
import (
|
2020-09-14 20:19:54 -04:00
|
|
|
"bytes"
|
2019-08-09 11:54:11 -04:00
|
|
|
"fmt"
|
2016-04-04 20:27:55 -04:00
|
|
|
"os"
|
2020-06-09 12:44:50 -04:00
|
|
|
"sync"
|
2016-04-04 20:27:55 -04:00
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
2021-03-29 11:07:23 -04:00
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
2016-04-04 20:27:55 -04:00
|
|
|
)
|
|
|
|
|
2021-03-29 11:07:23 -04:00
|
|
|
func access(name string) error {
|
|
|
|
if err := unix.Access(name, unix.R_OK|unix.W_OK); err != nil {
|
|
|
|
return &os.PathError{Op: "lstat", Path: name, Err: err}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-09 11:54:11 -04:00
|
|
|
// The buffer must be at least a block long.
|
|
|
|
// refer https://github.com/golang/go/issues/24015
|
2020-06-09 12:44:50 -04:00
|
|
|
const blockSize = 8 << 10 // 8192
|
|
|
|
|
2020-11-18 12:21:02 -05:00
|
|
|
// By default atleast 128 entries in single getdents call (1MiB buffer)
|
2021-05-18 13:29:50 -04:00
|
|
|
var (
|
|
|
|
direntPool = sync.Pool{
|
|
|
|
New: func() interface{} {
|
|
|
|
buf := make([]byte, blockSize*128)
|
|
|
|
return &buf
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
direntNamePool = sync.Pool{
|
|
|
|
New: func() interface{} {
|
|
|
|
buf := make([]byte, blockSize)
|
|
|
|
return &buf
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
2016-04-04 20:27:55 -04:00
|
|
|
|
2019-08-09 11:54:11 -04:00
|
|
|
// unexpectedFileMode is a sentinel (and bogus) os.FileMode
|
|
|
|
// value used to represent a syscall.DT_UNKNOWN Dirent.Type.
|
|
|
|
const unexpectedFileMode os.FileMode = os.ModeNamedPipe | os.ModeSocket | os.ModeDevice
|
2016-04-08 14:46:03 -04:00
|
|
|
|
2020-09-14 20:19:54 -04:00
|
|
|
func parseDirEnt(buf []byte) (consumed int, name []byte, typ os.FileMode, err error) {
|
2019-08-09 11:54:11 -04:00
|
|
|
// golang.org/issue/15653
|
|
|
|
dirent := (*syscall.Dirent)(unsafe.Pointer(&buf[0]))
|
|
|
|
if v := unsafe.Offsetof(dirent.Reclen) + unsafe.Sizeof(dirent.Reclen); uintptr(len(buf)) < v {
|
2020-09-14 20:19:54 -04:00
|
|
|
return consumed, nil, typ, fmt.Errorf("buf size of %d smaller than dirent header size %d", len(buf), v)
|
2019-08-09 11:54:11 -04:00
|
|
|
}
|
|
|
|
if len(buf) < int(dirent.Reclen) {
|
2020-09-14 20:19:54 -04:00
|
|
|
return consumed, nil, typ, fmt.Errorf("buf size %d < record length %d", len(buf), dirent.Reclen)
|
2019-08-09 11:54:11 -04:00
|
|
|
}
|
|
|
|
consumed = int(dirent.Reclen)
|
|
|
|
if direntInode(dirent) == 0 { // File absent in directory.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch dirent.Type {
|
|
|
|
case syscall.DT_REG:
|
|
|
|
typ = 0
|
|
|
|
case syscall.DT_DIR:
|
|
|
|
typ = os.ModeDir
|
|
|
|
case syscall.DT_LNK:
|
|
|
|
typ = os.ModeSymlink
|
|
|
|
default:
|
|
|
|
// Skip all other file types. Revisit if/when this code needs
|
|
|
|
// to handle such files, MinIO is only interested in
|
|
|
|
// files and directories.
|
|
|
|
typ = unexpectedFileMode
|
|
|
|
}
|
2016-05-13 14:39:48 -04:00
|
|
|
|
2019-08-09 11:54:11 -04:00
|
|
|
nameBuf := (*[unsafe.Sizeof(dirent.Name)]byte)(unsafe.Pointer(&dirent.Name[0]))
|
|
|
|
nameLen, err := direntNamlen(dirent)
|
|
|
|
if err != nil {
|
2020-09-14 20:19:54 -04:00
|
|
|
return consumed, nil, typ, err
|
2016-04-04 20:27:55 -04:00
|
|
|
}
|
|
|
|
|
2020-09-14 20:19:54 -04:00
|
|
|
return consumed, nameBuf[:nameLen], typ, nil
|
2016-10-26 20:14:05 -04:00
|
|
|
}
|
|
|
|
|
2016-05-05 15:51:56 -04:00
|
|
|
// Return all the entries at the directory dirPath.
|
|
|
|
func readDir(dirPath string) (entries []string, err error) {
|
2018-05-08 22:08:21 -04:00
|
|
|
return readDirN(dirPath, -1)
|
|
|
|
}
|
|
|
|
|
2021-02-17 18:34:42 -05:00
|
|
|
// readDirFn applies the fn() function on each entries at dirPath, doesn't recurse into
|
|
|
|
// the directory itself, if the dirPath doesn't exist this function doesn't return
|
|
|
|
// an error.
|
|
|
|
func readDirFn(dirPath string, fn func(name string, typ os.FileMode) error) error {
|
2021-06-15 17:34:26 -04:00
|
|
|
f, err := Open(dirPath)
|
2020-04-23 15:26:13 -04:00
|
|
|
if err != nil {
|
2021-02-17 18:34:42 -05:00
|
|
|
if osErrToFileErr(err) == errFileNotFound {
|
|
|
|
return nil
|
|
|
|
}
|
2020-06-12 23:04:01 -04:00
|
|
|
return osErrToFileErr(err)
|
2020-04-23 15:26:13 -04:00
|
|
|
}
|
2020-06-12 23:04:01 -04:00
|
|
|
defer f.Close()
|
2020-04-23 15:26:13 -04:00
|
|
|
|
2021-05-18 13:29:50 -04:00
|
|
|
bufp := direntPool.Get().(*[]byte)
|
|
|
|
defer direntPool.Put(bufp)
|
|
|
|
buf := *bufp
|
|
|
|
|
2020-06-09 12:44:50 -04:00
|
|
|
boff := 0 // starting read position in buf
|
|
|
|
nbuf := 0 // end valid data in buf
|
2020-04-23 15:26:13 -04:00
|
|
|
|
|
|
|
for {
|
|
|
|
if boff >= nbuf {
|
|
|
|
boff = 0
|
2020-06-12 23:04:01 -04:00
|
|
|
nbuf, err = syscall.ReadDirent(int(f.Fd()), buf)
|
2020-04-23 15:26:13 -04:00
|
|
|
if err != nil {
|
|
|
|
if isSysErrNotDir(err) {
|
2021-02-17 18:34:42 -05:00
|
|
|
return nil
|
2020-04-23 15:26:13 -04:00
|
|
|
}
|
2021-02-24 03:14:16 -05:00
|
|
|
err = osErrToFileErr(err)
|
|
|
|
if err == errFileNotFound {
|
|
|
|
return nil
|
|
|
|
}
|
2020-04-23 15:26:13 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if nbuf <= 0 {
|
2020-06-09 12:44:50 -04:00
|
|
|
break // EOF
|
2020-04-23 15:26:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
consumed, name, typ, err := parseDirEnt(buf[boff:nbuf])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
boff += consumed
|
2020-09-14 20:19:54 -04:00
|
|
|
if len(name) == 0 || bytes.Equal(name, []byte{'.'}) || bytes.Equal(name, []byte{'.', '.'}) {
|
2020-04-23 15:26:13 -04:00
|
|
|
continue
|
|
|
|
}
|
2021-02-20 03:30:12 -05:00
|
|
|
|
|
|
|
// Fallback for filesystems (like old XFS) that don't
|
|
|
|
// support Dirent.Type and have DT_UNKNOWN (0) there
|
|
|
|
// instead.
|
|
|
|
if typ == unexpectedFileMode || typ&os.ModeSymlink == os.ModeSymlink {
|
|
|
|
fi, err := os.Stat(pathJoin(dirPath, string(name)))
|
|
|
|
if err != nil {
|
|
|
|
// It got deleted in the meantime, not found
|
|
|
|
// or returns too many symlinks ignore this
|
|
|
|
// file/directory.
|
|
|
|
if osIsNotExist(err) || isSysErrPathNotFound(err) ||
|
|
|
|
isSysErrTooManySymlinks(err) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore symlinked directories.
|
|
|
|
if typ&os.ModeSymlink == os.ModeSymlink && fi.IsDir() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
typ = fi.Mode() & os.ModeType
|
2020-04-23 15:26:13 -04:00
|
|
|
}
|
2021-02-17 18:34:42 -05:00
|
|
|
if err = fn(string(name), typ); err == errDoneForNow {
|
|
|
|
// fn() requested to return by caller.
|
2020-04-23 15:26:13 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-05-08 22:08:21 -04:00
|
|
|
// Return count entries at the directory dirPath and all entries
|
|
|
|
// if count is set to -1
|
|
|
|
func readDirN(dirPath string, count int) (entries []string, err error) {
|
2021-06-15 17:34:26 -04:00
|
|
|
f, err := Open(dirPath)
|
2016-04-08 14:46:03 -04:00
|
|
|
if err != nil {
|
2020-06-12 23:04:01 -04:00
|
|
|
return nil, osErrToFileErr(err)
|
2016-04-08 14:46:03 -04:00
|
|
|
}
|
2020-06-12 23:04:01 -04:00
|
|
|
defer f.Close()
|
2018-05-08 22:08:21 -04:00
|
|
|
|
2020-06-09 12:44:50 -04:00
|
|
|
bufp := direntPool.Get().(*[]byte)
|
|
|
|
defer direntPool.Put(bufp)
|
2021-05-18 13:29:50 -04:00
|
|
|
buf := *bufp
|
2020-06-09 12:44:50 -04:00
|
|
|
|
2021-05-18 13:29:50 -04:00
|
|
|
nameTmp := direntNamePool.Get().(*[]byte)
|
|
|
|
defer direntNamePool.Put(nameTmp)
|
2020-09-14 20:19:54 -04:00
|
|
|
tmp := *nameTmp
|
|
|
|
|
2020-06-09 12:44:50 -04:00
|
|
|
boff := 0 // starting read position in buf
|
|
|
|
nbuf := 0 // end valid data in buf
|
2018-05-08 22:08:21 -04:00
|
|
|
|
2019-08-09 11:54:11 -04:00
|
|
|
for count != 0 {
|
|
|
|
if boff >= nbuf {
|
|
|
|
boff = 0
|
2021-05-18 13:29:50 -04:00
|
|
|
nbuf, err = syscall.ReadDirent(int(f.Fd()), buf)
|
2019-08-09 11:54:11 -04:00
|
|
|
if err != nil {
|
|
|
|
if isSysErrNotDir(err) {
|
|
|
|
return nil, errFileNotFound
|
|
|
|
}
|
2021-02-24 03:14:16 -05:00
|
|
|
return nil, osErrToFileErr(err)
|
2019-08-09 11:54:11 -04:00
|
|
|
}
|
|
|
|
if nbuf <= 0 {
|
|
|
|
break
|
2018-07-14 02:41:48 -04:00
|
|
|
}
|
2016-04-08 14:46:03 -04:00
|
|
|
}
|
2021-05-18 13:29:50 -04:00
|
|
|
consumed, name, typ, err := parseDirEnt(buf[boff:nbuf])
|
2019-08-09 11:54:11 -04:00
|
|
|
if err != nil {
|
2016-05-05 15:51:56 -04:00
|
|
|
return nil, err
|
2016-04-08 14:46:03 -04:00
|
|
|
}
|
2019-08-09 11:54:11 -04:00
|
|
|
boff += consumed
|
2020-09-14 20:19:54 -04:00
|
|
|
if len(name) == 0 || bytes.Equal(name, []byte{'.'}) || bytes.Equal(name, []byte{'.', '.'}) {
|
2019-08-09 11:54:11 -04:00
|
|
|
continue
|
|
|
|
}
|
2021-02-20 03:30:12 -05:00
|
|
|
|
2019-08-09 11:54:11 -04:00
|
|
|
// Fallback for filesystems (like old XFS) that don't
|
|
|
|
// support Dirent.Type and have DT_UNKNOWN (0) there
|
|
|
|
// instead.
|
2021-02-20 03:30:12 -05:00
|
|
|
if typ == unexpectedFileMode || typ&os.ModeSymlink == os.ModeSymlink {
|
2021-06-15 17:34:26 -04:00
|
|
|
fi, err := Stat(pathJoin(dirPath, string(name)))
|
2019-08-09 11:54:11 -04:00
|
|
|
if err != nil {
|
2020-01-21 17:07:49 -05:00
|
|
|
// It got deleted in the meantime, not found
|
|
|
|
// or returns too many symlinks ignore this
|
|
|
|
// file/directory.
|
2020-11-23 11:36:49 -05:00
|
|
|
if osIsNotExist(err) || isSysErrPathNotFound(err) ||
|
2020-01-21 17:07:49 -05:00
|
|
|
isSysErrTooManySymlinks(err) {
|
2019-08-09 11:54:11 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
return nil, err
|
2018-05-08 22:08:21 -04:00
|
|
|
}
|
2021-02-20 03:30:12 -05:00
|
|
|
|
|
|
|
// Ignore symlinked directories.
|
|
|
|
if typ&os.ModeSymlink == os.ModeSymlink && fi.IsDir() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-09 11:54:11 -04:00
|
|
|
typ = fi.Mode() & os.ModeType
|
|
|
|
}
|
2021-02-20 03:30:12 -05:00
|
|
|
|
|
|
|
var nameStr string
|
2019-08-09 11:54:11 -04:00
|
|
|
if typ.IsRegular() {
|
2021-02-20 03:30:12 -05:00
|
|
|
nameStr = string(name)
|
2019-08-09 11:54:11 -04:00
|
|
|
} else if typ.IsDir() {
|
2020-09-14 20:19:54 -04:00
|
|
|
// Use temp buffer to append a slash to avoid string concat.
|
|
|
|
tmp = tmp[:len(name)+1]
|
|
|
|
copy(tmp, name)
|
|
|
|
tmp[len(tmp)-1] = '/' // SlashSeparator
|
2021-02-20 03:30:12 -05:00
|
|
|
nameStr = string(tmp)
|
2018-05-08 22:08:21 -04:00
|
|
|
}
|
2021-02-20 03:30:12 -05:00
|
|
|
|
2019-08-09 11:54:11 -04:00
|
|
|
count--
|
2021-02-20 03:30:12 -05:00
|
|
|
entries = append(entries, nameStr)
|
2016-04-08 14:46:03 -04:00
|
|
|
}
|
2021-02-20 03:30:12 -05:00
|
|
|
|
2016-05-05 15:51:56 -04:00
|
|
|
return
|
2016-04-04 20:27:55 -04:00
|
|
|
}
|
2020-06-12 23:04:01 -04:00
|
|
|
|
|
|
|
func globalSync() {
|
|
|
|
syscall.Sync()
|
|
|
|
}
|