d5fd62aa47
Translate all Chinese comments in the relay handler package to English: handler.go, connect.go, bind.go, forward.go, conn.go, entrypoint.go, observe.go, metadata.go. All inline and doc comments are now in English. Also set a persistent preference: all future code comments must be written in English only.
145 lines
3.8 KiB
Go
145 lines
3.8 KiB
Go
package relay
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/go-gost/core/handler"
|
|
"github.com/go-gost/core/listener"
|
|
md "github.com/go-gost/core/metadata"
|
|
"github.com/go-gost/relay"
|
|
admission "github.com/go-gost/x/admission/wrapper"
|
|
xnet "github.com/go-gost/x/internal/net"
|
|
"github.com/go-gost/x/internal/net/proxyproto"
|
|
"github.com/go-gost/x/internal/util/mux"
|
|
metrics "github.com/go-gost/x/metrics/wrapper"
|
|
)
|
|
|
|
// tcpListener is the internal TCP listener used in BIND mode.
|
|
//
|
|
// Wrapping layers (outermost first):
|
|
// - proxyproto.WrapListener — PROXY protocol support
|
|
// - metrics.WrapListener — connection metrics
|
|
// - admission.WrapListener — access control (allow/deny lists)
|
|
// - raw net.Listener
|
|
//
|
|
// This is a simplified version of the standard listener wrapping chain from
|
|
// x/config/parsing/service/parse.go.
|
|
type tcpListener struct {
|
|
ln net.Listener
|
|
options listener.Options
|
|
}
|
|
|
|
func newTCPListener(ln net.Listener, opts ...listener.Option) listener.Listener {
|
|
options := listener.Options{}
|
|
for _, opt := range opts {
|
|
opt(&options)
|
|
}
|
|
return &tcpListener{
|
|
ln: ln,
|
|
options: options,
|
|
}
|
|
}
|
|
|
|
func (l *tcpListener) Init(md md.Metadata) (err error) {
|
|
ln := l.ln
|
|
ln = proxyproto.WrapListener(l.options.ProxyProtocol, ln, 10*time.Second)
|
|
ln = metrics.WrapListener(l.options.Service, ln)
|
|
ln = admission.WrapListener(l.options.Service, l.options.Admission, ln)
|
|
l.ln = ln
|
|
|
|
return
|
|
}
|
|
|
|
func (l *tcpListener) Accept() (conn net.Conn, err error) {
|
|
return l.ln.Accept()
|
|
}
|
|
|
|
func (l *tcpListener) Addr() net.Addr {
|
|
return l.ln.Addr()
|
|
}
|
|
|
|
func (l *tcpListener) Close() error {
|
|
return l.ln.Close()
|
|
}
|
|
|
|
// tcpHandler is the internal handler for BIND mode.
|
|
//
|
|
// When an inbound connection arrives at the listen port created by bindTCP,
|
|
// this handler forwards it back to the requesting client over a mux stream.
|
|
//
|
|
// Flow:
|
|
// 1. Gets a free stream from the mux session (session.GetConn()).
|
|
// 2. Encodes the inbound peer address as a relay.AddrFeature on the stream.
|
|
// 3. Writes a relay.Response (StatusOK).
|
|
// 4. Bidirectional Pipe (inbound conn ↔ mux stream).
|
|
//
|
|
// This is the core mechanism for reverse-proxy / tunnel traversal:
|
|
// the client that requested BIND receives forwarded connections as
|
|
// streams on the mux session.
|
|
type tcpHandler struct {
|
|
session *mux.Session
|
|
options handler.Options
|
|
}
|
|
|
|
func newTCPHandler(session *mux.Session, opts ...handler.Option) handler.Handler {
|
|
options := handler.Options{}
|
|
for _, opt := range opts {
|
|
opt(&options)
|
|
}
|
|
|
|
return &tcpHandler{
|
|
session: session,
|
|
options: options,
|
|
}
|
|
}
|
|
|
|
func (h *tcpHandler) Init(md md.Metadata) (err error) {
|
|
return
|
|
}
|
|
|
|
func (h *tcpHandler) Handle(ctx context.Context, conn net.Conn, opts ...handler.HandleOption) error {
|
|
defer conn.Close()
|
|
|
|
start := time.Now()
|
|
log := h.options.Logger.WithFields(map[string]any{
|
|
"remote": conn.RemoteAddr().String(),
|
|
"local": conn.LocalAddr().String(),
|
|
})
|
|
|
|
log.Infof("%s <> %s", conn.RemoteAddr(), conn.LocalAddr())
|
|
defer func() {
|
|
log.WithFields(map[string]any{
|
|
"duration": time.Since(start),
|
|
}).Infof("%s >< %s", conn.RemoteAddr(), conn.LocalAddr())
|
|
}()
|
|
|
|
// 从 mux 会话获取一个流
|
|
cc, err := h.session.GetConn()
|
|
if err != nil {
|
|
log.Error(err)
|
|
return err
|
|
}
|
|
defer cc.Close()
|
|
|
|
// 将入站连接地址编码为 AddrFeature,通过 relay 帧发送给客户端
|
|
af := &relay.AddrFeature{}
|
|
af.ParseFrom(conn.RemoteAddr().String())
|
|
resp := relay.Response{
|
|
Version: relay.Version1,
|
|
Status: relay.StatusOK,
|
|
Features: []relay.Feature{af},
|
|
}
|
|
if _, err := resp.WriteTo(cc); err != nil {
|
|
log.Error(err)
|
|
return err
|
|
}
|
|
|
|
t := time.Now()
|
|
log.Debugf("%s <-> %s", conn.RemoteAddr(), cc.RemoteAddr())
|
|
xnet.Pipe(ctx, conn, cc)
|
|
log.WithFields(map[string]any{"duration": time.Since(t)}).
|
|
Debugf("%s >-< %s", conn.RemoteAddr(), cc.RemoteAddr())
|
|
return nil
|
|
} |