2010-12-12 00:46:32 +00:00
|
|
|
=================================
|
|
|
|
Tahoe-LAFS FTP and SFTP Frontends
|
|
|
|
=================================
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
1. `FTP/SFTP Background`_
|
|
|
|
2. `Tahoe-LAFS Support`_
|
|
|
|
3. `Creating an Account File`_
|
|
|
|
4. `Configuring FTP Access`_
|
|
|
|
5. `Configuring SFTP Access`_
|
|
|
|
6. `Dependencies`_
|
|
|
|
7. `Immutable and mutable files`_
|
|
|
|
8. `Known Issues`_
|
2010-06-03 05:44:58 +00:00
|
|
|
|
2010-04-24 12:13:34 +00:00
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
FTP/SFTP Background
|
|
|
|
===================
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
FTP is the venerable internet file-transfer protocol, first developed in
|
|
|
|
1971. The FTP server usually listens on port 21. A separate connection is
|
|
|
|
used for the actual data transfers, either in the same direction as the
|
|
|
|
initial client-to-server connection (for PORT mode), or in the reverse
|
|
|
|
direction (for PASV) mode. Connections are unencrypted, so passwords, file
|
|
|
|
names, and file contents are visible to eavesdroppers.
|
|
|
|
|
|
|
|
SFTP is the modern replacement, developed as part of the SSH "secure shell"
|
|
|
|
protocol, and runs as a subchannel of the regular SSH connection. The SSH
|
|
|
|
server usually listens on port 22. All connections are encrypted.
|
|
|
|
|
|
|
|
Both FTP and SFTP were developed assuming a UNIX-like server, with accounts
|
|
|
|
and passwords, octal file modes (user/group/other, read/write/execute), and
|
|
|
|
ctime/mtime timestamps.
|
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Tahoe-LAFS Support
|
|
|
|
==================
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-09-19 01:16:36 +00:00
|
|
|
All Tahoe-LAFS client nodes can run a frontend FTP server, allowing regular FTP
|
2008-11-06 02:25:58 +00:00
|
|
|
clients (like /usr/bin/ftp, ncftp, and countless others) to access the
|
|
|
|
virtual filesystem. They can also run an SFTP server, so SFTP clients (like
|
|
|
|
/usr/bin/sftp, the sshfs FUSE plugin, and others) can too. These frontends
|
2010-12-27 05:05:33 +00:00
|
|
|
sit at the same level as the web-API interface.
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-09-19 01:16:36 +00:00
|
|
|
Since Tahoe-LAFS does not use user accounts or passwords, the FTP/SFTP servers
|
2008-11-06 02:25:58 +00:00
|
|
|
must be configured with a way to first authenticate a user (confirm that a
|
|
|
|
prospective client has a legitimate claim to whatever authorities we might
|
|
|
|
grant a particular user), and second to decide what root directory cap should
|
2010-06-19 00:17:38 +00:00
|
|
|
be granted to the authenticated username. A username and password is used
|
|
|
|
for this purpose. (The SFTP protocol is also capable of using client
|
|
|
|
RSA or DSA public keys, but this is not currently implemented.)
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-09-19 01:16:36 +00:00
|
|
|
Tahoe-LAFS provides two mechanisms to perform this user-to-rootcap mapping. The
|
2008-11-06 02:25:58 +00:00
|
|
|
first is a simple flat file with one account per line. The second is an
|
|
|
|
HTTP-based login mechanism, backed by simple PHP script and a database. The
|
|
|
|
latter form is used by allmydata.com to provide secure access to customer
|
|
|
|
rootcaps.
|
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Creating an Account File
|
|
|
|
========================
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
To use the first form, create a file (probably in
|
|
|
|
BASEDIR/private/ftp.accounts) in which each non-comment/non-blank line is a
|
2010-12-12 00:46:32 +00:00
|
|
|
space-separated line of (USERNAME, PASSWORD, ROOTCAP), like so::
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
% cat BASEDIR/private/ftp.accounts
|
|
|
|
# This is a password line, (username, password, rootcap)
|
|
|
|
alice password URI:DIR2:ioej8xmzrwilg772gzj4fhdg7a:wtiizszzz2rgmczv4wl6bqvbv33ag4kvbr6prz3u6w3geixa6m6a
|
|
|
|
bob sekrit URI:DIR2:6bdmeitystckbl9yqlw7g56f4e:serp5ioqxnh34mlbmzwvkp3odehsyrr7eytt5f64we3k9hhcrcja
|
|
|
|
|
2010-09-19 01:16:36 +00:00
|
|
|
Future versions of Tahoe-LAFS may support using client public keys for SFTP.
|
2010-06-19 00:17:38 +00:00
|
|
|
The words "ssh-rsa" and "ssh-dsa" after the username are reserved to specify
|
|
|
|
the public key format, so users cannot have a password equal to either of
|
|
|
|
these strings.
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-06-19 00:17:38 +00:00
|
|
|
Now add an 'accounts.file' directive to your tahoe.cfg file, as described
|
2008-11-06 02:25:58 +00:00
|
|
|
in the next sections.
|
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Configuring FTP Access
|
|
|
|
======================
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
To enable the FTP server with an accounts file, add the following lines to
|
2010-12-12 00:46:32 +00:00
|
|
|
the BASEDIR/tahoe.cfg file::
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
[ftpd]
|
|
|
|
enabled = true
|
2010-08-13 14:08:53 +00:00
|
|
|
port = tcp:8021:interface=127.0.0.1
|
2008-11-06 02:25:58 +00:00
|
|
|
accounts.file = private/ftp.accounts
|
|
|
|
|
2010-08-13 14:08:53 +00:00
|
|
|
The FTP server will listen on the given port number and on the loopback
|
|
|
|
interface only. The "accounts.file" pathname will be interpreted
|
|
|
|
relative to the node's BASEDIR.
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
To enable the FTP server with an account server instead, provide the URL of
|
2010-12-12 00:46:32 +00:00
|
|
|
that server in an "accounts.url" directive::
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
[ftpd]
|
|
|
|
enabled = true
|
2010-08-13 14:08:53 +00:00
|
|
|
port = tcp:8021:interface=127.0.0.1
|
2008-11-06 02:25:58 +00:00
|
|
|
accounts.url = https://example.com/login
|
|
|
|
|
|
|
|
You can provide both accounts.file and accounts.url, although it probably
|
|
|
|
isn't very useful except for testing.
|
|
|
|
|
2010-09-10 19:32:34 +00:00
|
|
|
FTP provides no security, and so your password or caps could be eavesdropped
|
|
|
|
if you connect to the FTP server remotely. The examples above include
|
|
|
|
":interface=127.0.0.1" in the "port" option, which causes the server to only
|
|
|
|
accept connections from localhost.
|
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Configuring SFTP Access
|
|
|
|
=======================
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-09-19 01:16:36 +00:00
|
|
|
The Tahoe-LAFS SFTP server requires a host keypair, just like the regular SSH
|
2008-11-06 02:25:58 +00:00
|
|
|
server. It is important to give each server a distinct keypair, to prevent
|
|
|
|
one server from masquerading as different one. The first time a client
|
|
|
|
program talks to a given server, it will store the host key it receives, and
|
|
|
|
will complain if a subsequent connection uses a different key. This reduces
|
|
|
|
the opportunity for man-in-the-middle attacks to just the first connection.
|
|
|
|
|
2010-09-10 19:32:34 +00:00
|
|
|
Exercise caution when connecting to the SFTP server remotely. The AES
|
|
|
|
implementation used by the SFTP code does not have defenses against timing
|
|
|
|
attacks. The code for encrypting the SFTP connection was not written by the
|
|
|
|
Tahoe-LAFS team, and we have not reviewed it as carefully as we have reviewed
|
|
|
|
the code for encrypting files and directories in Tahoe-LAFS itself. If you
|
|
|
|
can connect to the SFTP server (which is provided by the Tahoe-LAFS gateway)
|
|
|
|
only from a client on the same host, then you would be safe from any problem
|
|
|
|
with the SFTP connection security. The examples given below enforce this
|
|
|
|
policy by including ":interface=127.0.0.1" in the "port" option, which
|
|
|
|
causes the server to only accept connections from localhost.
|
|
|
|
|
2008-11-06 02:25:58 +00:00
|
|
|
You will use directives in the tahoe.cfg file to tell the SFTP code where to
|
2010-12-12 00:46:32 +00:00
|
|
|
find these keys. To create one, use the ``ssh-keygen`` tool (which comes with
|
|
|
|
the standard openssh client distribution)::
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
% cd BASEDIR
|
|
|
|
% ssh-keygen -f private/ssh_host_rsa_key
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-06-19 00:17:38 +00:00
|
|
|
The server private key file must not have a passphrase.
|
|
|
|
|
2008-11-06 02:25:58 +00:00
|
|
|
Then, to enable the SFTP server with an accounts file, add the following
|
2010-12-12 00:46:32 +00:00
|
|
|
lines to the BASEDIR/tahoe.cfg file::
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
[sftpd]
|
|
|
|
enabled = true
|
2010-09-10 19:32:34 +00:00
|
|
|
port = tcp:8022:interface=127.0.0.1
|
2008-11-06 02:25:58 +00:00
|
|
|
host_pubkey_file = private/ssh_host_rsa_key.pub
|
|
|
|
host_privkey_file = private/ssh_host_rsa_key
|
|
|
|
accounts.file = private/ftp.accounts
|
|
|
|
|
2010-08-13 14:08:53 +00:00
|
|
|
The SFTP server will listen on the given port number and on the loopback
|
|
|
|
interface only. The "accounts.file" pathname will be interpreted
|
|
|
|
relative to the node's BASEDIR.
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Or, to use an account server instead, do this::
|
2008-11-06 02:25:58 +00:00
|
|
|
|
|
|
|
[sftpd]
|
|
|
|
enabled = true
|
2010-08-13 14:08:53 +00:00
|
|
|
port = tcp:8022:interface=127.0.0.1
|
2008-11-06 02:25:58 +00:00
|
|
|
host_pubkey_file = private/ssh_host_rsa_key.pub
|
|
|
|
host_privkey_file = private/ssh_host_rsa_key
|
|
|
|
accounts.url = https://example.com/login
|
|
|
|
|
|
|
|
You can provide both accounts.file and accounts.url, although it probably
|
|
|
|
isn't very useful except for testing.
|
|
|
|
|
2010-06-01 05:11:39 +00:00
|
|
|
For further information on SFTP compatibility and known issues with various
|
|
|
|
clients and with the sshfs filesystem, see
|
2011-01-08 06:10:38 +00:00
|
|
|
`<http://tahoe-lafs.org/trac/tahoe-lafs/wiki/SftpFrontend>`_.
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Dependencies
|
|
|
|
============
|
2008-11-06 02:25:58 +00:00
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
The Tahoe-LAFS SFTP server requires the Twisted "Conch" component (a "conch" is
|
|
|
|
a twisted shell, get it?). Many Linux distributions package the Conch code
|
2008-11-06 02:25:58 +00:00
|
|
|
separately: debian puts it in the "python-twisted-conch" package. Conch
|
|
|
|
requires the "pycrypto" package, which is a Python+C implementation of many
|
|
|
|
cryptographic functions (the debian package is named "python-crypto").
|
|
|
|
|
2010-09-19 01:16:36 +00:00
|
|
|
Note that "pycrypto" is different than the "pycryptopp" package that Tahoe-LAFS
|
2008-11-06 02:25:58 +00:00
|
|
|
uses (which is a Python wrapper around the C++ -based Crypto++ library, a
|
|
|
|
library that is frequently installed as /usr/lib/libcryptopp.a, to avoid
|
|
|
|
problems with non-alphanumerics in filenames).
|
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Immutable and Mutable Files
|
|
|
|
===========================
|
2010-06-01 05:11:39 +00:00
|
|
|
|
|
|
|
All files created via SFTP (and FTP) are immutable files. However, files
|
|
|
|
can only be created in writeable directories, which allows the directory
|
|
|
|
entry to be relinked to a different file. Normally, when the path of an
|
|
|
|
immutable file is opened for writing by SFTP, the directory entry is
|
|
|
|
relinked to another file with the newly written contents when the file
|
|
|
|
handle is closed. The old file is still present on the grid, and any other
|
2010-12-12 05:14:59 +00:00
|
|
|
caps to it will remain valid. (See `docs/garbage-collection.rst
|
|
|
|
<../garbage-collection.rst>`_ for how to reclaim the space used by files
|
|
|
|
that are no longer needed.)
|
2010-06-01 05:11:39 +00:00
|
|
|
|
|
|
|
The 'no-write' metadata field of a directory entry can override this
|
2010-06-07 06:16:00 +00:00
|
|
|
behaviour. If the 'no-write' field holds a true value, then a permission
|
|
|
|
error will occur when trying to write to the file, even if it is in a
|
|
|
|
writeable directory. This does not prevent the directory entry from being
|
|
|
|
unlinked or replaced.
|
2010-06-01 05:11:39 +00:00
|
|
|
|
|
|
|
When using sshfs, the 'no-write' field can be set by clearing the 'w'
|
|
|
|
bits in the Unix permissions, for example using the command
|
|
|
|
'chmod 444 path/to/file'. Note that this does not mean that arbitrary
|
|
|
|
combinations of Unix permissions are supported. If the 'w' bits are
|
|
|
|
cleared on a link to a mutable file or directory, that link will become
|
|
|
|
read-only.
|
|
|
|
|
|
|
|
If SFTP is used to write to an existing mutable file, it will publish a
|
|
|
|
new version when the file handle is closed.
|
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Known Issues
|
|
|
|
============
|
2010-06-19 00:43:11 +00:00
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Mutable files are not supported by the FTP frontend (`ticket #680
|
|
|
|
<http://tahoe-lafs.org/trac/tahoe-lafs/ticket/680>`_). Currently, a directory
|
|
|
|
containing mutable files cannot even be listed over FTP.
|
2010-06-19 00:43:11 +00:00
|
|
|
|
|
|
|
The FTP frontend sometimes fails to report errors, for example if an upload
|
2010-12-12 00:46:32 +00:00
|
|
|
fails because it does meet the "servers of happiness" threshold (`ticket #1081
|
2011-01-08 06:10:38 +00:00
|
|
|
<http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1081>`_). Upload errors also
|
|
|
|
may not be reported when writing files using SFTP via sshfs (`ticket #1059
|
2010-12-12 00:46:32 +00:00
|
|
|
<http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1059>`_).
|
2010-06-19 00:43:11 +00:00
|
|
|
|
2010-12-12 00:46:32 +00:00
|
|
|
Non-ASCII filenames are not supported by FTP (`ticket #682
|
|
|
|
<http://tahoe-lafs.org/trac/tahoe-lafs/ticket/682>`_). They can be used
|
|
|
|
with SFTP only if the client encodes filenames as UTF-8 (`ticket #1089
|
|
|
|
<http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1089>`_).
|
2010-06-19 00:43:11 +00:00
|
|
|
|
2011-01-08 06:10:38 +00:00
|
|
|
The gateway node may hang or consume 100% CPU if the client tries to rekey.
|
2011-04-28 05:52:32 +00:00
|
|
|
(`ticket #1297 <http://tahoe-lafs.org/trac/tahoe-lafs/ticket/1297>`_).
|
2011-01-08 06:10:38 +00:00
|
|
|
This is due to `a bug in Twisted <http://twistedmatrix.com/trac/ticket/4395>`_
|
2011-04-28 05:52:32 +00:00
|
|
|
which was fixed in Twisted 11.0 (released 3-April-2011).
|
2010-06-19 00:43:11 +00:00
|
|
|
|
2011-01-08 06:10:38 +00:00
|
|
|
For options to disable rekeying in various clients in order to work around
|
|
|
|
this issue, and for other known issues in SFTP, see
|
|
|
|
`<http://tahoe-lafs.org/trac/tahoe-lafs/wiki/SftpFrontend>`_.
|