2015-09-03 19:27:07 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-09-06 11:42:01 +02:00
|
|
|
"flag"
|
2015-09-05 11:49:05 +02:00
|
|
|
"fmt"
|
2015-09-06 12:12:14 +02:00
|
|
|
"os"
|
2015-11-01 13:28:58 +01:00
|
|
|
"os/exec"
|
|
|
|
"os/signal"
|
2015-09-06 12:12:14 +02:00
|
|
|
"path/filepath"
|
2015-09-16 19:35:40 +02:00
|
|
|
"runtime"
|
2015-10-04 14:36:20 +02:00
|
|
|
"runtime/pprof"
|
2015-11-01 13:28:58 +01:00
|
|
|
"syscall"
|
2015-10-04 14:36:20 +02:00
|
|
|
"time"
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2015-09-09 19:32:59 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/cryptfs"
|
2015-10-04 14:36:20 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/pathfs_frontend"
|
2015-09-08 00:54:24 +02:00
|
|
|
|
|
|
|
"github.com/hanwen/go-fuse/fuse"
|
|
|
|
"github.com/hanwen/go-fuse/fuse/nodefs"
|
|
|
|
"github.com/hanwen/go-fuse/fuse/pathfs"
|
2015-09-03 19:27:07 +02:00
|
|
|
)
|
|
|
|
|
2015-09-05 11:49:05 +02:00
|
|
|
const (
|
|
|
|
PROGRAM_NAME = "gocryptfs"
|
2015-09-06 11:42:01 +02:00
|
|
|
|
2015-09-08 23:09:28 +02:00
|
|
|
// Exit codes
|
2015-10-11 18:51:56 +02:00
|
|
|
ERREXIT_USAGE = 1
|
|
|
|
ERREXIT_MOUNT = 3
|
|
|
|
ERREXIT_CIPHERDIR = 6
|
|
|
|
ERREXIT_INIT = 7
|
|
|
|
ERREXIT_LOADCONF = 8
|
|
|
|
ERREXIT_PASSWORD = 9
|
2015-10-11 18:33:28 +02:00
|
|
|
ERREXIT_MOUNTPOINT = 10
|
2015-09-05 11:49:05 +02:00
|
|
|
)
|
|
|
|
|
2015-11-01 13:55:35 +01:00
|
|
|
var GitVersion = "[version not set - please compile using ./build.bash]"
|
|
|
|
|
2015-09-14 22:56:59 +02:00
|
|
|
func initDir(dirArg string) {
|
2015-10-04 14:36:20 +02:00
|
|
|
dir, _ := filepath.Abs(dirArg)
|
2015-09-14 22:56:59 +02:00
|
|
|
|
2015-10-11 18:33:28 +02:00
|
|
|
err := checkDirEmpty(dir)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error: \"%s\": %v\n", dirArg, err)
|
2015-10-04 14:36:20 +02:00
|
|
|
os.Exit(ERREXIT_INIT)
|
|
|
|
}
|
2015-09-14 22:56:59 +02:00
|
|
|
|
2015-10-04 14:36:20 +02:00
|
|
|
confName := filepath.Join(dir, cryptfs.ConfDefaultName)
|
|
|
|
fmt.Printf("Choose a password for protecting your files.\n")
|
|
|
|
password := readPasswordTwice()
|
2015-10-11 18:33:28 +02:00
|
|
|
err = cryptfs.CreateConfFile(confName, password)
|
2015-10-04 14:36:20 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(ERREXIT_INIT)
|
|
|
|
}
|
|
|
|
fmt.Printf("The filesystem is now ready for mounting.\n")
|
|
|
|
os.Exit(0)
|
2015-09-14 22:56:59 +02:00
|
|
|
}
|
|
|
|
|
2015-10-07 21:59:54 +02:00
|
|
|
func usageText() {
|
|
|
|
fmt.Printf("Usage: %s [OPTIONS] CIPHERDIR MOUNTPOINT\n", PROGRAM_NAME)
|
|
|
|
fmt.Printf("\nOptions:\n")
|
|
|
|
flag.PrintDefaults()
|
|
|
|
}
|
|
|
|
|
2015-09-03 19:27:07 +02:00
|
|
|
func main() {
|
2015-09-16 19:35:40 +02:00
|
|
|
runtime.GOMAXPROCS(4)
|
|
|
|
|
2015-09-04 20:31:06 +02:00
|
|
|
// Parse command line arguments
|
2015-11-01 13:55:35 +01:00
|
|
|
var debug, init, zerokey, fusedebug, openssl, passwd, foreground, version bool
|
2015-10-11 18:33:28 +02:00
|
|
|
var masterkey, mountpoint, cipherdir string
|
2015-09-16 19:32:37 +02:00
|
|
|
|
2015-10-07 21:59:54 +02:00
|
|
|
flag.Usage = usageText
|
2015-09-09 19:32:59 +02:00
|
|
|
flag.BoolVar(&debug, "debug", false, "Enable debug output")
|
2015-09-16 19:32:37 +02:00
|
|
|
flag.BoolVar(&fusedebug, "fusedebug", false, "Enable fuse library debug output")
|
2015-09-13 17:55:07 +02:00
|
|
|
flag.BoolVar(&init, "init", false, "Initialize encrypted directory")
|
2015-09-15 23:59:57 +02:00
|
|
|
flag.BoolVar(&zerokey, "zerokey", false, "Use all-zero dummy master key")
|
2015-10-06 20:24:52 +02:00
|
|
|
flag.BoolVar(&openssl, "openssl", true, "Use OpenSSL instead of built-in Go crypto")
|
2015-10-07 21:26:17 +02:00
|
|
|
flag.BoolVar(&passwd, "passwd", false, "Change password")
|
2015-10-11 18:02:48 +02:00
|
|
|
flag.BoolVar(&foreground, "f", false, "Stay in the foreground")
|
2015-11-01 13:55:35 +01:00
|
|
|
flag.BoolVar(&version, "version", false, "Print version and exit")
|
2015-10-06 21:16:39 +02:00
|
|
|
flag.StringVar(&masterkey, "masterkey", "", "Mount with explicit master key")
|
2015-10-06 23:28:20 +02:00
|
|
|
var cpuprofile = flag.String("cpuprofile", "", "Write cpu profile to specified file")
|
2015-09-18 22:14:07 +02:00
|
|
|
|
2015-09-06 11:42:01 +02:00
|
|
|
flag.Parse()
|
2015-11-01 13:55:35 +01:00
|
|
|
if version {
|
|
|
|
fmt.Printf("%s %s; ", PROGRAM_NAME, GitVersion)
|
|
|
|
fmt.Printf("on-disk format %d\n", cryptfs.HEADER_CURRENT_VERSION)
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
2015-10-11 18:51:56 +02:00
|
|
|
if !foreground {
|
2015-10-11 18:02:48 +02:00
|
|
|
daemonize() // does not return
|
|
|
|
}
|
2015-09-18 22:14:07 +02:00
|
|
|
if *cpuprofile != "" {
|
2015-10-04 14:36:20 +02:00
|
|
|
f, err := os.Create(*cpuprofile)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
2015-09-18 22:14:07 +02:00
|
|
|
os.Exit(ERREXIT_INIT)
|
2015-10-04 14:36:20 +02:00
|
|
|
}
|
2015-09-18 22:14:07 +02:00
|
|
|
fmt.Printf("Writing CPU profile to %s\n", *cpuprofile)
|
2015-10-04 14:36:20 +02:00
|
|
|
pprof.StartCPUProfile(f)
|
|
|
|
defer pprof.StopCPUProfile()
|
|
|
|
}
|
2015-09-09 19:32:59 +02:00
|
|
|
if debug {
|
|
|
|
cryptfs.Debug.Enable()
|
|
|
|
cryptfs.Debug.Printf("Debug output enabled\n")
|
|
|
|
}
|
2015-10-06 20:24:52 +02:00
|
|
|
if openssl == false {
|
|
|
|
fmt.Printf("Openssl disabled\n")
|
|
|
|
}
|
2015-09-13 17:55:07 +02:00
|
|
|
if init {
|
|
|
|
if flag.NArg() != 1 {
|
2015-10-07 21:59:54 +02:00
|
|
|
fmt.Printf("Usage: %s --init CIPHERDIR\n", PROGRAM_NAME)
|
2015-09-13 17:55:07 +02:00
|
|
|
os.Exit(ERREXIT_USAGE)
|
|
|
|
}
|
2015-10-11 18:33:28 +02:00
|
|
|
initDir(flag.Arg(0)) // does not return
|
|
|
|
}
|
|
|
|
if passwd {
|
2015-10-07 21:26:17 +02:00
|
|
|
if flag.NArg() != 1 {
|
2015-10-07 21:59:54 +02:00
|
|
|
fmt.Printf("Usage: %s --passwd CIPHERDIR\n", PROGRAM_NAME)
|
2015-10-07 21:26:17 +02:00
|
|
|
os.Exit(ERREXIT_USAGE)
|
|
|
|
}
|
2015-10-11 18:33:28 +02:00
|
|
|
} else {
|
|
|
|
// Normal mount
|
|
|
|
if flag.NArg() < 2 {
|
|
|
|
usageText()
|
|
|
|
os.Exit(ERREXIT_USAGE)
|
|
|
|
}
|
|
|
|
mountpoint, _ = filepath.Abs(flag.Arg(1))
|
|
|
|
err := checkDirEmpty(mountpoint)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Invalid MOUNTPOINT: %v\n", err)
|
|
|
|
os.Exit(ERREXIT_MOUNTPOINT)
|
|
|
|
}
|
2015-09-03 19:27:07 +02:00
|
|
|
}
|
2015-10-11 18:33:28 +02:00
|
|
|
cipherdir, _ = filepath.Abs(flag.Arg(0))
|
|
|
|
err := checkDir(cipherdir)
|
2015-09-09 19:32:59 +02:00
|
|
|
if err != nil {
|
2015-10-11 18:33:28 +02:00
|
|
|
fmt.Printf("Invalid CIPHERDIR: %v\n", err)
|
2015-09-09 19:32:59 +02:00
|
|
|
os.Exit(ERREXIT_CIPHERDIR)
|
|
|
|
}
|
2015-09-06 11:42:01 +02:00
|
|
|
|
2015-10-07 21:26:17 +02:00
|
|
|
var cf *cryptfs.ConfFile
|
|
|
|
var currentPassword string
|
2015-09-15 23:59:57 +02:00
|
|
|
key := make([]byte, cryptfs.KEY_LEN)
|
|
|
|
if zerokey {
|
|
|
|
fmt.Printf("Zerokey mode active: using all-zero dummy master key.\n")
|
2015-10-06 21:16:39 +02:00
|
|
|
} else if len(masterkey) > 0 {
|
|
|
|
key = parseMasterKey(masterkey)
|
|
|
|
fmt.Printf("Using explicit master key.\n")
|
2015-09-15 23:59:57 +02:00
|
|
|
} else {
|
|
|
|
cfname := filepath.Join(cipherdir, cryptfs.ConfDefaultName)
|
|
|
|
_, err = os.Stat(cfname)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error: %s not found in CIPHERDIR\n", cryptfs.ConfDefaultName)
|
2015-10-11 18:33:28 +02:00
|
|
|
fmt.Printf("Please run \"%s --init %s\" first\n", os.Args[0], flag.Arg(0))
|
2015-09-15 23:59:57 +02:00
|
|
|
os.Exit(ERREXIT_LOADCONF)
|
|
|
|
}
|
2015-10-07 21:26:17 +02:00
|
|
|
if passwd == true {
|
|
|
|
fmt.Printf("Old password: ")
|
|
|
|
} else {
|
|
|
|
fmt.Printf("Password: ")
|
|
|
|
}
|
|
|
|
currentPassword = readPassword()
|
2015-09-15 23:59:57 +02:00
|
|
|
fmt.Printf("\nDecrypting master key... ")
|
2015-10-07 21:26:17 +02:00
|
|
|
cryptfs.Warn.Disable() // Silence DecryptBlock() error messages on incorrect password
|
|
|
|
key, cf, err = cryptfs.LoadConfFile(cfname, currentPassword)
|
|
|
|
cryptfs.Warn.Enable()
|
2015-09-15 23:59:57 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(ERREXIT_LOADCONF)
|
|
|
|
}
|
2015-10-06 00:29:08 +02:00
|
|
|
fmt.Printf("done.\n")
|
|
|
|
}
|
2015-10-07 21:26:17 +02:00
|
|
|
if passwd == true {
|
|
|
|
fmt.Printf("Please enter the new password.\n")
|
|
|
|
newPassword := readPasswordTwice()
|
|
|
|
if newPassword == currentPassword {
|
|
|
|
fmt.Printf("New and old passwords are identical\n")
|
2015-10-11 18:33:28 +02:00
|
|
|
os.Exit(ERREXIT_PASSWORD)
|
2015-10-07 21:26:17 +02:00
|
|
|
}
|
|
|
|
cf.EncryptKey(key, newPassword)
|
|
|
|
err := cf.WriteFile()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(ERREXIT_INIT)
|
|
|
|
}
|
|
|
|
fmt.Printf("Password changed.\n")
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
2015-10-06 00:29:08 +02:00
|
|
|
|
2015-10-06 20:24:52 +02:00
|
|
|
srv := pathfsFrontend(key, cipherdir, mountpoint, fusedebug, openssl)
|
2015-10-06 00:29:08 +02:00
|
|
|
|
2015-10-06 21:16:39 +02:00
|
|
|
if zerokey == false && len(masterkey) == 0 {
|
2015-09-15 23:59:57 +02:00
|
|
|
printMasterKey(key)
|
2015-10-06 21:16:39 +02:00
|
|
|
} else if zerokey == true {
|
|
|
|
fmt.Printf("ZEROKEY MODE PROVIDES NO SECURITY AT ALL AND SHOULD ONLY BE USED FOR TESTING.\n")
|
|
|
|
} else if len(masterkey) > 0 {
|
|
|
|
fmt.Printf("THE MASTER KEY IS VISIBLE VIA \"ps -auxwww\", ONLY USE THIS MODE FOR EMERGENCIES.\n")
|
2015-09-13 17:55:07 +02:00
|
|
|
}
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2015-10-07 23:30:45 +02:00
|
|
|
fmt.Println("Filesystem ready.")
|
2015-11-01 15:21:34 +01:00
|
|
|
// Send notification to our parent
|
|
|
|
sendUsr1()
|
2015-11-01 13:28:58 +01:00
|
|
|
// Wait for SIGING in the background and unmount ourselves if we get it
|
|
|
|
// This prevents a dangling "Transport endpoint is not connected" mountpoint
|
|
|
|
handleSigint(srv, mountpoint)
|
|
|
|
// Jump into server loop. Returns when it gets an umount request from the kernel.
|
2015-10-06 00:29:08 +02:00
|
|
|
srv.Serve()
|
2015-11-01 13:28:58 +01:00
|
|
|
// main returns with code 0
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
|
|
|
|
2015-10-06 20:24:52 +02:00
|
|
|
func pathfsFrontend(key []byte, cipherdir string, mountpoint string, debug bool, openssl bool) *fuse.Server {
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2015-10-06 20:24:52 +02:00
|
|
|
finalFs := pathfs_frontend.NewFS(key, cipherdir, openssl)
|
2015-10-04 14:50:27 +02:00
|
|
|
pathFsOpts := &pathfs.PathNodeFsOptions{ClientInodes: true}
|
|
|
|
pathFs := pathfs.NewPathNodeFs(finalFs, pathFsOpts)
|
|
|
|
fuseOpts := &nodefs.Options{
|
2015-09-08 00:54:24 +02:00
|
|
|
// These options are to be compatible with libfuse defaults,
|
|
|
|
// making benchmarking easier.
|
|
|
|
NegativeTimeout: time.Second,
|
|
|
|
AttrTimeout: time.Second,
|
|
|
|
EntryTimeout: time.Second,
|
|
|
|
}
|
2015-10-04 14:50:27 +02:00
|
|
|
conn := nodefs.NewFileSystemConnector(pathFs.Root(), fuseOpts)
|
2015-09-19 10:47:16 +02:00
|
|
|
var mOpts fuse.MountOptions
|
|
|
|
mOpts.AllowOther = false
|
|
|
|
// Set values shown in "df -T" and friends
|
|
|
|
// First column, "Filesystem"
|
2015-10-04 14:36:20 +02:00
|
|
|
mOpts.Options = append(mOpts.Options, "fsname="+cipherdir)
|
2015-09-19 10:47:16 +02:00
|
|
|
// Second column, "Type", will be shown as "fuse." + Name
|
2015-10-04 14:36:20 +02:00
|
|
|
mOpts.Name = "gocryptfs"
|
2015-09-19 10:47:16 +02:00
|
|
|
|
2015-10-06 00:29:08 +02:00
|
|
|
srv, err := fuse.NewServer(conn.RawFS(), mountpoint, &mOpts)
|
2015-09-08 00:54:24 +02:00
|
|
|
if err != nil {
|
2015-10-06 00:29:08 +02:00
|
|
|
fmt.Printf("Mount failed: %v", err)
|
2015-10-11 18:33:28 +02:00
|
|
|
os.Exit(ERREXIT_MOUNT)
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
2015-10-06 00:29:08 +02:00
|
|
|
srv.SetDebug(debug)
|
2015-09-08 00:54:24 +02:00
|
|
|
|
2015-10-06 00:29:08 +02:00
|
|
|
return srv
|
2015-09-08 00:54:24 +02:00
|
|
|
}
|
2015-11-01 13:28:58 +01:00
|
|
|
|
|
|
|
func handleSigint(srv *fuse.Server, mountpoint string) {
|
|
|
|
ch := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(ch, os.Interrupt)
|
|
|
|
signal.Notify(ch, syscall.SIGTERM)
|
|
|
|
go func() {
|
|
|
|
<-ch
|
|
|
|
err := srv.Unmount()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Print(err)
|
|
|
|
fmt.Printf("Trying lazy unmount\n")
|
|
|
|
cmd := exec.Command("fusermount", "-u", "-z", mountpoint)
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
cmd.Run()
|
|
|
|
}
|
|
|
|
os.Exit(1)
|
|
|
|
}()
|
|
|
|
}
|