An attempt at adding UDP support to aiosocks. Untested due to lack of server support.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

96 lines
3.5 KiB

  1. import asyncio
  2. from .errors import (
  3. SocksError, NoAcceptableAuthMethods, LoginAuthenticationFailed,
  4. SocksConnectionError, InvalidServerReply, InvalidServerVersion
  5. )
  6. from .helpers import (
  7. SocksAddr, Socks4Addr, Socks5Addr, Socks4Auth, Socks5Auth
  8. )
  9. from .protocols import Socks4Protocol, Socks5Protocol, DEFAULT_LIMIT
  10. __version__ = '0.2.2'
  11. __all__ = ('Socks4Protocol', 'Socks5Protocol', 'Socks4Auth',
  12. 'Socks5Auth', 'Socks4Addr', 'Socks5Addr', 'SocksError',
  13. 'NoAcceptableAuthMethods', 'LoginAuthenticationFailed',
  14. 'SocksConnectionError', 'InvalidServerVersion',
  15. 'InvalidServerReply', 'create_connection', 'open_connection')
  16. async def create_connection(protocol_factory, proxy, proxy_auth, dst, *,
  17. remote_resolve=True, loop=None, ssl=None, family=0,
  18. proto=0, flags=0, sock=None, local_addr=None,
  19. server_hostname=None, reader_limit=DEFAULT_LIMIT):
  20. assert isinstance(proxy, SocksAddr), (
  21. 'proxy must be Socks4Addr() or Socks5Addr() tuple'
  22. )
  23. assert proxy_auth is None or isinstance(proxy_auth,
  24. (Socks4Auth, Socks5Auth)), (
  25. 'proxy_auth must be None or Socks4Auth() '
  26. 'or Socks5Auth() tuple', proxy_auth
  27. )
  28. assert isinstance(dst, (tuple, list)) and len(dst) == 2, (
  29. 'invalid dst format, tuple("dst_host", dst_port))'
  30. )
  31. if (isinstance(proxy, Socks4Addr) and not
  32. (proxy_auth is None or isinstance(proxy_auth, Socks4Auth))):
  33. raise ValueError(
  34. "proxy is Socks4Addr but proxy_auth is not Socks4Auth"
  35. )
  36. if (isinstance(proxy, Socks5Addr) and not
  37. (proxy_auth is None or isinstance(proxy_auth, Socks5Auth))):
  38. raise ValueError(
  39. "proxy is Socks5Addr but proxy_auth is not Socks5Auth"
  40. )
  41. if server_hostname is not None and not ssl:
  42. raise ValueError('server_hostname is only meaningful with ssl')
  43. if server_hostname is None and ssl:
  44. # read details: asyncio.create_connection
  45. server_hostname = dst[0]
  46. loop = loop or asyncio.get_event_loop()
  47. waiter = asyncio.Future(loop=loop)
  48. def socks_factory():
  49. if isinstance(proxy, Socks4Addr):
  50. socks_proto = Socks4Protocol
  51. else:
  52. socks_proto = Socks5Protocol
  53. return socks_proto(proxy=proxy, proxy_auth=proxy_auth, dst=dst,
  54. app_protocol_factory=protocol_factory,
  55. waiter=waiter, remote_resolve=remote_resolve,
  56. loop=loop, ssl=ssl, server_hostname=server_hostname,
  57. reader_limit=reader_limit)
  58. try:
  59. transport, protocol = await loop.create_connection(
  60. socks_factory, proxy.host, proxy.port, family=family,
  61. proto=proto, flags=flags, sock=sock, local_addr=local_addr)
  62. except OSError as exc:
  63. raise SocksConnectionError(
  64. '[Errno %s] Can not connect to proxy %s:%d [%s]' %
  65. (exc.errno, proxy.host, proxy.port, exc.strerror)) from exc
  66. try:
  67. await waiter
  68. except:
  69. transport.close()
  70. raise
  71. return protocol.app_transport, protocol.app_protocol
  72. async def open_connection(proxy, proxy_auth, dst, *, remote_resolve=True,
  73. loop=None, limit=DEFAULT_LIMIT, **kwds):
  74. _, protocol = await create_connection(
  75. None, proxy, proxy_auth, dst, reader_limit=limit,
  76. remote_resolve=remote_resolve, loop=loop, **kwds)
  77. return protocol.reader, protocol.writer