2020-09-07 14:57:23 +08:00
|
|
|
package basic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-09-07 15:45:44 +08:00
|
|
|
"strings"
|
2023-06-29 11:20:45 +08:00
|
|
|
"time"
|
2020-09-07 14:57:23 +08:00
|
|
|
|
2023-02-27 14:44:16 +08:00
|
|
|
"github.com/onsi/ginkgo/v2"
|
2022-08-29 01:02:53 +08:00
|
|
|
|
2020-09-07 14:57:23 +08:00
|
|
|
"github.com/fatedier/frp/test/e2e/framework"
|
|
|
|
"github.com/fatedier/frp/test/e2e/framework/consts"
|
2021-08-02 13:07:28 +08:00
|
|
|
"github.com/fatedier/frp/test/e2e/pkg/cert"
|
2021-03-31 16:57:39 +08:00
|
|
|
"github.com/fatedier/frp/test/e2e/pkg/port"
|
2020-09-07 14:57:23 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type generalTestConfigures struct {
|
2023-06-29 11:20:45 +08:00
|
|
|
server string
|
|
|
|
client string
|
|
|
|
clientPrefix string
|
|
|
|
client2 string
|
|
|
|
client2Prefix string
|
|
|
|
testDelay time.Duration
|
|
|
|
expectError bool
|
2020-09-07 14:57:23 +08:00
|
|
|
}
|
|
|
|
|
2022-12-12 11:04:10 +08:00
|
|
|
func renderBindPortConfig(protocol string) string {
|
|
|
|
if protocol == "kcp" {
|
|
|
|
return fmt.Sprintf(`kcp_bind_port = {{ .%s }}`, consts.PortServerName)
|
|
|
|
} else if protocol == "quic" {
|
|
|
|
return fmt.Sprintf(`quic_bind_port = {{ .%s }}`, consts.PortServerName)
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-08-02 13:07:28 +08:00
|
|
|
func runClientServerTest(f *framework.Framework, configures *generalTestConfigures) {
|
2023-09-13 16:32:39 +08:00
|
|
|
serverConf := consts.LegacyDefaultServerConfig
|
|
|
|
clientConf := consts.LegacyDefaultClientConfig
|
2023-06-29 11:20:45 +08:00
|
|
|
if configures.clientPrefix != "" {
|
|
|
|
clientConf = configures.clientPrefix
|
|
|
|
}
|
2020-09-07 14:57:23 +08:00
|
|
|
|
2021-08-02 13:07:28 +08:00
|
|
|
serverConf += fmt.Sprintf(`
|
2020-09-07 14:57:23 +08:00
|
|
|
%s
|
|
|
|
`, configures.server)
|
|
|
|
|
2021-08-02 13:07:28 +08:00
|
|
|
tcpPortName := port.GenName("TCP")
|
|
|
|
udpPortName := port.GenName("UDP")
|
|
|
|
clientConf += fmt.Sprintf(`
|
2020-09-07 14:57:23 +08:00
|
|
|
%s
|
|
|
|
|
|
|
|
[tcp]
|
|
|
|
type = tcp
|
|
|
|
local_port = {{ .%s }}
|
|
|
|
remote_port = {{ .%s }}
|
|
|
|
|
|
|
|
[udp]
|
|
|
|
type = udp
|
|
|
|
local_port = {{ .%s }}
|
|
|
|
remote_port = {{ .%s }}
|
|
|
|
`, configures.client,
|
2021-08-02 13:07:28 +08:00
|
|
|
framework.TCPEchoServerPort, tcpPortName,
|
|
|
|
framework.UDPEchoServerPort, udpPortName,
|
|
|
|
)
|
2020-09-07 14:57:23 +08:00
|
|
|
|
2023-06-29 11:20:45 +08:00
|
|
|
clientConfs := []string{clientConf}
|
|
|
|
if configures.client2 != "" {
|
2023-09-13 16:32:39 +08:00
|
|
|
client2Conf := consts.LegacyDefaultClientConfig
|
2023-06-29 11:20:45 +08:00
|
|
|
if configures.client2Prefix != "" {
|
|
|
|
client2Conf = configures.client2Prefix
|
|
|
|
}
|
|
|
|
client2Conf += fmt.Sprintf(`
|
|
|
|
%s
|
|
|
|
`, configures.client2)
|
|
|
|
clientConfs = append(clientConfs, client2Conf)
|
|
|
|
}
|
|
|
|
|
|
|
|
f.RunProcesses([]string{serverConf}, clientConfs)
|
|
|
|
|
|
|
|
if configures.testDelay > 0 {
|
|
|
|
time.Sleep(configures.testDelay)
|
|
|
|
}
|
2020-09-07 14:57:23 +08:00
|
|
|
|
2021-08-02 13:07:28 +08:00
|
|
|
framework.NewRequestExpect(f).PortName(tcpPortName).ExpectError(configures.expectError).Explain("tcp proxy").Ensure()
|
|
|
|
framework.NewRequestExpect(f).Protocol("udp").
|
|
|
|
PortName(udpPortName).ExpectError(configures.expectError).Explain("udp proxy").Ensure()
|
|
|
|
}
|
|
|
|
|
|
|
|
// defineClientServerTest test a normal tcp and udp proxy with specified TestConfigures.
|
|
|
|
func defineClientServerTest(desc string, f *framework.Framework, configures *generalTestConfigures) {
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.It(desc, func() {
|
2021-08-02 13:07:28 +08:00
|
|
|
runClientServerTest(f, configures)
|
2020-09-07 14:57:23 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
var _ = ginkgo.Describe("[Feature: Client-Server]", func() {
|
2020-09-07 14:57:23 +08:00
|
|
|
f := framework.NewDefaultFramework()
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.Describe("Protocol", func() {
|
2022-12-12 11:04:10 +08:00
|
|
|
supportProtocols := []string{"tcp", "kcp", "quic", "websocket"}
|
2020-09-07 14:57:23 +08:00
|
|
|
for _, protocol := range supportProtocols {
|
|
|
|
configures := &generalTestConfigures{
|
|
|
|
server: fmt.Sprintf(`
|
2022-12-12 11:04:10 +08:00
|
|
|
%s
|
|
|
|
`, renderBindPortConfig(protocol)),
|
2020-09-07 14:57:23 +08:00
|
|
|
client: "protocol = " + protocol,
|
|
|
|
}
|
|
|
|
defineClientServerTest(protocol, f, configures)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2023-06-29 11:20:45 +08:00
|
|
|
// wss is special, it needs to be tested separately.
|
|
|
|
// frps only supports ws, so there should be a proxy to terminate TLS before frps.
|
|
|
|
ginkgo.Describe("Protocol wss", func() {
|
|
|
|
wssPort := f.AllocPort()
|
|
|
|
configures := &generalTestConfigures{
|
|
|
|
clientPrefix: fmt.Sprintf(`
|
|
|
|
[common]
|
|
|
|
server_addr = 127.0.0.1
|
|
|
|
server_port = %d
|
|
|
|
protocol = wss
|
|
|
|
log_level = trace
|
|
|
|
login_fail_exit = false
|
|
|
|
`, wssPort),
|
|
|
|
// Due to the fact that frps cannot directly accept wss connections, we use the https2http plugin of another frpc to terminate TLS.
|
|
|
|
client2: fmt.Sprintf(`
|
|
|
|
[wss2ws]
|
|
|
|
type = tcp
|
|
|
|
remote_port = %d
|
|
|
|
plugin = https2http
|
|
|
|
plugin_local_addr = 127.0.0.1:{{ .%s }}
|
|
|
|
`, wssPort, consts.PortServerName),
|
|
|
|
testDelay: 10 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
defineClientServerTest("wss", f, configures)
|
|
|
|
})
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.Describe("Authentication", func() {
|
2020-09-07 15:45:44 +08:00
|
|
|
defineClientServerTest("Token Correct", f, &generalTestConfigures{
|
|
|
|
server: "token = 123456",
|
|
|
|
client: "token = 123456",
|
|
|
|
})
|
2020-09-07 14:57:23 +08:00
|
|
|
|
2020-09-07 15:45:44 +08:00
|
|
|
defineClientServerTest("Token Incorrect", f, &generalTestConfigures{
|
|
|
|
server: "token = 123456",
|
|
|
|
client: "token = invalid",
|
|
|
|
expectError: true,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.Describe("TLS", func() {
|
2022-12-12 11:04:10 +08:00
|
|
|
supportProtocols := []string{"tcp", "kcp", "quic", "websocket"}
|
2020-09-07 15:45:44 +08:00
|
|
|
for _, protocol := range supportProtocols {
|
|
|
|
tmp := protocol
|
2023-06-26 00:10:27 +08:00
|
|
|
// Since v0.50.0, the default value of tls_enable has been changed to true.
|
|
|
|
// Therefore, here it needs to be set as false to test the scenario of turning it off.
|
|
|
|
defineClientServerTest("Disable TLS over "+strings.ToUpper(tmp), f, &generalTestConfigures{
|
2020-09-07 15:45:44 +08:00
|
|
|
server: fmt.Sprintf(`
|
2022-12-12 11:04:10 +08:00
|
|
|
%s
|
|
|
|
`, renderBindPortConfig(protocol)),
|
2023-06-26 00:10:27 +08:00
|
|
|
client: fmt.Sprintf(`tls_enable = false
|
2020-09-07 15:45:44 +08:00
|
|
|
protocol = %s
|
|
|
|
`, protocol),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
defineClientServerTest("enable tls_only, client with TLS", f, &generalTestConfigures{
|
|
|
|
server: "tls_only = true",
|
|
|
|
})
|
|
|
|
defineClientServerTest("enable tls_only, client without TLS", f, &generalTestConfigures{
|
|
|
|
server: "tls_only = true",
|
2023-06-26 00:10:27 +08:00
|
|
|
client: "tls_enable = false",
|
2020-09-07 15:45:44 +08:00
|
|
|
expectError: true,
|
|
|
|
})
|
2020-09-07 14:57:23 +08:00
|
|
|
})
|
2021-08-02 13:07:28 +08:00
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.Describe("TLS with custom certificate", func() {
|
2022-12-12 11:04:10 +08:00
|
|
|
supportProtocols := []string{"tcp", "kcp", "quic", "websocket"}
|
2021-08-02 13:07:28 +08:00
|
|
|
|
|
|
|
var (
|
|
|
|
caCrtPath string
|
|
|
|
serverCrtPath, serverKeyPath string
|
|
|
|
clientCrtPath, clientKeyPath string
|
|
|
|
)
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.JustBeforeEach(func() {
|
2021-08-02 13:07:28 +08:00
|
|
|
generator := &cert.SelfSignedCertGenerator{}
|
2022-12-12 11:04:10 +08:00
|
|
|
artifacts, err := generator.Generate("127.0.0.1")
|
2021-08-02 13:07:28 +08:00
|
|
|
framework.ExpectNoError(err)
|
|
|
|
|
|
|
|
caCrtPath = f.WriteTempFile("ca.crt", string(artifacts.CACert))
|
|
|
|
serverCrtPath = f.WriteTempFile("server.crt", string(artifacts.Cert))
|
|
|
|
serverKeyPath = f.WriteTempFile("server.key", string(artifacts.Key))
|
|
|
|
generator.SetCA(artifacts.CACert, artifacts.CAKey)
|
2022-12-12 11:04:10 +08:00
|
|
|
_, err = generator.Generate("127.0.0.1")
|
2022-08-29 01:02:53 +08:00
|
|
|
framework.ExpectNoError(err)
|
2021-08-02 13:07:28 +08:00
|
|
|
clientCrtPath = f.WriteTempFile("client.crt", string(artifacts.Cert))
|
|
|
|
clientKeyPath = f.WriteTempFile("client.key", string(artifacts.Key))
|
|
|
|
})
|
|
|
|
|
|
|
|
for _, protocol := range supportProtocols {
|
|
|
|
tmp := protocol
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.It("one-way authentication: "+tmp, func() {
|
2021-08-02 13:07:28 +08:00
|
|
|
runClientServerTest(f, &generalTestConfigures{
|
|
|
|
server: fmt.Sprintf(`
|
2022-12-12 11:04:10 +08:00
|
|
|
%s
|
2021-08-02 13:07:28 +08:00
|
|
|
tls_trusted_ca_file = %s
|
2022-12-12 11:04:10 +08:00
|
|
|
`, renderBindPortConfig(tmp), caCrtPath),
|
2021-08-02 13:07:28 +08:00
|
|
|
client: fmt.Sprintf(`
|
|
|
|
protocol = %s
|
|
|
|
tls_cert_file = %s
|
|
|
|
tls_key_file = %s
|
|
|
|
`, tmp, clientCrtPath, clientKeyPath),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.It("mutual authentication: "+tmp, func() {
|
2021-08-02 13:07:28 +08:00
|
|
|
runClientServerTest(f, &generalTestConfigures{
|
|
|
|
server: fmt.Sprintf(`
|
2022-12-12 11:04:10 +08:00
|
|
|
%s
|
2021-08-02 13:07:28 +08:00
|
|
|
tls_cert_file = %s
|
|
|
|
tls_key_file = %s
|
|
|
|
tls_trusted_ca_file = %s
|
2022-12-12 11:04:10 +08:00
|
|
|
`, renderBindPortConfig(tmp), serverCrtPath, serverKeyPath, caCrtPath),
|
2021-08-02 13:07:28 +08:00
|
|
|
client: fmt.Sprintf(`
|
|
|
|
protocol = %s
|
|
|
|
tls_cert_file = %s
|
|
|
|
tls_key_file = %s
|
|
|
|
tls_trusted_ca_file = %s
|
|
|
|
`, tmp, clientCrtPath, clientKeyPath, caCrtPath),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.Describe("TLS with custom certificate and specified server name", func() {
|
2021-08-02 13:07:28 +08:00
|
|
|
var (
|
|
|
|
caCrtPath string
|
|
|
|
serverCrtPath, serverKeyPath string
|
|
|
|
clientCrtPath, clientKeyPath string
|
|
|
|
)
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.JustBeforeEach(func() {
|
2021-08-02 13:07:28 +08:00
|
|
|
generator := &cert.SelfSignedCertGenerator{}
|
|
|
|
artifacts, err := generator.Generate("example.com")
|
|
|
|
framework.ExpectNoError(err)
|
|
|
|
|
|
|
|
caCrtPath = f.WriteTempFile("ca.crt", string(artifacts.CACert))
|
|
|
|
serverCrtPath = f.WriteTempFile("server.crt", string(artifacts.Cert))
|
|
|
|
serverKeyPath = f.WriteTempFile("server.key", string(artifacts.Key))
|
|
|
|
generator.SetCA(artifacts.CACert, artifacts.CAKey)
|
2022-08-29 01:02:53 +08:00
|
|
|
_, err = generator.Generate("example.com")
|
|
|
|
framework.ExpectNoError(err)
|
2021-08-02 13:07:28 +08:00
|
|
|
clientCrtPath = f.WriteTempFile("client.crt", string(artifacts.Cert))
|
|
|
|
clientKeyPath = f.WriteTempFile("client.key", string(artifacts.Key))
|
|
|
|
})
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.It("mutual authentication", func() {
|
2021-08-02 13:07:28 +08:00
|
|
|
runClientServerTest(f, &generalTestConfigures{
|
|
|
|
server: fmt.Sprintf(`
|
|
|
|
tls_cert_file = %s
|
|
|
|
tls_key_file = %s
|
|
|
|
tls_trusted_ca_file = %s
|
|
|
|
`, serverCrtPath, serverKeyPath, caCrtPath),
|
|
|
|
client: fmt.Sprintf(`
|
|
|
|
tls_server_name = example.com
|
|
|
|
tls_cert_file = %s
|
|
|
|
tls_key_file = %s
|
|
|
|
tls_trusted_ca_file = %s
|
|
|
|
`, clientCrtPath, clientKeyPath, caCrtPath),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.It("mutual authentication with incorrect server name", func() {
|
2021-08-02 13:07:28 +08:00
|
|
|
runClientServerTest(f, &generalTestConfigures{
|
|
|
|
server: fmt.Sprintf(`
|
|
|
|
tls_cert_file = %s
|
|
|
|
tls_key_file = %s
|
|
|
|
tls_trusted_ca_file = %s
|
|
|
|
`, serverCrtPath, serverKeyPath, caCrtPath),
|
|
|
|
client: fmt.Sprintf(`
|
|
|
|
tls_server_name = invalid.com
|
|
|
|
tls_cert_file = %s
|
|
|
|
tls_key_file = %s
|
|
|
|
tls_trusted_ca_file = %s
|
|
|
|
`, clientCrtPath, clientKeyPath, caCrtPath),
|
|
|
|
expectError: true,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2021-08-11 23:10:35 +08:00
|
|
|
|
2023-06-26 00:10:27 +08:00
|
|
|
ginkgo.Describe("TLS with disable_custom_tls_first_byte set to false", func() {
|
2022-12-12 11:04:10 +08:00
|
|
|
supportProtocols := []string{"tcp", "kcp", "quic", "websocket"}
|
2021-08-11 23:10:35 +08:00
|
|
|
for _, protocol := range supportProtocols {
|
|
|
|
tmp := protocol
|
|
|
|
defineClientServerTest("TLS over "+strings.ToUpper(tmp), f, &generalTestConfigures{
|
|
|
|
server: fmt.Sprintf(`
|
2022-12-12 11:04:10 +08:00
|
|
|
%s
|
|
|
|
`, renderBindPortConfig(protocol)),
|
2021-08-11 23:10:35 +08:00
|
|
|
client: fmt.Sprintf(`
|
|
|
|
protocol = %s
|
2023-06-26 00:10:27 +08:00
|
|
|
disable_custom_tls_first_byte = false
|
2021-08-11 23:10:35 +08:00
|
|
|
`, protocol),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
2022-02-09 15:19:35 +08:00
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
ginkgo.Describe("IPv6 bind address", func() {
|
2022-12-12 11:04:10 +08:00
|
|
|
supportProtocols := []string{"tcp", "kcp", "quic", "websocket"}
|
2022-02-09 15:19:35 +08:00
|
|
|
for _, protocol := range supportProtocols {
|
|
|
|
tmp := protocol
|
|
|
|
defineClientServerTest("IPv6 bind address: "+strings.ToUpper(tmp), f, &generalTestConfigures{
|
|
|
|
server: fmt.Sprintf(`
|
|
|
|
bind_addr = ::
|
2022-12-12 11:04:10 +08:00
|
|
|
%s
|
|
|
|
`, renderBindPortConfig(protocol)),
|
2022-02-09 15:19:35 +08:00
|
|
|
client: fmt.Sprintf(`
|
|
|
|
protocol = %s
|
|
|
|
`, protocol),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
2020-09-07 14:57:23 +08:00
|
|
|
})
|