2015-11-11 09:15:14 +01:00
|
|
|
% GOCRYPTFS(1)
|
|
|
|
% github.com/rfjakob
|
2017-08-21 20:53:25 +02:00
|
|
|
% Aug 2017
|
2015-11-11 09:15:14 +01:00
|
|
|
|
|
|
|
NAME
|
|
|
|
====
|
|
|
|
|
2018-02-03 13:39:07 +01:00
|
|
|
gocryptfs - create or mount an encrypted filesystem
|
2015-11-11 09:15:14 +01:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
========
|
|
|
|
|
2019-11-17 11:04:41 +01:00
|
|
|
#### Initialize new encrypted filesystem
|
2018-02-03 13:39:07 +01:00
|
|
|
`gocryptfs -init [OPTIONS] CIPHERDIR`
|
2015-11-11 09:15:14 +01:00
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### Mount
|
2018-02-03 13:39:07 +01:00
|
|
|
`gocryptfs [OPTIONS] CIPHERDIR MOUNTPOINT [-o COMMA-SEPARATED-OPTIONS]`
|
2015-11-11 09:15:14 +01:00
|
|
|
|
2019-11-17 11:04:41 +01:00
|
|
|
#### Unmount
|
|
|
|
`fusermount -u MOUNTPOINT`
|
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### Change password
|
2018-02-03 13:39:07 +01:00
|
|
|
`gocryptfs -passwd [OPTIONS] CIPHERDIR`
|
2015-11-11 09:15:14 +01:00
|
|
|
|
2018-04-03 21:19:44 +02:00
|
|
|
#### Check consistency
|
|
|
|
`gocryptfs -fsck [OPTIONS] CIPHERDIR`
|
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
#### Show filesystem information
|
|
|
|
`gocryptfs -info [OPTIONS] CIPHERDIR`
|
|
|
|
|
2015-11-11 09:15:14 +01:00
|
|
|
DESCRIPTION
|
|
|
|
===========
|
|
|
|
|
2018-07-07 23:50:53 +02:00
|
|
|
gocryptfs is an encrypted overlay filesystem written in Go.
|
|
|
|
Encrypted files are stored in CIPHERDIR, and a plain-text
|
|
|
|
view can be presented by mounting the filesystem at MOUNTPOINT.
|
|
|
|
|
|
|
|
gocryptfs was inspired by encfs(1) and strives to fix its
|
|
|
|
security issues while providing good performance.
|
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
ACTION FLAGS
|
|
|
|
============
|
|
|
|
|
|
|
|
Unless one of the following *action flags* is passed, the default
|
|
|
|
action is to mount a filesystem (see SYNOPSIS).
|
|
|
|
|
|
|
|
#### -fsck
|
|
|
|
Check CIPHERDIR for consistency. If corruption is found, the
|
|
|
|
exit code is 26.
|
|
|
|
|
|
|
|
#### -h, -help
|
|
|
|
Print a short help text that shows the more-often used options.
|
|
|
|
|
|
|
|
#### -hh
|
|
|
|
Long help text, shows all available options.
|
|
|
|
|
|
|
|
#### -info
|
2020-11-14 15:08:57 +01:00
|
|
|
Pretty-print the contents of the config file in CIPHERDIR for
|
|
|
|
human consumption, stripping out sensitive data.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ gocryptfs -info my_cipherdir
|
|
|
|
Creator: gocryptfs v2.0-beta2
|
|
|
|
FeatureFlags: GCMIV128 HKDF DirIV EMENames LongNames Raw64
|
|
|
|
EncryptedKey: 64B
|
|
|
|
ScryptObject: Salt=32B N=65536 R=8 P=1 KeyLen=32
|
2020-11-14 15:00:47 +01:00
|
|
|
|
|
|
|
#### -init
|
|
|
|
Initialize encrypted directory.
|
|
|
|
|
|
|
|
#### -passwd
|
|
|
|
Change the password. Will ask for the old password, check if it is
|
|
|
|
correct, and ask for a new one.
|
|
|
|
|
|
|
|
This can be used together with `-masterkey` if
|
|
|
|
you forgot the password but know the master key. Note that without the
|
|
|
|
old password, gocryptfs cannot tell if the master key is correct and will
|
|
|
|
overwrite the old one without mercy. It will, however, create a backup copy
|
|
|
|
of the old config file as `gocryptfs.conf.bak`. Delete it after
|
|
|
|
you have verified that you can access your files with the
|
|
|
|
new password.
|
2018-07-07 23:50:53 +02:00
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
#### -speed
|
|
|
|
Run crypto speed test. Benchmark Go's built-in GCM against OpenSSL
|
|
|
|
(if available). The library that will be selected on "-openssl=auto"
|
|
|
|
(the default) is marked as such.
|
|
|
|
|
|
|
|
#### -version
|
|
|
|
Print version and exit. The output contains three fields separated by ";".
|
|
|
|
Example: "gocryptfs v1.1.1-5-g75b776c; go-fuse 6b801d3; 2016-11-01 go1.7.3".
|
|
|
|
Field 1 is the gocryptfs version, field 2 is the version of the go-fuse
|
|
|
|
library, field 3 is the compile date and the Go version that was
|
|
|
|
used.
|
|
|
|
|
|
|
|
INIT OPTIONS
|
|
|
|
============
|
|
|
|
|
|
|
|
Available options for `-init` are listed below. Usually, you don't need any.
|
2019-11-17 11:04:41 +01:00
|
|
|
Defaults are fine.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
|
|
|
#### -aessiv
|
|
|
|
Use the AES-SIV encryption mode. This is slower than GCM but is
|
|
|
|
secure with deterministic nonces as used in "-reverse" mode.
|
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
#### -devrandom
|
|
|
|
Use `/dev/random` for generating the master key instead of the default Go
|
|
|
|
implementation. This is especially useful on embedded systems with Go versions
|
|
|
|
prior to 1.9, which fall back to weak random data when the getrandom syscall
|
|
|
|
is blocking. Using this option can block indefinitely when the kernel cannot
|
|
|
|
harvest enough entropy.
|
|
|
|
|
|
|
|
#### -hkdf
|
|
|
|
Use HKDF to derive separate keys for content and name encryption from
|
|
|
|
the master key. Default true.
|
|
|
|
|
|
|
|
#### -nosyslog
|
|
|
|
Diagnostic messages are normally redirected to syslog once gocryptfs
|
|
|
|
daemonizes. This option disables the redirection and messages will
|
|
|
|
continue be printed to stdout and stderr.
|
|
|
|
|
|
|
|
#### -plaintextnames
|
|
|
|
Do not encrypt file names and symlink targets.
|
|
|
|
|
|
|
|
#### -raw64
|
|
|
|
Use unpadded base64 encoding for file names. This gets rid of the
|
|
|
|
trailing "\\=\\=". A filesystem created with this option can only be
|
|
|
|
mounted using gocryptfs v1.2 and higher. Default true.
|
|
|
|
|
|
|
|
#### -reverse
|
|
|
|
Reverse mode shows a read-only encrypted view of a plaintext
|
|
|
|
directory. Implies "-aessiv".
|
|
|
|
|
|
|
|
#### -scryptn int
|
|
|
|
scrypt cost parameter expressed as scryptn=log2(N). Possible values are
|
|
|
|
10 to 28, representing N=2^10 to N=2^28.
|
|
|
|
|
|
|
|
Setting this to a lower
|
|
|
|
value speeds up mounting and reduces its memory needs, but makes
|
|
|
|
the password susceptible to brute-force attacks. The default is 16.
|
|
|
|
|
|
|
|
MOUNT OPTIONS
|
|
|
|
=============
|
|
|
|
|
|
|
|
Available options for mounting are listed below. Usually, you don't need any.
|
|
|
|
Defaults are fine.
|
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### -allow_other
|
|
|
|
By default, the Linux kernel prevents any other user (even root) to
|
|
|
|
access a mounted FUSE filesystem. Settings this option allows access for
|
|
|
|
other users, subject to file permission checking. Only works if
|
|
|
|
user_allow_other is set in /etc/fuse.conf. This option is equivalent to
|
|
|
|
"allow_other" plus "default_permissions" described in fuse(8).
|
|
|
|
|
2021-06-20 12:28:20 +02:00
|
|
|
#### -badname string
|
|
|
|
When gocryptfs encounters a "bad" file name (cannot be decrypted or decrypts
|
|
|
|
to garbage), a warning is logged and the file is hidden from the
|
|
|
|
plaintext view.
|
|
|
|
|
|
|
|
With the `-badname` option, you can select "bad" file names that should
|
|
|
|
still be shown in the plaintext view instead of hiding them. Bad files
|
|
|
|
will get ` GOCRYPTFS_BAD_NAME` appended to their name.
|
|
|
|
|
|
|
|
Glob pattern. Can be passed multiple times for multiple patterns.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
Dropbox sync conflicts:
|
|
|
|
|
|
|
|
-badname '*conflicted copy*'
|
|
|
|
|
|
|
|
Syncthing sync conflicts:
|
|
|
|
|
|
|
|
-badname '*.sync-conflict*'
|
|
|
|
|
|
|
|
Show all invalid filenames:
|
|
|
|
|
|
|
|
-badname '*'
|
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### -ctlsock string
|
|
|
|
Create a control socket at the specified location. The socket can be
|
|
|
|
used to decrypt and encrypt paths inside the filesystem. When using
|
2018-01-09 20:01:35 +01:00
|
|
|
this option, make sure that the directory you place the socket in is
|
2017-03-28 19:55:46 +02:00
|
|
|
not world-accessible. For example, `/run/user/UID/my.socket` would
|
|
|
|
be suitable.
|
|
|
|
|
2018-06-10 19:30:10 +02:00
|
|
|
#### -dev, -nodev
|
|
|
|
Enable (`-dev`) or disable (`-nodev`) device files in a gocryptfs mount
|
|
|
|
(default: `-nodev`). If both are specified, `-nodev` takes precedence.
|
|
|
|
You need root permissions to use `-dev`.
|
|
|
|
|
2018-08-15 13:11:34 +02:00
|
|
|
#### -e PATH, -exclude PATH
|
2018-08-11 23:26:49 +02:00
|
|
|
Only for reverse mode: exclude relative plaintext path from the encrypted
|
2019-02-16 21:55:54 +01:00
|
|
|
view, matching only from root of mounted filesystem. Can be passed multiple
|
|
|
|
times. Example:
|
2018-08-11 23:26:49 +02:00
|
|
|
|
|
|
|
gocryptfs -reverse -exclude Music -exclude Movies /home/user /mnt/user.encrypted
|
|
|
|
|
2019-02-16 21:55:54 +01:00
|
|
|
See also `-exclude-wildcard`, `-exclude-from` and the [EXCLUDING FILES](#excluding-files) section.
|
|
|
|
|
|
|
|
#### -ew PATH, -exclude-wildcard PATH
|
|
|
|
Only for reverse mode: exclude paths from the encrypted view, matching anywhere.
|
|
|
|
Wildcards supported. Can be passed multiple times. Example:
|
|
|
|
|
|
|
|
gocryptfs -reverse -exclude-wildcard '*~' /home/user /mnt/user.encrypted
|
|
|
|
|
|
|
|
See also `-exclude`, `-exclude-from` and the [EXCLUDING FILES](#excluding-files) section.
|
|
|
|
|
|
|
|
#### -exclude-from FILE
|
|
|
|
Only for reverse mode: reads exclusion patters (using `-exclude-wildcard` syntax)
|
|
|
|
from a file. Can be passed multiple times. Example:
|
|
|
|
|
|
|
|
gocryptfs -reverse -exclude-from ~/crypt-exclusions /home/user /mnt/user.encrypted
|
|
|
|
|
|
|
|
See also `-exclude`, `-exclude-wildcard` and the [EXCLUDING FILES](#excluding-files) section.
|
|
|
|
|
2018-06-10 19:30:10 +02:00
|
|
|
#### -exec, -noexec
|
|
|
|
Enable (`-exec`) or disable (`-noexec`) executables in a gocryptfs mount
|
|
|
|
(default: `-exec`). If both are specified, `-noexec` takes precedence.
|
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### -fg, -f
|
2020-11-14 14:29:04 +01:00
|
|
|
Stay in the foreground instead of forking away.
|
2018-01-09 20:01:35 +01:00
|
|
|
For compatibility, "-f" is also accepted, but "-fg" is preferred.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
2020-11-14 14:29:04 +01:00
|
|
|
Unless `-notifypid` is also passed, the logs go to stdout and stderr
|
|
|
|
instead of syslog.
|
|
|
|
|
2017-06-20 19:49:18 +02:00
|
|
|
#### -force_owner string
|
|
|
|
If given a string of the form "uid:gid" (where both "uid" and "gid" are
|
|
|
|
substituted with positive integers), presents all files as owned by the given
|
|
|
|
uid and gid, regardless of their actual ownership. Implies "allow_other".
|
|
|
|
|
|
|
|
This is rarely desired behavior: One should *usually* run gocryptfs as the
|
|
|
|
account which owns the backing-store files, which should *usually* be one and
|
|
|
|
the same with the account intended to access the decrypted content. An example
|
|
|
|
of a case where this may be useful is a situation where content is stored on a
|
|
|
|
filesystem that doesn't properly support UNIX ownership and permissions.
|
|
|
|
|
2017-04-08 02:09:28 +02:00
|
|
|
#### -forcedecode
|
|
|
|
Force decode of encrypted files even if the integrity check fails, instead of
|
|
|
|
failing with an IO error. Warning messages are still printed to syslog if corrupted
|
|
|
|
files are encountered.
|
|
|
|
It can be useful to recover files from disks with bad sectors or other corrupted
|
|
|
|
media. It shall not be used if the origin of corruption is unknown, specially
|
2017-04-24 00:25:02 +02:00
|
|
|
if you want to run executable files.
|
|
|
|
|
|
|
|
For corrupted media, note that you probably want to use dd_rescue(1)
|
|
|
|
instead, which will recover all but the corrupted 4kB block.
|
|
|
|
|
|
|
|
This option makes no sense in reverse mode. It requires gocryptfs to be compiled with openssl
|
2017-04-08 02:09:28 +02:00
|
|
|
support and implies -openssl true. Because of this, it is not compatible with -aessiv,
|
2017-04-24 00:25:02 +02:00
|
|
|
that uses built-in Go crypto.
|
|
|
|
|
|
|
|
Setting this option forces the filesystem to read-only and noexec.
|
2017-04-08 02:09:28 +02:00
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### -fsname string
|
|
|
|
Override the filesystem name (first column in df -T). Can also be
|
|
|
|
passed as "-o fsname=" and is equivalent to libfuse's option of the
|
|
|
|
same name. By default, CIPHERDIR is used.
|
|
|
|
|
|
|
|
#### -fusedebug
|
2018-02-03 13:39:07 +01:00
|
|
|
Enable fuse library debug output.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
2018-10-11 21:44:16 +02:00
|
|
|
#### -i duration, -idle duration
|
|
|
|
Only for forward mode: automatically unmount the filesystem if it has been idle
|
|
|
|
for the specified duration. Durations can be specified like "500s" or "2h45m".
|
|
|
|
0 (the default) means stay mounted indefinitely.
|
|
|
|
|
2021-01-02 18:11:18 +01:00
|
|
|
When a process has open files or its working directory in the mount,
|
|
|
|
this will keep it not idle indefinitely.
|
|
|
|
|
2020-12-08 08:27:23 +01:00
|
|
|
#### -kernel_cache
|
|
|
|
Enable the kernel_cache option of the FUSE filesystem, see fuse(8) for details.
|
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### -ko
|
2018-01-09 20:01:35 +01:00
|
|
|
Pass additional mount options to the kernel (comma-separated list).
|
2017-03-28 19:55:46 +02:00
|
|
|
FUSE filesystems are mounted with "nodev,nosuid" by default. If gocryptfs
|
|
|
|
runs as root, you can enable device files by passing the opposite mount option,
|
|
|
|
"dev", and if you want to enable suid-binaries, pass "suid".
|
|
|
|
"ro" (equivalent to passing the "-ro" option) and "noexec" may also be
|
|
|
|
interesting. For a complete list see the section
|
2018-01-20 13:35:26 +01:00
|
|
|
`FILESYSTEM-INDEPENDENT MOUNT OPTIONS` in mount(8). On MacOS, "local",
|
|
|
|
"noapplexattr", "noappledouble" may be interesting.
|
|
|
|
|
|
|
|
Note that unlike "-o", "-ko" is a regular option and must be passed BEFORE
|
|
|
|
the directories. Example:
|
|
|
|
|
|
|
|
gocryptfs -ko noexec /tmp/foo /tmp/bar
|
2017-03-28 19:55:46 +02:00
|
|
|
|
|
|
|
#### -longnames
|
|
|
|
Store names longer than 176 bytes in extra files (default true)
|
|
|
|
This flag is useful when recovering old gocryptfs filesystems using
|
|
|
|
"-masterkey". It is ignored (stays at the default) otherwise.
|
|
|
|
|
2018-06-10 19:30:10 +02:00
|
|
|
#### -nodev
|
|
|
|
See `-dev, -nodev`.
|
|
|
|
|
|
|
|
#### -noexec
|
|
|
|
See `-exec, -noexec`.
|
|
|
|
|
2019-03-31 14:33:02 +02:00
|
|
|
#### -nofail
|
|
|
|
Having the `nofail` option in `/etc/fstab` instructs `systemd` to continue
|
|
|
|
booting normally even if the mount fails (see `man systemd.fstab`).
|
|
|
|
|
|
|
|
The option is ignored by `gocryptfs` itself and has no effect outside `/etc/fstab`.
|
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### -nonempty
|
|
|
|
Allow mounting over non-empty directories. FUSE by default disallows
|
2018-01-09 20:01:35 +01:00
|
|
|
this to prevent accidental shadowing of files.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
|
|
|
#### -noprealloc
|
|
|
|
Disable preallocation before writing. By default, gocryptfs
|
|
|
|
preallocates the space the next write will take using fallocate(2)
|
|
|
|
in mode FALLOC_FL_KEEP_SIZE. The preallocation makes sure it cannot
|
|
|
|
run out of space in the middle of the write, which would cause the
|
|
|
|
last 4kB block to be corrupt and unreadable.
|
|
|
|
|
|
|
|
On ext4, preallocation is fast and does not cause a
|
|
|
|
noticeable performance hit. Unfortunately, on Btrfs, preallocation
|
|
|
|
is very slow, especially on rotational HDDs. The "-noprealloc"
|
|
|
|
option gives users the choice to trade robustness against
|
|
|
|
out-of-space errors for a massive speedup.
|
|
|
|
|
|
|
|
For benchmarks and more details of the issue see
|
|
|
|
https://github.com/rfjakob/gocryptfs/issues/63 .
|
|
|
|
|
2018-06-10 19:30:10 +02:00
|
|
|
#### -nosuid
|
|
|
|
See `-suid, -nosuid`.
|
|
|
|
|
2017-03-28 19:55:46 +02:00
|
|
|
#### -notifypid int
|
|
|
|
Send USR1 to the specified process after successful mount. This is
|
|
|
|
used internally for daemonization.
|
|
|
|
|
2018-06-10 19:30:10 +02:00
|
|
|
#### -rw, -ro
|
|
|
|
Mount the filesystem read-write (`-rw`, default) or read-only (`-ro`).
|
2019-09-06 18:33:06 +02:00
|
|
|
If both are specified, `-ro` takes precedence.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
#### -reverse
|
|
|
|
See the `-reverse` section in INIT FLAGS. You need to specifiy the
|
|
|
|
`-reverse` option both at `-init` and at mount.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
|
|
|
#### -serialize_reads
|
|
|
|
The kernel usually submits multiple concurrent reads to service
|
|
|
|
userspace requests and kernel readahead. gocryptfs serves them
|
|
|
|
concurrently and in arbitrary order. On backing storage that performs
|
|
|
|
poorly for concurrent or out-of-order reads (like Amazon Cloud Drive),
|
2018-01-09 20:01:35 +01:00
|
|
|
this behavior can cause very slow read speeds.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
|
|
|
The `-serialize_reads`
|
|
|
|
option does two things: (1) reads will be submitted one-by-one (no
|
|
|
|
concurrency) and (2) gocryptfs tries to order the reads by file
|
|
|
|
offset order.
|
|
|
|
|
|
|
|
The ordering requires gocryptfs to wait a certain time before
|
|
|
|
submitting a read. The serialization introduces extra locking.
|
|
|
|
These factors will limit throughput to below 70MB/s.
|
|
|
|
|
|
|
|
For more details visit https://github.com/rfjakob/gocryptfs/issues/92 .
|
|
|
|
|
2017-11-12 20:06:13 +01:00
|
|
|
#### -sharedstorage
|
|
|
|
Enable work-arounds so gocryptfs works better when the backing
|
|
|
|
storage directory is concurrently accessed by multiple gocryptfs
|
|
|
|
instances.
|
|
|
|
|
|
|
|
At the moment, it does two things:
|
|
|
|
|
|
|
|
1. Disable stat() caching so changes to the backing storage show up
|
|
|
|
immediately.
|
|
|
|
2. Disable hard link tracking, as the inode numbers on the backing
|
|
|
|
storage are not stable when files are deleted and re-created behind
|
|
|
|
our back. This would otherwise produce strange "file does not exist"
|
|
|
|
and other errors.
|
|
|
|
|
|
|
|
When "-sharedstorage" is active, performance is reduced and hard
|
|
|
|
links cannot be created.
|
|
|
|
|
|
|
|
Even with this flag set, you may hit occasional problems. Running
|
|
|
|
gocryptfs on shared storage does not receive as much testing as the
|
|
|
|
usual (exclusive) use-case. Please test your workload in advance
|
|
|
|
and report any problems you may hit.
|
|
|
|
|
|
|
|
More info: https://github.com/rfjakob/gocryptfs/issues/156
|
|
|
|
|
2018-06-10 19:30:10 +02:00
|
|
|
#### -suid, -nosuid
|
|
|
|
Enable (`-suid`) or disable (`-nosuid`) suid and sgid executables in a gocryptfs
|
|
|
|
mount (default: `-nosuid`). If both are specified, `-nosuid` takes precedence.
|
|
|
|
You need root permissions to use `-suid`.
|
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
#### -zerokey
|
|
|
|
Use all-zero dummy master key. This options is only intended for
|
|
|
|
automated testing as it does not provide any security.
|
|
|
|
|
|
|
|
COMMON OPTIONS
|
|
|
|
==============
|
|
|
|
|
|
|
|
Options that apply to more than one action are listed below.
|
|
|
|
Each options lists where it is applicable. Again, usually you
|
|
|
|
don't need any.
|
|
|
|
|
|
|
|
#### -config string
|
|
|
|
Use specified config file instead of `CIPHERDIR/gocryptfs.conf`.
|
|
|
|
|
|
|
|
Applies to: all actions that use a config file: mount, `-fsck`, `-passwd`, `-info`, `-init`.
|
|
|
|
|
|
|
|
#### -cpuprofile string
|
|
|
|
Write cpu profile to specified file.
|
|
|
|
|
|
|
|
Applies to: all actions.
|
|
|
|
|
|
|
|
#### -d, -debug
|
|
|
|
Enable debug output.
|
|
|
|
|
|
|
|
Applies to: all actions.
|
|
|
|
|
|
|
|
#### -extpass CMD [-extpass ARG1 ...]
|
|
|
|
Use an external program (like ssh-askpass) for the password prompt.
|
|
|
|
The program should return the password on stdout, a trailing newline is
|
|
|
|
stripped by gocryptfs. If you just want to read from a password file, see `-passfile`.
|
|
|
|
|
|
|
|
When `-extpass` is specified once, the string argument will be split on spaces.
|
|
|
|
For example, `-extpass "md5sum my password.txt"` will be executed as
|
|
|
|
`"md5sum" "my" "password.txt"`, which is NOT what you want.
|
|
|
|
|
|
|
|
Specify `-extpass` twice or more to use the string arguments as-is.
|
|
|
|
For example, you DO want to call `md5sum` like this:
|
|
|
|
`-extpass "md5sum" -extpass "my password.txt"`.
|
|
|
|
|
|
|
|
If you want to prevent splitting on spaces but don't want to pass arguments
|
|
|
|
to your program, use `"--"`, which is accepted by most programs:
|
|
|
|
`-extpass "my program" -extpass "--"`
|
|
|
|
|
|
|
|
Applies to: all actions that ask for a password.
|
|
|
|
|
|
|
|
#### -fido2 DEVICE_PATH
|
|
|
|
Use a FIDO2 token to initialize and unlock the filesystem.
|
|
|
|
Use "fido2-token -L" to obtain the FIDO2 token device path.
|
|
|
|
|
|
|
|
Applies to: all actions that ask for a password.
|
|
|
|
|
|
|
|
#### -masterkey string
|
|
|
|
Use a explicit master key specified on the command line or, if the special
|
|
|
|
value "stdin" is used, read the masterkey from stdin, instead of reading
|
|
|
|
the config file and asking for the decryption password.
|
|
|
|
|
|
|
|
Note that the command line, and with it the master key, is visible to
|
|
|
|
anybody on the machine who can execute "ps -auxwww". Use "-masterkey=stdin"
|
|
|
|
to avoid that risk.
|
|
|
|
|
|
|
|
The masterkey option is meant as a recovery option for emergencies, such as
|
|
|
|
if you have forgotten the password or lost the config file.
|
|
|
|
|
|
|
|
Even if a config file exists, it will not be used. All non-standard
|
|
|
|
settings have to be passed on the command line: `-aessiv` when you
|
|
|
|
mount a filesystem that was created using reverse mode, or
|
|
|
|
`-plaintextnames` for a filesystem that was created with that option.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
-masterkey=6f717d8b-6b5f8e8a-fd0aa206-778ec093-62c5669b-abd229cd-241e00cd-b4d6713d
|
|
|
|
-masterkey=stdin
|
|
|
|
|
|
|
|
Applies to: all actions that ask for a password.
|
|
|
|
|
|
|
|
#### -memprofile string
|
|
|
|
Write memory profile to the specified file. This is useful when debugging
|
|
|
|
memory usage of gocryptfs.
|
|
|
|
|
|
|
|
Applies to: all actions.
|
|
|
|
|
|
|
|
#### -o COMMA-SEPARATED-OPTIONS
|
|
|
|
For compatibility with mount(1), options are also accepted as
|
|
|
|
"-o COMMA-SEPARATED-OPTIONS" at the end of the command line.
|
|
|
|
For example, "-o q,zerokey" is equivalent to passing "-q -zerokey".
|
|
|
|
|
|
|
|
Note that you can only use options that are understood by gocryptfs
|
|
|
|
with "-o". If you want to pass special flags to the kernel, you should
|
|
|
|
use "-ko" (*k*ernel *o*ption). This is different in libfuse-based
|
|
|
|
filesystems, that automatically pass any "-o" options they do not
|
|
|
|
understand along to the kernel.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
gocryptfs /tmp/foo /tmp/bar -o q,zerokey
|
|
|
|
|
|
|
|
Applies to: all actions.
|
|
|
|
|
|
|
|
#### -openssl bool/"auto"
|
|
|
|
Use OpenSSL instead of built-in Go crypto (default "auto"). Using
|
|
|
|
built-in crypto is 4x slower unless your CPU has AES instructions and
|
|
|
|
you are using Go 1.6+. In mode "auto", gocrypts chooses the faster
|
|
|
|
option.
|
|
|
|
|
|
|
|
Applies to: all actions.
|
|
|
|
|
|
|
|
#### -passfile FILE [-passfile FILE2 ...]
|
|
|
|
Read password from the specified plain text file. The file should contain exactly
|
|
|
|
one line (do not use binary files!).
|
|
|
|
A warning will be printed if there is more than one line, and only
|
|
|
|
the first line will be used. A single
|
|
|
|
trailing newline is allowed and does not cause a warning.
|
|
|
|
|
|
|
|
Pass this option multiple times to read the first line from multiple
|
|
|
|
files. They are concatenated for the effective password.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
echo hello > hello.txt
|
|
|
|
echo word > world.txt
|
|
|
|
gocryptfs -passfile hello.txt -passfile world.txt
|
|
|
|
|
|
|
|
The effective password will be "helloworld".
|
|
|
|
|
|
|
|
Applies to: all actions that ask for a password.
|
|
|
|
|
|
|
|
#### -q, -quiet
|
|
|
|
Quiet - silence informational messages.
|
|
|
|
|
|
|
|
Applies to: all actions.
|
|
|
|
|
2017-06-20 19:49:18 +02:00
|
|
|
#### -trace string
|
|
|
|
Write execution trace to file. View the trace using "go tool trace FILE".
|
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
Applies to: all actions.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
|
|
|
#### -wpanic
|
|
|
|
When encountering a warning, panic and exit immediately. This is
|
|
|
|
useful in regression testing.
|
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
Applies to: all actions.
|
2017-03-28 19:55:46 +02:00
|
|
|
|
2018-08-15 23:34:23 +02:00
|
|
|
#### \-\-
|
2017-03-28 19:55:46 +02:00
|
|
|
Stop option parsing. Helpful when CIPHERDIR may start with a
|
|
|
|
dash "-".
|
2017-02-12 12:49:04 +01:00
|
|
|
|
2020-11-14 15:00:47 +01:00
|
|
|
Applies to: all actions.
|
|
|
|
|
2019-02-16 21:55:54 +01:00
|
|
|
EXCLUDING FILES
|
|
|
|
===============
|
|
|
|
|
|
|
|
In reverse mode, it is possible to exclude files from the encrypted view, using
|
|
|
|
the `-exclude`, `-exclude-wildcard` and `-exclude-from` options.
|
|
|
|
|
|
|
|
`-exclude` matches complete paths, so `-exclude file.txt` only excludes a file
|
|
|
|
named `file.txt` in the root of the mounted filesystem; files named `file.txt`
|
|
|
|
in subdirectories are still visible. (This option is kept for compatibility
|
|
|
|
with the behavior up to version 1.6.x)
|
|
|
|
|
|
|
|
`-exclude-wildcard` matches files anywhere, so `-exclude-wildcard file.txt`
|
|
|
|
excludes files named `file.txt` in any directory. If you want to match complete
|
|
|
|
paths, you can prefix the filename with a `/`: `-exclude-wildcard /file.txt`
|
|
|
|
excludes only `file.txt` in the root of the mounted filesystem.
|
|
|
|
|
|
|
|
If there are many exclusions, you can use `-exclude-from` to read exclusion
|
|
|
|
patterns from a file. The syntax is that of `-exclude-wildcard`, so use a
|
|
|
|
leading `/` to match complete paths.
|
|
|
|
|
|
|
|
The rules for exclusion are that of [gitignore](https://git-scm.com/docs/gitignore#_pattern_format).
|
|
|
|
In short:
|
|
|
|
|
|
|
|
1. A blank line matches no files, so it can serve as a separator
|
|
|
|
for readability.
|
|
|
|
2. A line starting with `#` serves as a comment. Put a backslash (`\`)
|
|
|
|
in front of the first hash for patterns that begin with a hash.
|
|
|
|
3. Trailing spaces are ignored unless they are quoted with backslash (`\`).
|
|
|
|
4. An optional prefix `!` negates the pattern; any matching file
|
|
|
|
excluded by a previous pattern will become included again. It is not
|
|
|
|
possible to re-include a file if a parent directory of that file is
|
|
|
|
excluded. Put a backslash (`\`) in front of the first `!` for
|
|
|
|
patterns that begin with a literal `!`, for example, `\!important!.txt`.
|
|
|
|
5. If the pattern ends with a slash, it is removed for the purpose of the
|
|
|
|
following description, but it would only find a match with a directory.
|
|
|
|
In other words, `foo/` will match a directory foo and paths underneath it,
|
|
|
|
but will not match a regular file or a symbolic link foo.
|
|
|
|
6. If the pattern does not contain a slash `/`, it is treated as a shell glob
|
|
|
|
pattern and checked for a match against the pathname relative to the
|
|
|
|
root of the mounted filesystem.
|
|
|
|
7. Otherwise, the pattern is treated as a shell glob suitable for
|
|
|
|
consumption by fnmatch(3) with the FNM_PATHNAME flag: wildcards in the
|
|
|
|
pattern will not match a `/` in the pathname. For example,
|
|
|
|
`Documentation/*.html` matches `Documentation/git.html` but not
|
|
|
|
`Documentation/ppc/ppc.html` or `tools/perf/Documentation/perf.html`.
|
|
|
|
8. A leading slash matches the beginning of the pathname. For example,
|
|
|
|
`/*.c` matches `cat-file.c` but not `mozilla-sha1/sha1.c`.
|
|
|
|
9. Two consecutive asterisks (`**`) in patterns matched against full
|
|
|
|
pathname may have special meaning:
|
|
|
|
i. A leading `**` followed by a slash means match in all directories.
|
|
|
|
For example, `**/foo` matches file or directory `foo` anywhere,
|
|
|
|
the same as pattern `foo`. `**/foo/bar` matches file or directory
|
|
|
|
`bar` anywhere that is directly under directory `foo`.
|
|
|
|
ii. A trailing `/**` matches everything inside. For example, `abc/**`
|
|
|
|
matches all files inside directory `abc`, with infinite depth.
|
|
|
|
iii. A slash followed by two consecutive asterisks then a slash matches
|
|
|
|
zero or more directories. For example, `a/**/b` matches `a/b`,
|
|
|
|
`a/x/b`, `a/x/y/b` and so on.
|
|
|
|
iv. Other consecutive asterisks are considered invalid.
|
|
|
|
|
|
|
|
|
2016-01-06 16:55:38 +01:00
|
|
|
EXAMPLES
|
|
|
|
========
|
|
|
|
|
2021-01-10 08:01:08 +01:00
|
|
|
### Init
|
|
|
|
|
2020-04-05 00:29:42 +02:00
|
|
|
Create an encrypted filesystem in directory "mydir.crypt", mount it on "mydir":
|
2016-01-06 16:55:38 +01:00
|
|
|
|
2020-04-05 00:29:42 +02:00
|
|
|
mkdir mydir.crypt mydir
|
|
|
|
gocryptfs -init mydir.crypt
|
|
|
|
gocryptfs mydir.crypt mydir
|
2016-01-06 16:55:38 +01:00
|
|
|
|
2021-01-10 08:01:08 +01:00
|
|
|
### Mount
|
|
|
|
|
2020-04-05 00:29:42 +02:00
|
|
|
Mount an encrypted view of joe's home directory using reverse mode:
|
2016-01-06 16:55:38 +01:00
|
|
|
|
2016-11-01 15:53:16 +01:00
|
|
|
mkdir /home/joe.crypt
|
|
|
|
gocryptfs -init -reverse /home/joe
|
|
|
|
gocryptfs -reverse /home/joe /home/joe.crypt
|
2016-05-16 23:59:26 +02:00
|
|
|
|
2021-01-10 08:01:08 +01:00
|
|
|
### fstab
|
|
|
|
|
2020-11-14 15:27:40 +01:00
|
|
|
Adding this line to `/etc/fstab` will mount `/tmp/cipher` to `/tmp/plain` on boot, using the
|
|
|
|
password in `/tmp/passfile`. Use `sudo mount -av` to test the line without having
|
|
|
|
to reboot. Adjust the gocryptfs path acc. to the output of the command `which gocryptfs`.
|
|
|
|
Do use the `nofail` option to prevent an unbootable system if the gocryptfs mount fails (see
|
|
|
|
the `-nofail` option for details).
|
|
|
|
|
|
|
|
/tmp/cipher /tmp/plain fuse./usr/local/bin/gocryptfs nofail,allow_other,passfile=/tmp/password 0 0
|
|
|
|
|
2017-02-26 19:30:28 +01:00
|
|
|
EXIT CODES
|
|
|
|
==========
|
|
|
|
|
|
|
|
0: success
|
2017-08-21 20:53:25 +02:00
|
|
|
6: CIPHERDIR is not an empty directory (on "-init")
|
|
|
|
10: MOUNTPOINT is not an empty directory
|
2017-02-26 19:30:28 +01:00
|
|
|
12: password incorrect
|
2017-08-21 20:53:25 +02:00
|
|
|
22: password is empty (on "-init")
|
|
|
|
23: could not read gocryptfs.conf
|
|
|
|
24: could not write gocryptfs.conf (on "-init" or "-password")
|
2018-04-03 21:19:44 +02:00
|
|
|
26: fsck found errors
|
2017-02-26 19:30:28 +01:00
|
|
|
other: please check the error message
|
|
|
|
|
2020-09-06 11:38:13 +02:00
|
|
|
See also: https://github.com/rfjakob/gocryptfs/blob/master/internal/exitcodes/exitcodes.go
|
|
|
|
|
2016-05-16 23:59:26 +02:00
|
|
|
SEE ALSO
|
|
|
|
========
|
2018-07-07 23:50:53 +02:00
|
|
|
mount(2) fuse(8) fallocate(2) encfs(1)
|