nps/server/proxy/socks5.go

277 lines
6.3 KiB
Go
Raw Normal View History

2019-02-12 19:54:00 +00:00
package proxy
2018-11-29 11:55:24 +00:00
import (
"encoding/binary"
"errors"
2019-02-03 04:40:43 +00:00
"github.com/cnlh/nps/bridge"
2019-02-09 09:07:47 +00:00
"github.com/cnlh/nps/lib/common"
"github.com/cnlh/nps/lib/conn"
"github.com/cnlh/nps/lib/file"
2019-02-23 15:29:48 +00:00
"github.com/cnlh/nps/vender/github.com/astaxie/beego/logs"
2018-11-29 11:55:24 +00:00
"io"
"net"
"strconv"
)
const (
ipV4 = 1
domainName = 3
ipV6 = 4
2018-11-29 11:55:24 +00:00
connectMethod = 1
bindMethod = 2
associateMethod = 3
// The maximum packet size of any udp Associate packet, based on ethernet's max size,
// minus the IP and UDP headers. IPv4 has a 20 byte header, UDP adds an
// additional 4 bytes. This is a total overhead of 24 bytes. Ethernet's
// max packet size is 1500 bytes, 1500 - 24 = 1476.
maxUDPPacketSize = 1476
)
const (
succeeded uint8 = iota
serverFailure
notAllowed
networkUnreachable
hostUnreachable
connectionRefused
ttlExpired
commandNotSupported
addrTypeNotSupported
)
const (
UserPassAuth = uint8(2)
userAuthVersion = uint8(1)
authSuccess = uint8(0)
authFailure = uint8(1)
)
2018-11-29 11:55:24 +00:00
type Sock5ModeServer struct {
2019-02-23 15:29:48 +00:00
BaseServer
2019-01-05 19:16:46 +00:00
listener net.Listener
2018-11-29 11:55:24 +00:00
}
2019-01-03 16:21:23 +00:00
//req
2018-11-29 11:55:24 +00:00
func (s *Sock5ModeServer) handleRequest(c net.Conn) {
/*
The SOCKS request is formed as follows:
+----+-----+-------+------+----------+----------+
|VER | CMD | RSV | ATYP | DST.ADDR | DST.PORT |
+----+-----+-------+------+----------+----------+
| 1 | 1 | X'00' | 1 | Variable | 2 |
+----+-----+-------+------+----------+----------+
*/
header := make([]byte, 3)
_, err := io.ReadFull(c, header)
if err != nil {
2019-02-23 15:29:48 +00:00
logs.Warn("illegal request", err)
2018-11-29 11:55:24 +00:00
c.Close()
return
}
switch header[1] {
case connectMethod:
s.handleConnect(c)
case bindMethod:
s.handleBind(c)
case associateMethod:
s.handleUDP(c)
default:
s.sendReply(c, commandNotSupported)
c.Close()
}
}
2019-01-03 16:21:23 +00:00
//reply
2018-11-29 11:55:24 +00:00
func (s *Sock5ModeServer) sendReply(c net.Conn, rep uint8) {
reply := []byte{
5,
rep,
0,
1,
}
localAddr := c.LocalAddr().String()
localHost, localPort, _ := net.SplitHostPort(localAddr)
ipBytes := net.ParseIP(localHost).To4()
nPort, _ := strconv.Atoi(localPort)
reply = append(reply, ipBytes...)
portBytes := make([]byte, 2)
binary.BigEndian.PutUint16(portBytes, uint16(nPort))
reply = append(reply, portBytes...)
c.Write(reply)
}
2019-01-03 16:21:23 +00:00
//do conn
func (s *Sock5ModeServer) doConnect(c net.Conn, command uint8) {
2018-11-29 11:55:24 +00:00
addrType := make([]byte, 1)
c.Read(addrType)
var host string
switch addrType[0] {
case ipV4:
ipv4 := make(net.IP, net.IPv4len)
c.Read(ipv4)
host = ipv4.String()
case ipV6:
ipv6 := make(net.IP, net.IPv6len)
c.Read(ipv6)
host = ipv6.String()
case domainName:
var domainLen uint8
binary.Read(c, binary.BigEndian, &domainLen)
domain := make([]byte, domainLen)
c.Read(domain)
host = string(domain)
default:
s.sendReply(c, addrTypeNotSupported)
return
2018-11-29 11:55:24 +00:00
}
var port uint16
binary.Read(c, binary.BigEndian, &port)
// connect to host
addr := net.JoinHostPort(host, strconv.Itoa(int(port)))
var ltype string
if command == associateMethod {
2019-02-09 09:07:47 +00:00
ltype = common.CONN_UDP
} else {
2019-02-09 09:07:47 +00:00
ltype = common.CONN_TCP
}
2019-03-23 14:19:59 +00:00
s.DealClient(conn.NewConn(c), s.task.Client, addr, nil, ltype, func() {
s.sendReply(c, succeeded)
2019-03-25 10:39:31 +00:00
}, s.task.Flow)
2019-01-15 12:59:50 +00:00
return
2018-11-29 11:55:24 +00:00
}
2019-01-03 16:21:23 +00:00
//conn
2018-11-29 11:55:24 +00:00
func (s *Sock5ModeServer) handleConnect(c net.Conn) {
s.doConnect(c, connectMethod)
2018-11-29 11:55:24 +00:00
}
2018-12-06 12:45:14 +00:00
2018-11-29 11:55:24 +00:00
// passive mode
func (s *Sock5ModeServer) handleBind(c net.Conn) {
}
2019-01-03 16:21:23 +00:00
//udp
2018-11-29 11:55:24 +00:00
func (s *Sock5ModeServer) handleUDP(c net.Conn) {
/*
+----+------+------+----------+----------+----------+
|RSV | FRAG | ATYP | DST.ADDR | DST.PORT | DATA |
+----+------+------+----------+----------+----------+
| 2 | 1 | 1 | Variable | 2 | Variable |
+----+------+------+----------+----------+----------+
*/
buf := make([]byte, 3)
c.Read(buf)
// relay udp datagram silently, without any notification to the requesting client
if buf[2] != 0 {
// does not support fragmentation, drop it
2019-02-23 15:29:48 +00:00
logs.Warn("does not support fragmentation, drop")
2018-11-29 11:55:24 +00:00
dummy := make([]byte, maxUDPPacketSize)
c.Read(dummy)
}
s.doConnect(c, associateMethod)
2018-11-29 11:55:24 +00:00
}
2019-01-03 16:21:23 +00:00
//new conn
2019-01-09 12:33:00 +00:00
func (s *Sock5ModeServer) handleConn(c net.Conn) {
2018-11-29 11:55:24 +00:00
buf := make([]byte, 2)
if _, err := io.ReadFull(c, buf); err != nil {
2019-02-23 15:29:48 +00:00
logs.Warn("negotiation err", err)
2018-11-29 11:55:24 +00:00
c.Close()
return
}
if version := buf[0]; version != 5 {
2019-02-23 15:29:48 +00:00
logs.Warn("only support socks5, request from: ", c.RemoteAddr())
2018-11-29 11:55:24 +00:00
c.Close()
return
}
nMethods := buf[1]
methods := make([]byte, nMethods)
if len, err := c.Read(methods); len != int(nMethods) || err != nil {
2019-02-23 15:29:48 +00:00
logs.Warn("wrong method")
2018-11-29 11:55:24 +00:00
c.Close()
return
}
2019-02-15 14:59:28 +00:00
if s.task.Client.Cnf.U != "" && s.task.Client.Cnf.P != "" {
buf[1] = UserPassAuth
c.Write(buf)
if err := s.Auth(c); err != nil {
c.Close()
2019-02-23 15:29:48 +00:00
logs.Warn("Validation failed:", err)
return
}
} else {
buf[1] = 0
c.Write(buf)
}
2018-11-29 11:55:24 +00:00
s.handleRequest(c)
}
2019-01-03 16:21:23 +00:00
//socks5 auth
func (s *Sock5ModeServer) Auth(c net.Conn) error {
header := []byte{0, 0}
if _, err := io.ReadAtLeast(c, header, 2); err != nil {
return err
}
if header[0] != userAuthVersion {
return errors.New("验证方式不被支持")
}
userLen := int(header[1])
user := make([]byte, userLen)
if _, err := io.ReadAtLeast(c, user, userLen); err != nil {
return err
}
if _, err := c.Read(header[:1]); err != nil {
return errors.New("密码长度获取错误")
}
passLen := int(header[0])
pass := make([]byte, passLen)
if _, err := io.ReadAtLeast(c, pass, passLen); err != nil {
return err
}
2019-02-16 12:43:26 +00:00
if string(user) == s.task.Client.Cnf.U && string(pass) == s.task.Client.Cnf.P {
if _, err := c.Write([]byte{userAuthVersion, authSuccess}); err != nil {
return err
}
return nil
} else {
if _, err := c.Write([]byte{userAuthVersion, authFailure}); err != nil {
return err
}
return errors.New("验证不通过")
}
}
2019-01-03 16:21:23 +00:00
//start
2018-12-11 08:37:12 +00:00
func (s *Sock5ModeServer) Start() error {
2019-03-23 14:19:59 +00:00
return conn.NewTcpListenerAndProcess(":"+strconv.Itoa(s.task.Port), func(c net.Conn) {
if err := s.CheckFlowAndConnNum(s.task.Client); err != nil {
logs.Warn("client id %d, task id %d, error %s, when socks5 connection", s.task.Client.Id, s.task.Id, err.Error())
c.Close()
return
2018-11-29 11:55:24 +00:00
}
2019-03-23 14:19:59 +00:00
logs.Trace("New socks5 connection,client %d,remote address %s", s.task.Client.Id, c.RemoteAddr())
s.handleConn(c)
}, &s.listener)
2018-11-29 11:55:24 +00:00
}
2019-01-03 16:21:23 +00:00
//new
2019-02-09 09:07:47 +00:00
func NewSock5ModeServer(bridge *bridge.Bridge, task *file.Tunnel) *Sock5ModeServer {
2018-11-29 11:55:24 +00:00
s := new(Sock5ModeServer)
2019-01-05 19:16:46 +00:00
s.bridge = bridge
2019-01-26 09:27:28 +00:00
s.task = task
2018-11-29 11:55:24 +00:00
return s
}
2019-03-23 14:19:59 +00:00
//close
func (s *Sock5ModeServer) Close() error {
return s.listener.Close()
}