2021-08-11 20:21:32 +02:00
|
|
|
package syscallcompat
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
|
2021-08-23 15:05:15 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/v2/internal/tlog"
|
2021-08-11 20:21:32 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// DetectQuirks decides if there are known quirks on the backing filesystem
|
|
|
|
// that need to be workarounded.
|
|
|
|
//
|
|
|
|
// Tested by tests/root_test.TestBtrfsQuirks
|
|
|
|
func DetectQuirks(cipherdir string) (q uint64) {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-08-30 11:31:01 +02:00
|
|
|
// Preallocation on Btrfs is broken ( https://github.com/rfjakob/gocryptfs/issues/395 )
|
|
|
|
// and slow ( https://github.com/rfjakob/gocryptfs/issues/63 ).
|
2021-08-11 20:21:32 +02:00
|
|
|
//
|
|
|
|
// Cast to uint32 avoids compile error on arm: "constant 2435016766 overflows int32"
|
2021-08-11 20:28:20 +02:00
|
|
|
if uint32(st.Type) == unix.BTRFS_SUPER_MAGIC {
|
2021-08-30 11:31:01 +02:00
|
|
|
logQuirk("Btrfs detected, forcing -noprealloc. See https://github.com/rfjakob/gocryptfs/issues/395 for why.")
|
2021-08-11 20:21:32 +02:00
|
|
|
q |= QuirkBrokenFalloc
|
|
|
|
}
|
|
|
|
|
|
|
|
return q
|
|
|
|
}
|