aboutsummaryrefslogtreecommitdiff
path: root/tests/reverse
diff options
context:
space:
mode:
authormaximilize2026-06-26 00:23:30 +0200
committerrfjakob2026-07-12 20:39:59 +0200
commit3ac282047ff36affb86f260b54ff50653007fdee (patch)
tree31ccb22fa8ef3875876c24db753f55d1c2d7b899 /tests/reverse
parent1a03e993cf898bd66125d88dcd682dc056a398d6 (diff)
reverse: hide custom -config file located inside CIPHERDIR
In reverse mode, a custom config file passed via -config that lives inside CIPHERDIR was presented as an ordinary encrypted file in the encrypted view, which is useless and confusing. By default the config is mapped to a virtual gocryptfs.conf, but ConfigCustom skips that mapping, so an in-CIPHERDIR custom config was neither mapped nor hidden. Plumb the config path into the reverse RootNode and treat a custom config file located inside CIPHERDIR as excluded in isExcludedPlain, hiding it from both readdir and lookup. Also document the -config reverse-mode behaviour in MANPAGE.md and add a regression test. Fixes #1009
Diffstat (limited to 'tests/reverse')
-rw-r--r--tests/reverse/config_custom_test.go62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/reverse/config_custom_test.go b/tests/reverse/config_custom_test.go
new file mode 100644
index 0000000..a7883af
--- /dev/null
+++ b/tests/reverse/config_custom_test.go
@@ -0,0 +1,62 @@
+package reverse_test
+
+import (
+ "os"
+ "os/exec"
+ "testing"
+
+ "github.com/rfjakob/gocryptfs/v2/tests/test_helpers"
+)
+
+// TestConfigCustomInsideCipherdir verifies that a custom config file (-config)
+// located inside CIPHERDIR is hidden from the encrypted reverse view instead of
+// leaking there in encrypted form.
+//
+// Regression test for https://github.com/rfjakob/gocryptfs/issues/1009
+func TestConfigCustomInsideCipherdir(t *testing.T) {
+ backingDir, err := os.MkdirTemp(test_helpers.TmpDir, t.Name()+".")
+ if err != nil {
+ t.Fatal(err)
+ }
+ // A regular file that must stay visible in the encrypted view.
+ if err := os.WriteFile(backingDir+"/secret.txt", []byte("hello"), 0600); err != nil {
+ t.Fatal(err)
+ }
+ // The custom config file lives *inside* the backing dir.
+ cfg := backingDir + "/my-custom.conf"
+
+ // Init reverse fs with the config at the custom location.
+ initArgs := []string{"-q", "-init", "-reverse", "-extpass", "echo test", "-scryptn=10", "-config", cfg}
+ if plaintextnames {
+ initArgs = append(initArgs, "-plaintextnames")
+ } else if deterministic_names {
+ initArgs = append(initArgs, "-deterministic-names")
+ }
+ initArgs = append(initArgs, backingDir)
+ cmd := exec.Command(test_helpers.GocryptfsBinary, initArgs...)
+ cmd.Stdout, cmd.Stderr = os.Stdout, os.Stderr
+ if err := cmd.Run(); err != nil {
+ t.Fatalf("init failed: %v", err)
+ }
+
+ mnt := backingDir + ".mnt"
+ sock := mnt + ".sock"
+ test_helpers.MountOrFatal(t, backingDir, mnt, "-reverse", "-extpass", "echo test",
+ "-config", cfg, "-ctlsock", sock)
+ defer test_helpers.UnmountPanic(mnt)
+
+ // The custom config file must NOT show up (encrypted) in the view.
+ cCfg := ctlsockEncryptPath(t, sock, "my-custom.conf")
+ if test_helpers.VerifyExistence(t, mnt+"/"+cCfg) {
+ t.Errorf("custom config %q is exposed in the encrypted view (as %q), but should be hidden", cfg, cCfg)
+ }
+ // With a custom config file, no virtual gocryptfs.conf is presented.
+ if test_helpers.VerifyExistence(t, mnt+"/gocryptfs.conf") {
+ t.Errorf("gocryptfs.conf should not be present in the view when -config is used")
+ }
+ // Regular files must remain visible.
+ cSecret := ctlsockEncryptPath(t, sock, "secret.txt")
+ if !test_helpers.VerifyExistence(t, mnt+"/"+cSecret) {
+ t.Errorf("regular file secret.txt (as %q) is missing from the encrypted view", cSecret)
+ }
+}