rclone/cmd/mountlib
nielash fd8faeb0e6 vfs: fix unicode normalization on macOS - fixes #7072
Before this change, the VFS layer did not properly handle unicode normalization,
which caused problems particularly for users of macOS. While attempts were made
to handle it with various `-o modules=iconv` combinations, this was an imperfect
solution, as no one combination allowed both NFC and NFD content to
simultaneously be both visible and editable via Finder.

After this change, the VFS supports `--no-unicode-normalization` (default `false`)
via the existing `--vfs-case-insensitive` logic, which is extended to apply to both
case insensitivity and unicode normalization form.

This change also adds an additional flag, `--vfs-block-norm-dupes`, to address a
probably rare but potentially possible scenario where a directory contains
multiple duplicate filenames after applying case and unicode normalization
settings. In such a scenario, this flag (disabled by default) hides the
duplicates. This comes with a performance tradeoff, as rclone will have to scan
the entire directory for duplicates when listing a directory. For this reason,
it is recommended to leave this disabled if not needed. However, macOS users may
wish to consider using it, as otherwise, if a remote directory contains both NFC
and NFD versions of the same filename, an odd situation will occur: both
versions of the file will be visible in the mount, and both will appear to be
editable, however, editing either version will actually result in only the NFD
version getting edited under the hood. `--vfs-block-norm-dupes` prevents this
confusion by detecting this scenario, hiding the duplicates, and logging an
error, similar to how this is handled in `rclone sync`.
2024-03-06 16:12:13 +00:00
..
check_linux.go mount: notice daemon dying much quicker 2023-12-01 09:36:05 +00:00
check_other.go mount: notice daemon dying much quicker 2023-12-01 09:36:05 +00:00
mount.go systemd: Fix detection and switch to the coreos package everywhere 2023-12-02 14:17:15 +00:00
mount.md vfs: fix unicode normalization on macOS - fixes #7072 2024-03-06 16:12:13 +00:00
rc_test.go Replace deprecated ioutil 2022-11-07 11:41:47 +00:00
rc.go mount: error strings should not be capitalized 2023-03-26 14:28:15 +02:00
sighup_unsupported.go build: apply gofmt from golang 1.17 2021-09-09 20:43:59 +03:00
sighup.go build: apply gofmt from golang 1.17 2021-09-09 20:43:59 +03:00
utils.go mount: avoid incorrect or premature overlap check on windows 2023-01-24 22:27:02 +01:00