2016-01-28 07:40:00 -05:00
|
|
|
package scenarios
|
|
|
|
|
|
|
|
import (
|
2017-03-31 11:06:16 -04:00
|
|
|
"crypto/rand"
|
2017-11-26 10:56:09 -05:00
|
|
|
"fmt"
|
2017-03-31 11:06:16 -04:00
|
|
|
"sync"
|
2016-01-28 07:40:00 -05:00
|
|
|
"testing"
|
2017-01-29 03:02:19 -05:00
|
|
|
"time"
|
2016-12-09 06:08:25 -05:00
|
|
|
|
2017-03-31 11:06:16 -04:00
|
|
|
"v2ray.com/core"
|
|
|
|
"v2ray.com/core/app/log"
|
|
|
|
"v2ray.com/core/app/proxyman"
|
2017-11-26 15:51:30 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2017-12-19 16:29:56 -05:00
|
|
|
clog "v2ray.com/core/common/log"
|
2017-08-29 06:56:57 -04:00
|
|
|
"v2ray.com/core/common/net"
|
2017-03-31 11:06:16 -04:00
|
|
|
"v2ray.com/core/common/protocol"
|
|
|
|
"v2ray.com/core/common/serial"
|
|
|
|
"v2ray.com/core/proxy/dokodemo"
|
|
|
|
"v2ray.com/core/proxy/freedom"
|
|
|
|
"v2ray.com/core/proxy/shadowsocks"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/testing/servers/tcp"
|
2017-05-02 16:29:02 -04:00
|
|
|
"v2ray.com/core/testing/servers/udp"
|
2017-10-26 15:44:22 -04:00
|
|
|
. "v2ray.com/ext/assert"
|
2017-11-26 10:56:09 -05:00
|
|
|
|
|
|
|
ss "github.com/shadowsocks/go-shadowsocks2/core"
|
2016-01-28 07:40:00 -05:00
|
|
|
)
|
|
|
|
|
2017-03-31 11:06:16 -04:00
|
|
|
func TestShadowsocksAES256TCP(t *testing.T) {
|
2017-10-24 10:15:35 -04:00
|
|
|
assert := With(t)
|
2016-01-28 07:40:00 -05:00
|
|
|
|
2017-03-31 11:06:16 -04:00
|
|
|
tcpServer := tcp.Server{
|
|
|
|
MsgProcessor: xor,
|
|
|
|
}
|
|
|
|
dest, err := tcpServer.Start()
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2017-03-31 11:06:16 -04:00
|
|
|
defer tcpServer.Close()
|
|
|
|
|
|
|
|
account := serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: "shadowsocks-password",
|
|
|
|
CipherType: shadowsocks.CipherType_AES_256_CFB,
|
|
|
|
Ota: shadowsocks.Account_Enabled,
|
|
|
|
})
|
|
|
|
|
|
|
|
serverPort := pickPort()
|
|
|
|
serverConfig := &core.Config{
|
2017-10-20 17:30:36 -04:00
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-10-20 17:30:36 -04:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-03-31 11:06:16 -04:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
2017-08-29 06:56:57 -04:00
|
|
|
PortRange: net.SinglePortRange(serverPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
2017-03-31 11:06:16 -04:00
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ServerConfig{
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: account,
|
2017-03-31 14:56:30 -04:00
|
|
|
Level: 1,
|
2017-03-31 11:06:16 -04:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-03-31 11:06:16 -04:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
|
|
},
|
|
|
|
},
|
2017-10-20 17:30:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
clientPort := pickPort()
|
|
|
|
clientConfig := &core.Config{
|
2017-03-31 11:06:16 -04:00
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-03-31 11:06:16 -04:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-03-31 11:06:16 -04:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
2017-08-29 06:56:57 -04:00
|
|
|
PortRange: net.SinglePortRange(clientPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
2017-03-31 11:06:16 -04:00
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&dokodemo.Config{
|
2017-08-29 06:56:57 -04:00
|
|
|
Address: net.NewIPOrDomain(dest.Address),
|
2017-03-31 11:06:16 -04:00
|
|
|
Port: uint32(dest.Port),
|
2017-08-29 06:56:57 -04:00
|
|
|
NetworkList: &net.NetworkList{
|
|
|
|
Network: []net.Network{net.Network_TCP},
|
2017-03-31 11:06:16 -04:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-03-31 11:06:16 -04:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ClientConfig{
|
|
|
|
Server: []*protocol.ServerEndpoint{
|
|
|
|
{
|
2017-08-29 06:56:57 -04:00
|
|
|
Address: net.NewIPOrDomain(net.LocalHostIP),
|
2017-03-31 11:06:16 -04:00
|
|
|
Port: uint32(serverPort),
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Account: account,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2016-01-28 07:40:00 -05:00
|
|
|
}
|
2017-03-31 11:06:16 -04:00
|
|
|
|
2017-05-17 18:39:30 -04:00
|
|
|
servers, err := InitializeServerConfigs(serverConfig, clientConfig)
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2017-03-31 11:06:16 -04:00
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go func() {
|
|
|
|
conn, err := net.DialTCP("tcp", nil, &net.TCPAddr{
|
|
|
|
IP: []byte{127, 0, 0, 1},
|
|
|
|
Port: int(clientPort),
|
|
|
|
})
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2017-03-31 11:06:16 -04:00
|
|
|
|
|
|
|
payload := make([]byte, 10240*1024)
|
|
|
|
rand.Read(payload)
|
|
|
|
|
|
|
|
nBytes, err := conn.Write([]byte(payload))
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
|
|
|
assert(nBytes, Equals, len(payload))
|
2017-03-31 11:06:16 -04:00
|
|
|
|
2017-03-31 11:24:39 -04:00
|
|
|
response := readFrom(conn, time.Second*20, 10240*1024)
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(response, Equals, xor([]byte(payload)))
|
|
|
|
assert(conn.Close(), IsNil)
|
2017-05-02 16:29:02 -04:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
2017-05-17 18:39:30 -04:00
|
|
|
CloseAllServers(servers)
|
2017-05-02 16:29:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestShadowsocksAES128UDP(t *testing.T) {
|
2017-10-24 10:15:35 -04:00
|
|
|
assert := With(t)
|
2017-05-02 16:29:02 -04:00
|
|
|
|
|
|
|
udpServer := udp.Server{
|
|
|
|
MsgProcessor: xor,
|
|
|
|
}
|
|
|
|
dest, err := udpServer.Start()
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2017-05-02 16:29:02 -04:00
|
|
|
defer udpServer.Close()
|
|
|
|
|
|
|
|
account := serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: "shadowsocks-password",
|
|
|
|
CipherType: shadowsocks.CipherType_AES_128_CFB,
|
|
|
|
Ota: shadowsocks.Account_Enabled,
|
|
|
|
})
|
|
|
|
|
|
|
|
serverPort := pickPort()
|
|
|
|
serverConfig := &core.Config{
|
2017-10-20 17:30:36 -04:00
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-10-20 17:30:36 -04:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-05-02 16:29:02 -04:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
2017-08-29 06:56:57 -04:00
|
|
|
PortRange: net.SinglePortRange(serverPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
2017-05-02 16:29:02 -04:00
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ServerConfig{
|
|
|
|
UdpEnabled: true,
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: account,
|
|
|
|
Level: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-05-02 16:29:02 -04:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
|
|
},
|
|
|
|
},
|
2017-10-20 17:30:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
clientPort := pickPort()
|
|
|
|
clientConfig := &core.Config{
|
2017-05-02 16:29:02 -04:00
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-05-02 16:29:02 -04:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-05-02 16:29:02 -04:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
2017-08-29 06:56:57 -04:00
|
|
|
PortRange: net.SinglePortRange(clientPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
2017-05-02 16:29:02 -04:00
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&dokodemo.Config{
|
2017-08-29 06:56:57 -04:00
|
|
|
Address: net.NewIPOrDomain(dest.Address),
|
2017-05-02 16:29:02 -04:00
|
|
|
Port: uint32(dest.Port),
|
2017-08-29 06:56:57 -04:00
|
|
|
NetworkList: &net.NetworkList{
|
|
|
|
Network: []net.Network{net.Network_UDP},
|
2017-05-02 16:29:02 -04:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-05-02 16:29:02 -04:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ClientConfig{
|
|
|
|
Server: []*protocol.ServerEndpoint{
|
|
|
|
{
|
2017-08-29 06:56:57 -04:00
|
|
|
Address: net.NewIPOrDomain(net.LocalHostIP),
|
2017-05-02 16:29:02 -04:00
|
|
|
Port: uint32(serverPort),
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Account: account,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-05-17 18:39:30 -04:00
|
|
|
servers, err := InitializeServerConfigs(serverConfig, clientConfig)
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2017-05-02 16:29:02 -04:00
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go func() {
|
|
|
|
conn, err := net.DialUDP("udp", nil, &net.UDPAddr{
|
|
|
|
IP: []byte{127, 0, 0, 1},
|
|
|
|
Port: int(clientPort),
|
|
|
|
})
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2017-05-02 16:29:02 -04:00
|
|
|
|
|
|
|
payload := make([]byte, 1024)
|
|
|
|
rand.Read(payload)
|
|
|
|
|
|
|
|
nBytes, err := conn.Write([]byte(payload))
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
|
|
|
assert(nBytes, Equals, len(payload))
|
2017-05-02 16:29:02 -04:00
|
|
|
|
|
|
|
response := readFrom(conn, time.Second*5, 1024)
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(response, Equals, xor([]byte(payload)))
|
|
|
|
assert(conn.Close(), IsNil)
|
2017-03-31 11:06:16 -04:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
2017-05-17 18:39:30 -04:00
|
|
|
CloseAllServers(servers)
|
2017-03-31 11:06:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestShadowsocksChacha20TCP(t *testing.T) {
|
2017-10-24 10:15:35 -04:00
|
|
|
assert := With(t)
|
2017-03-31 11:06:16 -04:00
|
|
|
|
|
|
|
tcpServer := tcp.Server{
|
|
|
|
MsgProcessor: xor,
|
|
|
|
}
|
|
|
|
dest, err := tcpServer.Start()
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2016-01-28 07:40:00 -05:00
|
|
|
defer tcpServer.Close()
|
|
|
|
|
2017-03-31 11:06:16 -04:00
|
|
|
account := serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: "shadowsocks-password",
|
|
|
|
CipherType: shadowsocks.CipherType_CHACHA20_IETF,
|
|
|
|
Ota: shadowsocks.Account_Enabled,
|
|
|
|
})
|
|
|
|
|
|
|
|
serverPort := pickPort()
|
|
|
|
serverConfig := &core.Config{
|
2017-10-20 17:30:36 -04:00
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-10-20 17:30:36 -04:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-03-31 11:06:16 -04:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
2017-08-29 06:56:57 -04:00
|
|
|
PortRange: net.SinglePortRange(serverPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
2017-03-31 11:06:16 -04:00
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ServerConfig{
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: account,
|
2017-03-31 14:56:30 -04:00
|
|
|
Level: 1,
|
2017-03-31 11:06:16 -04:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-03-31 11:06:16 -04:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
|
|
},
|
|
|
|
},
|
2017-10-20 17:30:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
clientPort := pickPort()
|
|
|
|
clientConfig := &core.Config{
|
2017-03-31 11:06:16 -04:00
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-03-31 11:06:16 -04:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-03-31 11:06:16 -04:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
2017-08-29 06:56:57 -04:00
|
|
|
PortRange: net.SinglePortRange(clientPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
2017-03-31 11:06:16 -04:00
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&dokodemo.Config{
|
2017-08-29 06:56:57 -04:00
|
|
|
Address: net.NewIPOrDomain(dest.Address),
|
2017-03-31 11:06:16 -04:00
|
|
|
Port: uint32(dest.Port),
|
2017-08-29 06:56:57 -04:00
|
|
|
NetworkList: &net.NetworkList{
|
|
|
|
Network: []net.Network{net.Network_TCP},
|
2017-03-31 11:06:16 -04:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-03-31 11:06:16 -04:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ClientConfig{
|
|
|
|
Server: []*protocol.ServerEndpoint{
|
|
|
|
{
|
2017-08-29 06:56:57 -04:00
|
|
|
Address: net.NewIPOrDomain(net.LocalHostIP),
|
2017-03-31 11:06:16 -04:00
|
|
|
Port: uint32(serverPort),
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Account: account,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-05-17 18:39:30 -04:00
|
|
|
servers, err := InitializeServerConfigs(serverConfig, clientConfig)
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2016-11-04 20:00:54 -04:00
|
|
|
|
2017-03-31 11:06:16 -04:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go func() {
|
|
|
|
conn, err := net.DialTCP("tcp", nil, &net.TCPAddr{
|
|
|
|
IP: []byte{127, 0, 0, 1},
|
|
|
|
Port: int(clientPort),
|
|
|
|
})
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
2016-11-04 20:00:54 -04:00
|
|
|
|
2017-03-31 11:06:16 -04:00
|
|
|
payload := make([]byte, 10240*1024)
|
|
|
|
rand.Read(payload)
|
2016-11-04 20:00:54 -04:00
|
|
|
|
2017-03-31 11:06:16 -04:00
|
|
|
nBytes, err := conn.Write([]byte(payload))
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(err, IsNil)
|
|
|
|
assert(nBytes, Equals, len(payload))
|
2016-11-04 20:00:54 -04:00
|
|
|
|
2017-03-31 11:24:39 -04:00
|
|
|
response := readFrom(conn, time.Second*20, 10240*1024)
|
2017-10-24 10:15:35 -04:00
|
|
|
assert(response, Equals, xor([]byte(payload)))
|
|
|
|
assert(conn.Close(), IsNil)
|
2017-03-31 11:06:16 -04:00
|
|
|
wg.Done()
|
|
|
|
}()
|
2016-11-04 20:00:54 -04:00
|
|
|
}
|
2017-03-31 11:06:16 -04:00
|
|
|
wg.Wait()
|
2016-02-23 12:16:13 -05:00
|
|
|
|
2017-05-17 18:39:30 -04:00
|
|
|
CloseAllServers(servers)
|
2016-01-28 07:40:00 -05:00
|
|
|
}
|
2017-11-26 10:56:09 -05:00
|
|
|
|
|
|
|
func TestShadowsocksAES256GCMTCP(t *testing.T) {
|
|
|
|
assert := With(t)
|
|
|
|
|
|
|
|
tcpServer := tcp.Server{
|
|
|
|
MsgProcessor: xor,
|
|
|
|
}
|
|
|
|
dest, err := tcpServer.Start()
|
|
|
|
assert(err, IsNil)
|
|
|
|
defer tcpServer.Close()
|
|
|
|
|
|
|
|
account := serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: "shadowsocks-password",
|
|
|
|
CipherType: shadowsocks.CipherType_AES_256_GCM,
|
|
|
|
})
|
|
|
|
|
|
|
|
serverPort := pickPort()
|
|
|
|
serverConfig := &core.Config{
|
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-11-26 10:56:09 -05:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: net.SinglePortRange(serverPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ServerConfig{
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: account,
|
|
|
|
Level: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
clientPort := pickPort()
|
|
|
|
clientConfig := &core.Config{
|
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-11-26 10:56:09 -05:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: net.SinglePortRange(clientPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&dokodemo.Config{
|
|
|
|
Address: net.NewIPOrDomain(dest.Address),
|
|
|
|
Port: uint32(dest.Port),
|
|
|
|
NetworkList: &net.NetworkList{
|
|
|
|
Network: []net.Network{net.Network_TCP},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ClientConfig{
|
|
|
|
Server: []*protocol.ServerEndpoint{
|
|
|
|
{
|
|
|
|
Address: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
Port: uint32(serverPort),
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Account: account,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
servers, err := InitializeServerConfigs(serverConfig, clientConfig)
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go func() {
|
|
|
|
conn, err := net.DialTCP("tcp", nil, &net.TCPAddr{
|
|
|
|
IP: []byte{127, 0, 0, 1},
|
|
|
|
Port: int(clientPort),
|
|
|
|
})
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
payload := make([]byte, 10240*1024)
|
|
|
|
rand.Read(payload)
|
|
|
|
|
|
|
|
nBytes, err := conn.Write([]byte(payload))
|
|
|
|
assert(err, IsNil)
|
|
|
|
assert(nBytes, Equals, len(payload))
|
|
|
|
|
|
|
|
response := readFrom(conn, time.Second*20, 10240*1024)
|
|
|
|
assert(response, Equals, xor([]byte(payload)))
|
|
|
|
assert(conn.Close(), IsNil)
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
CloseAllServers(servers)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShadowsocksAES128GCMUDP(t *testing.T) {
|
|
|
|
assert := With(t)
|
|
|
|
|
|
|
|
udpServer := udp.Server{
|
|
|
|
MsgProcessor: xor,
|
|
|
|
}
|
|
|
|
dest, err := udpServer.Start()
|
|
|
|
assert(err, IsNil)
|
|
|
|
defer udpServer.Close()
|
|
|
|
|
|
|
|
account := serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: "shadowsocks-password",
|
|
|
|
CipherType: shadowsocks.CipherType_AES_128_GCM,
|
|
|
|
})
|
|
|
|
|
|
|
|
serverPort := pickPort()
|
|
|
|
serverConfig := &core.Config{
|
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-11-26 10:56:09 -05:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: net.SinglePortRange(serverPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ServerConfig{
|
|
|
|
UdpEnabled: true,
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: account,
|
|
|
|
Level: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
clientPort := pickPort()
|
|
|
|
clientConfig := &core.Config{
|
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-11-26 10:56:09 -05:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: net.SinglePortRange(clientPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&dokodemo.Config{
|
|
|
|
Address: net.NewIPOrDomain(dest.Address),
|
|
|
|
Port: uint32(dest.Port),
|
|
|
|
NetworkList: &net.NetworkList{
|
|
|
|
Network: []net.Network{net.Network_UDP},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ClientConfig{
|
|
|
|
Server: []*protocol.ServerEndpoint{
|
|
|
|
{
|
|
|
|
Address: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
Port: uint32(serverPort),
|
|
|
|
User: []*protocol.User{
|
|
|
|
{
|
|
|
|
Account: account,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
servers, err := InitializeServerConfigs(serverConfig, clientConfig)
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go func() {
|
|
|
|
conn, err := net.DialUDP("udp", nil, &net.UDPAddr{
|
|
|
|
IP: []byte{127, 0, 0, 1},
|
|
|
|
Port: int(clientPort),
|
|
|
|
})
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
payload := make([]byte, 1024)
|
|
|
|
rand.Read(payload)
|
|
|
|
|
|
|
|
nBytes, err := conn.Write([]byte(payload))
|
|
|
|
assert(err, IsNil)
|
|
|
|
assert(nBytes, Equals, len(payload))
|
|
|
|
|
|
|
|
response := readFrom(conn, time.Second*5, 1024)
|
|
|
|
assert(response, Equals, xor([]byte(payload)))
|
|
|
|
assert(conn.Close(), IsNil)
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
CloseAllServers(servers)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShadowsocksAES256GCMConformance(t *testing.T) {
|
|
|
|
assert := With(t)
|
|
|
|
|
|
|
|
tcpServer := tcp.Server{
|
|
|
|
MsgProcessor: xor,
|
|
|
|
}
|
|
|
|
dest, err := tcpServer.Start()
|
|
|
|
assert(err, IsNil)
|
|
|
|
defer tcpServer.Close()
|
|
|
|
|
|
|
|
account := serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: "ss-password",
|
|
|
|
CipherType: shadowsocks.CipherType_AES_256_GCM,
|
|
|
|
})
|
|
|
|
|
|
|
|
serverPort := pickPort()
|
|
|
|
serverConfig := &core.Config{
|
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-11-26 10:56:09 -05:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: net.SinglePortRange(serverPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ServerConfig{
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: account,
|
|
|
|
Level: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-11-26 10:56:09 -05:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
servers, err := InitializeServerConfigs(serverConfig)
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go func() {
|
|
|
|
cipher, err := ss.PickCipher("AES-256-GCM", nil, "ss-password")
|
|
|
|
assert(err, IsNil)
|
|
|
|
conn, err := ss.Dial("tcp", fmt.Sprintf(":%d", serverPort), cipher)
|
|
|
|
assert(err, IsNil)
|
|
|
|
_, err = conn.Write([]byte{1, 127, 0, 0, 1})
|
|
|
|
assert(err, IsNil)
|
|
|
|
_, err = conn.Write(serial.Uint16ToBytes(dest.Port.Value(), nil))
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
payload := make([]byte, 10240*1024)
|
|
|
|
rand.Read(payload)
|
|
|
|
|
|
|
|
nBytes, err := conn.Write([]byte(payload))
|
|
|
|
assert(err, IsNil)
|
|
|
|
assert(nBytes, Equals, len(payload))
|
|
|
|
|
|
|
|
response := readFrom(conn, time.Second*30, 10240*1024)
|
|
|
|
assert(response, Equals, xor([]byte(payload)))
|
|
|
|
assert(conn.Close(), IsNil)
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
CloseAllServers(servers)
|
|
|
|
}
|
2017-11-26 15:51:30 -05:00
|
|
|
|
|
|
|
func TestShadowsocksChacha20Poly1305UDPConformance(t *testing.T) {
|
|
|
|
assert := With(t)
|
|
|
|
|
|
|
|
udpServer := udp.Server{
|
|
|
|
MsgProcessor: xor,
|
|
|
|
}
|
|
|
|
dest, err := udpServer.Start()
|
|
|
|
assert(err, IsNil)
|
|
|
|
defer udpServer.Close()
|
|
|
|
|
|
|
|
account := serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: "ss-password",
|
|
|
|
CipherType: shadowsocks.CipherType_CHACHA20_POLY1305,
|
|
|
|
})
|
|
|
|
|
|
|
|
serverPort := pickPort()
|
|
|
|
serverConfig := &core.Config{
|
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-11-26 15:51:30 -05:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-11-26 15:51:30 -05:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: net.SinglePortRange(serverPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ServerConfig{
|
|
|
|
UdpEnabled: true,
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: account,
|
|
|
|
Level: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-11-26 15:51:30 -05:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
servers, err := InitializeServerConfigs(serverConfig)
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
cipher, err := ss.PickCipher("CHACHA20-IETF-POLY1305", nil, "ss-password")
|
|
|
|
assert(err, IsNil)
|
|
|
|
conn, err := ss.ListenPacket("udp", ":0", cipher)
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
for i := 0; i < 100; i++ {
|
|
|
|
|
|
|
|
payload := buf.New()
|
|
|
|
payload.AppendBytes(1, 127, 0, 0, 1)
|
|
|
|
payload.AppendSupplier(serial.WriteUint16(dest.Port.Value()))
|
|
|
|
|
|
|
|
payload.AppendSupplier(buf.ReadFullFrom(rand.Reader, 10))
|
|
|
|
|
|
|
|
nBytes, err := conn.WriteTo(payload.Bytes(), &net.UDPAddr{
|
|
|
|
IP: []byte{127, 0, 0, 1},
|
|
|
|
Port: int(serverPort),
|
|
|
|
})
|
|
|
|
assert(err, IsNil)
|
|
|
|
assert(nBytes, Equals, payload.Len())
|
|
|
|
|
|
|
|
conn.SetReadDeadline(time.Now().Add(time.Second * 10))
|
|
|
|
response := make([]byte, 10240)
|
|
|
|
nBytes, _, err = conn.ReadFrom(response)
|
|
|
|
assert(err, IsNil)
|
|
|
|
assert(response[:7], Equals, payload.BytesTo(7))
|
|
|
|
assert(response[7:nBytes], Equals, xor(payload.BytesFrom(7)))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(conn.Close(), IsNil)
|
|
|
|
|
|
|
|
CloseAllServers(servers)
|
|
|
|
}
|
2017-11-30 14:59:12 -05:00
|
|
|
|
|
|
|
func TestShadowsocksChacha20Conformance(t *testing.T) {
|
|
|
|
assert := With(t)
|
|
|
|
|
|
|
|
tcpServer := tcp.Server{
|
|
|
|
MsgProcessor: xor,
|
|
|
|
}
|
|
|
|
dest, err := tcpServer.Start()
|
|
|
|
assert(err, IsNil)
|
|
|
|
defer tcpServer.Close()
|
|
|
|
|
|
|
|
account := serial.ToTypedMessage(&shadowsocks.Account{
|
|
|
|
Password: "ss-password",
|
|
|
|
CipherType: shadowsocks.CipherType_CHACHA20_IETF,
|
|
|
|
Ota: shadowsocks.Account_Disabled,
|
|
|
|
})
|
|
|
|
|
|
|
|
serverPort := pickPort()
|
|
|
|
serverConfig := &core.Config{
|
|
|
|
App: []*serial.TypedMessage{
|
|
|
|
serial.ToTypedMessage(&log.Config{
|
2017-12-19 16:29:56 -05:00
|
|
|
ErrorLogLevel: clog.Severity_Debug,
|
2017-11-30 14:59:12 -05:00
|
|
|
ErrorLogType: log.LogType_Console,
|
|
|
|
}),
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Inbound: []*core.InboundHandlerConfig{
|
2017-11-30 14:59:12 -05:00
|
|
|
{
|
|
|
|
ReceiverSettings: serial.ToTypedMessage(&proxyman.ReceiverConfig{
|
|
|
|
PortRange: net.SinglePortRange(serverPort),
|
|
|
|
Listen: net.NewIPOrDomain(net.LocalHostIP),
|
|
|
|
}),
|
|
|
|
ProxySettings: serial.ToTypedMessage(&shadowsocks.ServerConfig{
|
|
|
|
User: &protocol.User{
|
|
|
|
Account: account,
|
|
|
|
Level: 1,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
},
|
2018-01-10 06:22:37 -05:00
|
|
|
Outbound: []*core.OutboundHandlerConfig{
|
2017-11-30 14:59:12 -05:00
|
|
|
{
|
|
|
|
ProxySettings: serial.ToTypedMessage(&freedom.Config{}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
servers, err := InitializeServerConfigs(serverConfig)
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(10)
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
go func() {
|
|
|
|
cipher, err := ss.PickCipher("CHACHA20-IETF", nil, "ss-password")
|
|
|
|
assert(err, IsNil)
|
|
|
|
conn, err := ss.Dial("tcp", fmt.Sprintf(":%d", serverPort), cipher)
|
|
|
|
assert(err, IsNil)
|
|
|
|
_, err = conn.Write([]byte{1, 127, 0, 0, 1})
|
|
|
|
assert(err, IsNil)
|
|
|
|
_, err = conn.Write(serial.Uint16ToBytes(dest.Port.Value(), nil))
|
|
|
|
assert(err, IsNil)
|
|
|
|
|
|
|
|
payload := make([]byte, 10240*1024)
|
|
|
|
rand.Read(payload)
|
|
|
|
|
|
|
|
nBytes, err := conn.Write([]byte(payload))
|
|
|
|
assert(err, IsNil)
|
|
|
|
assert(nBytes, Equals, len(payload))
|
|
|
|
|
|
|
|
response := readFrom(conn, time.Second*30, 10240*1024)
|
|
|
|
assert(response, Equals, xor([]byte(payload)))
|
|
|
|
assert(conn.Close(), IsNil)
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
CloseAllServers(servers)
|
|
|
|
}
|