2014-06-20 20:00:00 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2014-07-16 17:58:59 +01:00
|
|
|
"crypto/x509"
|
2014-06-20 20:00:00 +01:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
var useValgrind = flag.Bool("valgrind", false, "If true, run code under valgrind")
|
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
const (
|
|
|
|
rsaCertificateFile = "cert.pem"
|
|
|
|
ecdsaCertificateFile = "ecdsa_cert.pem"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
rsaKeyFile = "key.pem"
|
|
|
|
ecdsaKeyFile = "ecdsa_key.pem"
|
|
|
|
)
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
var rsaCertificate, ecdsaCertificate Certificate
|
|
|
|
|
|
|
|
func initCertificates() {
|
|
|
|
var err error
|
2014-07-02 00:53:04 +01:00
|
|
|
rsaCertificate, err = LoadX509KeyPair(rsaCertificateFile, rsaKeyFile)
|
2014-06-20 20:00:00 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
ecdsaCertificate, err = LoadX509KeyPair(ecdsaCertificateFile, ecdsaKeyFile)
|
2014-06-20 20:00:00 +01:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var certificateOnce sync.Once
|
|
|
|
|
|
|
|
func getRSACertificate() Certificate {
|
|
|
|
certificateOnce.Do(initCertificates)
|
|
|
|
return rsaCertificate
|
|
|
|
}
|
|
|
|
|
|
|
|
func getECDSACertificate() Certificate {
|
|
|
|
certificateOnce.Do(initCertificates)
|
|
|
|
return ecdsaCertificate
|
|
|
|
}
|
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
type testType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
clientTest testType = iota
|
|
|
|
serverTest
|
|
|
|
)
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
type testCase struct {
|
2014-07-02 00:53:04 +01:00
|
|
|
testType testType
|
2014-06-20 20:00:00 +01:00
|
|
|
name string
|
|
|
|
config Config
|
|
|
|
shouldFail bool
|
|
|
|
expectedError string
|
2014-06-23 20:03:11 +01:00
|
|
|
// expectedLocalError, if not empty, contains a substring that must be
|
|
|
|
// found in the local error.
|
|
|
|
expectedLocalError string
|
2014-06-20 20:00:00 +01:00
|
|
|
// messageLen is the length, in bytes, of the test message that will be
|
|
|
|
// sent.
|
|
|
|
messageLen int
|
2014-07-02 00:53:04 +01:00
|
|
|
// certFile is the path to the certificate to use for the server.
|
|
|
|
certFile string
|
|
|
|
// keyFile is the path to the private key to use for the server.
|
|
|
|
keyFile string
|
2014-07-23 00:20:02 +01:00
|
|
|
// resumeSession controls whether a second connection should be tested
|
|
|
|
// which resumes the first session.
|
|
|
|
resumeSession bool
|
2014-07-02 00:40:31 +01:00
|
|
|
// flags, if not empty, contains a list of command-line flags that will
|
|
|
|
// be passed to the shim program.
|
|
|
|
flags []string
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
var testCases = []testCase{
|
2014-06-20 20:00:00 +01:00
|
|
|
{
|
|
|
|
name: "BadRSASignature",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
InvalidSKXSignature: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":BAD_SIGNATURE:",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "BadECDSASignature",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
InvalidSKXSignature: true,
|
|
|
|
},
|
|
|
|
Certificates: []Certificate{getECDSACertificate()},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":BAD_SIGNATURE:",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "BadECDSACurve",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
InvalidSKXCurve: true,
|
|
|
|
},
|
|
|
|
Certificates: []Certificate{getECDSACertificate()},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":WRONG_CURVE:",
|
|
|
|
},
|
2014-06-23 20:03:11 +01:00
|
|
|
{
|
2014-07-02 00:40:31 +01:00
|
|
|
name: "NoFallbackSCSV",
|
2014-06-23 20:03:11 +01:00
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
FailIfNotFallbackSCSV: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedLocalError: "no fallback SCSV found",
|
|
|
|
},
|
2014-07-02 00:40:31 +01:00
|
|
|
{
|
|
|
|
name: "FallbackSCSV",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
FailIfNotFallbackSCSV: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
flags: []string{"-fallback-scsv"},
|
|
|
|
},
|
2014-07-02 23:37:33 +01:00
|
|
|
{
|
|
|
|
testType: serverTest,
|
2014-07-05 05:23:20 +01:00
|
|
|
name: "ServerNameExtension",
|
2014-07-02 23:37:33 +01:00
|
|
|
config: Config{
|
|
|
|
ServerName: "example.com",
|
|
|
|
},
|
|
|
|
flags: []string{"-expect-server-name", "example.com"},
|
|
|
|
},
|
2014-07-05 05:23:20 +01:00
|
|
|
{
|
|
|
|
testType: clientTest,
|
|
|
|
name: "DuplicateExtensionClient",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
DuplicateExtension: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedLocalError: "remote error: error decoding message",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "DuplicateExtensionServer",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
DuplicateExtension: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedLocalError: "remote error: error decoding message",
|
|
|
|
},
|
2014-07-08 22:30:11 +01:00
|
|
|
{
|
|
|
|
name: "ClientCertificateTypes",
|
|
|
|
config: Config{
|
|
|
|
ClientAuth: RequestClientCert,
|
|
|
|
ClientCertificateTypes: []byte{
|
|
|
|
CertTypeDSSSign,
|
|
|
|
CertTypeRSASign,
|
|
|
|
CertTypeECDSASign,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
flags: []string{"-expect-certificate-types", string([]byte{
|
|
|
|
CertTypeDSSSign,
|
|
|
|
CertTypeRSASign,
|
|
|
|
CertTypeECDSASign,
|
|
|
|
})},
|
|
|
|
},
|
2014-07-08 22:59:18 +01:00
|
|
|
{
|
|
|
|
name: "NoClientCertificate",
|
|
|
|
config: Config{
|
|
|
|
ClientAuth: RequireAnyClientCert,
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedLocalError: "client didn't provide a certificate",
|
|
|
|
},
|
2014-07-12 05:48:23 +01:00
|
|
|
{
|
|
|
|
name: "UnauthenticatedECDH",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
UnauthenticatedECDH: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
2014-07-12 06:10:19 +01:00
|
|
|
expectedError: ":UNEXPECTED_MESSAGE:",
|
2014-07-12 05:48:23 +01:00
|
|
|
},
|
2014-07-12 18:27:45 +01:00
|
|
|
{
|
|
|
|
name: "SkipServerKeyExchange",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
SkipServerKeyExchange: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":UNEXPECTED_MESSAGE:",
|
|
|
|
},
|
2014-07-12 21:18:02 +01:00
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "NPNServerTest",
|
|
|
|
config: Config{
|
|
|
|
NextProtos: []string{"bar"},
|
|
|
|
},
|
|
|
|
flags: []string{
|
|
|
|
"-advertise-npn", "\x03foo\x03bar\x03baz",
|
|
|
|
"-expect-next-proto", "bar",
|
|
|
|
},
|
|
|
|
},
|
2014-07-19 22:39:58 +01:00
|
|
|
{
|
|
|
|
name: "SkipChangeCipherSpec-Client",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
SkipChangeCipherSpec: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
2014-07-21 21:14:03 +01:00
|
|
|
expectedError: ":HANDSHAKE_RECORD_BEFORE_CCS:",
|
2014-07-19 22:39:58 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "SkipChangeCipherSpec-Server",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
SkipChangeCipherSpec: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
2014-07-21 21:14:03 +01:00
|
|
|
expectedError: ":HANDSHAKE_RECORD_BEFORE_CCS:",
|
2014-07-19 22:39:58 +01:00
|
|
|
},
|
2014-07-21 19:50:23 +01:00
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "SkipChangeCipherSpec-Server-NPN",
|
|
|
|
config: Config{
|
|
|
|
NextProtos: []string{"bar"},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
SkipChangeCipherSpec: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
flags: []string{
|
|
|
|
"-advertise-npn", "\x03foo\x03bar\x03baz",
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
2014-07-21 21:14:03 +01:00
|
|
|
expectedError: ":HANDSHAKE_RECORD_BEFORE_CCS:",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "FragmentAcrossChangeCipherSpec-Client",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
FragmentAcrossChangeCipherSpec: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":HANDSHAKE_RECORD_BEFORE_CCS:",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "FragmentAcrossChangeCipherSpec-Server",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
FragmentAcrossChangeCipherSpec: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":HANDSHAKE_RECORD_BEFORE_CCS:",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "FragmentAcrossChangeCipherSpec-Server-NPN",
|
|
|
|
config: Config{
|
|
|
|
NextProtos: []string{"bar"},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
FragmentAcrossChangeCipherSpec: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
flags: []string{
|
|
|
|
"-advertise-npn", "\x03foo\x03bar\x03baz",
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":HANDSHAKE_RECORD_BEFORE_CCS:",
|
2014-07-21 19:50:23 +01:00
|
|
|
},
|
2014-07-22 03:42:34 +01:00
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "EarlyChangeCipherSpec-server-1",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
EarlyChangeCipherSpec: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":CCS_RECEIVED_EARLY:",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "EarlyChangeCipherSpec-server-2",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
EarlyChangeCipherSpec: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":CCS_RECEIVED_EARLY:",
|
|
|
|
},
|
2014-07-23 20:09:48 +01:00
|
|
|
{
|
|
|
|
name: "SessionTicketsDisabled-Client",
|
|
|
|
config: Config{
|
|
|
|
SessionTicketsDisabled: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
testType: serverTest,
|
|
|
|
name: "SessionTicketsDisabled-Server",
|
|
|
|
config: Config{
|
|
|
|
SessionTicketsDisabled: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "SkipNewSessionTicket",
|
|
|
|
config: Config{
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
SkipNewSessionTicket: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: ":CCS_RECEIVED_EARLY:",
|
|
|
|
},
|
2014-07-28 19:52:32 +01:00
|
|
|
{
|
|
|
|
name: "FalseStart",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
NextProtos: []string{"foo"},
|
|
|
|
},
|
|
|
|
flags: []string{
|
|
|
|
"-false-start",
|
|
|
|
"-select-next-proto", "foo",
|
|
|
|
},
|
|
|
|
resumeSession: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "FalseStart-SessionTicketsDisabled",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
NextProtos: []string{"foo"},
|
|
|
|
SessionTicketsDisabled: true,
|
|
|
|
},
|
|
|
|
flags: []string{
|
|
|
|
"-false-start",
|
|
|
|
"-select-next-proto", "foo",
|
|
|
|
},
|
|
|
|
},
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2014-07-23 00:20:02 +01:00
|
|
|
func doExchange(testType testType, config *Config, conn net.Conn, messageLen int) error {
|
|
|
|
var tlsConn *Conn
|
|
|
|
if testType == clientTest {
|
|
|
|
tlsConn = Server(conn, config)
|
|
|
|
} else {
|
|
|
|
config.InsecureSkipVerify = true
|
|
|
|
tlsConn = Client(conn, config)
|
|
|
|
}
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
if err := tlsConn.Handshake(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
if messageLen == 0 {
|
|
|
|
messageLen = 32
|
|
|
|
}
|
|
|
|
testMessage := make([]byte, messageLen)
|
|
|
|
for i := range testMessage {
|
|
|
|
testMessage[i] = 0x42
|
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
tlsConn.Write(testMessage)
|
|
|
|
|
|
|
|
buf := make([]byte, len(testMessage))
|
|
|
|
_, err := io.ReadFull(tlsConn, buf)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, v := range buf {
|
|
|
|
if v != testMessage[i]^0xff {
|
|
|
|
return fmt.Errorf("bad reply contents at byte %d", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-07-02 00:40:31 +01:00
|
|
|
func valgrindOf(dbAttach bool, path string, args ...string) *exec.Cmd {
|
|
|
|
valgrindArgs := []string{"--error-exitcode=99", "--track-origins=yes", "--leak-check=full"}
|
2014-06-20 20:00:00 +01:00
|
|
|
if dbAttach {
|
2014-07-02 00:40:31 +01:00
|
|
|
valgrindArgs = append(valgrindArgs, "--db-attach=yes", "--db-command=xterm -e gdb -nw %f %p")
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
2014-07-02 00:40:31 +01:00
|
|
|
valgrindArgs = append(valgrindArgs, path)
|
|
|
|
valgrindArgs = append(valgrindArgs, args...)
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-07-02 00:40:31 +01:00
|
|
|
return exec.Command("valgrind", valgrindArgs...)
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2014-07-02 00:40:31 +01:00
|
|
|
func gdbOf(path string, args ...string) *exec.Cmd {
|
|
|
|
xtermArgs := []string{"-e", "gdb", "--args"}
|
|
|
|
xtermArgs = append(xtermArgs, path)
|
|
|
|
xtermArgs = append(xtermArgs, args...)
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-07-02 00:40:31 +01:00
|
|
|
return exec.Command("xterm", xtermArgs...)
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
2014-07-23 00:20:02 +01:00
|
|
|
func openSocketPair() (shimEnd *os.File, conn net.Conn) {
|
2014-06-20 20:00:00 +01:00
|
|
|
socks, err := syscall.Socketpair(syscall.AF_UNIX, syscall.SOCK_STREAM, 0)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
syscall.CloseOnExec(socks[0])
|
|
|
|
syscall.CloseOnExec(socks[1])
|
2014-07-23 00:20:02 +01:00
|
|
|
shimEnd = os.NewFile(uintptr(socks[0]), "shim end")
|
2014-06-20 20:00:00 +01:00
|
|
|
connFile := os.NewFile(uintptr(socks[1]), "our end")
|
2014-07-23 00:20:02 +01:00
|
|
|
conn, err = net.FileConn(connFile)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
connFile.Close()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-07-23 00:20:02 +01:00
|
|
|
return shimEnd, conn
|
|
|
|
}
|
|
|
|
|
|
|
|
func runTest(test *testCase) error {
|
|
|
|
shimEnd, conn := openSocketPair()
|
|
|
|
shimEndResume, connResume := openSocketPair()
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
const shim_path = "../../../build/ssl/test/bssl_shim"
|
|
|
|
flags := []string{}
|
|
|
|
if test.testType == clientTest {
|
|
|
|
flags = append(flags, "client")
|
|
|
|
} else {
|
|
|
|
flags = append(flags, "server")
|
2014-07-23 00:20:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if test.resumeSession {
|
|
|
|
flags = append(flags, "resume")
|
|
|
|
} else {
|
|
|
|
flags = append(flags, "normal")
|
|
|
|
}
|
2014-07-02 00:53:04 +01:00
|
|
|
|
2014-07-23 00:20:02 +01:00
|
|
|
if test.testType == serverTest {
|
2014-07-02 00:53:04 +01:00
|
|
|
flags = append(flags, "-key-file")
|
|
|
|
if test.keyFile == "" {
|
|
|
|
flags = append(flags, rsaKeyFile)
|
|
|
|
} else {
|
|
|
|
flags = append(flags, test.keyFile)
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = append(flags, "-cert-file")
|
|
|
|
if test.certFile == "" {
|
|
|
|
flags = append(flags, rsaCertificateFile)
|
|
|
|
} else {
|
|
|
|
flags = append(flags, test.certFile)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
flags = append(flags, test.flags...)
|
|
|
|
|
|
|
|
var shim *exec.Cmd
|
2014-06-20 20:00:00 +01:00
|
|
|
if *useValgrind {
|
2014-07-02 00:53:04 +01:00
|
|
|
shim = valgrindOf(false, shim_path, flags...)
|
2014-06-20 20:00:00 +01:00
|
|
|
} else {
|
2014-07-02 00:53:04 +01:00
|
|
|
shim = exec.Command(shim_path, flags...)
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
2014-07-02 00:53:04 +01:00
|
|
|
// shim = gdbOf(shim_path, flags...)
|
2014-07-23 00:20:02 +01:00
|
|
|
shim.ExtraFiles = []*os.File{shimEnd, shimEndResume}
|
2014-07-02 00:53:04 +01:00
|
|
|
shim.Stdin = os.Stdin
|
2014-06-20 20:00:00 +01:00
|
|
|
var stdoutBuf, stderrBuf bytes.Buffer
|
2014-07-02 00:53:04 +01:00
|
|
|
shim.Stdout = &stdoutBuf
|
|
|
|
shim.Stderr = &stderrBuf
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
if err := shim.Start(); err != nil {
|
2014-06-20 20:00:00 +01:00
|
|
|
panic(err)
|
|
|
|
}
|
2014-07-02 00:53:04 +01:00
|
|
|
shimEnd.Close()
|
2014-07-23 00:20:02 +01:00
|
|
|
shimEndResume.Close()
|
2014-06-20 20:00:00 +01:00
|
|
|
|
|
|
|
config := test.config
|
2014-07-23 00:20:02 +01:00
|
|
|
config.ClientSessionCache = NewLRUClientSessionCache(1)
|
2014-07-02 00:53:04 +01:00
|
|
|
if test.testType == clientTest {
|
|
|
|
if len(config.Certificates) == 0 {
|
|
|
|
config.Certificates = []Certificate{getRSACertificate()}
|
|
|
|
}
|
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-07-23 00:20:02 +01:00
|
|
|
err := doExchange(test.testType, &config, conn, test.messageLen)
|
2014-06-20 20:00:00 +01:00
|
|
|
conn.Close()
|
2014-07-23 00:20:02 +01:00
|
|
|
if err == nil && test.resumeSession {
|
|
|
|
err = doExchange(test.testType, &config, connResume, test.messageLen)
|
|
|
|
connResume.Close()
|
|
|
|
}
|
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
childErr := shim.Wait()
|
2014-06-20 20:00:00 +01:00
|
|
|
|
|
|
|
stdout := string(stdoutBuf.Bytes())
|
|
|
|
stderr := string(stderrBuf.Bytes())
|
|
|
|
failed := err != nil || childErr != nil
|
|
|
|
correctFailure := len(test.expectedError) == 0 || strings.Contains(stdout, test.expectedError)
|
2014-06-23 20:03:11 +01:00
|
|
|
localError := "none"
|
|
|
|
if err != nil {
|
|
|
|
localError = err.Error()
|
|
|
|
}
|
|
|
|
if len(test.expectedLocalError) != 0 {
|
|
|
|
correctFailure = correctFailure && strings.Contains(localError, test.expectedLocalError)
|
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
|
|
|
if failed != test.shouldFail || failed && !correctFailure {
|
|
|
|
childError := "none"
|
|
|
|
if childErr != nil {
|
|
|
|
childError = childErr.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
var msg string
|
|
|
|
switch {
|
|
|
|
case failed && !test.shouldFail:
|
|
|
|
msg = "unexpected failure"
|
|
|
|
case !failed && test.shouldFail:
|
|
|
|
msg = "unexpected success"
|
|
|
|
case failed && !correctFailure:
|
2014-06-23 20:03:11 +01:00
|
|
|
msg = "bad error (wanted '" + test.expectedError + "' / '" + test.expectedLocalError + "')"
|
2014-06-20 20:00:00 +01:00
|
|
|
default:
|
|
|
|
panic("internal error")
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("%s: local error '%s', child error '%s', stdout:\n%s\nstderr:\n%s", msg, localError, childError, string(stdoutBuf.Bytes()), stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !*useValgrind && len(stderr) > 0 {
|
|
|
|
println(stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var tlsVersions = []struct {
|
|
|
|
name string
|
|
|
|
version uint16
|
|
|
|
}{
|
|
|
|
{"SSL3", VersionSSL30},
|
|
|
|
{"TLS1", VersionTLS10},
|
|
|
|
{"TLS11", VersionTLS11},
|
|
|
|
{"TLS12", VersionTLS12},
|
|
|
|
}
|
|
|
|
|
|
|
|
var testCipherSuites = []struct {
|
|
|
|
name string
|
|
|
|
id uint16
|
|
|
|
}{
|
|
|
|
{"3DES-SHA", TLS_RSA_WITH_3DES_EDE_CBC_SHA},
|
|
|
|
{"AES128-SHA", TLS_RSA_WITH_AES_128_CBC_SHA},
|
|
|
|
{"AES256-SHA", TLS_RSA_WITH_AES_256_CBC_SHA},
|
|
|
|
{"ECDHE-ECDSA-AES128-GCM", TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
{"ECDHE-ECDSA-AES128-SHA", TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA},
|
|
|
|
{"ECDHE-ECDSA-AES256-SHA", TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA},
|
|
|
|
{"ECDHE-ECDSA-RC4-SHA", TLS_ECDHE_ECDSA_WITH_RC4_128_SHA},
|
|
|
|
{"ECDHE-RSA-3DES-SHA", TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA},
|
|
|
|
{"ECDHE-RSA-AES128-GCM", TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
{"ECDHE-RSA-AES256-GCM", TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384},
|
|
|
|
{"ECDHE-RSA-AES128-SHA", TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA},
|
|
|
|
{"ECDHE-RSA-AES256-SHA", TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA},
|
|
|
|
{"ECDHE-RSA-RC4-SHA", TLS_ECDHE_RSA_WITH_RC4_128_SHA},
|
|
|
|
{"RC4-SHA", TLS_RSA_WITH_RC4_128_SHA},
|
|
|
|
{"RC4-MD5", TLS_RSA_WITH_RC4_128_MD5},
|
|
|
|
}
|
|
|
|
|
|
|
|
func addCipherSuiteTests() {
|
|
|
|
for _, suite := range testCipherSuites {
|
|
|
|
var cert Certificate
|
2014-07-02 00:53:04 +01:00
|
|
|
var certFile string
|
|
|
|
var keyFile string
|
2014-06-20 20:00:00 +01:00
|
|
|
if strings.Contains(suite.name, "ECDSA") {
|
|
|
|
cert = getECDSACertificate()
|
2014-07-02 00:53:04 +01:00
|
|
|
certFile = ecdsaCertificateFile
|
|
|
|
keyFile = ecdsaKeyFile
|
2014-06-20 20:00:00 +01:00
|
|
|
} else {
|
|
|
|
cert = getRSACertificate()
|
2014-07-02 00:53:04 +01:00
|
|
|
certFile = rsaCertificateFile
|
|
|
|
keyFile = rsaKeyFile
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, ver := range tlsVersions {
|
|
|
|
if ver.version != VersionTLS12 && strings.HasSuffix(suite.name, "-GCM") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-07-23 00:20:02 +01:00
|
|
|
// Go's TLS implementation only implements session
|
|
|
|
// resumption with tickets, so SSLv3 cannot resume
|
|
|
|
// sessions.
|
|
|
|
resumeSession := ver.version != VersionSSL30
|
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
testCases = append(testCases, testCase{
|
|
|
|
testType: clientTest,
|
|
|
|
name: ver.name + "-" + suite.name + "-client",
|
2014-06-20 20:00:00 +01:00
|
|
|
config: Config{
|
|
|
|
MinVersion: ver.version,
|
|
|
|
MaxVersion: ver.version,
|
|
|
|
CipherSuites: []uint16{suite.id},
|
|
|
|
Certificates: []Certificate{cert},
|
|
|
|
},
|
2014-07-23 00:20:02 +01:00
|
|
|
resumeSession: resumeSession,
|
2014-06-20 20:00:00 +01:00
|
|
|
})
|
2014-07-02 00:53:04 +01:00
|
|
|
|
|
|
|
// Go's TLS implementation implements SSLv3 as a server,
|
|
|
|
// but not as a client.
|
|
|
|
//
|
|
|
|
// TODO(davidben): Implement SSLv3 as a client too to
|
|
|
|
// exercise that code.
|
|
|
|
if ver.version != VersionSSL30 {
|
|
|
|
testCases = append(testCases, testCase{
|
|
|
|
testType: serverTest,
|
|
|
|
name: ver.name + "-" + suite.name + "-server",
|
|
|
|
config: Config{
|
|
|
|
MinVersion: ver.version,
|
|
|
|
MaxVersion: ver.version,
|
|
|
|
CipherSuites: []uint16{suite.id},
|
|
|
|
Certificates: []Certificate{cert},
|
|
|
|
},
|
2014-07-23 00:20:02 +01:00
|
|
|
certFile: certFile,
|
|
|
|
keyFile: keyFile,
|
|
|
|
resumeSession: resumeSession,
|
2014-07-02 00:53:04 +01:00
|
|
|
})
|
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func addBadECDSASignatureTests() {
|
|
|
|
for badR := BadValue(1); badR < NumBadValues; badR++ {
|
|
|
|
for badS := BadValue(1); badS < NumBadValues; badS++ {
|
2014-07-02 00:53:04 +01:00
|
|
|
testCases = append(testCases, testCase{
|
2014-06-20 20:00:00 +01:00
|
|
|
name: fmt.Sprintf("BadECDSA-%d-%d", badR, badS),
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
|
|
|
|
Certificates: []Certificate{getECDSACertificate()},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
BadECDSAR: badR,
|
|
|
|
BadECDSAS: badS,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: "SIGNATURE",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
func addCBCPaddingTests() {
|
2014-07-02 00:53:04 +01:00
|
|
|
testCases = append(testCases, testCase{
|
2014-06-20 20:00:00 +01:00
|
|
|
name: "MaxCBCPadding",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
MaxPadding: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
messageLen: 12, // 20 bytes of SHA-1 + 12 == 0 % block size
|
|
|
|
})
|
2014-07-02 00:53:04 +01:00
|
|
|
testCases = append(testCases, testCase{
|
2014-06-20 20:00:00 +01:00
|
|
|
name: "BadCBCPadding",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
PaddingFirstByteBad: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: "DECRYPTION_FAILED_OR_BAD_RECORD_MAC",
|
|
|
|
})
|
|
|
|
// OpenSSL previously had an issue where the first byte of padding in
|
|
|
|
// 255 bytes of padding wasn't checked.
|
2014-07-02 00:53:04 +01:00
|
|
|
testCases = append(testCases, testCase{
|
2014-06-20 20:00:00 +01:00
|
|
|
name: "BadCBCPadding255",
|
|
|
|
config: Config{
|
|
|
|
CipherSuites: []uint16{TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA},
|
|
|
|
Bugs: ProtocolBugs{
|
|
|
|
MaxPadding: true,
|
|
|
|
PaddingFirstByteBadIf255: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
messageLen: 12, // 20 bytes of SHA-1 + 12 == 0 % block size
|
|
|
|
shouldFail: true,
|
|
|
|
expectedError: "DECRYPTION_FAILED_OR_BAD_RECORD_MAC",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-08 22:59:18 +01:00
|
|
|
func addClientAuthTests() {
|
2014-07-16 17:58:59 +01:00
|
|
|
// Add a dummy cert pool to stress certificate authority parsing.
|
|
|
|
// TODO(davidben): Add tests that those values parse out correctly.
|
|
|
|
certPool := x509.NewCertPool()
|
|
|
|
cert, err := x509.ParseCertificate(rsaCertificate.Certificate[0])
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
certPool.AddCert(cert)
|
|
|
|
|
2014-07-08 22:59:18 +01:00
|
|
|
for _, ver := range tlsVersions {
|
|
|
|
if ver.version == VersionSSL30 {
|
|
|
|
// TODO(davidben): The Go implementation does not
|
|
|
|
// correctly compute CertificateVerify hashes for SSLv3.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var cipherSuites []uint16
|
|
|
|
if ver.version >= VersionTLS12 {
|
|
|
|
// Pick a SHA-256 cipher suite. The Go implementation
|
|
|
|
// does not correctly handle client auth with a SHA-384
|
|
|
|
// cipher suite.
|
|
|
|
cipherSuites = []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256}
|
|
|
|
}
|
|
|
|
|
|
|
|
testCases = append(testCases, testCase{
|
|
|
|
testType: clientTest,
|
2014-07-12 20:47:52 +01:00
|
|
|
name: ver.name + "-Client-ClientAuth-RSA",
|
2014-07-08 22:59:18 +01:00
|
|
|
config: Config{
|
|
|
|
MinVersion: ver.version,
|
|
|
|
MaxVersion: ver.version,
|
|
|
|
CipherSuites: cipherSuites,
|
|
|
|
ClientAuth: RequireAnyClientCert,
|
2014-07-16 17:58:59 +01:00
|
|
|
ClientCAs: certPool,
|
2014-07-08 22:59:18 +01:00
|
|
|
},
|
|
|
|
flags: []string{
|
|
|
|
"-cert-file", rsaCertificateFile,
|
|
|
|
"-key-file", rsaKeyFile,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
testCases = append(testCases, testCase{
|
|
|
|
testType: clientTest,
|
2014-07-12 20:47:52 +01:00
|
|
|
name: ver.name + "-Client-ClientAuth-ECDSA",
|
2014-07-08 22:59:18 +01:00
|
|
|
config: Config{
|
|
|
|
MinVersion: ver.version,
|
|
|
|
MaxVersion: ver.version,
|
|
|
|
CipherSuites: cipherSuites,
|
|
|
|
ClientAuth: RequireAnyClientCert,
|
2014-07-16 17:58:59 +01:00
|
|
|
ClientCAs: certPool,
|
2014-07-08 22:59:18 +01:00
|
|
|
},
|
|
|
|
flags: []string{
|
|
|
|
"-cert-file", ecdsaCertificateFile,
|
|
|
|
"-key-file", ecdsaKeyFile,
|
|
|
|
},
|
|
|
|
})
|
2014-07-12 20:47:52 +01:00
|
|
|
testCases = append(testCases, testCase{
|
|
|
|
testType: serverTest,
|
|
|
|
name: ver.name + "-Server-ClientAuth-RSA",
|
|
|
|
config: Config{
|
|
|
|
Certificates: []Certificate{rsaCertificate},
|
|
|
|
},
|
|
|
|
flags: []string{"-require-any-client-certificate"},
|
|
|
|
})
|
|
|
|
testCases = append(testCases, testCase{
|
|
|
|
testType: serverTest,
|
|
|
|
name: ver.name + "-Server-ClientAuth-ECDSA",
|
|
|
|
config: Config{
|
|
|
|
Certificates: []Certificate{ecdsaCertificate},
|
|
|
|
},
|
|
|
|
flags: []string{"-require-any-client-certificate"},
|
|
|
|
})
|
2014-07-08 22:59:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
func worker(statusChan chan statusMsg, c chan *testCase, wg *sync.WaitGroup) {
|
|
|
|
defer wg.Done()
|
|
|
|
|
|
|
|
for test := range c {
|
|
|
|
statusChan <- statusMsg{test: test, started: true}
|
|
|
|
err := runTest(test)
|
|
|
|
statusChan <- statusMsg{test: test, err: err}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type statusMsg struct {
|
|
|
|
test *testCase
|
|
|
|
started bool
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func statusPrinter(doneChan chan struct{}, statusChan chan statusMsg, total int) {
|
|
|
|
var started, done, failed, lineLen int
|
|
|
|
defer close(doneChan)
|
|
|
|
|
|
|
|
for msg := range statusChan {
|
|
|
|
if msg.started {
|
|
|
|
started++
|
|
|
|
} else {
|
|
|
|
done++
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("\x1b[%dD\x1b[K", lineLen)
|
|
|
|
|
|
|
|
if msg.err != nil {
|
|
|
|
fmt.Printf("FAILED (%s)\n%s\n", msg.test.name, msg.err)
|
|
|
|
failed++
|
|
|
|
}
|
|
|
|
line := fmt.Sprintf("%d/%d/%d/%d", failed, done, started, total)
|
|
|
|
lineLen = len(line)
|
|
|
|
os.Stdout.WriteString(line)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var flagTest *string = flag.String("test", "", "The name of a test to run, or empty to run all tests")
|
|
|
|
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
addCipherSuiteTests()
|
|
|
|
addBadECDSASignatureTests()
|
2014-06-20 20:00:00 +01:00
|
|
|
addCBCPaddingTests()
|
2014-07-08 22:59:18 +01:00
|
|
|
addClientAuthTests()
|
2014-06-20 20:00:00 +01:00
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
|
|
|
const numWorkers = 64
|
|
|
|
|
|
|
|
statusChan := make(chan statusMsg, numWorkers)
|
|
|
|
testChan := make(chan *testCase, numWorkers)
|
|
|
|
doneChan := make(chan struct{})
|
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
go statusPrinter(doneChan, statusChan, len(testCases))
|
2014-06-20 20:00:00 +01:00
|
|
|
|
|
|
|
for i := 0; i < numWorkers; i++ {
|
|
|
|
wg.Add(1)
|
|
|
|
go worker(statusChan, testChan, &wg)
|
|
|
|
}
|
|
|
|
|
2014-07-02 00:53:04 +01:00
|
|
|
for i := range testCases {
|
|
|
|
if len(*flagTest) == 0 || *flagTest == testCases[i].name {
|
|
|
|
testChan <- &testCases[i]
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close(testChan)
|
|
|
|
wg.Wait()
|
|
|
|
close(statusChan)
|
|
|
|
<-doneChan
|
|
|
|
|
|
|
|
fmt.Printf("\n")
|
|
|
|
}
|