What version of Go are you using (go version)?
$ go version
1.12.x
Does this issue reproduce with the latest release?
Yes
What did you do?
When using TLS session resumption with client certificates, the server reverifies the client's certificate chain.
What did you expect to see?
When using TLS session resumption the server sends an encrypted (and MACed) ticket to the client, which the client presents during the next handshake. According to the spec, the session ticket is an opaque blob. The Go implementation encodes the client's certificate chain into the session ticket. If the server is able to authenticate and decrypt the session ticket presented by the client, this should serve as proof that the server communicated with this client before, and allow it to skip the (potentially computationally expensive) verification of the certificate chain.
Re-verifying leads to unexpected consequences if the tls.Config.VerifyPeerCertificate callback was changed such that it rejects the certificate in between the original and the resumed connection . Since the server re-verifies the certificate chain, it will reject the connection. The client doesn't perform any verification (other than checking that the certificate didn't expire) and is happy to resume a connection even if its VerifyPeerCertificate callback would have rejected the server's certificate chain on a new connection.
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
Yes
What did you do?
When using TLS session resumption with client certificates, the server reverifies the client's certificate chain.
What did you expect to see?
When using TLS session resumption the server sends an encrypted (and MACed) ticket to the client, which the client presents during the next handshake. According to the spec, the session ticket is an opaque blob. The Go implementation encodes the client's certificate chain into the session ticket. If the server is able to authenticate and decrypt the session ticket presented by the client, this should serve as proof that the server communicated with this client before, and allow it to skip the (potentially computationally expensive) verification of the certificate chain.
Re-verifying leads to unexpected consequences if the
tls.Config.VerifyPeerCertificatecallback was changed such that it rejects the certificate in between the original and the resumed connection . Since the server re-verifies the certificate chain, it will reject the connection. The client doesn't perform any verification (other than checking that the certificate didn't expire) and is happy to resume a connection even if itsVerifyPeerCertificatecallback would have rejected the server's certificate chain on a new connection.