aboutsummaryrefslogtreecommitdiff
path: root/test/fuse_integration/sendfile_darwin.go
blob: 38551bc6e43eed5b1ae26d160de14fabb36044da (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
//go:build darwin

package fuse

import (
	"syscall"
	"unsafe"
)

// Sendfile support for macOS

func sendfileTransfer(outFd int, inFd int, offset *int64, count int) (int, error) {
	// macOS sendfile has different signature: sendfile(in_fd, out_fd, offset, len, hdtr, flags)
	var off int64
	if offset != nil {
		off = *offset
	}

	length := int64(count)

	_, _, errno := syscall.Syscall6(syscall.SYS_SENDFILE,
		uintptr(inFd),                    // input fd
		uintptr(outFd),                   // output fd
		uintptr(off),                     // offset
		uintptr(unsafe.Pointer(&length)), // length (in/out parameter)
		0,                                // hdtr (headers/trailers)
		0)                                // flags

	if errno != 0 {
		return 0, errno
	}

	// Update offset if provided
	if offset != nil {
		*offset += length
	}

	return int(length), nil
}

func isSendfileSupported() bool {
	return true
}