| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /*
- * Copyright (c) 2019, Psiphon Inc.
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package psiphon
- import (
- "context"
- "fmt"
- "io/ioutil"
- "net"
- "strings"
- "testing"
- "time"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/parameters"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/protocol"
- tris "github.com/Psiphon-Labs/tls-tris"
- )
- func TestTLSCompatibility(t *testing.T) {
- // Config should be newline delimited list of domain/IP:port TLS host
- // addresses to connect to.
- config, err := ioutil.ReadFile("tlsCompatibility_test.config")
- if err != nil {
- // Skip, don't fail, if config file is not present
- t.Skipf("error loading configuration file: %s", err)
- }
- addresses := strings.Split(string(config), "\n")
- runner := func(address string) func(t *testing.T) {
- return func(t *testing.T) {
- testTLSCompatibility(t, address)
- }
- }
- for _, address := range addresses {
- if len(address) > 0 {
- t.Run(address, runner(address))
- }
- }
- t.Run("psiphon", runner(""))
- }
- func testTLSCompatibility(t *testing.T, address string) {
- if address == "" {
- // Same tls-tris config as psiphon/server/meek.go
- certificate, privateKey, err := common.GenerateWebServerCertificate(common.GenerateHostName())
- if err != nil {
- t.Fatalf("%s\n", err)
- }
- tlsCertificate, err := tris.X509KeyPair([]byte(certificate), []byte(privateKey))
- if err != nil {
- t.Fatalf("%s\n", err)
- }
- config := &tris.Config{
- Certificates: []tris.Certificate{tlsCertificate},
- NextProtos: []string{"http/1.1"},
- MinVersion: tris.VersionTLS10,
- UseExtendedMasterSecret: true,
- }
- tcpListener, err := net.Listen("tcp", "127.0.0.1:0")
- if err != nil {
- t.Fatalf("%s\n", err)
- }
- tlsListener := tris.NewListener(tcpListener, config)
- defer tlsListener.Close()
- address = tlsListener.Addr().String()
- go func() {
- for {
- conn, err := tlsListener.Accept()
- if err != nil {
- return
- }
- err = conn.(*tris.Conn).Handshake()
- if err != nil {
- t.Logf("server handshake: %s", err)
- }
- conn.Close()
- }
- }()
- }
- dialer := func(ctx context.Context, network, address string) (net.Conn, error) {
- d := &net.Dialer{}
- return d.DialContext(ctx, network, address)
- }
- clientParameters, err := parameters.NewClientParameters(nil)
- if err != nil {
- t.Fatalf("%s\n", err)
- }
- for _, tlsProfile := range protocol.SupportedTLSProfiles {
- repeats := 1
- if protocol.TLSProfileIsRandomized(tlsProfile) {
- repeats = 20
- }
- success := 0
- for i := 0; i < repeats; i++ {
- tlsConfig := &CustomTLSConfig{
- ClientParameters: clientParameters,
- Dial: dialer,
- UseDialAddrSNI: true,
- SkipVerify: true,
- TLSProfile: tlsProfile,
- }
- ctx, cancelFunc := context.WithTimeout(context.Background(), 5*time.Second)
- conn, err := CustomTLSDial(ctx, "tcp", address, tlsConfig)
- if err != nil {
- t.Logf("%s: %s\n", tlsProfile, err)
- } else {
- conn.Close()
- success += 1
- }
- cancelFunc()
- time.Sleep(100 * time.Millisecond)
- }
- result := fmt.Sprintf("%s: %d/%d successful\n", tlsProfile, success, repeats)
- if success == repeats {
- t.Logf(result)
- } else {
- t.Errorf(result)
- }
- }
- }
|