Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-14 | syscallcompat: retry ops on EINTR | Jakob Unterwurzacher | |
Retry operations that have been shown to throw EINTR errors on CIFS. Todo: Solution for this pain in the back: warning: unix.Getdents returned errno 2 in the middle of data rm: cannot remove 'linux-3.0.old3/Documentation/ABI/removed': Input/output error Progress towards fixing https://github.com/rfjakob/gocryptfs/issues/483 . | |||
2020-10-11 | syscallcompat: Openat: retry on EINTR | Jakob Unterwurzacher | |
Towards fixing https://github.com/rfjakob/gocryptfs/issues/507 | |||
2020-10-04 | build.bash: show "go mod edit -replace" in version string | Jakob Unterwurzacher | |
If you do something like this, go mod edit -replace github.com/hanwen/go-fuse/v2=/home/jakob/go/src/github.com/hanwen/go-fuse the version string of the resulting binary should reflect that. Before: gocryptfs v1.8.0-135-g352b547-dirty.gofuse_v2api; go-fuse v2.0.4-0.20200908172753-0b6cbc515082; 2020-10-03 go1.15.2 linux/amd64 After: gocryptfs v1.8.0-135-g352b547-dirty.gofuse_v2api; go-fuse v2.0.4-0.20200908172753-0b6cbc515082 => /home/jakob/go/src/github.com/hanwen/go-fuse; 2020-10-03 go1.15.2 linux/amd64 | |||
2020-10-04 | tests: fsstress-gocryptfs.bash: log timestamp for each iteration | Jakob Unterwurzacher | |
2020-10-04 | tests: fsstress-gocryptfs.bash: add DEBUG option | Jakob Unterwurzacher | |
Also add a wrapper script, fsstress.collect-crashes.sh, to collect the debug output. https://github.com/hanwen/go-fuse/issues/372 | |||
2020-10-03 | fsstress-gocryptfs.bash: don't hang if TMPDIR ends in / | Jakob Unterwurzacher | |
We would hang like this ./fsstress-loopback.bash Recompile go-fuse loopback: v2.0.3-7-g0b6cbc5 Waiting for mount: xxxxxxxx^C if TMPDIR has a trailing /. The reason is that the paths in /proc/self/mounts are normalized, while TMPDIR may not be. | |||
2020-09-21 | go mod tidy | Pavol Rusnak | |
2020-09-18 | fsstress-gocryptfs.bash: print loopback version & mount path | Jakob Unterwurzacher | |
To make the used go-fuse version clear in logs, print it on startup, similar to what we do with gocryptfs. | |||
2020-09-18 | contrib/mount-ext4-ramdisk.sh: clean up in error case | Jakob Unterwurzacher | |
Also fix all shellcheck warnings. | |||
2020-09-14 | Add contrib/mount-ext4-ramdisk.sh | Jakob Unterwurzacher | |
2020-09-13 | stress_tests/fsstress-gocryptfs.bash: use rm -Rf for cleanup | Jakob Unterwurzacher | |
Apparently, kernel 5.8 now allows unprivileged "mknod /tmp/x c 0 0": vfs: allow unprivileged whiteout creation https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.8.9&id=a3c751a50fe6bbe50eb7622a14b18b361804ee0c which is why rm throws a new prompt: rm: remove write-protected character special file '...'? Use rm -Rf to suppress that. | |||
2020-09-12 | go.mod: update go-fuse | Jakob Unterwurzacher | |
2020-09-12 | Add support for FIDO2 tokens | Pavol Rusnak | |
2020-09-12 | tests/plaintextnames: add TestInoReuseEvil | Jakob Unterwurzacher | |
2020-09-09 | tests: add TestInoReuse | Jakob Unterwurzacher | |
2020-09-09 | test_helpers: print warning when not running on ext4 | Jakob Unterwurzacher | |
ext4 reuses inode numbers, tmpfs does not. | |||
2020-09-09 | v2api: add Darwin xattr support | Jakob Unterwurzacher | |
2020-09-09 | syscallcompat: add Renameat2 for Darwin | Jakob Unterwurzacher | |
2020-09-09 | test_helpers: mark MountOrFatal as a Helper() | Jakob Unterwurzacher | |
2020-09-06 | manpage: link to exitcodes.go | Jakob Unterwurzacher | |
2020-09-06 | gocryptfs -init: fix wrong exit code on non-empty dir | Jakob Unterwurzacher | |
Fixes https://github.com/rfjakob/gocryptfs/pull/503 | |||
2020-08-30 | v2api/reverse: update TODO comment on xattrs | Jakob Unterwurzacher | |
2020-08-30 | tests/reverse: implement (skipped) xattr test | Jakob Unterwurzacher | |
v1api reverse mode did not have xattr support, the v2api version may have at some point. Prep the test already. | |||
2020-08-16 | v2api/reverse: implement Lseek | Jakob Unterwurzacher | |
2020-08-16 | v2api/reverse: implement Statfs | Jakob Unterwurzacher | |
2020-08-16 | v2api: clean up api TODOs | Jakob Unterwurzacher | |
2020-08-16 | v2api: rename "File2" to just "File" | Jakob Unterwurzacher | |
Rename the symbols and the files. | |||
2020-08-15 | v2api/reverse: finish -exclude | Jakob Unterwurzacher | |
Tests pass now. | |||
2020-08-15 | v2api/reverse: start wiring up -exclude functionality | Jakob Unterwurzacher | |
Exclude in readdir is missing. | |||
2020-08-15 | test_helper: VerifyExistence: don't panic | Jakob Unterwurzacher | |
Instead bubble up the error to the testing object. | |||
2020-08-15 | v2api/reverse: fix two fd leaks | Jakob Unterwurzacher | |
2020-08-15 | v2api/reverse: implement ctlsocksrv.Interface | Jakob Unterwurzacher | |
2020-08-15 | v2api/reverse: implement gocryptfs.conf mapping with -plaintextnames | Jakob Unterwurzacher | |
2020-08-09 | v2api/reverse: implement Read | Jakob Unterwurzacher | |
2020-08-08 | v2api/reverse: implement Readlink | Jakob Unterwurzacher | |
2020-08-02 | v2api/reverse: implement Lookup for longname | Jakob Unterwurzacher | |
2020-08-02 | v2api/reverse: implement Lookup for gocryptfs.conf & gocryptfs.diriv | Jakob Unterwurzacher | |
2020-08-01 | v2api/reverse: add missing decryptPath call openBackingDir | Jakob Unterwurzacher | |
2020-08-01 | v2api/reverse: implement Readdir | Jakob Unterwurzacher | |
2020-08-01 | v2api/reverse: implement Lookup & Getattr | Jakob Unterwurzacher | |
2020-08-01 | v2api/reverse: start fusefrontend_reverse v2 API implementation | Jakob Unterwurzacher | |
2020-08-01 | v2api/reverse: move old fusefrontend_reverse out of the way | Jakob Unterwurzacher | |
fusefrontend_reverse -> fusefrontend_reverse_v1api | |||
2020-08-01 | fusefrontend_reverse: collapse getFileType | Jakob Unterwurzacher | |
2020-08-01 | v2api: move helpers from node.go to node_helpers.go | Jakob Unterwurzacher | |
2020-07-29 | getdents_c: continue on EINTR from open | Jakob Unterwurzacher | |
Getting EINTR here is acceptable. | |||
2020-07-29 | Revert "getdents_c: read from two threads" | Jakob Unterwurzacher | |
This made the code more complicated without reproducing the problem. This reverts commit 77632b7554000f2e832a0e9fded1a3894b2502c3. | |||
2020-07-27 | v2api: pass fusedebug option via MountOptions | Jakob Unterwurzacher | |
srv.SetDebug() is deprecated and only enables the debug output after the init sequence, so we missed the first few transaction in the debug output. | |||
2020-07-26 | stress_tests: run pingpong.bash at nice level 19 | Jakob Unterwurzacher | |
Like extractloop.bash. | |||
2020-07-26 | v2api: fix missing size translation in Lookup | Jakob Unterwurzacher | |
2020-07-26 | v2api: delete (most) fusefrontend v1 files | Jakob Unterwurzacher | |
All the functionality in these files has been reimplemented for the v2 api. Drop the old files. |