summaryrefslogtreecommitdiff
path: root/internal/fusefrontend/quirks.go
blob: 2979c84391d9b95bc2cee3f7cfd9232119b0dee3 (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
46
47
48
49
50
51
52
package fusefrontend

import (
	"runtime"

	"golang.org/x/sys/unix"

	"github.com/rfjakob/gocryptfs/internal/tlog"
)

const (
	quirkBrokenFalloc = uint64(1 << iota)
	quirkDuplicateIno1
)

func detectQuirks(cipherdir string) (q uint64) {
	const (
		// From Linux' man statfs
		BTRFS_SUPER_MAGIC = 0x9123683e

		// From https://github.com/rfjakob/gocryptfs/issues/585#issuecomment-887370065
		DARWIN_EXFAT_MAGIC = 35
	)

	var st unix.Statfs_t
	err := unix.Statfs(cipherdir, &st)
	if err != nil {
		tlog.Warn.Printf("detectQuirks: Statfs on %q failed: %v", cipherdir, err)
		return 0
	}

	logQuirk := func(s string) {
		tlog.Info.Printf(tlog.ColorYellow + "detectQuirks: " + s + tlog.ColorReset)
	}

	// Preallocation on Btrfs is broken ( https://github.com/rfjakob/gocryptfs/issues/395 )
	// and slow ( https://github.com/rfjakob/gocryptfs/issues/63 ).
	//
	// Cast to uint32 avoids compile error on arm: "constant 2435016766 overflows int32"
	if uint32(st.Type) == BTRFS_SUPER_MAGIC {
		logQuirk("Btrfs detected, forcing -noprealloc. See https://github.com/rfjakob/gocryptfs/issues/395 for why.")
		q |= quirkBrokenFalloc
	}
	// On MacOS ExFAT, all empty files share inode number 1:
	// https://github.com/rfjakob/gocryptfs/issues/585
	if runtime.GOOS == "darwin" && st.Type == DARWIN_EXFAT_MAGIC {
		logQuirk("ExFAT detected, disabling hard links. See https://github.com/rfjakob/gocryptfs/issues/585 for why.")
		q |= quirkDuplicateIno1
	}

	return q
}