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
|
//===----------------------------------------------------------------------===//
//
// 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 NIO
@testable import NIOSSL
import NIOTLS
class ErrorCatcher<T: Error>: ChannelInboundHandler {
public typealias InboundIn = Any
public var errors: [T]
public init() {
errors = []
}
public func errorCaught(context: ChannelHandlerContext, error: Error) {
errors.append(error as! T)
}
}
class HandshakeCompletedHandler: ChannelInboundHandler {
public typealias InboundIn = Any
public var handshakeSucceeded = false
public func userInboundEventTriggered(context: ChannelHandlerContext, event: Any) {
if let event = event as? TLSUserEvent, case .handshakeCompleted = event {
self.handshakeSucceeded = true
}
context.fireUserInboundEventTriggered(event)
}
}
class WaitForHandshakeHandler: ChannelInboundHandler {
public typealias InboundIn = Any
public var handshakeResult: EventLoopFuture<Void> {
return self.handshakeResultPromise.futureResult
}
private var handshakeResultPromise: EventLoopPromise<Void>
init(handshakeResultPromise: EventLoopPromise<Void>) {
self.handshakeResultPromise = handshakeResultPromise
}
public func userInboundEventTriggered(context: ChannelHandlerContext, event: Any) {
if let event = event as? TLSUserEvent, case .handshakeCompleted = event {
self.handshakeResultPromise.succeed(())
}
context.fireUserInboundEventTriggered(event)
}
public func errorCaught(context: ChannelHandlerContext, error: Error) {
if let error = error as? NIOSSLError, case .handshakeFailed = error {
self.handshakeResultPromise.fail(error)
}
context.fireErrorCaught(error)
}
}
class TLSConfigurationTest: XCTestCase {
static var cert1: NIOSSLCertificate!
static var key1: NIOSSLPrivateKey!
static var cert2: NIOSSLCertificate!
static var key2: NIOSSLPrivateKey!
override class func setUp() {
super.setUp()
var (cert, key) = generateSelfSignedCert()
TLSConfigurationTest.cert1 = cert
TLSConfigurationTest.key1 = key
(cert, key) = generateSelfSignedCert()
TLSConfigurationTest.cert2 = cert
TLSConfigurationTest.key2 = key
}
func assertHandshakeError(withClientConfig clientConfig: TLSConfiguration,
andServerConfig serverConfig: TLSConfiguration,
errorTextContains message: String,
file: StaticString = #file,
line: UInt = #line) throws {
return try assertHandshakeError(withClientConfig: clientConfig,
andServerConfig: serverConfig,
errorTextContainsAnyOf: [message],
file: file,
line: line)
}
func assertHandshakeError(withClientConfig clientConfig: TLSConfiguration,
andServerConfig serverConfig: TLSConfiguration,
errorTextContainsAnyOf messages: [String],
file: StaticString = #file,
line: UInt = #line) throws {
let clientContext = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig), file: file, line: line)
let serverContext = try assertNoThrowWithValue(NIOSSLContext(configuration: serverConfig), file: file, line: line)
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let eventHandler = ErrorCatcher<NIOSSLError>()
let handshakeHandler = HandshakeCompletedHandler()
let serverChannel = try assertNoThrowWithValue(serverTLSChannel(context: serverContext, handlers: [], group: group), file: file, line: line)
let clientChannel = try assertNoThrowWithValue(clientTLSChannel(context: clientContext, preHandlers:[], postHandlers: [eventHandler, handshakeHandler], group: group, connectingTo: serverChannel.localAddress!), file: file, line: line)
// We expect the channel to be closed fairly swiftly as the handshake should fail.
clientChannel.closeFuture.whenComplete { _ in
XCTAssertEqual(eventHandler.errors.count, 1)
switch eventHandler.errors[0] {
case .handshakeFailed(.sslError(let errs)):
let correctError: Bool = messages.map { errs[0].description.contains($0) }.reduce(false) { $0 || $1 }
XCTAssert(correctError, errs[0].description, file: (file), line: line)
default:
XCTFail("Unexpected error: \(eventHandler.errors[0])", file: (file), line: line)
}
XCTAssertFalse(handshakeHandler.handshakeSucceeded, file: (file), line: line)
}
try clientChannel.closeFuture.wait()
}
func assertPostHandshakeError(withClientConfig clientConfig: TLSConfiguration,
andServerConfig serverConfig: TLSConfiguration,
errorTextContainsAnyOf messages: [String],
file: StaticString = #file,
line: UInt = #line) throws {
let clientContext = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig), file: file, line: line)
let serverContext = try assertNoThrowWithValue(NIOSSLContext(configuration: serverConfig), file: file, line: line)
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let eventHandler = ErrorCatcher<BoringSSLError>()
let handshakeHandler = HandshakeCompletedHandler()
let serverChannel = try assertNoThrowWithValue(serverTLSChannel(context: serverContext, handlers: [], group: group), file: file, line: line)
let clientChannel = try assertNoThrowWithValue(clientTLSChannel(context: clientContext, preHandlers:[], postHandlers: [eventHandler, handshakeHandler], group: group, connectingTo: serverChannel.localAddress!), file: file, line: line)
// We expect the channel to be closed fairly swiftly as the handshake should fail.
clientChannel.closeFuture.whenComplete { _ in
XCTAssertEqual(eventHandler.errors.count, 1, file: (file), line: line)
switch eventHandler.errors[0] {
case .sslError(let errs):
XCTAssertEqual(errs.count, 1, file: (file), line: line)
let correctError: Bool = messages.map { errs[0].description.contains($0) }.reduce(false) { $0 || $1 }
XCTAssert(correctError, errs[0].description, file: (file), line: line)
default:
XCTFail("Unexpected error: \(eventHandler.errors[0])", file: (file), line: line)
}
XCTAssertTrue(handshakeHandler.handshakeSucceeded, file: (file), line: line)
}
try clientChannel.closeFuture.wait()
}
/// Performs a connection in memory and validates that the handshake was successful.
///
/// - NOTE: This function should only be used when you know that there is no custom verification
/// callback in use, otherwise it will not be thread-safe.
func assertHandshakeSucceededInMemory(withClientConfig clientConfig: TLSConfiguration,
andServerConfig serverConfig: TLSConfiguration,
file: StaticString = #file,
line: UInt = #line) throws {
let clientContext = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig))
let serverContext = try assertNoThrowWithValue(NIOSSLContext(configuration: serverConfig))
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
// We expect the server case to throw
_ = try? serverChannel.finish()
_ = try? clientChannel.finish()
}
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: serverContext)).wait(), file: (file), line: line)
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(NIOSSLClientHandler(context: clientContext, serverHostname: nil)).wait(), file: (file), line: line)
let handshakeHandler = HandshakeCompletedHandler()
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(handshakeHandler).wait(), file: (file), line: line)
// Connect. This should lead to a completed handshake.
XCTAssertNoThrow(try connectInMemory(client: clientChannel, server: serverChannel), file: (file), line: line)
XCTAssertTrue(handshakeHandler.handshakeSucceeded, file: (file), line: line)
_ = serverChannel.close()
try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel)
}
/// Performs a connection using a real event loop and validates that the handshake was successful.
///
/// This function is thread-safe in the presence of custom verification callbacks.
func assertHandshakeSucceededEventLoop(withClientConfig clientConfig: TLSConfiguration,
andServerConfig serverConfig: TLSConfiguration,
file: StaticString = #file,
line: UInt = #line) throws {
let clientContext = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig), file: file, line: line)
let serverContext = try assertNoThrowWithValue(NIOSSLContext(configuration: serverConfig), file: file, line: line)
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let eventHandler = ErrorCatcher<BoringSSLError>()
let handshakeHandler = HandshakeCompletedHandler()
let handshakeResultPromise = group.next().makePromise(of: Void.self)
let handshakeWatcher = WaitForHandshakeHandler(handshakeResultPromise: handshakeResultPromise)
let serverChannel = try assertNoThrowWithValue(serverTLSChannel(context: serverContext, handlers: [], group: group), file: file, line: line)
let clientChannel = try assertNoThrowWithValue(clientTLSChannel(context: clientContext, preHandlers:[], postHandlers: [eventHandler, handshakeWatcher, handshakeHandler], group: group, connectingTo: serverChannel.localAddress!), file: file, line: line)
handshakeWatcher.handshakeResult.whenComplete { c in
_ = clientChannel.close()
}
clientChannel.closeFuture.whenComplete { _ in
XCTAssertEqual(eventHandler.errors.count, 0, file: file, line: line)
XCTAssertTrue(handshakeHandler.handshakeSucceeded, file: file, line: line)
}
try clientChannel.closeFuture.wait()
}
func assertHandshakeSucceeded(withClientConfig clientConfig: TLSConfiguration,
andServerConfig serverConfig: TLSConfiguration,
file: StaticString = #file,
line: UInt = #line) throws {
// The only use of a custom callback is on Darwin...
#if os(Linux)
return try assertHandshakeSucceededInMemory(withClientConfig: clientConfig, andServerConfig: serverConfig, file: file, line: line)
#else
return try assertHandshakeSucceededEventLoop(withClientConfig: clientConfig, andServerConfig: serverConfig, file: file, line: line)
#endif
}
func setupTLSLeafandClientIdentitiesFromCustomCARoot() throws -> (leafCert: NIOSSLCertificate, leafKey: NIOSSLPrivateKey ,
clientCert: NIOSSLCertificate, clientKey: NIOSSLPrivateKey) {
let leaf = try NIOSSLCertificate(bytes: .init(leafCertificateForTLSIssuedFromCustomCARoot.utf8), format: .pem)
let leaf_privateKey = try NIOSSLPrivateKey.init(bytes: .init(privateKeyForLeafCertificate.utf8), format: .pem)
let client_cert = try NIOSSLCertificate(bytes: .init(leafCertificateForClientAuthenticationIssuedFromCustomCARoot.utf8), format: .pem)
let client_privateKey = try NIOSSLPrivateKey.init(bytes: .init(privateKeyForClientAuthentication.utf8), format: .pem)
return (leaf, leaf_privateKey, client_cert, client_privateKey)
}
func testNonOverlappingTLSVersions() throws {
var clientConfig = TLSConfiguration.clientDefault
clientConfig.minimumTLSVersion = .tlsv11
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.maximumTLSVersion = .tlsv1
try assertHandshakeError(withClientConfig: clientConfig,
andServerConfig: serverConfig,
errorTextContains: "ALERT_PROTOCOL_VERSION")
}
func testNonOverlappingCipherSuitesPreTLS13() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [.TLS_RSA_WITH_AES_128_CBC_SHA]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuiteValues = [.TLS_RSA_WITH_AES_256_CBC_SHA]
serverConfig.maximumTLSVersion = .tlsv12
try assertHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContains: "ALERT_HANDSHAKE_FAILURE")
}
func testCannotVerifySelfSigned() throws {
let clientConfig = TLSConfiguration.makeClientConfiguration()
let serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
try assertHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContains: "CERTIFICATE_VERIFY_FAILED")
}
func testServerCannotValidateClientPreTLS13() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.certificateChain = [.certificate(TLSConfigurationTest.cert2)]
clientConfig.privateKey = .privateKey(TLSConfigurationTest.key2)
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .noHostnameVerification
try assertHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContainsAnyOf: ["ALERT_UNKNOWN_CA", "ALERT_CERTIFICATE_UNKNOWN"])
}
func testServerCannotValidateClientPostTLS13() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.minimumTLSVersion = .tlsv13
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.certificateChain = [.certificate(TLSConfigurationTest.cert2)]
clientConfig.privateKey = .privateKey(TLSConfigurationTest.key2)
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.minimumTLSVersion = .tlsv13
serverConfig.certificateVerification = .noHostnameVerification
try assertPostHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContainsAnyOf: ["ALERT_UNKNOWN_CA", "ALERT_CERTIFICATE_UNKNOWN"])
}
func testMutualValidationRequiresClientCertificatePreTLS13() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .noHostnameVerification
serverConfig.trustRoots = .certificates([TLSConfigurationTest.cert2])
try assertHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContainsAnyOf: ["ALERT_HANDSHAKE_FAILURE"])
}
func testMutualValidationRequiresClientCertificatePostTLS13() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.minimumTLSVersion = .tlsv13
clientConfig.certificateVerification = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.minimumTLSVersion = .tlsv13
serverConfig.certificateVerification = .noHostnameVerification
serverConfig.trustRoots = .certificates([TLSConfigurationTest.cert2])
try assertPostHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContainsAnyOf: ["CERTIFICATE_REQUIRED"])
}
func testIncompatibleSignatures() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.verifySignatureAlgorithms = [.ecdsaSecp384R1Sha384]
clientConfig.minimumTLSVersion = .tlsv13
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.signingSignatureAlgorithms = [.rsaPssRsaeSha256]
serverConfig.minimumTLSVersion = .tlsv13
serverConfig.certificateVerification = .none
try assertHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContains: "ALERT_HANDSHAKE_FAILURE")
}
func testCompatibleSignatures() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.minimumTLSVersion = .tlsv13
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.signingSignatureAlgorithms = [.rsaPssRsaeSha256]
serverConfig.minimumTLSVersion = .tlsv13
serverConfig.certificateVerification = .none
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testMatchingCompatibleSignatures() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.verifySignatureAlgorithms = [.rsaPssRsaeSha256]
clientConfig.minimumTLSVersion = .tlsv13
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.signingSignatureAlgorithms = [.rsaPssRsaeSha256]
serverConfig.minimumTLSVersion = .tlsv13
serverConfig.certificateVerification = .none
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testMutualValidationSuccessNoAdditionalTrustRoots() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
let serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1))
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testMutualValidationSuccessWithDefaultAndAdditionalTrustRoots() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .default
clientConfig.renegotiationSupport = .none
clientConfig.additionalTrustRoots = [.certificates([TLSConfigurationTest.cert1])]
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.trustRoots = .default
serverConfig.additionalTrustRoots = [.certificates([TLSConfigurationTest.cert2])]
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testMutualValidationSuccessWithOnlyAdditionalTrustRoots() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([])
clientConfig.renegotiationSupport = .none
clientConfig.additionalTrustRoots = [.certificates([TLSConfigurationTest.cert1])]
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.trustRoots = .certificates([])
serverConfig.additionalTrustRoots = [.certificates([TLSConfigurationTest.cert2])]
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testFullVerificationWithCANamesFromCertificate() throws {
// Custom certificates for TLS and client authentication.
let root = try NIOSSLCertificate(bytes: .init(customCARoot.utf8), format: .pem)
let digitalIdentities = try setupTLSLeafandClientIdentitiesFromCustomCARoot()
// Client Configuration.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.renegotiationSupport = .none
clientConfig.certificateChain = [.certificate(digitalIdentities.clientCert)]
clientConfig.privateKey = .privateKey(digitalIdentities.clientKey)
// Server Configuration
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(digitalIdentities.leafCert)],
privateKey: .privateKey(digitalIdentities.leafKey)
)
serverConfig.sendCANameList = true
serverConfig.trustRoots = .certificates([root])
serverConfig.certificateVerification = .fullVerification
let clientContext = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig))
let serverContext = try assertNoThrowWithValue(NIOSSLContext(configuration: serverConfig))
// Validation that the CA names are being sent here
// This is essentially the heart of this unit test.
let countAfter = serverContext.getX509NameListCount()
XCTAssertEqual(countAfter, 1, "CA Name List should be 1 after the Server Context is created")
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
// We expect the server case to throw
_ = try? serverChannel.finish()
_ = try? clientChannel.finish()
}
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: serverContext)).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(NIOSSLClientHandler(context: clientContext, serverHostname: nil)).wait())
let handshakeHandler = HandshakeCompletedHandler()
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(handshakeHandler).wait())
// Connect. This should lead to a failed handshake.
let addr = try assertNoThrowWithValue(SocketAddress(unixDomainSocketPath: "/tmp/whatever2"))
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
XCTAssertThrowsError(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel))
XCTAssertNoThrow(try connectFuture.wait())
XCTAssertFalse(handshakeHandler.handshakeSucceeded)
_ = serverChannel.close()
}
func testFullVerificationWithCANamesFromFile() throws {
// Custom certificates for TLS and client authentication.
// In this test create the root certificate in the tmp directory and use it here to send the CA names.
// This exercised the loadVerifyLocations file code path out in SSLContext
let rootPath = try dumpToFile(data: .init(customCARoot.utf8), fileExtension: ".pem")
let digitalIdentities = try setupTLSLeafandClientIdentitiesFromCustomCARoot()
// Client Configuration.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.renegotiationSupport = .none
clientConfig.certificateChain = [.certificate(digitalIdentities.clientCert)]
clientConfig.privateKey = .privateKey(digitalIdentities.clientKey)
// Server Configuration
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(digitalIdentities.leafCert)],
privateKey: .privateKey(digitalIdentities.leafKey)
)
serverConfig.sendCANameList = true
serverConfig.trustRoots = .file(rootPath)
serverConfig.certificateVerification = .fullVerification
let clientContext = try assertNoThrowWithValue(NIOSSLContext(configuration: clientConfig))
let serverContext = try assertNoThrowWithValue(NIOSSLContext(configuration: serverConfig))
// Validation that the CA names are being sent here
// This is essentially the heart of this unit test.
let countAfter = serverContext.getX509NameListCount()
XCTAssertEqual(countAfter, 1, "CA Name List should be 1 after the Server Context is created")
let serverChannel = EmbeddedChannel()
let clientChannel = EmbeddedChannel()
defer {
// We expect the server case to throw
_ = try? serverChannel.finish()
_ = try? clientChannel.finish()
}
XCTAssertNoThrow(try serverChannel.pipeline.addHandler(NIOSSLServerHandler(context: serverContext)).wait())
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(NIOSSLClientHandler(context: clientContext, serverHostname: nil)).wait())
let handshakeHandler = HandshakeCompletedHandler()
XCTAssertNoThrow(try clientChannel.pipeline.addHandler(handshakeHandler).wait())
// Connect. This should lead to a completed handshake.
let addr = try assertNoThrowWithValue(SocketAddress(unixDomainSocketPath: "/tmp/whatever2"))
let connectFuture = clientChannel.connect(to: addr)
serverChannel.pipeline.fireChannelActive()
XCTAssertThrowsError(try interactInMemory(clientChannel: clientChannel, serverChannel: serverChannel))
XCTAssertNoThrow(try connectFuture.wait())
XCTAssertFalse(handshakeHandler.handshakeSucceeded)
_ = serverChannel.close()
XCTAssertNoThrow(try FileManager.default.removeItem(at: URL(string: "file://" + rootPath)!))
}
func testFullVerificationWithCANamesFromDirectory() throws {
// Custom certificates for TLS and client authentication.
// In this test create two root certificates in the tmp directory and send the CA names from both on the handshake.
// This exercises the loadVerifyLocations directory code path out in SSLContext.
// This code path should scan the everything in this directory for a .pem and a .cer file to load
let rootCAPathOne = try dumpToFile(data: .init(customCARoot.utf8), fileExtension: ".pem")
// NOTE: that while the above creates the initial .pem file as a base64 representation, this cannot be done with a DER file
// as this is a binary representation of a certificate. So, the `NIOSSLCertificate` is loaded and the PEM wrapper is stripped
// off to create an actual DER certificate. Otherwise this will fail when `CNIOBoringSSL_d2i_X509_fp` tries to read it.
let rootCATwo = try NIOSSLCertificate(bytes: .init(secondaryRootCertificateForClientAuthentication.utf8), format: .pem)
let derRepresentation = Data(try rootCATwo.toDERBytes())
let rootCAPathTwo = try dumpToFile(data: derRepresentation, fileExtension: ".cer")
// Pass in a directory to scan out in SSLContext
let tempFileDir = FileManager.default.temporaryDirectory.path + "/"
let digitalIdentities = try setupTLSLeafandClientIdentitiesFromCustomCARoot()
// Client Configuration.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.renegotiationSupport = .none
clientConfig.certificateChain = [.certificate(digitalIdentities.clientCert)]
clientConfig.privateKey = .privateKey(digitalIdentities.clientKey)
// Shim for an oddity that takes place when a client is using self sign root and client authentication identity
// only in the directory scan context. CNIOBoringSSL_SSL_CTX_load_verify_locations may have something to do with this issue,
// but nothing was found conclusively.
clientConfig.trustRoots = .certificates([])
// Server Configuration
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(digitalIdentities.leafCert)],
privateKey: .privateKey(digitalIdentities.leafKey)
)
serverConfig.sendCANameList = true
serverConfig.trustRoots = .file(tempFileDir) // Directory path.
serverConfig.certificateVerification = .fullVerification
// Pulling in the logic for assertHandshakeSucceededEventLoop because there needs to be some custom handling
// due to the IP address and the potential for `CERTIFICATE_VERIFY_FAILED`.
var clientContext: NIOSSLContext!
var serverContext: NIOSSLContext!
XCTAssertNoThrow(clientContext = try NIOSSLContext(configuration: clientConfig))
XCTAssertNoThrow(serverContext = try NIOSSLContext(configuration: serverConfig))
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
defer {
XCTAssertNoThrow(try group.syncShutdownGracefully())
}
let eventHandler = ErrorCatcher<NIOSSLError>()
let handshakeHandler = HandshakeCompletedHandler()
let handshakeResultPromise = group.next().makePromise(of: Void.self)
let handshakeWatcher = WaitForHandshakeHandler(handshakeResultPromise: handshakeResultPromise)
var serverChannel: Channel!
var clientChannel: Channel!
XCTAssertNoThrow(serverChannel = try serverTLSChannel(context: serverContext, handlers: [], group: group))
// Validation that the CA names are being sent here
// This is essentially the heart of this unit test.
let countAfter = serverContext.getX509NameListCount()
XCTAssertEqual(countAfter, 2, "CA Name List should be 2 after the Server Context is created")
XCTAssertNoThrow(clientChannel = try clientTLSChannel(context: clientContext, preHandlers:[], postHandlers: [eventHandler, handshakeWatcher, handshakeHandler], group: group, connectingTo: serverChannel.localAddress!))
// Make sure the actual handshake does succeed in this instance.
handshakeWatcher.handshakeResult.whenComplete { c in
switch c {
case .success:
XCTAssertTrue(true)
case .failure(let err):
XCTFail("Unexpected error: \(err.localizedDescription)")
}
_ = clientChannel.close()
}
var handshakeSucceed = false
clientChannel.closeFuture.whenComplete { _ in
XCTAssertEqual(eventHandler.errors.count, 1)
guard let error = eventHandler.errors.first else {
XCTFail("Could not unwrap expected .uncleanShutdown error")
return
}
let expectedError = "CERTIFICATE_VERIFY_FAILED"
// This is very unorthodox but essentially the handshakeSucceed flag is variable depending upon the situation.
// Either one of these two situations should apply:
//
// 1. If the `customCARoot` IS installed and trusted on the system's trust store then an unclean shutdown
// will be triggered below when validateHostname is run because this test is run with a local IP address.
// The important thing to note here is that this happens AFTER the handshake does actually succeed.
// When the doHandshakeStep .complete case is run, this error is thrown and so it is caught below.
// 2. If the `customCARoot` IS NOT installed and trusted on the system's trust store, which will most likely be the case
// in every run of this test, the standard `CERTIFICATE_VERIFY_FAILED` error is thrown because BoringSSL cannot validate
// the chain of trust with a self signed root.
//
switch error {
case .uncleanShutdown:
// Expected to fail into .uncleanShutdown because an IP address is not provided to setServerName() because it
// cannot be used for SNI. (Currently, the only server names supported are DNS hostnames; RFC 4366)
//
// In this case client authentication is being performed over a localhost address and when `validateHostname`
// is called in the complete case for doHandshakeStep this will throw an error for a localhost address because
// there is not an expectedHostname set in SSLConnection.
handshakeSucceed = true
break
default:
// If this test is run on a remote system where `customCARoot` is not in the trust store or something like /etc/ssl/cert.pem
// then this handshake will fail with `CERTIFICATE_VERIFY_FAILED` because of the chain of trust cannot be established.
XCTAssertTrue(eventHandler.errors.description.contains(expectedError))
}
XCTAssertEqual(handshakeHandler.handshakeSucceeded, handshakeSucceed)
}
try clientChannel.closeFuture.wait()
XCTAssertFalse(handshakeSucceed)
XCTAssertNoThrow(try FileManager.default.removeItem(at: URL(string: "file://" + rootCAPathOne)!))
XCTAssertNoThrow(try FileManager.default.removeItem(at: URL(string: "file://" + rootCAPathTwo)!))
}
func testNonexistentFileObject() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.trustRoots = .file("/thispathbetternotexist/bogus.foo")
XCTAssertThrowsError(try NIOSSLContext(configuration: clientConfig)) {error in
XCTAssertEqual(.noSuchFilesystemObject, error as? NIOSSLError)
}
}
func testComputedApplicationProtocols() throws {
var config = TLSConfiguration.makeServerConfiguration(certificateChain: [], privateKey: .file("fake.file"))
config.applicationProtocols = ["http/1.1"]
XCTAssertEqual(config.applicationProtocols, ["http/1.1"])
XCTAssertEqual(config.encodedApplicationProtocols, [[8, 104, 116, 116, 112, 47, 49, 46, 49]])
config.applicationProtocols.insert("h2", at: 0)
XCTAssertEqual(config.applicationProtocols, ["h2", "http/1.1"])
XCTAssertEqual(config.encodedApplicationProtocols, [[2, 104, 50], [8, 104, 116, 116, 112, 47, 49, 46, 49]])
}
func testKeyLogManagerOverlappingAccess() throws {
// Tests that we can have overlapping calls to the log() function of the keylog manager.
// This test fails probabilistically! DO NOT IGNORE INTERMITTENT FAILURES OF THIS TEST.
let semaphore = DispatchSemaphore(value: 0)
let group = DispatchGroup()
let completionsQueue = DispatchQueue(label: "completionsQueue")
var completions: [Bool] = []
func keylogCallback(_ ign: ByteBuffer) {
completionsQueue.sync {
completions.append(true)
semaphore.wait()
}
group.leave()
}
let keylogManager = KeyLogCallbackManager(callback: keylogCallback(_:))
// Now we call log twice, from different threads. These will not complete right away so we
// do those on background threads. They should not both complete.
group.enter()
group.enter()
DispatchQueue(label: "first-thread").async {
keylogManager.log("hello!")
}
DispatchQueue(label: "second-thread").async {
keylogManager.log("world!")
}
// We now sleep a short time to let everything catch up and the runtime catch any exclusivity violation.
// 10ms is fine.
usleep(10_000)
// Great, signal the sempahore twice to un-wedge everything and wait for everything to exit.
semaphore.signal()
semaphore.signal()
group.wait()
XCTAssertEqual([true, true], completionsQueue.sync { completions })
}
func testTheSameHashValue() {
var config = TLSConfiguration.makeServerConfiguration(certificateChain: [], privateKey: .file("fake.file"))
config.applicationProtocols = ["http/1.1"]
let theSameConfig = config
var hasher = Hasher()
var hasher2 = Hasher()
config.bestEffortHash(into: &hasher)
theSameConfig.bestEffortHash(into: &hasher2)
XCTAssertEqual(hasher.finalize(), hasher2.finalize())
XCTAssertTrue(config.bestEffortEquals(theSameConfig))
}
func testDifferentHashValues() {
var config = TLSConfiguration.makeServerConfiguration(certificateChain: [], privateKey: .file("fake.file"))
config.applicationProtocols = ["http/1.1"]
var differentConfig = config
differentConfig.privateKey = .file("fake2.file")
XCTAssertFalse(config.bestEffortEquals(differentConfig))
}
func testDifferentCallbacksNotEqual() {
var config = TLSConfiguration.makeServerConfiguration(certificateChain: [], privateKey: .file("fake.file"))
config.applicationProtocols = ["http/1.1"]
config.keyLogCallback = { _ in }
var differentConfig = config
differentConfig.keyLogCallback = { _ in }
XCTAssertFalse(config.bestEffortEquals(differentConfig))
}
func testCompatibleCipherSuite() throws {
// ECDHE_RSA is used here because the public key in .cert1 is derived from a RSA private key.
// These could also be RSA based, but cannot be ECDHE_ECDSA.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuiteValues = [.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256]
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .none
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testNonCompatibleCipherSuite() throws {
// This test fails more importantly because ECDHE_ECDSA is being set with a public key that is RSA based.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [.TLS_RSA_WITH_AES_128_GCM_SHA256]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuiteValues = [.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256]
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .none
try assertHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContains: "ALERT_HANDSHAKE_FAILURE")
}
func testDefaultWithRSACipherSuite() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [.TLS_RSA_WITH_AES_128_GCM_SHA256]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuites = defaultCipherSuites
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .none
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testDefaultWithECDHERSACipherSuite() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuites = defaultCipherSuites
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .none
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testStringBasedCipherSuite() throws {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuites = "AES256"
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuites = "AES256"
serverConfig.maximumTLSVersion = .tlsv12
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testMultipleCompatibleCipherSuites() throws {
// This test is for multiple ECDHE_RSA based ciphers on the server side.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuiteValues = [
.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
]
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .none
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testMultipleCompatibleCipherSuitesWithStringBasedCipher() throws {
// This test is for using multiple server side ciphers with the client side string based cipher.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuites = "AES256"
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuiteValues = [
.TLS_RSA_WITH_AES_128_CBC_SHA,
.TLS_RSA_WITH_AES_256_CBC_SHA,
.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
]
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .none
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testMultipleClientCipherSuitesWithDefaultCipher() throws {
// Client ciphers should match one of the default ciphers.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [
.TLS_RSA_WITH_AES_128_CBC_SHA,
.TLS_RSA_WITH_AES_256_CBC_SHA,
.TLS_RSA_WITH_AES_128_GCM_SHA256,
.TLS_RSA_WITH_AES_256_GCM_SHA384,
.TLS_AES_128_GCM_SHA256,
.TLS_AES_256_GCM_SHA384,
.TLS_CHACHA20_POLY1305_SHA256,
.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuites = defaultCipherSuites
serverConfig.maximumTLSVersion = .tlsv12
serverConfig.certificateVerification = .none
try assertHandshakeSucceeded(withClientConfig: clientConfig, andServerConfig: serverConfig)
}
func testNonCompatibleClientCiphersWithServerStringBasedCiphers() throws {
// This test should fail on client hello negotiation.
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [
.TLS_AES_128_GCM_SHA256,
.TLS_AES_256_GCM_SHA384,
.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
var serverConfig = TLSConfiguration.makeServerConfiguration(
certificateChain: [.certificate(TLSConfigurationTest.cert1)],
privateKey: .privateKey(TLSConfigurationTest.key1)
)
serverConfig.cipherSuites = "AES256"
serverConfig.maximumTLSVersion = .tlsv12
try assertHandshakeError(withClientConfig: clientConfig, andServerConfig: serverConfig, errorTextContains: "ALERT_HANDSHAKE_FAILURE")
}
func testSettingCiphersWithCipherSuiteValues() {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuiteValues = [
.TLS_AES_128_GCM_SHA256,
.TLS_AES_256_GCM_SHA384,
.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
]
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
clientConfig.renegotiationSupport = .none
XCTAssertEqual(clientConfig.cipherSuites, "TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256")
}
func testSettingCiphersWithCipherSuitesString() {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.cipherSuites = "AES256"
clientConfig.maximumTLSVersion = .tlsv12
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([TLSConfigurationTest.cert1])
let assignedCiphers = clientConfig.cipherSuiteValues.map { $0.standardName }
let createdCipherSuiteValuesFromString = assignedCiphers.joined(separator: ":")
// Note that this includes the PSK values as well.
XCTAssertEqual(createdCipherSuiteValuesFromString, "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384:TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384:TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA:TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA:TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA:TLS_RSA_WITH_AES_256_GCM_SHA384:TLS_RSA_WITH_AES_256_CBC_SHA:TLS_PSK_WITH_AES_256_CBC_SHA")
}
func testDefaultCipherSuiteValues() {
var clientConfig = TLSConfiguration.makeClientConfiguration()
clientConfig.certificateVerification = .noHostnameVerification
clientConfig.trustRoots = .certificates([])
clientConfig.renegotiationSupport = .none
clientConfig.additionalTrustRoots = [.certificates([TLSConfigurationTest.cert1])]
XCTAssertEqual(clientConfig.cipherSuites, defaultCipherSuites)
let assignedCiphers = clientConfig.cipherSuiteValues.map { $0.standardName }
let defaultCipherSuiteValuesFromString = assignedCiphers.joined(separator: ":")
// Note that this includes the PSK values as well.
XCTAssertEqual(defaultCipherSuiteValuesFromString, "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256:TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256:TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384:TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384:TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256:TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256:TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256:TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA:TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA:TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA:TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA:TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA:TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA:TLS_RSA_WITH_AES_128_GCM_SHA256:TLS_RSA_WITH_AES_256_GCM_SHA384:TLS_RSA_WITH_AES_128_CBC_SHA:TLS_RSA_WITH_AES_256_CBC_SHA")
}
func testBestEffortEquatableHashableDifferences() {
let first = TLSConfiguration.makeClientConfiguration()
let transforms: [(inout TLSConfiguration) -> Void] = [
{ $0.minimumTLSVersion = .tlsv13 },
{ $0.maximumTLSVersion = .tlsv12 },
{ $0.cipherSuites = "AES" },
{ $0.cipherSuiteValues = [.TLS_RSA_WITH_AES_256_CBC_SHA] },
{ $0.verifySignatureAlgorithms = [.ed25519] },
{ $0.signingSignatureAlgorithms = [.ed25519] },
{ $0.certificateVerification = .noHostnameVerification },
{ $0.trustRoots = .certificates([TLSConfigurationTest.cert1]) },
{ $0.additionalTrustRoots = [.certificates([TLSConfigurationTest.cert1])] },
{ $0.certificateChain = [.certificate(TLSConfigurationTest.cert1)] },
{ $0.privateKey = .privateKey(TLSConfigurationTest.key1) },
{ $0.applicationProtocols = ["h2"] },
{ $0.shutdownTimeout = .seconds((60 * 24 * 24) + 1) },
{ $0.keyLogCallback = { _ in } },
{ $0.renegotiationSupport = .always },
]
for (index, transform) in transforms.enumerated() {
var transformed = first
transform(&transformed)
XCTAssertNotEqual(Wrapper(config: first), Wrapper(config: transformed), "Should have compared not equal in index \(index)")
XCTAssertEqual(Set([Wrapper(config: first), Wrapper(config: transformed)]).count, 2, "Should have hashed non-equal in index \(index)")
}
}
}
struct Wrapper: Hashable {
var config: TLSConfiguration
static func ==(lhs: Wrapper, rhs: Wrapper) -> Bool {
return lhs.config.bestEffortEquals(rhs.config)
}
func hash(into hasher: inout Hasher) {
self.config.bestEffortHash(into: &hasher)
}
}
|