2016-02-06 19:27:59 +01:00
|
|
|
package fusefrontend
|
2015-10-04 11:39:35 +02:00
|
|
|
|
2015-12-19 13:21:15 +01:00
|
|
|
// Helper functions for sparse files (files with holes)
|
|
|
|
|
2015-10-04 11:39:35 +02:00
|
|
|
import (
|
|
|
|
"github.com/hanwen/go-fuse/fuse"
|
2016-02-06 19:20:54 +01:00
|
|
|
|
2016-06-15 23:30:44 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
2015-10-04 11:39:35 +02:00
|
|
|
)
|
|
|
|
|
2016-10-25 22:37:45 +02:00
|
|
|
// Will a write to plaintext offset "targetOff" create a file hole in the
|
|
|
|
// ciphertext? If yes, zero-pad the last ciphertext block.
|
|
|
|
func (f *file) writePadHole(targetOff int64) fuse.Status {
|
|
|
|
// Get the current file size.
|
|
|
|
fi, err := f.fd.Stat()
|
|
|
|
if err != nil {
|
|
|
|
tlog.Warn.Printf("checkAndPadHole: Fstat failed: %v", err)
|
|
|
|
return fuse.ToStatus(err)
|
|
|
|
}
|
|
|
|
plainSize := f.contentEnc.CipherSizeToPlainSize(uint64(fi.Size()))
|
2016-10-25 21:19:37 +02:00
|
|
|
// Appending a single byte to the file (equivalent to writing to
|
|
|
|
// offset=plainSize) would write to "nextBlock".
|
2016-02-06 19:20:54 +01:00
|
|
|
nextBlock := f.contentEnc.PlainOffToBlockNo(plainSize)
|
2016-10-25 21:19:37 +02:00
|
|
|
// targetBlock is the block the user wants to write to.
|
2016-10-25 22:37:45 +02:00
|
|
|
targetBlock := f.contentEnc.PlainOffToBlockNo(uint64(targetOff))
|
|
|
|
// The write goes into an existing block or (if the last block was full)
|
|
|
|
// starts a new one directly after the last block. Nothing to do.
|
|
|
|
if targetBlock <= nextBlock {
|
|
|
|
return fuse.OK
|
|
|
|
}
|
|
|
|
// The write goes past the next block. nextBlock has
|
|
|
|
// to be zero-padded to the block boundary and (at least) nextBlock+1
|
2017-03-12 21:06:59 +01:00
|
|
|
// will contain a file hole in the ciphertext.
|
2016-10-25 22:37:45 +02:00
|
|
|
status := f.zeroPad(plainSize)
|
|
|
|
if status != fuse.OK {
|
|
|
|
tlog.Warn.Printf("zeroPad returned error %v", status)
|
|
|
|
return status
|
|
|
|
}
|
|
|
|
return fuse.OK
|
2015-10-04 11:39:35 +02:00
|
|
|
}
|
|
|
|
|
2017-03-12 21:06:59 +01:00
|
|
|
// Zero-pad the file of size plainSize to the next block boundary. This is a no-op
|
|
|
|
// if the file is already block-aligned.
|
2015-10-04 14:21:07 +02:00
|
|
|
func (f *file) zeroPad(plainSize uint64) fuse.Status {
|
2016-02-06 19:20:54 +01:00
|
|
|
lastBlockLen := plainSize % f.contentEnc.PlainBS()
|
2017-03-12 21:06:59 +01:00
|
|
|
if lastBlockLen == 0 {
|
2016-07-01 23:29:31 +02:00
|
|
|
// Already block-aligned
|
|
|
|
return fuse.OK
|
|
|
|
}
|
2017-03-12 21:06:59 +01:00
|
|
|
missing := f.contentEnc.PlainBS() - lastBlockLen
|
2015-10-04 11:39:35 +02:00
|
|
|
pad := make([]byte, missing)
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Debug.Printf("zeroPad: Writing %d bytes\n", missing)
|
2015-10-04 11:39:35 +02:00
|
|
|
_, status := f.doWrite(pad, int64(plainSize))
|
|
|
|
return status
|
|
|
|
}
|