|
|
@@ -7,32 +7,12 @@ import (
|
|
|
|
|
|
"v2ray.com/core"
|
|
|
"v2ray.com/core/common"
|
|
|
- "v2ray.com/core/common/net"
|
|
|
"v2ray.com/core/common/session"
|
|
|
"v2ray.com/core/features/dns"
|
|
|
"v2ray.com/core/features/outbound"
|
|
|
"v2ray.com/core/features/routing"
|
|
|
)
|
|
|
|
|
|
-type key uint32
|
|
|
-
|
|
|
-const (
|
|
|
- resolvedIPsKey key = iota
|
|
|
-)
|
|
|
-
|
|
|
-type IPResolver interface {
|
|
|
- Resolve() []net.Address
|
|
|
-}
|
|
|
-
|
|
|
-func ContextWithResolveIPs(ctx context.Context, f IPResolver) context.Context {
|
|
|
- return context.WithValue(ctx, resolvedIPsKey, f)
|
|
|
-}
|
|
|
-
|
|
|
-func ResolvedIPsFromContext(ctx context.Context) (IPResolver, bool) {
|
|
|
- ips, ok := ctx.Value(resolvedIPsKey).(IPResolver)
|
|
|
- return ips, ok
|
|
|
-}
|
|
|
-
|
|
|
func init() {
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
r := new(Router)
|
|
|
@@ -91,34 +71,6 @@ func (r *Router) Init(config *Config, d dns.Client, ohm outbound.Manager) error
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-type ipResolver struct {
|
|
|
- dns dns.Client
|
|
|
- ip []net.Address
|
|
|
- domain string
|
|
|
- resolved bool
|
|
|
-}
|
|
|
-
|
|
|
-func (r *ipResolver) Resolve() []net.Address {
|
|
|
- if r.resolved {
|
|
|
- return r.ip
|
|
|
- }
|
|
|
-
|
|
|
- newError("looking for IP for domain: ", r.domain).WriteToLog()
|
|
|
- r.resolved = true
|
|
|
- ips, err := r.dns.LookupIP(r.domain)
|
|
|
- if err != nil {
|
|
|
- newError("failed to get IP address").Base(err).WriteToLog()
|
|
|
- }
|
|
|
- if len(ips) == 0 {
|
|
|
- return nil
|
|
|
- }
|
|
|
- r.ip = make([]net.Address, len(ips))
|
|
|
- for i, ip := range ips {
|
|
|
- r.ip[i] = net.IPAddress(ip)
|
|
|
- }
|
|
|
- return r.ip
|
|
|
-}
|
|
|
-
|
|
|
func (r *Router) PickRoute(ctx context.Context) (string, error) {
|
|
|
rule, err := r.pickRouteInternal(ctx)
|
|
|
if err != nil {
|
|
|
@@ -127,17 +79,27 @@ func (r *Router) PickRoute(ctx context.Context) (string, error) {
|
|
|
return rule.GetTag()
|
|
|
}
|
|
|
|
|
|
-// PickRoute implements routing.Router.
|
|
|
-func (r *Router) pickRouteInternal(ctx context.Context) (*Rule, error) {
|
|
|
- resolver := &ipResolver{
|
|
|
- dns: r.dns,
|
|
|
+func isDomainOutbound(outbound *session.Outbound) bool {
|
|
|
+ return outbound != nil && outbound.Target.IsValid() && outbound.Target.Address.Family().IsDomain()
|
|
|
+}
|
|
|
+
|
|
|
+func (r *Router) resolveIP(outbound *session.Outbound) error {
|
|
|
+ domain := outbound.Target.Address.Domain()
|
|
|
+ ips, err := r.dns.LookupIP(domain)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
}
|
|
|
|
|
|
+ outbound.ResolvedIPs = ips
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+// PickRoute implements routing.Router.
|
|
|
+func (r *Router) pickRouteInternal(ctx context.Context) (*Rule, error) {
|
|
|
outbound := session.OutboundFromContext(ctx)
|
|
|
- if r.domainStrategy == Config_IpOnDemand {
|
|
|
- if outbound != nil && outbound.Target.IsValid() && outbound.Target.Address.Family().IsDomain() {
|
|
|
- resolver.domain = outbound.Target.Address.Domain()
|
|
|
- ctx = ContextWithResolveIPs(ctx, resolver)
|
|
|
+ if r.domainStrategy == Config_IpOnDemand && isDomainOutbound(outbound) {
|
|
|
+ if err := r.resolveIP(outbound); err != nil {
|
|
|
+ newError("failed to resolve IP for domain").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -147,21 +109,19 @@ func (r *Router) pickRouteInternal(ctx context.Context) (*Rule, error) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if outbound == nil || !outbound.Target.IsValid() {
|
|
|
+ if r.domainStrategy != Config_IpIfNonMatch || !isDomainOutbound(outbound) {
|
|
|
return nil, common.ErrNoClue
|
|
|
}
|
|
|
|
|
|
- dest := outbound.Target
|
|
|
- if r.domainStrategy == Config_IpIfNonMatch && dest.Address.Family().IsDomain() {
|
|
|
- resolver.domain = dest.Address.Domain()
|
|
|
- ips := resolver.Resolve()
|
|
|
- if len(ips) > 0 {
|
|
|
- ctx = ContextWithResolveIPs(ctx, resolver)
|
|
|
- for _, rule := range r.rules {
|
|
|
- if rule.Apply(ctx) {
|
|
|
- return rule, nil
|
|
|
- }
|
|
|
- }
|
|
|
+ if err := r.resolveIP(outbound); err != nil {
|
|
|
+ newError("failed to resolve IP for domain").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
|
|
+ return nil, common.ErrNoClue
|
|
|
+ }
|
|
|
+
|
|
|
+ // Try applying rules again if we have IPs.
|
|
|
+ for _, rule := range r.rules {
|
|
|
+ if rule.Apply(ctx) {
|
|
|
+ return rule, nil
|
|
|
}
|
|
|
}
|
|
|
|