mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-30 19:46:26 +08:00
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package v2ray
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
|
|
vcore "v2ray.com/core"
|
|
vnet "v2ray.com/core/common/net"
|
|
vsession "v2ray.com/core/common/session"
|
|
|
|
"github.com/xjasonlyu/tun2socks/common/log"
|
|
"github.com/xjasonlyu/tun2socks/core"
|
|
)
|
|
|
|
type tcpHandler struct {
|
|
ctx context.Context
|
|
v *vcore.Instance
|
|
}
|
|
|
|
func (h *tcpHandler) handleInput(conn net.Conn, input io.ReadCloser) {
|
|
defer func() {
|
|
conn.Close()
|
|
input.Close()
|
|
}()
|
|
io.Copy(conn, input)
|
|
}
|
|
|
|
func (h *tcpHandler) handleOutput(conn net.Conn, output io.WriteCloser) {
|
|
defer func() {
|
|
conn.Close()
|
|
output.Close()
|
|
}()
|
|
io.Copy(output, conn)
|
|
}
|
|
|
|
func NewTCPHandler(ctx context.Context, instance *vcore.Instance) core.TCPConnHandler {
|
|
return &tcpHandler{
|
|
ctx: ctx,
|
|
v: instance,
|
|
}
|
|
}
|
|
|
|
func (h *tcpHandler) Handle(conn net.Conn, target *net.TCPAddr) error {
|
|
dest := vnet.DestinationFromAddr(target)
|
|
sid := vsession.NewID()
|
|
ctx := vsession.ContextWithID(h.ctx, sid)
|
|
c, err := vcore.Dial(ctx, h.v, dest)
|
|
if err != nil {
|
|
return errors.New(fmt.Sprintf("dial V proxy connection failed: %v", err))
|
|
}
|
|
go h.handleInput(conn, c)
|
|
go h.handleOutput(conn, c)
|
|
log.Infof("new proxy connection for target: %s:%s", target.Network(), target.String())
|
|
return nil
|
|
}
|