1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 21:45:24 +00:00
v2fly/proxy/socks/udp.go

90 lines
2.4 KiB
Go
Raw Normal View History

package socks
import (
"net"
"github.com/v2ray/v2ray-core/common/alloc"
"github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/proxy/socks/protocol"
)
2015-10-03 22:21:06 +00:00
var udpAddress v2net.Address
2015-12-02 20:44:01 +00:00
func (this *SocksServer) ListenUDP(port v2net.Port) error {
addr := &net.UDPAddr{
2015-10-06 09:57:26 +00:00
IP: net.IP{0, 0, 0, 0},
Port: int(port),
Zone: "",
}
conn, err := net.ListenUDP("udp", addr)
if err != nil {
log.Error("Socks failed to listen UDP on port %d: %v", port, err)
return err
}
2015-11-27 20:57:15 +00:00
udpAddress = v2net.IPAddress(this.config.IP(), port)
2015-11-27 20:57:15 +00:00
go this.AcceptPackets(conn)
return nil
}
2015-11-27 20:57:15 +00:00
func (this *SocksServer) getUDPAddr() v2net.Address {
2015-10-03 22:21:06 +00:00
return udpAddress
}
2015-11-27 20:57:15 +00:00
func (this *SocksServer) AcceptPackets(conn *net.UDPConn) error {
for {
buffer := alloc.NewBuffer()
nBytes, addr, err := conn.ReadFromUDP(buffer.Value)
if err != nil {
log.Error("Socks failed to read UDP packets: %v", err)
2015-10-08 15:41:38 +00:00
buffer.Release()
2015-10-06 07:33:37 +00:00
continue
}
2015-10-06 15:24:57 +00:00
log.Info("Client UDP connection from %v", addr)
2015-10-08 21:28:51 +00:00
request, err := protocol.ReadUDPRequest(buffer.Value[:nBytes])
2015-10-08 15:41:38 +00:00
buffer.Release()
if err != nil {
log.Error("Socks failed to parse UDP request: %v", err)
continue
}
if request.Data == nil || request.Data.Len() == 0 {
2015-10-06 07:33:37 +00:00
continue
}
if request.Fragment != 0 {
2015-10-10 15:30:37 +00:00
log.Warning("Dropping fragmented UDP packets.")
// TODO handle fragments
2015-10-08 15:41:38 +00:00
request.Data.Release()
continue
}
2015-10-02 13:32:26 +00:00
udpPacket := v2net.NewPacket(request.Destination(), request.Data, false)
log.Info("Send packet to %s with %d bytes", udpPacket.Destination().String(), request.Data.Len())
2015-11-27 20:57:15 +00:00
go this.handlePacket(conn, udpPacket, addr, request.Address)
}
}
2015-09-28 19:32:07 +00:00
2015-11-27 20:57:15 +00:00
func (this *SocksServer) handlePacket(conn *net.UDPConn, packet v2net.Packet, clientAddr *net.UDPAddr, targetAddr v2net.Address) {
ray := this.dispatcher.DispatchToOutbound(packet)
2015-10-02 13:32:26 +00:00
close(ray.InboundInput())
2015-10-14 07:56:04 +00:00
for data := range ray.InboundOutput() {
2015-10-06 15:24:57 +00:00
response := &protocol.Socks5UDPRequest{
Fragment: 0,
Address: targetAddr,
Data: data,
}
log.Info("Writing back UDP response with %d bytes from %s to %s", data.Len(), targetAddr.String(), clientAddr.String())
2015-10-08 21:29:06 +00:00
udpMessage := alloc.NewSmallBuffer().Clear()
response.Write(udpMessage)
2015-10-08 21:28:51 +00:00
nBytes, err := conn.WriteToUDP(udpMessage.Value, clientAddr)
2015-10-08 21:29:06 +00:00
udpMessage.Release()
response.Data.Release()
2015-10-05 14:59:56 +00:00
if err != nil {
log.Error("Socks failed to write UDP message (%d bytes) to %s: %v", nBytes, clientAddr.String(), err)
}
2015-09-28 19:32:07 +00:00
}
}