Kaydet (Commit) 396ff060 authored tarafından Giampaolo Rodolà's avatar Giampaolo Rodolà

Fix issue 8594: adds a source_address parameter to ftplib module.

üst 8a14a0c8
...@@ -40,7 +40,7 @@ Here's a sample session using the :mod:`ftplib` module:: ...@@ -40,7 +40,7 @@ Here's a sample session using the :mod:`ftplib` module::
The module defines the following items: The module defines the following items:
.. class:: FTP(host='', user='', passwd='', acct=''[, timeout]) .. class:: FTP(host='', user='', passwd='', acct='', timeout=None, source_address=None)
Return a new instance of the :class:`FTP` class. When *host* is given, the Return a new instance of the :class:`FTP` class. When *host* is given, the
method call ``connect(host)`` is made. When *user* is given, additionally method call ``connect(host)`` is made. When *user* is given, additionally
...@@ -48,7 +48,8 @@ The module defines the following items: ...@@ -48,7 +48,8 @@ The module defines the following items:
*acct* default to the empty string when not given). The optional *timeout* *acct* default to the empty string when not given). The optional *timeout*
parameter specifies a timeout in seconds for blocking operations like the parameter specifies a timeout in seconds for blocking operations like the
connection attempt (if is not specified, the global default timeout setting connection attempt (if is not specified, the global default timeout setting
will be used). will be used). *source_address* is a 2-tuple ``(host, port)`` for the socket
to bind to as its source address before connecting.
:class:`FTP` class supports the :keyword:`with` statement. Here is a sample :class:`FTP` class supports the :keyword:`with` statement. Here is a sample
on how using it: on how using it:
...@@ -68,8 +69,11 @@ The module defines the following items: ...@@ -68,8 +69,11 @@ The module defines the following items:
.. versionchanged:: 3.2 .. versionchanged:: 3.2
Support for the :keyword:`with` statement was added. Support for the :keyword:`with` statement was added.
.. versionchanged:: 3.3
*source_address* parameter was added.
.. class:: FTP_TLS(host='', user='', passwd='', acct='', [keyfile[, certfile[, context[, timeout]]]])
.. class:: FTP_TLS(host='', user='', passwd='', acct='', keyfile=None, certfile=None, context=None, timeout=None, source_address=None)
A :class:`FTP` subclass which adds TLS support to FTP as described in A :class:`FTP` subclass which adds TLS support to FTP as described in
:rfc:`4217`. :rfc:`4217`.
...@@ -80,10 +84,15 @@ The module defines the following items: ...@@ -80,10 +84,15 @@ The module defines the following items:
private key and certificate chain file name for the SSL connection. private key and certificate chain file name for the SSL connection.
*context* parameter is a :class:`ssl.SSLContext` object which allows *context* parameter is a :class:`ssl.SSLContext` object which allows
bundling SSL configuration options, certificates and private keys into a bundling SSL configuration options, certificates and private keys into a
single (potentially long-lived) structure. single (potentially long-lived) structure. *source_address* is a 2-tuple
``(host, port)`` for the socket to bind to as its source address before
connecting.
.. versionadded:: 3.2 .. versionadded:: 3.2
.. versionchanged:: 3.3
*source_address* parameter was added.
Here's a sample session using the :class:`FTP_TLS` class: Here's a sample session using the :class:`FTP_TLS` class:
>>> from ftplib import FTP_TLS >>> from ftplib import FTP_TLS
...@@ -174,7 +183,7 @@ followed by ``lines`` for the text version or ``binary`` for the binary version. ...@@ -174,7 +183,7 @@ followed by ``lines`` for the text version or ``binary`` for the binary version.
debugging output, logging each line sent and received on the control connection. debugging output, logging each line sent and received on the control connection.
.. method:: FTP.connect(host='', port=0[, timeout]) .. method:: FTP.connect(host='', port=0, timeout=None, source_address=None)
Connect to the given host and port. The default port number is ``21``, as Connect to the given host and port. The default port number is ``21``, as
specified by the FTP protocol specification. It is rarely needed to specify a specified by the FTP protocol specification. It is rarely needed to specify a
...@@ -182,10 +191,14 @@ followed by ``lines`` for the text version or ``binary`` for the binary version. ...@@ -182,10 +191,14 @@ followed by ``lines`` for the text version or ``binary`` for the binary version.
instance; it should not be called at all if a host was given when the instance instance; it should not be called at all if a host was given when the instance
was created. All other methods can only be used after a connection has been was created. All other methods can only be used after a connection has been
made. made.
The optional *timeout* parameter specifies a timeout in seconds for the The optional *timeout* parameter specifies a timeout in seconds for the
connection attempt. If no *timeout* is passed, the global default timeout connection attempt. If no *timeout* is passed, the global default timeout
setting will be used. setting will be used.
*source_address* is a 2-tuple ``(host, port)`` for the socket to bind to as
its source address before connecting.
.. versionchanged:: 3.3
*source_address* parameter was added.
.. method:: FTP.getwelcome() .. method:: FTP.getwelcome()
......
...@@ -107,7 +107,8 @@ class FTP: ...@@ -107,7 +107,8 @@ class FTP:
# Optional arguments are host (for connect()), # Optional arguments are host (for connect()),
# and user, passwd, acct (for login()) # and user, passwd, acct (for login())
def __init__(self, host='', user='', passwd='', acct='', def __init__(self, host='', user='', passwd='', acct='',
timeout=_GLOBAL_DEFAULT_TIMEOUT): timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None):
self.source_address = source_address
self.timeout = timeout self.timeout = timeout
if host: if host:
self.connect(host) self.connect(host)
...@@ -128,10 +129,12 @@ class FTP: ...@@ -128,10 +129,12 @@ class FTP:
if self.sock is not None: if self.sock is not None:
self.close() self.close()
def connect(self, host='', port=0, timeout=-999): def connect(self, host='', port=0, timeout=-999, source_address=None):
'''Connect to host. Arguments are: '''Connect to host. Arguments are:
- host: hostname to connect to (string, default previous host) - host: hostname to connect to (string, default previous host)
- port: port to connect to (integer, default previous port) - port: port to connect to (integer, default previous port)
- source_address: a 2-tuple (host, port) for the socket to bind
to as its source address before connecting.
''' '''
if host != '': if host != '':
self.host = host self.host = host
...@@ -139,7 +142,10 @@ class FTP: ...@@ -139,7 +142,10 @@ class FTP:
self.port = port self.port = port
if timeout != -999: if timeout != -999:
self.timeout = timeout self.timeout = timeout
self.sock = socket.create_connection((self.host, self.port), self.timeout) if source_address is not None:
self.source_address = source_address
self.sock = socket.create_connection((self.host, self.port), self.timeout,
source_address=self.source_address)
self.af = self.sock.family self.af = self.sock.family
self.file = self.sock.makefile('r', encoding=self.encoding) self.file = self.sock.makefile('r', encoding=self.encoding)
self.welcome = self.getresp() self.welcome = self.getresp()
...@@ -334,7 +340,8 @@ class FTP: ...@@ -334,7 +340,8 @@ class FTP:
size = None size = None
if self.passiveserver: if self.passiveserver:
host, port = self.makepasv() host, port = self.makepasv()
conn = socket.create_connection((host, port), self.timeout) conn = socket.create_connection((host, port), self.timeout,
source_address=self.source_address)
if rest is not None: if rest is not None:
self.sendcmd("REST %s" % rest) self.sendcmd("REST %s" % rest)
resp = self.sendcmd(cmd) resp = self.sendcmd(cmd)
...@@ -637,7 +644,7 @@ else: ...@@ -637,7 +644,7 @@ else:
def __init__(self, host='', user='', passwd='', acct='', keyfile=None, def __init__(self, host='', user='', passwd='', acct='', keyfile=None,
certfile=None, context=None, certfile=None, context=None,
timeout=_GLOBAL_DEFAULT_TIMEOUT): timeout=_GLOBAL_DEFAULT_TIMEOUT, source_address=None):
if context is not None and keyfile is not None: if context is not None and keyfile is not None:
raise ValueError("context and keyfile arguments are mutually " raise ValueError("context and keyfile arguments are mutually "
"exclusive") "exclusive")
...@@ -648,7 +655,7 @@ else: ...@@ -648,7 +655,7 @@ else:
self.certfile = certfile self.certfile = certfile
self.context = context self.context = context
self._prot_p = False self._prot_p = False
FTP.__init__(self, host, user, passwd, acct, timeout) FTP.__init__(self, host, user, passwd, acct, timeout, source_address)
def login(self, user='', passwd='', acct='', secure=True): def login(self, user='', passwd='', acct='', secure=True):
if secure and not isinstance(self.sock, ssl.SSLSocket): if secure and not isinstance(self.sock, ssl.SSLSocket):
......
...@@ -608,6 +608,20 @@ class TestFTPClass(TestCase): ...@@ -608,6 +608,20 @@ class TestFTPClass(TestCase):
self.assertEqual(self.server.handler_instance.last_received_cmd, 'quit') self.assertEqual(self.server.handler_instance.last_received_cmd, 'quit')
self.assertFalse(is_client_connected()) self.assertFalse(is_client_connected())
def test_source_address(self):
self.client.quit()
port = support.find_unused_port()
self.client.connect(self.server.host, self.server.port,
source_address=(HOST, port))
self.assertEqual(self.client.sock.getsockname()[1], port)
self.client.quit()
def test_source_address_passive_connection(self):
port = support.find_unused_port()
self.client.source_address = (HOST, port)
sock = self.client.transfercmd('list')
self.assertEqual(sock.getsockname()[1], port)
def test_parse257(self): def test_parse257(self):
self.assertEqual(ftplib.parse257('257 "/foo/bar"'), '/foo/bar') self.assertEqual(ftplib.parse257('257 "/foo/bar"'), '/foo/bar')
self.assertEqual(ftplib.parse257('257 "/foo/bar" created'), '/foo/bar') self.assertEqual(ftplib.parse257('257 "/foo/bar" created'), '/foo/bar')
......
...@@ -35,6 +35,9 @@ Core and Builtins ...@@ -35,6 +35,9 @@ Core and Builtins
Library Library
------- -------
- Issue 8594: ftplib now provides a source_address parameter to specify which
(address, port) to bind to before connecting.
- Issue #11326: Add the missing connect_ex() implementation for SSL sockets, - Issue #11326: Add the missing connect_ex() implementation for SSL sockets,
and make it work for non-blocking connects. and make it work for non-blocking connects.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment