2016-07-03 17:51:40 +02:00
|
|
|
package syscallcompat
|
2016-01-07 21:39:41 +01:00
|
|
|
|
2016-07-03 19:14:12 +02:00
|
|
|
import (
|
2017-06-18 15:40:38 +02:00
|
|
|
"log"
|
2016-07-03 19:14:12 +02:00
|
|
|
"os"
|
2016-07-03 20:05:32 +02:00
|
|
|
"path/filepath"
|
2016-07-03 19:14:12 +02:00
|
|
|
"sync"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2016-07-03 20:05:32 +02:00
|
|
|
// Sorry, fallocate is not available on OSX at all and
|
|
|
|
// fcntl F_PREALLOCATE is not accessible from Go.
|
|
|
|
// See https://github.com/rfjakob/gocryptfs/issues/18 if you want to help.
|
2017-02-16 19:23:17 +01:00
|
|
|
func EnospcPrealloc(fd int, off int64, len int64) error {
|
2016-01-09 13:04:48 +01:00
|
|
|
return nil
|
2016-01-07 21:39:41 +01:00
|
|
|
}
|
2016-07-03 19:14:12 +02:00
|
|
|
|
2016-07-03 20:05:32 +02:00
|
|
|
// See above.
|
2017-02-16 19:23:17 +01:00
|
|
|
func Fallocate(fd int, mode uint32, off int64, len int64) error {
|
2016-07-03 20:05:32 +02:00
|
|
|
return syscall.EOPNOTSUPP
|
|
|
|
}
|
2016-07-03 19:14:12 +02:00
|
|
|
|
2016-07-03 20:05:32 +02:00
|
|
|
var chdirMutex sync.Mutex
|
|
|
|
|
|
|
|
// Poor man's Openat
|
2017-02-16 19:23:17 +01:00
|
|
|
func Openat(dirfd int, path string, flags int, mode uint32) (int, error) {
|
2016-07-03 20:05:32 +02:00
|
|
|
chdirMutex.Lock()
|
|
|
|
defer chdirMutex.Unlock()
|
|
|
|
if !filepath.IsAbs(path) {
|
|
|
|
// Save the old working directory
|
|
|
|
oldWd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
// Chdir to target directory
|
|
|
|
err = syscall.Fchdir(dirfd)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
// Chdir back at the end
|
|
|
|
defer os.Chdir(oldWd)
|
|
|
|
}
|
|
|
|
return syscall.Open(path, flags, mode)
|
|
|
|
}
|
2016-07-03 19:14:12 +02:00
|
|
|
|
2016-07-03 20:05:32 +02:00
|
|
|
// Poor man's Renameat
|
2017-02-16 19:23:17 +01:00
|
|
|
func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) error {
|
2016-07-03 20:05:32 +02:00
|
|
|
chdirMutex.Lock()
|
|
|
|
defer chdirMutex.Unlock()
|
|
|
|
// Unless both paths are absolute we have to save the old working dir and
|
|
|
|
// Chdir(oldWd) back to it in the end. If we error out before the first
|
|
|
|
// chdir, Chdir(oldWd) is unneccassary but does no harm.
|
|
|
|
if !filepath.IsAbs(oldpath) || !filepath.IsAbs(newpath) {
|
|
|
|
oldWd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer os.Chdir(oldWd)
|
|
|
|
}
|
|
|
|
// Make oldpath absolute
|
2017-02-16 19:23:17 +01:00
|
|
|
oldpath, err := dirfdAbs(olddirfd, oldpath)
|
2016-07-03 19:14:12 +02:00
|
|
|
if err != nil {
|
2016-07-03 20:05:32 +02:00
|
|
|
return err
|
2016-07-03 19:14:12 +02:00
|
|
|
}
|
2016-07-03 20:05:32 +02:00
|
|
|
// Make newpath absolute
|
|
|
|
newpath, err = dirfdAbs(newdirfd, newpath)
|
2016-07-03 19:14:12 +02:00
|
|
|
if err != nil {
|
2016-07-03 20:05:32 +02:00
|
|
|
return err
|
2016-07-03 19:14:12 +02:00
|
|
|
}
|
2016-07-03 20:05:32 +02:00
|
|
|
return syscall.Rename(oldpath, newpath)
|
2016-07-03 19:14:12 +02:00
|
|
|
}
|
|
|
|
|
2016-07-03 20:17:40 +02:00
|
|
|
// Poor man's Unlinkat
|
2017-02-16 19:23:17 +01:00
|
|
|
func Unlinkat(dirfd int, path string) error {
|
2016-07-03 20:17:40 +02:00
|
|
|
chdirMutex.Lock()
|
|
|
|
defer chdirMutex.Unlock()
|
|
|
|
if !filepath.IsAbs(path) {
|
|
|
|
oldWd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer os.Chdir(oldWd)
|
|
|
|
}
|
2017-02-16 19:23:17 +01:00
|
|
|
path, err := dirfdAbs(dirfd, path)
|
2016-07-03 20:17:40 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return syscall.Unlink(path)
|
|
|
|
}
|
|
|
|
|
2016-07-03 20:21:29 +02:00
|
|
|
// Poor man's Mknodat
|
2017-02-16 19:23:17 +01:00
|
|
|
func Mknodat(dirfd int, path string, mode uint32, dev int) error {
|
2016-07-03 20:21:29 +02:00
|
|
|
chdirMutex.Lock()
|
|
|
|
defer chdirMutex.Unlock()
|
|
|
|
if !filepath.IsAbs(path) {
|
|
|
|
oldWd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer os.Chdir(oldWd)
|
|
|
|
}
|
2017-02-16 19:23:17 +01:00
|
|
|
path, err := dirfdAbs(dirfd, path)
|
2016-07-03 20:21:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return syscall.Mknod(path, mode, dev)
|
|
|
|
}
|
|
|
|
|
2016-07-03 20:05:32 +02:00
|
|
|
// dirfdAbs transforms the dirfd-relative "path" to an absolute one. If the
|
|
|
|
// path is not already absolute, this function will change the working
|
|
|
|
// directory. The caller has to chdir back.
|
2017-02-16 19:23:17 +01:00
|
|
|
func dirfdAbs(dirfd int, path string) (string, error) {
|
2016-07-03 20:05:32 +02:00
|
|
|
if filepath.IsAbs(path) {
|
|
|
|
return path, nil
|
|
|
|
}
|
2017-02-16 19:23:17 +01:00
|
|
|
err := syscall.Fchdir(dirfd)
|
2016-07-03 20:05:32 +02:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
wd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return filepath.Join(wd, path), nil
|
2016-07-03 19:14:12 +02:00
|
|
|
}
|
2017-06-18 15:40:38 +02:00
|
|
|
|
|
|
|
// Dup3 is not available on Darwin, so we use Dup2 instead.
|
|
|
|
func Dup3(oldfd int, newfd int, flags int) (err error) {
|
|
|
|
if flags != 0 {
|
|
|
|
log.Panic("darwin does not support dup3 flags")
|
|
|
|
}
|
|
|
|
return syscall.Dup2(oldfd, newfd)
|
|
|
|
}
|
2017-11-26 21:59:24 +01:00
|
|
|
|
|
|
|
// Poor man's Fchownat.
|
|
|
|
func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err error) {
|
2017-11-28 00:11:15 +01:00
|
|
|
chdirMutex.Lock()
|
|
|
|
defer chdirMutex.Unlock()
|
2017-11-26 21:59:24 +01:00
|
|
|
cwd, err := syscall.Open(".", syscall.O_RDONLY, 0)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-11-28 00:11:15 +01:00
|
|
|
defer syscall.Close(cwd)
|
2017-11-26 21:59:24 +01:00
|
|
|
err = syscall.Fchdir(dirfd)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer syscall.Fchdir(cwd)
|
|
|
|
return syscall.Lchown(path, uid, gid)
|
|
|
|
}
|