aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-30sshfs.1.in: remove duplicate "slave" option descriptionBerserker
2016-07-28Merge pull request #27 from benesch/masterNikolaus Rath
Remove call to g_slice_set_config()
2016-07-28Remove call to g_slice_set_config()Benjamin Fleischer
It is unclear why G_SLICE_CONFIG_ALWAYS_MALLOC has been set before but doing so with the latest version of GLib (2.46.2) results in the following warning: GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed This fixes issue osxfuse/sshfs#17
2016-07-01Merge pull request #24 from kuscsik/masterNikolaus Rath
Makefile: fix path for sshfs.1
2016-07-01Makefile: fix path for sshfs.1Zoltan Kuscsik
Fix source path when build directory differs from the source dir.
2016-06-23Merge pull request #20 from rianhunter/masterNikolaus Rath
Require paths for truncate/fstat workarounds
2016-06-22Released 2.8sshfs_2.8Nikolaus Rath
2016-06-22Fixed release year of version 2.7Nikolaus Rath
2016-06-06Require paths for truncate/fstat workaroundsRian Hunter
Commit 74bfa3850a2568f96dd1d090a9386534c9bb4629 allowed sshfs to run without requiring a non-NULL path argument for certain operations. This was erroneous in the case of using certain workarounds.
2016-06-05Add extra quoting for increased compatibility.Nikolaus Rath
Fixes: #15.
2016-06-05Merge branch 'rianhunter-master'Nikolaus Rath
2016-06-05Added ChangeLog entry for fsync extensionNikolaus Rath
2016-06-01Support the lack of paths when cache is offRian Hunter
Before FUSE 2.9, FUSE had to emulate unlink() if a file was still open via renaming to a hidden file. This was due to the requirement that a valid "path" argument must be submitted for many FUSE operations. FUSE 2.9 introduced the flag_nullpath_ok and flag_nopath flags that allow a FUSE file system to signal to FUSE that the "path" argument may be NULL in certain operations. sshfs doesn't require paths if the cache isn't used so communicate that information to the FUSE layer.
2016-06-01Implement support for "fsync@openssh.com"Rian Hunter
OpenSSH implements fsync() via the extension "fsync@openssh.com". This change uses that extension when receiving a FUSE fsync request.
2016-03-01Released 2.7sshfs-2.7Nikolaus Rath
2016-02-25Merge pull request #8 from gapan/masterNikolaus Rath
Restore FAQ file
2016-02-25Restore FAQ fileGeorge Vlahavas
This commit restores the FAQ file present in sshfs versions up to 2.5. Changes since the version in the 2.5 release: - Remove most wiki markup - Edit question about bug reports to point to the Github issue tracker - Remove unanswered questions - Minor formatting
2016-02-16Merge pull request #6 from jmmv/cache-optionsNikolaus Rath
Make cache parameters configurable
2016-02-10Explicitly qualify unsigned as unsigned intJulio Merino
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-10Qualify timeout identifiers with their unitJulio Merino
All timeouts are in seconds, so add a suffix to the identifier names to clearly denote the unit.
2016-02-10Merge pull request #5 from jmmv/merge-osxfuseNikolaus Rath
Merge osxfuse.
2016-02-08Improve the sshnodelay hack after osxfuse's mergeJulio Merino
Document the strage-looking symbol interposition that is necessary for the OS X case. While doing this, homogenize the code to do the real connect call for both the Linux and OS X cases into a helper function. This logic is generic and should not be replicated into various OS-specific cases.
2016-02-08Unconditionally mlock the password in memoryJulio Merino
Revision b4023a19 added an mlock call to ensure the sshfs password is kept in memory, but did so only for OS X. This is a good idea in general, so let's remove the condition.
2016-02-08Remove apparently-unnecessary lockJulio Merino
Revision b4023a19dd7ec7a099d2e0df491547cf3bb6bec3, which imported the MacFUSE-specific sshfs fixes into osxfuse-sshfs, added a lock to handle the refs reference counter of the sshfs_file structure. However, this lock was only added for OS X, which is a very strange thing to do. One may think that this was only because MacFUSE 2.2 had some semantics that differed from regular FUSE, and that would have been quite stupid for compatibility reasons. A few simple tests show no issues after removing this lock, so let's keep it out for now. If things break, we know what to look at.
2016-02-08Avoid using cpp for sshfs.1 generationJulio Merino
Move the logic to determine which values to stick into the manual page to the configure script and replace the logic to build the sshfs.1 manual page with sed instead of abusing cpp. I'm not using AC_OUTPUT here because this macro is typically used to generate support build files. Final artifacts of the build should, in general, be built by the Makefile itself.
2016-02-08Fix path to compat in -I flagJulio Merino
When defining a -I flag to point into the source directory, we should prefix the directory with ${srcdir} so that it can be found when the build is configured to use a build directory that differs from the source directory. This fixes "make distcheck".
2016-02-08Document merge of osxfuse's sshfsJulio Merino
2016-02-08Sync AUTHORS list after osxfuse-sshfs's mergeJulio Merino
2016-02-08Remove LIBDIR explicit definitionJulio Merino
Makefile.am always sets LIBDIR in CPPFLAGS. There is no need for sshfs.c to redefine it to a bogus value when not present, and much less to only do so for the Darwin case only.
2016-02-08Drop the cache_enabled hackJulio Merino
cache_enabled leaked the cache.on setting from the cache module abstraction back into sshfs, and it only did so for the Darwin case. This hack was being used to avoid calling cache_add_attr and cache_invalidate when the cache was disabled... but these two functions already do nothing when in that case: there is no need to do a second check in the caller.
2016-02-08Drop OSXFUSE_SSHFS_VERSIONJulio Merino
Now that we are unifying osxfuse's sshfs into libfuse's version, there should not be two different version identifiers. Drop osxfuse's one.
2016-02-08Improve sshfs.1 manpage generationJulio Merino
* Fix dependencies of the sshfs.1 target to actually specify sshfs.1.in as a source. * Ensure that failures during the generation of sshfs.1 do not result in a potentially bogus manpage by first outputting the contents to a temporary file unknown to the Makefile rule and then replacing the target file once all is known to be OK. * Use $(AM_V_GEN) in the command to respect automake's silent rules.
2016-02-08Rename arch to osnameJulio Merino
Operating system names are not architectures; therefore, rename the arch variable to osname to better represent its contents. While doing this, drop a bunch of unused values from the osname.
2016-02-08Merge remote-tracking branch 'osxfuse/master' into merge-osxfuseJulio Merino
Pull in all changes from osxfuse's fork of sshfs into libfuse's sshfs. There need not be two different copies of this codebase, particularly because libfuse's version is already autoconf-ified and can support multiple platforms. The merge is mostly clean with just a few manual edits to resolve conflicts.
2016-02-05Merge pull request #4 from gala132/patch-1Nikolaus Rath
Fix typo in README.md
2016-02-05Update README.mdgala
Typo fixed
2016-01-28Released 2.6sshfs_2_6Nikolaus Rath
2016-01-28Rename project from sshfs-fuse to sshfsNikolaus Rath
2016-01-28Don't attempt to download FAQ for tarball generation.Nikolaus Rath
2016-01-28Added missing ChangeLog entries for 2.4 and 2.5Nikolaus Rath
2016-01-28Enable subdir-objects automake optionNikolaus Rath
This is recommended for forward-compatibility.
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).
2016-01-28Removed placeholder README file and switch automake to foreign flavor.Nikolaus Rath
The GNU flavor merely requires to existence of some files (including README, but we prefer README.md), so there seems to be little point in using it.
2016-01-28Updated credits from git.Nikolaus Rath
2015-12-21Renamed README to README.md for Markdown rendering on Github.Nikolaus Rath
Remaining README file is just to make automake happy.
2015-04-14sshfs: Increase the maximum length of the passwordMiklos Szeredi
read from stdin to 1024 characters. Reported by: Mario A. Valdez-Ramirez.
2015-03-16Fix englishQais Patankar
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