aboutsummaryrefslogtreecommitdiff
path: root/internal/syscallcompat/sys_darwin.go
blob: 81e1b158205117a4c059f8ad9dc219e7f7181aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package syscallcompat

import (
	"os"
	"sync"
	"syscall"
)

// prealloc - preallocate space without changing the file size. This prevents
// us from running out of space in the middle of an operation.
func Prealloc(fd int, off int64, len int64) (err error) {
	//
	// 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.
	return nil
}

var openatLock sync.Mutex

// Poor man's Openat:
// 1) fchdir to the dirfd
// 2) open the file
// 3) chdir back.
func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {
	openatLock.Lock()
	defer openatLock.Unlock()

	oldWd, err := os.Getwd()
	if err != nil {
		return -1, err
	}
	err = syscall.Fchdir(dirfd)
	if err != nil {
		return -1, err
	}
	defer os.Chdir(oldWd)

	return syscall.Open(path, flags, mode)
}

func Fallocate(fd int, mode uint32, off int64, len int64) (err error) {
	return syscall.EOPNOTSUPP
}