Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-02-18 | fix missing newline in manual page | Alan Jenkins | |
2013-02-05 | Add FIXME for deadlock if $PATH contains mountpoint. | Miklos Szeredi | |
Reported by Joachim Kopp | |||
2012-05-14 | When checking root directory use LSTAT not STAT | Miklos Szeredi | |
This prevents I/O error being returned after a successful mount if a symlink is mounted. Reported by Bart Friederichs | |||
2012-03-08 | Released 2.4sshfs_2_4 | Miklos Szeredi | |
2012-03-08 | make sure idmap files aren't writable by others | Mike Kelly | |
otherwise, other local users could change the mapping, and gain access to things they shouldn't | |||
2012-02-14 | Add slave option to run sftp over stdin and stdout | Chris Wolfe | |
Add -o slave. This option routes the sftp communication over stdin and stdout, bypassing SSH and network. | |||
2012-02-14 | Split fd into separate read and write pipes | Chris Wolfe | |
2012-02-08 | fix unused but set variables | Miklos Szeredi | |
cache.c: In function ‘cache_add_attr’: cache.c:167:9: warning: variable ‘now’ set but not used [-Wunused-but-set-variable] cache.c: In function ‘cache_add_dir’: cache.c:188:9: warning: variable ‘now’ set but not used [-Wunused-but-set-variable] cache.c: In function ‘cache_add_link’: cache.c:212:9: warning: variable ‘now’ set but not used [-Wunused-but-set-variable] | |||
2012-02-08 | Remove some trailing whitespace. | Chris Wolfe | |
Verified with `cat -vet` and `grep '\s$'` | |||
2011-12-21 | skip blank lines | Mike Kelly | |
2011-12-21 | increase portability | Mike Kelly | |
getline() isn't widely available yet, use fgets() instead | |||
2011-12-21 | fix typo in error message | Mike Kelly | |
2011-12-21 | default to erroring if we can't remap a uid/gid | Mike Kelly | |
add a '-o nomap=ignore|error' option, which defaults to 'error' | |||
2011-12-20 | Add -o idmap=file, -o uidmap=FILE, -o gidmap=FILE | Mike 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-20 | Fix a possible small memory leak | Mike Kelly | |
2011-12-20 | Fix typo in error message | Mike Kelly | |
s/FD_CLOESEC/FD_CLOEXEC/ | |||
2011-12-20 | Fix error handling in sshfs_read_end | Miklos Szeredi | |
Reported by Mike Kelly | |||
2011-12-05 | Make chown respect the UID mapping policy | Miklos Szeredi | |
Reported and tested by Vivenzio Pagliari | |||
2011-11-16 | Submit max 32k reads and writes to the sftp server | Miklos 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-14 | Add locking around modifver and connver | Miklos Szeredi | |
2011-11-14 | Fix double free if reconnection races with request sending | Miklos Szeredi | |
Patch by E. Kuemmerle | |||
2011-10-21 | Remove "-oPreferredAuthentications" from ssh options | Miklos Szeredi | |
Remove "-oPreferredAuthentications" from ssh options if the "password_stdin" option is used. Reported by E. Kuemmerle | |||
2011-09-23 | Add "FIXME: really needs LSETSTAT extension (debian Bug#640038)" | Miklos Szeredi | |
2011-08-24 | sshfs: fstat workaround | Percy Jahn | |
Add "-oworkaround=fstat" for SFTP servers which don't support the FSTAT message. | |||
2011-07-01 | Released 2.3sshfs_2_3 | Miklos Szeredi | |
2011-07-01 | Update COPYING | Miklos Szeredi | |
2011-07-01 | Add hard link operation | Miklos Szeredi | |
Works if the server supports the "hardlink@openssh.com" protocol extension. | |||
2011-03-25 | Fix possible deadlock on reconnection | Miklos Szeredi | |
Reported by Florian Zumbiehl | |||
2011-01-25 | Fix 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 that | Miklos Szeredi | |
happen in some circumstances (bugzilla.kernel.org #12864). | |||
2009-07-15 | * Check that the remote path specified refers to the same type of | Miklos 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-15 | tear down mount on connect failure | Miklos Szeredi | |
2009-07-15 | Check mountpoint and fuse options before starting an ssh | Miklos Szeredi | |
session (debian bug #535333). This is only supported if compiled against libfuse-2.6 or later. Reported by Greg Kochanski | |||
2009-07-15 | Add 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-20 | Released 2.2sshfs_2_2 | Miklos Szeredi | |
2008-10-20 | Escape commas in fsname option if libfuse supports it | Miklos Szeredi | |
2008-10-08 | Fix 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-11 | Released 2.1sshfs_2_1 | Miklos Szeredi | |
2008-06-24 | Add '-F' option to specify the ssh config file | Miklos Szeredi | |
2008-05-06 | Fix bug in caching which could cause file corruption for append mode writes | Miklos Szeredi | |
2008-04-25 | man page update from Bartosz | Miklos Szeredi | |
2008-04-23 | Add manual pagesshfs_2_0 | Miklos Szeredi | |
2008-04-23 | Add manual page | Miklos Szeredi | |
2008-04-22 | Released 2.0 | Miklos Szeredi | |
2008-04-22 | Support "statvfs@openssh.com" extension... | Miklos Szeredi | |
2008-04-22 | Limit write requests to 64kB | Miklos Szeredi | |
2008-04-22 | Allow the '-ossh_command=CMD' command to contain parameters... | Miklos Szeredi | |
2008-04-22 | Fix incorrect disk usage reported by 'du' for files of size 4GB or above | Miklos Szeredi | |