2022-11-25 14:30:37 +00:00
|
|
|
package trojan
|
|
|
|
|
|
|
|
import (
|
2024-06-24 01:49:15 +00:00
|
|
|
std_bufio "bufio"
|
2022-11-25 14:30:37 +00:00
|
|
|
"context"
|
|
|
|
"net"
|
|
|
|
|
2024-06-24 01:49:15 +00:00
|
|
|
"github.com/sagernet/sing/common/buf"
|
|
|
|
"github.com/sagernet/sing/common/bufio"
|
2022-11-25 14:30:37 +00:00
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
|
|
"github.com/sagernet/sing/common/task"
|
|
|
|
"github.com/sagernet/smux"
|
|
|
|
)
|
|
|
|
|
|
|
|
func HandleMuxConnection(ctx context.Context, conn net.Conn, metadata M.Metadata, handler Handler) error {
|
|
|
|
session, err := smux.Server(conn, smuxConfig())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
var group task.Group
|
2023-11-13 05:58:20 +00:00
|
|
|
group.Append0(func(_ context.Context) error {
|
2022-11-25 14:30:37 +00:00
|
|
|
var stream net.Conn
|
|
|
|
for {
|
|
|
|
stream, err = session.AcceptStream()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
go newMuxConnection(ctx, stream, metadata, handler)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
group.Cleanup(func() {
|
|
|
|
session.Close()
|
|
|
|
})
|
|
|
|
return group.Run(ctx)
|
|
|
|
}
|
|
|
|
|
2024-06-24 01:49:15 +00:00
|
|
|
func newMuxConnection(ctx context.Context, conn net.Conn, metadata M.Metadata, handler Handler) {
|
|
|
|
err := newMuxConnection0(ctx, conn, metadata, handler)
|
2022-11-25 14:30:37 +00:00
|
|
|
if err != nil {
|
|
|
|
handler.NewError(ctx, E.Cause(err, "process trojan-go multiplex connection"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-24 01:49:15 +00:00
|
|
|
func newMuxConnection0(ctx context.Context, conn net.Conn, metadata M.Metadata, handler Handler) error {
|
|
|
|
reader := std_bufio.NewReader(conn)
|
|
|
|
command, err := reader.ReadByte()
|
2022-11-25 14:30:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return E.Cause(err, "read command")
|
|
|
|
}
|
2024-06-24 01:49:15 +00:00
|
|
|
metadata.Destination, err = M.SocksaddrSerializer.ReadAddrPort(reader)
|
2022-11-25 14:30:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return E.Cause(err, "read destination")
|
|
|
|
}
|
2024-06-24 01:49:15 +00:00
|
|
|
if reader.Buffered() > 0 {
|
|
|
|
buffer := buf.NewSize(reader.Buffered())
|
|
|
|
_, err = buffer.ReadFullFrom(reader, buffer.Len())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
conn = bufio.NewCachedConn(conn, buffer)
|
|
|
|
}
|
2022-11-25 14:30:37 +00:00
|
|
|
switch command {
|
|
|
|
case CommandTCP:
|
2024-06-24 01:49:15 +00:00
|
|
|
return handler.NewConnection(ctx, conn, metadata)
|
2022-11-25 14:30:37 +00:00
|
|
|
case CommandUDP:
|
2024-06-24 01:49:15 +00:00
|
|
|
return handler.NewPacketConnection(ctx, &PacketConn{Conn: conn}, metadata)
|
2022-11-25 14:30:37 +00:00
|
|
|
default:
|
|
|
|
return E.New("unknown command ", command)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func smuxConfig() *smux.Config {
|
|
|
|
config := smux.DefaultConfig()
|
|
|
|
config.KeepAliveDisabled = true
|
|
|
|
return config
|
|
|
|
}
|