2016-02-06 19:27:59 +01:00
|
|
|
package fusefrontend
|
2016-01-07 21:39:41 +01:00
|
|
|
|
2016-04-20 22:47:31 +02:00
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2016-06-15 23:30:44 +02:00
|
|
|
import "github.com/rfjakob/gocryptfs/internal/tlog"
|
2016-04-20 22:47:31 +02:00
|
|
|
|
|
|
|
var preallocWarn sync.Once
|
2016-01-07 21:39:41 +01:00
|
|
|
|
|
|
|
// 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) {
|
|
|
|
for {
|
|
|
|
err = syscall.Fallocate(fd, FALLOC_FL_KEEP_SIZE, off, len)
|
|
|
|
if err == syscall.EINTR {
|
|
|
|
// fallocate, like many syscalls, can return EINTR. This is not an
|
|
|
|
// error and just signifies that the operation was interrupted by a
|
|
|
|
// signal and we should try again.
|
|
|
|
continue
|
|
|
|
}
|
2016-04-20 22:47:31 +02:00
|
|
|
if err == syscall.EOPNOTSUPP {
|
|
|
|
// ZFS does not support fallocate which caused gocryptfs to abort
|
|
|
|
// every write operation: https://github.com/rfjakob/gocryptfs/issues/22
|
|
|
|
preallocWarn.Do(func() {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Warn.Printf("Warning: The underlying filesystem " +
|
2016-04-20 22:47:31 +02:00
|
|
|
"does not support fallocate(2). gocryptfs will continue working " +
|
|
|
|
"but is no longer resistant against out-of-space errors.\n")
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|
2016-01-07 21:39:41 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|