mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-11 13:11:03 +00:00
171 lines
3.9 KiB
Go
171 lines
3.9 KiB
Go
package client
|
|
|
|
import (
|
|
"github.com/cbeuw/Cloak/internal/common"
|
|
"io"
|
|
"net"
|
|
"time"
|
|
|
|
mux "github.com/cbeuw/Cloak/internal/multiplex"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type ConnWithReadFromTimeout interface {
|
|
net.Conn
|
|
SetReadFromTimeout(d time.Duration)
|
|
}
|
|
|
|
type CloseSessionAfterCloseStream struct {
|
|
ConnWithReadFromTimeout
|
|
Session *mux.Session
|
|
}
|
|
|
|
func (s *CloseSessionAfterCloseStream) Close() error {
|
|
if err := s.ConnWithReadFromTimeout.Close(); err != nil {
|
|
return err
|
|
}
|
|
return s.Session.Close()
|
|
}
|
|
|
|
func RouteUDP(bindFunc func() (*net.UDPConn, error), streamTimeout time.Duration, newSeshFunc func() *mux.Session, useSessionPerConnection bool) {
|
|
var sesh *mux.Session
|
|
localConn, err := bindFunc()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
streams := make(map[string]ConnWithReadFromTimeout)
|
|
|
|
data := make([]byte, 8192)
|
|
for {
|
|
i, addr, err := localConn.ReadFrom(data)
|
|
if err != nil {
|
|
log.Errorf("Failed to read first packet from proxy client: %v", err)
|
|
continue
|
|
}
|
|
|
|
if !useSessionPerConnection && (sesh == nil || sesh.IsClosed()) {
|
|
sesh = newSeshFunc()
|
|
}
|
|
|
|
var stream ConnWithReadFromTimeout
|
|
stream, ok := streams[addr.String()]
|
|
if !ok {
|
|
connectionSession := sesh
|
|
if useSessionPerConnection {
|
|
connectionSession = newSeshFunc()
|
|
}
|
|
|
|
stream, err = connectionSession.OpenStream()
|
|
if err != nil {
|
|
log.Errorf("Failed to open stream: %v", err)
|
|
if useSessionPerConnection {
|
|
connectionSession.Close()
|
|
}
|
|
continue
|
|
}
|
|
|
|
if useSessionPerConnection {
|
|
stream = &CloseSessionAfterCloseStream{
|
|
ConnWithReadFromTimeout: stream,
|
|
Session: connectionSession,
|
|
}
|
|
}
|
|
|
|
streams[addr.String()] = stream
|
|
proxyAddr := addr
|
|
go func() {
|
|
buf := make([]byte, 8192)
|
|
for {
|
|
n, err := stream.Read(buf)
|
|
if err != nil {
|
|
log.Tracef("copying stream to proxy client: %v", err)
|
|
stream.Close()
|
|
return
|
|
}
|
|
|
|
_, err = localConn.WriteTo(buf[:n], proxyAddr)
|
|
if err != nil {
|
|
log.Tracef("copying stream to proxy client: %v", err)
|
|
stream.Close()
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
|
|
_, err = stream.Write(data[:i])
|
|
if err != nil {
|
|
log.Tracef("copying proxy client to stream: %v", err)
|
|
delete(streams, addr.String())
|
|
stream.Close()
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
func RouteTCP(listener net.Listener, streamTimeout time.Duration, newSeshFunc func() *mux.Session, useSessionPerConnection bool) {
|
|
var sesh *mux.Session
|
|
for {
|
|
localConn, err := listener.Accept()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
continue
|
|
}
|
|
if !useSessionPerConnection && (sesh == nil || sesh.IsClosed()) {
|
|
sesh = newSeshFunc()
|
|
}
|
|
go func() {
|
|
data := make([]byte, 10240)
|
|
i, err := io.ReadAtLeast(localConn, data, 1)
|
|
if err != nil {
|
|
log.Errorf("Failed to read first packet from proxy client: %v", err)
|
|
localConn.Close()
|
|
return
|
|
}
|
|
|
|
connectionSession := sesh
|
|
if useSessionPerConnection {
|
|
connectionSession = newSeshFunc()
|
|
}
|
|
|
|
var stream ConnWithReadFromTimeout
|
|
stream, err = connectionSession.OpenStream()
|
|
if err != nil {
|
|
log.Errorf("Failed to open stream: %v", err)
|
|
localConn.Close()
|
|
if useSessionPerConnection {
|
|
connectionSession.Close()
|
|
}
|
|
return
|
|
}
|
|
|
|
if useSessionPerConnection {
|
|
stream = &CloseSessionAfterCloseStream{
|
|
ConnWithReadFromTimeout: stream,
|
|
Session: connectionSession,
|
|
}
|
|
}
|
|
|
|
_, err = stream.Write(data[:i])
|
|
if err != nil {
|
|
log.Errorf("Failed to write to stream: %v", err)
|
|
localConn.Close()
|
|
stream.Close()
|
|
return
|
|
}
|
|
|
|
stream.SetReadFromTimeout(streamTimeout) // if localConn hasn't sent anything to stream to a period of time, stream closes
|
|
go func() {
|
|
if _, err := common.Copy(localConn, stream); err != nil {
|
|
log.Tracef("copying stream to proxy client: %v", err)
|
|
}
|
|
}()
|
|
if _, err = common.Copy(stream, localConn); err != nil {
|
|
log.Tracef("copying proxy client to stream: %v", err)
|
|
}
|
|
}()
|
|
}
|
|
|
|
}
|