Test client certificates carry over on session resumption.

We have tests for this as a server, but none as a client. Extend the
certificate verification tests here. This is in preparation for ensuring
that TLS 1.3 session resumption works correctly.

Change-Id: I9ab9f42838ffd69f73fbd877b0cdfaf31caea707
Reviewed-on: https://boringssl-review.googlesource.com/9111
Reviewed-by: Adam Langley <agl@google.com>
Commit-Queue: Adam Langley <agl@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
This commit is contained in:
David Benjamin 2016-08-03 14:14:47 -04:00 committed by CQ bot account: commit-bot@chromium.org
parent e455e51d85
commit bb9e36e005
2 changed files with 58 additions and 35 deletions

View File

@ -1212,19 +1212,18 @@ static bool CheckHandshakeProperties(SSL *ssl, bool is_resume) {
} }
} }
if (!config->is_server) { if (!config->psk.empty()) {
/* Clients should expect a peer certificate chain iff this was not a PSK if (SSL_get_peer_cert_chain(ssl) != nullptr) {
* cipher suite. */ fprintf(stderr, "Received peer certificate on a PSK cipher.\n");
if (config->psk.empty()) { return false;
if (SSL_get_peer_cert_chain(ssl) == nullptr) { }
fprintf(stderr, "Missing peer certificate chain!\n"); } else if (!config->is_server || config->require_any_client_certificate) {
return false; if (SSL_get_peer_cert_chain(ssl) == nullptr) {
} fprintf(stderr, "Received no peer certificate but expected one.\n");
} else if (SSL_get_peer_cert_chain(ssl) != nullptr) {
fprintf(stderr, "Unexpected peer certificate chain!\n");
return false; return false;
} }
} }
return true; return true;
} }

View File

@ -3413,40 +3413,64 @@ func addStateMachineCoverageTests(config stateMachineTestConfig) {
if config.protocol == dtls && !vers.hasDTLS { if config.protocol == dtls && !vers.hasDTLS {
continue continue
} }
tests = append(tests, testCase{ for _, testType := range []testType{clientTest, serverTest} {
testType: clientTest, suffix := "-Client"
name: "CertificateVerificationSucceed-" + vers.name, if testType == serverTest {
config: Config{ suffix = "-Server"
MaxVersion: vers.version, }
}, suffix += "-" + vers.name
flags: []string{
"-verify-peer", flag := "-verify-peer"
}, if testType == serverTest {
resumeSession: vers.version != VersionTLS13, flag = "-require-any-client-certificate"
}) }
tests = append(tests, testCase{
testType: clientTest, tests = append(tests, testCase{
name: "CertificateVerificationFail-" + vers.name, testType: testType,
config: Config{ name: "CertificateVerificationSucceed" + suffix,
MaxVersion: vers.version, config: Config{
}, MaxVersion: vers.version,
flags: []string{ Certificates: []Certificate{rsaCertificate},
"-verify-fail", },
"-verify-peer", flags: []string{
}, flag,
shouldFail: true, "-expect-verify-result",
expectedError: ":CERTIFICATE_VERIFY_FAILED:", },
}) // TODO(davidben): Enable this when resumption is
// implemented in TLS 1.3.
resumeSession: vers.version != VersionTLS13,
})
tests = append(tests, testCase{
testType: testType,
name: "CertificateVerificationFail" + suffix,
config: Config{
MaxVersion: vers.version,
Certificates: []Certificate{rsaCertificate},
},
flags: []string{
flag,
"-verify-fail",
},
shouldFail: true,
expectedError: ":CERTIFICATE_VERIFY_FAILED:",
})
}
// By default, the client is in a soft fail mode where the peer
// certificate is verified but failures are non-fatal.
tests = append(tests, testCase{ tests = append(tests, testCase{
testType: clientTest, testType: clientTest,
name: "CertificateVerificationSoftFail-" + vers.name, name: "CertificateVerificationSoftFail-" + vers.name,
config: Config{ config: Config{
MaxVersion: vers.version, MaxVersion: vers.version,
Certificates: []Certificate{rsaCertificate},
}, },
flags: []string{ flags: []string{
"-verify-fail", "-verify-fail",
"-expect-verify-result", "-expect-verify-result",
}, },
// TODO(davidben): Enable this when resumption is
// implemented in TLS 1.3.
resumeSession: vers.version != VersionTLS13, resumeSession: vers.version != VersionTLS13,
}) })
} }