connecting to sftp frontend using sshfs fails from linux client #645
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#645
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Strange error, i've tried 3 linux clients, and to specify two commandline variations:
and
boh fail in setting up the mount with errors like:
on the client and tracebacks like this on the server:
2009-02-26 15:37:57+0100 [session (0) on SSHService ssh-connection on SSHServerTransport,0,88.1
49.141.217]SSHChannel GETATTRS . 1
2009-02-26 15:37:57+0100 [session (0) on SSHService ssh-connection on SSHServerTransport,0,88.1
49.141.217]SSHChannel Unhandled Error
Traceback (most recent call last):
File "/home/azazel/wip/tahoe/darcs/tahoe/Twisted-8.2.0-py2.5-linux-i686.egg/twisted/conch/ssh/se
ssion.py", line 105, in dataReceived
self.client.transport.write(data)
File "/home/azazel/wip/tahoe/darcs/tahoe/Twisted-8.2.0-py2.5-linux-i686.egg/twisted/conch/ssh/se
ssion.py", line 156, in write
self.proto.dataReceived(data)
File "/home/azazel/wip/tahoe/darcs/tahoe/Twisted-8.2.0-py2.5-linux-i686.egg/twisted/conch/ssh/fi
letransfer.py", line 53, in dataReceived
f(data)
File "/home/azazel/wip/tahoe/darcs/tahoe/Twisted-8.2.0-py2.5-linux-i686.egg/twisted/conch/ssh/fi
letransfer.py", line 321, in packet_STAT
d = defer.maybeDeferred(self.client.getAttrs, path, followLinks)
--- ---
File "/home/azazel/wip/tahoe/darcs/tahoe/Twisted-8.2.0-py2.5-linux-i686.egg/twisted/internet/def
er.py", line 106, in maybeDeferred
result = f(*args, **kw)
File "/home/azazel/wip/tahoe/lib/python2.5/site-packages/allmydata_tahoe-1.3.0_r3745-py2.5.egg/a
llmydata/frontends/sftpd.py", line 305, in getAttrs
d = self._get_node_and_metadata_for_path(self._convert_sftp_path(path))
File "/home/azazel/wip/tahoe/lib/python2.5/site-packages/allmydata_tahoe-1.3.0_r3745-py2.5.egg/a
llmydata/frontends/sftpd.py", line 317, in _convert_sftp_path
assert pathstring[0] == "/"
exceptions.AssertionError:
The same sshfs command does work when connecting to the allmydata's production sftp service.
I'm sorry for the ugly formatting of my last post, i 've clicked submit instead of preview. Attached there's a patch that fix this bug. I'm not a test expert so if anyone can suggest an idea about how implement a test for this please do it.
Attachment fix-for-bug-645-correct-path-handling-logic-so-that-it-works-from-sshfs.dpatch (22108 bytes) added
Well, I don't think that will hurt anything, so if it makes sshfs connect correctly, I'll apply it.
As for tests, wow, I haven't really thought about that yet. Well, Twisted has an SSH client implementation too (we're using the server code here), so maybe it'd be possible to exercise some of the code that way. These tests would have to be skipped gracefully if conch or pycrypto were unavailable.
Applied, in changeset:3035dfb8ed70ae4b. Thanks!
Path changeset:3035dfb8ed70ae4b causes the contents of the 'root' directory to be displayed in all sub-directories. Example:
I get this behavior in both the sftp command line and sshfs.Reverting the patch seems to fix the it, but breaks sshfs compatability. The problem seems to be with the returning an empty path array when the path == "."
I don't get the same behavior, here is mine:
Please add details of your environment to this ticket, so that i can reproduce it, maybe.
Just to clarify: I get the correct behavior using the 1.3.0 release. I get recursive display of the root directory when I build the trunk with changeset changeset:3035dfb8ed70ae4b.
The original run was on a Ubuntu Hardy LTS server:
To reproduce I repeated on my laptop with OSX 10.5.6 with fresh installs of the 1.3.0 release and the trunk with changeset changeset:3035dfb8ed70ae4b. v1.3.0 works correctly through sftp. The
trunk build has the broken behavior:
Could we test this code without going all the way through the SSH interface, just by invoking the appropriate Python methods of the server? Going through SSH would be fine, too, but we do need tests for this.
I suppose the first step would be to build up a catalog of how ssh clients behave. I wrote the
convert_sftp_path
method empirically, watching what a few clients I had available to me did. With the required inputs defined, then yeah, a non-round-trip test which creates ansftpd.SFTPHandler
instance and invokes methods likeopenFile
would be a good test. (it would still need to be skipped gracefully if conch were not available).Oh, hey, this is a regression from 1.3.0? Should we revert changeset:3035dfb8ed70ae4b before 1.4.0 release?
So my understanding of this issue is that Alberto's patch makes it start working for Alberto's use case but stop working for Ryan's use case, and that there are no unit tests. I'm going to revert this patch for Tahoe-1.4.0 release on the principle that Alberto's use case didn't work in Tahoe-1.3.0 but Ryan's did, and a regression is worse than "it still doesn't work".
The next step should be for someone (Alberto?) to write unit tests.
Moving this ticket to Milestone 1.4.1 and planning to revert the patch within the next 24 hours or so.
azazel: the next step on this would be for you to write a unit test. I would be willing to show you how to do so.
From the patch:
This is clearly wrong, since "." is truthy. It was probably supposed to be
However, I'm confused as to why sshfs worked when the path was always set to [].
Attachment potential-fix-for-sftpd-path-handling-darcspatch.txt (51367 bytes) added
Corrected potential fix for sftpd path handling (ticket #645)
Attachment potential-fix-for-sftpd-path-handling-udiff.txt (960 bytes) added
Corrected potential fix for sftpd path handling (ticket #645) as unified diff
Attachment size-assertions-darcspatch.txt (51226 bytes) added
Assertions for size attribute, to track down the bug described in http://allmydata.org/pipermail/tahoe-dev/2010-February/003831.html
This is intended to be fixed by the new SFTP implementation in #1037.
azazel: please check out the ticket1037 branch using
and try this again.
This bug has essentially been obsoleted by the new SFTP implementation. bj0 has been testing with sshfs on Linux, and josipl with sshfs on OS X; neither have seen the bugs mentioned here.