Skip to content

Instantly share code, notes, and snippets.

@radifalco
Created September 24, 2020 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radifalco/5a5cca4bf8d49d5c61113e36f9be7553 to your computer and use it in GitHub Desktop.
Save radifalco/5a5cca4bf8d49d5c61113e36f9be7553 to your computer and use it in GitHub Desktop.
Explore SFTP issues
"""
Uses twisted conch to create an SFTP client that can send files.
"""
import traceback
from sys import stdout
import attr
from attr.converters import optional
from twisted.conch.client.default import SSHUserAuthClient
from twisted.conch.client.direct import SSHClientFactory
from twisted.conch.error import ConchError
from twisted.conch.scripts.cftp import ClientOptions
from twisted.conch.ssh.channel import SSHChannel
from twisted.conch.ssh.common import NS
from twisted.conch.ssh.connection import SSHConnection
from twisted.conch.ssh.filetransfer import FileTransferClient, FXF_WRITE, FXF_CREAT, FXF_TRUNC, SFTPError, \
ClientFile # noqa
from twisted.internet import reactor
from twisted.internet.defer import Deferred, inlineCallbacks, returnValue, succeed, fail, log
from twisted.internet.protocol import connectionDone, BaseProtocol
from twisted.python.log import startLogging, err
"""
Default Chunk Size. The max chunk size is system dependent, this provides a reasonable default
so that the client does not always have to specify a chunk size for file transfer.
"""
CHUNK_SIZE = 8192
@attr.s(frozen=True)
class FileInfo(object):
"""
Class that tells SFTP details about the file to send.
"""
directory = attr.ib(converter=str) # type: str
name = attr.ib(converter=str) # type: str
data = attr.ib() # type: str
chunk_size = attr.ib(converter=int, default=CHUNK_SIZE) # type: int
def to_path(self):
"""
Turns the folder and file name into a file path.
"""
return self.directory + "/" + self.name
@attr.s(frozen=True)
class SFTPClientOptions(object):
"""
Client options for sending SFTP files.
:param host: the host of the SFTP server
:param port: the port ofo the SFTP server
:param fingerprint: the expected fingerprint of the host
:param user: the user to login as
:param identity: the identity file, optional and like the "-i" command line option
:param password: an optional password
"""
host = attr.ib(converter=str) # type: str
port = attr.ib(converter=int) # type: int
fingerprint = attr.ib(converter=str) # type: str
user = attr.ib(converter=str) # type: str
identity = attr.ib(converter=optional(str), default=None) # type: Optional[str]
password = attr.ib(converter=optional(str), default=None) # type: Optional[str]
@inlineCallbacks
def sftp_send(client_options, file_info):
# type: (SFTPClientOptions, FileInfo)->Deferred
"""
Primary function to send an file over SFTP. You can send a password, identity, or both.
:param client_options: the client connection options
:param file_info: contains the file info to write
:return: A deferred that signals "OK" if successful.
"""
sftp_client = yield get_client(client_options=client_options)
result = yield send_file(sftp_client, file_info)
log.info("sftp_send ({result})", result=result)
fileInfo = FileInfo(directory="test-sftp", name="callLater.txt", data="Hello\n")
reactor.callLater(920, send_file, sftp_client, fileInfo)
returnValue("OK")
def connect(host, port, options, verifyHostKey, userAuthObject):
return _ebConnect(None, host, port, options, verifyHostKey,
userAuthObject)
def _ebConnect(f, host, port, options, vhk, uao):
d = _connect(host, port, options, vhk, uao)
d.addErrback(_ebConnect, host, port, options, vhk, uao)
return d
def _connect(host, port, options, verifyHostKey, userAuthObject):
d = Deferred()
factory = MySSHClientFactory(d, options, verifyHostKey, userAuthObject)
reactor.connectTCP(host, port, factory)
return d
class MySSHClientFactory(SSHClientFactory):
def clientConnectionLost(self, connector, reason):
log.info("RECONNECTING: {connector}", connector=connector)
# connector.connect()
pass
@inlineCallbacks
def get_client(client_options):
# type: (SFTPClientOptions)->Deferred
"""
Primary function to send an file over SFTP. You can send a pass word, identity, or both.
:param client_options: the client connection options
:return: A deferred that signals "OK" if successful.
"""
options = ClientOptions()
options["host"] = client_options.host
options["port"] = client_options.port
options["password"] = client_options.password
options["fingerprint"] = client_options.fingerprint
options["reconnect"] = False
if client_options.identity:
options.identitys = [client_options.identity]
conn = SFTPConnection()
auth = SFTPUserAuthClient(client_options.user, options, conn)
yield connect(client_options.host, client_options.port, options, _verify_host_key, auth)
sftpClient = yield conn.getSftpClientDeferred()
log.info("What did we get? {client}", client=repr(sftpClient))
returnValue(sftpClient)
def _verify_host_key(transport, host, pubKey, fingerprint):
"""
Verify a host's key. Based on what is specified in options.
@param host: Due to a bug in L{SSHClientTransport.verifyHostKey}, this is
always the dotted-quad IP address of the host being connected to.
@type host: L{str}
@param transport: the client transport which is attempting to connect to
the given host.
@type transport: L{SSHClientTransport}
@param fingerprint: the fingerprint of the given public key, in
xx:xx:xx:... format.
@param pubKey: The public key of the server being connected to.
@type pubKey: L{str}
@return: a L{Deferred} which is success or error
"""
expected = transport.factory.options.get("fingerprint", "no_fingerprint")
if fingerprint == expected:
return succeed(1)
log.error(
"SSH Host Key fingerprint of ({fp}) does not match the expected value of ({expected}).",
fp=fingerprint, expected=expected)
return fail(ConchError("Host fingerprint is unexpected."))
class SFTPSession(SSHChannel):
"""
Creates an SFTP session.
"""
name = "session"
def __init__(self, localWindow=0, localMaxPacket=0, remoteWindow=0, remoteMaxPacket=0, conn=None, data=None,
avatar=None):
SSHChannel.__init__(self, localWindow, localMaxPacket, remoteWindow, remoteMaxPacket, conn, data, avatar)
self.client = SFTPClient()
@inlineCallbacks
def channelOpen(self, whatever):
"""
Called when the channel is opened. "whatever" is any data that the
other side sent us when opening the channel.
@type whatever: L{bytes}
"""
yield self.conn.sendRequest(self, "subsystem", NS("sftp"), wantReply=True)
self.client.makeConnection(self)
self.dataReceived = self.client.dataReceived
self.conn.notifyClientIsReady(self.client)
def closeReceived(self):
log.info("SFTPSession#closeRecieved")
SSHChannel.closeReceived(self)
def loseConnection(self):
log.info("SFTPSession#loseConnection")
SSHChannel.loseConnection(self)
def closed(self):
self.client.connectionLost()
traceback.print_stack()
SSHChannel.closed(self)
class SFTPClient(FileTransferClient):
def __init__(self, extData={}):
FileTransferClient.__init__(self, extData)
self.healthy = True
def connectionLost(self, reason=connectionDone):
log.info("SFTPClient:connectionLost {connected}", connected=self.connected)
self.healthy = False
self.connected = 0
def makeConnection(self, transport):
log.info("SFTPClient:makeConnection {connected}", connected=self.connected)
self.healthy = True
BaseProtocol.makeConnection(self, transport)
class SFTPConnection(SSHConnection):
def __init__(self):
"""
Adds a deferred here so client can add a callback when the SFTP client is ready.
"""
SSHConnection.__init__(self)
self._sftpClient = Deferred()
self.sftpSession = SFTPSession()
def serviceStarted(self):
"""
Opens an SFTP session when the SSH connection has been started.
"""
self.openChannel(self.sftpSession)
def notifyClientIsReady(self, client):
"""
Trigger callbacks associated with our SFTP client deferred. It's ready!
"""
log.info("Setting SFTP Client Deferred")
if not self._sftpClient.called:
self._sftpClient.callback(client)
def getSftpClientDeferred(self):
log.info("Getting SFTP Client Deferred")
return self._sftpClient
class SFTPUserAuthClient(SSHUserAuthClient):
"""
Twisted Conch doesn't have a way of getting a password. By default it gets it from stdin. This allows it
to be retrieved from options instead.
"""
def getPassword(self, prompt = None):
"""
Get the password from the client options, is specified.
"""
if "password" in self.options:
return succeed(self.options["password"])
return SSHUserAuthClient.getPassword(self, prompt)
@inlineCallbacks
def send_file(client, file_info):
# type: (FileTransferClient, FileInfo) -> Deferred
"""
Creates a directory if required and then creates the file.
:param client: the SFTP client to use
:param file_info: contains file name, directory, and data
"""
try:
log.info("makeDirectory...")
d = yield client.makeDirectory(file_info.directory, {})
log.info("makeDirectory -> ({result})", result=d)
except SFTPError as e:
log.info("SFTPError! ({error})", error=repr(e))
log.error(traceback.format_exc())
# In testing on various system, either a 4 or an 11 will indicate the directory
# already exist. We are fine with that and want to continue if it does. If we misinterpreted
# error code here we are probably still ok since we will just get the more systemic error
# again on the next call to openFile.
if e.code != 4 and e.code != 11:
raise e
except BaseException as e:
log.info("WHOOPS! ({error})", error=repr(e))
log.error(traceback.format_exc())
raise e
log.info("openFile...")
f = yield client.openFile(file_info.to_path(), FXF_WRITE | FXF_CREAT | FXF_TRUNC, {})
try:
yield _write_chunks(f, file_info.data, file_info.chunk_size)
finally:
yield f.close()
@inlineCallbacks
def _write_chunks(f, data, chunk_size):
# type: (ClientFile, str, int) -> Deferred
"""
Convenience function to write data in chunks
:param f: the file to write to
:param data: the data to write
:param chunk_size: the chunk size
"""
for offset in range(0, len(data), chunk_size):
chunk = data[offset: offset + chunk_size]
yield f.writeChunk(offset, chunk)
def main():
startLogging(stdout)
client_opts = SFTPClientOptions(
user="user",
identity="/Users/you/.ssh/id_rsa",
host="host",
port=22,
fingerprint="some_fingerprint")
fileInfo = FileInfo(directory="test-sftp", name="test.txt", data="Hello!\n")
d = sftp_send(client_opts, fileInfo)
d.addErrback(err, "Problem with SFTP transfer")
d.callLater(60 * 30, lambda ignored: reactor.stop())
reactor.run()
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment