2016-01-15 06:43:06 -05:00
|
|
|
package socks_test
|
2015-09-11 08:12:09 -04:00
|
|
|
|
|
|
|
import (
|
2015-09-19 09:35:20 -04:00
|
|
|
"bytes"
|
2015-11-01 15:32:08 -05:00
|
|
|
"fmt"
|
2015-09-19 09:35:20 -04:00
|
|
|
"io/ioutil"
|
|
|
|
"net"
|
2015-09-11 08:12:09 -04:00
|
|
|
"testing"
|
|
|
|
|
2015-09-19 09:35:20 -04:00
|
|
|
"golang.org/x/net/proxy"
|
|
|
|
|
2016-01-01 17:44:11 -05:00
|
|
|
"github.com/v2ray/v2ray-core/app"
|
2016-05-18 11:12:04 -04:00
|
|
|
"github.com/v2ray/v2ray-core/app/dns"
|
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
2015-11-01 15:32:08 -05:00
|
|
|
v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
|
2016-01-02 17:32:18 -05:00
|
|
|
v2proxy "github.com/v2ray/v2ray-core/proxy"
|
2016-01-01 17:44:11 -05:00
|
|
|
proxytesting "github.com/v2ray/v2ray-core/proxy/testing"
|
2015-11-01 15:15:08 -05:00
|
|
|
proxymocks "github.com/v2ray/v2ray-core/proxy/testing/mocks"
|
2015-11-29 08:45:32 -05:00
|
|
|
"github.com/v2ray/v2ray-core/shell/point"
|
2015-12-02 09:27:18 -05:00
|
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
2015-09-11 08:12:09 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSocksTcpConnect(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2015-11-01 15:32:08 -05:00
|
|
|
port := v2nettesting.PickPort()
|
2015-09-19 09:35:20 -04:00
|
|
|
|
2015-11-01 15:15:08 -05:00
|
|
|
connInput := []byte("The data to be returned to socks server.")
|
|
|
|
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
|
|
|
|
och := &proxymocks.OutboundConnectionHandler{
|
|
|
|
ConnOutput: connOutput,
|
|
|
|
ConnInput: bytes.NewReader(connInput),
|
2015-09-19 09:35:20 -04:00
|
|
|
}
|
|
|
|
|
2016-06-03 18:38:22 -04:00
|
|
|
protocol, err := proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och",
|
|
|
|
func(space app.Space, config interface{}, sendThrough v2net.Address) (v2proxy.OutboundHandler, error) {
|
|
|
|
return och, nil
|
|
|
|
})
|
2016-01-01 17:44:11 -05:00
|
|
|
assert.Error(err).IsNil()
|
2015-09-19 09:35:20 -04:00
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
config := &point.Config{
|
2016-06-03 18:38:22 -04:00
|
|
|
Port: port,
|
|
|
|
InboundConfig: &point.InboundConnectionConfig{
|
2016-01-17 15:43:10 -05:00
|
|
|
Protocol: "socks",
|
2016-06-03 18:38:22 -04:00
|
|
|
ListenOn: v2net.LocalHostIP,
|
2016-01-17 15:43:10 -05:00
|
|
|
Settings: []byte(`
|
2016-01-02 11:40:51 -05:00
|
|
|
{
|
|
|
|
"auth": "noauth"
|
|
|
|
}`),
|
2015-09-19 09:35:20 -04:00
|
|
|
},
|
2016-05-18 11:12:04 -04:00
|
|
|
DNSConfig: &dns.Config{
|
|
|
|
NameServers: []v2net.Destination{
|
|
|
|
v2net.UDPDestination(v2net.DomainAddress("localhost"), v2net.Port(53)),
|
|
|
|
},
|
|
|
|
},
|
2016-06-03 18:38:22 -04:00
|
|
|
OutboundConfig: &point.OutboundConnectionConfig{
|
2016-01-17 15:43:10 -05:00
|
|
|
Protocol: protocol,
|
|
|
|
Settings: nil,
|
2015-09-19 09:35:20 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
point, err := point.NewPoint(config)
|
2015-09-19 09:35:20 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
err = point.Start()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
2015-11-01 15:32:08 -05:00
|
|
|
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), nil, proxy.Direct)
|
2015-09-19 09:35:20 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
2015-09-19 09:42:46 -04:00
|
|
|
targetServer := "google.com:80"
|
|
|
|
conn, err := socks5Client.Dial("tcp", targetServer)
|
2015-09-19 09:35:20 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
data2Send := "The data to be sent to remote server."
|
|
|
|
conn.Write([]byte(data2Send))
|
|
|
|
if tcpConn, ok := conn.(*net.TCPConn); ok {
|
|
|
|
tcpConn.CloseWrite()
|
|
|
|
}
|
|
|
|
|
|
|
|
dataReturned, err := ioutil.ReadAll(conn)
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
conn.Close()
|
|
|
|
|
2015-11-01 15:15:08 -05:00
|
|
|
assert.Bytes([]byte(data2Send)).Equals(connOutput.Bytes())
|
|
|
|
assert.Bytes(dataReturned).Equals(connInput)
|
2016-05-24 15:55:46 -04:00
|
|
|
assert.String(targetServer).Equals(och.Destination.NetAddr())
|
2015-09-19 09:42:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestSocksTcpConnectWithUserPass(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2015-11-01 15:32:08 -05:00
|
|
|
port := v2nettesting.PickPort()
|
2015-09-19 09:42:46 -04:00
|
|
|
|
2015-11-01 15:15:08 -05:00
|
|
|
connInput := []byte("The data to be returned to socks server.")
|
|
|
|
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
|
|
|
|
och := &proxymocks.OutboundConnectionHandler{
|
|
|
|
ConnInput: bytes.NewReader(connInput),
|
|
|
|
ConnOutput: connOutput,
|
2015-09-19 09:42:46 -04:00
|
|
|
}
|
|
|
|
|
2016-06-03 18:38:22 -04:00
|
|
|
protocol, err := proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och",
|
|
|
|
func(space app.Space, config interface{}, sendThrough v2net.Address) (v2proxy.OutboundHandler, error) {
|
|
|
|
return och, nil
|
|
|
|
})
|
2016-01-01 17:44:11 -05:00
|
|
|
assert.Error(err).IsNil()
|
2015-09-19 09:42:46 -04:00
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
config := &point.Config{
|
2016-06-03 18:38:22 -04:00
|
|
|
Port: port,
|
|
|
|
InboundConfig: &point.InboundConnectionConfig{
|
2016-01-17 15:43:10 -05:00
|
|
|
Protocol: "socks",
|
2016-06-03 18:38:22 -04:00
|
|
|
ListenOn: v2net.LocalHostIP,
|
2016-01-17 15:43:10 -05:00
|
|
|
Settings: []byte(`
|
2016-01-02 11:40:51 -05:00
|
|
|
{
|
|
|
|
"auth": "password",
|
|
|
|
"accounts": [
|
|
|
|
{"user": "userx", "pass": "passy"}
|
|
|
|
]
|
|
|
|
}`),
|
2015-09-19 09:42:46 -04:00
|
|
|
},
|
2016-05-18 11:12:04 -04:00
|
|
|
DNSConfig: &dns.Config{
|
|
|
|
NameServers: []v2net.Destination{
|
|
|
|
v2net.UDPDestination(v2net.DomainAddress("localhost"), v2net.Port(53)),
|
|
|
|
},
|
|
|
|
},
|
2016-06-03 18:38:22 -04:00
|
|
|
OutboundConfig: &point.OutboundConnectionConfig{
|
2016-01-17 15:43:10 -05:00
|
|
|
Protocol: protocol,
|
|
|
|
Settings: nil,
|
2015-09-19 09:42:46 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
point, err := point.NewPoint(config)
|
2015-09-19 09:42:46 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
err = point.Start()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
2016-04-25 18:59:44 -04:00
|
|
|
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), &proxy.Auth{User: "userx", Password: "passy"}, proxy.Direct)
|
2015-09-19 09:42:46 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
targetServer := "1.2.3.4:443"
|
|
|
|
conn, err := socks5Client.Dial("tcp", targetServer)
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
data2Send := "The data to be sent to remote server."
|
|
|
|
conn.Write([]byte(data2Send))
|
|
|
|
if tcpConn, ok := conn.(*net.TCPConn); ok {
|
|
|
|
tcpConn.CloseWrite()
|
|
|
|
}
|
|
|
|
|
|
|
|
dataReturned, err := ioutil.ReadAll(conn)
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
conn.Close()
|
|
|
|
|
2015-11-01 15:15:08 -05:00
|
|
|
assert.Bytes([]byte(data2Send)).Equals(connOutput.Bytes())
|
|
|
|
assert.Bytes(dataReturned).Equals(connInput)
|
2016-05-24 15:55:46 -04:00
|
|
|
assert.String(targetServer).Equals(och.Destination.NetAddr())
|
2015-09-11 08:12:09 -04:00
|
|
|
}
|
2015-10-03 18:44:27 -04:00
|
|
|
|
2015-10-13 15:29:27 -04:00
|
|
|
func TestSocksTcpConnectWithWrongUserPass(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2015-11-01 15:32:08 -05:00
|
|
|
port := v2nettesting.PickPort()
|
2015-10-13 15:29:27 -04:00
|
|
|
|
2015-11-01 15:15:08 -05:00
|
|
|
connInput := []byte("The data to be returned to socks server.")
|
|
|
|
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
|
|
|
|
och := &proxymocks.OutboundConnectionHandler{
|
|
|
|
ConnInput: bytes.NewReader(connInput),
|
|
|
|
ConnOutput: connOutput,
|
2015-10-13 15:29:27 -04:00
|
|
|
}
|
|
|
|
|
2016-06-03 18:38:22 -04:00
|
|
|
protocol, err := proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och",
|
|
|
|
func(space app.Space, config interface{}, sendThrough v2net.Address) (v2proxy.OutboundHandler, error) {
|
|
|
|
return och, nil
|
|
|
|
})
|
2016-01-01 17:44:11 -05:00
|
|
|
assert.Error(err).IsNil()
|
2015-10-13 15:29:27 -04:00
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
config := &point.Config{
|
2016-06-03 18:38:22 -04:00
|
|
|
Port: port,
|
|
|
|
InboundConfig: &point.InboundConnectionConfig{
|
2016-01-17 15:43:10 -05:00
|
|
|
Protocol: "socks",
|
2016-06-03 18:38:22 -04:00
|
|
|
ListenOn: v2net.LocalHostIP,
|
2016-01-17 15:43:10 -05:00
|
|
|
Settings: []byte(`
|
2016-01-02 11:40:51 -05:00
|
|
|
{
|
|
|
|
"auth": "password",
|
|
|
|
"accounts": [
|
|
|
|
{"user": "userx", "pass": "passy"}
|
|
|
|
]
|
|
|
|
}`),
|
2015-10-13 15:29:27 -04:00
|
|
|
},
|
2016-05-18 11:12:04 -04:00
|
|
|
DNSConfig: &dns.Config{
|
|
|
|
NameServers: []v2net.Destination{
|
|
|
|
v2net.UDPDestination(v2net.DomainAddress("localhost"), v2net.Port(53)),
|
|
|
|
},
|
|
|
|
},
|
2016-06-03 18:38:22 -04:00
|
|
|
OutboundConfig: &point.OutboundConnectionConfig{
|
2016-01-17 15:43:10 -05:00
|
|
|
Protocol: protocol,
|
|
|
|
Settings: nil,
|
2015-10-13 15:29:27 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
point, err := point.NewPoint(config)
|
2015-10-13 15:29:27 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
err = point.Start()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
2016-04-25 18:59:44 -04:00
|
|
|
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), &proxy.Auth{User: "userx", Password: "passz"}, proxy.Direct)
|
2015-10-13 15:29:27 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
targetServer := "1.2.3.4:443"
|
|
|
|
_, err = socks5Client.Dial("tcp", targetServer)
|
|
|
|
assert.Error(err).IsNotNil()
|
|
|
|
}
|
|
|
|
|
2015-10-13 15:55:12 -04:00
|
|
|
func TestSocksTcpConnectWithWrongAuthMethod(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2015-11-01 15:32:08 -05:00
|
|
|
port := v2nettesting.PickPort()
|
2015-10-13 15:55:12 -04:00
|
|
|
|
2015-11-01 15:15:08 -05:00
|
|
|
connInput := []byte("The data to be returned to socks server.")
|
|
|
|
connOutput := bytes.NewBuffer(make([]byte, 0, 1024))
|
|
|
|
och := &proxymocks.OutboundConnectionHandler{
|
|
|
|
ConnInput: bytes.NewReader(connInput),
|
|
|
|
ConnOutput: connOutput,
|
2015-10-13 15:55:12 -04:00
|
|
|
}
|
|
|
|
|
2016-06-03 18:38:22 -04:00
|
|
|
protocol, err := proxytesting.RegisterOutboundConnectionHandlerCreator("mock_och",
|
|
|
|
func(space app.Space, config interface{}, sendThrough v2net.Address) (v2proxy.OutboundHandler, error) {
|
|
|
|
return och, nil
|
|
|
|
})
|
2016-01-01 17:44:11 -05:00
|
|
|
assert.Error(err).IsNil()
|
2015-10-13 15:55:12 -04:00
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
config := &point.Config{
|
2016-06-03 18:38:22 -04:00
|
|
|
Port: port,
|
|
|
|
InboundConfig: &point.InboundConnectionConfig{
|
|
|
|
ListenOn: v2net.LocalHostIP,
|
2016-01-17 15:43:10 -05:00
|
|
|
Protocol: "socks",
|
|
|
|
Settings: []byte(`
|
2016-01-02 11:40:51 -05:00
|
|
|
{
|
|
|
|
"auth": "password",
|
|
|
|
"accounts": [
|
|
|
|
{"user": "userx", "pass": "passy"}
|
|
|
|
]
|
|
|
|
}`),
|
2015-10-13 15:55:12 -04:00
|
|
|
},
|
2016-05-18 11:12:04 -04:00
|
|
|
DNSConfig: &dns.Config{
|
|
|
|
NameServers: []v2net.Destination{
|
|
|
|
v2net.UDPDestination(v2net.DomainAddress("localhost"), v2net.Port(53)),
|
|
|
|
},
|
|
|
|
},
|
2016-06-03 18:38:22 -04:00
|
|
|
OutboundConfig: &point.OutboundConnectionConfig{
|
2016-01-17 15:43:10 -05:00
|
|
|
Protocol: protocol,
|
|
|
|
Settings: nil,
|
2015-10-13 15:55:12 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-01-17 15:43:10 -05:00
|
|
|
point, err := point.NewPoint(config)
|
2015-10-13 15:55:12 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
err = point.Start()
|
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
2015-11-01 15:32:08 -05:00
|
|
|
socks5Client, err := proxy.SOCKS5("tcp", fmt.Sprintf("127.0.0.1:%d", port), nil, proxy.Direct)
|
2015-10-13 15:55:12 -04:00
|
|
|
assert.Error(err).IsNil()
|
|
|
|
|
|
|
|
targetServer := "1.2.3.4:443"
|
|
|
|
_, err = socks5Client.Dial("tcp", targetServer)
|
|
|
|
assert.Error(err).IsNotNil()
|
|
|
|
}
|