1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
|
# Copyright (c) 2013-2024 by Ron Frederick <ronf@timeheart.net> and others.
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License v2.0 which accompanies this
# distribution and is available at:
#
# http://www.eclipse.org/legal/epl-2.0/
#
# This program may also be made available under the following secondary
# licenses when the conditions for such availability set forth in the
# Eclipse Public License v2.0 are satisfied:
#
# GNU General Public License, Version 2.0, or any later versions of
# that license
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
#
# Contributors:
# Ron Frederick - initial implementation, API, and documentation
"""SSH listeners"""
import asyncio
import errno
import socket
from types import TracebackType
from typing import TYPE_CHECKING, AnyStr, Callable, Generic, List, Optional
from typing import Sequence, Set, Tuple, Type, Union
from typing_extensions import Self
from .forward import SSHForwarderCoro
from .forward import SSHLocalPortForwarder, SSHLocalPathForwarder
from .misc import HostPort, MaybeAwait
from .session import SSHTCPSession, SSHUNIXSession
from .socks import SSHSOCKSForwarder
if TYPE_CHECKING:
# pylint: disable=cyclic-import
from .channel import SSHTCPChannel, SSHUNIXChannel
from .connection import SSHConnection, SSHClientConnection
_LocalListenerFactory = Callable[[], asyncio.BaseProtocol]
ListenKey = Union[HostPort, str]
TCPListenerFactory = Callable[[str, int], MaybeAwait[SSHTCPSession[AnyStr]]]
UNIXListenerFactory = Callable[[], MaybeAwait[SSHUNIXSession[AnyStr]]]
class SSHListener:
"""SSH listener for inbound connections"""
def __init__(self) -> None:
self._tunnel: Optional['SSHConnection'] = None
async def __aenter__(self) -> Self:
return self
async def __aexit__(self, _exc_type: Optional[Type[BaseException]],
_exc_value: Optional[BaseException],
_traceback: Optional[TracebackType]) -> bool:
self.close()
await self.wait_closed()
return False
def get_port(self) -> int:
"""Return the port number being listened on
This method returns the port number that the remote listener
was bound to. When the requested remote listening port is `0`
to indicate a dynamic port, this method can be called to
determine what listening port was selected. This function
only applies to TCP listeners.
:returns: The port number being listened on
"""
# pylint: disable=no-self-use
return 0
def set_tunnel(self, tunnel: 'SSHConnection') -> None:
"""Set tunnel associated with listener"""
self._tunnel = tunnel
def close(self) -> None:
"""Stop listening for new connections
This method can be called to stop listening for connections.
Existing connections will remain open.
"""
if self._tunnel:
self._tunnel.close()
async def wait_closed(self) -> None:
"""Wait for the listener to close
This method is a coroutine which waits for the associated
listeners to be closed.
"""
if self._tunnel:
await self._tunnel.wait_closed()
self._tunnel = None
class SSHClientListener(SSHListener):
"""Client listener used to accept inbound forwarded connections"""
def __init__(self, conn: 'SSHClientConnection', encoding: Optional[str],
errors: str, window: int, max_pktsize: int):
super().__init__()
self._conn: Optional['SSHClientConnection'] = conn
self._encoding = encoding
self._errors = errors
self._window = window
self._max_pktsize = max_pktsize
self._close_event = asyncio.Event()
async def _close(self) -> None:
"""Close this listener"""
self._close_event.set()
self._conn = None
def close(self) -> None:
"""Close this listener asynchronously"""
super().close()
if self._conn:
self._conn.create_task(self._close())
async def wait_closed(self) -> None:
"""Wait for this listener to finish closing"""
await super().wait_closed()
await self._close_event.wait()
class SSHTCPClientListener(SSHClientListener, Generic[AnyStr]):
"""Client listener used to accept inbound forwarded TCP connections"""
def __init__(self, conn: 'SSHClientConnection',
session_factory: TCPListenerFactory[AnyStr],
listen_host: str, listen_port: int,
encoding: Optional[str], errors: str,
window: int, max_pktsize: int):
super().__init__(conn, encoding, errors, window, max_pktsize)
self._session_factory: TCPListenerFactory[AnyStr] = session_factory
self._listen_host = listen_host
self._listen_port = listen_port
async def _close(self) -> None:
"""Close this listener"""
if self._conn: # pragma: no branch
await self._conn.close_client_tcp_listener(self._listen_host,
self._listen_port)
await super()._close()
def process_connection(self, orig_host: str, orig_port: int) -> \
Tuple['SSHTCPChannel[AnyStr]',
MaybeAwait[SSHTCPSession[AnyStr]]]:
"""Process a forwarded TCP connection"""
assert self._conn is not None
chan = self._conn.create_tcp_channel(self._encoding, self._errors,
self._window, self._max_pktsize)
chan.set_inbound_peer_names(self._listen_host, self._listen_port,
orig_host, orig_port)
return chan, self._session_factory(orig_host, orig_port)
def get_addresses(self) -> List[Tuple]:
"""Return the socket addresses being listened on"""
return [(self._listen_host, self._listen_port)]
def get_port(self) -> int:
"""Return the port number being listened on"""
return self._listen_port
class SSHUNIXClientListener(SSHClientListener, Generic[AnyStr]):
"""Client listener used to accept inbound forwarded UNIX connections"""
def __init__(self, conn: 'SSHClientConnection',
session_factory: UNIXListenerFactory[AnyStr],
listen_path: str, encoding: Optional[str],
errors: str, window: int, max_pktsize: int):
super().__init__(conn, encoding, errors, window, max_pktsize)
self._session_factory: UNIXListenerFactory[AnyStr] = session_factory
self._listen_path = listen_path
async def _close(self) -> None:
"""Close this listener"""
if self._conn: # pragma: no branch
await self._conn.close_client_unix_listener(self._listen_path)
await super()._close()
def process_connection(self) -> \
Tuple['SSHUNIXChannel[AnyStr]',
MaybeAwait[SSHUNIXSession[AnyStr]]]:
"""Process a forwarded UNIX connection"""
assert self._conn is not None
chan = self._conn.create_unix_channel(self._encoding, self._errors,
self._window, self._max_pktsize)
chan.set_inbound_peer_names(self._listen_path)
return chan, self._session_factory()
class SSHForwardListener(SSHListener):
"""A listener used when forwarding traffic from local ports"""
def __init__(self, conn: 'SSHConnection',
servers: Sequence[asyncio.AbstractServer],
listen_key: ListenKey, listen_port: int = 0):
super().__init__()
self._conn: Optional['SSHConnection'] = conn
self._servers = servers
self._listen_key = listen_key
self._listen_port = listen_port
def get_port(self) -> int:
"""Return the port number being listened on"""
return self._listen_port
def close(self) -> None:
"""Close this listener"""
if self._conn: # pragma: no branch
self._conn.close_forward_listener(self._listen_key)
for server in self._servers:
server.close()
self._conn = None
async def wait_closed(self) -> None:
"""Wait for this listener to finish closing"""
await super().wait_closed()
for server in self._servers:
await server.wait_closed()
self._servers = []
async def create_tcp_local_listener(
conn: 'SSHConnection', loop: asyncio.AbstractEventLoop,
protocol_factory: _LocalListenerFactory, listen_host: str,
listen_port: int) -> 'SSHForwardListener':
"""Create a listener to forward traffic from a local TCP port over SSH"""
addrinfo = await loop.getaddrinfo(listen_host or None, listen_port,
family=socket.AF_UNSPEC,
type=socket.SOCK_STREAM,
flags=socket.AI_PASSIVE)
if not addrinfo: # pragma: no cover
raise OSError('getaddrinfo() returned empty list')
seen_addrinfo: Set[Tuple] = set()
servers: List[asyncio.AbstractServer] = []
for addrinfo_entry in addrinfo:
# Work around an issue where getaddrinfo() on some systems may
# return duplicate results, causing bind to fail.
if addrinfo_entry in seen_addrinfo: # pragma: no cover
continue
seen_addrinfo.add(addrinfo_entry)
family, socktype, proto, _, sa = addrinfo_entry
try:
sock = socket.socket(family, socktype, proto)
except OSError: # pragma: no cover
continue
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, True)
if family == socket.AF_INET6:
try:
sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, True)
except AttributeError: # pragma: no cover
pass
if sa[1] == 0:
sa = sa[:1] + (listen_port,) + sa[2:] # type: ignore
try:
sock.bind(sa)
except (OSError, OverflowError) as exc:
sock.close()
for server in servers:
server.close()
if isinstance(exc, OverflowError): # pragma: no cover
exc.errno = errno.EOVERFLOW # type: ignore
exc.strerror = str(exc) # type: ignore
# pylint: disable=no-member
raise OSError(exc.errno, f'error while attempting ' # type: ignore
f'to bind on address {sa!r}: '
f'{exc.strerror}') from None # type: ignore
if listen_port == 0:
listen_port = sock.getsockname()[1]
conn.logger.debug1('Assigning dynamic port %d', listen_port)
server = await loop.create_server(protocol_factory, sock=sock)
servers.append(server)
listen_key = listen_host or '', listen_port
return SSHForwardListener(conn, servers, listen_key, listen_port)
async def create_tcp_forward_listener(conn: 'SSHConnection',
loop: asyncio.AbstractEventLoop,
coro: SSHForwarderCoro, listen_host: str,
listen_port: int) -> \
'SSHForwardListener':
"""Create a listener to forward traffic from a local TCP port over SSH"""
def protocol_factory() -> asyncio.BaseProtocol:
"""Start a port forwarder for each new local connection"""
return SSHLocalPortForwarder(conn, coro)
return await create_tcp_local_listener(conn, loop, protocol_factory,
listen_host, listen_port)
async def create_unix_forward_listener(conn: 'SSHConnection',
loop: asyncio.AbstractEventLoop,
coro: SSHForwarderCoro,
listen_path: str) -> \
'SSHForwardListener':
"""Create a listener to forward a local UNIX domain socket over SSH"""
def protocol_factory() -> asyncio.BaseProtocol:
"""Start a path forwarder for each new local connection"""
return SSHLocalPathForwarder(conn, coro)
server = await loop.create_unix_server(protocol_factory, listen_path)
return SSHForwardListener(conn, [server], listen_path)
async def create_socks_listener(conn: 'SSHConnection',
loop: asyncio.AbstractEventLoop,
coro: SSHForwarderCoro, listen_host: str,
listen_port: int) -> SSHForwardListener:
"""Create a SOCKS listener to forward traffic over SSH"""
def protocol_factory() -> asyncio.BaseProtocol:
"""Start a port forwarder for each new SOCKS connection"""
return SSHSOCKSForwarder(conn, coro)
return await create_tcp_local_listener(conn, loop, protocol_factory,
listen_host, listen_port)
|