mirror of
https://github.com/net-byte/vtun
synced 2024-03-14 10:50:03 +08:00
Single connection, parallel goroutines for RX/TX, error handling
This commit is contained in:
parent
0881556cf3
commit
ddf39a6cd1
@ -1,13 +1,12 @@
|
|||||||
package ws
|
package ws
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
|
||||||
"log"
|
"log"
|
||||||
"net"
|
"net"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gobwas/ws/wsutil"
|
"github.com/gobwas/ws/wsutil"
|
||||||
"github.com/net-byte/vtun/common/cache"
|
|
||||||
"github.com/net-byte/vtun/common/cipher"
|
"github.com/net-byte/vtun/common/cipher"
|
||||||
"github.com/net-byte/vtun/common/config"
|
"github.com/net-byte/vtun/common/config"
|
||||||
"github.com/net-byte/vtun/common/netutil"
|
"github.com/net-byte/vtun/common/netutil"
|
||||||
@ -20,55 +19,61 @@ import (
|
|||||||
func StartClient(config config.Config) {
|
func StartClient(config config.Config) {
|
||||||
log.Printf("vtun websocket client started on %v", config.LocalAddr)
|
log.Printf("vtun websocket client started on %v", config.LocalAddr)
|
||||||
iface := tun.CreateTun(config)
|
iface := tun.CreateTun(config)
|
||||||
// read data from tun
|
|
||||||
packet := make([]byte, config.MTU)
|
|
||||||
for {
|
for {
|
||||||
n, err := iface.Read(packet)
|
if conn := netutil.ConnectServer(config); conn != nil {
|
||||||
if err != nil || n == 0 {
|
var wg sync.WaitGroup
|
||||||
continue
|
wg.Add(2)
|
||||||
|
go wsToTun(&wg, config, conn, iface)
|
||||||
|
go tunToWs(&wg, config, conn, iface)
|
||||||
|
wg.Wait()
|
||||||
|
conn.Close()
|
||||||
}
|
}
|
||||||
b := packet[:n]
|
|
||||||
if !waterutil.IsIPv4(b) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
srcIPv4, dstIPv4 := netutil.GetIPv4(b)
|
|
||||||
if srcIPv4 == "" || dstIPv4 == "" {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
key := dstIPv4
|
|
||||||
var conn net.Conn
|
|
||||||
if v, ok := cache.GetCache().Get(key); ok {
|
|
||||||
conn = v.(net.Conn)
|
|
||||||
} else {
|
|
||||||
conn = netutil.ConnectServer(config)
|
|
||||||
if conn == nil {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
cache.GetCache().Set(key, conn, 10*time.Minute)
|
|
||||||
go wsToTun(config, key, conn, iface)
|
|
||||||
}
|
|
||||||
if config.Obfs {
|
|
||||||
b = cipher.XOR(b)
|
|
||||||
}
|
|
||||||
wsutil.WriteClientBinary(conn, b)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func wsToTun(config config.Config, key string, wsconn net.Conn, iface *water.Interface) {
|
func wsToTun(wg *sync.WaitGroup, config config.Config, wsconn net.Conn, iface *water.Interface) {
|
||||||
defer wsconn.Close()
|
defer wg.Done()
|
||||||
for {
|
for {
|
||||||
|
var packet []byte
|
||||||
|
var err error
|
||||||
wsconn.SetReadDeadline(time.Now().Add(time.Duration(config.Timeout) * time.Second))
|
wsconn.SetReadDeadline(time.Now().Add(time.Duration(config.Timeout) * time.Second))
|
||||||
b, err := wsutil.ReadServerBinary(wsconn)
|
packet, err = wsutil.ReadServerBinary(wsconn)
|
||||||
if err != nil || err == io.EOF {
|
if err != nil {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
if config.Obfs {
|
if config.Obfs {
|
||||||
b = cipher.XOR(b)
|
packet = cipher.XOR(packet)
|
||||||
}
|
}
|
||||||
if !waterutil.IsIPv4(b) {
|
if !waterutil.IsIPv4(packet) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
iface.Write(b)
|
iface.Write(packet)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func tunToWs(wg *sync.WaitGroup, config config.Config, wsconn net.Conn, iface *water.Interface) {
|
||||||
|
defer wg.Done()
|
||||||
|
packet := make([]byte, 0, config.MTU)
|
||||||
|
for {
|
||||||
|
n, err := iface.Read(packet)
|
||||||
|
if err != nil || n == 0 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
packet = packet[:n]
|
||||||
|
if !waterutil.IsIPv4(packet) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
srcIPv4, dstIPv4 := netutil.GetIPv4(packet)
|
||||||
|
if srcIPv4 == "" || dstIPv4 == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if config.Obfs {
|
||||||
|
packet = cipher.XOR(packet)
|
||||||
|
}
|
||||||
|
wsconn.SetWriteDeadline(time.Now().Add(time.Duration(config.Timeout) * time.Second))
|
||||||
|
err = wsutil.WriteClientBinary(wsconn, packet)
|
||||||
|
if err != nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
cache.GetCache().Delete(key)
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user