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 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2017-2018 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import XCTest
#if compiler(>=5.1)
@_implementationOnly import CNIOBoringSSL
#else
import CNIOBoringSSL
#endif
import NIOConcurrencyHelpers
import NIO
@testable import NIOSSL
import NIOTLS
public func assertNoThrowWithValue<T>(_ body: @autoclosure () throws -> T, defaultValue: T? = nil, file: StaticString = #file, line: UInt = #line) throws -> T {
do {
return try body()
} catch {
XCTFail("unexpected error \(error) thrown", file: (file), line: line)
if let defaultValue = defaultValue {
return defaultValue
} else {
throw error
}
}
}
internal func interactInMemory(clientChannel: EmbeddedChannel, serverChannel: EmbeddedChannel) throws {
var workToDo = true
while workToDo {
workToDo = false
let clientDatum = try clientChannel.readOutbound(as: IOData.self)
let serverDatum = try serverChannel.readOutbound(as: IOData.self)
if let clientMsg = clientDatum {
try serverChannel.writeInbound(clientMsg)
workToDo = true
}
if let serverMsg = serverDatum {
try clientChannel.writeInbound(serverMsg)
workToDo = true
}
}
}
private final class SimpleEchoServer: ChannelInboundHandler {
public typealias InboundIn = ByteBuffer
public typealias OutboundOut = ByteBuffer
public func channelRead(context: ChannelHandlerContext, data: NIOAny) {
context.write(data, promise: nil)
context.fireChannelRead(data)
}
public func channelReadComplete(context: ChannelHandlerContext) {
context.flush()
context.fireChannelReadComplete()
}
}
internal final class PromiseOnReadHandler: ChannelInboundHandler {
public typealias InboundIn = ByteBuffer
public typealias OutboundOut = ByteBuffer
private let promise: EventLoopPromise<ByteBuffer>
private var data: NIOAny? = nil
init(promise: EventLoopPromise<ByteBuffer>) {
self.promise = promise
}
public func channelRead(context: ChannelHandlerContext, data: NIOAny) {
self.data = data
context.fireChannelRead(data)
}
public func channelReadComplete(context: ChannelHandlerContext) {
promise.succeed(unwrapInboundIn(data!))
context.fireChannelReadComplete()
}
}
private final class ReadRecordingHandler: ChannelInboundHandler {
public typealias InboundIn = ByteBuffer
private var received: ByteBuffer?
private let completePromise: EventLoopPromise<ByteBuffer>
init(completePromise: EventLoopPromise<ByteBuffer>) {
self.completePromise = completePromise
}
func channelRead(context: ChannelHandlerContext, data: NIOAny) {
var data = self.unwrapInboundIn(data)
var newBuffer: ByteBuffer
if var received = self.received {
received.writeBuffer(&data)
newBuffer = received
} else {
newBuffer = data
}
self.received = newBuffer
}
func channelInactive(context: ChannelHandlerContext) {
self.completePromise.succeed(self.received ?? context.channel.allocator.buffer(capacity: 0))
}
}
private final class WriteCountingHandler: ChannelOutboundHandler {
public typealias OutboundIn = Any
public typealias OutboundOut = Any
public var writeCount = 0
public func write(context: ChannelHandlerContext, data: NIOAny, promise: EventLoopPromise<Void>?) {
writeCount += 1
context.write(data, promise: promise)
}
}
public final class EventRecorderHandler<UserEventType>: ChannelInboundHandler where UserEventType: Equatable {
public typealias InboundIn = ByteBuffer
public enum RecordedEvents: Equatable {
case Registered
case Unregistered
case Active
case Inactive
case Read
case ReadComplete
case WritabilityChanged
case UserEvent(UserEventType)
// Note that this omits ErrorCaught. This is because Error does not
// require Equatable, so we can't safely record these events and expect
// a sensible implementation of Equatable here.
public static func ==(lhs: RecordedEvents, rhs: RecordedEvents) -> Bool {
switch (lhs, rhs) {
case (.Registered, .Registered),
(.Unregistered, .Unregistered),
(.Active, .Active),
(.Inactive, .Inactive),
(.Read, .Read),
(.ReadComplete, .ReadComplete),
(.WritabilityChanged, .WritabilityChanged):
return true
case (.UserEvent(let e1), .UserEvent(let e2)):
return e1 == e2
default:
return false
}
}
}
public var events: [RecordedEvents] = []
public func channelRegistered(context: ChannelHandlerContext) {
events.append(.Registered)
context.fireChannelRegistered()
}
public func channelUnregistered(context: ChannelHandlerContext) {
events.append(.Unregistered)
context.fireChannelUnregistered()
}
public func channelActive(context: ChannelHandlerContext) {
events.append(.Active)
context.fireChannelActive()
}
public func channelInactive(context: ChannelHandlerContext) {
events.append(.Inactive)
context.fireChannelInactive()
}
public func channelRead(context: ChannelHandlerContext, data: NIOAny) {
events.append(.Read)
context.fireChannelRead(data)
}
public func channelReadComplete(context: ChannelHandlerContext) {
events.append(.ReadComplete)
context.fireChannelReadComplete()
}
public func channelWritabilityChanged(context: ChannelHandlerContext) {
events.append(.WritabilityChanged)
context.fireChannelWritabilityChanged()
}
public func userInboundEventTriggered(context: ChannelHandlerContext, event: Any) {
guard let ourEvent = event as? UserEventType else {
context.fireUserInboundEventTriggered(event)
return
}
events.append(.UserEvent(ourEvent))
}
}
private class ChannelActiveWaiter: ChannelInboundHandler {
public typealias InboundIn = Any
private var activePromise: EventLoopPromise<Void>
public init(promise: EventLoopPromise<Void>) {
activePromise = promise
}
public func channelActive(context: ChannelHandlerContext) {
activePromise.succeed(())
}
public func waitForChannelActive() throws {
try activePromise.futureResult.wait()
}
}
/// A channel handler that delays all writes that it receives. This is useful
/// in tests that want to ensure that writes propagate through the system in order.
///
/// Note that you must call forceFlush to pass all the data through, or your tests will
/// explode.
private class WriteDelayHandler: ChannelOutboundHandler {
public typealias OutboundIn = Any
public typealias OutboundOut = Any
private var writes: [(ChannelHandlerContext, NIOAny, EventLoopPromise<Void>?)] = []
func write(context: ChannelHandlerContext, data: NIOAny, promise: EventLoopPromise<Void>?) {
writes.append((context, data, promise))
}
func forceFlush() {
let writes = self.writes
self.writes = []
writes.forEach { $0.0.writeAndFlush($0.1, promise: $0.2) }
}
}
internal func serverTLSChannel(context: NIOSSLContext,
handlers: [ChannelHandler],
group: EventLoopGroup,
file: StaticString = #file,
line: UInt = #line) throws -> Channel {
return try assertNoThrowWithValue(serverTLSChannel(context: context,
preHandlers: [],
postHandlers: handlers,
group: group,
file: file,
line: line),
file: file, line: line)
}
internal func serverTLSChannel(context: NIOSSLContext,
preHandlers: [ChannelHandler],
postHandlers: [ChannelHandler],
group: EventLoopGroup,
customVerificationCallback: NIOSSLCustomVerificationCallback? = nil,
file: StaticString = #file,
line: UInt = #line) throws -> Channel {
return try assertNoThrowWithValue(ServerBootstrap(group: group)
.serverChannelOption(ChannelOptions.socket(SocketOptionLevel(SOL_SOCKET), SO_REUSEADDR), value: 1)
.childChannelInitializer { channel in
let results = preHandlers.map { channel.pipeline.addHandler($0) }
return EventLoopFuture<Void>.andAllSucceed(results, on: channel.eventLoop).map {
if let verify = customVerificationCallback {
return NIOSSLServerHandler(context: context, customVerificationCallback: verify)
} else {
return NIOSSLServerHandler(context: context)
}
}.flatMap {
channel.pipeline.addHandler($0)
}.flatMap {
let results = postHandlers.map { channel.pipeline.addHandler($0) }
return EventLoopFuture<Void>.andAllSucceed(results, on: channel.eventLoop)
}
}.bind(host: "127.0.0.1", port: 0).wait(), file: file, line: line)
}
internal func clientTLSChannel(context: NIOSSLContext,
preHandlers: [ChannelHandler],
postHandlers: [ChannelHandler],
group: EventLoopGroup,
connectingTo: SocketAddress,
serverHostname: String? = nil,
file: StaticString = #file,
line: UInt = #line) throws -> Channel {
func tlsFactory() -> NIOSSLClientTLSProvider<ClientBootstrap> {
return try! .init(context: context, serverHostname: serverHostname)
}
return try _clientTLSChannel(context: context, preHandlers: preHandlers, postHandlers: postHandlers, group: group, connectingTo: connectingTo, tlsFactory: tlsFactory)
}
@available(*, deprecated, message: "just for testing the deprecated functionality")
private struct DeprecatedTLSProviderForTests<Bootstrap: NIOClientTCPBootstrapProtocol>: NIOClientTLSProvider {
public typealias Bootstrap = Bootstrap
let context: NIOSSLContext
let serverHostname: String?
let verificationCallback: NIOSSLVerificationCallback
@available(*, deprecated, renamed: "init(context:serverHostname:customVerificationCallback:)")
public init(context: NIOSSLContext, serverHostname: String?, verificationCallback: @escaping NIOSSLVerificationCallback) {
self.context = context
self.serverHostname = serverHostname
self.verificationCallback = verificationCallback
}
public func enableTLS(_ bootstrap: Bootstrap) -> Bootstrap {
return bootstrap.protocolHandlers {
// NIOSSLClientHandler.init only throws because of `malloc` error and invalid SNI hostnames. We want to crash
// on malloc error and we pre-checked the SNI hostname in `init` so that should be impossible here.
return [try! NIOSSLClientHandler(context: self.context,
serverHostname: self.serverHostname,
verificationCallback: self.verificationCallback)]
}
}
}
@available(*, deprecated, renamed: "clientTLSChannel(context:preHandlers:postHandlers:group:connectingTo:serverHostname:customVerificationCallback:file:line:)")
internal func clientTLSChannel(context: NIOSSLContext,
preHandlers: [ChannelHandler],
postHandlers: [ChannelHandler],
group: EventLoopGroup,
connectingTo: SocketAddress,
serverHostname: String? = nil,
verificationCallback: @escaping NIOSSLVerificationCallback,
file: StaticString = #file,
line: UInt = #line) throws -> Channel {
func tlsFactory() -> DeprecatedTLSProviderForTests<ClientBootstrap> {
return .init(context: context, serverHostname: serverHostname, verificationCallback: verificationCallback)
}
return try _clientTLSChannel(context: context,
preHandlers: preHandlers,
postHandlers: postHandlers,
group: group, connectingTo: connectingTo,
tlsFactory: tlsFactory)
}
internal func clientTLSChannel(context: NIOSSLContext,
preHandlers: [ChannelHandler],
postHandlers: [ChannelHandler],
group: EventLoopGroup,
connectingTo: SocketAddress,
serverHostname: String? = nil,
customVerificationCallback: @escaping NIOSSLCustomVerificationCallback,
file: StaticString = #file,
line: UInt = #line) throws -> Channel {
func tlsFactory() -> NIOSSLClientTLSProvider<ClientBootstrap> {
return try! .init(context: context,
serverHostname: serverHostname,
customVerificationCallback: customVerificationCallback)
}
return try _clientTLSChannel(context: context,
preHandlers: preHandlers,
postHandlers: postHandlers,
group: group,
connectingTo: connectingTo,
tlsFactory: tlsFactory)
}
fileprivate func _clientTLSChannel<TLS: NIOClientTLSProvider>(context: NIOSSLContext,
preHandlers: [ChannelHandler],
postHandlers: [ChannelHandler],
group: EventLoopGroup,
connectingTo: SocketAddress,
tlsFactory: @escaping () -> TLS,
file: StaticString = #file,
line: UInt = #line) throws -> Channel where TLS.Bootstrap == ClientBootstrap {
let bootstrap = NIOClientTCPBootstrap(ClientBootstrap(group: group),
tls: tlsFactory())
return try assertNoThrowWithValue(bootstrap
.channelInitializer { channel in
channel.pipeline.addHandlers(postHandlers)
}
.enableTLS()
.connect(to: connectingTo)
.flatMap { channel in
channel.pipeline.addHandlers(preHandlers, position: .first).map {
channel
}
}
.wait(), file: file, line: line)
}
class NIOSSLIntegrationTest: XCTestCase {
static var cert: NIOSSLCertificate!
static var key: NIOSSLPrivateKey!
static var encryptedKeyPath: String!
override class func setUp() {
super.setUp()
guard boringSSLIsInitialized else { fatalError() }
let (cert, key) = generateSelfSignedCert()
NIOSSLIntegrationTest.cert = cert
NIOSSLIntegrationTest.key = key
NIOSSLIntegrationTest.encryptedKeyPath = keyInFile(key: NIOSSLIntegrationTest.key, passphrase: "thisisagreatpassword")
}
override class func tearDown() {
_ = unlink(NIOSSLIntegrationTest.encryptedKeyPath)
}
private func configuredSSLContext(keyLogCallback: NIOSSLKeyLogCallback? = nil, file: StaticString = #file, line: UInt = #line) throws -> NIOSSLContext {
var config = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(NIOSSLIntegrationTest.cert)],
privateKey: .privateKey(NIOSSLIntegrationTest.key)
)
config.trustRoots = .certificates([NIOSSLIntegrationTest.cert])
config.keyLogCallback = keyLogCallback
return try assertNoThrowWithValue(NIOSSLContext(configuration: config), file: file, line: line)
}
private func configuredSSLContext<T: Collection>(passphraseCallback: @escaping NIOSSLPassphraseCallback<T>,
file: StaticString = #file, line: UInt = #line) throws -> NIOSSLContext
where T.Element == UInt8 {
var config = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(NIOSSLIntegrationTest.cert)],
privateKey: .file(NIOSSLIntegrationTest.encryptedKeyPath)
)
config.trustRoots = .certificates([NIOSSLIntegrationTest.cert])
return try assertNoThrowWithValue(NIOSSLContext(configuration: config, passphraseCallback: passphraseCallback), file: file, line: line)
}
private func configuredClientContext(file: StaticString = #file, line: UInt = #line) throws -> NIOSSLContext {
var config = TLSConfiguration.makeClientConfiguration()
config.trustRoots = .certificates([NIOSSLIntegrationTest.cert])
return try assertNoThrowWithValue(NIOSSLContext(configuration: config), file: file, line: line)
}
static func keyInFile(key: NIOSSLPrivateKey, passphrase: String) -> String {
let fileName = makeTemporaryFile(fileExtension: ".pem")
let tempFile = open(fileName, O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, 0o644)
precondition(tempFile > 1, String(cString: strerror(errno)))
let fileBio = CNIOBoringSSL_BIO_new_fp(fdopen(tempFile, "w+"), BIO_CLOSE)
precondition(fileBio != nil)
let manager = BoringSSLPassphraseCallbackManager { closure in closure(passphrase.utf8) }
let rc = withExtendedLifetime(manager) { manager -> CInt in
let userData = Unmanaged.passUnretained(manager).toOpaque()
return CNIOBoringSSL_PEM_write_bio_PrivateKey(fileBio, key.ref, CNIOBoringSSL_EVP_aes_256_cbc(), nil, 0, globalBoringSSLPassphraseCallback, userData)
}
CNIOBoringSSL_BIO_free(fileBio)
precondition(rc == 1)
return fileName
}
func withTrustBundleInFile<T>(tempFile fileName: inout String?, fn: (String) throws -> T) throws -> T {
fileName = makeTemporaryFile()
guard let fileName = fileName else {
fatalError("couldn't make temp file")
}
let tempFile = fileName.withCString { ptr in
return open(ptr, O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, 0o644)
}
precondition(tempFile > 1, String(cString: strerror(errno)))
let fileBio = CNIOBoringSSL_BIO_new_fp(fdopen(tempFile, "w+"), BIO_CLOSE)
precondition(fileBio != nil)
let rc = CNIOBoringSSL_PEM_write_bio_X509(fileBio, NIOSSLIntegrationTest.cert.ref)
CNIOBoringSSL_BIO_free(fileBio)
precondition(rc == 1)
return try fn(fileName)
}
func testSimpleEcho() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [SimpleEchoServer()], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [],
postHandlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
try clientChannel.writeAndFlush(originalBuffer).wait()
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
}
func testHandshakeEventSequencing() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let readComplete: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverHandler: EventRecorderHandler<TLSUserEvent> = EventRecorderHandler()
let serverChannel = try serverTLSChannel(context: context,
handlers: [serverHandler, PromiseOnReadHandler(promise: readComplete)],
group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [],
postHandlers: [SimpleEchoServer()],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
try clientChannel.writeAndFlush(originalBuffer).wait()
_ = try readComplete.futureResult.wait()
// Ok, the channel is connected and we have written data to it. This means the TLS handshake is
// done. Check the events.
// TODO(cory): How do we wait until the read is done? Ideally we'd like to re-use the
// PromiseOnReadHandler, but we need to get it into the pipeline first. Not sure how yet. Come back to me.
// Maybe update serverTLSChannel to take an array of channel handlers?
let expectedEvents: [EventRecorderHandler<TLSUserEvent>.RecordedEvents] = [
.Registered,
.Active,
.UserEvent(TLSUserEvent.handshakeCompleted(negotiatedProtocol: nil)),
.Read,
.ReadComplete
]
XCTAssertEqual(expectedEvents, serverHandler.events)
}
func testShutdownEventSequencing() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let readComplete: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverHandler: EventRecorderHandler<TLSUserEvent> = EventRecorderHandler()
let serverChannel = try serverTLSChannel(context: context,
handlers: [serverHandler, PromiseOnReadHandler(promise: readComplete)],
group: group)
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [],
postHandlers: [SimpleEchoServer()],
group: group,
connectingTo: serverChannel.localAddress!)
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
try clientChannel.writeAndFlush(originalBuffer).wait()
// Ok, we want to wait for the read to finish, then close the server and client connections.
_ = try readComplete.futureResult.flatMap { (_: ByteBuffer) in
return serverChannel.close()
}.flatMap {
return clientChannel.close()
}.wait()
let expectedEvents: [EventRecorderHandler<TLSUserEvent>.RecordedEvents] = [
.Registered,
.Active,
.UserEvent(TLSUserEvent.handshakeCompleted(negotiatedProtocol: nil)),
.Read,
.ReadComplete,
.UserEvent(TLSUserEvent.shutdownCompleted),
.Inactive,
.Unregistered
]
XCTAssertEqual(expectedEvents, serverHandler.events)
}
func testMultipleClose() throws {
var serverClosed = false
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverChannel = try serverTLSChannel(context: context, handlers: [SimpleEchoServer()], group: group)
defer {
if !serverClosed {
XCTAssertNoThrow(try serverChannel.close().wait())
}
}
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [],
postHandlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
try clientChannel.writeAndFlush(originalBuffer).wait()
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
// Ok, the connection is definitely up. Now we want to forcibly call close() on the channel several times with
// different promises. None of these will fire until clean shutdown happens, but we want to confirm that *all* of them
// fire.
//
// To avoid the risk of the I/O loop actually closing the connection before we're done, we need to hijack the
// I/O loop and issue all the closes on that thread. Otherwise, the channel will probably pull off the TLS shutdown
// before we get to the third call to close().
let promises: [EventLoopPromise<Void>] = [group.next().makePromise(), group.next().makePromise(), group.next().makePromise()]
group.next().execute {
for promise in promises {
serverChannel.close(promise: promise)
}
}
XCTAssertNoThrow(try promises.first!.futureResult.wait())
serverClosed = true
for promise in promises {
// This should never block, but it may throw because the I/O is complete.
// Suppress all errors, they're fine.
_ = try? promise.futureResult.wait()
}
}
func testCoalescedWrites() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel = try serverTLSChannel(context: context, handlers: [SimpleEchoServer()], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let writeCounter = WriteCountingHandler()
let readPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [writeCounter],
postHandlers: [PromiseOnReadHandler(promise: readPromise)],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
// We're going to issue a number of small writes. Each of these should be coalesced together
// such that the underlying layer sees only one write for them. The total number of
// writes should be (after we flush) 3: one for Client Hello, one for Finished, and one
// for the coalesced writes. However, we'll tolerate fewer!
var originalBuffer = clientChannel.allocator.buffer(capacity: 1)
originalBuffer.writeString("A")
var writeFutures: [EventLoopFuture<()>] = []
for _ in 0..<5 {
writeFutures.append(clientChannel.write(NIOAny(originalBuffer)))
}
clientChannel.flush()
try EventLoopFuture<()>.andAllSucceed(writeFutures, on: clientChannel.eventLoop).wait()
let writeCount = try readPromise.futureResult.map { (_: ByteBuffer) in
// Here we're in the I/O loop, so we know that no further channel action will happen
// while we dispatch this callback. This is the perfect time to check how many writes
// happened.
return writeCounter.writeCount
}.wait()
XCTAssertLessThanOrEqual(writeCount, 3)
}
func testCoalescedWritesWithFutures() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel = try serverTLSChannel(context: context, handlers: [SimpleEchoServer()], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [],
postHandlers: [],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
// We're going to issue a number of small writes. Each of these should be coalesced together
// and all their futures (along with the one for the flush) should fire, in order, with nothing
// missed.
var firedFutures: Array<Int> = []
var writeFutures: [EventLoopFuture<()>] = []
var originalBuffer = clientChannel.allocator.buffer(capacity: 1)
originalBuffer.writeString("A")
for index in 0..<5 {
let promise: EventLoopPromise<Void> = group.next().makePromise()
writeFutures.append(promise.futureResult)
promise.futureResult.map {
XCTAssertEqual(firedFutures.count, index)
firedFutures.append(index)
}.whenFailure { error in
XCTFail("Write promise failed: \(error)")
}
clientChannel.write(NIOAny(originalBuffer), promise: promise)
}
clientChannel.flush()
try EventLoopFuture<()>.andAllSucceed(writeFutures, on: clientChannel.eventLoop).map {
XCTAssertEqual(firedFutures, [0, 1, 2, 3, 4])
}.recover { error in
XCTFail("Write promised failed: \(error)")
}.wait()
}
func testImmediateCloseSatisfiesPromises() throws {
let context = try configuredSSLContext()
let channel = EmbeddedChannel()
try channel.pipeline.addHandler(NIOSSLClientHandler(context: context, serverHostname: nil)).wait()
// Start by initiating the handshake.
try channel.connect(to: SocketAddress(unixDomainSocketPath: "/tmp/doesntmatter")).wait()
// Now call close. This should immediately close, satisfying the promise.
let closePromise: EventLoopPromise<Void> = channel.eventLoop.makePromise()
channel.close(promise: closePromise)
XCTAssertNoThrow(try closePromise.futureResult.wait())
}
func testAddingTlsToActiveChannelStillHandshakes() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let recorderHandler: EventRecorderHandler<TLSUserEvent> = EventRecorderHandler()
let channelActiveWaiter = ChannelActiveWaiter(promise: group.next().makePromise())
let serverChannel = try serverTLSChannel(context: context,
handlers: [recorderHandler, SimpleEchoServer(), channelActiveWaiter],
group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
// Create a client channel without TLS in it, and connect it.
let readPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let promiseOnReadHandler = PromiseOnReadHandler(promise: readPromise)
let clientChannel = try ClientBootstrap(group: group)
.channelInitializer({ $0.pipeline.addHandler(promiseOnReadHandler) })
.connect(to: serverChannel.localAddress!).wait()
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
// Wait until the channel comes up, then confirm that no handshake has been
// received. This hardly proves much, but it's enough.
try channelActiveWaiter.waitForChannelActive()
try group.next().submit {
XCTAssertEqual(recorderHandler.events, [.Registered, .Active])
}.wait()
// Now, add the TLS handler to the pipeline.
try clientChannel.pipeline.addHandler(NIOSSLClientHandler(context: context, serverHostname: nil), position: .first).wait()
var data = clientChannel.allocator.buffer(capacity: 1)
data.writeStaticString("x")
try clientChannel.writeAndFlush(data).wait()
// The echo should come back without error.
_ = try readPromise.futureResult.wait()
// At this point the handshake should be complete.
try group.next().submit {
XCTAssertEqual(recorderHandler.events[..<3], [.Registered, .Active, .UserEvent(.handshakeCompleted(negotiatedProtocol: nil))])
}.wait()
}
func testValidatesHostnameOnConnectionFails() throws {
let serverCtx = try configuredSSLContext()
let clientCtx = try configuredClientContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
try? group.syncShutdownGracefully()
}
let serverChannel = try serverTLSChannel(context: serverCtx,
handlers: [],
group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let errorHandler = ErrorCatcher<NIOSSLExtraError>()
let clientChannel = try clientTLSChannel(context: clientCtx,
preHandlers: [],
postHandlers: [errorHandler],
group: group,
connectingTo: serverChannel.localAddress!)
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
let writeFuture = clientChannel.writeAndFlush(originalBuffer)
let errorsFuture: EventLoopFuture<[NIOSSLExtraError]> = writeFuture.recover { (_: Error) in
// We're swallowing errors here, on purpose, because we'll definitely
// hit them.
return ()
}.map {
return errorHandler.errors
}
let actualErrors = try errorsFuture.wait()
// This write will have failed, but that's fine: we just want it as a signal that
// the handshake is done so we can make our assertions.
let expectedErrors: [NIOSSLExtraError] = [NIOSSLExtraError.failedToValidateHostname]
XCTAssertEqual(expectedErrors, actualErrors)
XCTAssertEqual(actualErrors.first.map { String(describing: $0) }, "NIOSSLExtraError.failedToValidateHostname: Couldn't find <none> in certificate from peer")
}
func testValidatesHostnameOnConnectionSucceeds() throws {
let serverCtx = try configuredSSLContext()
let clientCtx = try configuredClientContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel = try serverTLSChannel(context: serverCtx,
handlers: [],
group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let eventHandler = EventRecorderHandler<TLSUserEvent>()
let clientChannel = try clientTLSChannel(context: clientCtx,
preHandlers: [],
postHandlers: [eventHandler],
group: group,
connectingTo: serverChannel.localAddress!,
serverHostname: "localhost")
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
let writeFuture = clientChannel.writeAndFlush(originalBuffer)
writeFuture.whenComplete { _ in
XCTAssertEqual(eventHandler.events[..<3], [.Registered, .Active, .UserEvent(.handshakeCompleted(negotiatedProtocol: nil))])
}
try writeFuture.wait()
}
func testDontLoseClosePromises() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
var channelClosed = false
defer {
// We know this will throw.
_ = try? serverChannel.finish()
_ = try? clientChannel.finish()
}
let context = try configuredSSLContext()
try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait()
try clientChannel.pipeline.addHandler(try NIOSSLClientHandler(context: context, serverHostname: nil)).wait()
let addr: SocketAddress = try SocketAddress(unixDomainSocketPath: "/tmp/whatever")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
// Ok, we're connected. Good stuff! Now, we want to hit this specific window:
// 1. Call close() on the server channel. This will transition it to the closing state.
// 2. Fire channelInactive on the serverChannel. This should cause it to drop all state and
// fire the close promise.
// Because we're using the embedded channel here, we don't need to worry about thread
// synchronization: all of this should succeed synchronously. If it doesn't, that's
// a bug too!
let closePromise = serverChannel.close()
closePromise.whenComplete { _ in
// This looks like unsynchronized access to channelClosed, but it isn't: as we're
// using EmbeddedChannel here there is no cross-thread hopping.
channelClosed = true
}
XCTAssertFalse(channelClosed)
serverChannel.pipeline.fireChannelInactive()
XCTAssertTrue(channelClosed)
closePromise.map {
XCTFail("Unexpected success")
}.whenFailure { error in
switch error {
case let e as NIOSSLError where e == .uncleanShutdown:
break
default:
XCTFail("Unexpected error: \(error)")
}
}
// Now clean up the client channel. We need to also fire the channel inactive here as there is
// no-one left for the client channel to hang up on.
_ = clientChannel.close()
clientChannel.pipeline.fireChannelInactive()
}
func testTrustStoreOnDisk() throws {
var tempFile: String? = nil
let serverCtx = try configuredSSLContext()
let config: TLSConfiguration = try withTrustBundleInFile(tempFile: &tempFile) {
var config = TLSConfiguration.makeClientConfiguration()
config.certificateVerification = .noHostnameVerification
config.trustRoots = .file($0)
config.certificateChain = [.certificate(NIOSSLIntegrationTest.cert)]
config.privateKey = .privateKey(NIOSSLIntegrationTest.key)
return config
}
defer {
precondition(.some(0) == tempFile.map { unlink($0) }, "couldn't remove temp file \(tempFile.debugDescription)")
}
let clientCtx = try assertNoThrowWithValue(NIOSSLContext(configuration: config))
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverChannel: Channel = try serverTLSChannel(context: serverCtx, handlers: [SimpleEchoServer()], group: group)
defer {
_ = try? serverChannel.close().wait()
}
let clientChannel = try clientTLSChannel(context: clientCtx,
preHandlers: [],
postHandlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
_ = try? clientChannel.close().wait()
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
try clientChannel.writeAndFlush(originalBuffer).wait()
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
}
func testChecksTrustStoreOnDisk() throws {
let serverCtx = try configuredSSLContext()
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .file(FileManager.default.temporaryDirectory.path)
clientConfig.certificateChain = [.certificate(NIOSSLIntegrationTest.cert)]
clientConfig.privateKey = .privateKey(NIOSSLIntegrationTest.key)
let clientCtx = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig))
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel = try serverTLSChannel(context: serverCtx,
handlers: [],
group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let errorHandler = ErrorCatcher<NIOSSLError>()
let clientChannel = try clientTLSChannel(context: clientCtx,
preHandlers: [],
postHandlers: [errorHandler],
group: group,
connectingTo: serverChannel.localAddress!)
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
let writeFuture = clientChannel.writeAndFlush(originalBuffer)
let errorsFuture: EventLoopFuture<[NIOSSLError]> = writeFuture.recover { (_: Error) in
// We're swallowing errors here, on purpose, because we'll definitely
// hit them.
return ()
}.map {
return errorHandler.errors
}
let actualErrors = try errorsFuture.wait()
// The actual error is non-deterministic depending on platform and version, so we don't
// really try to make too many assertions here.
XCTAssertEqual(actualErrors.count, 1)
try clientChannel.closeFuture.wait()
}
func testReadAfterCloseNotifyDoesntKillProcess() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
let context = try configuredSSLContext()
try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait()
try clientChannel.pipeline.addHandler(try NIOSSLClientHandler(context: context, serverHostname: nil)).wait()
let addr = try SocketAddress(unixDomainSocketPath: "/tmp/whatever2")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
// Ok, we're connected. Now we want to close the server, and have that trigger a client CLOSE_NOTIFY.
// However, when we deliver that CLOSE_NOTIFY we're then going to immediately send another chunk of
// data. We can get away with doing this because the Embedded channel fires any promise for close()
// before it fires channelInactive, which will allow us to fire channelRead from within the callback.
let closePromise = serverChannel.close()
closePromise.whenComplete { _ in
var buffer = serverChannel.allocator.buffer(capacity: 5)
buffer.writeStaticString("hello")
serverChannel.pipeline.fireChannelRead(NIOAny(buffer))
serverChannel.pipeline.fireChannelReadComplete()
}
XCTAssertNoThrow(try serverChannel.throwIfErrorCaught())
XCTAssertThrowsError(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)) { error in
XCTAssertEqual(.readInInvalidTLSState, error as? NIOSSLError)
}
}
func testUnprocessedDataOnReadPathBeforeClosing() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
let context = try configuredSSLContext()
let completePromise: EventLoopPromise<ByteBuffer> = serverChannel.eventLoop.makePromise()
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait())
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(ReadRecordingHandler(completePromise: completePromise)).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(try NIOSSLClientHandler(context: context, serverHostname: nil)).wait())
let addr = try SocketAddress(unixDomainSocketPath: "/tmp/whatever2")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
// Ok, we're connected. Now we want to close the server, and have that trigger a client CLOSE_NOTIFY.
// After the CLOSE_NOTIFY create another chunk of data.
let serverClosePromise = serverChannel.close()
// Create a new chunk of data after the close.
var clientBuffer = clientChannel.allocator.buffer(capacity: 5)
clientBuffer.writeStaticString("hello")
_ = try clientChannel.writeAndFlush(clientBuffer).wait()
let clientClosePromise = clientChannel.close()
// Use interactInMemory to finish the reads and writes.
XCTAssertNoThrow(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel))
XCTAssertNoThrow(try clientClosePromise.wait())
XCTAssertNoThrow(try serverClosePromise.wait())
// Now check what we read.
var readData = try assertNoThrowWithValue(completePromise.futureResult.wait())
XCTAssertEqual(readData.readString(length: readData.readableBytes)!, "hello")
}
func testZeroLengthWrite() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
try? group.syncShutdownGracefully()
}
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverChannel = try serverTLSChannel(context: context,
handlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group)
defer {
_ = try? serverChannel.close().wait()
}
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [],
postHandlers: [],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
_ = try? clientChannel.close().wait()
}
// Write several zero-length buffers *and* one with some actual data. Only one should
// be written.
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
let promises = (0...5).map { (_: Int) in clientChannel.write(originalBuffer) }
originalBuffer.writeStaticString("hello")
_ = try clientChannel.writeAndFlush(originalBuffer).wait()
// At this time all the writes should have succeeded.
for promise in promises {
XCTAssertNoThrow(try promise.wait())
}
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
}
func testZeroLengthWritePromisesFireInOrder() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
_ = try? serverChannel.finish()
_ = try? clientChannel.finish()
}
let context = try configuredSSLContext()
try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait()
try clientChannel.pipeline.addHandler(try NIOSSLClientHandler(context: context, serverHostname: nil)).wait()
let addr = try SocketAddress(unixDomainSocketPath: "/tmp/whatever2")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
// This test fires three writes, flushing between them all. We want to confirm that all of the
// writes are succeeded in order. To do that, we want to add a WriteDelayHandler to
// prevent the EmbeddedChannel succeeding the early writes.
let writeDelayer = WriteDelayHandler()
try clientChannel.pipeline.addHandler(writeDelayer, position: .first).wait()
var writeCount = 0
let emptyBuffer = clientChannel.allocator.buffer(capacity: 16)
var buffer = clientChannel.allocator.buffer(capacity: 16)
buffer.writeStaticString("hello world")
clientChannel.write(buffer).whenComplete { _ in
XCTAssertEqual(writeCount, 0)
writeCount = 1
}
clientChannel.flush()
clientChannel.write(emptyBuffer).whenComplete { _ in
XCTAssertEqual(writeCount, 1)
writeCount = 2
}
clientChannel.flush()
clientChannel.write(buffer).whenComplete { _ in
XCTAssertEqual(writeCount, 2)
writeCount = 3
}
clientChannel.flush()
XCTAssertEqual(writeCount, 0)
writeDelayer.forceFlush()
XCTAssertEqual(writeCount, 3)
serverChannel.pipeline.fireChannelInactive()
clientChannel.pipeline.fireChannelInactive()
}
func testEncryptedFileInContext() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [SimpleEchoServer()], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [],
postHandlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
try clientChannel.writeAndFlush(originalBuffer).wait()
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
}
func testFlushPendingReadsOnCloseNotify() throws {
let context = try assertNoThrowWithValue(configuredSSLContext())
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
_ = try? serverChannel.finish()
_ = try? clientChannel.finish()
}
let completePromise: EventLoopPromise<ByteBuffer> = serverChannel.eventLoop.makePromise()
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait())
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(ReadRecordingHandler(completePromise: completePromise)).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(try NIOSSLClientHandler(context: context, serverHostname: nil)).wait())
// Connect
let addr = try assertNoThrowWithValue(SocketAddress(unixDomainSocketPath: "/tmp/whatever2"))
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
XCTAssertNoThrow(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel))
XCTAssertNoThrow(try connectFuture.wait())
// Here we want to issue a write, a flush, and then a close. This will trigger a CLOSE_NOTIFY message to be emitted by the
// client. Unfortunately, interactInMemory doesn't do quite what we want, as we need to coalesce all these writes, so
// we'll have to do some of this ourselves.
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
clientChannel.writeAndFlush(originalBuffer, promise: nil)
let clientClosePromise = clientChannel.close()
var buffer = clientChannel.allocator.buffer(capacity: 1024)
while case .some(.byteBuffer(var data)) = try clientChannel.readOutbound(as: IOData.self) {
buffer.writeBuffer(&data)
}
XCTAssertNoThrow(try serverChannel.writeInbound(buffer))
// Now we can interact. The server should close.
XCTAssertNoThrow(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel))
XCTAssertNoThrow(try clientClosePromise.wait())
// Now check what we read.
var readData = try assertNoThrowWithValue(completePromise.futureResult.wait())
XCTAssertEqual(readData.readString(length: readData.readableBytes)!, "Hello")
}
@available(*, deprecated, message: "Testing deprecated API surface")
func testForcingVerificationFailure() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let errorHandler = ErrorCatcher<NIOSSLError>()
let clientChannel = try clientTLSChannel(context: try configuredClientContext(),
preHandlers: [],
postHandlers: [errorHandler],
group: group,
connectingTo: serverChannel.localAddress!,
verificationCallback: { preverify, certificate in
XCTAssertEqual(preverify, .certificateVerified)
return .failed
})
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
let writeFuture = clientChannel.writeAndFlush(originalBuffer)
let errorsFuture: EventLoopFuture<[NIOSSLError]> = writeFuture.recover { (_: Error) in
// We're swallowing errors here, on purpose, because we'll definitely
// hit them.
return ()
}.map {
return errorHandler.errors
}
let actualErrors = try errorsFuture.wait()
// This write will have failed, but that's fine: we just want it as a signal that
// the handshake is done so we can make our assertions.
XCTAssertEqual(actualErrors.count, 1)
switch actualErrors.first! {
case .handshakeFailed:
// expected
break
case let error:
XCTFail("Unexpected error: \(error)")
}
}
@available(*, deprecated, message: "Testing deprecated API surface")
func testExtractingCertificates() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [SimpleEchoServer()], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
var certificates = [NIOSSLCertificate]()
let clientChannel = try clientTLSChannel(context: configuredClientContext(),
preHandlers: [],
postHandlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group,
connectingTo: serverChannel.localAddress!,
serverHostname: "localhost",
verificationCallback: { verify, certificate in
certificates.append(certificate)
return verify
})
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
XCTAssertNoThrow(try clientChannel.writeAndFlush(originalBuffer).wait())
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
XCTAssertEqual(certificates.count, 1)
}
func testForcingVerificationFailureNewCallback() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let handshakeResultPromise = group.next().makePromise(of: Void.self)
let handshakeWatcher = WaitForHandshakeHandler(handshakeResultPromise: handshakeResultPromise)
let clientChannel = try clientTLSChannel(context: try configuredClientContext(),
preHandlers: [],
postHandlers: [handshakeWatcher],
group: group,
connectingTo: serverChannel.localAddress!,
customVerificationCallback: { _, promise in
promise.succeed(.failed)
})
defer {
// Ignore errors here, the channel should be closed already by the time this happens.
try? clientChannel.close().wait()
}
XCTAssertThrowsError(try handshakeResultPromise.futureResult.wait())
}
func testErroringNewVerificationCallback() throws {
enum LocalError: Error {
case kaboom
}
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let handshakeResultPromise = group.next().makePromise(of: Void.self)
let handshakeWatcher = WaitForHandshakeHandler(handshakeResultPromise: handshakeResultPromise)
let clientChannel = try clientTLSChannel(context: try configuredClientContext(),
preHandlers: [],
postHandlers: [handshakeWatcher],
group: group,
connectingTo: serverChannel.localAddress!,
customVerificationCallback: { _, promise in
promise.fail(LocalError.kaboom)
})
defer {
// Ignore errors here, the channel should be closed already by the time this happens.
try? clientChannel.close().wait()
}
XCTAssertThrowsError(try handshakeResultPromise.futureResult.wait())
}
func testNewCallbackCanDelayHandshake() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
var completionPromiseFired: Bool = false
let completionPromiseFiredLock = Lock()
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
completionPromise.futureResult.whenComplete { _ in
completionPromiseFiredLock.withLock {
completionPromiseFired = true
}
}
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [SimpleEchoServer()], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
var handshakeCompletePromise: EventLoopPromise<NIOSSLVerificationResult>? = nil
let handshakeFiredPromise: EventLoopPromise<Void> = group.next().makePromise()
let clientChannel = try clientTLSChannel(context: configuredClientContext(),
preHandlers: [],
postHandlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group,
connectingTo: serverChannel.localAddress!,
serverHostname: "localhost",
customVerificationCallback: { innerCertificates, promise in
handshakeCompletePromise = promise
handshakeFiredPromise.succeed(())
})
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
clientChannel.writeAndFlush(originalBuffer, promise: nil)
// This has driven the handshake to begin, so we can wait for that.
XCTAssertNoThrow(try handshakeFiredPromise.futureResult.wait())
// We can now check whether the completion promise has fired: it should not have.
completionPromiseFiredLock.withLock {
XCTAssertFalse(completionPromiseFired)
}
// Ok, allow the handshake to run.
handshakeCompletePromise!.succeed(.certificateVerified)
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
}
func testExtractingCertificatesNewCallback() throws {
let context = try configuredSSLContext()
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [SimpleEchoServer()], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
var certificates = [NIOSSLCertificate]()
let clientChannel = try clientTLSChannel(context: configuredClientContext(),
preHandlers: [],
postHandlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group,
connectingTo: serverChannel.localAddress!,
serverHostname: "localhost",
customVerificationCallback: { innerCertificates, promise in
certificates = innerCertificates
promise.succeed(.certificateVerified)
})
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
XCTAssertNoThrow(try clientChannel.writeAndFlush(originalBuffer).wait())
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
XCTAssertEqual(certificates, [NIOSSLIntegrationTest.cert])
}
func testNewCallbackCombinedWithDefaultTrustStore() throws {
// This test is mostly useful on macOS, where it previously failed due to an excessive assertion.
let serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(NIOSSLIntegrationTest.cert)],
privateKey: .privateKey(NIOSSLIntegrationTest.key)
)
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.certificateVerification = .fullVerification
clientConfig.trustRoots = .default
let serverContext = try assertNoThrowWithValue(NIOSSLContext(configuration: serverConfig))
let clientContext = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig))
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel: Channel = try serverTLSChannel(context: serverContext, handlers: [], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let handshakeCompletePromise = group.next().makePromise(of: Void.self)
let customCallbackCalledPromise = group.next().makePromise(of: Void.self)
let clientChannel = try clientTLSChannel(context: clientContext,
preHandlers: [],
postHandlers: [WaitForHandshakeHandler(handshakeResultPromise: handshakeCompletePromise)],
group: group,
connectingTo: serverChannel.localAddress!,
serverHostname: "localhost",
customVerificationCallback: { _, promise in
// Note that we override certificate verification here.
customCallbackCalledPromise.succeed(())
promise.succeed(.certificateVerified)
})
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
XCTAssertNoThrow(try customCallbackCalledPromise.futureResult.wait())
XCTAssertNoThrow(try handshakeCompletePromise.futureResult.wait())
}
func testMacOSVerificationCallbackIsNotUsedIfVerificationDisabled() throws {
// This test is mostly useful on macOS, where it validates that disabling verification actually, well,
// disables verification.
let serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(NIOSSLIntegrationTest.cert)],
privateKey: .privateKey(NIOSSLIntegrationTest.key)
)
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.certificateVerification = .none
clientConfig.trustRoots = .default
let serverContext = try assertNoThrowWithValue(NIOSSLContext(configuration: serverConfig))
let clientContext = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig))
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel: Channel = try serverTLSChannel(context: serverContext, handlers: [], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let handshakeCompletePromise = group.next().makePromise(of: Void.self)
let clientChannel = try clientTLSChannel(context: clientContext,
preHandlers: [],
postHandlers: [WaitForHandshakeHandler(handshakeResultPromise: handshakeCompletePromise)],
group: group,
connectingTo: serverChannel.localAddress!,
serverHostname: "localhost")
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
// This connection should succeed, as certificate verification is disabled.
XCTAssertNoThrow(try handshakeCompletePromise.futureResult.wait())
}
func testServerHasNewCallbackCalledToo() throws {
var config = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(NIOSSLIntegrationTest.cert)],
privateKey: .privateKey(NIOSSLIntegrationTest.key)
)
config.certificateVerification = .fullVerification
config.trustRoots = .default
let context = try assertNoThrowWithValue(NIOSSLContext(configuration: config))
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let handshakeResultPromise = group.next().makePromise(of: Void.self)
let handshakeWatcher = WaitForHandshakeHandler(handshakeResultPromise: handshakeResultPromise)
let serverChannel: Channel = try serverTLSChannel(context: context,
preHandlers: [],
postHandlers: [handshakeWatcher],
group: group,
customVerificationCallback: { _, promise in
promise.succeed(.failed)
})
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let clientChannel = try clientTLSChannel(context: try configuredSSLContext(),
preHandlers: [],
postHandlers: [],
group: group,
connectingTo: serverChannel.localAddress!)
defer {
// Ignore errors here, the channel should be closed already by the time this happens.
try? clientChannel.close().wait()
}
XCTAssertThrowsError(try handshakeResultPromise.futureResult.wait())
}
func testRepeatedClosure() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
// We expect both cases to throw
XCTAssertThrowsError(try serverChannel.finish())
XCTAssertThrowsError(try clientChannel.finish())
}
let context = try assertNoThrowWithValue(configuredSSLContext())
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(NIOSSLClientHandler(context: context, serverHostname: nil)).wait())
let handshakeHandler = HandshakeCompletedHandler()
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(handshakeHandler).wait())
// Connect. This should lead to a completed handshake.
let addr: SocketAddress = try SocketAddress(unixDomainSocketPath: "/tmp/whatever")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
XCTAssertTrue(handshakeHandler.handshakeSucceeded)
// We're going to close twice: the first one without a promise, the second one with one.
var closed = false
clientChannel.close(promise: nil)
clientChannel.close().whenComplete { _ in
closed = true
}
XCTAssertFalse(closed)
XCTAssertNoThrow(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel))
// The closure should have happened.
XCTAssertTrue(closed)
}
func testClosureTimeout() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
// We expect both cases to throw
XCTAssertThrowsError(try serverChannel.finish())
XCTAssertThrowsError(try clientChannel.finish())
}
let context = try assertNoThrowWithValue(configuredSSLContext())
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(NIOSSLClientHandler(context: context, serverHostname: nil)).wait())
let handshakeHandler = HandshakeCompletedHandler()
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(handshakeHandler).wait())
// Connect. This should lead to a completed handshake.
let addr: SocketAddress = try SocketAddress(unixDomainSocketPath: "/tmp/whatever")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
XCTAssertTrue(handshakeHandler.handshakeSucceeded)
var closed = false
clientChannel.close().whenComplete { _ in
closed = true
}
clientChannel.close().whenFailure { error in
XCTAssertTrue(error is NIOSSLCloseTimedOutError)
}
// Send CLOSE_NOTIFY from the client.
while let clientDatum = try clientChannel.readOutbound(as: IOData.self) {
try serverChannel.writeInbound(clientDatum)
}
XCTAssertFalse(closed)
// Let the shutdown timeout.
clientChannel.embeddedEventLoop.advanceTime(by: context.configuration.shutdownTimeout)
XCTAssertTrue(closed)
// Let the server shutdown.
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
}
func testReceivingGibberishAfterAttemptingToClose() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
var clientClosed = false
defer {
XCTAssertThrowsError(try serverChannel.finish())
XCTAssertThrowsError(try clientChannel.finish())
}
let context = try assertNoThrowWithValue(configuredSSLContext())
let clientHandler = try assertNoThrowWithValue(NIOSSLClientHandler(context: context, serverHostname: nil))
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(clientHandler).wait())
let handshakeHandler = HandshakeCompletedHandler()
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(handshakeHandler).wait())
// Mark the closure of the client.
clientChannel.closeFuture.whenComplete { _ in
clientClosed = true
}
// Connect. This should lead to a completed handshake.
let addr: SocketAddress = try SocketAddress(unixDomainSocketPath: "/tmp/whatever")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
XCTAssertTrue(handshakeHandler.handshakeSucceeded)
// Let's close the client connection.
clientChannel.close(promise: nil)
(clientChannel.eventLoop as! EmbeddedEventLoop).run()
XCTAssertFalse(clientClosed)
// Now we're going to simulate the client receiving gibberish data in response, instead
// of a CLOSE_NOTIFY.
var buffer = clientChannel.allocator.buffer(capacity: 1024)
buffer.writeStaticString("GET / HTTP/1.1\r\nHost: localhost\r\nContent-Length: 0\r\n\r\n")
XCTAssertThrowsError(try clientChannel.writeInbound(buffer)) { error in
XCTAssertEqual(String(describing: error), "sslError([Error: 268435703 error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER])")
}
(clientChannel.eventLoop as! EmbeddedEventLoop).run()
XCTAssertTrue(clientClosed)
// Clean up by bringing the server up to speed
serverChannel.pipeline.fireChannelInactive()
}
func testPendingWritesFailWhenFlushedOnClose() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
XCTAssertThrowsError(try serverChannel.finish())
XCTAssertThrowsError(try clientChannel.finish())
}
let context = try assertNoThrowWithValue(configuredSSLContext())
let clientHandler = try assertNoThrowWithValue(NIOSSLClientHandler(context: context, serverHostname: nil))
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(clientHandler).wait())
let handshakeHandler = HandshakeCompletedHandler()
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(handshakeHandler).wait())
// Connect. This should lead to a completed handshake.
let addr: SocketAddress = try SocketAddress(unixDomainSocketPath: "/tmp/whatever")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
XCTAssertTrue(handshakeHandler.handshakeSucceeded)
// Queue up a write.
var writeCompleted = false
var buffer = clientChannel.allocator.buffer(capacity: 1024)
buffer.writeStaticString("Hello, world!")
clientChannel.write(buffer).map {
XCTFail("Must not succeed")
}.whenFailure { error in
XCTAssertEqual(error as? ChannelError, .ioOnClosedChannel)
writeCompleted = true
}
// We haven't spun the event loop, so the handlers are still in the pipeline. Now attempt to close.
var closed = false
clientChannel.closeFuture.whenComplete { _ in
closed = true
}
XCTAssertFalse(writeCompleted)
clientChannel.close(promise: nil)
(clientChannel.eventLoop as! EmbeddedEventLoop).run()
XCTAssertFalse(writeCompleted)
XCTAssertFalse(closed)
// Now try to flush the write. This should fail the write early, and take out the connection.
clientChannel.flush()
(clientChannel.eventLoop as! EmbeddedEventLoop).run()
XCTAssertTrue(writeCompleted)
XCTAssertTrue(closed)
// Bring the server up to speed.
serverChannel.pipeline.fireChannelInactive()
}
func testChannelInactiveAfterCloseNotify() throws {
class SecondChannelInactiveSwallower: ChannelInboundHandler {
typealias InboundIn = Any
private var channelInactiveCalls = 0
func channelInactive(context: ChannelHandlerContext) {
if self.channelInactiveCalls == 0 {
self.channelInactiveCalls += 1
context.fireChannelInactive()
}
}
}
class FlushOnReadHandler: ChannelInboundHandler {
typealias InboundIn = Any
func channelRead(context: ChannelHandlerContext, data: NIOAny) {
context.pipeline.fireChannelInactive()
}
}
let context = try assertNoThrowWithValue(configuredSSLContext())
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
_ = try? serverChannel.finish()
// The client channel is closed in the test.
}
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(SecondChannelInactiveSwallower()).wait())
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait())
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(FlushOnReadHandler()).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(try NIOSSLClientHandler(context: context, serverHostname: nil)).wait())
// Connect
let addr = try assertNoThrowWithValue(SocketAddress(unixDomainSocketPath: "/tmp/whatever2"))
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
XCTAssertNoThrow(try serverChannel.connect(to: SocketAddress(ipAddress: "1.2.3.4", port: 5678)).wait())
XCTAssertNoThrow(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel))
XCTAssertNoThrow(try connectFuture.wait())
// Here we want to issue a write, a flush, and then a close. This will trigger a CLOSE_NOTIFY message to be emitted by the
// client. Unfortunately, interactInMemory doesn't do quite what we want, as we need to coalesce all these writes, so
// we'll have to do some of this ourselves.
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
let clientClose = clientChannel.writeAndFlush(originalBuffer)
clientChannel.close(promise: nil)
var buffer = clientChannel.allocator.buffer(capacity: 1024)
while case .some(.byteBuffer(var data)) = try clientChannel.readOutbound(as: IOData.self) {
buffer.writeBuffer(&data)
}
// The client has sent CLOSE_NOTIFY, so the server will unbuffer any reads it has. This in turn
// causes channelInactive to be fired back into the SSL handler.
XCTAssertThrowsError(try serverChannel.writeInbound(buffer)) { error in
XCTAssertEqual(NIOSSLError.uncleanShutdown, error as? NIOSSLError)
}
XCTAssertNoThrow(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel))
XCTAssertNoThrow(try clientClose.wait())
}
func testKeyLoggingClientAndServer() throws {
var clientLines: [ByteBuffer] = []
var serverLines: [ByteBuffer] = []
let clientContext = try assertNoThrowWithValue(self.configuredSSLContext(keyLogCallback: { clientLines.append($0) }))
let serverContext = try assertNoThrowWithValue(self.configuredSSLContext(keyLogCallback: { serverLines.append($0) }))
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
// These error as the channel is already closed.
XCTAssertThrowsError(try serverChannel.finish())
XCTAssertThrowsError(try clientChannel.finish())
}
// Handshake
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(NIOSSLClientHandler(context: clientContext, serverHostname: nil)).wait())
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: serverContext)).wait())
let handshakeHandler = HandshakeCompletedHandler()
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(handshakeHandler).wait())
// Connect. This should lead to a completed handshake.
let addr: SocketAddress = try SocketAddress(unixDomainSocketPath: "/tmp/whatever")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
XCTAssertTrue(handshakeHandler.handshakeSucceeded)
// In our code this should do TLS 1.3, so we expect 5 lines each.
XCTAssertEqual(clientLines.count, 5)
XCTAssertEqual(serverLines.count, 5)
// Each in the same order.
XCTAssertEqual(clientLines, serverLines)
// Each line should be newline terminated.
for line in clientLines {
XCTAssertTrue(line.readableBytesView.last! == UInt8(ascii: "\n"))
}
for line in serverLines {
XCTAssertTrue(line.readableBytesView.last! == UInt8(ascii: "\n"))
}
// Close and let the two channels shutdown.
clientChannel.close(promise: nil)
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
}
func testLoadsOfCloses() throws {
let context = try configuredSSLContext()
// 3 threads so server, client, and accepted all have their own thread.
let group = MultiThreadedEventLoopGroup(numberOfThreads: 3)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let serverChannel: Channel = try serverTLSChannel(context: context, handlers: [], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let clientChannel = try clientTLSChannel(context: context,
preHandlers: [],
postHandlers: [],
group: group,
connectingTo: serverChannel.localAddress!)
let closeFutures = (0..<20).map { _ in
clientChannel.close()
}
XCTAssertNoThrow(try EventLoopFuture<Void>.andAllComplete(closeFutures, on: clientChannel.eventLoop).wait())
}
func testWriteFromFailureOfWrite() throws {
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
// Both were closed uncleanly in the test, so they'll throw.
XCTAssertThrowsError(try serverChannel.finish())
XCTAssertThrowsError(try clientChannel.finish())
}
let context = try configuredSSLContext()
try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: context)).wait()
try clientChannel.pipeline.addHandler(try NIOSSLClientHandler(context: context, serverHostname: nil)).wait()
// Do the handshake.
let addr: SocketAddress = try SocketAddress(unixDomainSocketPath: "/tmp/whatever")
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
try connectFuture.wait()
// Ok, we're gonna do a weird thing here. We're going to queue up a write, whose write promise is going
// to issue another write. In older builds, this would crash due to an exclusivity violation.
var buffer = clientChannel.allocator.buffer(capacity: 1024)
buffer.writeBytes("Hello, world!".utf8)
clientChannel.write(buffer).whenComplete { _ in
clientChannel.writeAndFlush(buffer, promise: nil)
}
// Now we're going to fire channel inactive on the client. This used to crash: now it doesn't.
clientChannel.pipeline.fireChannelInactive()
// Do the same for the server, but we don't care about the outcome.
serverChannel.pipeline.fireChannelInactive()
}
func testTrustedFirst() throws {
// We need to explain this test a bit.
//
// BoringSSL has a flag: X509_V_FLAG_TRUSTED_FIRST. This flag affects the way the X509 verifier works. In particular,
// it causes the verifier to look for certificates in the trust store _before_ it looks for them in the chain. This
// is important, because some misbehaving clients may send an excessively long chain that, in some cases, includes
// certificates we don't trust!
//
// In this case, the server has a cert that was signed by a CA whose original certificate has expired. We, the client,
// have a valid root certificate for the intermediate that _actually_ issued the key, which is now a root, as
// well as the old cert. (This is important! If we don't also have the old cert, this fails.)
// The server is, stupidly, also sending the old, _expired_, CA root cert. This test validates that we
// ignore the dumb server and get to the valid trust chain anyway.
let oldCA = try NIOSSLCertificate(bytes: Array(sampleExpiredCA.utf8), format: .pem)
let oldIntermediate = try NIOSSLCertificate(bytes: Array(sampleIntermediateCA.utf8), format: .pem)
let newCA = try NIOSSLCertificate(bytes: Array(sampleIntermediateAsRootCA.utf8), format: .pem)
let serverCert = try NIOSSLCertificate(bytes: Array(sampleClientOfIntermediateCA.utf8), format: .pem)
let serverKey = try NIOSSLPrivateKey(bytes: Array(sampleKeyForCertificateOfClientOfIntermediateCA.utf8), format: .pem)
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.trustRoots = .certificates([newCA, oldCA])
let serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(serverCert), .certificate(oldIntermediate), .certificate(oldCA)],
privateKey: .privateKey(serverKey)
)
let clientContext = try NIOSSLContext(configuration: clientConfig)
let serverContext = try NIOSSLContext(configuration: serverConfig)
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let completionPromise: EventLoopPromise<ByteBuffer> = group.next().makePromise()
let serverChannel: Channel = try serverTLSChannel(context: serverContext, handlers: [SimpleEchoServer()], group: group)
defer {
XCTAssertNoThrow(try serverChannel.close().wait())
}
let clientChannel = try clientTLSChannel(context: clientContext,
preHandlers: [],
postHandlers: [PromiseOnReadHandler(promise: completionPromise)],
group: group,
connectingTo: serverChannel.localAddress!,
serverHostname: "localhost")
defer {
XCTAssertNoThrow(try clientChannel.close().wait())
}
var originalBuffer = clientChannel.allocator.buffer(capacity: 5)
originalBuffer.writeString("Hello")
try clientChannel.writeAndFlush(originalBuffer).wait()
let newBuffer = try completionPromise.futureResult.wait()
XCTAssertEqual(newBuffer, originalBuffer)
}
}
|