Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-25 | Update README for v0.10 | Jakob Unterwurzacher | |
Also add dates for all releases. | |||
2016-05-25 | fsstress-loopback: use random directory names | Jakob Unterwurzacher | |
This allows to run more than one instance of the script in parallel. Also, properly clean up on exit. | |||
2016-05-24 | extractloop: use $SECONDS special variable | Jakob Unterwurzacher | |
Gets rid of the call to "date" and simplifies the code. | |||
2016-05-24 | stress_tests: add header comments | Jakob Unterwurzacher | |
Also, convert extractloop.bash to using md5sum instead of diff -ur so the user does not have to keep an extracted kernel tree around. And print the iteration time. | |||
2016-05-22 | stupidgcm: add benchmark.bash wrapper | Jakob Unterwurzacher | |
Add a simple bash wrapper to make it easier to run the GCM benchmarks. | |||
2016-05-18 | Add "-allow_other" command-line option | Jakob Unterwurzacher | |
As requested in https://github.com/rfjakob/gocryptfs/issues/26 , this adds the option to allow other users to access the filesystem. | |||
2016-05-13 | Update README vor v0.10-rc3v0.10-rc3 | Jakob Unterwurzacher | |
2016-05-12 | Encrypt path in statfs() calls | David Gnedt | |
Paths in statfs() calls were not encrypted resulting in an Function not implemented error, when the unencrypted path didn't exist in the underlying (encrypted) filesystem. $ df plain/existingdir df: ‘plain/existingdir’: Function not implemented | |||
2016-05-12 | prefer_openssl: add amd64 constraint | Jakob Unterwurzacher | |
Optimized assembly versions for Go GCM are only available on amd64. | |||
2016-05-12 | prefer_openssl: autodetect whether to use OpenSSL or Go GCM | Jakob Unterwurzacher | |
Go GCM is faster than OpenSSL if the CPU has AES instructions and you are running Go 1.6+. The "-openssl" option now defaults to "auto". "gocryptfs -debug -version" displays the result of the autodetection. See https://github.com/rfjakob/gocryptfs/issues/23 for details and benchmarks. | |||
2016-05-11 | README: Note fallocate changes for v0.10 (issue #22) | Jakob Unterwurzacher | |
2016-05-08 | fusefrontend: fix panic due to concurrently unregistered wlock | Jakob Unterwurzacher | |
Commit 730291feab properly freed wlock when the file descriptor is closed. However, concurrently running Write and Truncates may still want to lock it. Check if the fd has been closed first. | |||
2016-05-08 | stress_tests: improve output | Jakob Unterwurzacher | |
2016-05-05 | stress_tests: extractloop: run two loops in parallel | Jakob Unterwurzacher | |
This increases the load but also the disk space requirements (to about 2GB). | |||
2016-05-05 | fusefrontend: fix wlock memory leak | Jakob Unterwurzacher | |
The write lock was not freed on release, causing a slow memory leak. This was noticed by running extractloop.bash for 10 hours. | |||
2016-05-05 | stress_tests: add stress test scripts | Jakob Unterwurzacher | |
These were hosted at https://github.com/rfjakob/fsstress . To make them easier to use for gocryptfs users and developers, add them to the main repo. | |||
2016-05-05 | stupidgcm: set dummy locking callback.v0.10-rc2 | Jakob Unterwurzacher | |
In general, OpenSSL is only threadsafe if you provide a locking function through CRYPTO_set_locking_callback. However, the GCM operations that stupidgcm uses never call that function. To guard against that ever changing, set a dummy locking callback that crashes the app. | |||
2016-05-05 | stupidgcm: skip tests on Go 1.4 and older | Jakob Unterwurzacher | |
Quoting from the patch: We compare against Go's built-in GCM implementation. Since stupidgcm only supports 128-bit IVs and Go only supports that from 1.5 onward, we cannot run these tests on older Go versions. | |||
2016-05-05 | Revert "stupidgcm: print openssl error stack before panicing" | Jakob Unterwurzacher | |
This did not help in debugging the openssl <= 1.0.1c issue at all and makes the code more complex. Keep it simple. | |||
2016-05-05 | cryptocore: support Go 1.4 in tests | Jakob Unterwurzacher | |
2016-05-05 | stupidgcm: reorder calls to support openssl <= 1.0.1c | Jakob Unterwurzacher | |
This fixes the test failures on Travis CI. Quoting from https://github.com/openssl/openssl/commit/07a4ff79d23e45f1a45da717b7c1f41a5e1c7c0c /* Set expected tag value. A restriction in OpenSSL 1.0.1c and earlier * required the tag before any AAD or ciphertext */ | |||
2016-05-04 | stupidgcm: print openssl error stack before panicing | Jakob Unterwurzacher | |
2016-05-04 | stupidgcm: fix copy-paste error in panic message | Jakob Unterwurzacher | |
Also, print the openssl version in Travis CI | |||
2016-05-04 | Fix typos in README | Jakob Unterwurzacher | |
2016-05-04 | Update README for v0.10-rc1v0.10-rc1 | Jakob Unterwurzacher | |
2016-05-04 | stupidgcm: completely replace spacemonkeygo/openssl | Jakob Unterwurzacher | |
2016-05-04 | stupidgcm: add our own thin wrapper around openssl gcm | Jakob Unterwurzacher | |
...complete with tests and benchmark. This will allow us to get rid of the dependency to spacemonkeygo/openssl that causes problems on Arch Linux ( https://github.com/rfjakob/gocryptfs/issues/21 ) | |||
2016-05-04 | cryptocore: add API tests | Jakob Unterwurzacher | |
2016-04-28 | build.bash: replace "git -C" | Jakob Unterwurzacher | |
"-C" is not supported on older git versions. Instead, just cd into the directory. See issue #20. | |||
2016-04-20 | prelloc: warn and continue if fallocate(2) is not supported | Jakob Unterwurzacher | |
This makes gocryptfs work at all on ZFS. See https://github.com/rfjakob/gocryptfs/issues/22 . | |||
2016-04-17 | Update manpage with "longnames" option, explain feature flag options | Jakob Unterwurzacher | |
2016-04-10 | build.bash: bake the go-fuse commit hash into the binariesv0.9 | Jakob Unterwurzacher | |
2016-04-10 | Update readme.md and performance.txt for v0.9 | Jakob Unterwurzacher | |
2016-04-10 | Fix "go tool vet -shadow=true" warnings | Jakob Unterwurzacher | |
Among those one real bug. | |||
2016-04-10 | tests: clean up leftover mounts in resetTmpDir | Jakob Unterwurzacher | |
Failure in the example filesystems tests can leave them mounted. | |||
2016-04-10 | longnames: fix fsstress failure, use dirfd | Jakob Unterwurzacher | |
Using dirfd-relative operations allows safe lockless handling of the ".name" files. | |||
2016-04-10 | longnames: use symbolic constants instead of naked ints | Jakob Unterwurzacher | |
2016-04-10 | Add v0.9-rc2 performance numbers | Jakob Unterwurzacher | |
2016-04-03 | Add v0.9 changes to READMEv0.9-rc2 | Jakob Unterwurzacher | |
2016-04-03 | travis ci: also build with Go 1.6 | Jakob Unterwurzacher | |
2016-03-03 | Enable openssl in tests to support old Go versions | Jakob Unterwurzacher | |
Go 1.4 and older do not support 128-bit IVs which caused the tests to panic. | |||
2016-03-03 | Fix Go 1.4 build failure caused by a refactoring oversight | Jakob Unterwurzacher | |
2016-02-07 | longnames part II: Rename, Unlink, Rmdir, Mknod, Mkdir + testsv0.9-rc1 | Jakob Unterwurzacher | |
2016-02-07 | tests: do not create gocryptfs.diriv if plaintextnames==true | Jakob Unterwurzacher | |
2016-02-07 | Move OpenDir to fs_dir.go | Jakob Unterwurzacher | |
2016-02-07 | Add tests for long name creation and renaming (currently failing, obviously) | Jakob Unterwurzacher | |
2016-02-06 | longnames part I: Create and OpenDir work with long filenames > 176 bytes | Jakob Unterwurzacher | |
Todo: Rename, Unlink, Rmdir, Mknod, Mkdir | |||
2016-02-06 | travis: run all tests in "internal" | Jakob Unterwurzacher | |
2016-02-06 | Move dirIVCache to its own file | Jakob Unterwurzacher | |
2016-02-06 | test.bash: Accept flags | Jakob Unterwurzacher | |