2022-11-22 01:05:54 +00:00
|
|
|
package wireguard
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
"net/netip"
|
|
|
|
"strconv"
|
|
|
|
"sync"
|
|
|
|
|
2023-11-12 20:10:01 +00:00
|
|
|
"golang.zx2c4.com/wireguard/conn"
|
|
|
|
|
2022-11-22 01:05:54 +00:00
|
|
|
xnet "github.com/xtls/xray-core/common/net"
|
|
|
|
"github.com/xtls/xray-core/features/dns"
|
|
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
|
|
)
|
|
|
|
|
|
|
|
type netReadInfo struct {
|
|
|
|
// status
|
|
|
|
waiter sync.WaitGroup
|
|
|
|
// param
|
|
|
|
buff []byte
|
|
|
|
// result
|
|
|
|
bytes int
|
|
|
|
endpoint conn.Endpoint
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
// reduce duplicated code
|
|
|
|
type netBind struct {
|
2022-11-22 01:05:54 +00:00
|
|
|
dns dns.Client
|
|
|
|
dnsOption dns.IPOption
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
workers int
|
2022-11-22 01:05:54 +00:00
|
|
|
readQueue chan *netReadInfo
|
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
// SetMark implements conn.Bind
|
|
|
|
func (bind *netBind) SetMark(mark uint32) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseEndpoint implements conn.Bind
|
|
|
|
func (n *netBind) ParseEndpoint(s string) (conn.Endpoint, error) {
|
|
|
|
ipStr, port, err := net.SplitHostPort(s)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
portNum, err := strconv.Atoi(port)
|
2022-11-22 01:05:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
addr := xnet.ParseAddress(ipStr)
|
|
|
|
if addr.Family() == xnet.AddressFamilyDomain {
|
|
|
|
ips, err := n.dns.LookupIP(addr.Domain(), n.dnsOption)
|
2022-11-22 01:05:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if len(ips) == 0 {
|
|
|
|
return nil, dns.ErrEmptyResponse
|
|
|
|
}
|
2023-11-18 03:27:17 +00:00
|
|
|
addr = xnet.IPAddress(ips[0])
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dst := xnet.Destination{
|
2023-11-18 03:27:17 +00:00
|
|
|
Address: addr,
|
|
|
|
Port: xnet.Port(portNum),
|
2022-11-22 01:05:54 +00:00
|
|
|
Network: xnet.Network_UDP,
|
|
|
|
}
|
|
|
|
|
|
|
|
return &netEndpoint{
|
|
|
|
dst: dst,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
// BatchSize implements conn.Bind
|
|
|
|
func (bind *netBind) BatchSize() int {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open implements conn.Bind
|
|
|
|
func (bind *netBind) Open(uport uint16) ([]conn.ReceiveFunc, uint16, error) {
|
2022-11-22 01:05:54 +00:00
|
|
|
bind.readQueue = make(chan *netReadInfo)
|
|
|
|
|
2023-11-12 20:10:01 +00:00
|
|
|
fun := func(bufs [][]byte, sizes []int, eps []conn.Endpoint) (n int, err error) {
|
2022-11-22 01:05:54 +00:00
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
2023-11-12 20:10:01 +00:00
|
|
|
n = 0
|
2022-11-22 01:05:54 +00:00
|
|
|
err = errors.New("channel closed")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
r := &netReadInfo{
|
2023-11-12 20:10:01 +00:00
|
|
|
buff: bufs[0],
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
|
|
|
r.waiter.Add(1)
|
|
|
|
bind.readQueue <- r
|
|
|
|
r.waiter.Wait() // wait read goroutine done, or we will miss the result
|
2023-11-12 20:10:01 +00:00
|
|
|
sizes[0], eps[0] = r.bytes, r.endpoint
|
|
|
|
return 1, r.err
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
|
|
|
workers := bind.workers
|
|
|
|
if workers <= 0 {
|
|
|
|
workers = 1
|
|
|
|
}
|
|
|
|
arr := make([]conn.ReceiveFunc, workers)
|
|
|
|
for i := 0; i < workers; i++ {
|
|
|
|
arr[i] = fun
|
|
|
|
}
|
|
|
|
|
|
|
|
return arr, uint16(uport), nil
|
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
// Close implements conn.Bind
|
|
|
|
func (bind *netBind) Close() error {
|
2022-11-22 01:05:54 +00:00
|
|
|
if bind.readQueue != nil {
|
|
|
|
close(bind.readQueue)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
type netBindClient struct {
|
|
|
|
netBind
|
|
|
|
|
|
|
|
dialer internet.Dialer
|
|
|
|
reserved []byte
|
|
|
|
}
|
|
|
|
|
2022-11-22 01:05:54 +00:00
|
|
|
func (bind *netBindClient) connectTo(endpoint *netEndpoint) error {
|
|
|
|
c, err := bind.dialer.Dial(context.Background(), endpoint.dst)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
endpoint.conn = c
|
|
|
|
|
|
|
|
go func(readQueue <-chan *netReadInfo, endpoint *netEndpoint) {
|
|
|
|
for {
|
|
|
|
v, ok := <-readQueue
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
i, err := c.Read(v.buff)
|
2023-03-03 15:39:16 +00:00
|
|
|
|
|
|
|
if i > 3 {
|
|
|
|
v.buff[1] = 0
|
|
|
|
v.buff[2] = 0
|
|
|
|
v.buff[3] = 0
|
|
|
|
}
|
|
|
|
|
2022-11-22 01:05:54 +00:00
|
|
|
v.bytes = i
|
|
|
|
v.endpoint = endpoint
|
|
|
|
v.err = err
|
|
|
|
v.waiter.Done()
|
|
|
|
if err != nil && errors.Is(err, io.EOF) {
|
|
|
|
endpoint.conn = nil
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}(bind.readQueue, endpoint)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-11-12 20:10:01 +00:00
|
|
|
func (bind *netBindClient) Send(buff [][]byte, endpoint conn.Endpoint) error {
|
2022-11-22 01:05:54 +00:00
|
|
|
var err error
|
|
|
|
|
|
|
|
nend, ok := endpoint.(*netEndpoint)
|
|
|
|
if !ok {
|
|
|
|
return conn.ErrWrongEndpointType
|
|
|
|
}
|
|
|
|
|
|
|
|
if nend.conn == nil {
|
|
|
|
err = bind.connectTo(nend)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-12 20:10:01 +00:00
|
|
|
for _, buff := range buff {
|
|
|
|
if len(buff) > 3 && len(bind.reserved) == 3 {
|
|
|
|
copy(buff[1:], bind.reserved)
|
|
|
|
}
|
|
|
|
if _, err = nend.conn.Write(buff); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-03-02 16:55:42 +00:00
|
|
|
}
|
2023-11-12 20:10:01 +00:00
|
|
|
return nil
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
type netBindServer struct {
|
|
|
|
netBind
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
|
|
|
|
2023-11-18 03:27:17 +00:00
|
|
|
func (bind *netBindServer) Send(buff [][]byte, endpoint conn.Endpoint) error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
nend, ok := endpoint.(*netEndpoint)
|
|
|
|
if !ok {
|
|
|
|
return conn.ErrWrongEndpointType
|
|
|
|
}
|
|
|
|
|
|
|
|
if nend.conn == nil {
|
|
|
|
return newError("connection not open yet")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, buff := range buff {
|
|
|
|
if _, err = nend.conn.Write(buff); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
2023-11-12 20:10:01 +00:00
|
|
|
}
|
|
|
|
|
2022-11-22 01:05:54 +00:00
|
|
|
type netEndpoint struct {
|
|
|
|
dst xnet.Destination
|
|
|
|
conn net.Conn
|
|
|
|
}
|
|
|
|
|
|
|
|
func (netEndpoint) ClearSrc() {}
|
|
|
|
|
|
|
|
func (e netEndpoint) DstIP() netip.Addr {
|
2023-11-18 03:27:17 +00:00
|
|
|
return netip.Addr{}
|
2022-11-22 01:05:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e netEndpoint) SrcIP() netip.Addr {
|
|
|
|
return netip.Addr{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e netEndpoint) DstToBytes() []byte {
|
|
|
|
var dat []byte
|
|
|
|
if e.dst.Address.Family().IsIPv4() {
|
|
|
|
dat = e.dst.Address.IP().To4()[:]
|
|
|
|
} else {
|
|
|
|
dat = e.dst.Address.IP().To16()[:]
|
|
|
|
}
|
|
|
|
dat = append(dat, byte(e.dst.Port), byte(e.dst.Port>>8))
|
|
|
|
return dat
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e netEndpoint) DstToString() string {
|
|
|
|
return e.dst.NetAddr()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e netEndpoint) SrcToString() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func toNetIpAddr(addr xnet.Address) netip.Addr {
|
|
|
|
if addr.Family().IsIPv4() {
|
|
|
|
ip := addr.IP()
|
|
|
|
return netip.AddrFrom4([4]byte{ip[0], ip[1], ip[2], ip[3]})
|
|
|
|
} else {
|
|
|
|
ip := addr.IP()
|
|
|
|
arr := [16]byte{}
|
|
|
|
for i := 0; i < 16; i++ {
|
|
|
|
arr[i] = ip[i]
|
|
|
|
}
|
|
|
|
return netip.AddrFrom16(arr)
|
|
|
|
}
|
|
|
|
}
|