conn.go 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. package conn
  2. import (
  3. "bufio"
  4. "bytes"
  5. "ehang.io/nps/lib/goroutine"
  6. "encoding/binary"
  7. "encoding/json"
  8. "errors"
  9. "github.com/astaxie/beego/logs"
  10. "io"
  11. "net"
  12. "net/http"
  13. "net/url"
  14. "strconv"
  15. "strings"
  16. "sync"
  17. "time"
  18. "ehang.io/nps/lib/common"
  19. "ehang.io/nps/lib/crypt"
  20. "ehang.io/nps/lib/file"
  21. "ehang.io/nps/lib/pmux"
  22. "ehang.io/nps/lib/rate"
  23. "github.com/xtaci/kcp-go"
  24. )
  25. type Conn struct {
  26. Conn net.Conn
  27. Rb []byte
  28. }
  29. //new conn
  30. func NewConn(conn net.Conn) *Conn {
  31. return &Conn{Conn: conn}
  32. }
  33. //get host 、connection type、method...from connection
  34. func (s *Conn) GetHost() (method, address string, rb []byte, err error, r *http.Request) {
  35. var b [32 * 1024]byte
  36. var n int
  37. if n, err = s.Read(b[:]); err != nil {
  38. return
  39. }
  40. rb = b[:n]
  41. r, err = http.ReadRequest(bufio.NewReader(bytes.NewReader(rb)))
  42. if err != nil {
  43. return
  44. }
  45. hostPortURL, err := url.Parse(r.Host)
  46. if err != nil {
  47. address = r.Host
  48. err = nil
  49. return
  50. }
  51. if hostPortURL.Opaque == "443" {
  52. if strings.Index(r.Host, ":") == -1 {
  53. address = r.Host + ":443"
  54. } else {
  55. address = r.Host
  56. }
  57. } else {
  58. if strings.Index(r.Host, ":") == -1 {
  59. address = r.Host + ":80"
  60. } else {
  61. address = r.Host
  62. }
  63. }
  64. return
  65. }
  66. func (s *Conn) GetShortLenContent() (b []byte, err error) {
  67. var l int
  68. if l, err = s.GetLen(); err != nil {
  69. return
  70. }
  71. if l < 0 || l > 32<<10 {
  72. err = errors.New("read length error")
  73. return
  74. }
  75. return s.GetShortContent(l)
  76. }
  77. func (s *Conn) GetShortContent(l int) (b []byte, err error) {
  78. buf := make([]byte, l)
  79. return buf, binary.Read(s, binary.LittleEndian, &buf)
  80. }
  81. //读取指定长度内容
  82. func (s *Conn) ReadLen(cLen int, buf []byte) (int, error) {
  83. if cLen > len(buf) || cLen <= 0 {
  84. return 0, errors.New("长度错误" + strconv.Itoa(cLen))
  85. }
  86. if n, err := io.ReadFull(s, buf[:cLen]); err != nil || n != cLen {
  87. return n, errors.New("Error reading specified length " + err.Error())
  88. }
  89. return cLen, nil
  90. }
  91. func (s *Conn) GetLen() (int, error) {
  92. var l int32
  93. err := binary.Read(s, binary.LittleEndian, &l)
  94. return int(l), err
  95. }
  96. func (s *Conn) WriteLenContent(buf []byte) (err error) {
  97. var b []byte
  98. if b, err = GetLenBytes(buf); err != nil {
  99. return
  100. }
  101. return binary.Write(s.Conn, binary.LittleEndian, b)
  102. }
  103. //read flag
  104. func (s *Conn) ReadFlag() (string, error) {
  105. buf := make([]byte, 4)
  106. return string(buf), binary.Read(s, binary.LittleEndian, &buf)
  107. }
  108. //set alive
  109. func (s *Conn) SetAlive(tp string) {
  110. switch s.Conn.(type) {
  111. case *kcp.UDPSession:
  112. s.Conn.(*kcp.UDPSession).SetReadDeadline(time.Time{})
  113. case *net.TCPConn:
  114. conn := s.Conn.(*net.TCPConn)
  115. conn.SetReadDeadline(time.Time{})
  116. //conn.SetKeepAlive(false)
  117. //conn.SetKeepAlivePeriod(time.Duration(2 * time.Second))
  118. case *pmux.PortConn:
  119. s.Conn.(*pmux.PortConn).SetReadDeadline(time.Time{})
  120. }
  121. }
  122. //set read deadline
  123. func (s *Conn) SetReadDeadlineBySecond(t time.Duration) {
  124. switch s.Conn.(type) {
  125. case *kcp.UDPSession:
  126. s.Conn.(*kcp.UDPSession).SetReadDeadline(time.Now().Add(time.Duration(t) * time.Second))
  127. case *net.TCPConn:
  128. s.Conn.(*net.TCPConn).SetReadDeadline(time.Now().Add(time.Duration(t) * time.Second))
  129. case *pmux.PortConn:
  130. s.Conn.(*pmux.PortConn).SetReadDeadline(time.Now().Add(time.Duration(t) * time.Second))
  131. }
  132. }
  133. //get link info from conn
  134. func (s *Conn) GetLinkInfo() (lk *Link, err error) {
  135. err = s.getInfo(&lk)
  136. return
  137. }
  138. //send info for link
  139. func (s *Conn) SendHealthInfo(info, status string) (int, error) {
  140. raw := bytes.NewBuffer([]byte{})
  141. common.BinaryWrite(raw, info, status)
  142. return s.Write(raw.Bytes())
  143. }
  144. //get health info from conn
  145. func (s *Conn) GetHealthInfo() (info string, status bool, err error) {
  146. var l int
  147. buf := common.BufPoolMax.Get().([]byte)
  148. defer common.PutBufPoolMax(buf)
  149. if l, err = s.GetLen(); err != nil {
  150. return
  151. } else if _, err = s.ReadLen(l, buf); err != nil {
  152. return
  153. } else {
  154. arr := strings.Split(string(buf[:l]), common.CONN_DATA_SEQ)
  155. if len(arr) >= 2 {
  156. return arr[0], common.GetBoolByStr(arr[1]), nil
  157. }
  158. }
  159. return "", false, errors.New("receive health info error")
  160. }
  161. //get task info
  162. func (s *Conn) GetHostInfo() (h *file.Host, err error) {
  163. err = s.getInfo(&h)
  164. h.Id = int(file.GetDb().JsonDb.GetHostId())
  165. h.Flow = new(file.Flow)
  166. h.NoStore = true
  167. return
  168. }
  169. //get task info
  170. func (s *Conn) GetConfigInfo() (c *file.Client, err error) {
  171. err = s.getInfo(&c)
  172. c.NoStore = true
  173. c.Status = true
  174. if c.Flow == nil {
  175. c.Flow = new(file.Flow)
  176. }
  177. c.NoDisplay = false
  178. return
  179. }
  180. //get task info
  181. func (s *Conn) GetTaskInfo() (t *file.Tunnel, err error) {
  182. err = s.getInfo(&t)
  183. t.Id = int(file.GetDb().JsonDb.GetTaskId())
  184. t.NoStore = true
  185. t.Flow = new(file.Flow)
  186. return
  187. }
  188. //send info
  189. func (s *Conn) SendInfo(t interface{}, flag string) (int, error) {
  190. /*
  191. The task info is formed as follows:
  192. +----+-----+---------+
  193. |type| len | content |
  194. +----+---------------+
  195. | 4 | 4 | ... |
  196. +----+---------------+
  197. */
  198. raw := bytes.NewBuffer([]byte{})
  199. if flag != "" {
  200. binary.Write(raw, binary.LittleEndian, []byte(flag))
  201. }
  202. b, err := json.Marshal(t)
  203. if err != nil {
  204. return 0, err
  205. }
  206. lenBytes, err := GetLenBytes(b)
  207. if err != nil {
  208. return 0, err
  209. }
  210. binary.Write(raw, binary.LittleEndian, lenBytes)
  211. return s.Write(raw.Bytes())
  212. }
  213. //get task info
  214. func (s *Conn) getInfo(t interface{}) (err error) {
  215. var l int
  216. buf := common.BufPoolMax.Get().([]byte)
  217. defer common.PutBufPoolMax(buf)
  218. if l, err = s.GetLen(); err != nil {
  219. return
  220. } else if _, err = s.ReadLen(l, buf); err != nil {
  221. return
  222. } else {
  223. json.Unmarshal(buf[:l], &t)
  224. }
  225. return
  226. }
  227. //close
  228. func (s *Conn) Close() error {
  229. return s.Conn.Close()
  230. }
  231. //write
  232. func (s *Conn) Write(b []byte) (int, error) {
  233. return s.Conn.Write(b)
  234. }
  235. //read
  236. func (s *Conn) Read(b []byte) (n int, err error) {
  237. if s.Rb != nil {
  238. //if the rb is not nil ,read rb first
  239. if len(s.Rb) > 0 {
  240. n = copy(b, s.Rb)
  241. s.Rb = s.Rb[n:]
  242. return
  243. }
  244. s.Rb = nil
  245. }
  246. return s.Conn.Read(b)
  247. }
  248. //write sign flag
  249. func (s *Conn) WriteClose() (int, error) {
  250. return s.Write([]byte(common.RES_CLOSE))
  251. }
  252. //write main
  253. func (s *Conn) WriteMain() (int, error) {
  254. return s.Write([]byte(common.WORK_MAIN))
  255. }
  256. //write main
  257. func (s *Conn) WriteConfig() (int, error) {
  258. return s.Write([]byte(common.WORK_CONFIG))
  259. }
  260. //write chan
  261. func (s *Conn) WriteChan() (int, error) {
  262. return s.Write([]byte(common.WORK_CHAN))
  263. }
  264. //get task or host result of add
  265. func (s *Conn) GetAddStatus() (b bool) {
  266. binary.Read(s.Conn, binary.LittleEndian, &b)
  267. return
  268. }
  269. func (s *Conn) WriteAddOk() error {
  270. return binary.Write(s.Conn, binary.LittleEndian, true)
  271. }
  272. func (s *Conn) WriteAddFail() error {
  273. defer s.Close()
  274. return binary.Write(s.Conn, binary.LittleEndian, false)
  275. }
  276. func (s *Conn) LocalAddr() net.Addr {
  277. return s.Conn.LocalAddr()
  278. }
  279. func (s *Conn) RemoteAddr() net.Addr {
  280. return s.Conn.RemoteAddr()
  281. }
  282. func (s *Conn) SetDeadline(t time.Time) error {
  283. return s.Conn.SetDeadline(t)
  284. }
  285. func (s *Conn) SetWriteDeadline(t time.Time) error {
  286. return s.Conn.SetWriteDeadline(t)
  287. }
  288. func (s *Conn) SetReadDeadline(t time.Time) error {
  289. return s.Conn.SetReadDeadline(t)
  290. }
  291. //get the assembled amount data(len 4 and content)
  292. func GetLenBytes(buf []byte) (b []byte, err error) {
  293. raw := bytes.NewBuffer([]byte{})
  294. if err = binary.Write(raw, binary.LittleEndian, int32(len(buf))); err != nil {
  295. return
  296. }
  297. if err = binary.Write(raw, binary.LittleEndian, buf); err != nil {
  298. return
  299. }
  300. b = raw.Bytes()
  301. return
  302. }
  303. //udp connection setting
  304. func SetUdpSession(sess *kcp.UDPSession) {
  305. sess.SetStreamMode(true)
  306. sess.SetWindowSize(1024, 1024)
  307. sess.SetReadBuffer(64 * 1024)
  308. sess.SetWriteBuffer(64 * 1024)
  309. sess.SetNoDelay(1, 10, 2, 1)
  310. sess.SetMtu(1600)
  311. sess.SetACKNoDelay(true)
  312. sess.SetWriteDelay(false)
  313. }
  314. //conn1 mux conn
  315. func CopyWaitGroup(conn1, conn2 net.Conn, crypt bool, snappy bool, rate *rate.Rate, flow *file.Flow, isServer bool, rb []byte) {
  316. //var in, out int64
  317. //var wg sync.WaitGroup
  318. connHandle := GetConn(conn1, crypt, snappy, rate, isServer)
  319. if rb != nil {
  320. connHandle.Write(rb)
  321. }
  322. //go func(in *int64) {
  323. // wg.Add(1)
  324. // *in, _ = common.CopyBuffer(connHandle, conn2)
  325. // connHandle.Close()
  326. // conn2.Close()
  327. // wg.Done()
  328. //}(&in)
  329. //out, _ = common.CopyBuffer(conn2, connHandle)
  330. //connHandle.Close()
  331. //conn2.Close()
  332. //wg.Wait()
  333. //if flow != nil {
  334. // flow.Add(in, out)
  335. //}
  336. wg := new(sync.WaitGroup)
  337. wg.Add(1)
  338. err := goroutine.CopyConnsPool.Invoke(goroutine.NewConns(connHandle, conn2, flow, wg))
  339. wg.Wait()
  340. if err != nil {
  341. logs.Error(err)
  342. }
  343. }
  344. //get crypt or snappy conn
  345. func GetConn(conn net.Conn, cpt, snappy bool, rt *rate.Rate, isServer bool) io.ReadWriteCloser {
  346. if cpt {
  347. if isServer {
  348. return rate.NewRateConn(crypt.NewTlsServerConn(conn), rt)
  349. }
  350. return rate.NewRateConn(crypt.NewTlsClientConn(conn), rt)
  351. } else if snappy {
  352. return rate.NewRateConn(NewSnappyConn(conn), rt)
  353. }
  354. return rate.NewRateConn(conn, rt)
  355. }
  356. type LenConn struct {
  357. conn io.Writer
  358. Len int
  359. }
  360. func NewLenConn(conn io.Writer) *LenConn {
  361. return &LenConn{conn: conn}
  362. }
  363. func (c *LenConn) Write(p []byte) (n int, err error) {
  364. n, err = c.conn.Write(p)
  365. c.Len += n
  366. return
  367. }