clash/adapter/inbound/util.go

77 lines
1.7 KiB
Go
Raw Normal View History

2019-12-08 04:17:24 +00:00
package inbound
import (
"net"
2018-08-12 08:18:58 +00:00
"net/http"
2022-04-19 17:52:51 +00:00
"net/netip"
"strconv"
2020-06-11 03:10:08 +00:00
"strings"
2022-04-19 17:52:51 +00:00
"github.com/Dreamacro/clash/common/nnip"
C "github.com/Dreamacro/clash/constant"
2021-05-13 14:18:49 +00:00
"github.com/Dreamacro/clash/transport/socks5"
)
2019-04-25 05:48:47 +00:00
func parseSocksAddr(target socks5.Addr) *C.Metadata {
2018-12-05 13:13:29 +00:00
metadata := &C.Metadata{
AddrType: int(target[0]),
}
switch target[0] {
2019-04-25 05:48:47 +00:00
case socks5.AtypDomainName:
2020-06-11 04:11:44 +00:00
// trim for FQDN
metadata.Host = strings.TrimRight(string(target[2:2+target[1]]), ".")
2019-05-09 13:00:29 +00:00
metadata.DstPort = strconv.Itoa((int(target[2+target[1]]) << 8) | int(target[2+target[1]+1]))
2019-04-25 05:48:47 +00:00
case socks5.AtypIPv4:
2022-04-19 17:52:51 +00:00
metadata.DstIP = nnip.IpToAddr(net.IP(target[1 : 1+net.IPv4len]))
2019-05-09 13:00:29 +00:00
metadata.DstPort = strconv.Itoa((int(target[1+net.IPv4len]) << 8) | int(target[1+net.IPv4len+1]))
2019-04-25 05:48:47 +00:00
case socks5.AtypIPv6:
2022-04-19 17:52:51 +00:00
metadata.DstIP = nnip.IpToAddr(net.IP(target[1 : 1+net.IPv6len]))
2019-05-09 13:00:29 +00:00
metadata.DstPort = strconv.Itoa((int(target[1+net.IPv6len]) << 8) | int(target[1+net.IPv6len+1]))
}
2018-12-05 13:13:29 +00:00
return metadata
}
2018-09-30 04:25:52 +00:00
func parseHTTPAddr(request *http.Request) *C.Metadata {
2018-08-26 16:06:40 +00:00
host := request.URL.Hostname()
port := request.URL.Port()
if port == "" {
port = "80"
}
2020-06-11 03:10:08 +00:00
// trim FQDN (#737)
host = strings.TrimRight(host, ".")
2018-12-05 13:13:29 +00:00
metadata := &C.Metadata{
NetWork: C.TCP,
2018-12-05 13:13:29 +00:00
AddrType: C.AtypDomainName,
Host: host,
2022-04-19 17:52:51 +00:00
DstIP: netip.Addr{},
2019-05-09 13:00:29 +00:00
DstPort: port,
}
2018-12-05 13:13:29 +00:00
2022-04-19 17:52:51 +00:00
ip, err := netip.ParseAddr(host)
if err == nil {
2018-12-05 13:13:29 +00:00
switch {
2022-04-19 17:52:51 +00:00
case ip.Is6():
2018-12-05 13:13:29 +00:00
metadata.AddrType = C.AtypIPv6
default:
metadata.AddrType = C.AtypIPv4
}
metadata.DstIP = ip
2018-12-05 13:13:29 +00:00
}
return metadata
}
2022-04-19 17:52:51 +00:00
func parseAddr(addr string) (netip.Addr, string, error) {
2019-05-09 13:00:29 +00:00
host, port, err := net.SplitHostPort(addr)
if err != nil {
2022-04-19 17:52:51 +00:00
return netip.Addr{}, "", err
}
2019-05-09 13:00:29 +00:00
2022-04-19 17:52:51 +00:00
ip, err := netip.ParseAddr(host)
return ip, port, err
}