summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-09-20 20:15:55 +0200
committerJakob Unterwurzacher2016-09-25 16:43:17 +0200
commit5fb6c5cf58bc9871c51ebae7fbb87dde96a5a360 (patch)
tree2702d3eaf00999f66d7d29cb676499eca7299ba8
parent72efa5c9b18fb321e3de411c785e18b3c379d4b9 (diff)
reverse: enable init functionality
-rw-r--r--init_dir.go26
1 files changed, 16 insertions, 10 deletions
diff --git a/init_dir.go b/init_dir.go
index 11abe50..2642dd2 100644
--- a/init_dir.go
+++ b/init_dir.go
@@ -11,15 +11,21 @@ import (
"github.com/rfjakob/gocryptfs/internal/tlog"
)
-// initDir initializes an empty directory for use as a gocryptfs cipherdir.
+// initDir prepares a directory for use as a gocryptfs storage directory.
+// In forward mode, this means creating the gocryptfs.conf and gocryptfs.diriv
+// files in an empty directory.
+// In reverse mode, we create .gocryptfs.reverse.conf and the directory does
+// not to be empty.
func initDir(args *argContainer) {
- err := checkDirEmpty(args.cipherdir)
- if err != nil {
- tlog.Fatal.Printf("Invalid cipherdir: %v", err)
- os.Exit(ERREXIT_INIT)
+ var err error
+ if !args.reverse {
+ err = checkDirEmpty(args.cipherdir)
+ if err != nil {
+ tlog.Fatal.Printf("Invalid cipherdir: %v", err)
+ os.Exit(ERREXIT_INIT)
+ }
}
-
- // Create gocryptfs.conf
+ // Choose password for config file
if args.extpass == "" {
tlog.Info.Printf("Choose a password for protecting your files.")
} else {
@@ -32,9 +38,9 @@ func initDir(args *argContainer) {
tlog.Fatal.Println(err)
os.Exit(ERREXIT_INIT)
}
-
- if !args.plaintextnames {
- // Create gocryptfs.diriv in the root dir
+ // Forward mode with filename encryption enabled needs a gocryptfs.diriv
+ // in the root dir
+ if !args.plaintextnames && !args.reverse {
err = nametransform.WriteDirIV(args.cipherdir)
if err != nil {
tlog.Fatal.Println(err)