2016-02-06 19:20:54 +01:00
|
|
|
package nametransform
|
2015-11-27 00:03:10 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-11-27 22:18:36 +01:00
|
|
|
"io/ioutil"
|
2016-01-25 00:51:28 +01:00
|
|
|
"os"
|
2015-11-27 22:18:36 +01:00
|
|
|
"path/filepath"
|
2015-11-27 00:03:10 +01:00
|
|
|
"strings"
|
2016-02-07 14:02:09 +01:00
|
|
|
"syscall"
|
2016-02-06 19:20:54 +01:00
|
|
|
|
|
|
|
"github.com/rfjakob/gocryptfs/internal/cryptocore"
|
2016-02-06 20:23:36 +01:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/toggledlog"
|
2016-02-06 19:20:54 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// identical to AES block size
|
2016-02-06 20:23:36 +01:00
|
|
|
dirIVLen = 16
|
2016-02-06 19:20:54 +01:00
|
|
|
// dirIV is stored in this file. Exported because we have to ignore this
|
|
|
|
// name in directory listing.
|
2016-02-06 20:23:36 +01:00
|
|
|
DirIVFilename = "gocryptfs.diriv"
|
2015-11-27 00:03:10 +01:00
|
|
|
)
|
|
|
|
|
2016-02-06 22:54:14 +01:00
|
|
|
// ReadDirIV - read the "gocryptfs.diriv" file from "dir" (absolute ciphertext path)
|
|
|
|
// This function is exported because it allows for an efficient readdir implementation
|
|
|
|
func ReadDirIV(dir string) (iv []byte, readErr error) {
|
2016-02-06 19:20:54 +01:00
|
|
|
ivfile := filepath.Join(dir, DirIVFilename)
|
|
|
|
toggledlog.Debug.Printf("ReadDirIV: reading %s\n", ivfile)
|
2016-01-24 19:40:53 +01:00
|
|
|
iv, readErr = ioutil.ReadFile(ivfile)
|
|
|
|
if readErr != nil {
|
|
|
|
// The directory may have been concurrently deleted or moved. Failure to
|
|
|
|
// read the diriv is not an error in that case.
|
|
|
|
_, statErr := os.Stat(dir)
|
|
|
|
if os.IsNotExist(statErr) {
|
2016-02-06 19:20:54 +01:00
|
|
|
toggledlog.Debug.Printf("ReadDirIV: Dir %s was deleted under our feet", dir)
|
2016-01-24 19:40:53 +01:00
|
|
|
} else {
|
|
|
|
// This should not happen
|
2016-02-06 19:20:54 +01:00
|
|
|
toggledlog.Warn.Printf("ReadDirIV: Dir exists but diriv does not: %v\n", readErr)
|
2016-01-24 19:40:53 +01:00
|
|
|
}
|
|
|
|
return nil, readErr
|
2015-11-27 22:20:01 +01:00
|
|
|
}
|
2016-02-06 19:20:54 +01:00
|
|
|
if len(iv) != dirIVLen {
|
2016-01-24 19:40:53 +01:00
|
|
|
return nil, fmt.Errorf("ReadDirIV: Invalid length %d\n", len(iv))
|
2015-11-27 22:20:01 +01:00
|
|
|
}
|
|
|
|
return iv, nil
|
2015-11-27 00:03:10 +01:00
|
|
|
}
|
|
|
|
|
2015-11-29 19:57:48 +01:00
|
|
|
// WriteDirIV - create diriv file inside "dir" (absolute ciphertext path)
|
2015-11-27 23:34:55 +01:00
|
|
|
// This function is exported because it is used from pathfs_frontend, main,
|
|
|
|
// and also the automated tests.
|
|
|
|
func WriteDirIV(dir string) error {
|
2016-02-06 19:20:54 +01:00
|
|
|
iv := cryptocore.RandBytes(dirIVLen)
|
|
|
|
file := filepath.Join(dir, DirIVFilename)
|
2015-11-27 21:48:58 +01:00
|
|
|
// 0444 permissions: the file is not secret but should not be written to
|
|
|
|
return ioutil.WriteFile(file, iv, 0444)
|
|
|
|
}
|
|
|
|
|
2016-02-07 14:02:09 +01:00
|
|
|
// EncryptPathDirIV - encrypt relative plaintext path using EME with DirIV.
|
|
|
|
// Components that are longer than 255 bytes are hashed.
|
2016-02-06 19:20:54 +01:00
|
|
|
func (be *NameTransform) EncryptPathDirIV(plainPath string, rootDir string) (cipherPath string, err error) {
|
2015-11-27 00:03:10 +01:00
|
|
|
// Empty string means root directory
|
|
|
|
if plainPath == "" {
|
|
|
|
return plainPath, nil
|
|
|
|
}
|
2016-02-07 14:02:09 +01:00
|
|
|
// Reject names longer than 255 bytes already here. This relieves everybody
|
|
|
|
// who uses hashed long names from checking for that later.
|
|
|
|
baseName := filepath.Base(plainPath)
|
|
|
|
if len(baseName) > syscall.NAME_MAX {
|
|
|
|
return "", syscall.ENAMETOOLONG
|
|
|
|
}
|
2015-11-29 21:41:38 +01:00
|
|
|
// Check if the DirIV is cached
|
|
|
|
parentDir := filepath.Dir(plainPath)
|
2016-02-06 12:27:09 +01:00
|
|
|
found, iv, cParentDir := be.DirIVCache.lookup(parentDir)
|
2015-11-29 21:41:38 +01:00
|
|
|
if found {
|
2016-02-06 22:54:14 +01:00
|
|
|
cBaseName := be.EncryptName(baseName, iv)
|
|
|
|
if be.longNames && len(cBaseName) > syscall.NAME_MAX {
|
|
|
|
cBaseName = HashLongName(cBaseName)
|
|
|
|
}
|
2015-12-08 16:13:29 +01:00
|
|
|
cipherPath = cParentDir + "/" + cBaseName
|
|
|
|
return cipherPath, nil
|
2015-11-29 21:41:38 +01:00
|
|
|
}
|
2016-02-07 14:02:09 +01:00
|
|
|
// Not cached - walk the directory tree
|
2015-11-27 00:03:10 +01:00
|
|
|
var wd = rootDir
|
|
|
|
var encryptedNames []string
|
|
|
|
plainNames := strings.Split(plainPath, "/")
|
|
|
|
for _, plainName := range plainNames {
|
2016-02-06 22:54:14 +01:00
|
|
|
iv, err = ReadDirIV(wd)
|
2015-11-27 00:03:10 +01:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2016-02-06 22:54:14 +01:00
|
|
|
encryptedName := be.EncryptName(plainName, iv)
|
|
|
|
if be.longNames && len(encryptedName) > syscall.NAME_MAX {
|
|
|
|
encryptedName = HashLongName(encryptedName)
|
|
|
|
}
|
2015-11-27 00:03:10 +01:00
|
|
|
encryptedNames = append(encryptedNames, encryptedName)
|
|
|
|
wd = filepath.Join(wd, encryptedName)
|
|
|
|
}
|
2015-12-08 16:13:29 +01:00
|
|
|
cipherPath = strings.Join(encryptedNames, "/")
|
2016-02-06 22:54:14 +01:00
|
|
|
// Cache the final DirIV
|
2015-12-08 16:13:29 +01:00
|
|
|
cParentDir = filepath.Dir(cipherPath)
|
2016-02-06 12:27:09 +01:00
|
|
|
be.DirIVCache.store(parentDir, iv, cParentDir)
|
2015-12-08 16:13:29 +01:00
|
|
|
return cipherPath, nil
|
2015-11-27 00:03:10 +01:00
|
|
|
}
|
|
|
|
|
2016-01-24 19:40:53 +01:00
|
|
|
// DecryptPathDirIV - decrypt path using EME with DirIV
|
2016-02-07 14:02:09 +01:00
|
|
|
//
|
|
|
|
// TODO This has only a single user, Readlink(), and only for compatability with
|
|
|
|
// gocryptfs v0.5. Drop?
|
2016-02-06 22:54:14 +01:00
|
|
|
func (be *NameTransform) DecryptPathDirIV(encryptedPath string, rootDir string) (string, error) {
|
2015-11-27 00:03:10 +01:00
|
|
|
var wd = rootDir
|
|
|
|
var plainNames []string
|
|
|
|
encryptedNames := strings.Split(encryptedPath, "/")
|
2016-02-06 19:20:54 +01:00
|
|
|
toggledlog.Debug.Printf("DecryptPathDirIV: decrypting %v\n", encryptedNames)
|
2015-11-27 00:03:10 +01:00
|
|
|
for _, encryptedName := range encryptedNames {
|
2016-02-06 22:54:14 +01:00
|
|
|
iv, err := ReadDirIV(wd)
|
2015-11-27 00:03:10 +01:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2016-02-06 19:20:54 +01:00
|
|
|
plainName, err := be.DecryptName(encryptedName, iv)
|
2015-11-27 00:03:10 +01:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
plainNames = append(plainNames, plainName)
|
|
|
|
wd = filepath.Join(wd, encryptedName)
|
|
|
|
}
|
|
|
|
return filepath.Join(plainNames...), nil
|
|
|
|
}
|