aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
2016-06-22Released 2.8sshfs_2.8Nikolaus Rath
2016-06-22Fixed release year of version 2.7Nikolaus Rath
2016-06-05Add extra quoting for increased compatibility.Nikolaus Rath
Fixes: #15.
2016-06-05Added ChangeLog entry for fsync extensionNikolaus Rath
2016-03-01Released 2.7sshfs-2.7Nikolaus Rath
2016-02-10Expose the cache clean interval settings as flagsJulio Merino
Allow the user to customize the cache regular and minimum clean intervals as flags via the new cache_clean_interval and cache_min_clean_interval options. While doing this, rename the internal variables and constants to suffix them with their unit (seconds).
2016-02-10Expose the maximum cache size setting as a flagJulio Merino
Allow the user to customize the size of the sshfs cache by adding a new max_cache_size flag and turning the hardcoded constant into a variable.
2016-02-08Document merge of osxfuse's sshfsJulio Merino
2016-01-28Released 2.6sshfs_2_6Nikolaus Rath
2016-01-28Added missing ChangeLog entries for 2.4 and 2.5Nikolaus Rath
2016-01-28Changed Changelog formatNikolaus Rath
Up to now, the Changelog has essentially been a (manually maintained) copy of the git commit history. This doesn't seem to have any point other than following the GNU coding standards. I believe it's much better to use the Changelog to summarize the release-to-release changes that are most important for users (as was done in the NEWS file until now).
2015-04-14sshfs: Increase the maximum length of the passwordMiklos Szeredi
read from stdin to 1024 characters. Reported by: Mario A. Valdez-Ramirez.
2014-02-10sshfs-return-the-correct-x_ok-accessMiklos Szeredi
sshfs-fuse always returned 0 in access(file, X_OK) calls, causing nautilus to prompt "Do you want to run "login.defs", or display its contents?" for text files that were not executable. Reported by: Alkis Georgopoulos
2014-01-14Released 2.5sshfs_2_5Miklos Szeredi
2014-01-08Implement asynchronous readdirAlexander Neumann
Accessing directories with many (several thousand) files over sshfs is slow, because most SFTP server implementations only send a fixed amount of entries per READDIR command (e.g. OpenSSH SFTP: 100 entries). This patch implements sending several READDIR commands in parallel, in order to speed up directory listing in these cases. An option (sync_readdir) is also added so that users can easily switch on the old behaviour. The performance improvement is astonishing. Accessing a directory with 30k files in from a remote server that has a RTT of 15ms via OpenSSH SFTP: Synchronous readdir: $ ./sshfs -o sync_readdir host:/tmp /mnt/temp $ time "ls" -1 /mnt/temp/test | wc -l 30000 "ls" -1 /mnt/temp/test 0.07s user 0.01s system 1% cpu 6.928 total Asynchronous readdir: $ ./sshfs host:/tmp /mnt/temp $ time "ls" -1 /mnt/temp/test | wc -l 30000 "ls" -1 /mnt/temp/test 0.07s user 0.01s system 12% cpu 0.605 total Accessing a directory with 100k files shows even more dramatic improvement: Synchronous readdir: $ ./sshfs -o sync_readdir host:/tmp /mnt/temp $ time "ls" -1 /mnt/temp/test2 | wc -l 100000 "ls" -1 /mnt/temp/test2 0.67s user 1.22s system 0% cpu 3:31.56 total Asynchronous readdir: $ ./sshfs host:/tmp /mnt/temp $ time "ls" -1 /mnt/temp/test2 | wc -l 100000 "ls" -1 /mnt/temp/test2 0.20s user 0.03s system 14% cpu 1.631 total This can easily be reproduced by creating a directory on a server and touching a lot of files in it: $ mkdir /tmp/test $ cd /tmp/test $ for i in $(seq 1 30000); do touch $i; done Signed-off-by: Alexander Neumann <alexander@bumpern.de>
2014-01-08Add -o disable_hardlink option (debian bug #670926)Miklos Szeredi
Reported by Louis-David Mitterrand
2014-01-07Map SSH2_FX_FAILURE to ENOTEMPTY for rmdirMiklos Szeredi
Reported by Ross Lagerwall
2012-05-14When checking root directory use LSTAT not STATMiklos Szeredi
This prevents I/O error being returned after a successful mount if a symlink is mounted. Reported by Bart Friederichs
2012-03-08Released 2.4sshfs_2_4Miklos Szeredi
2012-03-08make sure idmap files aren't writable by othersMike Kelly
otherwise, other local users could change the mapping, and gain access to things they shouldn't
2012-02-14Add slave option to run sftp over stdin and stdoutChris Wolfe
Add -o slave. This option routes the sftp communication over stdin and stdout, bypassing SSH and network.
2011-12-20Add -o idmap=file, -o uidmap=FILE, -o gidmap=FILEMike Kelly
These options allow you to create a pair of local files, with username:uid/groupname:gid pairs, one per line. Alternatively, files can be in standard /etc/passwd / /etc/group format. The uid/gids are for the remote server, their local counterparts are looked up with a local getpwnam/getgrnam call. Any stat() calls will show with the remapped local uid/gid, and any chown() calls will be remapped back to the remote uid/gid.
2011-12-05Make chown respect the UID mapping policyMiklos Szeredi
Reported and tested by Vivenzio Pagliari
2011-11-16Submit max 32k reads and writes to the sftp serverMiklos Szeredi
Also don't limit the kernel to 64k reads and writes, rather split into 32k sized chunks and send them to the server all at once. This is more efficient and less demanding from the server. Reported by Ludovic Courtès. Fix suggested by Niels Möller
2011-11-14Add locking around modifver and connverMiklos Szeredi
2011-11-14Fix double free if reconnection races with request sendingMiklos Szeredi
Patch by E. Kuemmerle
2011-10-21Remove "-oPreferredAuthentications" from ssh optionsMiklos Szeredi
Remove "-oPreferredAuthentications" from ssh options if the "password_stdin" option is used. Reported by E. Kuemmerle
2011-08-24sshfs: fstat workaroundPercy Jahn
Add "-oworkaround=fstat" for SFTP servers which don't support the FSTAT message.
2011-07-01Released 2.3sshfs_2_3Miklos Szeredi
2011-07-01Add hard link operationMiklos Szeredi
Works if the server supports the "hardlink@openssh.com" protocol extension.
2011-03-25Fix possible deadlock on reconnectionMiklos Szeredi
Reported by Florian Zumbiehl
2011-01-25Fix cleanup when ssh connection is terminated.Miklos Szeredi
This prevents sshfs hanging when the server is rebooted, for example.
2010-04-28* Set FD_CLOEXEC on fuse device. This prevents deadlocks thatMiklos Szeredi
happen in some circumstances (bugzilla.kernel.org #12864).
2009-07-15* Check that the remote path specified refers to the same type ofMiklos Szeredi
file as the mountpoint, i.e. both are directories or both are non-directories (debian bug #535343). Reported by Greg Kochanski * Allow mounting a single non-directory from the server
2009-07-15Check mountpoint and fuse options before starting an sshMiklos Szeredi
session (debian bug #535333). This is only supported if compiled against libfuse-2.6 or later. Reported by Greg Kochanski
2009-07-15Add option 'delay_connect': This will always create the sshfs mount,Miklos Szeredi
even if the connection to the server can't be established.
2009-02-12* Print usage information and version to stdout, not stderr.Miklos Szeredi
Libfuse also needs to be fixed up. Reported by Kārlis Repsons
2008-10-20Released 2.2sshfs_2_2Miklos Szeredi
2008-10-20Escape commas in fsname option if libfuse supports itMiklos Szeredi
2008-10-08Fix harmless glib assertations with "cache=no"Miklos Szeredi
2008-10-08* Handle numerical IPv6 addresses enclosed in square brackets. Reported by ↵Miklos Szeredi
Andre-John Mas * Fix error if username contains a comma character. Reported by Yang Zhang
2008-07-11Released 2.1sshfs_2_1Miklos Szeredi
2008-06-24Add '-F' option to specify the ssh config fileMiklos Szeredi
2008-05-06Fix bug in caching which could cause file corruption for append mode writesMiklos Szeredi
2008-04-23Add manual pageMiklos Szeredi
2008-04-22Released 2.0Miklos Szeredi
2008-04-22Support "statvfs@openssh.com" extension...Miklos Szeredi
2008-04-22Limit write requests to 64kBMiklos Szeredi
2008-04-22Allow the '-ossh_command=CMD' command to contain parameters...Miklos Szeredi
2008-04-22Fix incorrect disk usage reported by 'du' for files of size 4GB or aboveMiklos Szeredi