2016-01-05 21:18:04 +01:00
|
|
|
[![gocryptfs](https://nuetzlich.net/gocryptfs/img/gocryptfs-logo.paths-black.svg)](https://nuetzlich.net/gocryptfs/) [![Build Status](https://travis-ci.org/rfjakob/gocryptfs.svg?branch=master)](https://travis-ci.org/rfjakob/gocryptfs) ![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)
|
2015-10-11 23:57:51 +02:00
|
|
|
==============
|
2015-11-01 12:14:59 +01:00
|
|
|
An encrypted overlay filesystem written in Go.
|
2015-12-20 18:25:10 +01:00
|
|
|
Official website: https://nuetzlich.net/gocryptfs
|
2015-09-06 12:12:14 +02:00
|
|
|
|
2015-10-06 00:31:53 +02:00
|
|
|
gocryptfs is built on top the excellent
|
|
|
|
[go-fuse](https://github.com/hanwen/go-fuse) FUSE library and its
|
|
|
|
LoopbackFileSystem API.
|
2015-09-06 12:12:14 +02:00
|
|
|
|
2015-12-08 16:41:45 +01:00
|
|
|
This project was inspired by EncFS and strives to fix its security
|
2016-05-25 00:28:22 +02:00
|
|
|
issues while providing good performance
|
|
|
|
([benchmarks](https://nuetzlich.net/gocryptfs/comparison/#performance)).
|
|
|
|
|
2015-11-01 12:14:59 +01:00
|
|
|
For details on the security of gocryptfs see the
|
2015-12-20 18:25:10 +01:00
|
|
|
[Security](https://nuetzlich.net/gocryptfs/security/) design document.
|
2015-09-08 23:09:28 +02:00
|
|
|
|
2015-12-20 21:15:49 +01:00
|
|
|
All tags from v0.4 onward are signed by the *gocryptfs signing key*.
|
2016-07-06 21:26:57 +02:00
|
|
|
Please check [Signed Releases](https://nuetzlich.net/gocryptfs/releases/)
|
|
|
|
for details.
|
2015-12-20 21:15:49 +01:00
|
|
|
|
2015-10-06 23:08:04 +02:00
|
|
|
Current Status
|
|
|
|
--------------
|
2015-11-14 19:10:52 +01:00
|
|
|
|
2016-07-17 12:19:50 +02:00
|
|
|
gocryptfs has reached version 1.0 on Jul 17, 2016. It has gone through
|
|
|
|
hours and hours of stress (fsstress, extractloop.bash) and correctness
|
|
|
|
testing (xfstests). It is now considered ready for general consumption.
|
|
|
|
|
|
|
|
The old principle still applies: Important data should have a backup.
|
|
|
|
Also, keep a copy of your master key (printed on mount) in a safe place.
|
|
|
|
This allows you to access the data even if the gocryptfs.conf config
|
|
|
|
file is damaged or you lose the password.
|
2015-11-14 19:10:52 +01:00
|
|
|
|
2016-07-06 21:26:57 +02:00
|
|
|
Platforms
|
|
|
|
---------
|
|
|
|
|
|
|
|
Linux is gocryptfs' native platform.
|
|
|
|
|
|
|
|
Experimental Mac OS X support is available, check out
|
2016-07-10 12:16:55 +02:00
|
|
|
[ticket #15](https://github.com/rfjakob/gocryptfs/issues/15) for
|
2016-07-06 21:26:57 +02:00
|
|
|
details.
|
|
|
|
|
|
|
|
For Windows, an independent C++ reimplementation has been started:
|
|
|
|
[cppcryptfs](https://github.com/bailey27/cppcryptfs)
|
2015-11-14 19:10:52 +01:00
|
|
|
|
|
|
|
Testing
|
|
|
|
-------
|
|
|
|
|
2015-11-15 16:06:19 +01:00
|
|
|
gocryptfs comes with is own test suite that is constantly expanded as features are
|
2016-01-09 15:31:58 +01:00
|
|
|
added. Run it using `./test.bash`. It takes about 1 minute and requires FUSE
|
2015-11-15 16:06:19 +01:00
|
|
|
as it mounts several test filesystems.
|
2015-11-14 19:10:52 +01:00
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
The `stress_tests` directory contains stress tests that run indefinitely.
|
|
|
|
|
2015-11-15 16:06:19 +01:00
|
|
|
In addition, I have ported `xfstests` to FUSE, the result is the
|
2015-11-14 19:10:52 +01:00
|
|
|
[fuse-xfstests](https://github.com/rfjakob/fuse-xfstests) project. gocryptfs
|
2015-12-01 18:19:24 +01:00
|
|
|
passes the "generic" tests with one exception, results: [XFSTESTS.md](Documentation/XFSTESTS.md)
|
2015-11-14 19:10:52 +01:00
|
|
|
|
|
|
|
A lot of work has gone into this. The testing has found bugs in gocryptfs
|
2016-05-25 00:28:22 +02:00
|
|
|
as well as in the go-fuse library.
|
2015-10-06 23:08:04 +02:00
|
|
|
|
2016-01-09 15:31:58 +01:00
|
|
|
Compile
|
2015-10-06 23:08:04 +02:00
|
|
|
-------
|
|
|
|
|
2015-10-11 19:45:03 +02:00
|
|
|
$ go get github.com/rfjakob/gocryptfs
|
2015-10-07 23:30:45 +02:00
|
|
|
|
|
|
|
Use
|
|
|
|
---
|
|
|
|
|
|
|
|
$ mkdir cipher plain
|
2016-01-09 15:31:58 +01:00
|
|
|
$ $GOPATH/bin/gocryptfs -init cipher
|
2015-10-11 19:45:03 +02:00
|
|
|
$ $GOPATH/bin/gocryptfs cipher plain
|
2016-01-09 15:31:58 +01:00
|
|
|
|
|
|
|
See the [Quickstart](https://nuetzlich.net/gocryptfs/quickstart/) page for more info.
|
|
|
|
|
|
|
|
The [MANPAGE.md](Documentation/MANPAGE.md) containes a description of available command-line options.
|
|
|
|
If you already have gocryptfs installed, run `./MANPAGE-render.bash` to bring up the rendered manpage in
|
|
|
|
your man pager (requires pandoc).
|
2015-11-11 09:19:53 +01:00
|
|
|
|
2015-11-01 12:14:59 +01:00
|
|
|
Storage Overhead
|
|
|
|
----------------
|
|
|
|
|
|
|
|
* Empty files take 0 bytes on disk
|
|
|
|
* 18 byte file header for non-empty files (2 bytes version, 16 bytes random file id)
|
|
|
|
* 28 bytes of storage overhead per 4kB block (12 byte nonce, 16 bytes auth tag)
|
|
|
|
|
2016-01-09 15:31:58 +01:00
|
|
|
[file-format.md](Documentation/file-format.md) contains a more detailed description.
|
|
|
|
|
2015-10-06 23:08:04 +02:00
|
|
|
Performance
|
|
|
|
-----------
|
|
|
|
|
2016-05-04 19:55:20 +02:00
|
|
|
Since version 0.7.2, gocryptfs is as fast as EncFS in the default mode,
|
|
|
|
and significantly faster than EncFS' "paranoia" mode that provides
|
|
|
|
a security level comparable to gocryptfs.
|
2015-09-06 12:16:34 +02:00
|
|
|
|
2016-05-04 19:55:20 +02:00
|
|
|
gocryptfs uses OpenSSL through a thin wrapper called `stupidgcm`.
|
|
|
|
This provides a 4x speedup compared to Go's builtin AES-GCM
|
|
|
|
implementation - see [openssl-gcm.md](Documentation/openssl-gcm.md)
|
|
|
|
for details. The use of openssl can disabled on the command-line.
|
2015-09-06 12:12:14 +02:00
|
|
|
|
2016-05-04 19:55:20 +02:00
|
|
|
Run `./benchmark.bash` to run gocryptfs' canonical set of
|
|
|
|
benchmarks that include streaming write, extracting a linux kernel
|
|
|
|
tarball, recursively listing and finally deleting it. The output will
|
|
|
|
look like this:
|
2015-09-06 12:12:14 +02:00
|
|
|
|
2016-01-23 20:17:34 +01:00
|
|
|
```
|
|
|
|
$ ./benchmark.bash
|
2016-05-04 19:55:20 +02:00
|
|
|
linux-3.0.tar.gz 100%[==========================>] 92,20M 2,96MB/s in 35s
|
|
|
|
2016-05-04 19:29:20 URL:https://www.kernel.org/pub/linux/kernel/v3.0/linux-3.0.tar.gz
|
|
|
|
WRITE: 131072000 bytes (131 MB) copied, 1,43137 s, 91,6 MB/s
|
|
|
|
UNTAR: 23.25
|
|
|
|
LS: 1.75
|
|
|
|
RM: 4.42
|
2016-01-23 20:17:34 +01:00
|
|
|
```
|
2015-10-06 00:31:53 +02:00
|
|
|
|
2015-11-01 01:32:33 +01:00
|
|
|
Changelog
|
|
|
|
---------
|
|
|
|
|
2016-07-17 12:19:50 +02:00
|
|
|
v1.0, 2016-07-17
|
2016-07-06 21:26:57 +02:00
|
|
|
* Deprecate very old filesystems, stage 3/3
|
2016-06-23 22:17:59 +02:00
|
|
|
* Filesystems created by v0.6 can no longer be mounted
|
2016-06-23 22:16:23 +02:00
|
|
|
* Drop command-line options `-gcmiv128`, `-emenames`, `-diriv`. These
|
|
|
|
are now always enabled.
|
2016-07-06 21:26:57 +02:00
|
|
|
* Add fallocate(2) support
|
|
|
|
* New command-line option `-o`
|
|
|
|
* Allows to pass mount options directly to the kernel
|
|
|
|
* Add support for device files and suid binaries
|
|
|
|
* Only works when running as root
|
|
|
|
* Must be explicitely enabled by passing "-o dev" or "-o suid" or "-o suid,dev"
|
|
|
|
* Experimental Mac OS X support. See
|
2016-07-10 12:16:55 +02:00
|
|
|
[ticket 15#](https://github.com/rfjakob/gocryptfs/issues/15) for details.
|
2016-06-23 22:16:23 +02:00
|
|
|
|
2016-06-19 19:03:17 +02:00
|
|
|
v0.12, 2016-06-19
|
2016-07-06 21:26:57 +02:00
|
|
|
* Deprecate very old filesystems, stage 2/3
|
2016-06-19 19:03:17 +02:00
|
|
|
* Filesystems created by v0.6 and older can only be mounted read-only
|
|
|
|
* A [message](https://github.com/rfjakob/gocryptfs/blob/v0.12/internal/configfile/config_file.go#L120)
|
|
|
|
explaining the situation is printed as well
|
2016-06-16 23:37:43 +02:00
|
|
|
* New command line option: `-ro`
|
|
|
|
* Mounts the filesystem read-only
|
2016-06-19 19:03:17 +02:00
|
|
|
* Accept password from stdin as well ([ticket #30](https://github.com/rfjakob/gocryptfs/issues/30))
|
2016-06-16 23:37:43 +02:00
|
|
|
|
2016-06-10 09:54:35 +02:00
|
|
|
v0.11, 2016-06-10
|
2016-07-06 21:26:57 +02:00
|
|
|
* Deprecate very old filesystems, stage 1/3
|
2016-06-19 19:03:17 +02:00
|
|
|
* Filesystems created by v0.6 and older can still be mounted but a
|
|
|
|
[warning](https://github.com/rfjakob/gocryptfs/blob/v0.11/internal/configfile/config_file.go#L120)
|
|
|
|
is printed
|
2016-06-19 19:12:32 +02:00
|
|
|
* See [ticket #29](https://github.com/rfjakob/gocryptfs/issues/29) for details and
|
2016-06-10 09:33:06 +02:00
|
|
|
join the discussion
|
|
|
|
* Add rsync stress test "pingpong-rsync.bash"
|
2016-06-16 23:37:43 +02:00
|
|
|
* Fix chown and utimens failures that caused rsync to complain
|
2016-06-10 09:52:49 +02:00
|
|
|
* Build release binaries with Go 1.6.2
|
2016-06-19 19:03:17 +02:00
|
|
|
* Big speedup for CPUs with AES-NI, see [ticket #23](https://github.com/rfjakob/gocryptfs/issues/23)
|
2016-06-10 09:33:06 +02:00
|
|
|
|
2016-05-30 21:04:33 +02:00
|
|
|
v0.10, 2016-05-30
|
|
|
|
* **Replace `spacemonkeygo/openssl` with `stupidgcm`**
|
2016-05-04 20:04:10 +02:00
|
|
|
* gocryptfs now has its own thin wrapper to OpenSSL's GCM implementation
|
2016-05-04 19:55:20 +02:00
|
|
|
called `stupidgcm`.
|
|
|
|
* This should fix the [compile issues](https://github.com/rfjakob/gocryptfs/issues/21)
|
2016-05-30 21:04:33 +02:00
|
|
|
people are seeing with `spacemonkeygo/openssl`. It also gets us
|
2016-05-04 19:55:20 +02:00
|
|
|
a 20% performance boost for streaming writes.
|
2016-05-13 22:18:17 +02:00
|
|
|
* **Automatically choose between OpenSSL and Go crypto** [issue #23](https://github.com/rfjakob/gocryptfs/issues/23)
|
|
|
|
* Go 1.6 added an optimized GCM implementation in amd64 assembly that uses AES-NI.
|
2016-05-30 21:04:33 +02:00
|
|
|
This is faster than OpenSSL and is used if available. In all other
|
|
|
|
cases OpenSSL is much faster and is used instead.
|
|
|
|
* `-openssl=auto` is the new default
|
2016-05-13 22:18:17 +02:00
|
|
|
* Passing `-openssl=true/false` overrides the autodetection.
|
2016-05-30 21:04:33 +02:00
|
|
|
* Warn but continue anyway if fallocate(2) is not supported by the
|
|
|
|
underlying filesystem, see [issue #22](https://github.com/rfjakob/gocryptfs/issues/22)
|
|
|
|
* Enables to use gocryptfs on ZFS and ext3, albeit with reduced out-of-space safety.
|
2016-05-13 22:18:17 +02:00
|
|
|
* [Fix statfs](https://github.com/rfjakob/gocryptfs/pull/27), by @lxp
|
2016-05-25 00:28:22 +02:00
|
|
|
* Fix a fsstress [failure](https://github.com/hanwen/go-fuse/issues/106)
|
|
|
|
in the go-fuse library.
|
2016-05-04 19:55:20 +02:00
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.9, 2016-04-10
|
2016-04-10 23:01:00 +02:00
|
|
|
* **Long file name support**
|
2016-04-03 23:11:46 +02:00
|
|
|
* gocryptfs now supports file names up to 255 characters.
|
|
|
|
* This is a forwards-compatible change. gocryptfs v0.9 can mount filesystems
|
|
|
|
created by earlier versions but not the other way round.
|
|
|
|
* Refactor gocryptfs into multiple "internal" packages
|
|
|
|
* New command-line options:
|
|
|
|
* `-longnames`: Enable long file name support (default true)
|
|
|
|
* `-nosyslog`: Print messages to stdout and stderr instead of syslog (default false)
|
|
|
|
* `-wpanic`: Make warning messages fatal (used for testing)
|
|
|
|
* `-d`: Alias for `-debug`
|
|
|
|
* `-q`: Alias for `-quiet`
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.8, 2016-01-23
|
2016-01-23 19:35:51 +01:00
|
|
|
* Redirect output to syslog when running in the background
|
|
|
|
* New command-line option:
|
|
|
|
* `-memprofile`: Write a memory allocation debugging profile the specified
|
|
|
|
file
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.7.2, 2016-01-19
|
2016-01-19 23:08:10 +01:00
|
|
|
* **Fix performance issue in small file creation**
|
2016-01-19 22:56:33 +01:00
|
|
|
* This brings performance on-par with EncFS paranoia mode, with streaming writes
|
|
|
|
significantly faster
|
|
|
|
* The actual [fix](https://github.com/hanwen/go-fuse/commit/c4b6b7949716d13eec856baffc7b7941ae21778c)
|
|
|
|
is in the go-fuse library. There are no code changes in gocryptfs.
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.7.1, 2016-01-09
|
2016-01-09 15:31:58 +01:00
|
|
|
* Make the `build.bash` script compatible with Go 1.3
|
|
|
|
* Disable fallocate on OSX (system call not availabe)
|
|
|
|
* Introduce pre-built binaries for Fedora 23 and Debian 8
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.7, 2015-12-20
|
2015-12-20 15:42:52 +01:00
|
|
|
* **Extend GCM IV size to 128 bit from Go's default of 96 bit**
|
|
|
|
* This pushes back the birthday bound to make IV collisions virtually
|
|
|
|
impossible
|
|
|
|
* This is a forwards-compatible change. gocryptfs v0.7 can mount filesystems
|
|
|
|
created by earlier versions but not the other way round.
|
|
|
|
* New command-line option:
|
|
|
|
* `-gcmiv128`: Use 128-bit GCM IVs (default true)
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.6, 2015-12-08
|
2015-12-08 16:41:45 +01:00
|
|
|
* **Wide-block filename encryption using EME + DirIV**
|
|
|
|
* EME (ECB-Mix-ECB) provides even better security than CBC as it fixes
|
|
|
|
the prefix leak. The used Go EME implementation is
|
|
|
|
https://github.com/rfjakob/eme which is, as far as I know, the first
|
|
|
|
implementation of EME in Go.
|
2015-12-08 16:44:39 +01:00
|
|
|
* This is a forwards-compatible change. gocryptfs v0.6 can mount filesystems
|
2015-12-20 15:42:52 +01:00
|
|
|
created by earlier versions but not the other way round.
|
2015-12-08 16:41:45 +01:00
|
|
|
* New command-line option:
|
|
|
|
* `-emenames`: Enable EME filename encryption (default true)
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.5.1, 2015-12-06
|
2016-01-09 15:31:58 +01:00
|
|
|
* Fix a rename regression caused by DirIV and add test case
|
|
|
|
* Use fallocate to guard against out-of-space errors
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.5, 2015-12-04
|
2015-11-29 22:36:25 +01:00
|
|
|
* **Stronger filename encryption: DirIV**
|
|
|
|
* Each directory gets a random 128 bit file name IV on creation,
|
|
|
|
stored in `gocryptfs.diriv`
|
|
|
|
* This makes it impossible to identify identically-named files across
|
|
|
|
directories
|
|
|
|
* A single-entry IV cache brings the performance cost of DirIV close to
|
|
|
|
zero for common operations (see performance.txt)
|
|
|
|
* This is a forwards-compatible change. gocryptfs v0.5 can mount filesystems
|
2015-12-20 15:42:52 +01:00
|
|
|
created by earlier versions but not the other way round.
|
2015-11-29 22:36:25 +01:00
|
|
|
* New command-line option:
|
|
|
|
* `-diriv`: Use the new per-directory IV file name encryption (default true)
|
|
|
|
* `-scryptn`: allows to set the scrypt cost parameter N. This option
|
|
|
|
can be used for faster mounting at the cost of lower brute-force
|
|
|
|
resistance. It was mainly added to speed up the automated tests.
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.4, 2015-11-15
|
2015-11-15 16:06:19 +01:00
|
|
|
* New command-line options:
|
|
|
|
* `-plaintextnames`: disables filename encryption, added on user request
|
|
|
|
* `-extpass`: calls an external program for prompting for the password
|
|
|
|
* `-config`: allows to specify a custom gocryptfs.conf path
|
|
|
|
* Add `FeatureFlags` gocryptfs.conf paramter
|
2015-11-03 22:34:03 +01:00
|
|
|
* This is a config format change, hence the on-disk format is incremented
|
|
|
|
* Used for ext4-style filesystem feature flags. This should help avoid future
|
2015-11-15 16:06:19 +01:00
|
|
|
format changes. The first user is `-plaintextnames`.
|
2015-11-03 00:08:31 +01:00
|
|
|
* On-disk format 2
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.3, 2015-11-01
|
2015-11-29 22:36:25 +01:00
|
|
|
* **Add a random 128 bit file header to authenticate file->block ownership**
|
2015-11-01 01:32:33 +01:00
|
|
|
* This is an on-disk-format change
|
2015-11-01 14:07:42 +01:00
|
|
|
* On-disk format 1
|
2015-11-01 01:32:33 +01:00
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.2, 2015-10-11
|
2015-11-01 01:32:33 +01:00
|
|
|
* Replace bash daemonization wrapper with native Go implementation
|
|
|
|
* Better user feedback on mount failures
|
|
|
|
|
2016-05-25 00:28:22 +02:00
|
|
|
v0.1, 2015-10-07
|
2015-11-01 01:32:33 +01:00
|
|
|
* First release
|
2015-11-01 14:07:42 +01:00
|
|
|
* On-disk format 0
|