2019-12-08 12:17:24 +08:00
|
|
|
package inbound
|
2018-07-26 00:04:59 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
2018-08-12 16:18:58 +08:00
|
|
|
"net/http"
|
2022-04-20 01:52:51 +08:00
|
|
|
"net/netip"
|
2018-07-26 00:04:59 +08:00
|
|
|
"strconv"
|
2020-06-11 11:10:08 +08:00
|
|
|
"strings"
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2023-11-03 21:01:45 +08:00
|
|
|
"github.com/metacubex/mihomo/common/nnip"
|
|
|
|
C "github.com/metacubex/mihomo/constant"
|
|
|
|
"github.com/metacubex/mihomo/transport/socks5"
|
2018-07-26 00:04:59 +08:00
|
|
|
)
|
|
|
|
|
2019-04-25 13:48:47 +08:00
|
|
|
func parseSocksAddr(target socks5.Addr) *C.Metadata {
|
2022-11-11 09:19:28 +08:00
|
|
|
metadata := &C.Metadata{}
|
2018-07-26 00:04:59 +08:00
|
|
|
|
|
|
|
switch target[0] {
|
2019-04-25 13:48:47 +08:00
|
|
|
case socks5.AtypDomainName:
|
2020-06-11 12:11:44 +08:00
|
|
|
// trim for FQDN
|
|
|
|
metadata.Host = strings.TrimRight(string(target[2:2+target[1]]), ".")
|
2023-08-09 13:51:02 +08:00
|
|
|
metadata.DstPort = uint16((int(target[2+target[1]]) << 8) | int(target[2+target[1]+1]))
|
2019-04-25 13:48:47 +08:00
|
|
|
case socks5.AtypIPv4:
|
2022-04-20 01:52:51 +08:00
|
|
|
metadata.DstIP = nnip.IpToAddr(net.IP(target[1 : 1+net.IPv4len]))
|
2023-08-09 13:51:02 +08:00
|
|
|
metadata.DstPort = uint16((int(target[1+net.IPv4len]) << 8) | int(target[1+net.IPv4len+1]))
|
2019-04-25 13:48:47 +08:00
|
|
|
case socks5.AtypIPv6:
|
2022-07-05 21:09:29 +08:00
|
|
|
ip6, _ := netip.AddrFromSlice(target[1 : 1+net.IPv6len])
|
|
|
|
metadata.DstIP = ip6.Unmap()
|
2023-08-09 13:51:02 +08:00
|
|
|
metadata.DstPort = uint16((int(target[1+net.IPv6len]) << 8) | int(target[1+net.IPv6len+1]))
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2018-12-05 21:13:29 +08:00
|
|
|
return metadata
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
|
|
|
|
2018-09-30 12:25:52 +08:00
|
|
|
func parseHTTPAddr(request *http.Request) *C.Metadata {
|
2018-08-27 00:06:40 +08:00
|
|
|
host := request.URL.Hostname()
|
|
|
|
port := request.URL.Port()
|
|
|
|
if port == "" {
|
|
|
|
port = "80"
|
|
|
|
}
|
2018-07-26 00:04:59 +08:00
|
|
|
|
2020-06-11 11:10:08 +08:00
|
|
|
// trim FQDN (#737)
|
|
|
|
host = strings.TrimRight(host, ".")
|
|
|
|
|
2023-08-09 13:51:02 +08:00
|
|
|
var uint16Port uint16
|
|
|
|
if port, err := strconv.ParseUint(port, 10, 16); err == nil {
|
|
|
|
uint16Port = uint16(port)
|
|
|
|
}
|
|
|
|
|
2018-12-05 21:13:29 +08:00
|
|
|
metadata := &C.Metadata{
|
2022-11-11 09:19:28 +08:00
|
|
|
NetWork: C.TCP,
|
|
|
|
Host: host,
|
|
|
|
DstIP: netip.Addr{},
|
2023-08-09 13:51:02 +08:00
|
|
|
DstPort: uint16Port,
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|
2018-12-05 21:13:29 +08:00
|
|
|
|
2022-04-20 01:52:51 +08:00
|
|
|
ip, err := netip.ParseAddr(host)
|
|
|
|
if err == nil {
|
2019-10-27 21:44:07 +08:00
|
|
|
metadata.DstIP = ip
|
2018-12-05 21:13:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return metadata
|
2018-07-26 00:04:59 +08:00
|
|
|
}
|