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 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
|
# Copyright (c) 2016-2022 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
"""Unit tests for AsyncSSH forwarding API"""
import asyncio
import codecs
import os
import socket
import sys
import unittest
from unittest.mock import patch
import asyncssh
from asyncssh.misc import maybe_wait_closed, write_file
from asyncssh.packet import String, UInt32
from asyncssh.public_key import CERT_TYPE_USER
from asyncssh.socks import SOCKS5, SOCKS5_AUTH_NONE
from asyncssh.socks import SOCKS4_OK_RESPONSE, SOCKS5_OK_RESPONSE_HDR
from .server import Server, ServerTestCase
from .util import asynctest, echo, make_certificate, try_remove
def _echo_non_async(stdin, stdout, stderr=None):
"""Non-async version of echo callback"""
conn = stdin.get_extra_info('connection')
conn.create_task(echo(stdin, stdout, stderr))
def _listener(_orig_host, _orig_port):
"""Handle a forwarded TCP/IP connection"""
return echo
def _listener_non_async(_orig_host, _orig_port):
"""Non-async version of handler for a forwarded TCP/IP connection"""
return _echo_non_async
def _unix_listener():
"""Handle a forwarded UNIX domain connection"""
return echo
def _unix_listener_non_async():
"""Non-async version of handler for a forwarded UNIX domain connection"""
return _echo_non_async
async def _pause(reader, writer):
"""Sleep to allow buffered data to build up and trigger a pause"""
await asyncio.sleep(0.1)
await reader.read()
writer.close()
await maybe_wait_closed(writer)
async def _async_runtime_error(_reader, _writer):
"""Raise a runtime error"""
raise RuntimeError('Async internal error')
class _ClientConn(asyncssh.SSHClientConnection):
"""Patched SSH client connection for unit testing"""
async def make_global_request(self, request, *args):
"""Send a global request and wait for the response"""
return await self._make_global_request(request, *args)
class _EchoPortListener(asyncssh.SSHListener):
"""A TCP listener which opens a connection that echoes data"""
def __init__(self, conn):
super().__init__()
self._conn = conn
conn.create_task(self._open_connection())
async def _open_connection(self):
"""Open a forwarded connection that echoes data"""
await asyncio.sleep(0.1)
reader, writer = await self._conn.open_connection('open', 65535)
await echo(reader, writer)
def close(self):
"""Stop listening for new connections"""
async def wait_closed(self):
"""Wait for the listener to close"""
class _EchoPathListener(asyncssh.SSHListener):
"""A UNIX domain listener which opens a connection that echoes data"""
def __init__(self, conn):
super().__init__()
self._conn = conn
conn.create_task(self._open_connection())
async def _open_connection(self):
"""Open a forwarded connection that echoes data"""
await asyncio.sleep(0.1)
reader, writer = await self._conn.open_unix_connection('open')
await echo(reader, writer)
def close(self):
"""Stop listening for new connections"""
async def wait_closed(self):
"""Wait for the listener to close"""
class _TCPConnectionServer(Server):
"""Server for testing direct and forwarded TCP connections"""
def connection_requested(self, dest_host, dest_port, orig_host, orig_port):
"""Handle a request to create a new connection"""
if dest_port == 1:
return False
elif dest_port == 7:
return (self._conn.create_tcp_channel(), echo)
elif dest_port == 8:
return _pause
elif dest_port == 9:
self._conn.close()
return (self._conn.create_tcp_channel(), echo)
elif dest_port == 10:
return _async_runtime_error
else:
return True
def server_requested(self, listen_host, listen_port):
"""Handle a request to create a new socket listener"""
if listen_host == 'open':
return _EchoPortListener(self._conn)
else:
return listen_host != 'fail'
class _TCPAsyncConnectionServer(_TCPConnectionServer):
"""Server for testing async direct and forwarded TCP connections"""
async def server_requested(self, listen_host, listen_port):
"""Handle a request to create a new socket listener"""
if listen_host == 'open':
return _EchoPortListener(self._conn)
else:
return listen_host != 'fail'
class _TCPAcceptHandlerServer(Server):
"""Server for testing forwarding accept handler"""
async def server_requested(self, listen_host, listen_port):
"""Handle a request to create a new socket listener"""
def accept_handler(_orig_host: str, _orig_port: int) -> bool:
return True
return accept_handler
class _UNIXConnectionServer(Server):
"""Server for testing direct and forwarded UNIX domain connections"""
def unix_connection_requested(self, dest_path):
"""Handle a request to create a new UNIX domain connection"""
if dest_path == '':
return True
elif dest_path == '/echo':
return (self._conn.create_unix_channel(), echo)
else:
return False
def unix_server_requested(self, listen_path):
"""Handle a request to create a new UNIX domain listener"""
if listen_path == 'open':
return _EchoPathListener(self._conn)
else:
return listen_path != 'fail'
class _UNIXAsyncConnectionServer(_UNIXConnectionServer):
"""Server for testing async direct and forwarded UNIX connections"""
async def unix_server_requested(self, listen_path):
"""Handle a request to create a new UNIX domain listener"""
if listen_path == 'open':
return _EchoPathListener(self._conn)
else:
return listen_path != 'fail'
class _UpstreamForwardingServer(Server):
"""Server for testing forwarding between SSH connections"""
def __init__(self, upstream_conn):
super().__init__()
self._upstream_conn = upstream_conn
def connection_requested(self, dest_host, dest_port, orig_host, orig_port):
"""Handle a request to create a new connection"""
return self._upstream_conn
def unix_connection_requested(self, dest_path):
"""Handle a request to create a new UNIX domain connection"""
return self._upstream_conn
class _CheckForwarding(ServerTestCase):
"""Utility functions for AsyncSSH forwarding unit tests"""
async def _check_echo_line(self, reader, writer,
delay=False, encoded=False):
"""Check if an input line is properly echoed back"""
if delay:
await asyncio.sleep(delay)
line = str(id(self)) + '\n'
if not encoded:
line = line.encode('utf-8')
writer.write(line)
await writer.drain()
result = await reader.readline()
writer.close()
await maybe_wait_closed(writer)
self.assertEqual(line, result)
async def _check_echo_block(self, reader, writer):
"""Check if a block of data is properly echoed back"""
data = 4 * [1025*1024*b'\0']
writer.writelines(data)
await writer.drain()
writer.write_eof()
result = await reader.read()
#await reader.channel.wait_closed()
writer.close()
self.assertEqual(b''.join(data), result)
async def _check_local_connection(self, listen_port, delay=None):
"""Open a local connection and test if an input line is echoed back"""
reader, writer = await asyncio.open_connection('127.0.0.1',
listen_port)
await self._check_echo_line(reader, writer, delay=delay)
async def _check_local_unix_connection(self, listen_path):
"""Open a local connection and test if an input line is echoed back"""
# pylint doesn't think open_unix_connection exists
# pylint: disable=no-member
reader, writer = await asyncio.open_unix_connection(listen_path)
# pylint: enable=no-member
await self._check_echo_line(reader, writer)
class _TestTCPForwarding(_CheckForwarding):
"""Unit tests for AsyncSSH TCP connection forwarding"""
@classmethod
async def start_server(cls):
"""Start an SSH server which supports TCP connection forwarding"""
return await cls.create_server(
_TCPConnectionServer, authorized_client_keys='authorized_keys')
async def _check_connection(self, conn, dest_host='',
dest_port=7, **kwargs):
"""Open a connection and test if a block of data is echoed back"""
reader, writer = await conn.open_connection(dest_host, dest_port,
*kwargs)
await self._check_echo_block(reader, writer)
@asynctest
async def test_ssh_create_tunnel(self):
"""Test creating a tunneled SSH connection"""
async with self.connect() as conn:
conn2, _ = await conn.create_ssh_connection(
None, self._server_addr, self._server_port)
async with conn2:
await self._check_connection(conn2)
@asynctest
async def test_ssh_connect_tunnel(self):
"""Test connecting a tunneled SSH connection"""
async with self.connect() as conn:
async with conn.connect_ssh(self._server_addr,
self._server_port) as conn2:
await self._check_connection(conn2)
@asynctest
async def test_ssh_connect_tunnel_string(self):
"""Test connecting a tunneled SSH connection via string"""
async with self.connect(tunnel=f'{self._server_addr}:'
f'{self._server_port}') as conn:
await self._check_connection(conn)
@asynctest
async def test_ssh_connect_tunnel_string_failed(self):
"""Test failed connection on a tunneled SSH connection via string"""
with self.assertRaises(asyncssh.ChannelOpenError):
await asyncssh.connect(
'\xff', tunnel=f'{self._server_addr}:{self._server_port}')
@asynctest
async def test_proxy_jump(self):
"""Test connecting a tunnneled SSH connection using ProxyJump"""
write_file('.ssh/config', 'Host target\n'
' Hostname localhost\n'
f' Port {self._server_port}\n'
f' ProxyJump localhost:{self._server_port}\n'
'IdentityFile ckey\n', 'w')
try:
async with self.connect(host='target', username='ckey'):
pass
finally:
os.remove('.ssh/config')
@asynctest
async def test_proxy_jump_multiple(self):
"""Test connecting a tunnneled SSH connection using ProxyJump"""
write_file('.ssh/config', 'Host target\n'
' Hostname localhost\n'
f' Port {self._server_port}\n'
f' ProxyJump localhost:{self._server_port},'
f'localhost:{self._server_port}\n'
'IdentityFile ckey\n', 'w')
try:
async with self.connect(host='target', username='ckey'):
pass
finally:
os.remove('.ssh/config')
@asynctest
async def test_proxy_jump_encrypted_key(self):
"""Test ProxyJump with encrypted client key"""
write_file('.ssh/config', 'Host *\n'
' User ckey\n'
'Host target\n'
' Hostname localhost\n'
f' Port {self._server_port}\n'
f' ProxyJump localhost:{self._server_port}\n'
' IdentityFile ckey_encrypted\n', 'w')
try:
async with self.connect(host='target', username='ckey',
client_keys='ckey_encrypted',
passphrase='passphrase'):
pass
finally:
os.remove('.ssh/config')
@asynctest
async def test_proxy_jump_encrypted_key_missing_passphrase(self):
"""Test ProxyJump with encrypted client key and missing passphrase"""
write_file('.ssh/config', 'Host *\n'
' User ckey\n'
'Host target\n'
' Hostname localhost\n'
f' Port {self._server_port}\n'
f' ProxyJump localhost:{self._server_port}\n'
' IdentityFile ckey_encrypted\n', 'w')
try:
with self.assertRaises(asyncssh.KeyImportError):
await self.connect(host='target', username='ckey',
client_keys='ckey_encrypted')
finally:
os.remove('.ssh/config')
@asynctest
async def test_ssh_connect_reverse_tunnel(self):
"""Test creating a tunneled reverse direction SSH connection"""
server2 = await self.listen_reverse()
listen_port = server2.sockets[0].getsockname()[1]
async with self.connect() as conn:
async with conn.connect_reverse_ssh('127.0.0.1', listen_port,
server_factory=Server,
server_host_keys=['skey']):
pass
server2.close()
await server2.wait_closed()
@asynctest
async def test_ssh_listen_tunnel(self):
"""Test opening a tunneled SSH listener"""
async with self.connect() as conn:
async with conn.listen_ssh(port=0, server_factory=Server,
server_host_keys=['skey']) as server:
listen_port = server.get_port()
self.assertEqual(server.get_addresses(), [('', listen_port)])
async with asyncssh.connect('127.0.0.1', listen_port,
known_hosts=(['skey.pub'], [], [])):
pass
@asynctest
async def test_ssh_listen_tunnel_string(self):
"""Test opening a tunneled SSH listener via string"""
async with self.listen(
tunnel=f'ckey@{self._server_addr}:{self._server_port}',
server_factory=Server, server_host_keys=['skey']) as server:
listen_port = server.get_port()
async with asyncssh.connect('127.0.0.1', listen_port,
known_hosts=(['skey.pub'], [], [])):
pass
@asynctest
async def test_ssh_listen_tunnel_string_failed(self):
"""Test open failure on a tunneled SSH listener via string"""
with self.assertRaises(asyncssh.ChannelListenError):
await asyncssh.listen(
'\xff', tunnel=f'{self._server_addr}:{self._server_port}',
server_factory=Server, server_host_keys=['skey'])
@asynctest
async def test_ssh_listen_tunnel_default_port(self):
"""Test opening a tunneled SSH listener via string without port"""
with patch('asyncssh.connection.DEFAULT_PORT', self._server_port):
async with self.listen(tunnel='localhost', server_factory=Server,
server_host_keys=['skey']) as server:
listen_port = server.get_port()
async with asyncssh.connect('127.0.0.1', listen_port,
known_hosts=(['skey.pub'], [], [])):
pass
@asynctest
async def test_ssh_listen_reverse_tunnel(self):
"""Test creating a tunneled reverse direction SSH connection"""
async with self.connect() as conn:
async with conn.listen_reverse_ssh(port=0,
known_hosts=(['skey.pub'],
[], [])) as server2:
listen_port = server2.get_port()
async with asyncssh.connect_reverse('127.0.0.1', listen_port,
server_factory=Server,
server_host_keys=['skey']):
pass
@asynctest
async def test_connection(self):
"""Test opening a remote connection"""
async with self.connect() as conn:
await self._check_connection(conn)
@asynctest
async def test_connection_failure(self):
"""Test failure in opening a remote connection"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_connection('', 0)
@asynctest
async def test_connection_rejected(self):
"""Test rejection in opening a remote connection"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_connection('fail', 0)
@asynctest
async def test_connection_not_permitted(self):
"""Test permission denied in opening a remote connection"""
ckey = asyncssh.read_private_key('ckey')
cert = make_certificate('ssh-rsa-cert-v01@openssh.com',
CERT_TYPE_USER, ckey, ckey, ['ckey'],
extensions={'no-port-forwarding': ''})
async with self.connect(username='ckey', client_keys=[(ckey, cert)],
agent_path=None) as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_connection('', 7)
@asynctest
async def test_connection_not_permitted_open(self):
"""Test open permission denied in opening a remote connection"""
async with self.connect(username='ckey', client_keys=['ckey'],
agent_path=None) as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_connection('fail', 7)
@asynctest
async def test_connection_invalid_unicode(self):
"""Test opening a connection with invalid Unicode in host"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_connection(b'\xff', 0)
@asynctest
async def test_server(self):
"""Test creating a remote listener"""
async with self.connect() as conn:
listener = await conn.start_server(_listener, '', 0)
await self._check_local_connection(listener.get_port())
listener.close()
listener.close()
await listener.wait_closed()
listener.close()
@asynctest
async def test_server_context_manager(self):
"""Test using a remote listener as a context manager"""
async with self.connect() as conn:
async with conn.start_server(_listener, '', 0) as listener:
await self._check_local_connection(listener.get_port())
@asynctest
async def test_server_open(self):
"""Test creating a remote listener which uses open_connection"""
def new_connection(reader, writer):
"""Handle a forwarded TCP/IP connection"""
waiter.set_result((reader, writer))
def handler_factory(_orig_host, _orig_port):
"""Handle all connections using new_connection"""
return new_connection
async with self.connect() as conn:
waiter = self.loop.create_future()
await conn.start_server(handler_factory, 'open', 0)
reader, writer = await waiter
await self._check_echo_line(reader, writer)
# Clean up the listener during connection close
@asynctest
async def test_server_non_async(self):
"""Test creating a remote listener using non-async handler"""
async with self.connect() as conn:
async with conn.start_server(_listener_non_async,
'', 0) as listener:
await self._check_local_connection(listener.get_port())
@asynctest
async def test_server_failure(self):
"""Test failure in creating a remote listener"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelListenError):
await conn.start_server(_listener, 'fail', 0)
@asynctest
async def test_forward_local_port(self):
"""Test forwarding of a local port"""
async with self.connect() as conn:
async with conn.forward_local_port('', 0, '', 7) as listener:
await self._check_local_connection(listener.get_port(),
delay=0.1)
@asynctest
async def test_forward_local_port_accept_handler(self):
"""Test forwarding of a local port with an accept handler"""
def accept_handler(_orig_host: str, _orig_port: int) -> bool:
return True
async with self.connect() as conn:
async with conn.forward_local_port('', 0, '', 7,
accept_handler) as listener:
await self._check_local_connection(listener.get_port(),
delay=0.1)
@asynctest
async def test_forward_local_port_accept_handler_denial(self):
"""Test forwarding of a local port with an accept handler denial"""
async def accept_handler(_orig_host: str, _orig_port: int) -> bool:
return False
async with self.connect() as conn:
async with conn.forward_local_port('', 0, '', 7,
accept_handler) as listener:
listen_port = listener.get_port()
reader, writer = await asyncio.open_connection('127.0.0.1',
listen_port)
self.assertEqual((await reader.read()), b'')
writer.close()
await maybe_wait_closed(writer)
@unittest.skipIf(sys.platform == 'win32',
'skip UNIX domain socket tests on Windows')
@asynctest
async def test_forward_local_path_to_port(self):
"""Test forwarding of a local UNIX domain path to a remote TCP port"""
async with self.connect() as conn:
async with conn.forward_local_path_to_port('local', '', 7):
await self._check_local_unix_connection('local')
try_remove('local')
@unittest.skipIf(sys.platform == 'win32',
'skip UNIX domain socket tests on Windows')
@asynctest
async def test_forward_local_path_to_port_failure(self):
"""Test failure forwarding a local UNIX domain path to a TCP port"""
open('local', 'w').close()
async with self.connect() as conn:
with self.assertRaises(OSError):
await conn.forward_local_path_to_port('local', '', 7)
try_remove('local')
@asynctest
async def test_forward_local_port_pause(self):
"""Test pause during forwarding of a local port"""
async with self.connect() as conn:
async with conn.forward_local_port('', 0, '', 8) as listener:
listen_port = listener.get_port()
reader, writer = await asyncio.open_connection('127.0.0.1',
listen_port)
writer.write(4*1024*1024*b'\0')
writer.write_eof()
await reader.read()
writer.close()
await maybe_wait_closed(writer)
@asynctest
async def test_forward_local_port_failure(self):
"""Test failure in forwarding a local port"""
async with self.connect() as conn:
async with conn.forward_local_port('', 0, '', 65535) as listener:
listen_port = listener.get_port()
reader, writer = await asyncio.open_connection('127.0.0.1',
listen_port)
self.assertEqual((await reader.read()), b'')
writer.close()
await maybe_wait_closed(writer)
@unittest.skipIf(sys.platform == 'win32',
'skip dual-stack tests on Windows')
@asynctest
async def test_forward_bind_error_ipv4(self):
"""Test error binding a local forwarding port"""
async with self.connect() as conn:
async with conn.forward_local_port('0.0.0.0', 0, '', 7) as listener:
with self.assertRaises(OSError):
await conn.forward_local_port('', listener.get_port(),
'', 7)
@unittest.skipIf(sys.platform == 'win32',
'skip dual-stack tests on Windows')
@asynctest
async def test_forward_bind_error_ipv6(self):
"""Test error binding a local forwarding port"""
async with self.connect() as conn:
async with conn.forward_local_port('::', 0, '', 7) as listener:
with self.assertRaises(OSError):
await conn.forward_local_port('', listener.get_port(),
'', 7)
@unittest.skipIf(sys.platform == 'win32',
'skip UNIX domain socket tests on Windows')
@asynctest
async def test_forward_port_to_path_bind_error(self):
"""Test error binding a local port forwarding to remote path"""
async with self.connect() as conn:
async with conn.forward_local_port('0.0.0.0', 0, '', 7) as listener:
with self.assertRaises(OSError):
await conn.forward_local_port_to_path(
'', listener.get_port(), '')
@asynctest
async def test_forward_connect_error(self):
"""Test error connecting a local forwarding port"""
async with self.connect() as conn:
async with conn.forward_local_port('', 0, '', 1) as listener:
listen_port = listener.get_port()
reader, writer = await asyncio.open_connection('127.0.0.1',
listen_port)
self.assertEqual((await reader.read()), b'')
writer.close()
await maybe_wait_closed(writer)
@asynctest
async def test_forward_immediate_eof(self):
"""Test getting EOF before forwarded connection is fully open"""
async with self.connect() as conn:
async with conn.forward_local_port('', 0, '', 7) as listener:
listen_port = listener.get_port()
_, writer = await asyncio.open_connection('127.0.0.1',
listen_port)
writer.close()
await maybe_wait_closed(writer)
await asyncio.sleep(0.1)
@asynctest
async def test_forward_remote_port(self):
"""Test forwarding of a remote port"""
server = await asyncio.start_server(echo, None, 0,
family=socket.AF_INET)
server_port = server.sockets[0].getsockname()[1]
async with self.connect() as conn:
async with conn.forward_remote_port(
'', 0, '127.0.0.1', server_port) as listener:
await self._check_local_connection(listener.get_port())
server.close()
await server.wait_closed()
@unittest.skipIf(sys.platform == 'win32',
'skip UNIX domain socket tests on Windows')
@asynctest
async def test_forward_remote_port_to_path(self):
"""Test forwarding of a remote port to a local UNIX domain socket"""
server = await asyncio.start_unix_server(echo, 'local')
async with self.connect() as conn:
async with conn.forward_remote_port_to_path(
'', 0, 'local') as listener:
await self._check_local_connection(listener.get_port())
server.close()
await server.wait_closed()
try_remove('local')
@asynctest
async def test_forward_remote_specific_port(self):
"""Test forwarding of a specific remote port"""
server = await asyncio.start_server(echo, None, 0,
family=socket.AF_INET)
server_port = server.sockets[0].getsockname()[1]
sock = socket.socket()
sock.bind(('', 0))
remote_port = sock.getsockname()[1]
sock.close()
async with self.connect() as conn:
async with conn.forward_remote_port(
'', remote_port, '127.0.0.1', server_port) as listener:
await self._check_local_connection(listener.get_port())
server.close()
await server.wait_closed()
@asynctest
async def test_forward_remote_port_failure(self):
"""Test failure of forwarding a remote port"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelListenError):
await conn.forward_remote_port('', 65536, '', 0)
@asynctest
async def test_forward_remote_port_not_permitted(self):
"""Test permission denied in forwarding of a remote port"""
ckey = asyncssh.read_private_key('ckey')
cert = make_certificate('ssh-rsa-cert-v01@openssh.com',
CERT_TYPE_USER, ckey, ckey, ['ckey'],
extensions={'no-port-forwarding': ''})
async with self.connect(username='ckey', client_keys=[(ckey, cert)],
agent_path=None) as conn:
with self.assertRaises(asyncssh.ChannelListenError):
await conn.forward_remote_port('', 0, '', 0)
@asynctest
async def test_forward_remote_port_invalid_unicode(self):
"""Test TCP/IP forwarding with invalid Unicode in host"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelListenError):
await conn.forward_remote_port(b'\xff', 0, '', 0)
@asynctest
async def test_cancel_forward_remote_port_invalid_unicode(self):
"""Test canceling TCP/IP forwarding with invalid Unicode in host"""
with patch('asyncssh.connection.SSHClientConnection', _ClientConn):
async with self.connect() as conn:
pkttype, _ = await conn.make_global_request(
b'cancel-tcpip-forward', String(b'\xff'), UInt32(0))
self.assertEqual(pkttype, asyncssh.MSG_REQUEST_FAILURE)
@asynctest
async def test_upstream_forward_local_port(self):
"""Test upstream forwarding of a local port"""
def upstream_server():
"""Return a server capable of forwarding between SSH connections"""
return _UpstreamForwardingServer(upstream_conn)
async with self.connect() as upstream_conn:
upstream_listener = await self.create_server(upstream_server)
upstream_port = upstream_listener.get_port()
async with self.connect('127.0.0.1', upstream_port) as conn:
async with conn.forward_local_port('', 0, '', 7) as listener:
await self._check_local_connection(listener.get_port())
upstream_listener.close()
@asynctest
async def test_add_channel_after_close(self):
"""Test opening a connection after a close"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_connection('', 9)
@asynctest
async def test_async_runtime_error(self):
"""Test runtime error in async listener"""
async with self.connect() as conn:
reader, _ = await conn.open_connection('', 10)
with self.assertRaises(asyncssh.ConnectionLost):
await reader.read()
@asynctest
async def test_multiple_global_requests(self):
"""Test sending multiple global requests in parallel"""
async with self.connect() as conn:
listeners = await asyncio.gather(
conn.forward_remote_port('', 0, '', 7),
conn.forward_remote_port('', 0, '', 7))
for listener in listeners:
listener.close()
await listener.wait_closed()
@asynctest
async def test_listener_close_on_conn_close(self):
"""Test listener closes when connection closes"""
async with self.connect() as conn:
listener = await conn.forward_local_port('', 0, '', 80)
await conn.open_connection('', 10)
await listener.wait_closed()
class _TestTCPForwardingAcceptHandler(_CheckForwarding):
"""Unit tests for TCP forwarding with accept handler"""
@classmethod
async def start_server(cls):
"""Start an SSH server which supports TCP connection forwarding"""
return await cls.create_server(
_TCPAcceptHandlerServer, authorized_client_keys='authorized_keys')
@asynctest
async def test_forward_remote_port_accept_handler(self):
"""Test forwarding of a remote port with accept handler"""
server = await asyncio.start_server(echo, None, 0,
family=socket.AF_INET)
server_port = server.sockets[0].getsockname()[1]
async with self.connect() as conn:
async with conn.forward_remote_port(
'', 0, '127.0.0.1', server_port) as listener:
await self._check_local_connection(listener.get_port())
server.close()
await server.wait_closed()
class _TestAsyncTCPForwarding(_TestTCPForwarding):
"""Unit tests for AsyncSSH TCP connection forwarding with async return"""
@classmethod
async def start_server(cls):
"""Start an SSH server which supports TCP connection forwarding"""
return await cls.create_server(
_TCPAsyncConnectionServer, authorized_client_keys='authorized_keys')
@unittest.skipIf(sys.platform == 'win32',
'skip UNIX domain socket tests on Windows')
class _TestUNIXForwarding(_CheckForwarding):
"""Unit tests for AsyncSSH UNIX connection forwarding"""
@classmethod
async def start_server(cls):
"""Start an SSH server which supports UNIX connection forwarding"""
return await cls.create_server(
_UNIXConnectionServer, authorized_client_keys='authorized_keys')
async def _check_unix_connection(self, conn, dest_path='/echo', **kwargs):
"""Open a UNIX connection and test if an input line is echoed back"""
reader, writer = await conn.open_unix_connection(dest_path,
encoding='utf-8',
*kwargs)
await self._check_echo_line(reader, writer, encoded=True)
@asynctest
async def test_unix_connection(self):
"""Test opening a remote UNIX connection"""
async with self.connect() as conn:
await self._check_unix_connection(conn)
@asynctest
async def test_unix_connection_failure(self):
"""Test failure in opening a remote UNIX connection"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_unix_connection('')
@asynctest
async def test_unix_connection_rejected(self):
"""Test rejection in opening a remote UNIX connection"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_unix_connection('/fail')
@asynctest
async def test_unix_connection_not_permitted(self):
"""Test permission denied in opening a remote UNIX connection"""
ckey = asyncssh.read_private_key('ckey')
cert = make_certificate('ssh-rsa-cert-v01@openssh.com',
CERT_TYPE_USER, ckey, ckey, ['ckey'],
extensions={'no-port-forwarding': ''})
async with self.connect(username='ckey', client_keys=[(ckey, cert)],
agent_path=None) as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_unix_connection('/echo')
@asynctest
async def test_unix_connection_invalid_unicode(self):
"""Test opening a UNIX connection with invalid Unicode in path"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelOpenError):
await conn.open_unix_connection(b'\xff')
@asynctest
async def test_unix_server(self):
"""Test creating a remote UNIX listener"""
path = os.path.abspath('echo')
async with self.connect() as conn:
listener = await conn.start_unix_server(_unix_listener, path)
await self._check_local_unix_connection('echo')
listener.close()
listener.close()
await listener.wait_closed()
listener.close()
try_remove('echo')
@asynctest
async def test_unix_server_open(self):
"""Test creating a UNIX listener which uses open_unix_connection"""
def new_connection(reader, writer):
"""Handle a forwarded UNIX domain connection"""
waiter.set_result((reader, writer))
def handler_factory():
"""Handle all connections using new_connection"""
return new_connection
async with self.connect() as conn:
waiter = self.loop.create_future()
async with conn.start_unix_server(handler_factory, 'open'):
reader, writer = await waiter
await self._check_echo_line(reader, writer)
@asynctest
async def test_unix_server_non_async(self):
"""Test creating a remote UNIX listener using non-async handler"""
path = os.path.abspath('echo')
async with self.connect() as conn:
async with conn.start_unix_server(_unix_listener_non_async, path):
await self._check_local_unix_connection('echo')
try_remove('echo')
@asynctest
async def test_unix_server_failure(self):
"""Test failure in creating a remote UNIX listener"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelListenError):
await conn.start_unix_server(_unix_listener, 'fail')
@asynctest
async def test_forward_local_path(self):
"""Test forwarding of a local UNIX domain path"""
async with self.connect() as conn:
async with conn.forward_local_path('local', '/echo'):
await self._check_local_unix_connection('local')
try_remove('local')
@asynctest
async def test_forward_local_port_to_path_accept_handler(self):
"""Test forwarding of port to UNIX path with accept handler"""
def accept_handler(_orig_host: str, _orig_port: int) -> bool:
return True
async with self.connect() as conn:
async with conn.forward_local_port_to_path(
'', 0, '/echo', accept_handler) as listener:
await self._check_local_connection(listener.get_port(),
delay=0.1)
@asynctest
async def test_forward_local_port_to_path_accept_handler_denial(self):
"""Test forwarding of port to UNIX path with accept handler denial"""
async def accept_handler(_orig_host: str, _orig_port: int) -> bool:
return False
async with self.connect() as conn:
async with conn.forward_local_port_to_path(
'', 0, '/echo', accept_handler) as listener:
listen_port = listener.get_port()
reader, writer = await asyncio.open_connection('127.0.0.1',
listen_port)
self.assertEqual((await reader.read()), b'')
writer.close()
await maybe_wait_closed(writer)
@asynctest
async def test_forward_local_port_to_path(self):
"""Test forwarding of a local port to a remote UNIX domain socket"""
async with self.connect() as conn:
async with conn.forward_local_port_to_path('', 0,
'/echo') as listener:
await self._check_local_connection(listener.get_port(),
delay=0.1)
@asynctest
async def test_forward_specific_local_port_to_path(self):
"""Test forwarding of a specific local port to a UNIX domain socket"""
sock = socket.socket()
sock.bind(('', 0))
listen_port = sock.getsockname()[1]
sock.close()
async with self.connect() as conn:
async with conn.forward_local_port_to_path(
'', listen_port, '/echo') as listener:
await self._check_local_connection(listener.get_port(),
delay=0.1)
@asynctest
async def test_forward_remote_path(self):
"""Test forwarding of a remote UNIX domain path"""
# pylint doesn't think start_unix_server exists
# pylint: disable=no-member
server = await asyncio.start_unix_server(echo, 'local')
# pylint: enable=no-member
path = os.path.abspath('echo')
async with self.connect() as conn:
async with conn.forward_remote_path(path, 'local'):
await self._check_local_unix_connection('echo')
server.close()
await server.wait_closed()
try_remove('echo')
try_remove('local')
@asynctest
async def test_forward_remote_path_to_port(self):
"""Test forwarding of a remote UNIX domain path to a local TCP port"""
server = await asyncio.start_server(echo, None, 0,
family=socket.AF_INET)
server_port = server.sockets[0].getsockname()[1]
path = os.path.abspath('echo')
async with self.connect() as conn:
async with conn.forward_remote_path_to_port(
path, '127.0.0.1', server_port):
await self._check_local_unix_connection('echo')
server.close()
await server.wait_closed()
try_remove('echo')
@asynctest
async def test_forward_remote_path_failure(self):
"""Test failure of forwarding a remote UNIX domain path"""
open('echo', 'w').close()
path = os.path.abspath('echo')
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelListenError):
await conn.forward_remote_path(path, 'local')
try_remove('echo')
@asynctest
async def test_forward_remote_path_not_permitted(self):
"""Test permission denied in forwarding a remote UNIX domain path"""
ckey = asyncssh.read_private_key('ckey')
cert = make_certificate('ssh-rsa-cert-v01@openssh.com',
CERT_TYPE_USER, ckey, ckey, ['ckey'],
extensions={'no-port-forwarding': ''})
async with self.connect(username='ckey', client_keys=[(ckey, cert)],
agent_path=None) as conn:
with self.assertRaises(asyncssh.ChannelListenError):
await conn.forward_remote_path('', 'local')
@asynctest
async def test_forward_remote_path_invalid_unicode(self):
"""Test forwarding a UNIX domain path with invalid Unicode in it"""
async with self.connect() as conn:
with self.assertRaises(asyncssh.ChannelListenError):
await conn.forward_remote_path(b'\xff', 'local')
@asynctest
async def test_cancel_forward_remote_path_invalid_unicode(self):
"""Test canceling UNIX forwarding with invalid Unicode in path"""
with patch('asyncssh.connection.SSHClientConnection', _ClientConn):
async with self.connect() as conn:
pkttype, _ = await conn.make_global_request(
b'cancel-streamlocal-forward@openssh.com', String(b'\xff'))
self.assertEqual(pkttype, asyncssh.MSG_REQUEST_FAILURE)
@asynctest
async def test_upstream_forward_local_path(self):
"""Test upstream forwarding of a local path"""
def upstream_server():
"""Return a server capable of forwarding between SSH connections"""
return _UpstreamForwardingServer(upstream_conn)
async with self.connect() as upstream_conn:
upstream_listener = await self.create_server(upstream_server)
upstream_port = upstream_listener.get_port()
async with self.connect('127.0.0.1', upstream_port) as conn:
async with conn.forward_local_path('local', '/echo'):
await self._check_local_unix_connection('local')
upstream_listener.close()
class _TestAsyncUNIXForwarding(_TestUNIXForwarding):
"""Unit tests for AsyncSSH UNIX connection forwarding with async return"""
@classmethod
async def start_server(cls):
"""Start an SSH server which supports UNIX connection forwarding"""
return await cls.create_server(
_UNIXAsyncConnectionServer,
authorized_client_keys='authorized_keys')
class _TestSOCKSForwarding(_CheckForwarding):
"""Unit tests for AsyncSSH SOCKS dynamic port forwarding"""
@classmethod
async def start_server(cls):
"""Start an SSH server which supports TCP connection forwarding"""
return await cls.create_server(
_TCPConnectionServer, authorized_client_keys='authorized_keys')
async def _check_early_error(self, reader, writer, data):
"""Check errors in the initial SOCKS message"""
writer.write(data)
self.assertEqual((await reader.read()), b'')
async def _check_socks5_error(self, reader, writer, data):
"""Check SOCKSv5 errors after auth"""
writer.write(bytes((SOCKS5, 1, SOCKS5_AUTH_NONE)))
self.assertEqual((await reader.readexactly(2)),
bytes((SOCKS5, SOCKS5_AUTH_NONE)))
writer.write(data)
self.assertEqual((await reader.read()), b'')
async def _check_socks4_connect(self, reader, writer, data, result):
"""Check SOCKSv4 connect requests"""
writer.write(data)
response = await reader.readexactly(len(SOCKS4_OK_RESPONSE))
self.assertEqual(response, SOCKS4_OK_RESPONSE)
if result:
await self._check_echo_line(reader, writer)
else:
self.assertEqual((await reader.read()), b'')
async def _check_socks5_connect(self, reader, writer, data,
addrtype, addrlen, result):
"""Check SOCKSv5 connect_requests"""
writer.write(bytes((SOCKS5, 1, SOCKS5_AUTH_NONE)))
self.assertEqual((await reader.readexactly(2)),
bytes((SOCKS5, SOCKS5_AUTH_NONE)))
writer.write(data[:20])
await asyncio.sleep(0.1)
writer.write(data[20:])
expected = SOCKS5_OK_RESPONSE_HDR + bytes((addrtype,)) + \
(addrlen + 2) * b'\0'
response = await reader.readexactly(len(expected))
self.assertEqual(response, expected)
if result:
await self._check_echo_line(reader, writer)
else:
self.assertEqual((await reader.read()), b'')
async def _check_socks(self, handler, listen_port, msg,
data, *args):
"""Unit test SOCKS dynamic port forwarding"""
with self.subTest(msg=msg, data=data):
data = codecs.decode(data, 'hex')
reader, writer = await asyncio.open_connection('127.0.0.1',
listen_port)
try:
await handler(reader, writer, data, *args)
finally:
writer.close()
await maybe_wait_closed(writer)
@asynctest
async def test_forward_socks(self):
"""Test dynamic port forwarding via SOCKS"""
_socks_early_errors = [
('Bad version', '0000'),
('Bad SOCKSv4 command', '0400'),
('Bad SOCKSv4 Unicode data', '040100010000000100ff00'),
('SOCKSv4 hostname too long', '040100010000000100' + 256 * 'ff'),
('Bad SOCKSv5 auth list', '050101')
]
_socks5_postauth_errors = [
('Bad command', '05000001'),
('Bad address', '05010000'),
('Bad Unicode data', '0501000301ff0007')
]
_socks4_connects = [
('IPv4', '040100077f00000100', True),
('Hostname', '0401000700000001006c6f63616c686f737400', True),
('Rejected', '04010001000000010000', False)
]
_socks5_connects = [
('IPv4', '050100017f0000010007', 1, 4, True),
('Hostname', '05010003096c6f63616c686f73740007', 1, 4, True),
('IPv6', '05010004' + 15*'00' + '010007', 4, 16, True),
('Rejected', '05010003000001', 1, 4, False)
]
async with self.connect() as conn:
async with conn.forward_socks('', 0) as listener:
listen_port = listener.get_port()
for msg, data in _socks_early_errors:
await self._check_socks(self._check_early_error,
listen_port, msg, data)
for msg, data in _socks5_postauth_errors:
await self._check_socks(self._check_socks5_error,
listen_port, msg, data)
for msg, data, result in _socks4_connects:
await self._check_socks(self._check_socks4_connect,
listen_port, msg, data, result)
for msg, data, addrtype, addrlen, result in _socks5_connects:
await self._check_socks(self._check_socks5_connect,
listen_port, msg, data,
addrtype, addrlen, result)
@asynctest
async def test_forward_socks_specific_port(self):
"""Test dynamic forwarding on a specific port"""
sock = socket.socket()
sock.bind(('', 0))
listen_port = sock.getsockname()[1]
sock.close()
async with self.connect() as conn:
async with conn.forward_socks('', listen_port):
pass
@unittest.skipIf(sys.platform == 'win32',
'Avoid issue with SO_REUSEADDR on Windows')
@asynctest
async def test_forward_bind_error_socks(self):
"""Test error binding a local dynamic forwarding port"""
async with self.connect() as conn:
async with conn.forward_socks('', 0) as listener:
with self.assertRaises(OSError):
await conn.forward_socks('', listener.get_port())
|