mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Add trojan client and service
This commit is contained in:
parent
77c548883d
commit
3a9adc8f84
2 changed files with 399 additions and 0 deletions
240
protocol/trojan/protocol.go
Normal file
240
protocol/trojan/protocol.go
Normal file
|
@ -0,0 +1,240 @@
|
||||||
|
package trojan
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/binary"
|
||||||
|
"encoding/hex"
|
||||||
|
"io"
|
||||||
|
"net"
|
||||||
|
|
||||||
|
"github.com/sagernet/sing/common"
|
||||||
|
"github.com/sagernet/sing/common/buf"
|
||||||
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
|
"github.com/sagernet/sing/common/rw"
|
||||||
|
"github.com/sagernet/sing/protocol/socks"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
KeyLength = 56
|
||||||
|
CommandTCP = 1
|
||||||
|
CommandUDP = 3
|
||||||
|
)
|
||||||
|
|
||||||
|
var CRLF = []byte{'\r', '\n'}
|
||||||
|
|
||||||
|
type ClientConn struct {
|
||||||
|
net.Conn
|
||||||
|
key [KeyLength]byte
|
||||||
|
destination *M.AddrPort
|
||||||
|
headerWritten bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewClientConn(conn net.Conn, key [KeyLength]byte, destination *M.AddrPort) *ClientConn {
|
||||||
|
return &ClientConn{
|
||||||
|
Conn: conn,
|
||||||
|
key: key,
|
||||||
|
destination: destination,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ClientConn) Write(p []byte) (n int, err error) {
|
||||||
|
if c.headerWritten {
|
||||||
|
return c.Conn.Write(p)
|
||||||
|
}
|
||||||
|
err = ClientHandshake(c.Conn, c.key, c.destination, p)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
n = len(p)
|
||||||
|
c.headerWritten = true
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ClientConn) ReadFrom(r io.Reader) (n int64, err error) {
|
||||||
|
if !c.headerWritten {
|
||||||
|
return rw.ReadFrom0(c, r)
|
||||||
|
}
|
||||||
|
return io.Copy(c.Conn, r)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ClientConn) WriteTo(w io.Writer) (n int64, err error) {
|
||||||
|
return io.Copy(w, c.Conn)
|
||||||
|
}
|
||||||
|
|
||||||
|
type ClientPacketConn struct {
|
||||||
|
net.Conn
|
||||||
|
key [KeyLength]byte
|
||||||
|
headerWritten bool
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewClientPacketConn(conn net.Conn, key [KeyLength]byte) *ClientPacketConn {
|
||||||
|
return &ClientPacketConn{
|
||||||
|
Conn: conn,
|
||||||
|
key: key,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ClientPacketConn) ReadPacket(buffer *buf.Buffer) (*M.AddrPort, error) {
|
||||||
|
return ReadPacket(c.Conn, buffer)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ClientPacketConn) WritePacket(buffer *buf.Buffer, destination *M.AddrPort) error {
|
||||||
|
if !c.headerWritten {
|
||||||
|
return ClientHandshakePacket(c.Conn, c.key, destination, buffer)
|
||||||
|
}
|
||||||
|
return WritePacket(c.Conn, buffer, destination)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ClientPacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) {
|
||||||
|
buffer := buf.With(p)
|
||||||
|
destination, err := c.ReadPacket(buffer)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
n = buffer.Len()
|
||||||
|
addr = destination.UDPAddr()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *ClientPacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) {
|
||||||
|
err = c.WritePacket(buf.With(p), M.AddrPortFromNetAddr(addr))
|
||||||
|
if err == nil {
|
||||||
|
n = len(p)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func Key(password string) [KeyLength]byte {
|
||||||
|
var key [KeyLength]byte
|
||||||
|
hash := sha256.New224()
|
||||||
|
common.Must1(hash.Write([]byte(password)))
|
||||||
|
hex.Encode(key[:], hash.Sum(nil))
|
||||||
|
return key
|
||||||
|
}
|
||||||
|
|
||||||
|
func ClientHandshake(conn net.Conn, key [56]byte, destination *M.AddrPort, payload []byte) error {
|
||||||
|
bufferLen := KeyLength + socks.AddressSerializer.AddrPortLen(destination) + 5
|
||||||
|
var header *buf.Buffer
|
||||||
|
var writeHeader bool
|
||||||
|
if len(payload) > 0 && bufferLen+len(payload) < 65535 {
|
||||||
|
buffer := buf.Make(bufferLen + len(payload))
|
||||||
|
copy(buffer[bufferLen:], payload)
|
||||||
|
header = buf.With(common.Dup(buffer))
|
||||||
|
} else {
|
||||||
|
buffer := buf.Make(bufferLen)
|
||||||
|
header = buf.With(common.Dup(buffer))
|
||||||
|
writeHeader = true
|
||||||
|
}
|
||||||
|
common.Must1(header.Write(key[:]))
|
||||||
|
common.Must1(header.Write(CRLF))
|
||||||
|
common.Must(header.WriteByte(CommandTCP))
|
||||||
|
common.Must(socks.AddressSerializer.WriteAddrPort(header, destination))
|
||||||
|
common.Must1(header.Write(CRLF))
|
||||||
|
|
||||||
|
_, err := conn.Write(header.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write request")
|
||||||
|
}
|
||||||
|
if writeHeader {
|
||||||
|
_, err = conn.Write(payload)
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write payload")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ClientHandshakePacket(conn net.Conn, key [56]byte, destination *M.AddrPort, payload *buf.Buffer) error {
|
||||||
|
bufferLen := KeyLength + 2*socks.AddressSerializer.AddrPortLen(destination) + 9
|
||||||
|
var header *buf.Buffer
|
||||||
|
var writeHeader bool
|
||||||
|
if payload.Start() >= bufferLen {
|
||||||
|
header = buf.With(payload.ExtendHeader(bufferLen))
|
||||||
|
} else {
|
||||||
|
buffer := buf.Make(bufferLen)
|
||||||
|
header = buf.With(common.Dup(buffer))
|
||||||
|
writeHeader = true
|
||||||
|
}
|
||||||
|
common.Must1(header.Write(key[:]))
|
||||||
|
common.Must1(header.Write(CRLF))
|
||||||
|
common.Must(header.WriteByte(CommandUDP))
|
||||||
|
common.Must(socks.AddressSerializer.WriteAddrPort(header, destination))
|
||||||
|
common.Must1(header.Write(CRLF))
|
||||||
|
common.Must(socks.AddressSerializer.WriteAddrPort(header, destination))
|
||||||
|
common.Must(binary.Write(header, binary.BigEndian, uint16(payload.Len())))
|
||||||
|
common.Must1(header.Write(CRLF))
|
||||||
|
|
||||||
|
_, err := conn.Write(header.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write request")
|
||||||
|
}
|
||||||
|
if writeHeader {
|
||||||
|
_, err = conn.Write(payload.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write payload")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ReadPacket(conn net.Conn, buffer *buf.Buffer) (*M.AddrPort, error) {
|
||||||
|
destination, err := socks.AddressSerializer.ReadAddrPort(conn)
|
||||||
|
if err != nil {
|
||||||
|
return nil, E.Cause(err, "read destination")
|
||||||
|
}
|
||||||
|
|
||||||
|
var length uint16
|
||||||
|
err = binary.Read(conn, binary.BigEndian, &length)
|
||||||
|
if err != nil {
|
||||||
|
return nil, E.Cause(err, "read chunk length")
|
||||||
|
}
|
||||||
|
|
||||||
|
if buffer.FreeLen() < int(length) {
|
||||||
|
return nil, io.ErrShortBuffer
|
||||||
|
}
|
||||||
|
|
||||||
|
err = rw.SkipN(conn, 2)
|
||||||
|
if err != nil {
|
||||||
|
return nil, E.Cause(err, "skip crlf")
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = buffer.ReadFullFrom(conn, int(length))
|
||||||
|
return destination, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func WritePacket(conn net.Conn, buffer *buf.Buffer, destination *M.AddrPort) error {
|
||||||
|
headerOverload := socks.AddressSerializer.AddrPortLen(destination) + 4
|
||||||
|
var header *buf.Buffer
|
||||||
|
var writeHeader bool
|
||||||
|
if buffer.Start() >= headerOverload {
|
||||||
|
header = buf.With(buffer.ExtendHeader(headerOverload))
|
||||||
|
} else {
|
||||||
|
writeHeader = true
|
||||||
|
_buffer := buf.Make(headerOverload)
|
||||||
|
header = buf.With(common.Dup(_buffer))
|
||||||
|
}
|
||||||
|
err := socks.AddressSerializer.WriteAddrPort(header, destination)
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write socks addr")
|
||||||
|
}
|
||||||
|
err = binary.Write(header, binary.BigEndian, uint16(buffer.Len()))
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write chunk length")
|
||||||
|
}
|
||||||
|
_, err = header.Write(CRLF)
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write crlf")
|
||||||
|
}
|
||||||
|
if writeHeader {
|
||||||
|
_, err = conn.Write(header.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write packet header")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_, err = conn.Write(buffer.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
return E.Cause(err, "write packet")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
159
protocol/trojan/service.go
Normal file
159
protocol/trojan/service.go
Normal file
|
@ -0,0 +1,159 @@
|
||||||
|
package trojan
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net"
|
||||||
|
|
||||||
|
"github.com/sagernet/sing/common"
|
||||||
|
"github.com/sagernet/sing/common/buf"
|
||||||
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
|
"github.com/sagernet/sing/common/rw"
|
||||||
|
"github.com/sagernet/sing/protocol/socks"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Handler interface {
|
||||||
|
M.TCPConnectionHandler
|
||||||
|
socks.UDPConnectionHandler
|
||||||
|
}
|
||||||
|
|
||||||
|
type Context struct {
|
||||||
|
context.Context
|
||||||
|
User string
|
||||||
|
Key [KeyLength]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
type Service struct {
|
||||||
|
handler Handler
|
||||||
|
keys map[[56]byte]string
|
||||||
|
users map[string][56]byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewService(handler Handler) *Service {
|
||||||
|
return &Service{handler: handler}
|
||||||
|
}
|
||||||
|
|
||||||
|
var ErrUserExists = E.New("user already exists")
|
||||||
|
|
||||||
|
func (s *Service) AddUser(user string, password string) error {
|
||||||
|
if _, loaded := s.users[user]; loaded {
|
||||||
|
return ErrUserExists
|
||||||
|
}
|
||||||
|
key := Key(password)
|
||||||
|
if oldUser, loaded := s.keys[key]; loaded {
|
||||||
|
return E.New("password used by ", oldUser)
|
||||||
|
}
|
||||||
|
s.users[user] = key
|
||||||
|
s.keys[key] = user
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *Service) RemoveUser(user string) bool {
|
||||||
|
if key, loaded := s.users[user]; loaded {
|
||||||
|
delete(s.users, user)
|
||||||
|
delete(s.keys, key)
|
||||||
|
return true
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *Service) NewConnection(ctx context.Context, conn net.Conn, metadata M.Metadata) error {
|
||||||
|
var key [KeyLength]byte
|
||||||
|
_, err := io.ReadFull(conn, common.Dup(key[:]))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
goto process
|
||||||
|
|
||||||
|
returnErr:
|
||||||
|
err = &Error{
|
||||||
|
Metadata: metadata,
|
||||||
|
Conn: conn,
|
||||||
|
Inner: err,
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
|
||||||
|
process:
|
||||||
|
|
||||||
|
var userCtx Context
|
||||||
|
userCtx.Context = ctx
|
||||||
|
if user, loaded := s.keys[key]; loaded {
|
||||||
|
userCtx.User = user
|
||||||
|
userCtx.Key = key
|
||||||
|
} else {
|
||||||
|
err = E.New("bad request")
|
||||||
|
goto returnErr
|
||||||
|
}
|
||||||
|
|
||||||
|
err = rw.SkipN(conn, 2)
|
||||||
|
if err != nil {
|
||||||
|
err = E.Cause(err, "skip crlf")
|
||||||
|
goto returnErr
|
||||||
|
}
|
||||||
|
|
||||||
|
command, err := rw.ReadByte(conn)
|
||||||
|
if err != nil {
|
||||||
|
err = E.Cause(err, "read command")
|
||||||
|
goto returnErr
|
||||||
|
}
|
||||||
|
|
||||||
|
if command != CommandTCP && command != CommandUDP {
|
||||||
|
err = E.New("unknown command ", command)
|
||||||
|
goto returnErr
|
||||||
|
}
|
||||||
|
|
||||||
|
destination, err := socks.AddressSerializer.ReadAddrPort(conn)
|
||||||
|
if err != nil {
|
||||||
|
err = E.Cause(err, "read destination")
|
||||||
|
goto returnErr
|
||||||
|
}
|
||||||
|
|
||||||
|
err = rw.SkipN(conn, 2)
|
||||||
|
if err != nil {
|
||||||
|
err = E.Cause(err, "skip crlf")
|
||||||
|
goto returnErr
|
||||||
|
}
|
||||||
|
|
||||||
|
metadata.Protocol = "trojan"
|
||||||
|
metadata.Destination = destination
|
||||||
|
|
||||||
|
if command == CommandTCP {
|
||||||
|
return s.handler.NewConnection(userCtx, conn, metadata)
|
||||||
|
} else {
|
||||||
|
return s.handler.NewPacketConnection(userCtx, &packetConn{conn}, metadata)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type packetConn struct {
|
||||||
|
net.Conn
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *packetConn) ReadPacket(buffer *buf.Buffer) (*M.AddrPort, error) {
|
||||||
|
return ReadPacket(c, buffer)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *packetConn) WritePacket(buffer *buf.Buffer, destination *M.AddrPort) error {
|
||||||
|
return WritePacket(c, buffer, destination)
|
||||||
|
}
|
||||||
|
|
||||||
|
type Error struct {
|
||||||
|
Metadata M.Metadata
|
||||||
|
Conn net.Conn
|
||||||
|
Inner error
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *Error) Error() string {
|
||||||
|
return fmt.Sprint("process connection from ", e.Metadata.Source, ": ", e.Inner.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *Error) Unwrap() error {
|
||||||
|
return e.Inner
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *Error) Close() error {
|
||||||
|
return e.Conn.Close()
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue