nps/lib/conn/conn.go

440 lines
10 KiB
Go
Raw Normal View History

2019-02-09 09:07:47 +00:00
package conn
2018-11-29 11:55:24 +00:00
import (
2018-12-11 08:37:12 +00:00
"bufio"
2018-11-29 11:55:24 +00:00
"bytes"
"encoding/binary"
"errors"
2019-02-09 09:07:47 +00:00
"github.com/cnlh/nps/lib/common"
2019-02-23 15:29:48 +00:00
"github.com/cnlh/nps/lib/config"
2019-02-09 09:07:47 +00:00
"github.com/cnlh/nps/lib/file"
"github.com/cnlh/nps/lib/pool"
"github.com/cnlh/nps/lib/rate"
2019-02-16 12:43:26 +00:00
"github.com/cnlh/nps/vender/github.com/xtaci/kcp"
2019-01-03 16:21:23 +00:00
"io"
2018-11-29 11:55:24 +00:00
"net"
2018-12-11 08:37:12 +00:00
"net/http"
2018-11-30 18:38:29 +00:00
"net/url"
2018-12-11 08:37:12 +00:00
"strconv"
2018-11-30 18:38:29 +00:00
"strings"
"sync"
2018-11-29 11:55:24 +00:00
"time"
)
2019-01-09 12:33:00 +00:00
const cryptKey = "1234567812345678"
2018-11-29 11:55:24 +00:00
type Conn struct {
2019-01-09 12:33:00 +00:00
Conn net.Conn
sync.Mutex
2018-11-29 11:55:24 +00:00
}
2019-01-03 16:21:23 +00:00
//new conn
2018-11-29 11:55:24 +00:00
func NewConn(conn net.Conn) *Conn {
c := new(Conn)
2019-01-09 12:33:00 +00:00
c.Conn = conn
2018-11-29 11:55:24 +00:00
return c
}
//从tcp报文中解析出host连接类型等
func (s *Conn) GetHost() (method, address string, rb []byte, err error, r *http.Request) {
var b [32 * 1024]byte
var n int
if n, err = s.Read(b[:]); err != nil {
return
}
rb = b[:n]
r, err = http.ReadRequest(bufio.NewReader(bytes.NewReader(rb)))
if err != nil {
return
}
hostPortURL, err := url.Parse(r.Host)
if err != nil {
address = r.Host
err = nil
return
}
if hostPortURL.Opaque == "443" { //https访问
2019-02-02 16:54:43 +00:00
if strings.Index(r.Host, ":") == -1 { //host不带端口 默认80
address = r.Host + ":443"
} else {
address = r.Host
}
} else { //http访问
2019-02-02 16:54:43 +00:00
if strings.Index(r.Host, ":") == -1 { //host不带端口 默认80
address = r.Host + ":80"
} else {
address = r.Host
}
}
return
}
func (s *Conn) GetShortLenContent() (b []byte, err error) {
2019-02-26 14:40:28 +00:00
var l int
if l, err = s.GetLen(); err != nil {
return
}
if l < 0 || l > 32<<10 {
err = errors.New("read length error")
return
}
return s.GetShortContent(l)
}
func (s *Conn) GetShortContent(l int) (b []byte, err error) {
buf := make([]byte, l)
return buf, binary.Read(s, binary.LittleEndian, &buf)
2019-02-26 14:40:28 +00:00
}
2019-01-03 16:21:23 +00:00
//读取指定长度内容
func (s *Conn) ReadLen(cLen int, buf []byte) (int, error) {
if cLen > len(buf) {
return 0, errors.New("长度错误" + strconv.Itoa(cLen))
2019-01-12 16:09:12 +00:00
}
if n, err := io.ReadFull(s, buf[:cLen]); err != nil || n != cLen {
return n, errors.New("Error reading specified length " + err.Error())
2018-11-29 11:55:24 +00:00
}
return cLen, nil
2018-11-29 11:55:24 +00:00
}
func (s *Conn) GetLen() (int, error) {
2019-02-17 17:05:05 +00:00
var l int32
err := binary.Read(s, binary.LittleEndian, &l)
return int(l), err
2018-11-29 11:55:24 +00:00
}
2019-02-26 14:40:28 +00:00
func (s *Conn) WriteLenContent(buf []byte) (err error) {
var b []byte
if b, err = GetLenBytes(buf); err != nil {
return
}
return binary.Write(s.Conn, binary.LittleEndian, b)
}
//read flag
2018-11-29 11:55:24 +00:00
func (s *Conn) ReadFlag() (string, error) {
buf := make([]byte, 4)
return string(buf), binary.Read(s, binary.LittleEndian, &buf)
2018-11-29 11:55:24 +00:00
}
//设置连接为长连接
2019-02-09 09:07:47 +00:00
func (s *Conn) SetAlive(tp string) {
if tp == "kcp" {
s.setKcpAlive()
} else {
s.setTcpAlive()
}
}
//设置连接为长连接
func (s *Conn) setTcpAlive() {
2019-01-09 12:33:00 +00:00
conn := s.Conn.(*net.TCPConn)
2018-11-29 11:55:24 +00:00
conn.SetReadDeadline(time.Time{})
conn.SetKeepAlive(true)
conn.SetKeepAlivePeriod(time.Duration(2 * time.Second))
}
2019-02-09 09:07:47 +00:00
//设置连接为长连接
func (s *Conn) setKcpAlive() {
conn := s.Conn.(*kcp.UDPSession)
conn.SetReadDeadline(time.Time{})
}
//设置连接为长连接
func (s *Conn) SetReadDeadline(t time.Duration, tp string) {
if tp == "kcp" {
s.SetKcpReadDeadline(t)
} else {
s.SetTcpReadDeadline(t)
}
}
//set read dead time
2019-02-09 09:07:47 +00:00
func (s *Conn) SetTcpReadDeadline(t time.Duration) {
2019-01-28 06:45:55 +00:00
s.Conn.(*net.TCPConn).SetReadDeadline(time.Now().Add(time.Duration(t) * time.Second))
}
2019-02-09 09:07:47 +00:00
//set read dead time
func (s *Conn) SetKcpReadDeadline(t time.Duration) {
s.Conn.(*kcp.UDPSession).SetReadDeadline(time.Now().Add(time.Duration(t) * time.Second))
}
//send info for link
func (s *Conn) SendLinkInfo(link *Link) (int, error) {
raw := bytes.NewBuffer([]byte{})
common.BinaryWrite(raw, link.ConnType, link.Host, common.GetStrByBool(link.Compress), common.GetStrByBool(link.Crypt), link.RemoteAddr)
s.Lock()
defer s.Unlock()
return s.Write(raw.Bytes())
}
//get link info from conn
2019-02-09 09:07:47 +00:00
func (s *Conn) GetLinkInfo() (lk *Link, err error) {
lk = new(Link)
var l int
buf := pool.BufPoolMax.Get().([]byte)
defer pool.PutBufPoolMax(buf)
if l, err = s.GetLen(); err != nil {
return
} else if _, err = s.ReadLen(l, buf); err != nil {
return
} else {
arr := strings.Split(string(buf[:l]), common.CONN_DATA_SEQ)
lk.ConnType = arr[0]
lk.Host = arr[1]
lk.Compress = common.GetBoolByStr(arr[2])
lk.Crypt = common.GetBoolByStr(arr[3])
lk.RemoteAddr = arr[4]
2019-02-09 09:07:47 +00:00
}
return
}
2019-02-12 19:54:00 +00:00
//send host info
func (s *Conn) SendHostInfo(h *file.Host) (int, error) {
/*
The task info is formed as follows:
+----+-----+---------+
|type| len | content |
+----+---------------+
| 4 | 4 | ... |
+----+---------------+
2019-02-16 12:43:26 +00:00
*/
2019-02-12 19:54:00 +00:00
raw := bytes.NewBuffer([]byte{})
binary.Write(raw, binary.LittleEndian, []byte(common.NEW_HOST))
2019-02-16 12:43:26 +00:00
common.BinaryWrite(raw, h.Host, h.Target, h.HeaderChange, h.HostChange, h.Remark, h.Location)
2019-02-12 19:54:00 +00:00
s.Lock()
defer s.Unlock()
return s.Write(raw.Bytes())
}
//get task or host result of add
2019-02-12 19:54:00 +00:00
func (s *Conn) GetAddStatus() (b bool) {
binary.Read(s.Conn, binary.LittleEndian, &b)
return
}
func (s *Conn) WriteAddOk() error {
return binary.Write(s.Conn, binary.LittleEndian, true)
}
func (s *Conn) WriteAddFail() error {
defer s.Close()
return binary.Write(s.Conn, binary.LittleEndian, false)
}
//get task info
func (s *Conn) GetHostInfo() (h *file.Host, err error) {
var l int
buf := pool.BufPoolMax.Get().([]byte)
defer pool.PutBufPoolMax(buf)
2019-02-12 19:54:00 +00:00
if l, err = s.GetLen(); err != nil {
return
} else if _, err = s.ReadLen(l, buf); err != nil {
2019-02-12 19:54:00 +00:00
return
} else {
arr := strings.Split(string(buf[:l]), common.CONN_DATA_SEQ)
2019-02-12 19:54:00 +00:00
h = new(file.Host)
2019-02-16 15:18:58 +00:00
h.Id = file.GetCsvDb().GetHostId()
2019-02-12 19:54:00 +00:00
h.Host = arr[0]
h.Target = arr[1]
h.HeaderChange = arr[2]
h.HostChange = arr[3]
h.Remark = arr[4]
2019-02-16 12:43:26 +00:00
h.Location = arr[5]
2019-02-12 19:54:00 +00:00
h.Flow = new(file.Flow)
h.NoStore = true
}
return
}
//send task info
2019-02-23 15:29:48 +00:00
func (s *Conn) SendConfigInfo(c *config.CommonConfig) (int, error) {
2019-02-12 19:54:00 +00:00
/*
The task info is formed as follows:
+----+-----+---------+
|type| len | content |
+----+---------------+
| 4 | 4 | ... |
+----+---------------+
2019-02-16 12:43:26 +00:00
*/
2019-02-12 19:54:00 +00:00
raw := bytes.NewBuffer([]byte{})
binary.Write(raw, binary.LittleEndian, []byte(common.NEW_CONF))
common.BinaryWrite(raw, c.Cnf.U, c.Cnf.P, common.GetStrByBool(c.Cnf.Crypt), common.GetStrByBool(c.Cnf.Compress), strconv.Itoa(c.Client.RateLimit),
2019-02-23 15:29:48 +00:00
strconv.Itoa(int(c.Client.Flow.FlowLimit)), strconv.Itoa(c.Client.MaxConn), c.Client.Remark)
2019-02-12 19:54:00 +00:00
s.Lock()
defer s.Unlock()
return s.Write(raw.Bytes())
}
//get task info
2019-02-23 15:29:48 +00:00
func (s *Conn) GetConfigInfo() (c *file.Client, err error) {
2019-02-12 19:54:00 +00:00
var l int
buf := pool.BufPoolMax.Get().([]byte)
defer pool.PutBufPoolMax(buf)
2019-02-12 19:54:00 +00:00
if l, err = s.GetLen(); err != nil {
return
} else if _, err = s.ReadLen(l, buf); err != nil {
2019-02-12 19:54:00 +00:00
return
} else {
arr := strings.Split(string(buf[:l]), common.CONN_DATA_SEQ)
2019-02-24 05:17:43 +00:00
c = file.NewClient("", true, false)
2019-02-23 15:29:48 +00:00
c.Cnf.U = arr[0]
c.Cnf.P = arr[1]
c.Cnf.Crypt = common.GetBoolByStr(arr[2])
c.Cnf.Compress = common.GetBoolByStr(arr[3])
2019-02-23 15:29:48 +00:00
c.RateLimit = common.GetIntNoErrByStr(arr[4])
c.Flow.FlowLimit = int64(common.GetIntNoErrByStr(arr[5]))
c.MaxConn = common.GetIntNoErrByStr(arr[6])
c.Remark = arr[7]
2019-02-12 19:54:00 +00:00
}
return
}
2019-02-09 09:07:47 +00:00
//send task info
func (s *Conn) SendTaskInfo(t *file.Tunnel) (int, error) {
/*
The task info is formed as follows:
+----+-----+---------+
|type| len | content |
+----+---------------+
| 4 | 4 | ... |
+----+---------------+
2019-02-16 12:43:26 +00:00
*/
2019-02-09 09:07:47 +00:00
raw := bytes.NewBuffer([]byte{})
2019-02-12 19:54:00 +00:00
binary.Write(raw, binary.LittleEndian, []byte(common.NEW_TASK))
2019-03-02 09:43:21 +00:00
common.BinaryWrite(raw, t.Mode, t.Ports, t.Target, t.Remark, t.TargetAddr, t.Password, t.LocalPath, t.StripPre)
2019-02-09 09:07:47 +00:00
s.Lock()
defer s.Unlock()
return s.Write(raw.Bytes())
}
//get task info
func (s *Conn) GetTaskInfo() (t *file.Tunnel, err error) {
var l int
buf := pool.BufPoolMax.Get().([]byte)
defer pool.PutBufPoolMax(buf)
2019-02-09 09:07:47 +00:00
if l, err = s.GetLen(); err != nil {
return
} else if _, err = s.ReadLen(l, buf); err != nil {
2019-02-09 09:07:47 +00:00
return
} else {
arr := strings.Split(string(buf[:l]), common.CONN_DATA_SEQ)
2019-02-12 19:54:00 +00:00
t = new(file.Tunnel)
2019-02-09 09:07:47 +00:00
t.Mode = arr[0]
2019-02-15 14:59:28 +00:00
t.Ports = arr[1]
2019-02-09 09:07:47 +00:00
t.Target = arr[2]
t.Id = file.GetCsvDb().GetTaskId()
t.Status = true
t.Flow = new(file.Flow)
2019-02-12 19:54:00 +00:00
t.Remark = arr[3]
2019-02-23 15:29:48 +00:00
t.TargetAddr = arr[4]
t.Password = arr[5]
2019-03-02 09:43:21 +00:00
t.LocalPath = arr[6]
t.StripPre = arr[7]
2019-02-12 19:54:00 +00:00
t.NoStore = true
}
2018-12-11 08:37:12 +00:00
return
}
2019-01-03 16:21:23 +00:00
//close
2018-12-11 08:37:12 +00:00
func (s *Conn) Close() error {
2019-01-09 12:33:00 +00:00
return s.Conn.Close()
2018-12-11 08:37:12 +00:00
}
2019-01-03 16:21:23 +00:00
//write
2018-12-11 08:37:12 +00:00
func (s *Conn) Write(b []byte) (int, error) {
2019-01-09 12:33:00 +00:00
return s.Conn.Write(b)
2018-12-11 08:37:12 +00:00
}
2019-01-03 16:21:23 +00:00
//read
2018-12-11 08:37:12 +00:00
func (s *Conn) Read(b []byte) (int, error) {
2019-01-09 12:33:00 +00:00
return s.Conn.Read(b)
2018-12-11 08:37:12 +00:00
}
2019-01-28 06:45:55 +00:00
//write sign flag
func (s *Conn) WriteClose() (int, error) {
2019-02-09 09:07:47 +00:00
return s.Write([]byte(common.RES_CLOSE))
2019-01-28 06:45:55 +00:00
}
2019-01-03 16:21:23 +00:00
//write main
2019-01-09 12:33:00 +00:00
func (s *Conn) WriteMain() (int, error) {
s.Lock()
defer s.Unlock()
2019-02-09 09:07:47 +00:00
return s.Write([]byte(common.WORK_MAIN))
}
2018-11-29 11:55:24 +00:00
2019-02-12 19:54:00 +00:00
//write main
func (s *Conn) WriteConfig() (int, error) {
s.Lock()
defer s.Unlock()
return s.Write([]byte(common.WORK_CONFIG))
}
2019-01-03 16:21:23 +00:00
//write chan
2019-01-09 12:33:00 +00:00
func (s *Conn) WriteChan() (int, error) {
s.Lock()
defer s.Unlock()
2019-02-09 09:07:47 +00:00
return s.Write([]byte(common.WORK_CHAN))
2018-11-29 11:55:24 +00:00
}
2019-01-02 17:44:45 +00:00
//获取长度+内容
func GetLenBytes(buf []byte) (b []byte, err error) {
raw := bytes.NewBuffer([]byte{})
if err = binary.Write(raw, binary.LittleEndian, int32(len(buf))); err != nil {
return
}
if err = binary.Write(raw, binary.LittleEndian, buf); err != nil {
return
}
b = raw.Bytes()
return
}
2019-02-09 09:07:47 +00:00
func SetUdpSession(sess *kcp.UDPSession) {
sess.SetStreamMode(true)
sess.SetWindowSize(1024, 1024)
sess.SetReadBuffer(64 * 1024)
sess.SetWriteBuffer(64 * 1024)
sess.SetNoDelay(1, 10, 2, 1)
sess.SetMtu(1600)
sess.SetACKNoDelay(true)
2019-02-26 14:40:28 +00:00
sess.SetWriteDelay(false)
2019-02-09 09:07:47 +00:00
}
//conn1 mux conn
func CopyWaitGroup(conn1, conn2 io.ReadWriteCloser, crypt bool, snappy bool, rate *rate.Rate, flow *file.Flow) {
var in, out int64
var wg sync.WaitGroup
conn1 = GetConn(conn1, crypt, snappy, rate)
go func(in *int64) {
wg.Add(1)
*in, _ = common.CopyBuffer(conn1, conn2)
conn1.Close()
conn2.Close()
wg.Done()
}(&in)
out, _ = common.CopyBuffer(conn2, conn1)
conn1.Close()
conn2.Close()
wg.Wait()
if flow != nil {
flow.Add(in, out)
}
}
//get crypt or snappy conn
func GetConn(conn io.ReadWriteCloser, crypt, snappy bool, rate *rate.Rate) (io.ReadWriteCloser) {
if crypt {
conn = NewCryptConn(conn, true, rate)
} else if snappy {
conn = NewSnappyConn(conn, crypt, rate)
}
return conn
}
//read length or id (content length=4)
func GetLen(reader io.Reader) (int, error) {
var l int32
return int(l), binary.Read(reader, binary.LittleEndian, &l)
}